From baae59a7ce266464331a1b6077ee2f078c9066d9 Mon Sep 17 00:00:00 2001 From: duc than Date: Mon, 11 Mar 2024 11:22:18 +0100 Subject: [PATCH 01/26] add pycharm tips --- doc/source/installation.rst | 35 ++++++++++++++++++++++++++++++----- doc/source/remarks.rst | 2 +- 2 files changed, 31 insertions(+), 6 deletions(-) diff --git a/doc/source/installation.rst b/doc/source/installation.rst index 49498a283..189fb527a 100644 --- a/doc/source/installation.rst +++ b/doc/source/installation.rst @@ -14,7 +14,7 @@ All dependencies are available via PyPi. PyCRAM is developed and tested currently with Python3.8, Ubuntu 20.04 and ROS Noetic. -This guide excpects you to have a GitHub account with an SSH key (you can read about adding a new ssh key +This guide expects you to have a GitHub account with an SSH key (you can read about adding a new ssh key `here `_). Installing ROS @@ -166,13 +166,16 @@ Install the requirements in your python interpreter. .. code-block:: shell + cd ~/workspace/ros/src/pycram/doc pip install -r requirements.txt Run pycram and build the docs. .. code-block:: shell + cd ~/workspace/ros roslaunch pycram ik_and_description.launch + cd src/pycram/doc make html Show the index. @@ -193,7 +196,8 @@ Install PyCharm Professional First, `install PyCharm Professional `_. -Create a JetBrains account and verify it for educational purpose. Now you can unlock the PyCharm Professional features in PyCharm. +Create a JetBrains account and verify it for educational purpose. Normally, a school email address would suffice, otherwise you would have to upload your student/employee id card. The verification process typically takes 1~2-week time, so until then please use Trial version. +Once your account is verified, you can unlock the PyCharm Professional features in PyCharm. The next step will set up the virtual Python environment, so it can be used as a project interpreter in PyCharm. @@ -207,9 +211,20 @@ The virtualenvwrapper allows to manage virtual Python environments, where additi .. code-block:: shell sudo pip3 install virtualenvwrapper + + +(Optional but recommended) Set virtualenvwrapper's `WORKON_HOME` env variable, of which the default value is `~/.virtualenvs` + +.. code-block:: shell + echo "export WORKON_HOME=~/envs" >> ~/.bashrc - echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bashrc mkdir -p $WORKON_HOME + +Activate virtualenvwrapper at terminal start + +.. code-block:: shell + + echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bashrc source ~/.bashrc Create a virtual env based on the workspaces libraries (see build-ws_) and add the `--system-site-packages` to get them properly. The env will be registered in `$WORKON_HOME`. @@ -264,6 +279,15 @@ folder as Tests and the resources as Resources. To verify that it works, you can execute any Testcase. +**Useful tips** + +- **View | Active Editor | Soft-wrap**: wrap text inside the editor view + +- **View | Tool Windows | Structure**: display notebook structure window for easy content navigation + +- **Alt+12**: Open terminal + +- **Double Shift**: Quick file search Using IPython as REPL ===================== @@ -281,7 +305,8 @@ Enable autoreload To use changes made in the Python file while the Repl is running you need to enable the iPython extension ``autoreload``. This can be done using the iPython startup files, these are files which are always run if iPython is started. -The startup files are located in ``~/.ipython/profile_default/startup`` along with a README file which explains the usage +First run ``ipython profile create`` to create a `default profile `_. +Then you will find the startup files located in ``~/.ipython/profile_default/startup`` along with a README file which explains the usage of the startup files. In this directory create a file called ``00-autoreload.ipy`` and enter the following code to the file. @@ -297,7 +322,7 @@ code in the shell is executed. Run scripts ----------- -IPython allows to run Python files and enabled the access to created variables. This can be helpful +IPython allows to run Python files and enables the access to created variables. This can be helpful if you want to create a setup script which initializes things like the BulletWorld, Objects and imports relevant modules. diff --git a/doc/source/remarks.rst b/doc/source/remarks.rst index 9b7003f6d..8c88d48d4 100644 --- a/doc/source/remarks.rst +++ b/doc/source/remarks.rst @@ -17,7 +17,7 @@ To fix this issue one has to execute python -m ipykernel install --user --name --display-name "" in your terminal. --name is the name of your virtual environment and --display-name is the name -that will display in the drop down menu of jupyter. After that, select the correct kernel and +that will display in the drop down menu of jupyter. After that, select the correct Python interpreter kernel and everything should work now. Adding Notebooks to the Documentation From e929478610e60e52afeca6f25d2e3bf0b35db995 Mon Sep 17 00:00:00 2001 From: duc than Date: Thu, 14 Mar 2024 19:12:27 +0100 Subject: [PATCH 02/26] add OntologyOwl class using OwlReady2 to fetch object classes by ontology concepts from SOMA DesignatorDescription add onto_concept attr as an owlready2 Thing ~Action auto fetch onto_concept from OntologyOWL --- requirements.txt | 1 + src/pycram/designator.py | 16 +- src/pycram/designators/action_designator.py | 86 +++++++---- src/pycram/helper.py | 8 + src/pycram/ontology.py | 156 ++++++++++++++++++++ 5 files changed, 232 insertions(+), 35 deletions(-) create mode 100644 src/pycram/ontology.py diff --git a/requirements.txt b/requirements.txt index d40530f22..d23c2727b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,3 +16,4 @@ tqdm==4.66.1 psutil==5.9.7 lxml==4.9.1 typing_extensions==4.9.0 +owlready2~=0.45 diff --git a/src/pycram/designator.py b/src/pycram/designator.py index 4c53fab0a..2d74e2934 100644 --- a/src/pycram/designator.py +++ b/src/pycram/designator.py @@ -28,6 +28,7 @@ from .orm.base import RobotState, ProcessMetaData from .task import with_tree +from owlready2 import Thing class DesignatorError(Exception): """Implementation of designator errors.""" @@ -318,7 +319,7 @@ class DesignatorDescription(ABC): :ivar resolve: The resolver function to use for this designator, defaults to self.ground """ - def __init__(self, resolver: Optional[Callable] = None): + def __init__(self, resolver: Optional[Callable] = None, onto_concept: Thing = None): """ Create a Designator description. @@ -327,6 +328,7 @@ def __init__(self, resolver: Optional[Callable] = None): if resolver is None: self.resolve = self.ground + self.onto_concept = onto_concept def make_dictionary(self, properties: List[str]): """ @@ -436,8 +438,8 @@ def insert(self, session: Session, *args, **kwargs) -> ORMAction: return action - def __init__(self, resolver=None): - super().__init__(resolver) + def __init__(self, resolver=None, onto_concept: Thing = None): + super().__init__(resolver, onto_concept) Language.__init__(self) def ground(self) -> Action: @@ -469,8 +471,8 @@ class Location: The resolved pose of the location designator. Pose is inherited by all location designator. """ - def __init__(self, resolver=None): - super().__init__(resolver) + def __init__(self, resolver=None, onto_concept: Thing = None): + super().__init__(resolver, onto_concept) def ground(self) -> Location: """ @@ -635,7 +637,7 @@ def special_knowledge_adjustment_pose(self, grasp: str, pose: Pose) -> Pose: # return pose def __init__(self, names: Optional[List[str]] = None, types: Optional[List[str]] = None, - resolver: Optional[Callable] = None): + resolver: Optional[Callable] = None, onto_concept: Thing = None): """ Base of all object designator descriptions. Every object designator has the name and type of the object. @@ -643,7 +645,7 @@ def __init__(self, names: Optional[List[str]] = None, types: Optional[List[str]] :param types: A list of types that could represent the object :param resolver: An alternative resolver that returns an object designator for the list of names and types """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.types: Optional[List[str]] = types self.names: Optional[List[str]] = names diff --git a/src/pycram/designators/action_designator.py b/src/pycram/designators/action_designator.py index 828dc2bdb..60dcaa357 100644 --- a/src/pycram/designators/action_designator.py +++ b/src/pycram/designators/action_designator.py @@ -11,22 +11,26 @@ LookAtActionPerformable, DetectActionPerformable, OpenActionPerformable, CloseActionPerformable, GraspingActionPerformable, ReleaseActionPerformable) +from owlready2 import Thing +from pycram.ontology import OntologyOWL class MoveTorsoAction(ActionDesignatorDescription): """ Action Designator for Moving the torso of the robot up and down """ - def __init__(self, positions: List[float], resolver=None): + def __init__(self, positions: List[float], resolver=None, onto_concept: Thing = None): """ Create a designator description to move the torso of the robot up and down. :param positions: List of possible positions of the robots torso, possible position is a float of height in metres :param resolver: An optional resolver that returns a performable designator for a designator description. """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.positions: List[float] = positions + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.MoveTorso def ground(self) -> MoveTorsoActionPerformable: """ @@ -51,7 +55,7 @@ class SetGripperAction(ActionDesignatorDescription): Set the gripper state of the robot """ - def __init__(self, grippers: List[str], motions: List[str], resolver=None): + def __init__(self, grippers: List[str], motions: List[str], resolver=None, onto_concept: Thing = None): """ Sets the gripper state, the desired state is given with the motion. Motion can either be 'open' or 'close'. @@ -59,9 +63,11 @@ def __init__(self, grippers: List[str], motions: List[str], resolver=None): :param motions: A list of possible motions :param resolver: An alternative resolver that returns a performable designator for a designator description """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.grippers: List[str] = grippers self.motions: List[str] = motions + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.SettingGripper def ground(self) -> SetGripperActionPerformable: """ @@ -89,10 +95,12 @@ class ReleaseAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], object_designator_description: ObjectDesignatorDescription, - resolver=None): - super().__init__(resolver) + resolver=None, onto_concept: Thing = None): + super().__init__(resolver, onto_concept) self.grippers: List[str] = grippers self.object_designator_description = object_designator_description + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.Releasing def ground(self) -> ReleaseActionPerformable: return ReleaseActionPerformable(self.grippers[0], self.object_designator_description.ground()) @@ -110,11 +118,13 @@ class GripAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], object_designator_description: ObjectDesignatorDescription, - efforts: List[float], resolver=None): - super().__init__(resolver) + efforts: List[float], resolver=None, onto_concept: Thing = None): + super().__init__(resolver, onto_concept) self.grippers: List[str] = grippers self.object_designator_description: ObjectDesignatorDescription = object_designator_description self.efforts: List[float] = efforts + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.Holding def ground(self) -> GripActionPerformable: return GripActionPerformable(self.grippers[0], self.object_designator_description.ground(), self.efforts[0]) @@ -125,15 +135,17 @@ class ParkArmsAction(ActionDesignatorDescription): Park the arms of the robot. """ - def __init__(self, arms: List[Arms], resolver=None): + def __init__(self, arms: List[Arms], resolver=None, onto_concept: Thing = None): """ Moves the arms in the pre-defined parking position. Arms are taken from pycram.enum.Arms :param arms: A list of possible arms, that could be used :param resolver: An optional resolver that returns a performable designator from the designator description """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.arms: List[Arms] = arms + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.ParkingArms def ground(self) -> ParkArmsActionPerformable: """ @@ -150,7 +162,7 @@ class PickUpAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], - arms: List[str], grasps: List[str], resolver=None): + arms: List[str], grasps: List[str], resolver=None, onto_concept: Thing = None): """ Lets the robot pick up an object. The description needs an object designator describing the object that should be picked up, an arm that should be used as well as the grasp from which side the object should be picked up. @@ -160,11 +172,13 @@ def __init__(self, object_designator_description: Union[ObjectDesignatorDescrip :param grasps: List of possible grasps for the object :param resolver: An optional resolver that returns a performable designator with elements from the lists of possible paramter """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.grasps: List[str] = grasps + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.PickingUp def ground(self) -> PickUpActionPerformable: """ @@ -186,7 +200,7 @@ class PlaceAction(ActionDesignatorDescription): def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], target_locations: List[Pose], - arms: List[str], resolver=None): + arms: List[str], resolver=None, onto_concept: Thing = None): """ Create an Action Description to place an object @@ -195,11 +209,13 @@ def __init__(self, :param arms: List of possible arms to use :param resolver: Grounding method to resolve this designator """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.target_locations: List[Pose] = target_locations self.arms: List[str] = arms + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.Placing def ground(self) -> PlaceActionPerformable: """ @@ -218,15 +234,17 @@ class NavigateAction(ActionDesignatorDescription): Navigates the Robot to a position. """ - def __init__(self, target_locations: List[Pose], resolver=None): + def __init__(self, target_locations: List[Pose], resolver=None, onto_concept: Thing = None): """ Navigates the robot to a location. :param target_locations: A list of possible target locations for the navigation. :param resolver: An alternative resolver that creates a performable designator from the list of possible parameter """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.target_locations: List[Pose] = target_locations + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.Navigating def ground(self) -> NavigateActionPerformable: """ @@ -245,7 +263,7 @@ class TransportAction(ActionDesignatorDescription): def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], arms: List[str], - target_locations: List[Pose], resolver=None): + target_locations: List[Pose], resolver=None, onto_concept: Thing = None): """ Designator representing a pick and place plan. @@ -254,11 +272,13 @@ def __init__(self, :param target_locations: A list of possible target locations for the object to be placed :param resolver: An alternative resolver that returns a performable designator for the list of possible parameter """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.target_locations: List[Pose] = target_locations + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.Transporting def ground(self) -> TransportActionPerformable: """ @@ -278,15 +298,17 @@ class LookAtAction(ActionDesignatorDescription): Lets the robot look at a position. """ - def __init__(self, targets: List[Pose], resolver=None): + def __init__(self, targets: List[Pose], resolver=None, onto_concept: Thing = None): """ Moves the head of the robot such that it points towards the given target location. :param targets: A list of possible locations to look at :param resolver: An alternative resolver that returns a performable designator for a list of possible target locations """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.targets: List[Pose] = targets + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.LookingAt def ground(self) -> LookAtActionPerformable: """ @@ -302,15 +324,17 @@ class DetectAction(ActionDesignatorDescription): Detects an object that fits the object description and returns an object designator describing the object. """ - def __init__(self, object_designator_description: ObjectDesignatorDescription, resolver=None): + def __init__(self, object_designator_description: ObjectDesignatorDescription, resolver=None, onto_concept: Thing = None): """ Tries to detect an object in the field of view (FOV) of the robot. :param object_designator_description: Object designator describing the object :param resolver: An alternative resolver """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.object_designator_description: ObjectDesignatorDescription = object_designator_description + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.LookingFor #CheckingObjectPresence def ground(self) -> DetectActionPerformable: """ @@ -328,7 +352,7 @@ class OpenAction(ActionDesignatorDescription): Can currently not be used """ - def __init__(self, object_designator_description: ObjectPart, arms: List[str], resolver=None): + def __init__(self, object_designator_description: ObjectPart, arms: List[str], resolver=None, onto_concept: Thing = None): """ Moves the arm of the robot to open a container. @@ -336,9 +360,11 @@ def __init__(self, object_designator_description: ObjectPart, arms: List[str], r :param arms: A list of possible arms that should be used :param resolver: A alternative resolver that returns a performable designator for the lists of possible parameter. """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.Opening def ground(self) -> OpenActionPerformable: """ @@ -358,7 +384,7 @@ class CloseAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: ObjectPart, arms: List[str], - resolver=None): + resolver=None, onto_concept: Thing = None): """ Attempts to close an open container @@ -366,9 +392,11 @@ def __init__(self, object_designator_description: ObjectPart, arms: List[str], :param arms: A list of possible arms to use :param resolver: An alternative resolver that returns a performable designator for the list of possible parameter """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.Closing def ground(self) -> CloseActionPerformable: """ @@ -386,7 +414,7 @@ class GraspingAction(ActionDesignatorDescription): """ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDescription, ObjectPart], - resolver: Callable = None): + resolver: Callable = None, onto_concept: Thing = None): """ Will try to grasp the object described by the given description. Grasping is done by moving into a pre grasp position 10 cm before the object, opening the gripper, moving to the object and then closing the gripper. @@ -395,9 +423,11 @@ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDe :param object_description: Description of the object that should be grasped :param resolver: An alternative resolver to get a specified designator from the designator description """ - super().__init__(resolver) + super().__init__(resolver, onto_concept) self.arms: List[str] = arms self.object_description: ObjectDesignatorDescription = object_description + if self.onto_concept is None: + self.onto_concept = OntologyOWL.onto.Grasping def ground(self) -> GraspingActionPerformable: """ diff --git a/src/pycram/helper.py b/src/pycram/helper.py index 52b5ae67f..ec3e8360e 100644 --- a/src/pycram/helper.py +++ b/src/pycram/helper.py @@ -5,6 +5,7 @@ Classes: GeneratorList -- implementation of generator list wrappers. +Singleton -- implementation of singleton metaclass """ from inspect import isgeneratorfunction from typing import List @@ -22,6 +23,13 @@ import os import math +class Singleton(type): + _instances = {} + + def __call__(cls, *args, **kwargs): + if cls not in cls._instances: + cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs) + return cls._instances[cls] class bcolors: """ diff --git a/src/pycram/ontology.py b/src/pycram/ontology.py new file mode 100644 index 000000000..029e4c171 --- /dev/null +++ b/src/pycram/ontology.py @@ -0,0 +1,156 @@ +import sys, inspect +from abc import ABCMeta +from pathlib import Path +from typing import List + +from pycram.designator import ObjectDesignatorDescription +from pycram.enums import ObjectType +from pycram.pose import Pose +from pycram.helper import Singleton + +from owlready2 import * + +class OntologyOWL(object, metaclass=Singleton): + """ + Singleton class as the adapter accessing data of an OWL ontology, largely based on owlready2. + """ + onto = None + onto_world = None + onto_filename = None + onto_namespace = None + + @classmethod + def print_ontology_class(cls, onto_class): + """ + Print information (ancestors, super classes, subclasses, properties, etc.) of an ontology class + """ + print(onto_class, type(onto_class)) + print('Super classes: ', onto_class.is_a) + print('Ancestors: ', onto_class.ancestors()) + print('Subclasses: ', list(onto_class.subclasses())) + print('Properties: ', list(onto_class.get_class_properties())) + + def __init__(self, onto_filename: str, onto_search_path=f"{Path.home()}/ontologies"): + """ + Create the singleton object of OntologyOWL class + + :param onto_filename: full name path of to be loaded ontology file + :param onto_search_path: directory path from which a possibly existing ontology is searched. This is appeneded + to `onto_path`, a global variable by owlready2 containing a list of directories for searching local copies of + ontologies (similarly to python `sys.path` for modules/packages). + """ + Path(onto_search_path).mkdir(parents=True, exist_ok=True) + onto_path.append(onto_search_path) + onto_name = Path(onto_filename).stem + + # Create an ontology world with parallelized file parsing enabled + OntologyOWL.onto_world = World(filename=f"{onto_search_path}/{onto_name}.sqlite3", exclusive=False, + enable_thread_parallelism=True) + + onto = OntologyOWL.onto_world.get_ontology(onto_filename).load() + if onto.loaded: + print(f'Ontology [{onto.base_iri}]\'s name: {onto.name} has been loaded') + OntologyOWL.onto = onto + OntologyOWL.onto_namespace = get_namespace(onto.base_iri).name + print(f'Ontology namespace: {OntologyOWL.onto_namespace}') + OntologyOWL.onto_filename = onto_filename + else: + assert False, f'Ontology [{onto.base_iri}]\'s name: {onto.name} failed being loaded' + + @classmethod + def save(cls): + """ + Save the current ontology to disk + """ + cls.onto.save(file=cls.onto_filename) + cls.onto_world.save() + + @classmethod + def create_ontology_class(cls, parent_onto_class, class_name): + """ + Create a new class in ontology + + :param parent_onto_class: a parent ontology class for the new class + :class_name: a given name to the new class + """ + assert issubclass(parent_onto_class, Thing) + return types.new_class(class_name, (parent_onto_class,)) + + @classmethod + def get_ontology_class(cls, class_name): + """ + Get an ontology class + + :param class_name: name of the searched-for ontology class + """ + for onto_class in cls.onto.classes(): + if onto_class.name == class_name: + print(onto_class, type(onto_class)) + print('Super classes: ', onto_class.is_a) + print('Ancestors: ', onto_class.ancestors()) + print('Subclasses: ', list(onto_class.subclasses())) + print('Properties: ', list(onto_class.get_class_properties())) + return onto_class + return None + + @classmethod + def get_ontology_classes_by_namespace(cls, namespace: str): + """ + Get all ontologies classes by namespace + + :param namespace: namespace of the searched-for ontology classes + """ + return [onto_class for onto_class in cls.onto.classes() if onto_class.namespace.name == namespace] + + @classmethod + def get_ontology_classes_by_subname(cls, class_subname: str): + """ + Get all ontologies classes by subname + + :param class_subname: a string as part of the full names of the searched-for ontology classes + """ + return [onto_class for onto_class in cls.onto.classes() if class_subname.lower() in onto_class.name.lower()] + + @classmethod + def get_ontology_descendants(cls, ancestor_class, class_subname: str): + """ + Get ontology descendant classes of an ancestor_class given descendant class subname + + :param class_subname: a string as part of the full names of the given ancestor class + """ + descendants = [] + for onto_class in cls.onto.classes(): + if (class_subname.lower() in onto_class.name.lower()) and (ancestor_class in onto_class.ancestors()): + descendants.append(onto_class) + return descendants + + +if __name__ == "__main__": + OntologyOWL("http://www.ease-crc.org/ont/SOMA.owl") + + print(OntologyOWL.get_ontology_classes_by_namespace("SOMA")) + print(OntologyOWL.get_ontology_classes_by_subname('Container')) + print(f'{OntologyOWL.onto.name}.Container: ', OntologyOWL.onto.Container) + print(OntologyOWL.get_ontology_descendants(OntologyOWL.onto.Container, 'Container')) + + print(OntologyOWL.get_ontology_classes_by_subname('Navigating')) + print(OntologyOWL.get_ontology_class('Navigating')) + + # enum -> Onto class, the gate to ontology knowledge related to ObjectType + print(OntologyOWL.get_ontology_classes_by_subname('Container')) + parent_onto_cls_name = 'Container' + child_onto_cls_name = 'CustomContainer' + ParentOntoClass = OntologyOWL.get_ontology_class(parent_onto_cls_name) + if ParentOntoClass: + ChildOntoClass = OntologyOWL.create_ontology_class(ParentOntoClass, child_onto_cls_name) + print(ChildOntoClass) + + # PyCram obj -> Onto concept + onto_concept = ChildOntoClass('child_onto') + print('\nonto_concept:', onto_concept, '- type: ', type(onto_concept)) + pycram_obj = ObjectDesignatorDescription(names=["obj"]) + pycram_obj.pose = lambda: Pose + pycram_obj.onto_concept = onto_concept + else: + print(f"No {parent_onto_cls_name} found in {OntologyOWL.onto}") + From 399f5002614714b32b3a3712dd9e147f5f221adc Mon Sep 17 00:00:00 2001 From: duc than Date: Mon, 25 Mar 2024 18:17:26 +0100 Subject: [PATCH 03/26] BulletWorldTestCase add OntologyOWL init TestActionDesignatorGrounding add is-valid-onto_concept test --- src/pycram/designators/action_designator.py | 57 ++++++++++----------- src/pycram/ontology.py | 45 ++++++++++++++-- test/bullet_world_testcase.py | 3 +- test/test_action_designator.py | 15 ++++++ 4 files changed, 86 insertions(+), 34 deletions(-) diff --git a/src/pycram/designators/action_designator.py b/src/pycram/designators/action_designator.py index 60dcaa357..fb8c5b038 100644 --- a/src/pycram/designators/action_designator.py +++ b/src/pycram/designators/action_designator.py @@ -29,8 +29,8 @@ def __init__(self, positions: List[float], resolver=None, onto_concept: Thing = """ super().__init__(resolver, onto_concept) self.positions: List[float] = positions - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.MoveTorso + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.MoveTorso def ground(self) -> MoveTorsoActionPerformable: """ @@ -66,8 +66,8 @@ def __init__(self, grippers: List[str], motions: List[str], resolver=None, onto_ super().__init__(resolver, onto_concept) self.grippers: List[str] = grippers self.motions: List[str] = motions - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.SettingGripper + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.SettingGripper def ground(self) -> SetGripperActionPerformable: """ @@ -99,8 +99,8 @@ def __init__(self, grippers: List[str], object_designator_description: ObjectDes super().__init__(resolver, onto_concept) self.grippers: List[str] = grippers self.object_designator_description = object_designator_description - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.Releasing + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.Releasing def ground(self) -> ReleaseActionPerformable: return ReleaseActionPerformable(self.grippers[0], self.object_designator_description.ground()) @@ -123,13 +123,12 @@ def __init__(self, grippers: List[str], object_designator_description: ObjectDes self.grippers: List[str] = grippers self.object_designator_description: ObjectDesignatorDescription = object_designator_description self.efforts: List[float] = efforts - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.Holding + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.Holding def ground(self) -> GripActionPerformable: return GripActionPerformable(self.grippers[0], self.object_designator_description.ground(), self.efforts[0]) - class ParkArmsAction(ActionDesignatorDescription): """ Park the arms of the robot. @@ -144,8 +143,8 @@ def __init__(self, arms: List[Arms], resolver=None, onto_concept: Thing = None): """ super().__init__(resolver, onto_concept) self.arms: List[Arms] = arms - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.ParkingArms + if self.onto_concept is None and OntologyOWL.onto: + self.onto_concept = OntologyOWL.soma.ParkingArms def ground(self) -> ParkArmsActionPerformable: """ @@ -177,8 +176,8 @@ def __init__(self, object_designator_description: Union[ObjectDesignatorDescrip ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.grasps: List[str] = grasps - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.PickingUp + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.PickingUp def ground(self) -> PickUpActionPerformable: """ @@ -214,8 +213,8 @@ def __init__(self, ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.target_locations: List[Pose] = target_locations self.arms: List[str] = arms - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.Placing + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.Placing def ground(self) -> PlaceActionPerformable: """ @@ -243,8 +242,8 @@ def __init__(self, target_locations: List[Pose], resolver=None, onto_concept: Th """ super().__init__(resolver, onto_concept) self.target_locations: List[Pose] = target_locations - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.Navigating + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.Navigating def ground(self) -> NavigateActionPerformable: """ @@ -277,8 +276,8 @@ def __init__(self, ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.target_locations: List[Pose] = target_locations - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.Transporting + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.Transporting def ground(self) -> TransportActionPerformable: """ @@ -307,8 +306,8 @@ def __init__(self, targets: List[Pose], resolver=None, onto_concept: Thing = Non """ super().__init__(resolver, onto_concept) self.targets: List[Pose] = targets - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.LookingAt + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.LookingAt def ground(self) -> LookAtActionPerformable: """ @@ -333,8 +332,8 @@ def __init__(self, object_designator_description: ObjectDesignatorDescription, r """ super().__init__(resolver, onto_concept) self.object_designator_description: ObjectDesignatorDescription = object_designator_description - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.LookingFor #CheckingObjectPresence + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.LookingFor #CheckingObjectPresence def ground(self) -> DetectActionPerformable: """ @@ -363,8 +362,8 @@ def __init__(self, object_designator_description: ObjectPart, arms: List[str], r super().__init__(resolver, onto_concept) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.Opening + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.Opening def ground(self) -> OpenActionPerformable: """ @@ -395,8 +394,8 @@ def __init__(self, object_designator_description: ObjectPart, arms: List[str], super().__init__(resolver, onto_concept) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.Closing + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.Closing def ground(self) -> CloseActionPerformable: """ @@ -426,8 +425,8 @@ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDe super().__init__(resolver, onto_concept) self.arms: List[str] = arms self.object_description: ObjectDesignatorDescription = object_description - if self.onto_concept is None: - self.onto_concept = OntologyOWL.onto.Grasping + if self.onto_concept is None and OntologyOWL.soma is not None: + self.onto_concept = OntologyOWL.soma.Grasping def ground(self) -> GraspingActionPerformable: """ diff --git a/src/pycram/ontology.py b/src/pycram/ontology.py index 029e4c171..47032c2bf 100644 --- a/src/pycram/ontology.py +++ b/src/pycram/ontology.py @@ -14,9 +14,26 @@ class OntologyOWL(object, metaclass=Singleton): """ Singleton class as the adapter accessing data of an OWL ontology, largely based on owlready2. """ + + """ + The ontology instance as the result of an ontology loading operation, eg by owlready2 get_ontology().load() + """ onto = None + """ + The SOMA ontology instance, referencing :attr:`onto` in case of ontology loading from SOMA + """ + soma = None + """ + Ontology world, place holder of triples stored by owlready2. Ref: https://owlready2.readthedocs.io/en/latest/world.html + """ onto_world = None + """ + Full name path of the file from which the ontology is loaded + """ onto_filename = None + """ + Namespace of the loaded ontology + """ onto_namespace = None @classmethod @@ -53,6 +70,8 @@ def __init__(self, onto_filename: str, onto_search_path=f"{Path.home()}/ontologi OntologyOWL.onto = onto OntologyOWL.onto_namespace = get_namespace(onto.base_iri).name print(f'Ontology namespace: {OntologyOWL.onto_namespace}') + if OntologyOWL.onto_namespace == "SOMA": + OntologyOWL.soma = OntologyOWL.onto OntologyOWL.onto_filename = onto_filename else: assert False, f'Ontology [{onto.base_iri}]\'s name: {onto.name} failed being loaded' @@ -85,11 +104,14 @@ def get_ontology_class(cls, class_name): """ for onto_class in cls.onto.classes(): if onto_class.name == class_name: + print('-------------------') print(onto_class, type(onto_class)) print('Super classes: ', onto_class.is_a) print('Ancestors: ', onto_class.ancestors()) print('Subclasses: ', list(onto_class.subclasses())) print('Properties: ', list(onto_class.get_class_properties())) + print('Direct Instances: ', list(onto_class.direct_instances())) + print('Inverse Restrictions: ', list(onto_class.inverse_restrictions())) return onto_class return None @@ -127,14 +149,15 @@ def get_ontology_descendants(cls, ancestor_class, class_subname: str): if __name__ == "__main__": OntologyOWL("http://www.ease-crc.org/ont/SOMA.owl") + onto = OntologyOWL.onto print(OntologyOWL.get_ontology_classes_by_namespace("SOMA")) print(OntologyOWL.get_ontology_classes_by_subname('Container')) - print(f'{OntologyOWL.onto.name}.Container: ', OntologyOWL.onto.Container) - print(OntologyOWL.get_ontology_descendants(OntologyOWL.onto.Container, 'Container')) + print(f'{onto.name}.Container: ', onto.Container) + print(OntologyOWL.get_ontology_descendants(onto.Container, 'Container')) print(OntologyOWL.get_ontology_classes_by_subname('Navigating')) - print(OntologyOWL.get_ontology_class('Navigating')) + OntologyOWL.get_ontology_class('Navigating') # enum -> Onto class, the gate to ontology knowledge related to ObjectType print(OntologyOWL.get_ontology_classes_by_subname('Container')) @@ -148,9 +171,23 @@ def get_ontology_descendants(cls, ancestor_class, class_subname: str): # PyCram obj -> Onto concept onto_concept = ChildOntoClass('child_onto') print('\nonto_concept:', onto_concept, '- type: ', type(onto_concept)) + pycram_obj = ObjectDesignatorDescription(names=["obj"]) pycram_obj.pose = lambda: Pose pycram_obj.onto_concept = onto_concept else: - print(f"No {parent_onto_cls_name} found in {OntologyOWL.onto}") + print(f"No {parent_onto_cls_name} found in {onto}") + + sync_reasoner_hermit(infer_property_values=True) + #sync_reasoner_pellet(infer_property_values=True, infer_data_property_values=True) + + OntologyOWL.get_ontology_class('Pouring') + print(f'{onto.Pouring}-isTaskAffordedBy: ', onto.Pouring.isTaskAffordedBy) + + OntologyOWL.get_ontology_class('Pourable') + print(f'{onto.Pourable}-affordsBearer: ', onto.Pourable.affordsBearer) + + OntologyOWL.get_ontology_class('PouredObject') + print(f'{onto.PouredObject}-isBearerAffordedBy: ', onto.PouredObject.isBearerAffordedBy) + diff --git a/test/bullet_world_testcase.py b/test/bullet_world_testcase.py index 22ae60fdb..67b6b9c01 100644 --- a/test/bullet_world_testcase.py +++ b/test/bullet_world_testcase.py @@ -7,7 +7,7 @@ from pycram.process_module import ProcessModule from pycram.enums import ObjectType from pycram.ros.viz_marker_publisher import VizMarkerPublisher - +from pycram.ontology import OntologyManager class BulletWorldTestCase(unittest.TestCase): @@ -23,6 +23,7 @@ def setUpClass(cls): cls.cereal = Object("cereal", ObjectType.BREAKFAST_CEREAL, "breakfast_cereal.stl", pose=Pose([1.3, 0.7, 0.95])) ProcessModule.execution_delay = False cls.viz_marker_publisher = VizMarkerPublisher() + OntologyManager("http://www.ease-crc.org/ont/SOMA.owl") def setUp(self): self.world.reset_bullet_world() diff --git a/test/test_action_designator.py b/test/test_action_designator.py index da78b44da..9bcb8015a 100644 --- a/test/test_action_designator.py +++ b/test/test_action_designator.py @@ -18,6 +18,8 @@ class TestActionDesignatorGrounding(BulletWorldTestCase): def test_move_torso(self): description = action_designator.MoveTorsoAction([0.3]) + # SOMA ontology seems not provide a corresponding concept yet for MoveTorso + # self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().position, 0.3) with simulated_robot: description.resolve().perform() @@ -25,6 +27,7 @@ def test_move_torso(self): def test_set_gripper(self): description = action_designator.SetGripperAction(["left"], ["open", "close"]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().motion, "open") self.assertEqual(len(list(iter(description))), 2) @@ -36,17 +39,20 @@ def test_set_gripper(self): def test_release(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.ReleaseAction(["left"], object_description) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().object_designator.name, "milk") def test_grip(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.GripAction(["left"], object_description, [0.5]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().object_designator.name, "milk") def test_park_arms(self): description = action_designator.ParkArmsAction([pycram.enums.Arms.BOTH]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().arm, pycram.enums.Arms.BOTH) with simulated_robot: description.resolve().perform() @@ -57,11 +63,13 @@ def test_park_arms(self): def test_navigate(self): description = action_designator.NavigateAction([Pose([0, 0, 0], [0, 0, 0, 1])]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().target_location, Pose([0, 0, 0], [0, 0, 0, 1])) def test_pick_up(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.PickUpAction(object_description, ["left"], ["front"]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: NavigateActionPerformable(Pose([0.6, 0.4, 0], [0, 0, 0, 1])).perform() @@ -72,6 +80,7 @@ def test_pick_up(self): def test_place(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.PlaceAction(object_description, [Pose([1.3, 1, 0.9], [0, 0, 0, 1])], ["left"]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: NavigateActionPerformable(Pose([0.6, 0.4, 0], [0, 0, 0, 1])).perform() @@ -82,6 +91,7 @@ def test_place(self): def test_look_at(self): description = action_designator.LookAtAction([Pose([1, 0, 1])]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().target, Pose([1, 0, 1])) with simulated_robot: description.resolve().perform() @@ -93,6 +103,7 @@ def test_detect(self): # time.sleep(1) object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.DetectAction(object_description) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: detected_object = description.resolve().perform() @@ -105,12 +116,14 @@ def test_detect(self): def test_open(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.OpenAction(object_description, ["left"], [1]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().object_designator.name, "milk") @unittest.skip def test_close(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.CloseAction(object_description, ["left"]) + self.assertIsNotNone(description.onto_concept) self.assertEqual(description.ground().object_designator.name, "milk") def test_transport(self): @@ -119,6 +132,7 @@ def test_transport(self): ["left"], [Pose([-1.35, 0.78, 0.95], [0.0, 0.0, 0.16439898301071468, 0.9863939245479175])]) + self.assertIsNotNone(description.onto_concept) with simulated_robot: action_designator.MoveTorsoAction([0.2]).resolve().perform() description.resolve().perform() @@ -131,6 +145,7 @@ def test_grasping(self): self.robot.set_pose(Pose([-2.14, 1.06, 0])) milk_desig = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.GraspingAction(["right"], milk_desig) + self.assertIsNotNone(description.onto_concept) with simulated_robot: description.resolve().perform() dist = np.linalg.norm( From ab4181f532d6f4fe38e0d968c8b1cc9404bef355 Mon Sep 17 00:00:00 2001 From: duc than Date: Wed, 27 Mar 2024 16:20:15 +0100 Subject: [PATCH 04/26] OntologyHandheldObject, OntologyPlaceHolderObject + DesignatorDescription: onto_concepts --- examples/ontology.ipynb | 8911 +++++++++++++++++++ src/pycram/designator.py | 29 +- src/pycram/designators/action_designator.py | 130 +- src/pycram/designators/object_designator.py | 2 + src/pycram/ontology.py | 494 +- test/bullet_world_testcase.py | 4 +- test/test_action_designator.py | 28 +- 7 files changed, 9426 insertions(+), 172 deletions(-) create mode 100644 examples/ontology.ipynb diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb new file mode 100644 index 000000000..9096f380c --- /dev/null +++ b/examples/ontology.ipynb @@ -0,0 +1,8911 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# PyCRAM Presentation" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:14:50.953932170Z", + "start_time": "2024-01-29T16:14:50.284068023Z" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "pybullet build time: May 20 2022 19:44:17\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='base_laser_link']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n", + "[WARN] [1706544890.889466]: Failed to import Giskard messages\n", + "[WARN] [1706544890.894063]: Could not import RoboKudo messages, RoboKudo interface could not be initialized\n" + ] + } + ], + "source": [ + "import pycram" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bullet World\n", + "\n", + "The BulletWorld is the internal simulation of PyCRAM. You can simulate different actions and reason about the outcome of different actions. \n", + "\n", + "It is possible to spawn objects and robots into the BulletWorld, these objects can come from URDF, OBJ or STL files. \n", + "\n", + "A BulletWorld can be created by simply creating an object of the BulletWorld class. " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:14:51.215354072Z", + "start_time": "2024-01-29T16:14:50.980844838Z" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Unknown tag \"material\" in /robot[@name='plane']/link[@name='planeLink']/collision[1]\n", + "Unknown tag \"contact\" in /robot[@name='plane']/link[@name='planeLink']\n" + ] + } + ], + "source": [ + "from pycram.bullet_world import BulletWorld, Object\n", + "from pycram.enums import ObjectType\n", + "from pycram.pose import Pose\n", + "\n", + "world = BulletWorld()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The BulletWorld allows to render images from arbitrary positions. In the following example we render images with the camera at the position [0.3, 0, 1] and pointing towards [1, 0, 1], so we are looking upwards along the x-axis. \n", + "\n", + "The renderer returns 3 different kinds of images which are also shown on the left side of the BulletWorld window. (If these winodws are missing, click the BulletWorld window to focus it, and press \"g\") These images are:\n", + "* An RGB image which shows everything like it is rendered in the BulletWorld window, just from another perspective. \n", + "* A depth image which consists of distance values from the camera towards the objects in the field of view. \n", + "* A segmentation mask image which segments the image into the different objects displayed. The segmentation is done by assigning every pixel the unique id of the object that is displayed there. " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:14:51.251936758Z", + "start_time": "2024-01-29T16:14:51.234948638Z" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Unknown tag \"material\" in /robot[@name='plane']/link[@name='planeLink']/collision[1]\n", + "Unknown tag \"contact\" in /robot[@name='plane']/link[@name='planeLink']\n" + ] + }, + { + "data": { + "text/plain": "[array([[[255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n ...,\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255]],\n \n [[255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n ...,\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255]],\n \n [[255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n ...,\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255]],\n \n ...,\n \n [[239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n ...,\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255]],\n \n [[239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n ...,\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255]],\n \n [[239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n ...,\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255]]], dtype=uint8),\n array([[0.99999994, 0.99999994, 0.99999994, ..., 0.99999994, 0.99999994,\n 0.99999994],\n [0.99999994, 0.99999994, 0.99999994, ..., 0.99999994, 0.99999994,\n 0.99999994],\n [0.99999994, 0.99999994, 0.99999994, ..., 0.99999994, 0.99999994,\n 0.99999994],\n ...,\n [0.80473447, 0.80473447, 0.80473447, ..., 0.80473447, 0.80473447,\n 0.80473447],\n [0.8031688 , 0.8031688 , 0.8031688 , ..., 0.8031688 , 0.8031688 ,\n 0.8031688 ],\n [0.80160314, 0.80160314, 0.80160314, ..., 0.80160314, 0.80160314,\n 0.80160314]], dtype=float32),\n array([[-1, -1, -1, ..., -1, -1, -1],\n [-1, -1, -1, ..., -1, -1, -1],\n [-1, -1, -1, ..., -1, -1, -1],\n ...,\n [ 1, 1, 1, ..., 1, 1, 1],\n [ 1, 1, 1, ..., 1, 1, 1],\n [ 1, 1, 1, ..., 1, 1, 1]], dtype=int32)]" + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from pycram.bullet_world_reasoning import _get_images_for_target\n", + "\n", + "_get_images_for_target(Pose([1, 0, 1], [0, 0, 0, 1]), Pose([0.3, 0, 1], [0, 0, 0, 1]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Objects\n", + "Everything that is located inside the BulletWorld is an Object. \n", + "Objects can be created from URDF, OBJ or STL files. Since everything is of type Object a robot might share the same methods as a milk (with some limitations).\n", + "\n", + "Signature:\n", + "Object:\n", + "* Name \n", + "* Type\n", + "* Filename or Filepath\n", + "\n", + " Optional:\n", + " * Position\n", + " * Orientation\n", + " * World \n", + " * Color \n", + " * Ignore Cached Files\n", + "\n", + "If there is only a filename and no path, PyCRAM will check in the resource directory if there is a matching file. \n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:14:51.319150211Z", + "start_time": "2024-01-29T16:14:51.238519616Z" + } + }, + "outputs": [], + "source": [ + "milk = Object(\"Milk\", ObjectType.MILK, \"milk.stl\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Objects provide methods to change the position and rotation, change the color, attach other objects, set the state of joints if the objects has any or get the position and orientation of a link. \n", + "\n", + "These methods are the same for every Object, however since some Objects may not have joints or more than one link methods related to these will not work. " + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:14:51.361155485Z", + "start_time": "2024-01-29T16:14:51.360054431Z" + } + }, + "outputs": [], + "source": [ + "milk.set_position(Pose([1, 0, 0]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To remove an Object from the BulletWorld just call the 'remove' method on the Object." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:14:51.404210573Z", + "start_time": "2024-01-29T16:14:51.360232825Z" + } + }, + "outputs": [], + "source": [ + "milk.remove()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Since everything inside the BulletWorld is an Object, even a complex environment Object like the kitchen can be spawned in the same way as the milk." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:14:54.380977290Z", + "start_time": "2024-01-29T16:14:51.404113811Z" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Scalar element defined multiple times: limit\n", + "Scalar element defined multiple times: limit\n" + ] + } + ], + "source": [ + "kitchen = Object(\"kitchen\", ObjectType.ENVIRONMENT, \"kitchen.urdf\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Costmaps\n", + "\n", + "Costmaps are a way to get positions with respect to certain criterias. \n", + "The currently available costmaps are:\n", + "* Occupancy Costmap\n", + "* Visibility Costmap\n", + "* Semantic Costmap \n", + "* Gaussian Costmap\n", + "\n", + "It is also possible to merge multiple costmaps to combine different criteria." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Visibility Costmaps\n", + "Visibility costmaps determine every position, around a target position, from which the target is visible. Visibility Costmaps are able to work with cameras that are movable in height for example, if the robot has a movable torso. " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:14:54.951307507Z", + "start_time": "2024-01-29T16:14:54.380864026Z" + } + }, + "outputs": [], + "source": [ + "import pycram.costmaps as cm\n", + "v = cm.VisibilityCostmap(1.27, 1.60, size=300, resolution=0.02, origin=Pose([0, 0, 0.1], [0, 0, 0, 1]))" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:01.756580723Z", + "start_time": "2024-01-29T16:14:54.961615686Z" + } + }, + "outputs": [], + "source": [ + "v.visualize()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:05.092885577Z", + "start_time": "2024-01-29T16:15:05.091325419Z" + } + }, + "outputs": [], + "source": [ + "v.close_visualization()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Occupancy Costmap\n", + "Is valid for every position where the robot can be placed without colliding with an object." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:05.847569295Z", + "start_time": "2024-01-29T16:15:05.093669437Z" + } + }, + "outputs": [], + "source": [ + "o = cm.OccupancyCostmap(0.2, from_ros=False, size=300, resolution=0.02, origin=Pose([0, 0, 0.1], [0, 0, 0, 1]))" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:05.944506368Z", + "start_time": "2024-01-29T16:15:05.849514274Z" + } + }, + "outputs": [], + "source": [ + "s = cm.SemanticCostmap(kitchen, \"kitchen_island_surface\", size=100, resolution=0.02)\n", + "\n", + "g = cm.GaussianCostmap(200, 15, resolution=0.02)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can visualize the costmap in the BulletWorld to get an impression what information is actually contained in the costmap. With this you could also check if the costmap was created correctly. \n", + "Visualization can be done via the 'visualize' method of each costmap." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:06.810575822Z", + "start_time": "2024-01-29T16:15:05.955432369Z" + } + }, + "outputs": [], + "source": [ + "o.visualize()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:07.161867271Z", + "start_time": "2024-01-29T16:15:07.159806241Z" + } + }, + "outputs": [], + "source": [ + "o.close_visualization()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "It is also possible to combine two costmap, this will result in a new costmap with the same size which contains the information of both previous costmaps. Combination is done by checking for each position in the two costmaps if they are zero, in this case to same position in the new costmap will also be zero in any other case the new position will be the normalized product of the two combined costmaps." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:07.193879719Z", + "start_time": "2024-01-29T16:15:07.161787791Z" + } + }, + "outputs": [], + "source": [ + "ov = o + v" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:09.283523209Z", + "start_time": "2024-01-29T16:15:07.188128850Z" + } + }, + "outputs": [], + "source": [ + "ov.visualize()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:10.347228575Z", + "start_time": "2024-01-29T16:15:09.280179794Z" + } + }, + "outputs": [], + "source": [ + "ov.close_visualization()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Bullet World Reasoning \n", + "Allows for geometric reasoning in the BulletWorld. At the moment the following types of reasoning are supported:\n", + "* Stable\n", + "* Contact\n", + "* Visible \n", + "* Occluding \n", + "* Reachable \n", + "* Blocking\n", + "* Supporting\n", + "\n", + "To show the geometric reasoning we first spawn a robot as well as the milk Object again." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:12.961385558Z", + "start_time": "2024-01-29T16:15:10.347682457Z" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='base_laser_link']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='base_laser_link']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n" + ] + } + ], + "source": [ + "import pycram.bullet_world_reasoning as btr\n", + "milk = Object(\"Milk\", ObjectType.MILK, \"milk.stl\", pose=Pose([1, 0, 1]))\n", + "pr2 = Object(\"pr2\", ObjectType.ROBOT, \"pr2.urdf\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We start with testing for visibility " + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "scrolled": true, + "ExecuteTime": { + "end_time": "2024-01-29T16:15:13.246942739Z", + "start_time": "2024-01-29T16:15:12.963076402Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Milk visible: True\n" + ] + } + ], + "source": [ + "milk.set_position(Pose([1,0,1]))\n", + "visible = btr.visible(milk, pr2.get_link_pose(\"wide_stereo_optical_frame\"))\n", + "print(f\"Milk visible: {visible}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:13.334740244Z", + "start_time": "2024-01-29T16:15:13.249042978Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Milk is in contact with the floor: True\n" + ] + } + ], + "source": [ + "milk.set_position(Pose([1, 0, 0.05]))\n", + "\n", + "plane = BulletWorld.current_bullet_world.objects[0]\n", + "contact = btr.contact(milk, plane)\n", + "print(f\"Milk is in contact with the floor: {contact}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:13.430296220Z", + "start_time": "2024-01-29T16:15:13.334507309Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Milk is reachable for the PR2: True\n" + ] + } + ], + "source": [ + "milk.set_position(Pose([0.6, -0.5, 0.7]))\n", + "\n", + "reachable = btr.reachable(milk, pr2, \"r_gripper_tool_frame\")\n", + "print(f\"Milk is reachable for the PR2: {reachable}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Designators\n", + "Designators are symbolic descriptions of Actions, Motions, Objects or Locations. In PyCRAM the different types of designators are represented by a class which takes a description, the description then tells the designator what to do. \n", + "\n", + "For example, let's look at a Motion Designator to move the robot to a specific location. \n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Motion Designators\n", + "\n", + "When using a Motion Designator you need to specify which Process Module needs to be used, either the Process Module for the real or the simulated robot. A Process Module is the interface between a real or simulated robot, and PyCRAM designators. By exchanging the Process Module, one can quickly change the robot the plan is executed on, allowing PyCRAM plans to be re-used across multiple robot platforms. This can be done either with a decorator which can be added to a function and then every designator executed within this function, will be executed on the specified robot. The other possibility is a \"with\" scope which wraps a code piece.\n", + "\n", + "These two ways can also be combined, you could write a function which should be executed on the real robot and the function contains a \"with\" scope which executes something on the simulated robot for reasoning purposes. " + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:13.939910370Z", + "start_time": "2024-01-29T16:15:13.437727375Z" + } + }, + "outputs": [], + "source": [ + "from pycram.designators.motion_designator import *\n", + "from pycram.process_module import simulated_robot, with_simulated_robot\n", + "\n", + "description = MoveMotion(target=Pose([1, 0, 0], [0, 0, 0, 1]))\n", + "\n", + "with simulated_robot:\n", + " description.perform()\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "scrolled": true, + "ExecuteTime": { + "end_time": "2024-01-29T16:15:14.446281217Z", + "start_time": "2024-01-29T16:15:13.948689644Z" + } + }, + "outputs": [], + "source": [ + "from pycram.process_module import with_simulated_robot\n", + "\n", + "@with_simulated_robot\n", + "def move():\n", + " MoveMotion(target=Pose([0, 0, 0], [0, 0, 0, 1])).perform()\n", + "\n", + "move()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Other implemented Motion Designator descriptions are:\n", + "* Accessing\n", + "* Move TCP\n", + "* Looking\n", + "* Move Gripper\n", + "* Detecting\n", + "* Move Arm Joint \n", + "* World State Detecting " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Object Designators\n", + "\n", + "An Object Designator represents objects. These objects could either be from the BulletWorld or the real world. Object Designators are used, for example, by the PickUpAction to know which object should be picked up." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:14.453344058Z", + "start_time": "2024-01-29T16:15:14.448819583Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": "BelieveObject.Object(name='Milk', type=, bullet_world_object=Object(world=, \nlocal_transformer=, \nname=Milk, \ntype=ObjectType.MILK, \ncolor=[1, 1, 1, 1], \nid=4, \npath=/home/dprueser/workspace/ros/src/pycram/src/pycram/../../resources/cached/milk.urdf, \njoints: ..., \nlinks: ..., \nattachments: ..., \ncids: ..., \noriginal_pose=header: \n seq: 0\n stamp: \n secs: 1706544910\n nsecs: 372853994\n frame_id: \"map\"\npose: \n position: \n x: 1.0\n y: 0.0\n z: 1.0\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \ntf_frame=Milk_4, \nurdf_object: ..., \n_current_pose=header: \n seq: 0\n stamp: \n secs: 1706544913\n nsecs: 335583925\n frame_id: \"map\"\npose: \n position: \n x: 0.6\n y: -0.5\n z: 0.7\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \n_current_link_poses: ..., \n_current_link_transforms: ..., \n_current_joint_states={}, \nbase_origin_shift=[ 4.15300950e-04 -6.29518181e-05 8.96554102e-02], \nlink_to_geometry: ...), _pose=, \nlocal_transformer=, \nname=Milk, \ntype=ObjectType.MILK, \ncolor=[1, 1, 1, 1], \nid=4, \npath=/home/dprueser/workspace/ros/src/pycram/src/pycram/../../resources/cached/milk.urdf, \njoints: ..., \nlinks: ..., \nattachments: ..., \ncids: ..., \noriginal_pose=header: \n seq: 0\n stamp: \n secs: 1706544910\n nsecs: 372853994\n frame_id: \"map\"\npose: \n position: \n x: 1.0\n y: 0.0\n z: 1.0\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \ntf_frame=Milk_4, \nurdf_object: ..., \n_current_pose=header: \n seq: 0\n stamp: \n secs: 1706544913\n nsecs: 335583925\n frame_id: \"map\"\npose: \n position: \n x: 0.6\n y: -0.5\n z: 0.7\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \n_current_link_poses: ..., \n_current_link_transforms: ..., \n_current_joint_states={}, \nbase_origin_shift=[ 4.15300950e-04 -6.29518181e-05 8.96554102e-02], \nlink_to_geometry: ...)>)" + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from pycram.designators.object_designator import *\n", + "\n", + "milk_desig = BelieveObject(names=[\"Milk\"])\n", + "milk_desig.resolve()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Location Designator\n", + "Location Designator can create a position in cartisian space from a symbolic desctiption" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "scrolled": false, + "ExecuteTime": { + "end_time": "2024-01-29T16:15:14.493010865Z", + "start_time": "2024-01-29T16:15:14.451251059Z" + } + }, + "outputs": [ + { + "data": { + "text/plain": "BelieveObject.Object(name='Milk', type=, bullet_world_object=Object(world=, \nlocal_transformer=, \nname=Milk, \ntype=ObjectType.MILK, \ncolor=[1, 1, 1, 1], \nid=4, \npath=/home/dprueser/workspace/ros/src/pycram/src/pycram/../../resources/cached/milk.urdf, \njoints: ..., \nlinks: ..., \nattachments: ..., \ncids: ..., \noriginal_pose=header: \n seq: 0\n stamp: \n secs: 1706544910\n nsecs: 372853994\n frame_id: \"map\"\npose: \n position: \n x: 1.0\n y: 0.0\n z: 1.0\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \ntf_frame=Milk_4, \nurdf_object: ..., \n_current_pose=header: \n seq: 0\n stamp: \n secs: 1706544913\n nsecs: 335583925\n frame_id: \"map\"\npose: \n position: \n x: 0.6\n y: -0.5\n z: 0.7\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \n_current_link_poses: ..., \n_current_link_transforms: ..., \n_current_joint_states={}, \nbase_origin_shift=[ 4.15300950e-04 -6.29518181e-05 8.96554102e-02], \nlink_to_geometry: ...), _pose=, \nlocal_transformer=, \nname=Milk, \ntype=ObjectType.MILK, \ncolor=[1, 1, 1, 1], \nid=4, \npath=/home/dprueser/workspace/ros/src/pycram/src/pycram/../../resources/cached/milk.urdf, \njoints: ..., \nlinks: ..., \nattachments: ..., \ncids: ..., \noriginal_pose=header: \n seq: 0\n stamp: \n secs: 1706544910\n nsecs: 372853994\n frame_id: \"map\"\npose: \n position: \n x: 1.0\n y: 0.0\n z: 1.0\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \ntf_frame=Milk_4, \nurdf_object: ..., \n_current_pose=header: \n seq: 0\n stamp: \n secs: 1706544913\n nsecs: 335583925\n frame_id: \"map\"\npose: \n position: \n x: 0.6\n y: -0.5\n z: 0.7\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \n_current_link_poses: ..., \n_current_link_transforms: ..., \n_current_joint_states={}, \nbase_origin_shift=[ 4.15300950e-04 -6.29518181e-05 8.96554102e-02], \nlink_to_geometry: ...)>)" + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from pycram.designators.object_designator import *\n", + "\n", + "milk_desig = BelieveObject(names=[\"Milk\"])\n", + "milk_desig.resolve()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Location Designators\n", + "Location Designators can create a position in cartesian space from a symbolic description." + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "scrolled": false, + "ExecuteTime": { + "end_time": "2024-01-29T16:15:22.177685226Z", + "start_time": "2024-01-29T16:15:14.482072615Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Resolved: CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544915\n", + " nsecs: 201824188\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -1.26\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.443467406158451\n", + " w: 0.8962904996010476, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544915\n", + " nsecs: 927674055\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -1.26\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.443467406158451\n", + " w: 0.8962904996010476, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544915\n", + " nsecs: 938544273\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.36\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.08868143268496492\n", + " w: -0.9960600401064899, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544915\n", + " nsecs: 949182987\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.1341778331057823\n", + " w: -0.9909572690600926, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544915\n", + " nsecs: 959582567\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.1018321670517163\n", + " w: -0.9948015931599383, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544915\n", + " nsecs: 969888687\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.36\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.1181477706660459\n", + " w: -0.9929960243055576, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544915\n", + " nsecs: 979798555\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.5\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7414525335518785\n", + " w: -0.6710053207609464, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544915\n", + " nsecs: 994071245\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7421299374143975\n", + " w: -0.6702560376403205, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 9548187\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.07625058147116927\n", + " w: -0.997088686539622, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 24910449\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.0637115975084186\n", + " w: -0.9979683523754275, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 40581226\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.08526395561915938\n", + " w: -0.9963583983046332, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 71025371\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.46\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.025615781497071395\n", + " w: -0.9996718620318842, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 103567123\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.44000000000000006\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7435677691352427\n", + " w: -0.6686605810897175, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 120177507\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.42000000000000004\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7443316400531483\n", + " w: -0.6678101598626592, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 135888099\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7451280178851306\n", + " w: -0.6669214623646299, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 147926568\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.42\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.0684794522339555\n", + " w: -0.9976525269961167, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 158867120\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.44\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.051517987991811\n", + " w: -0.9986720667532839, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 171792984\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.46\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.03442144373073932\n", + " w: -0.9994074065222308, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 183446645\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.42\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.051081118766858044\n", + " w: -0.9986945074974259, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 195348024\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.5\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 1.2246467991473532e-16\n", + " w: -1.0, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 225474596\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.5\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 1.2246467991473532e-16\n", + " w: -1.0, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 235300779\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.52\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.012817353286048666\n", + " w: 0.9999178543534167, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 246283054\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.54\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.025615781497071274\n", + " w: 0.9996718620318842, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 255914211\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.56\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.03837651950358723\n", + " w: 0.9992633500488202, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 265790700\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.58\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.051081118766857926\n", + " w: 0.9986945074974259, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 276698589\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.6\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.06371159750841848\n", + " w: 0.9979683523754275, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 289893150\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.18000000000000005\n", + " y: -0.62\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.07625058147116914\n", + " w: 0.997088686539622, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 303444147\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6400579972438699\n", + " w: -0.7683265973296552, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 314954519\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.45999999999999996\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6386358371363977\n", + " w: -0.7695091081495349, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 332621335\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.44000000000000006\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.637152936590636\n", + " w: -0.7707373971684058, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 348136901\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.42000000000000004\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6356053782081866\n", + " w: -0.7720141211097294, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 359711885\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6339889056055383\n", + " w: -0.7733421413379021, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 370139122\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6322988865446836\n", + " w: -0.7747245433535415, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 395307302\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.21999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6154122094026357\n", + " w: -0.7882054380161091, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 405689239\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.20000000000000007\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6127638044913316\n", + " w: -0.7902661070204827, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 416645288\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.017233697316775633\n", + " w: -0.9998514888106103, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 437982320\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.52\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.01723369731677551\n", + " w: 0.9998514888106103, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 448891639\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3745654411331824\n", + " w: 0.9272004801059501, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 469527959\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.21999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7541778209662121\n", + " w: -0.6566702478129005, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 480023622\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.20000000000000007\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7554539549957066\n", + " w: -0.6552017413601289, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 490493774\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.18000000000000005\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7568004989740795\n", + " w: -0.6536459322542933, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 501381158\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.16000000000000003\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7582233771877503\n", + " w: -0.6519948698310459, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 511650800\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.14\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7597291886829179\n", + " w: -0.6502396172667391, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 521751880\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.12\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7613253045921371\n", + " w: -0.6483700953835624, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 532479286\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.09999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7630199824727258\n", + " w: -0.6463748961301956, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 561986207\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.040000000000000036\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7687942703292956\n", + " w: -0.6394961844365031, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 571810960\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -0.03999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7785979849482799\n", + " w: -0.6275230496439776, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 581784725\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.54\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.034421443730739416\n", + " w: 0.9994074065222308, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 601855516\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.58\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.06847945223395538\n", + " w: 0.9976525269961167, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 611686706\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.6\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.08526395561915948\n", + " w: 0.9963583983046332, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 622118949\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.62\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.10183216705171617\n", + " w: 0.9948015931599383, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 632574319\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.64\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.118147770666046\n", + " w: 0.9929960243055576, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 643788337\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.66\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.13417783310578218\n", + " w: 0.9909572690600926, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 654880285\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.6799999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.1498930671991917\n", + " w: 0.9887022142210559, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 675857067\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.72\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.18028099412059023\n", + " w: 0.98361514992343, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 696542024\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.76\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.20915386140954798\n", + " w: 0.9778827446363269, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 728210210\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.8400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2620133869693895\n", + " w: 0.9650642388197943, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 769653797\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.30826764220152825\n", + " w: 0.9512996692796181, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 779698371\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.318832815984807\n", + " w: 0.947810970315916, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 790320158\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.32901544105897695\n", + " w: 0.9443245414288284, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 800973892\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3388256770636711\n", + " w: 0.9408491699323249, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 811413764\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.34827434473373386\n", + " w: 0.9373926502807073, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 832077503\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.36613250713959444\n", + " w: 0.9305627261048418, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 853376865\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: 0.09999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8022929282893952\n", + " w: -0.5969305296404493, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 865315675\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.636848728643575\n", + " w: 0.7709887786635173, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 875989675\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6394961844365034\n", + " w: 0.7687942703292954, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 896036386\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6275230496439778\n", + " w: 0.7785979849482799, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 906243562\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6238505014869475\n", + " w: 0.7815436979430415, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 916708469\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6198304093435398\n", + " w: 0.7847357922594203, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 927308559\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6419537995511603\n", + " w: 0.7667433203111904, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 937535762\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -1.26\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4586899104028806\n", + " w: 0.8885964022516619, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 947962045\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -1.1\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4068385849311433\n", + " w: 0.9135000633887361, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 958276748\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -1.08\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.39911243533693425\n", + " w: 0.9169019925594128, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 969069242\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.39106548646982875\n", + " w: 0.9203628552327153, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 980567216\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3826834323650898\n", + " w: 0.9238795325112867, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544916\n", + " nsecs: 992730140\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3739517258340434\n", + " w: 0.9274481693042154, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 3598690\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.33999999999999997\n", + " y: 0.07999999999999996\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5435734062236173\n", + " w: -0.8393616336517022, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 14332056\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.36485567419311876\n", + " w: 0.9310640885616225, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 24833202\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.64\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7398679249122764\n", + " w: 0.6727521487784355, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 44901132\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.58\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6908662457673519\n", + " w: -0.7229825934691131, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 55425643\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.64\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7370989134318549\n", + " w: 0.6757848709593749, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 66057682\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.33999999999999997\n", + " y: -0.03999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5039557239143624\n", + " w: -0.8637294879381802, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 78454971\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.33999999999999997\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.49561612558176465\n", + " w: -0.8685416835496846, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 98734617\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.58\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6928318560989847\n", + " w: -0.7210991742988171, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 108744382\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.58\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6933854908702646\n", + " w: -0.7205668331602574, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 119309425\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3553805575128866\n", + " w: 0.9347217015464174, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 129229784\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.10682611122099109\n", + " w: -0.9942777187292293, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 139137268\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.33999999999999997\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4866443184625216\n", + " w: 0.8736001987798239, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 149181365\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.42\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.0859890841337593\n", + " w: -0.9962960791902362, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 159062862\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.33999999999999997\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5039557239143623\n", + " w: 0.8637294879381803, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 197809934\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.58\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6908662457673519\n", + " w: 0.7229825934691132, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 207918167\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.58\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6915789093529722\n", + " w: 0.7223009152272711, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 227355718\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.44\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.06480582077938048\n", + " w: -0.9978978933704143, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 237487077\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.46\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.043355575214250826\n", + " w: -0.9990597049715505, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 247480630\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.58\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6938978092954753\n", + " w: 0.7200734894821085, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 257900953\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.58\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6943732675901296\n", + " w: 0.7196150118335541, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 278165102\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.5\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 1.2246467991473532e-16\n", + " w: -1.0, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 288398027\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.52\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.02172373868536963\n", + " w: 0.9997640117435364, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 298751831\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.33999999999999997\n", + " y: -1.12\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5537478323882296\n", + " w: 0.8326844168863359, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 308977603\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.74\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7967527613758144\n", + " w: -0.6043054171857262, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 319071054\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.74\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8000000000000002\n", + " w: -0.5999999999999999, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 329062938\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.54\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.04335557521425048\n", + " w: 0.9990597049715505, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 339415788\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.56\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.06480582077938013\n", + " w: 0.9978978933704143, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 349754333\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.74\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8112421851755609\n", + " w: 0.584710284663765, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 359853982\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.74\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8072185755038553\n", + " w: 0.5902526335066423, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 371557712\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.74\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8034804340438839\n", + " w: 0.5953311617147653, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 381916522\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.58\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.08598908413375941\n", + " w: 0.9962960791902362, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 391955852\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.6\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.10682611122099096\n", + " w: 0.9942777187292293, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 401677608\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.45999999999999996\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6043054171857263\n", + " w: -0.7967527613758143, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 411783218\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.45999999999999996\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6\n", + " w: -0.8, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 421791553\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.64\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7384225572267273\n", + " w: -0.6743382882342812, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 432043552\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.74\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7937170381968226\n", + " w: 0.6082871552778866, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 442192077\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.74\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.790873617837808\n", + " w: 0.6119795099577574, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 452643394\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.64\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7347602405829027\n", + " w: -0.6783269041240771, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 474348306\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.62\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.12724528989938316\n", + " w: 0.9918712800552408, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 484361648\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.64\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.1471837619629651\n", + " w: 0.9891091649633165, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 504082441\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.64\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7327590618734483\n", + " w: 0.680488175681506, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 514279603\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.64\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7318630507095947\n", + " w: 0.6814517407755631, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 524206399\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.33523500300737585\n", + " w: 0.9421345406886665, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 534056901\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.74\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.23813352749512762\n", + " w: 0.9712324248513985, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 544548749\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.76\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2543984682342504\n", + " w: 0.9670994878294927, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 554365396\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.78\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2700013373907261\n", + " w: 0.9628599471404028, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 564265251\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.8\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.28494683992052433\n", + " w: 0.9585433210968125, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 574109077\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.13999999999999996\n", + " y: -0.8200000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2992447144182441\n", + " w: 0.9541763992536934, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 593857049\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.9\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.31340294084074444\n", + " w: 0.9496202381333145, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 604115009\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.88\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3018224483858295\n", + " w: 0.9533641537473408, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 626145839\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.8400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.27727888479854484\n", + " w: 0.9607894774844672, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 636278867\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.8200000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.26429951415565045\n", + " w: 0.9644406497120946, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 657084703\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.8\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2508413082792208\n", + " w: 0.9680282217274292, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 667837142\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6308905395898716\n", + " w: -0.7758718496349771, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 689748287\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6368487286435749\n", + " w: -0.7709887786635174, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 709959506\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.45999999999999996\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6308905395898716\n", + " w: -0.7758718496349771, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 720077991\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.44000000000000006\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6292425428779993\n", + " w: -0.7772089952081288, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 729877233\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.8400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.323044113557137\n", + " w: 0.9463839076696536, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 740610361\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.8200000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.30924417189076625\n", + " w: 0.9509826718461247, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 760720729\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.78\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.27958765375807687\n", + " w: 0.9601201715754407, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 780767917\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6257273935913882\n", + " w: -0.7800418122827314, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 791338205\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6238505014869477\n", + " w: -0.7815436979430415, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 803500652\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.7\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2116996959579716\n", + " w: 0.9773347628787704, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 816298246\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.6799999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.19294175778498965\n", + " w: 0.9812102109654376, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 826271057\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.66\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.17350299206578976\n", + " w: 0.9848333421164307, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 836186170\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.64\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.15341808887275654\n", + " w: 0.988161368404286, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 846061468\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.78\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.23690237287865074\n", + " w: 0.9715334609391818, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 866801500\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.58\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.08980559531591699\n", + " w: 0.9959593139531121, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 879305124\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.56\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.06771200763417459\n", + " w: 0.9977049082880918, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 889095067\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.54\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.0453144211719414\n", + " w: 0.9989727740203193, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 899603128\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.52\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.022709687246860417\n", + " w: 0.9997421017968333, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 909643411\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.5\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 1.2246467991473532e-16\n", + " w: -1.0, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 919872760\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.022709687246860538\n", + " w: -0.9997421017968333, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 930837392\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.46\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.045314421171941524\n", + " w: -0.9989727740203193, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 940669298\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.44\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.06771200763417472\n", + " w: -0.9977049082880918, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 950444221\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.42\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.08980559531591711\n", + " w: -0.9959593139531121, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 960928440\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.11150592856108661\n", + " w: -0.9937637686571844, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 971531629\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.1327331510254085\n", + " w: -0.9911518100769762, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 981504678\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.36\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.15341808887275665\n", + " w: -0.9881613684042859, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544917\n", + " nsecs: 991544485\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.17350299206579006\n", + " w: -0.9848333421164306, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 1651048\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.76\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.22248407835269934\n", + " w: 0.9749363234999248, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 11669158\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.74\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.20759148751784465\n", + " w: 0.978215607271796, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 21538734\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.72\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.19223376424350164\n", + " w: 0.9813491630835448, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 41085720\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.6799999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.1601822430069672\n", + " w: 0.9870874576374967, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 50888299\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.24\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6079025311911547\n", + " w: -0.7940116577049655, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 60572385\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.21999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6051264893449574\n", + " w: -0.7961293436955124, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 79907894\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.18000000000000005\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5990966850218961\n", + " w: -0.8006766900539662, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 92547893\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.16000000000000003\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.595815661390807\n", + " w: -0.8031212222581565, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 102537870\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.14\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5923364782216495\n", + " w: -0.805690695346529, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 112884759\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.12\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5886413254594184\n", + " w: -0.8083943282590367, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 123359680\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.09999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5847102846637651\n", + " w: -0.8112421851755608, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 144013881\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.06000000000000005\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5760484367663208\n", + " w: -0.8174155604703632, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 153965234\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.040000000000000036\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5712642314097769\n", + " w: -0.8207662139195283, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 164059638\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5661364326251805\n", + " w: -0.8243115549684078, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 194094181\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -0.03999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5483036971357891\n", + " w: -0.8362792928843958, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 203748703\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.541385747733913\n", + " w: -0.840774328907937, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 213503837\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.66\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.14353028825236291\n", + " w: 0.9896459247398505, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 224017381\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.64\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.12649723679630143\n", + " w: 0.9919669596730026, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 233902931\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.62\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.10911677189150902\n", + " w: 0.9940289382568178, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 263562440\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.31999999999999995\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.4812091581666131\n", + " w: -0.8766058099833582, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 273334980\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.56\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.05530038574178813\n", + " w: 0.9984697628555457, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 294827461\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.52\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.01850900096213863\n", + " w: 0.9998286937687794, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 304959297\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.5\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 1.2246467991473532e-16\n", + " w: -1.0, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 314709424\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.36\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.532573437384568\n", + " w: 0.8463837981627399, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 325293064\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.36\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5257311121191336\n", + " w: 0.85065080835204, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 335991859\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.018509000962138755\n", + " w: -0.9998286937687794, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 346140861\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.46\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.036961098084952626\n", + " w: -0.9993167051682638, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 356065750\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.36\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5019268181932334\n", + " w: 0.8649100931185952, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 377432346\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.31999999999999995\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.49806072645607874\n", + " w: 0.8671421525690256, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 397984027\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: -0.020000000000000018\n", + " y: -0.72\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.16966474960750313\n", + " w: 0.9855018380199112, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 408214569\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.42\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.07347291217220556\n", + " w: -0.9972972130598458, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 418574810\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.36\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5104644303570166\n", + " w: -0.8598988692516618, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 428881645\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.36\n", + " y: -0.03999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5183792016009997\n", + " w: -0.8551508658403557, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 438925266\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.09142755332923423\n", + " w: -0.9958117304451831, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 449546337\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.10911677189150912\n", + " w: -0.9940289382568177, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 459606885\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.36\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.12649723679630132\n", + " w: -0.9919669596730026, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 469818115\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.14353028825236303\n", + " w: -0.9896459247398504, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 480182886\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: -0.32\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.16018224300696732\n", + " w: -0.9870874576374967, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 490321397\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.05999999999999994\n", + " y: 0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.47918806782228074\n", + " w: -0.8777122510576854, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 501243829\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.46\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7630199824727257\n", + " w: 0.6463748961301957, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 511368751\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.44\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.764133282892573\n", + " w: 0.6450583895864149, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 531534433\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.3\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7733421413379024\n", + " w: 0.6339889056055382, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 542391061\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.28\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7749013304032105\n", + " w: 0.6320822162815011, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 552552223\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.26\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7765341206443674\n", + " w: 0.6300752014443031, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 562627077\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.24\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7782457171509326\n", + " w: 0.6279598743042668, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 572496891\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.22\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7800418122827314\n", + " w: 0.6257273935913882, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 582713603\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.2000000000000002\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7819286417257463\n", + " w: 0.6233679485255313, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 593607664\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.1800000000000002\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.783913048024316\n", + " w: 0.6208706251202633, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 604231595\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.1600000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7860025526744504\n", + " w: 0.6182232502820061, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 615185499\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.1400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7882054380161092\n", + " w: 0.6154122094026356, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 626099348\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.12\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7905308403287533\n", + " w: 0.6124222321969667, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 635951280\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.1\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7929888557099438\n", + " w: 0.6092361403592484, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 656157970\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7983486481160277\n", + " w: 0.602195513144453, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 666541576\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8012765844860855\n", + " w: 0.5982941042282742, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 696901559\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7882054380161092\n", + " w: -0.6154122094026356, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 706899642\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8043897838851272\n", + " w: 0.5941019067308558, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 717074871\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7947066772690753\n", + " w: -0.6069936549124264, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 727422475\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8077053073689017\n", + " w: 0.5895864113496071, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 737593412\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.584710284663765\n", + " w: 0.8112421851755609, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 748543024\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4310817166804798\n", + " w: 0.9023128911546209, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 759326457\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5599999999999999\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6794495938313833\n", + " w: -0.7337221881900318, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 780078649\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5800385487693184\n", + " w: 0.8145890264063119, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 790158510\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5750132745107971\n", + " w: 0.818144079081656, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 812283277\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8112421851755609\n", + " w: 0.584710284663765, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 822262287\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5637378164623551\n", + " w: 0.8259537967043049, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 832731246\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.45999999999999996\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5847102846637648\n", + " w: 0.8112421851755609, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 842995643\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.45999999999999996\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5902526335066423\n", + " w: 0.8072185755038553, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 853036403\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.88\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.35948867915153393\n", + " w: 0.9331494465314146, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 863647460\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.86\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3469462477349362\n", + " w: 0.9378850149046248, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 873960256\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.8400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.333732774306416\n", + " w: 0.9426677226646422, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 884471654\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.8200000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3198189174888669\n", + " w: 0.9474786857846721, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 895127058\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.45999999999999996\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5953311617147652\n", + " w: 0.8034804340438839, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 906480073\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5573899686393252\n", + " w: 0.8302508192469624, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 917049169\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5504910087462066\n", + " w: 0.8348410922382677, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 927591085\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.74\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2566679351570243\n", + " w: 0.9664996487646695, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 947772502\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.7\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2203854364245398\n", + " w: 0.9754128661300122, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 957824230\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.6799999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.20106587226819733\n", + " w: 0.9795777228015289, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 968458414\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.66\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.1809865534660407\n", + " w: 0.9834855705420817, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 979157924\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.64\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.1601822430069672\n", + " w: 0.9870874576374967, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544918\n", + " nsecs: 989204168\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.62\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.13870121188940068\n", + " w: 0.9903342737785114, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 20420312\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.56\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.07088902009067935\n", + " w: 0.9974842088126424, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 31285047\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.54\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.04745802042883704\n", + " w: 0.9988732333469429, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 41488409\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.52\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.023789307215243066\n", + " w: 0.9997169943850204, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 51862955\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.5\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 1.2246467991473532e-16\n", + " w: -1.0, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 62264919\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.02378930721524297\n", + " w: -0.9997169943850204, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 82359075\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.44\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.07088902009067946\n", + " w: -0.9974842088126424, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 103036642\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.11660571451398305\n", + " w: -0.9931782857788845, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 113466262\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.13870121188940082\n", + " w: -0.9903342737785114, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 133843421\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.1809865534660408\n", + " w: -0.9834855705420817, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 144020557\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.18\n", + " y: -0.32\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.20106587226819744\n", + " w: -0.9795777228015289, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 163890361\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.45999999999999996\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6082871552778866\n", + " w: 0.7937170381968226, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 173745393\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.45999999999999996\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6119795099577574\n", + " w: 0.790873617837808, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 183910846\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8150216638044884\n", + " w: 0.5794304855022417, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 194156885\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.12\n", + " y: -0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.16018224300696732\n", + " w: -0.9870874576374967, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 204169988\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8190674767950149\n", + " w: 0.5736971923032635, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 214705228\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8234061353888457\n", + " w: 0.5674524968700076, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 235476016\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5413857477339129\n", + " w: 0.8407743289079371, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 245808124\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5599999999999999\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6727521487784355\n", + " w: 0.7398679249122764, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 255650997\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5599999999999999\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6743382882342814\n", + " w: 0.7384225572267273, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 265812635\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5599999999999999\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6757848709593749\n", + " w: 0.7370989134318549, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 275789737\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5599999999999999\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6771094889847062\n", + " w: 0.7358822867326472, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 286756038\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5483036971357889\n", + " w: 0.8362792928843958, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 298326969\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.554700196225229\n", + " w: 0.8320502943378437, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 308969020\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5599999999999999\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6804881756815059\n", + " w: 0.7327590618734483, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 319038152\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.5599999999999999\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6814517407755631\n", + " w: 0.7318630507095948, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 329315423\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5606288093051838\n", + " w: 0.8280672304692729, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 339347362\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5661364326251803\n", + " w: 0.8243115549684079, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 349482059\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5712642314097768\n", + " w: 0.8207662139195284, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 359558582\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5760484367663208\n", + " w: 0.8174155604703632, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 369482517\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.08\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5805210231682381\n", + " w: 0.8142452589114058, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 379415988\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.1\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.584710284663765\n", + " w: 0.8112421851755609, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 389329671\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.12\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5886413254594183\n", + " w: 0.8083943282590367, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 399363040\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.1400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5923364782216495\n", + " w: 0.805690695346529, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 409301280\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.1600000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5958156613908069\n", + " w: 0.8031212222581566, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 419255733\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.1800000000000002\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5990966850218961\n", + " w: 0.8006766900539662, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 429352521\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.3\n", + " y: 0.06000000000000005\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5137015609692951\n", + " w: -0.8579689424785198, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 439219951\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.2000000000000002\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.602195513144453\n", + " w: 0.7983486481160277, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 449213981\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.12\n", + " y: -0.7\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.19611613513818393\n", + " w: 0.9805806756909202, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 459560871\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.12\n", + " y: -0.72\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2132313029385177\n", + " w: 0.9770017458772231, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 469874858\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.12\n", + " y: -0.74\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2297529205473612\n", + " w: 0.9732489894677302, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 479789495\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7983486481160277\n", + " w: 0.602195513144453, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 489479780\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.3\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.4672596576628944\n", + " w: -0.8841201345522873, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 499516248\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7947066772690754\n", + " w: 0.6069936549124263, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 509546995\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7913349155531438\n", + " w: 0.6113829008293401, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 519337415\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7882054380161092\n", + " w: 0.6154122094026356, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 539964437\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7825789118992277\n", + " w: 0.6225514008101024, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 550527572\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7800418122827314\n", + " w: 0.6257273935913882, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 560472249\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.72\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.77766608796156\n", + " w: 0.6286775450376476, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 580207109\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.22\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6051264893449573\n", + " w: 0.7961293436955124, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 590407609\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.24\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6079025311911546\n", + " w: 0.7940116577049655, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 621572971\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.3\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.47630463962314995\n", + " w: 0.8792803251941108, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 631641149\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.3\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4847685323929452\n", + " w: 0.8746424812468178, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 641553401\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.28\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6130353373714668\n", + " w: 0.790055488642318, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 653319358\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.42\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6275230496439778\n", + " w: 0.7785979849482799, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 663541078\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.44\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6292425428779992\n", + " w: 0.7772089952081289, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 683467149\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.48\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6324713384826219\n", + " w: 0.7745837630611687, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 693924903\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.3\n", + " y: -1.1\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5257311121191336\n", + " w: 0.85065080835204, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 704140663\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.5\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6339889056055381\n", + " w: 0.7733421413379024, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 713812112\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6599999999999999\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7438189039121905\n", + " w: 0.6683812072334675, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 723740100\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6599999999999999\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7451280178851304\n", + " w: 0.6669214623646302, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 733844518\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.39999999999999997\n", + " y: -1.52\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6354469054448959\n", + " w: 0.7721445657132514, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 744749307\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.819067476795015\n", + " w: -0.5736971923032633, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 774046421\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6599999999999999\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7533635260394922\n", + " w: 0.6576042865077321, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 783934116\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6599999999999999\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7554539549957063\n", + " w: 0.655201741360129, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 794060468\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -0.03999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8150216638044883\n", + " w: -0.5794304855022419, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 804785490\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8112421851755609\n", + " w: -0.5847102846637648, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 825284957\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: -0.03999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5637378164623552\n", + " w: -0.8259537967043047, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 845585823\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.42\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5750132745107973\n", + " w: -0.8181440790816558, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 856135606\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8043897838851272\n", + " w: -0.5941019067308557, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 876502752\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.06000000000000005\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7983486481160278\n", + " w: -0.6021955131444529, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 886613845\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.07999999999999996\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7955906604925091\n", + " w: -0.6058345491444782, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 896639585\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.09999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7929888557099438\n", + " w: -0.6092361403592484, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 907559156\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7071067811865475\n", + " w: 0.7071067811865476, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 927424430\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.12\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7905308403287534\n", + " w: -0.6124222321969663, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 937479496\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.14\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7882054380161092\n", + " w: -0.6154122094026356, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 957934379\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7071067811865475\n", + " w: 0.7071067811865476, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 977858066\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7071067811865475\n", + " w: 0.7071067811865476, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 987823247\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.16000000000000003\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7860025526744504\n", + " w: -0.618223250282006, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544919\n", + " nsecs: 997573375\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.18000000000000005\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.783913048024316\n", + " w: -0.6208706251202633, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 7592201\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.20000000000000007\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7819286417257465\n", + " w: -0.623367948525531, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 27238607\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.24\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7782457171509329\n", + " w: -0.6279598743042666, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 37187337\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.26\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7765341206443676\n", + " w: -0.6300752014443028, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 57217121\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7664963583466964\n", + " w: -0.6422486532809958, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 67085981\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.42000000000000004\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7652911781639873\n", + " w: -0.6436842491659838, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 77337503\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.52\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6552017413601289\n", + " w: 0.7554539549957063, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 87342262\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.52\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6532424277825721\n", + " w: 0.7571488166435519, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 97246408\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.44000000000000006\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.764133282892573\n", + " w: -0.6450583895864149, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 107070446\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.45999999999999996\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7630199824727258\n", + " w: -0.6463748961301956, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 117566823\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.52\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6463748961301958\n", + " w: 0.7630199824727257, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 127794265\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.52\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6436842491659837\n", + " w: 0.7652911781639874, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 137711286\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.52\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6407474392457675\n", + " w: 0.767751730118527, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 150225162\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.52\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6375295648477821\n", + " w: 0.7704258912737796, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 160764455\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.76\n", + " y: 0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7619487840078729\n", + " w: -0.647637283167765, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 170743227\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.4\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4998611817921905\n", + " w: 0.8661055356810247, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 180782556\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.38\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4956161255817646\n", + " w: 0.8685416835496848, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 201177597\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.3399999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4866443184625216\n", + " w: 0.8736001987798239, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 213806390\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.32\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.48190142905041683\n", + " w: 0.8762254348506247, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 223469972\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.8\n", + " y: 0.09999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8112421851755609\n", + " w: -0.5847102846637648, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 243908166\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.28\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4718579255320242\n", + " w: 0.8816745987679439, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 263970375\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.1\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4153730020007066\n", + " w: 0.9096511799634632, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 273994445\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.08\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4077100588947825\n", + " w: 0.9131114432948549, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 284109830\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6599999999999999\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7533635260394923\n", + " w: -0.657604286507732, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 294022321\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.8\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8320502943378438\n", + " w: -0.5547001962252289, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 326006412\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6599999999999999\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7465333575886381\n", + " w: -0.6653479886551357, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 337008714\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.39971796346469235\n", + " w: 0.9166381781726305, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 347310543\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.39138108854039505\n", + " w: 0.9202286908877246, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 358036518\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3826834323650898\n", + " w: 0.9238795325112867, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 370610475\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3736087091451055\n", + " w: 0.9275864016095363, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 381522893\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3641404642253537\n", + " w: 0.9313440407893014, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 391707181\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.3542622175095866\n", + " w: 0.9351461282843395, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 402300357\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.34395763883862607\n", + " w: 0.9389851663815341, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 412396192\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.33321075897716623\n", + " w: 0.9428523691977768, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 422230243\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.9\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.32200621957921877\n", + " w: 0.9467375531541463, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 432636737\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.62\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7205668331602575\n", + " w: -0.6933854908702645, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 442850828\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.62\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7210991742988173\n", + " w: -0.6928318560989846, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 473550319\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.15423335048016681\n", + " w: -0.9880344496016634, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 483459949\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.36\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.13608082209815303\n", + " w: -0.9906977388977382, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 493614435\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.11750042131729284\n", + " w: -0.993072832671531, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 504096269\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.27999999999999997\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.44382247843994094\n", + " w: 0.8961147290561785, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 513952732\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.27999999999999997\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.453777645066917\n", + " w: 0.8911149470396753, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 523840188\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.27999999999999997\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.46310663556107695\n", + " w: 0.8863025691598214, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 533734798\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.09853761796664212\n", + " w: -0.9951333266680702, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 544054985\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7071067811865476\n", + " w: -0.7071067811865475, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 553883552\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.62\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7229825934691132\n", + " w: -0.6908662457673518, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 563676357\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.8\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8455570886676865\n", + " w: 0.5338850155265888, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 573505640\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7071067811865476\n", + " w: -0.7071067811865475, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 583408832\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7071067811865476\n", + " w: -0.7071067811865475, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 593615531\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7709887786635176\n", + " w: -0.6368487286435748, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 612910509\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7758718496349772\n", + " w: -0.6308905395898715, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 622579574\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.8\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8407743289079371\n", + " w: 0.5413857477339129, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 632315635\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7815436979430416\n", + " w: -0.6238505014869474, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 642050027\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.8400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2855086566344833\n", + " w: 0.9583761302259008, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 651688337\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.8200000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2723432423390162\n", + " w: 0.9622001654293517, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 661351203\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.8\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8280672304692729\n", + " w: 0.5606288093051838, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 671063661\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.8\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8243115549684079\n", + " w: 0.5661364326251804, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 680626392\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.8\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2586642746412806\n", + " w: 0.9659672836200511, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 690305233\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.78\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.24446768710590863\n", + " w: 0.9696574394914359, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 699806213\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.76\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2297529205473612\n", + " w: 0.9732489894677302, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 719159364\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.72\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.198787259314375\n", + " w: 0.9800426651601856, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 728794574\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.8\n", + " y: -1.1400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.805690695346529\n", + " w: 0.5923364782216496, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 739019632\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.7\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.18255737974256264\n", + " w: 0.9831952009146149, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 758497953\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.66\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.14869598393710892\n", + " w: 0.9888829578676007, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 768382310\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.64\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.13111872764660712\n", + " w: 0.9913666724579432, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 778136730\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.020000000000000018\n", + " y: -0.8200000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.24942164698879468\n", + " w: 0.968394982439189, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 797852516\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6653479886551358\n", + " w: -0.746533357588638, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 807753801\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6636470369788332\n", + " w: -0.7480458611002506, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 817374706\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.6\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.09485133899780393\n", + " w: 0.9954914482256106, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 827094316\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.58\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.07625058147116914\n", + " w: 0.997088686539622, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 837395668\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6576042865077321\n", + " w: -0.7533635260394922, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 848101377\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.42\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.07924445748219482\n", + " w: -0.9968552131369695, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 897163629\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.01922011145500681\n", + " w: -0.9998152765964606, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 907011747\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.46\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.03837651950358736\n", + " w: -0.9992633500488202, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 916730880\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.44\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.057406724906011355\n", + " w: -0.9983508741597643, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 926568746\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.42\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.07625058147116927\n", + " w: -0.997088686539622, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 937285184\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.09485133899780428\n", + " w: -0.9954914482256106, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 947034358\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.11315653826752582\n", + " w: -0.9935771725675414, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 957026481\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.36\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.13111872764660726\n", + " w: -0.9913666724579432, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 967617511\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.21999999999999997\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4056394187149922\n", + " w: 0.9140331842906817, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 977944612\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: -0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.14869598393710906\n", + " w: -0.9888829578676007, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 988276481\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.46\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.769509108149535\n", + " w: 0.6386358371363977, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544920\n", + " nsecs: 998299598\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.44\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7707373971684058\n", + " w: 0.6371529365906361, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 8562088\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.42\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7720141211097296\n", + " w: 0.6356053782081865, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 18221139\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7847357922594201\n", + " w: 0.6198304093435398, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 28006315\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7815436979430415\n", + " w: 0.6238505014869475, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 37898063\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7785979849482798\n", + " w: 0.6275230496439778, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 57746171\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: 0.30000000000000004\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.476975706616483\n", + " w: -0.8789164779987384, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 67290544\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7709887786635173\n", + " w: 0.636848728643575, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 77006340\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7687942703292954\n", + " w: 0.6394961844365034, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 86667060\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.7\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7667433203111904\n", + " w: 0.6419537995511603, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 96265316\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: 0.32000000000000006\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.48190142905041666\n", + " w: -0.8762254348506247, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 105965852\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.28\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7825789118992277\n", + " w: 0.6225514008101024, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 115576744\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.26\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7843680207272645\n", + " w: 0.6202957424167875, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 125284671\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.24\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.78624155930207\n", + " w: 0.6179192588245245, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 135140895\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5524309953122208\n", + " w: 0.8335586334615874, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 144938230\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5464711272034338\n", + " w: 0.8374779442665988, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 154725313\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5400672594718117\n", + " w: 0.8416218600099494, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 183697938\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5257311121191336\n", + " w: 0.85065080835204, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 194594383\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5176837863645347\n", + " w: 0.8555720293086252, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 204714298\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.52\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6488487878132037\n", + " w: -0.7609173743274208, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 214483737\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.52\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6511308684688737\n", + " w: -0.7589654749242356, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 244819402\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6225514008101024\n", + " w: 0.7825789118992277, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 255036592\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.2000000000000002\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7902661070204828\n", + " w: 0.6127638044913315, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 265106439\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6552017413601289\n", + " w: 0.7554539549957063, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 275486230\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.657604286507732\n", + " w: 0.7533635260394923, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 285556316\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6597957320005307\n", + " w: 0.7514450026674501, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 295557022\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6618025632357402\n", + " w: 0.7496781758158658, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 305361986\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.62\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.11750042131729249\n", + " w: 0.9930728326715311, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 314964056\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.64\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.1360808220981529\n", + " w: 0.9906977388977382, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 324617624\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6669214623646302\n", + " w: 0.7451280178851305, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 334374666\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.54\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6683812072334675\n", + " w: 0.7438189039121905, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 344164848\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.66\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.15423335048016673\n", + " w: 0.9880344496016635, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 353968620\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.6799999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.1719194406273956\n", + " w: 0.9851110119851283, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 363894939\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.7\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.18910752115495127\n", + " w: 0.9819563867314218, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 373680114\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.72\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.205772893716877\n", + " w: 0.9785997732532861, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 383259534\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.09999999999999998\n", + " y: -0.74\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.22189743411284238\n", + " w: 0.9750700122217567, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 393896102\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6154122094026356\n", + " w: 0.7882054380161092, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 403790950\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.61138290082934\n", + " w: 0.791334915553144, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 413312673\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6069936549124263\n", + " w: 0.7947066772690754, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 422859430\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.62\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7237282464487099\n", + " w: 0.6900850855454531, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 432488441\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.62\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7229825934691132\n", + " w: 0.6908662457673519, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 442560195\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.62\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7223009152272711\n", + " w: 0.6915789093529722, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 452620267\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.62\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7216753233664641\n", + " w: 0.6922317008371615, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 462723493\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.1800000000000002\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7924306153589356\n", + " w: 0.6099620642645399, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 472694635\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.1600000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7947066772690754\n", + " w: 0.6069936549124263, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 482583999\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.43999999999999995\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5982941042282742\n", + " w: 0.8012765844860855, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 492875099\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.25999999999999995\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.4305820312855818\n", + " w: 0.9025514469181146, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 503608465\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.25999999999999995\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.44076779540038685\n", + " w: 0.8976211620376843, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 545543432\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.43999999999999995\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5794304855022417\n", + " w: 0.8150216638044885, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 556905508\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.43999999999999995\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.5736971923032635\n", + " w: 0.8190674767950149, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 579474687\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.62\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7196150118335541\n", + " w: 0.6943732675901296, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 590476512\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.1400000000000001\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7971027464882692\n", + " w: 0.6038436979391754, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 600560188\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.12\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7996280994512247\n", + " w: 0.6004955475005809, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 611992359\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.1\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8022929282893952\n", + " w: 0.5969305296404492, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 623099565\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.08\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8051084445192626\n", + " w: 0.5931276359804638, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 633123397\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8080869942070349\n", + " w: 0.5890631628216448, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 655219793\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.02\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8145890264063119\n", + " w: 0.5800385487693183, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 665919780\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -1.0\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.818144079081656\n", + " w: 0.575013274510797, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 676297664\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8219256175556252\n", + " w: 0.5695948377626013, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 686551332\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6225514008101027\n", + " w: -0.7825789118992276, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 697294473\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6191231894884393\n", + " w: -0.7852938788999072, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 707584142\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6154122094026357\n", + " w: -0.7882054380161091, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 717669010\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -0.96\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8259537967043049\n", + " w: 0.563737816462355, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 729904651\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6069936549124266\n", + " w: -0.7947066772690753, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 755266666\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.8348410922382677\n", + " w: 0.5504910087462066, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 765379905\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5257311121191337\n", + " w: -0.8506508083520399, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 775438785\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.0\n", + " y: -0.78\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.2165835404696473\n", + " w: 0.9762640882454054, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 785464763\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6799999999999999\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7589654749242356\n", + " w: -0.6511308684688735, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 797777175\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6799999999999999\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.7609173743274209\n", + " w: -0.6488487878132035, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 810024023\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: -0.03999999999999998\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5331718778667884\n", + " w: -0.8460069436192604, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 821498632\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5400672594718116\n", + " w: -0.8416218600099494, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 832209587\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6799999999999999\n", + " y: -0.06\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.767751730118527\n", + " w: -0.6407474392457674, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 842942476\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: 0.33999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.4866443184625217\n", + " w: -0.8736001987798239, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 854440927\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.07999999999999996\n", + " y: 0.36\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.49121312130825956\n", + " w: -0.8710394190015727, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 864692211\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.48\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6248846524332634\n", + " w: -0.780717087781073, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 874951601\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.45999999999999996\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6231467899582747\n", + " w: -0.7821049022763493, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 885563135\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.44000000000000006\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6213354700248949\n", + " w: -0.7835446596646187, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 897155761\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.42000000000000004\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6194460375118611\n", + " w: -0.7850392388988298, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 907792329\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.4\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6174734445800121\n", + " w: -0.7865917271612352, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 917936801\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.38\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.6154122094026357\n", + " w: -0.7882054380161091, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 928446054\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.48\n", + " y: -0.9199999999999999\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.6021955131444529\n", + " w: 0.7983486481160278, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 961369752\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.24\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5979254685648697\n", + " w: -0.8015517039102849, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 973284721\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.21999999999999997\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5948871592163426\n", + " w: -0.8038092235098512, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 987850427\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.20000000000000007\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5916812500238643\n", + " w: -0.8061720029684716, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544921\n", + " nsecs: 998610258\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.18000000000000005\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5882940228258898\n", + " w: -0.8086471064112771, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 8282661\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.38\n", + " y: 0.16000000000000003\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5847102846637651\n", + " w: -0.8112421851755608, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 27345895\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6799999999999999\n", + " y: -1.06\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7554539549957063\n", + " w: 0.655201741360129, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 37099599\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6799999999999999\n", + " y: -1.04\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7571488166435519\n", + " w: 0.6532424277825721, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 67073106\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6799999999999999\n", + " y: -0.98\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7630199824727256\n", + " w: 0.6463748961301958, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 86748838\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6799999999999999\n", + " y: -0.94\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.7677517301185269\n", + " w: 0.6407474392457675, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 105825424\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.43999999999999995\n", + " y: -0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5847102846637651\n", + " w: -0.8112421851755608, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 115547418\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.43999999999999995\n", + " y: 0.0\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.5895864113496071\n", + " w: -0.8077053073689017, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 134811162\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: 0.020000000000000018\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.814589026406312\n", + " w: -0.5800385487693182, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 144512414\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: 0.040000000000000036\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8112421851755609\n", + " w: -0.5847102846637648, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 154634714\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.78\n", + " y: 0.06000000000000005\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.8080869942070349\n", + " w: -0.5890631628216447, reachable_arms=None)\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1706544922\n", + " nsecs: 164654016\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.15999999999999998\n", + " y: -0.62\n", + " z: 0.0\n", + " orientation: \n", + " x: 0.0\n", + " y: 0.0\n", + " z: 0.13273315102540856\n", + " w: 0.9911518100769761, reachable_arms=None)\n" + ] + } + ], + "source": [ + "from pycram.designators.location_designator import *\n", + "from pycram.designators.object_designator import *\n", + "\n", + "robot_desig = BelieveObject(types=[ObjectType.ROBOT]).resolve()\n", + "milk_desig = BelieveObject(names=[\"Milk\"]).resolve()\n", + "location_desig = CostmapLocation(target=milk_desig, visible_for=robot_desig)\n", + "\n", + "print(f\"Resolved: {location_desig.resolve()}\")\n", + "print()\n", + "\n", + "for pose in location_desig:\n", + " print(pose)\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Action Designator\n", + "Action Designators are used to describe high-level actions. Action Designators are usually composed of other Designators to describe the high-level action in detail. " + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:22.690059907Z", + "start_time": "2024-01-29T16:15:22.178420266Z" + } + }, + "outputs": [], + "source": [ + "from pycram.designators.action_designator import *\n", + "from pycram.enums import Arms\n", + "\n", + "with simulated_robot:\n", + " ParkArmsAction([Arms.BOTH]).resolve().perform()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Making a simple plan\n", + "To get familiar with the PyCRAM Framework we will write a simple pick and place plan. This plan will let the robot grasp a cereal box from the kitchen counter and place it on the kitchen island. This is a simple pick and place plan." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:22.784167007Z", + "start_time": "2024-01-29T16:15:22.739698077Z" + } + }, + "outputs": [], + "source": [ + "from pycram.designators.object_designator import *\n", + "cereal = Object(\"cereal\", ObjectType.BREAKFAST_CEREAL, \"breakfast_cereal.stl\", pose=Pose([1.4, 1, 0.95]))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:37.008203353Z", + "start_time": "2024-01-29T16:15:22.784090487Z" + } + }, + "outputs": [], + "source": [ + "cereal_desig = ObjectDesignatorDescription(names=[\"cereal\"])\n", + "kitchen_desig = ObjectDesignatorDescription(names=[\"kitchen\"])\n", + "robot_desig = ObjectDesignatorDescription(names=[\"pr2\"]).resolve()\n", + "with simulated_robot:\n", + " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", + "\n", + " MoveTorsoAction([0.3]).resolve().perform()\n", + "\n", + " pickup_pose = CostmapLocation(target=cereal_desig.resolve(), reachable_for=robot_desig).resolve()\n", + " pickup_arm = pickup_pose.reachable_arms[0]\n", + "\n", + " NavigateAction(target_locations=[pickup_pose.pose]).resolve().perform()\n", + "\n", + " PickUpAction(object_designator_description=cereal_desig, arms=[pickup_arm], grasps=[\"front\"]).resolve().perform()\n", + "\n", + " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", + "\n", + " place_island = SemanticCostmapLocation(\"kitchen_island_surface\", kitchen_desig.resolve(), cereal_desig.resolve()).resolve()\n", + "\n", + " place_stand = CostmapLocation(place_island.pose, reachable_for=robot_desig, reachable_arm=pickup_arm).resolve()\n", + "\n", + " NavigateAction(target_locations=[place_stand.pose]).resolve().perform()\n", + "\n", + " PlaceAction(cereal_desig, target_locations=[place_island.pose], arms=[pickup_arm]).resolve().perform()\n", + "\n", + " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", + " \n", + " \n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Task Trees\n", + "Task trees are a hierarchical representation of all Actions involved in a plan. The Task tree can later be used to inspect and restructure the execution order of Actions in the plan." + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:37.015721112Z", + "start_time": "2024-01-29T16:15:37.010004750Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "no_operation()\n", + "├── perform(MoveMotion)\n", + "├── perform(MoveMotion)\n", + "├── perform(ParkArmsActionPerformable)\n", + "├── perform(ParkArmsActionPerformable)\n", + "├── perform(MoveTorsoActionPerformable)\n", + "├── perform(NavigateActionPerformable)\n", + "│ └── perform(MoveMotion)\n", + "├── perform(PickUpActionPerformable)\n", + "│ ├── perform(MoveTCPMotion)\n", + "│ ├── perform(MoveGripperMotion)\n", + "│ ├── perform(MoveTCPMotion)\n", + "│ ├── perform(MoveGripperMotion)\n", + "│ └── perform(MoveTCPMotion)\n", + "├── perform(ParkArmsActionPerformable)\n", + "├── perform(NavigateActionPerformable)\n", + "│ └── perform(MoveMotion)\n", + "├── perform(PlaceActionPerformable)\n", + "│ ├── perform(MoveTCPMotion)\n", + "│ ├── perform(MoveGripperMotion)\n", + "│ └── perform(MoveTCPMotion)\n", + "└── perform(ParkArmsActionPerformable)\n" + ] + } + ], + "source": [ + "import pycram.task\n", + "import anytree\n", + "tt = pycram.task.task_tree\n", + "print(anytree.RenderTree(tt))" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:37.200246997Z", + "start_time": "2024-01-29T16:15:37.012295886Z" + } + }, + "outputs": [], + "source": [ + "from anytree.dotexport import RenderTreeGraph, DotExporter\n", + "RenderTreeGraph(tt).to_picture(\"tree.png\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ORM\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:37.447175714Z", + "start_time": "2024-01-29T16:15:37.236464380Z" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Inserting TaskTree into database: 100%|██████████| 22/22 [00:00<00:00, 119.33it/s]\n" + ] + }, + { + "data": { + "text/plain": "TaskTreeNode(id=1, code_id=1, code=Code(id=1, function='no_operation', designator_id=None, designator=None, process_metadata_id=1), start_time=datetime.datetime(2024, 1, 29, 17, 14, 50, 893086), end_time=None, status=, reason=None, parent_id=None, parent=None, process_metadata_id=1)" + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import sqlalchemy.orm\n", + "import pycram.orm.base\n", + "import pycram.orm.action_designator\n", + "\n", + "# set description of what we are doing\n", + "pycram.orm.base.ProcessMetaData().description = \"Tutorial for getting familiar with the ORM.\"\n", + "\n", + "engine = sqlalchemy.create_engine(\"sqlite+pysqlite:///:memory:\", echo=False)\n", + "session = sqlalchemy.orm.Session(bind=engine)\n", + "pycram.orm.base.Base.metadata.create_all(engine)\n", + "session.commit()\n", + "\n", + "\n", + "tt.insert(session)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:37.488726709Z", + "start_time": "2024-01-29T16:15:37.444290355Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NavigateAction(id=6, process_metadata_id=1, dtype='NavigateAction', robot_state_id=4, robot_state=RobotState(id=4, torso_height=0.3, type=, pose_id=6, process_metadata_id=1), pose_id=7)\n", + "NavigateAction(id=15, process_metadata_id=1, dtype='NavigateAction', robot_state_id=7, robot_state=RobotState(id=7, torso_height=0.3, type=, pose_id=15, process_metadata_id=1), pose_id=16)\n" + ] + } + ], + "source": [ + "from sqlalchemy import select\n", + "\n", + "navigations = session.scalars(select(pycram.orm.action_designator.NavigateAction)).all()\n", + "print(*navigations, sep=\"\\n\")" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "ExecuteTime": { + "end_time": "2024-01-29T16:15:37.489720308Z", + "start_time": "2024-01-29T16:15:37.488078620Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NavigateAction(id=6, process_metadata_id=1, dtype='NavigateAction', robot_state_id=4, robot_state=RobotState(id=4, torso_height=0.3, type=, pose_id=6, process_metadata_id=1), pose_id=7)\n", + "NavigateAction(id=15, process_metadata_id=1, dtype='NavigateAction', robot_state_id=7, robot_state=RobotState(id=7, torso_height=0.3, type=, pose_id=15, process_metadata_id=1), pose_id=16)\n" + ] + } + ], + "source": [ + "navigations = (session.scalars(select(pycram.orm.action_designator.NavigateAction, pycram.orm.base.Position, pycram.orm.base.Quaternion).\n", + " join(pycram.orm.action_designator.NavigateAction.pose).\n", + " join(pycram.orm.base.Pose.position).\n", + " join(pycram.orm.base.Pose.orientation)).all())\n", + "print(*navigations, sep=\"\\n\")" + ] + }, + { + "cell_type": "markdown", + "source": [ + "The world can also be closed with the 'exit' method" + ], + "metadata": { + "collapsed": false + } + }, + { + "cell_type": "code", + "execution_count": 35, + "outputs": [], + "source": [ + "world.exit()" + ], + "metadata": { + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-01-29T16:15:37.732405944Z", + "start_time": "2024-01-29T16:15:37.488193658Z" + } + } + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.10" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/src/pycram/designator.py b/src/pycram/designator.py index 2d74e2934..5fe1bf875 100644 --- a/src/pycram/designator.py +++ b/src/pycram/designator.py @@ -319,16 +319,17 @@ class DesignatorDescription(ABC): :ivar resolve: The resolver function to use for this designator, defaults to self.ground """ - def __init__(self, resolver: Optional[Callable] = None, onto_concept: Thing = None): + def __init__(self, resolver: Optional[Callable] = None, onto_concepts: Optional[List[Thing]] = None): """ Create a Designator description. :param resolver: The grounding method used for the description. The grounding method creates a location instance that matches the description. + :param onto_concepts: A list of ontology concepts that the designator is categorized as or associated with """ if resolver is None: self.resolve = self.ground - self.onto_concept = onto_concept + self.onto_concepts = [] if onto_concepts is None else onto_concepts def make_dictionary(self, properties: List[str]): """ @@ -363,6 +364,11 @@ def get_slots(self) -> List[str]: def copy(self) -> Type[DesignatorDescription]: return self + def get_default_onto_concept(self): + """ + Returns the first element of onto_concepts if there is, else None + """ + return self.onto_concepts[0] if len(self.onto_concepts) > 0 else None class ActionDesignatorDescription(DesignatorDescription, Language): """ @@ -438,8 +444,14 @@ def insert(self, session: Session, *args, **kwargs) -> ORMAction: return action - def __init__(self, resolver=None, onto_concept: Thing = None): - super().__init__(resolver, onto_concept) + def __init__(self, resolver=None, onto_concepts: Optional[List[Thing]] = None): + """ + Base of all action designator descriptions. + + :param resolver: An alternative resolver that returns an action designator + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + """ + super().__init__(resolver, onto_concepts) Language.__init__(self) def ground(self) -> Action: @@ -471,8 +483,8 @@ class Location: The resolved pose of the location designator. Pose is inherited by all location designator. """ - def __init__(self, resolver=None, onto_concept: Thing = None): - super().__init__(resolver, onto_concept) + def __init__(self, resolver=None, onto_concepts: Optional[List[Thing]] = None): + super().__init__(resolver, onto_concepts) def ground(self) -> Location: """ @@ -637,15 +649,16 @@ def special_knowledge_adjustment_pose(self, grasp: str, pose: Pose) -> Pose: # return pose def __init__(self, names: Optional[List[str]] = None, types: Optional[List[str]] = None, - resolver: Optional[Callable] = None, onto_concept: Thing = None): + resolver: Optional[Callable] = None, onto_concepts: Optional[List[Thing]] = None): """ Base of all object designator descriptions. Every object designator has the name and type of the object. :param names: A list of names that could describe the object :param types: A list of types that could represent the object :param resolver: An alternative resolver that returns an object designator for the list of names and types + :param onto_concepts: A list of ontology concepts that the object is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.types: Optional[List[str]] = types self.names: Optional[List[str]] = names diff --git a/src/pycram/designators/action_designator.py b/src/pycram/designators/action_designator.py index fb8c5b038..2038b8d02 100644 --- a/src/pycram/designators/action_designator.py +++ b/src/pycram/designators/action_designator.py @@ -1,5 +1,5 @@ import itertools -from typing_extensions import List, Union, Callable +from typing_extensions import List, Union, Callable, Optional from .object_designator import ObjectDesignatorDescription, ObjectPart from ..enums import Arms from ..designator import ActionDesignatorDescription @@ -13,24 +13,25 @@ ReleaseActionPerformable) from owlready2 import Thing -from pycram.ontology import OntologyOWL +from pycram.ontology import OntologyManager class MoveTorsoAction(ActionDesignatorDescription): """ Action Designator for Moving the torso of the robot up and down """ - def __init__(self, positions: List[float], resolver=None, onto_concept: Thing = None): + def __init__(self, positions: List[float], resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Create a designator description to move the torso of the robot up and down. :param positions: List of possible positions of the robots torso, possible position is a float of height in metres :param resolver: An optional resolver that returns a performable designator for a designator description. + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.positions: List[float] = positions - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.MoveTorso + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.MoveTorso] def ground(self) -> MoveTorsoActionPerformable: """ @@ -55,19 +56,20 @@ class SetGripperAction(ActionDesignatorDescription): Set the gripper state of the robot """ - def __init__(self, grippers: List[str], motions: List[str], resolver=None, onto_concept: Thing = None): + def __init__(self, grippers: List[str], motions: List[str], resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Sets the gripper state, the desired state is given with the motion. Motion can either be 'open' or 'close'. :param grippers: A list of possible grippers :param motions: A list of possible motions :param resolver: An alternative resolver that returns a performable designator for a designator description + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.grippers: List[str] = grippers self.motions: List[str] = motions - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.SettingGripper + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.SettingGripper] def ground(self) -> SetGripperActionPerformable: """ @@ -95,12 +97,12 @@ class ReleaseAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], object_designator_description: ObjectDesignatorDescription, - resolver=None, onto_concept: Thing = None): - super().__init__(resolver, onto_concept) + resolver=None, onto_concepts: Optional[List[Thing]] = None): + super().__init__(resolver, onto_concepts) self.grippers: List[str] = grippers self.object_designator_description = object_designator_description - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.Releasing + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.Releasing] def ground(self) -> ReleaseActionPerformable: return ReleaseActionPerformable(self.grippers[0], self.object_designator_description.ground()) @@ -118,13 +120,13 @@ class GripAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], object_designator_description: ObjectDesignatorDescription, - efforts: List[float], resolver=None, onto_concept: Thing = None): - super().__init__(resolver, onto_concept) + efforts: List[float], resolver=None, onto_concepts: Optional[List[Thing]] = None): + super().__init__(resolver, onto_concepts) self.grippers: List[str] = grippers self.object_designator_description: ObjectDesignatorDescription = object_designator_description self.efforts: List[float] = efforts - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.Holding + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.Holding] def ground(self) -> GripActionPerformable: return GripActionPerformable(self.grippers[0], self.object_designator_description.ground(), self.efforts[0]) @@ -134,17 +136,18 @@ class ParkArmsAction(ActionDesignatorDescription): Park the arms of the robot. """ - def __init__(self, arms: List[Arms], resolver=None, onto_concept: Thing = None): + def __init__(self, arms: List[Arms], resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Moves the arms in the pre-defined parking position. Arms are taken from pycram.enum.Arms :param arms: A list of possible arms, that could be used :param resolver: An optional resolver that returns a performable designator from the designator description + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.arms: List[Arms] = arms - if self.onto_concept is None and OntologyOWL.onto: - self.onto_concept = OntologyOWL.soma.ParkingArms + if self.onto_concepts is None and OntologyManager.onto: + self.onto_concepts = OntologyManager.soma.ParkingArms def ground(self) -> ParkArmsActionPerformable: """ @@ -161,7 +164,7 @@ class PickUpAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], - arms: List[str], grasps: List[str], resolver=None, onto_concept: Thing = None): + arms: List[str], grasps: List[str], resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Lets the robot pick up an object. The description needs an object designator describing the object that should be picked up, an arm that should be used as well as the grasp from which side the object should be picked up. @@ -170,14 +173,15 @@ def __init__(self, object_designator_description: Union[ObjectDesignatorDescrip :param arms: List of possible arms that could be used :param grasps: List of possible grasps for the object :param resolver: An optional resolver that returns a performable designator with elements from the lists of possible paramter + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.grasps: List[str] = grasps - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.PickingUp + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.PickingUp] def ground(self) -> PickUpActionPerformable: """ @@ -199,7 +203,7 @@ class PlaceAction(ActionDesignatorDescription): def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], target_locations: List[Pose], - arms: List[str], resolver=None, onto_concept: Thing = None): + arms: List[str], resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Create an Action Description to place an object @@ -207,14 +211,15 @@ def __init__(self, :param target_locations: List of possible positions/orientations to place the object :param arms: List of possible arms to use :param resolver: Grounding method to resolve this designator + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.target_locations: List[Pose] = target_locations self.arms: List[str] = arms - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.Placing + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.Placing] def ground(self) -> PlaceActionPerformable: """ @@ -233,17 +238,18 @@ class NavigateAction(ActionDesignatorDescription): Navigates the Robot to a position. """ - def __init__(self, target_locations: List[Pose], resolver=None, onto_concept: Thing = None): + def __init__(self, target_locations: List[Pose], resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Navigates the robot to a location. :param target_locations: A list of possible target locations for the navigation. :param resolver: An alternative resolver that creates a performable designator from the list of possible parameter + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.target_locations: List[Pose] = target_locations - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.Navigating + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.Navigating] def ground(self) -> NavigateActionPerformable: """ @@ -262,7 +268,7 @@ class TransportAction(ActionDesignatorDescription): def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], arms: List[str], - target_locations: List[Pose], resolver=None, onto_concept: Thing = None): + target_locations: List[Pose], resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Designator representing a pick and place plan. @@ -270,14 +276,15 @@ def __init__(self, :param arms: A List of possible arms that could be used for transporting :param target_locations: A list of possible target locations for the object to be placed :param resolver: An alternative resolver that returns a performable designator for the list of possible parameter + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.target_locations: List[Pose] = target_locations - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.Transporting + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.Transporting] def ground(self) -> TransportActionPerformable: """ @@ -297,17 +304,18 @@ class LookAtAction(ActionDesignatorDescription): Lets the robot look at a position. """ - def __init__(self, targets: List[Pose], resolver=None, onto_concept: Thing = None): + def __init__(self, targets: List[Pose], resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Moves the head of the robot such that it points towards the given target location. :param targets: A list of possible locations to look at :param resolver: An alternative resolver that returns a performable designator for a list of possible target locations + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.targets: List[Pose] = targets - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.LookingAt + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.LookingAt] def ground(self) -> LookAtActionPerformable: """ @@ -323,17 +331,19 @@ class DetectAction(ActionDesignatorDescription): Detects an object that fits the object description and returns an object designator describing the object. """ - def __init__(self, object_designator_description: ObjectDesignatorDescription, resolver=None, onto_concept: Thing = None): + def __init__(self, object_designator_description: ObjectDesignatorDescription, resolver=None, + onto_concepts: Optional[List[Thing]] = None): """ Tries to detect an object in the field of view (FOV) of the robot. :param object_designator_description: Object designator describing the object :param resolver: An alternative resolver + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.object_designator_description: ObjectDesignatorDescription = object_designator_description - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.LookingFor #CheckingObjectPresence + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.LookingFor, OntologyManager.soma.CheckingObjectPresence] def ground(self) -> DetectActionPerformable: """ @@ -351,19 +361,21 @@ class OpenAction(ActionDesignatorDescription): Can currently not be used """ - def __init__(self, object_designator_description: ObjectPart, arms: List[str], resolver=None, onto_concept: Thing = None): + def __init__(self, object_designator_description: ObjectPart, arms: List[str], resolver=None, + onto_concepts: Optional[List[Thing]] = None): """ Moves the arm of the robot to open a container. :param object_designator_description: Object designator describing the handle that should be used to open :param arms: A list of possible arms that should be used :param resolver: A alternative resolver that returns a performable designator for the lists of possible parameter. + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.Opening + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.Opening] def ground(self) -> OpenActionPerformable: """ @@ -383,19 +395,20 @@ class CloseAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: ObjectPart, arms: List[str], - resolver=None, onto_concept: Thing = None): + resolver=None, onto_concepts: Optional[List[Thing]] = None): """ Attempts to close an open container :param object_designator_description: Object designator description of the handle that should be used :param arms: A list of possible arms to use :param resolver: An alternative resolver that returns a performable designator for the list of possible parameter + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.Closing + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.Closing] def ground(self) -> CloseActionPerformable: """ @@ -413,7 +426,7 @@ class GraspingAction(ActionDesignatorDescription): """ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDescription, ObjectPart], - resolver: Callable = None, onto_concept: Thing = None): + resolver: Callable = None, onto_concepts: Optional[List[Thing]] = None): """ Will try to grasp the object described by the given description. Grasping is done by moving into a pre grasp position 10 cm before the object, opening the gripper, moving to the object and then closing the gripper. @@ -421,12 +434,13 @@ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDe :param arms: List of Arms that should be used for grasping :param object_description: Description of the object that should be grasped :param resolver: An alternative resolver to get a specified designator from the designator description + :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concept) + super().__init__(resolver, onto_concepts) self.arms: List[str] = arms self.object_description: ObjectDesignatorDescription = object_description - if self.onto_concept is None and OntologyOWL.soma is not None: - self.onto_concept = OntologyOWL.soma.Grasping + if self.onto_concepts is None and OntologyManager.soma is not None: + self.onto_concepts = [OntologyManager.soma.Grasping] def ground(self) -> GraspingActionPerformable: """ diff --git a/src/pycram/designators/object_designator.py b/src/pycram/designators/object_designator.py index dbb3d8fbe..269ca58d5 100644 --- a/src/pycram/designators/object_designator.py +++ b/src/pycram/designators/object_designator.py @@ -67,6 +67,7 @@ def __init__(self, names: List[str], :param part_of: Parent object of which the part should be described :param type: Type of the part :param resolver: An alternative resolver to resolve the input parameter to an object designator + :param onto_concepts: A list of ontology concepts that the object part is categorized as or associated with """ super().__init__(names, type, resolver) @@ -124,6 +125,7 @@ def __init__(self, names: List[str], types: List[str], :param reference_frames: Frame of reference in which the object position should be :param timestamps: Timestamps for which positions should be returned :param resolver: An alternative resolver that resolves the input parameter to an object designator. + :param onto_concepts: A list of ontology concepts that the object is categorized as """ super(LocatedObject, self).__init__(names, types, resolver) self.reference_frames: List[str] = reference_frames diff --git a/src/pycram/ontology.py b/src/pycram/ontology.py index 47032c2bf..5c259314d 100644 --- a/src/pycram/ontology.py +++ b/src/pycram/ontology.py @@ -1,29 +1,36 @@ -import sys, inspect -from abc import ABCMeta +import inspect from pathlib import Path -from typing import List +from typing import Optional, List, Type, Callable + +from owlready2 import * -from pycram.designator import ObjectDesignatorDescription from pycram.enums import ObjectType -from pycram.pose import Pose from pycram.helper import Singleton +from pycram.designator import DesignatorDescription, ObjectDesignatorDescription -from owlready2 import * +SOMA_HOME_ONTOLOGY = "http://www.ease-crc.org/ont/SOMA-HOME.owl" +SOMA_ONTOLOGY = "http://www.ease-crc.org/ont/SOMA.owl" -class OntologyOWL(object, metaclass=Singleton): +class OntologyManager(object, metaclass=Singleton): """ Singleton class as the adapter accessing data of an OWL ontology, largely based on owlready2. """ """ - The ontology instance as the result of an ontology loading operation, eg by owlready2 get_ontology().load() + The ontology instance as the result of an ontology loading operation """ onto = None """ - The SOMA ontology instance, referencing :attr:`onto` in case of ontology loading from SOMA + The SOMA ontology instance, referencing :attr:`onto` in case of ontology loading from SOMA.owl + Ref: http://www.ease-crc.org/ont/SOMA.owl """ soma = None """ + The DUL ontology instance, referencing :attr:`onto` in case of ontology loading from DUL.owl + Ref: http://www.ease-crc.org/ont/DUL.owl + """ + dul = None + """ Ontology world, place holder of triples stored by owlready2. Ref: https://owlready2.readthedocs.io/en/latest/world.html """ onto_world = None @@ -41,40 +48,102 @@ def print_ontology_class(cls, onto_class): """ Print information (ancestors, super classes, subclasses, properties, etc.) of an ontology class """ + if onto_class is None: + return + print("-------------------") print(onto_class, type(onto_class)) print('Super classes: ', onto_class.is_a) print('Ancestors: ', onto_class.ancestors()) print('Subclasses: ', list(onto_class.subclasses())) print('Properties: ', list(onto_class.get_class_properties())) + print("Instances: ", list(onto_class.instances())) + print("Direct Instances: ", list(onto_class.direct_instances())) + print("Inverse Restrictions: ", list(onto_class.inverse_restrictions())) + + @classmethod + def browse_ontologies(cls, condition: Callable, func: Optional[Callable] = None, **kwargs): + if cls.onto is None: + assert False, "Main ontology has not been loaded!" + + do_func = func is not None + if condition is None: + if do_func: + func(cls.onto, **kwargs) + for sub_onto in cls.onto.get_imported_ontologies(): + func(sub_onto, **kwargs) + elif condition(cls.onto, **kwargs): + if do_func: func(cls.onto, **kwargs) + else: + for sub_onto in cls.onto.get_imported_ontologies(): + if condition(sub_onto, **kwargs) and do_func: + func(sub_onto, **kwargs) + break def __init__(self, onto_filename: str, onto_search_path=f"{Path.home()}/ontologies"): """ - Create the singleton object of OntologyOWL class + Create the singleton object of OntologyManager class :param onto_filename: full name path of to be loaded ontology file - :param onto_search_path: directory path from which a possibly existing ontology is searched. This is appeneded + :param onto_search_path: directory path from which a possibly existing ontology is searched. This is appended to `onto_path`, a global variable by owlready2 containing a list of directories for searching local copies of ontologies (similarly to python `sys.path` for modules/packages). """ Path(onto_search_path).mkdir(parents=True, exist_ok=True) onto_path.append(onto_search_path) onto_name = Path(onto_filename).stem + OntologyManager.onto_filename = onto_filename # Create an ontology world with parallelized file parsing enabled - OntologyOWL.onto_world = World(filename=f"{onto_search_path}/{onto_name}.sqlite3", exclusive=False, - enable_thread_parallelism=True) - - onto = OntologyOWL.onto_world.get_ontology(onto_filename).load() - if onto.loaded: - print(f'Ontology [{onto.base_iri}]\'s name: {onto.name} has been loaded') - OntologyOWL.onto = onto - OntologyOWL.onto_namespace = get_namespace(onto.base_iri).name - print(f'Ontology namespace: {OntologyOWL.onto_namespace}') - if OntologyOWL.onto_namespace == "SOMA": - OntologyOWL.soma = OntologyOWL.onto - OntologyOWL.onto_filename = onto_filename + OntologyManager.onto_world = World(filename=f"{onto_search_path}/{onto_name}.sqlite3", exclusive=False, + enable_thread_parallelism=True) + + onto_ = OntologyManager.onto_world.get_ontology(onto_filename).load() + if onto_.loaded: + print(f'Main Ontology [{onto_.base_iri}]\'s name: {onto_.name} has been loaded') + OntologyManager.onto = onto_ + OntologyManager.onto_namespace = get_namespace(onto_.base_iri).name + print(f'Main Ontology namespace: {OntologyManager.onto_namespace}') + + print(f'Loaded ontologies:') + OntologyManager.browse_ontologies(condition=None, func=lambda ontology: print(ontology.base_iri)) + + # Search for SOMA & DUL from imported sub-ontologies + def is_matching_onto(ontology, onto_name): + return get_namespace(ontology.base_iri).name.lower() == onto_name.lower() + + def set_soma(ontology, onto_name): + OntologyManager.soma = ontology + + def set_dul(ontology, onto_name): + OntologyManager.dul = ontology + + OntologyManager.browse_ontologies(condition=is_matching_onto, func=set_soma, onto_name="SOMA") + OntologyManager.browse_ontologies(condition=is_matching_onto, func=set_dul, onto_name="DUL") else: - assert False, f'Ontology [{onto.base_iri}]\'s name: {onto.name} failed being loaded' + assert False, f'Ontology [{onto_.base_iri}]\'s name: {onto_.name} failed being loaded' + + with onto_: + class OntologyConcept(Thing): + """ + A default ontology concept class that inherits from owlready2.Thing with a list of designators as its attribute + """ + namespace = onto_ + + def __init__(self, name: str): + """ + Create a new ontology concept + + :param name: concept name + """ + super().__init__(name) + self.designators = [] + self.resolve = None + + def get_default_designator(self) -> DesignatorDescription: + """ + Return the first element of designators if there is, else None + """ + return self.designators[0] if len(self.designators) > 0 else None @classmethod def save(cls): @@ -85,109 +154,354 @@ def save(cls): cls.onto_world.save() @classmethod - def create_ontology_class(cls, parent_onto_class, class_name): + def create_ontology_concept_class(cls, class_name: str, + onto_parent_concept_class: Optional[owlready2.Thing] = None)\ + -> Type[owlready2.Thing]: """ - Create a new class in ontology + Create a new concept class in ontology - :param parent_onto_class: a parent ontology class for the new class - :class_name: a given name to the new class + :param class_name: A given name to the new class + :param onto_parent_concept_class: An optional parent ontology class of the new class + :return: The created ontology class """ - assert issubclass(parent_onto_class, Thing) - return types.new_class(class_name, (parent_onto_class,)) + return types.new_class(class_name, (cls.onto.OntologyConcept, onto_parent_concept_class,) + if inspect.isclass(onto_parent_concept_class) else (cls.onto.OntologyConcept,)) @classmethod - def get_ontology_class(cls, class_name): + def create_ontology_property_class(cls, class_name: str, + onto_parent_property_class: Optional[owlready2.Property] = None)\ + -> Type[owlready2.Property]: + """ + Create a new property class in ontology + + :param class_name: A given name to the new class + :param onto_parent_property_class: An optional parent ontology property class of the new class + :return: The created ontology class """ - Get an ontology class + if onto_parent_property_class: + assert issubclass(onto_parent_property_class, owlready2.Property), \ + f"{onto_parent_property_class} must be a subclass of one implementing owlready2.Property" + return types.new_class(class_name, (onto_parent_property_class,) + if inspect.isclass(onto_parent_property_class) else (owlready2.ObjectProperty,)) + + @classmethod + def get_ontology_classes_by_condition(cls, condition: Callable, print_info=False, first_match_only=False, **kwargs)\ + -> List[Type[owlready2.Thing]]: + """ + Get an ontology class by a given condition + + :param condition: condition of searching + :param print_info: print essential information of the class (super/sub-classes, ancestors, properties, etc.) + :param first_match_only: whether to only fetch the first class matching the given condition + :return: The ontology class satisfying the given condition if found else None + """ + out_classes = [] + for onto_class in list(cls.onto.classes()): + if condition(onto_class, **kwargs): + out_classes.append(onto_class) + if first_match_only: + return out_classes + + for sub_onto in cls.onto.get_imported_ontologies(): + for sub_onto_class in list(sub_onto.classes()): + if condition(sub_onto_class, **kwargs): + out_classes.append(sub_onto_class) + if first_match_only: + return out_classes + + if len(out_classes): + if print_info: + for out_class in out_classes: cls.print_ontology_class(out_class) + else: + print(f"No class with {kwargs} is found in the ontology {cls.onto}") + return out_classes + + @classmethod + def get_ontology_class(cls, class_name: str, print_info=False) -> Type[owlready2.Thing]: + """ + Get an ontology class by name :param class_name: name of the searched-for ontology class + :param print_info: print essential information of the class (super/sub-classes, ancestors, properties, etc.) + :return: The ontology class of the given name if existing else None """ - for onto_class in cls.onto.classes(): - if onto_class.name == class_name: - print('-------------------') - print(onto_class, type(onto_class)) - print('Super classes: ', onto_class.is_a) - print('Ancestors: ', onto_class.ancestors()) - print('Subclasses: ', list(onto_class.subclasses())) - print('Properties: ', list(onto_class.get_class_properties())) - print('Direct Instances: ', list(onto_class.direct_instances())) - print('Inverse Restrictions: ', list(onto_class.inverse_restrictions())) - return onto_class - return None + + def is_matching_class_name(onto_class: Type[owlready2.Thing], onto_class_name: str): + return onto_class.name == onto_class_name + + found_classes = cls.get_ontology_classes_by_condition(condition=is_matching_class_name, + onto_class_name=class_name, + print_info=print_info, first_match_only=True) + return found_classes[0] if len(found_classes) > 0 else None @classmethod - def get_ontology_classes_by_namespace(cls, namespace: str): + def get_ontology_classes_by_namespace(cls, onto_namespace: str, print_info=False) -> List[Type[owlready2.Thing]]: """ Get all ontologies classes by namespace - :param namespace: namespace of the searched-for ontology classes + :param onto_namespace: namespace of the searched-for ontology classes + :param print_info: whether to print the found class info + :return: A list of the ontology classes under the given namespace """ - return [onto_class for onto_class in cls.onto.classes() if onto_class.namespace.name == namespace] + + def is_matching_onto_namespace(onto_class: Type[owlready2.Thing], ontology_namespace: str): + return onto_class.namespace.name == ontology_namespace + + return cls.get_ontology_classes_by_condition(condition=is_matching_onto_namespace, + ontology_namespace=onto_namespace, + print_info=print_info) @classmethod - def get_ontology_classes_by_subname(cls, class_subname: str): + def get_ontology_classes_by_subname(cls, class_subname: str, print_info=False) -> List[Type[owlready2.Thing]]: """ Get all ontologies classes by subname :param class_subname: a string as part of the full names of the searched-for ontology classes + :param print_info: whether to print the found class info + :return: A list of the ontology classes of which the name contains the given subname """ - return [onto_class for onto_class in cls.onto.classes() if class_subname.lower() in onto_class.name.lower()] + + def is_matching_class_subname(onto_class: Type[owlready2.Thing], onto_class_subname: str): + return onto_class_subname.lower() in onto_class.name.lower() + + return cls.get_ontology_classes_by_condition(condition=is_matching_class_subname, + onto_class_subname=class_subname, + print_info=print_info) @classmethod - def get_ontology_descendants(cls, ancestor_class, class_subname: str): + def get_ontology_descendant_classes(cls, ancestor_class: Type[owlready2.Thing], class_subname: str = "")\ + -> List[Type[owlready2.Thing]]: """ - Get ontology descendant classes of an ancestor_class given descendant class subname + Get ontology descendant classes of an ancestor class given descendant class subname - :param class_subname: a string as part of the full names of the given ancestor class + :param class_subname: a string as part of the ancestor class full name + :return: A list of the ontology descendant classes """ - descendants = [] - for onto_class in cls.onto.classes(): - if (class_subname.lower() in onto_class.name.lower()) and (ancestor_class in onto_class.ancestors()): - descendants.append(onto_class) - return descendants + return [onto_class for onto_class in cls.onto.classes() + if (class_subname.lower() in onto_class.name.lower()) and + (ancestor_class in onto_class.ancestors())] + @classmethod + def create_ontology_triple_classes(cls, subject_class_name: str, object_class_name: str, + predicate_name: str, inverse_predicate_name: str, + onto_subject_parent_class: Optional[Type[owlready2.Thing]] = None, + onto_object_parent_class: Optional[Type[owlready2.Thing]] = None, + onto_property_parent_class: Optional[Type[ + owlready2.Property]] = owlready2.ObjectProperty, + onto_inverse_property_parent_class: Optional[Type[ + owlready2.Property]] = owlready2.ObjectProperty): + """ + Dynamically create ontology triple classes under same namespace with the main ontology, + aka subject, predicate, object, with relation among them + + :param subject_class_name: name of the subject class + :param object_class_name: name of the object class + :param predicate_name: name of predicate class, also used as a Python attribute of the subject class to + query object instances + :param inverse_predicate_name: name of inverse predicate + :param onto_subject_parent_class: a parent class of the subject class + :param onto_object_parent_class: a parent class of the object class + :param onto_property_parent_class: a parent ontology property class, default: owlready2.ObjectProperty + :param onto_inverse_property_parent_class: a parent ontology inverse property class, default: owlready2.ObjectProperty + """ -if __name__ == "__main__": - OntologyOWL("http://www.ease-crc.org/ont/SOMA.owl") - onto = OntologyOWL.onto + # This context manager ensures all classes created here-in share the same namepsace with `cls.onto` + with cls.onto: + # Subject + onto_subject_class = cls.create_ontology_concept_class(subject_class_name, onto_subject_parent_class) + + # Object + onto_object_class = cls.create_ontology_concept_class(object_class_name, onto_object_parent_class) + + # Predicate + onto_predicate_class = cls.create_ontology_property_class("OntologyPredicate", + onto_property_parent_class) + onto_predicate_class.domain = [onto_subject_class] + onto_predicate_class.range = [onto_object_class] + onto_predicate_class.python_name = predicate_name + + # Inverse Predicate + onto_inverse_predicate = cls.create_ontology_property_class("OntologyInversePredicate", + onto_inverse_property_parent_class) + onto_inverse_predicate.inverse_property = onto_predicate_class + onto_inverse_predicate.python_name = inverse_predicate_name + + @classmethod + def create_ontology_linked_designator(cls, designator_name: str, designator_class: Type[DesignatorDescription], + onto_concept_name: str, onto_parent_class: Optional[Type[owlready2.Thing]] = None)\ + -> DesignatorDescription: + """ + Create an object designator linked to a given ontology concept + + :param designator_name: Designator name + :param designator_class: Designator class + :param onto_concept_name: Ontology concept name + :param onto_parent_class: Parent ontology class from which the class of designator inherits + :return: An object designator associated with an ontology concept + """ + onto_concept_class = cls.create_ontology_concept_class(onto_concept_name, onto_parent_class) + return cls.create_ontology_linked_designator_by_concept(designator_name, designator_class, onto_concept_class) + + @classmethod + def create_ontology_linked_designator_by_concept(cls, designator_name: str, + designator_class: Type[DesignatorDescription], + onto_concept_class: Type[owlready2.Thing]) -> DesignatorDescription: + """ + Create an object designator that belongs to a given ontology concept class + + :param designator_name: Designator name + :param designator_class: Designator class + :param onto_concept_class: Ontology concept class which the output designator is associated with + :return: An object designator associated with the given ontology concept class + """ + designator = designator_class(names=[designator_name]) if issubclass(designator_class, + ObjectDesignatorDescription) \ + else designator_class() + desig_onto_concept = onto_concept_class(name=f'{designator_name}_concept') + cls.set_ontology_concept_designator_connection(designator, desig_onto_concept) + return designator + + @classmethod + def set_ontology_concept_designator_connection(cls, designator: DesignatorDescription, + ontology_concept: owlready2.Thing): + """ + Set two-way connection between a designator and an ontology concept + + :param designator: Designator + :param ontology_concept: Ontology concept + """ + designator.onto_concepts.append(ontology_concept) + ontology_concept.designators.append(designator) - print(OntologyOWL.get_ontology_classes_by_namespace("SOMA")) - print(OntologyOWL.get_ontology_classes_by_subname('Container')) - print(f'{onto.name}.Container: ', onto.Container) - print(OntologyOWL.get_ontology_descendants(onto.Container, 'Container')) + @classmethod + def set_ontology_relation(cls, subject_designator: DesignatorDescription, + object_designator: DesignatorDescription, + predicate_name: str): + """ + Set ontology relation between subject and object designators - print(OntologyOWL.get_ontology_classes_by_subname('Navigating')) - OntologyOWL.get_ontology_class('Navigating') + :param subject_designator: An object designator as the ontology subject + :param object_designator: An object designator as the ontology object + :param predicate_name: Name of the predicate + """ + for subject_onto_concept in subject_designator.onto_concepts: + getattr(subject_onto_concept, predicate_name).extend(object_designator.onto_concepts) - # enum -> Onto class, the gate to ontology knowledge related to ObjectType - print(OntologyOWL.get_ontology_classes_by_subname('Container')) - parent_onto_cls_name = 'Container' - child_onto_cls_name = 'CustomContainer' - ParentOntoClass = OntologyOWL.get_ontology_class(parent_onto_cls_name) - if ParentOntoClass: - ChildOntoClass = OntologyOWL.create_ontology_class(ParentOntoClass, child_onto_cls_name) - print(ChildOntoClass) + @classmethod + def get_designators_by_subject_predicate(cls, subject: DesignatorDescription, + predicate_name: str) -> List[DesignatorDescription]: + """ + Get list of designators for a given subject designator and predicate - # PyCram obj -> Onto concept - onto_concept = ChildOntoClass('child_onto') - print('\nonto_concept:', onto_concept, '- type: ', type(onto_concept)) + :param subject: The subject designator + :param predicate_name: The predicate name of the relation + :return: List of object designators + """ + designators = list(itertools.chain( + *[onto_subject.designators for subject_onto_concept in subject.onto_concepts + for onto_subject in getattr(subject_onto_concept, predicate_name)])) + return designators - pycram_obj = ObjectDesignatorDescription(names=["obj"]) - pycram_obj.pose = lambda: Pose - pycram_obj.onto_concept = onto_concept - else: - print(f"No {parent_onto_cls_name} found in {onto}") + @classmethod + def create_ontology_object_designator_from_type(cls, object_type: ObjectType, + onto_concept_class=Type[owlready2.Thing]) -> ObjectDesignatorDescription: + obj_type_name = object_type.name.lower() + obj_designator = \ + cls.create_ontology_linked_designator_by_concept(obj_type_name, + ObjectDesignatorDescription, + onto_concept_class) + obj_designator.types = [obj_type_name] + return obj_designator - sync_reasoner_hermit(infer_property_values=True) - #sync_reasoner_pellet(infer_property_values=True, infer_data_property_values=True) + @classmethod + def demo_placeable_on_candidates_query(cls): + """ + Demonstrates how to create ontology-based object designators dynamically with ontology relations among them + """ + PLACEABLE_ON_PREDICATE_NAME = "placeable_on" + HOLD_OBJ_PREDICATE_NAME = "hold_obj" + cls.create_ontology_triple_classes(onto_subject_parent_class=cls.onto.Container, + subject_class_name="OntologyPlaceHolderObject", + onto_object_parent_class=cls.onto.PhysicalObject, + object_class_name="OntologyHandheldObject", + predicate_name=PLACEABLE_ON_PREDICATE_NAME, + inverse_predicate_name=HOLD_OBJ_PREDICATE_NAME, + onto_property_parent_class=cls.soma.affordsBearer, + onto_inverse_property_parent_class=cls.soma.isBearerAffordedBy) + + def create_ontology_handheld_object(obj_name: str, onto_parent_class: Type[owlready2.Thing]): + return OntologyManager.create_ontology_linked_designator(designator_name=obj_name, + designator_class=ObjectDesignatorDescription, + onto_concept_name=f"Onto{obj_name}", + onto_parent_class=cls.onto.OntologyHandheldObject) + + # Holdable Objects + cookie_box = create_ontology_handheld_object("cookie_box", cls.onto.OntologyHandheldObject) + egg = create_ontology_handheld_object("egg", cls.onto.OntologyHandheldObject) + + # Placeholder objects + placeholders = [create_ontology_handheld_object(obj_name, cls.onto.OntologyPlaceHolderObject) + for obj_name in ['table', 'stool', 'shelf']] + + egg_tray = create_ontology_handheld_object("egg_tray", cls.onto.OntologyPlaceHolderObject) + + # Create ontology relation between [Place-holders] and [Holdable objs] + for place_holder in placeholders: + cls.set_ontology_relation(subject_designator=cookie_box, object_designator=place_holder, + predicate_name=PLACEABLE_ON_PREDICATE_NAME) + + cls.set_ontology_relation(subject_designator=egg_tray, object_designator=egg, + predicate_name=HOLD_OBJ_PREDICATE_NAME) + + # Make queries for potential designator candidates based on above-set ontology relations among them + print(f"{cookie_box.names}'s placeholder candidates:", + f"""{[placeholder.names for placeholder in + cls.get_designators_by_subject_predicate(subject=cookie_box, predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}""") + + print(f"{egg.names}'s placeholder candidates:", + f"""{[placeholder.names for placeholder in + cls.get_designators_by_subject_predicate(subject=egg, predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}""") + + for place_holder in placeholders: + print(f"{place_holder.names} can hold:", + f"""{[placeholder.names for placeholder in + cls.get_designators_by_subject_predicate(subject=place_holder, + predicate_name=HOLD_OBJ_PREDICATE_NAME)]}""") + + print(f"{egg_tray.names}'s can hold:", + f"""{[placeholder.names for placeholder in + cls.get_designators_by_subject_predicate(subject=egg_tray, + predicate_name=HOLD_OBJ_PREDICATE_NAME)]}""") - OntologyOWL.get_ontology_class('Pouring') - print(f'{onto.Pouring}-isTaskAffordedBy: ', onto.Pouring.isTaskAffordedBy) + @classmethod + def demo_edible_object_types_query(cls): + generic_edible_class = cls.create_ontology_concept_class('GenericEdible') - OntologyOWL.get_ontology_class('Pourable') - print(f'{onto.Pourable}-affordsBearer: ', onto.Pourable.affordsBearer) + edible_obj_types = [ObjectType.MILK, ObjectType.BREAKFAST_CEREAL] + for object_type in ObjectType: + if object_type in edible_obj_types: + # Create a designator for that edible object + cls.create_ontology_object_designator_from_type(object_type, generic_edible_class) - OntologyOWL.get_ontology_class('PouredObject') - print(f'{onto.PouredObject}-isBearerAffordedBy: ', onto.PouredObject.isBearerAffordedBy) + print(f"{generic_edible_class.name} object types:") + for edible_onto_concept in generic_edible_class.instances(): + print(edible_onto_concept, [des.types for des in edible_onto_concept.designators]) +if __name__ == "__main__": + # Initialize ontologies + OntologyManager(SOMA_HOME_ONTOLOGY) + # Main ontology + onto = OntologyManager.onto + + # Imported ontologies + soma = OntologyManager.soma + dul = OntologyManager.dul + + #print(OntologyManager.get_ontology_classes_by_namespace('SOMA')) + print(OntologyManager.get_ontology_classes_by_subname('Container')) + print(f'Subclasses of {soma.name}.DesignedContainer: ', + OntologyManager.get_ontology_descendant_classes(soma.DesignedContainer)) + + OntologyManager.demo_placeable_on_candidates_query() + OntologyManager.demo_edible_object_types_query() diff --git a/test/bullet_world_testcase.py b/test/bullet_world_testcase.py index 67b6b9c01..ddf1b0bc9 100644 --- a/test/bullet_world_testcase.py +++ b/test/bullet_world_testcase.py @@ -7,7 +7,7 @@ from pycram.process_module import ProcessModule from pycram.enums import ObjectType from pycram.ros.viz_marker_publisher import VizMarkerPublisher -from pycram.ontology import OntologyManager +from pycram.ontology import OntologyManager, SOMA_ONTOLOGY class BulletWorldTestCase(unittest.TestCase): @@ -23,7 +23,7 @@ def setUpClass(cls): cls.cereal = Object("cereal", ObjectType.BREAKFAST_CEREAL, "breakfast_cereal.stl", pose=Pose([1.3, 0.7, 0.95])) ProcessModule.execution_delay = False cls.viz_marker_publisher = VizMarkerPublisher() - OntologyManager("http://www.ease-crc.org/ont/SOMA.owl") + OntologyManager(SOMA_ONTOLOGY) def setUp(self): self.world.reset_bullet_world() diff --git a/test/test_action_designator.py b/test/test_action_designator.py index 9bcb8015a..0ef432817 100644 --- a/test/test_action_designator.py +++ b/test/test_action_designator.py @@ -19,7 +19,7 @@ class TestActionDesignatorGrounding(BulletWorldTestCase): def test_move_torso(self): description = action_designator.MoveTorsoAction([0.3]) # SOMA ontology seems not provide a corresponding concept yet for MoveTorso - # self.assertIsNotNone(description.onto_concept) + # self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().position, 0.3) with simulated_robot: description.resolve().perform() @@ -27,7 +27,7 @@ def test_move_torso(self): def test_set_gripper(self): description = action_designator.SetGripperAction(["left"], ["open", "close"]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().motion, "open") self.assertEqual(len(list(iter(description))), 2) @@ -39,20 +39,20 @@ def test_set_gripper(self): def test_release(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.ReleaseAction(["left"], object_description) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().object_designator.name, "milk") def test_grip(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.GripAction(["left"], object_description, [0.5]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().object_designator.name, "milk") def test_park_arms(self): description = action_designator.ParkArmsAction([pycram.enums.Arms.BOTH]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().arm, pycram.enums.Arms.BOTH) with simulated_robot: description.resolve().perform() @@ -63,13 +63,13 @@ def test_park_arms(self): def test_navigate(self): description = action_designator.NavigateAction([Pose([0, 0, 0], [0, 0, 0, 1])]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().target_location, Pose([0, 0, 0], [0, 0, 0, 1])) def test_pick_up(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.PickUpAction(object_description, ["left"], ["front"]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: NavigateActionPerformable(Pose([0.6, 0.4, 0], [0, 0, 0, 1])).perform() @@ -80,7 +80,7 @@ def test_pick_up(self): def test_place(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.PlaceAction(object_description, [Pose([1.3, 1, 0.9], [0, 0, 0, 1])], ["left"]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: NavigateActionPerformable(Pose([0.6, 0.4, 0], [0, 0, 0, 1])).perform() @@ -91,7 +91,7 @@ def test_place(self): def test_look_at(self): description = action_designator.LookAtAction([Pose([1, 0, 1])]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().target, Pose([1, 0, 1])) with simulated_robot: description.resolve().perform() @@ -103,7 +103,7 @@ def test_detect(self): # time.sleep(1) object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.DetectAction(object_description) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: detected_object = description.resolve().perform() @@ -116,14 +116,14 @@ def test_detect(self): def test_open(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.OpenAction(object_description, ["left"], [1]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().object_designator.name, "milk") @unittest.skip def test_close(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.CloseAction(object_description, ["left"]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) self.assertEqual(description.ground().object_designator.name, "milk") def test_transport(self): @@ -132,7 +132,7 @@ def test_transport(self): ["left"], [Pose([-1.35, 0.78, 0.95], [0.0, 0.0, 0.16439898301071468, 0.9863939245479175])]) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) with simulated_robot: action_designator.MoveTorsoAction([0.2]).resolve().perform() description.resolve().perform() @@ -145,7 +145,7 @@ def test_grasping(self): self.robot.set_pose(Pose([-2.14, 1.06, 0])) milk_desig = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.GraspingAction(["right"], milk_desig) - self.assertIsNotNone(description.onto_concept) + self.assertIsNotNone(description.onto_concepts) with simulated_robot: description.resolve().perform() dist = np.linalg.norm( From 7e8bca8b71339ff43a7e0ad519e1e7730a709096 Mon Sep 17 00:00:00 2001 From: duc than Date: Tue, 2 Apr 2024 20:08:42 +0200 Subject: [PATCH 05/26] add ontology.ipynb --- examples/ontology.ipynb | 9027 ++------------------------------------- 1 file changed, 381 insertions(+), 8646 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 9096f380c..f1cb68f7c 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -2,8889 +2,624 @@ "cells": [ { "cell_type": "markdown", - "metadata": {}, - "source": [ - "# PyCRAM Presentation" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:14:50.953932170Z", - "start_time": "2024-01-29T16:14:50.284068023Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "pybullet build time: May 20 2022 19:44:17\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='base_laser_link']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n", - "[WARN] [1706544890.889466]: Failed to import Giskard messages\n", - "[WARN] [1706544890.894063]: Could not import RoboKudo messages, RoboKudo interface could not be initialized\n" - ] - } - ], "source": [ - "import pycram" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Bullet World\n", - "\n", - "The BulletWorld is the internal simulation of PyCRAM. You can simulate different actions and reason about the outcome of different actions. \n", + "# Ontology interface\n", "\n", - "It is possible to spawn objects and robots into the BulletWorld, these objects can come from URDF, OBJ or STL files. \n", - "\n", - "A BulletWorld can be created by simply creating an object of the BulletWorld class. " - ] + "This tutorial demonstrates basic usages of __owlready2__ API for ontology manipulation. Notably, new ontology concept triple classes (subject, predicate, object) will be dynamically created, with optional existing ontology parent classes that are loaded from an OWL ontology. Then through the interconnected relations specified in triples, designators and their corresponding ontology concepts can be double-way queried for certain purposes, eg. making a robot motion plan. " + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 2, + "source": [ + "from pathlib import Path \n", + "from typing import Optional, List, Type\n", + "import pycram\n", + "from pycram.designator import DesignatorDescription, ObjectDesignatorDescription" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:14:51.215354072Z", - "start_time": "2024-01-29T16:14:50.980844838Z" - } + "collapsed": false }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Unknown tag \"material\" in /robot[@name='plane']/link[@name='planeLink']/collision[1]\n", - "Unknown tag \"contact\" in /robot[@name='plane']/link[@name='planeLink']\n" - ] - } - ], - "source": [ - "from pycram.bullet_world import BulletWorld, Object\n", - "from pycram.enums import ObjectType\n", - "from pycram.pose import Pose\n", - "\n", - "world = BulletWorld()" - ] + "outputs": [], + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "The BulletWorld allows to render images from arbitrary positions. In the following example we render images with the camera at the position [0.3, 0, 1] and pointing towards [1, 0, 1], so we are looking upwards along the x-axis. \n", + "# Owlready2\n", "\n", - "The renderer returns 3 different kinds of images which are also shown on the left side of the BulletWorld window. (If these winodws are missing, click the BulletWorld window to focus it, and press \"g\") These images are:\n", - "* An RGB image which shows everything like it is rendered in the BulletWorld window, just from another perspective. \n", - "* A depth image which consists of distance values from the camera towards the objects in the field of view. \n", - "* A segmentation mask image which segments the image into the different objects displayed. The segmentation is done by assigning every pixel the unique id of the object that is displayed there. " - ] + "[Owlready2](https://owlready2.readthedocs.io/en/latest/intro.html) is a Python package providing a transparent access to OWL ontologies. It supports various manipulation operations, including but not limited to loading, modification, saving ontologies. Built-in supported reasoners include [HermiT](http://www.hermit-reasoner.com) and [Pellet](https://github.com/stardog-union/pellet)." + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 3, + "source": [ + "from owlready2 import *" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:14:51.251936758Z", - "start_time": "2024-01-29T16:14:51.234948638Z" - } + "collapsed": false }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Unknown tag \"material\" in /robot[@name='plane']/link[@name='planeLink']/collision[1]\n", - "Unknown tag \"contact\" in /robot[@name='plane']/link[@name='planeLink']\n" - ] - }, - { - "data": { - "text/plain": "[array([[[255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n ...,\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255]],\n \n [[255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n ...,\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255]],\n \n [[255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n ...,\n [255, 255, 255, 255],\n [255, 255, 255, 255],\n [255, 255, 255, 255]],\n \n ...,\n \n [[239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n ...,\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255]],\n \n [[239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n ...,\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255]],\n \n [[239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n ...,\n [239, 239, 239, 255],\n [239, 239, 239, 255],\n [239, 239, 239, 255]]], dtype=uint8),\n array([[0.99999994, 0.99999994, 0.99999994, ..., 0.99999994, 0.99999994,\n 0.99999994],\n [0.99999994, 0.99999994, 0.99999994, ..., 0.99999994, 0.99999994,\n 0.99999994],\n [0.99999994, 0.99999994, 0.99999994, ..., 0.99999994, 0.99999994,\n 0.99999994],\n ...,\n [0.80473447, 0.80473447, 0.80473447, ..., 0.80473447, 0.80473447,\n 0.80473447],\n [0.8031688 , 0.8031688 , 0.8031688 , ..., 0.8031688 , 0.8031688 ,\n 0.8031688 ],\n [0.80160314, 0.80160314, 0.80160314, ..., 0.80160314, 0.80160314,\n 0.80160314]], dtype=float32),\n array([[-1, -1, -1, ..., -1, -1, -1],\n [-1, -1, -1, ..., -1, -1, -1],\n [-1, -1, -1, ..., -1, -1, -1],\n ...,\n [ 1, 1, 1, ..., 1, 1, 1],\n [ 1, 1, 1, ..., 1, 1, 1],\n [ 1, 1, 1, ..., 1, 1, 1]], dtype=int32)]" - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from pycram.bullet_world_reasoning import _get_images_for_target\n", - "\n", - "_get_images_for_target(Pose([1, 0, 1], [0, 0, 0, 1]), Pose([0.3, 0, 1], [0, 0, 0, 1]))" - ] + "outputs": [], + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "## Objects\n", - "Everything that is located inside the BulletWorld is an Object. \n", - "Objects can be created from URDF, OBJ or STL files. Since everything is of type Object a robot might share the same methods as a milk (with some limitations).\n", + "# Ontology Manager\n", "\n", - "Signature:\n", - "Object:\n", - "* Name \n", - "* Type\n", - "* Filename or Filepath\n", + "`OntologyManager` is the singleton class acting as the main interface between PyCram with ontologies, whereby object instances in the former could query relevant information based on the semantic connection with their corresponding ontology concepts.\n", "\n", - " Optional:\n", - " * Position\n", - " * Orientation\n", - " * World \n", - " * Color \n", - " * Ignore Cached Files\n", + "Such connection, as represented by triples (subject-predicate-object), could be also created on the fly if not pre-existing in the loaded ontology.\n", "\n", - "If there is only a filename and no path, PyCRAM will check in the resource directory if there is a matching file. \n" - ] + "Also new and updated concepts with their properties defined in runtime could be stored into an [SQLite3 file database](https://owlready2.readthedocs.io/en/latest/world.html) for reuse.\n", + "\n", + "Here we will use [SOMA ontology](https://ease-crc.github.io/soma) as the baseline to utilize the generalized concepts provided by it." + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 4, + "source": [ + "from pycram.ontology import OntologyManager, SOMA_HOME_ONTOLOGY\n", + "\n", + "OntologyManager(SOMA_HOME_ONTOLOGY)\n", + "onto = OntologyManager.onto\n", + "soma = OntologyManager.soma\n", + "dul = OntologyManager.dul" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:14:51.319150211Z", - "start_time": "2024-01-29T16:14:51.238519616Z" - } + "collapsed": false }, "outputs": [], - "source": [ - "milk = Object(\"Milk\", ObjectType.MILK, \"milk.stl\")" - ] + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "Objects provide methods to change the position and rotation, change the color, attach other objects, set the state of joints if the objects has any or get the position and orientation of a link. \n", + "## Ontology Concept class\n", + "A built-in class named __`OntologyConcept`__, inheriting from __`owlready2.Thing`__, is created when `OntologyManager` is initialized, as the super class for all dynamically made ontology classes later on. It is then accessed by __`OntologyManager.onto.OntologyConcept`__\n", "\n", - "These methods are the same for every Object, however since some Objects may not have joints or more than one link methods related to these will not work. " - ] - }, - { - "cell_type": "code", - "execution_count": 5, + "Notable members:\n", + "- `designators`: a list of `DesignatorDescription` instances associated with the ontology concept\n", + "- `resolve`: a `Callable` returning a list of `DesignatorDescription`. It is used to provide which specific designators inferred from the ontology concept. Most typically, they are `designators`, but can be only a subset of it given certain conditions. " + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:14:51.361155485Z", - "start_time": "2024-01-29T16:14:51.360054431Z" - } - }, - "outputs": [], - "source": [ - "milk.set_position(Pose([1, 0, 0]))" - ] + "collapsed": false + } }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "To remove an Object from the BulletWorld just call the 'remove' method on the Object." - ] + "## Query ontology classes and their properties\n", + "\n", + "Classes in the loaded ontology can be queried based on their exact names, or part of them, or by namespace.\n", + "\n", + "By specifying `print_info` parameter as `True`, essential info (ancestors, super/sub-classes, properties, direct instances, etc.) of the found ontology class will be printed." + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 6, + "source": [ + "onto_designed_container_class = OntologyManager.get_ontology_class('DesignedContainer', print_info=True)\n", + "OntologyManager.print_ontology_class(onto_designed_container_class)\n", + "OntologyManager.get_ontology_classes_by_subname('PhysicalObject', print_info=True)\n", + "OntologyManager.get_ontology_classes_by_namespace('SOMA')" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:14:51.404210573Z", - "start_time": "2024-01-29T16:14:51.360232825Z" - } + "collapsed": false }, "outputs": [], - "source": [ - "milk.remove()" - ] + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "Since everything inside the BulletWorld is an Object, even a complex environment Object like the kitchen can be spawned in the same way as the milk." - ] + "__Descendants__ of an ontology class can be also queried by" + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 7, + "source": "OntologyManager.get_ontology_descendant_classes(onto_designed_container_class)", "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:14:54.380977290Z", - "start_time": "2024-01-29T16:14:51.404113811Z" - } + "collapsed": false }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Scalar element defined multiple times: limit\n", - "Scalar element defined multiple times: limit\n" - ] - } - ], - "source": [ - "kitchen = Object(\"kitchen\", ObjectType.ENVIRONMENT, \"kitchen.urdf\")" - ] + "outputs": [], + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "## Costmaps\n", + "## Create a new ontology class and its individual\n", "\n", - "Costmaps are a way to get positions with respect to certain criterias. \n", - "The currently available costmaps are:\n", - "* Occupancy Costmap\n", - "* Visibility Costmap\n", - "* Semantic Costmap \n", - "* Gaussian Costmap\n", - "\n", - "It is also possible to merge multiple costmaps to combine different criteria." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Visibility Costmaps\n", - "Visibility costmaps determine every position, around a target position, from which the target is visible. Visibility Costmaps are able to work with cameras that are movable in height for example, if the robot has a movable torso. " - ] + "A new ontology class can be created dynamically as inheriting from an existing class in the loaded ontology.\n", + "Here we create the class and its instance, also known as [__individual__](https://owlready2.readthedocs.io/en/latest/class.html#creating-equivalent-classes) in ontology terms." + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 8, + "source": [ + "onto_custom_container_class = OntologyManager.create_ontology_concept_class('CustomContainerConcept',\n", + " onto_designed_container_class)\n", + "custom_container_concept = onto_custom_container_class('onto_custom_container_concept')" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:14:54.951307507Z", - "start_time": "2024-01-29T16:14:54.380864026Z" - } + "collapsed": false }, "outputs": [], - "source": [ - "import pycram.costmaps as cm\n", - "v = cm.VisibilityCostmap(1.27, 1.60, size=300, resolution=0.02, origin=Pose([0, 0, 0.1], [0, 0, 0, 1]))" - ] + "execution_count": null }, { - "cell_type": "code", - "execution_count": 9, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:01.756580723Z", - "start_time": "2024-01-29T16:14:54.961615686Z" - } - }, - "outputs": [], + "cell_type": "markdown", "source": [ - "v.visualize()" - ] + "## Access ontology classes and individuals\n", + "All ontology classes created on the fly inherit from __`owlready2.Thing`__, and so share the same namespace with the loaded ontology instance `onto`. They can then be accessible through that namespace by __`onto.`__.\n", + "The same applies for individuals of those classes, accessible by __`onto.`__" + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 10, + "source": [ + "OntologyManager.print_ontology_class(onto.OntologyConcept)\n", + "OntologyManager.print_ontology_class(onto.CustomContainerConcept)\n", + "print(f\"custom_container_concept is {onto.onto_custom_container_concept}: {custom_container_concept is onto.onto_custom_container_concept}\")" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:05.092885577Z", - "start_time": "2024-01-29T16:15:05.091325419Z" - } + "collapsed": false }, "outputs": [], - "source": [ - "v.close_visualization()" - ] + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "### Occupancy Costmap\n", - "Is valid for every position where the robot can be placed without colliding with an object." - ] - }, - { - "cell_type": "code", - "execution_count": 11, + "For ones already existing in the ontology, they can only be accessed through their corresponding ontology, eg: `soma` as follows" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:05.847569295Z", - "start_time": "2024-01-29T16:15:05.093669437Z" - } - }, - "outputs": [], - "source": [ - "o = cm.OccupancyCostmap(0.2, from_ros=False, size=300, resolution=0.02, origin=Pose([0, 0, 0.1], [0, 0, 0, 1]))" - ] + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 12, + "source": [ + "OntologyManager.print_ontology_class(soma.Cup)" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:05.944506368Z", - "start_time": "2024-01-29T16:15:05.849514274Z" - } + "collapsed": false }, "outputs": [], - "source": [ - "s = cm.SemanticCostmap(kitchen, \"kitchen_island_surface\", size=100, resolution=0.02)\n", - "\n", - "g = cm.GaussianCostmap(200, 15, resolution=0.02)" - ] + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "You can visualize the costmap in the BulletWorld to get an impression what information is actually contained in the costmap. With this you could also check if the costmap was created correctly. \n", - "Visualization can be done via the 'visualize' method of each costmap." - ] - }, - { - "cell_type": "code", - "execution_count": 13, + "## Connect ontology class individuals with designators\n", + "After creating `custom_container_concept` class, we connect it to a designator (say `obj_designator`) by:\n", + "- Append to `obj_designator.onto_concepts` with `custom_container_concept`\n", + "- Append to `custom_container_concept.designators` with `obj_designator`" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:06.810575822Z", - "start_time": "2024-01-29T16:15:05.955432369Z" - } - }, - "outputs": [], - "source": [ - "o.visualize()" - ] + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 14, + "source": [ + "custom_container_designator = ObjectDesignatorDescription(names=[\"obj\"])\n", + "custom_container_designator.onto_concepts.append(custom_container_concept)\n", + "custom_container_concept.designators.append(custom_container_designator)" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:07.161867271Z", - "start_time": "2024-01-29T16:15:07.159806241Z" - } + "collapsed": false }, "outputs": [], - "source": [ - "o.close_visualization()" - ] + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "It is also possible to combine two costmap, this will result in a new costmap with the same size which contains the information of both previous costmaps. Combination is done by checking for each position in the two costmaps if they are zero, in this case to same position in the new costmap will also be zero in any other case the new position will be the normalized product of the two combined costmaps." - ] + "We can also automatize all the above setup with a single function call" + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 15, + "source": [ + "another_custom_container_designator = OntologyManager.create_ontology_linked_designator(designator_name=\"another_custom_container\",\n", + " designator_class=ObjectDesignatorDescription,\n", + " onto_concept_name=\"AnotherCustomContainerConcept\",\n", + " onto_parent_class=onto_designed_container_class)\n", + "print(another_custom_container_designator.onto_concepts)\n", + "print(onto.AnotherCustomContainerConcept.instances()[0].get_default_designator().names)" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:07.193879719Z", - "start_time": "2024-01-29T16:15:07.161787791Z" - } + "collapsed": false }, "outputs": [], - "source": [ - "ov = o + v" - ] + "execution_count": null }, { - "cell_type": "code", - "execution_count": 16, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:09.283523209Z", - "start_time": "2024-01-29T16:15:07.188128850Z" - } - }, - "outputs": [], + "cell_type": "markdown", "source": [ - "ov.visualize()" - ] + "## Create new ontology triple classes\n", + "\n", + "Concept classes of a triple, aka [__subject, predicate, object__], can be created dynamically. Here we will make an example creating ones for [__handheld objects__] and [__placeholder objects__], with a pair of predicate and inverse predicate signifying their mutual relation." + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 17, + "source": [ + "PLACEABLE_ON_PREDICATE_NAME = \"placeable_on\"\n", + "HOLD_OBJ_PREDICATE_NAME = \"hold_obj\"\n", + "OntologyManager.create_ontology_triple_classes(onto_subject_parent_class=soma.DesignedContainer,\n", + " subject_class_name=\"OntologyPlaceHolderObject\",\n", + " onto_object_parent_class=soma.Shape,\n", + " object_class_name=\"OntologyHandheldObject\",\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME,\n", + " inverse_predicate_name=HOLD_OBJ_PREDICATE_NAME,\n", + " onto_property_parent_class=soma.affordsBearer,\n", + " onto_inverse_property_parent_class=soma.isBearerAffordedBy)" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:10.347228575Z", - "start_time": "2024-01-29T16:15:09.280179794Z" - } + "collapsed": false }, "outputs": [], - "source": [ - "ov.close_visualization()" - ] + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "## Bullet World Reasoning \n", - "Allows for geometric reasoning in the BulletWorld. At the moment the following types of reasoning are supported:\n", - "* Stable\n", - "* Contact\n", - "* Visible \n", - "* Occluding \n", - "* Reachable \n", - "* Blocking\n", - "* Supporting\n", + "There, we use `soma.DesignedContainer` & `soma.Shape`, existing concept in SOMA ontology, as the parent classes for the subject & object concepts respectively.\n", + "There is also a note that those classes, as inheriting from ##owlready2##-provided classes, are automatically given the namespace `onto`, so later on to be accessible through it.\n", "\n", - "To show the geometric reasoning we first spawn a robot as well as the milk Object again." - ] + "Then now we define some instances of the newly created triple classes, and link them to object designators, again using __`OntologyManager.create_ontology_linked_designator()`__" + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 18, + "source": [ + "def create_ontology_handheld_object(obj_name: str, onto_parent_class: Type[Thing]):\n", + " return OntologyManager.create_ontology_linked_designator(designator_name=obj_name,\n", + " designator_class=ObjectDesignatorDescription,\n", + " onto_concept_name=f\"Onto{obj_name}\",\n", + " onto_parent_class=onto.OntologyHandheldObject)\n", + "# Holdable Objects\n", + "cookie_box = create_ontology_handheld_object(\"cookie_box\", onto.OntologyHandheldObject)\n", + "egg = create_ontology_handheld_object(\"egg\", onto.OntologyHandheldObject)\n", + " \n", + "# Placeholder objects\n", + "placeholders = [create_ontology_handheld_object(obj_name, onto.OntologyPlaceHolderObject)\n", + " for obj_name in ['table', 'stool', 'shelf']]\n", + "\n", + "egg_tray = create_ontology_handheld_object(\"egg_tray\", onto.OntologyPlaceHolderObject)" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:12.961385558Z", - "start_time": "2024-01-29T16:15:10.347682457Z" - } + "collapsed": false }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='base_laser_link']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='base_laser_link']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", - "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n" - ] - } - ], - "source": [ - "import pycram.bullet_world_reasoning as btr\n", - "milk = Object(\"Milk\", ObjectType.MILK, \"milk.stl\", pose=Pose([1, 0, 1]))\n", - "pr2 = Object(\"pr2\", ObjectType.ROBOT, \"pr2.urdf\")" - ] + "outputs": [], + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "We start with testing for visibility " - ] + "### Create ontology relations\n", + "\n", + "Now we will create ontology relations or predicates between __placeholder objects__ and __handheld objects__ with __`OntologyManager.set_ontology_relation()`__" + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 19, + "source": [ + "for place_holder in placeholders:\n", + " OntologyManager.set_ontology_relation(subject_designator=cookie_box, object_designator=place_holder,\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME)\n", + "\n", + "OntologyManager.set_ontology_relation(subject_designator=egg_tray, object_designator=egg,\n", + " predicate_name=HOLD_OBJ_PREDICATE_NAME)" + ], "metadata": { - "scrolled": true, - "ExecuteTime": { - "end_time": "2024-01-29T16:15:13.246942739Z", - "start_time": "2024-01-29T16:15:12.963076402Z" - } + "collapsed": false }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Milk visible: True\n" - ] - } - ], - "source": [ - "milk.set_position(Pose([1,0,1]))\n", - "visible = btr.visible(milk, pr2.get_link_pose(\"wide_stereo_optical_frame\"))\n", - "print(f\"Milk visible: {visible}\")" - ] + "outputs": [], + "execution_count": null }, { - "cell_type": "code", - "execution_count": 20, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:13.334740244Z", - "start_time": "2024-01-29T16:15:13.249042978Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Milk is in contact with the floor: True\n" - ] - } - ], + "cell_type": "markdown", "source": [ - "milk.set_position(Pose([1, 0, 0.05]))\n", + "## Query designators based on their ontology-concept relations\n", "\n", - "plane = BulletWorld.current_bullet_world.objects[0]\n", - "contact = btr.contact(milk, plane)\n", - "print(f\"Milk is in contact with the floor: {contact}\")" - ] + "Now we can make queries for designators from designators, based on the relation among their corresponding ontology concepts setup above" + ], + "metadata": { + "collapsed": false + } }, { "cell_type": "code", - "execution_count": 21, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:13.430296220Z", - "start_time": "2024-01-29T16:15:13.334507309Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Milk is reachable for the PR2: True\n" - ] - } - ], "source": [ - "milk.set_position(Pose([0.6, -0.5, 0.7]))\n", + "print(f\"{cookie_box.names}'s placeholder candidates:\",\n", + " f\"\"\"{[placeholder.names for placeholder in\n", + " OntologyManager.get_designators_by_subject_predicate(subject=cookie_box,\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}\"\"\")\n", "\n", - "reachable = btr.reachable(milk, pr2, \"r_gripper_tool_frame\")\n", - "print(f\"Milk is reachable for the PR2: {reachable}\")" - ] + "print(f\"{egg.names}'s placeholder candidates:\",\n", + " f\"\"\"{[placeholder.names for placeholder in\n", + " OntologyManager.get_designators_by_subject_predicate(subject=egg,\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}\"\"\")\n", + "\n", + "for place_holder in placeholders:\n", + " print(f\"{place_holder.names} can hold:\",\n", + " f\"\"\"{[placeholder.names for placeholder in\n", + " OntologyManager.get_designators_by_subject_predicate(subject=place_holder,\n", + " predicate_name=HOLD_OBJ_PREDICATE_NAME)]}\"\"\")\n", + "\n", + "print(f\"{egg_tray.names} can hold:\",\n", + " f\"\"\"{[placeholder.names for placeholder in\n", + " OntologyManager.get_designators_by_subject_predicate(subject=egg_tray,\n", + " predicate_name=HOLD_OBJ_PREDICATE_NAME)]}\"\"\")" + ], + "metadata": { + "collapsed": false + }, + "outputs": [], + "execution_count": null }, { "cell_type": "markdown", - "metadata": {}, "source": [ - "# Designators\n", - "Designators are symbolic descriptions of Actions, Motions, Objects or Locations. In PyCRAM the different types of designators are represented by a class which takes a description, the description then tells the designator what to do. \n", + "# Practical examples\n", "\n", - "For example, let's look at a Motion Designator to move the robot to a specific location. \n", - "\n" - ] + "## Example 1\n", + "How about creating ontology concept classes encapsulating `pycram.enums.ObjectType`? We can do it by:" + ], + "metadata": { + "collapsed": false + } }, { - "cell_type": "markdown", - "metadata": {}, + "cell_type": "code", "source": [ - "## Motion Designators\n", + "from pycram.enums import ObjectType\n", "\n", - "When using a Motion Designator you need to specify which Process Module needs to be used, either the Process Module for the real or the simulated robot. A Process Module is the interface between a real or simulated robot, and PyCRAM designators. By exchanging the Process Module, one can quickly change the robot the plan is executed on, allowing PyCRAM plans to be re-used across multiple robot platforms. This can be done either with a decorator which can be added to a function and then every designator executed within this function, will be executed on the specified robot. The other possibility is a \"with\" scope which wraps a code piece.\n", + "# Create a generic ontology concept class for edible objects\n", + "generic_edible_class = OntologyManager.create_ontology_concept_class('GenericEdible')\n", "\n", - "These two ways can also be combined, you could write a function which should be executed on the real robot and the function contains a \"with\" scope which executes something on the simulated robot for reasoning purposes. " - ] - }, - { - "cell_type": "code", - "execution_count": 22, + "# Create a list of object designators sharing the same concept class as [generic_edible_class]\n", + "edible_obj_types = [ObjectType.MILK, ObjectType.BREAKFAST_CEREAL]\n", + "for object_type in ObjectType:\n", + " if object_type in edible_obj_types:\n", + " # Create a designator for the edible object\n", + " OntologyManager.create_ontology_object_designator_from_type(object_type, generic_edible_class)\n", + "\n", + "print(f'{generic_edible_class.name} object types:')\n", + "for edible_onto_concept in generic_edible_class.direct_instances():\n", + " print(edible_onto_concept, [des.types for des in edible_onto_concept.designators])\n" + ], "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:13.939910370Z", - "start_time": "2024-01-29T16:15:13.437727375Z" - } + "collapsed": false }, "outputs": [], + "execution_count": null + }, + { + "cell_type": "markdown", "source": [ - "from pycram.designators.motion_designator import *\n", - "from pycram.process_module import simulated_robot, with_simulated_robot\n", + "## Example 2\n", + "We could also make use of relations between ontology concepts that designators are associated with, to enable more abstract inputs in robot motion plan.\n", "\n", - "description = MoveMotion(target=Pose([1, 0, 0], [0, 0, 0, 1]))\n", + "In a similar style to the scenario of __placeholder objects__ and __handheld objects__ above, but with a little bit difference, we will ask the robot to query which content holders (eg. cup, pitcher, bowl) whereby a milk box could be pourable into.\n", "\n", - "with simulated_robot:\n", - " description.perform()\n", - " \n" - ] + "Basically, we will provide an ontology-based implementation for the query:\n", + " \n", + "`abstract_ontology_concept -> specific_objects_in_world?`\n", + "\n", + "To achieve it, we will create triple classes and configure a customized `resolve()` for the abstract concept, which returns its associated specific designators.\n", + "These designators are then used to again resolve for the target objects of interest, which become the inputs to a robot motion plan.\n", + "\n", + "### Setup simulated environment" + ], + "metadata": { + "collapsed": false + } }, { + "metadata": {}, "cell_type": "code", - "execution_count": 23, - "metadata": { - "scrolled": true, - "ExecuteTime": { - "end_time": "2024-01-29T16:15:14.446281217Z", - "start_time": "2024-01-29T16:15:13.948689644Z" - } - }, - "outputs": [], "source": [ - "from pycram.process_module import with_simulated_robot\n", + "from pycram.bullet_world import BulletWorld, Object\n", + "from pycram.enums import ObjectType\n", + "from pycram.pose import Pose\n", "\n", - "@with_simulated_robot\n", - "def move():\n", - " MoveMotion(target=Pose([0, 0, 0], [0, 0, 0, 1])).perform()\n", + "from pycram.process_module import simulated_robot\n", + "from pycram.designators.action_designator import *\n", + "from pycram.designators.location_designator import *\n", "\n", - "move()" - ] + "world = BulletWorld()\n", + "plane = BulletWorld.current_bullet_world.objects[0]\n", + "kitchen = Object(\"kitchen\", ObjectType.ENVIRONMENT, \"kitchen.urdf\")\n", + "pr2 = Object(\"pr2\", ObjectType.ROBOT, \"pr2.urdf\")\n", + "kitchen_desig = ObjectDesignatorDescription(names=[\"kitchen\"])\n", + "robot_desig = ObjectDesignatorDescription(names=[\"pr2\"]).resolve()" + ], + "outputs": [], + "execution_count": null }, { - "cell_type": "markdown", "metadata": {}, - "source": [ - "Other implemented Motion Designator descriptions are:\n", - "* Accessing\n", - "* Move TCP\n", - "* Looking\n", - "* Move Gripper\n", - "* Detecting\n", - "* Move Arm Joint \n", - "* World State Detecting " - ] - }, - { "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Object Designators\n", - "\n", - "An Object Designator represents objects. These objects could either be from the BulletWorld or the real world. Object Designators are used, for example, by the PickUpAction to know which object should be picked up." - ] + "source": "### Create PourableObject-LiquidHolder triple ontology classes" }, { + "metadata": {}, "cell_type": "code", - "execution_count": 24, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:14.453344058Z", - "start_time": "2024-01-29T16:15:14.448819583Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "BelieveObject.Object(name='Milk', type=, bullet_world_object=Object(world=, \nlocal_transformer=, \nname=Milk, \ntype=ObjectType.MILK, \ncolor=[1, 1, 1, 1], \nid=4, \npath=/home/dprueser/workspace/ros/src/pycram/src/pycram/../../resources/cached/milk.urdf, \njoints: ..., \nlinks: ..., \nattachments: ..., \ncids: ..., \noriginal_pose=header: \n seq: 0\n stamp: \n secs: 1706544910\n nsecs: 372853994\n frame_id: \"map\"\npose: \n position: \n x: 1.0\n y: 0.0\n z: 1.0\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \ntf_frame=Milk_4, \nurdf_object: ..., \n_current_pose=header: \n seq: 0\n stamp: \n secs: 1706544913\n nsecs: 335583925\n frame_id: \"map\"\npose: \n position: \n x: 0.6\n y: -0.5\n z: 0.7\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \n_current_link_poses: ..., \n_current_link_transforms: ..., \n_current_joint_states={}, \nbase_origin_shift=[ 4.15300950e-04 -6.29518181e-05 8.96554102e-02], \nlink_to_geometry: ...), _pose=, \nlocal_transformer=, \nname=Milk, \ntype=ObjectType.MILK, \ncolor=[1, 1, 1, 1], \nid=4, \npath=/home/dprueser/workspace/ros/src/pycram/src/pycram/../../resources/cached/milk.urdf, \njoints: ..., \nlinks: ..., \nattachments: ..., \ncids: ..., \noriginal_pose=header: \n seq: 0\n stamp: \n secs: 1706544910\n nsecs: 372853994\n frame_id: \"map\"\npose: \n position: \n x: 1.0\n y: 0.0\n z: 1.0\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \ntf_frame=Milk_4, \nurdf_object: ..., \n_current_pose=header: \n seq: 0\n stamp: \n secs: 1706544913\n nsecs: 335583925\n frame_id: \"map\"\npose: \n position: \n x: 0.6\n y: -0.5\n z: 0.7\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \n_current_link_poses: ..., \n_current_link_transforms: ..., \n_current_joint_states={}, \nbase_origin_shift=[ 4.15300950e-04 -6.29518181e-05 8.96554102e-02], \nlink_to_geometry: ...)>)" - }, - "execution_count": 24, - "metadata": {}, - "output_type": "execute_result" - } - ], "source": [ - "from pycram.designators.object_designator import *\n", - "\n", - "milk_desig = BelieveObject(names=[\"Milk\"])\n", - "milk_desig.resolve()" - ] + "POURABLE_INTO_PREDICATE_NAME = \"pourable_into\"\n", + "HOLD_LIQUID_PREDICATE_NAME = \"hold_liquid\"\n", + "OntologyManager.create_ontology_triple_classes(onto_subject_parent_class=soma.DesignedContainer,\n", + " subject_class_name=\"OntologyLiquidHolderObject\",\n", + " onto_object_parent_class=soma.Shape,\n", + " object_class_name=\"OntologyPourableObject\",\n", + " predicate_name=POURABLE_INTO_PREDICATE_NAME,\n", + " inverse_predicate_name=HOLD_LIQUID_PREDICATE_NAME,\n", + " onto_property_parent_class=soma.affordsBearer,\n", + " onto_inverse_property_parent_class=onto.HOLD_OBJ_PREDICATE_NAME)" + ], + "outputs": [], + "execution_count": null }, { - "cell_type": "markdown", "metadata": {}, - "source": [ - "## Location Designator\n", - "Location Designator can create a position in cartisian space from a symbolic desctiption" - ] + "cell_type": "markdown", + "source": "### Spawn a pourable object & liquid holders into the world and Create their designators" }, { + "metadata": {}, "cell_type": "code", - "execution_count": 25, - "metadata": { - "scrolled": false, - "ExecuteTime": { - "end_time": "2024-01-29T16:15:14.493010865Z", - "start_time": "2024-01-29T16:15:14.451251059Z" - } - }, - "outputs": [ - { - "data": { - "text/plain": "BelieveObject.Object(name='Milk', type=, bullet_world_object=Object(world=, \nlocal_transformer=, \nname=Milk, \ntype=ObjectType.MILK, \ncolor=[1, 1, 1, 1], \nid=4, \npath=/home/dprueser/workspace/ros/src/pycram/src/pycram/../../resources/cached/milk.urdf, \njoints: ..., \nlinks: ..., \nattachments: ..., \ncids: ..., \noriginal_pose=header: \n seq: 0\n stamp: \n secs: 1706544910\n nsecs: 372853994\n frame_id: \"map\"\npose: \n position: \n x: 1.0\n y: 0.0\n z: 1.0\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \ntf_frame=Milk_4, \nurdf_object: ..., \n_current_pose=header: \n seq: 0\n stamp: \n secs: 1706544913\n nsecs: 335583925\n frame_id: \"map\"\npose: \n position: \n x: 0.6\n y: -0.5\n z: 0.7\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \n_current_link_poses: ..., \n_current_link_transforms: ..., \n_current_joint_states={}, \nbase_origin_shift=[ 4.15300950e-04 -6.29518181e-05 8.96554102e-02], \nlink_to_geometry: ...), _pose=, \nlocal_transformer=, \nname=Milk, \ntype=ObjectType.MILK, \ncolor=[1, 1, 1, 1], \nid=4, \npath=/home/dprueser/workspace/ros/src/pycram/src/pycram/../../resources/cached/milk.urdf, \njoints: ..., \nlinks: ..., \nattachments: ..., \ncids: ..., \noriginal_pose=header: \n seq: 0\n stamp: \n secs: 1706544910\n nsecs: 372853994\n frame_id: \"map\"\npose: \n position: \n x: 1.0\n y: 0.0\n z: 1.0\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \ntf_frame=Milk_4, \nurdf_object: ..., \n_current_pose=header: \n seq: 0\n stamp: \n secs: 1706544913\n nsecs: 335583925\n frame_id: \"map\"\npose: \n position: \n x: 0.6\n y: -0.5\n z: 0.7\n orientation: \n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0, \n_current_link_poses: ..., \n_current_link_transforms: ..., \n_current_joint_states={}, \nbase_origin_shift=[ 4.15300950e-04 -6.29518181e-05 8.96554102e-02], \nlink_to_geometry: ...)>)" - }, - "execution_count": 25, - "metadata": {}, - "output_type": "execute_result" - } - ], "source": [ - "from pycram.designators.object_designator import *\n", + "# Holdable obj\n", + "milk_box = Object(\"milk_box\", ObjectType.MILK, \"milk.stl\")\n", + "milk_box_designator = create_ontology_handheld_object(milk_box.name, onto.OntologyPourableObject)\n", "\n", - "milk_desig = BelieveObject(names=[\"Milk\"])\n", - "milk_desig.resolve()" - ] + "# Liquid-holders\n", + "cup = Object(\"cup\", ObjectType.JEROEN_CUP, \"jeroen_cup.stl\", pose=Pose([1.4, 1, 0.9]))\n", + "bowl = Object(\"bowl\", ObjectType.BOWL, \"bowl.stl\", pose=Pose([1.4, 0.5, 0.9]))\n", + "pitcher = Object(\"pitcher\", ObjectType.GENERIC_OBJECT, \"Static_MilkPitcher.stl\", pose=Pose([1.4, 0, 0.9]))\n", + "milk_holders = [cup, bowl, pitcher]\n", + "milk_holder_designators = [create_ontology_handheld_object(obj.name, onto.OntologyLiquidHolderObject)\n", + " for obj in milk_holders]" + ], + "outputs": [], + "execution_count": null }, { - "cell_type": "markdown", "metadata": {}, - "source": [ - "## Location Designators\n", - "Location Designators can create a position in cartesian space from a symbolic description." - ] + "cell_type": "markdown", + "source": "### Create an ontology relation between the designators of the pourable object & its liquid holders" }, { + "metadata": {}, "cell_type": "code", - "execution_count": 26, - "metadata": { - "scrolled": false, - "ExecuteTime": { - "end_time": "2024-01-29T16:15:22.177685226Z", - "start_time": "2024-01-29T16:15:14.482072615Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Resolved: CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544915\n", - " nsecs: 201824188\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -1.26\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.443467406158451\n", - " w: 0.8962904996010476, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544915\n", - " nsecs: 927674055\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -1.26\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.443467406158451\n", - " w: 0.8962904996010476, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544915\n", - " nsecs: 938544273\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.36\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.08868143268496492\n", - " w: -0.9960600401064899, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544915\n", - " nsecs: 949182987\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.1341778331057823\n", - " w: -0.9909572690600926, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544915\n", - " nsecs: 959582567\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.1018321670517163\n", - " w: -0.9948015931599383, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544915\n", - " nsecs: 969888687\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.36\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.1181477706660459\n", - " w: -0.9929960243055576, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544915\n", - " nsecs: 979798555\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.5\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7414525335518785\n", - " w: -0.6710053207609464, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544915\n", - " nsecs: 994071245\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7421299374143975\n", - " w: -0.6702560376403205, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 9548187\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.07625058147116927\n", - " w: -0.997088686539622, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 24910449\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.0637115975084186\n", - " w: -0.9979683523754275, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 40581226\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.08526395561915938\n", - " w: -0.9963583983046332, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 71025371\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.46\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.025615781497071395\n", - " w: -0.9996718620318842, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 103567123\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.44000000000000006\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7435677691352427\n", - " w: -0.6686605810897175, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 120177507\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.42000000000000004\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7443316400531483\n", - " w: -0.6678101598626592, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 135888099\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7451280178851306\n", - " w: -0.6669214623646299, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 147926568\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.42\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.0684794522339555\n", - " w: -0.9976525269961167, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 158867120\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.44\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.051517987991811\n", - " w: -0.9986720667532839, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 171792984\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.46\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.03442144373073932\n", - " w: -0.9994074065222308, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 183446645\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.42\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.051081118766858044\n", - " w: -0.9986945074974259, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 195348024\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.5\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 1.2246467991473532e-16\n", - " w: -1.0, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 225474596\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.5\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 1.2246467991473532e-16\n", - " w: -1.0, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 235300779\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.52\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.012817353286048666\n", - " w: 0.9999178543534167, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 246283054\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.54\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.025615781497071274\n", - " w: 0.9996718620318842, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 255914211\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.56\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.03837651950358723\n", - " w: 0.9992633500488202, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 265790700\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.58\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.051081118766857926\n", - " w: 0.9986945074974259, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 276698589\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.6\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.06371159750841848\n", - " w: 0.9979683523754275, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 289893150\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.18000000000000005\n", - " y: -0.62\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.07625058147116914\n", - " w: 0.997088686539622, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 303444147\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6400579972438699\n", - " w: -0.7683265973296552, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 314954519\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.45999999999999996\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6386358371363977\n", - " w: -0.7695091081495349, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 332621335\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.44000000000000006\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.637152936590636\n", - " w: -0.7707373971684058, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 348136901\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.42000000000000004\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6356053782081866\n", - " w: -0.7720141211097294, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 359711885\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6339889056055383\n", - " w: -0.7733421413379021, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 370139122\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6322988865446836\n", - " w: -0.7747245433535415, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 395307302\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.21999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6154122094026357\n", - " w: -0.7882054380161091, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 405689239\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.20000000000000007\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6127638044913316\n", - " w: -0.7902661070204827, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 416645288\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.017233697316775633\n", - " w: -0.9998514888106103, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 437982320\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.52\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.01723369731677551\n", - " w: 0.9998514888106103, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 448891639\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3745654411331824\n", - " w: 0.9272004801059501, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 469527959\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.21999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7541778209662121\n", - " w: -0.6566702478129005, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 480023622\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.20000000000000007\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7554539549957066\n", - " w: -0.6552017413601289, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 490493774\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.18000000000000005\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7568004989740795\n", - " w: -0.6536459322542933, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 501381158\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.16000000000000003\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7582233771877503\n", - " w: -0.6519948698310459, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 511650800\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.14\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7597291886829179\n", - " w: -0.6502396172667391, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 521751880\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.12\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7613253045921371\n", - " w: -0.6483700953835624, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 532479286\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.09999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7630199824727258\n", - " w: -0.6463748961301956, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 561986207\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.040000000000000036\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7687942703292956\n", - " w: -0.6394961844365031, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 571810960\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -0.03999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7785979849482799\n", - " w: -0.6275230496439776, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 581784725\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.54\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.034421443730739416\n", - " w: 0.9994074065222308, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 601855516\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.58\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.06847945223395538\n", - " w: 0.9976525269961167, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 611686706\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.6\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.08526395561915948\n", - " w: 0.9963583983046332, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 622118949\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.62\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.10183216705171617\n", - " w: 0.9948015931599383, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 632574319\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.64\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.118147770666046\n", - " w: 0.9929960243055576, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 643788337\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.66\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.13417783310578218\n", - " w: 0.9909572690600926, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 654880285\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.6799999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.1498930671991917\n", - " w: 0.9887022142210559, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 675857067\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.72\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.18028099412059023\n", - " w: 0.98361514992343, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 696542024\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.76\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.20915386140954798\n", - " w: 0.9778827446363269, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 728210210\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.8400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2620133869693895\n", - " w: 0.9650642388197943, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 769653797\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.30826764220152825\n", - " w: 0.9512996692796181, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 779698371\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.318832815984807\n", - " w: 0.947810970315916, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 790320158\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.32901544105897695\n", - " w: 0.9443245414288284, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 800973892\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3388256770636711\n", - " w: 0.9408491699323249, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 811413764\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.34827434473373386\n", - " w: 0.9373926502807073, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 832077503\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.36613250713959444\n", - " w: 0.9305627261048418, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 853376865\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: 0.09999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8022929282893952\n", - " w: -0.5969305296404493, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 865315675\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.636848728643575\n", - " w: 0.7709887786635173, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 875989675\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6394961844365034\n", - " w: 0.7687942703292954, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 896036386\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6275230496439778\n", - " w: 0.7785979849482799, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 906243562\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6238505014869475\n", - " w: 0.7815436979430415, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 916708469\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6198304093435398\n", - " w: 0.7847357922594203, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 927308559\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6419537995511603\n", - " w: 0.7667433203111904, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 937535762\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -1.26\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4586899104028806\n", - " w: 0.8885964022516619, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 947962045\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -1.1\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4068385849311433\n", - " w: 0.9135000633887361, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 958276748\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -1.08\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.39911243533693425\n", - " w: 0.9169019925594128, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 969069242\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.39106548646982875\n", - " w: 0.9203628552327153, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 980567216\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3826834323650898\n", - " w: 0.9238795325112867, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544916\n", - " nsecs: 992730140\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3739517258340434\n", - " w: 0.9274481693042154, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 3598690\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.33999999999999997\n", - " y: 0.07999999999999996\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5435734062236173\n", - " w: -0.8393616336517022, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 14332056\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.36485567419311876\n", - " w: 0.9310640885616225, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 24833202\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.64\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7398679249122764\n", - " w: 0.6727521487784355, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 44901132\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.58\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6908662457673519\n", - " w: -0.7229825934691131, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 55425643\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.64\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7370989134318549\n", - " w: 0.6757848709593749, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 66057682\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.33999999999999997\n", - " y: -0.03999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5039557239143624\n", - " w: -0.8637294879381802, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 78454971\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.33999999999999997\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.49561612558176465\n", - " w: -0.8685416835496846, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 98734617\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.58\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6928318560989847\n", - " w: -0.7210991742988171, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 108744382\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.58\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6933854908702646\n", - " w: -0.7205668331602574, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 119309425\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3553805575128866\n", - " w: 0.9347217015464174, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 129229784\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.10682611122099109\n", - " w: -0.9942777187292293, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 139137268\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.33999999999999997\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4866443184625216\n", - " w: 0.8736001987798239, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 149181365\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.42\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.0859890841337593\n", - " w: -0.9962960791902362, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 159062862\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.33999999999999997\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5039557239143623\n", - " w: 0.8637294879381803, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 197809934\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.58\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6908662457673519\n", - " w: 0.7229825934691132, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 207918167\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.58\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6915789093529722\n", - " w: 0.7223009152272711, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 227355718\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.44\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.06480582077938048\n", - " w: -0.9978978933704143, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 237487077\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.46\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.043355575214250826\n", - " w: -0.9990597049715505, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 247480630\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.58\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6938978092954753\n", - " w: 0.7200734894821085, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 257900953\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.58\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6943732675901296\n", - " w: 0.7196150118335541, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 278165102\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.5\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 1.2246467991473532e-16\n", - " w: -1.0, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 288398027\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.52\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.02172373868536963\n", - " w: 0.9997640117435364, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 298751831\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.33999999999999997\n", - " y: -1.12\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5537478323882296\n", - " w: 0.8326844168863359, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 308977603\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.74\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7967527613758144\n", - " w: -0.6043054171857262, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 319071054\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.74\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8000000000000002\n", - " w: -0.5999999999999999, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 329062938\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.54\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.04335557521425048\n", - " w: 0.9990597049715505, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 339415788\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.56\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.06480582077938013\n", - " w: 0.9978978933704143, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 349754333\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.74\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8112421851755609\n", - " w: 0.584710284663765, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 359853982\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.74\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8072185755038553\n", - " w: 0.5902526335066423, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 371557712\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.74\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8034804340438839\n", - " w: 0.5953311617147653, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 381916522\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.58\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.08598908413375941\n", - " w: 0.9962960791902362, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 391955852\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.6\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.10682611122099096\n", - " w: 0.9942777187292293, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 401677608\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.45999999999999996\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6043054171857263\n", - " w: -0.7967527613758143, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 411783218\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.45999999999999996\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6\n", - " w: -0.8, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 421791553\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.64\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7384225572267273\n", - " w: -0.6743382882342812, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 432043552\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.74\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7937170381968226\n", - " w: 0.6082871552778866, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 442192077\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.74\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.790873617837808\n", - " w: 0.6119795099577574, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 452643394\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.64\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7347602405829027\n", - " w: -0.6783269041240771, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 474348306\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.62\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.12724528989938316\n", - " w: 0.9918712800552408, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 484361648\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.64\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.1471837619629651\n", - " w: 0.9891091649633165, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 504082441\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.64\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7327590618734483\n", - " w: 0.680488175681506, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 514279603\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.64\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7318630507095947\n", - " w: 0.6814517407755631, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 524206399\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.33523500300737585\n", - " w: 0.9421345406886665, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 534056901\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.74\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.23813352749512762\n", - " w: 0.9712324248513985, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 544548749\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.76\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2543984682342504\n", - " w: 0.9670994878294927, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 554365396\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.78\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2700013373907261\n", - " w: 0.9628599471404028, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 564265251\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.8\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.28494683992052433\n", - " w: 0.9585433210968125, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 574109077\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.13999999999999996\n", - " y: -0.8200000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2992447144182441\n", - " w: 0.9541763992536934, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 593857049\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.9\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.31340294084074444\n", - " w: 0.9496202381333145, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 604115009\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.88\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3018224483858295\n", - " w: 0.9533641537473408, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 626145839\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.8400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.27727888479854484\n", - " w: 0.9607894774844672, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 636278867\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.8200000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.26429951415565045\n", - " w: 0.9644406497120946, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 657084703\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.8\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2508413082792208\n", - " w: 0.9680282217274292, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 667837142\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6308905395898716\n", - " w: -0.7758718496349771, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 689748287\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6368487286435749\n", - " w: -0.7709887786635174, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 709959506\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.45999999999999996\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6308905395898716\n", - " w: -0.7758718496349771, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 720077991\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.44000000000000006\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6292425428779993\n", - " w: -0.7772089952081288, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 729877233\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.8400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.323044113557137\n", - " w: 0.9463839076696536, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 740610361\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.8200000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.30924417189076625\n", - " w: 0.9509826718461247, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 760720729\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.78\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.27958765375807687\n", - " w: 0.9601201715754407, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 780767917\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6257273935913882\n", - " w: -0.7800418122827314, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 791338205\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6238505014869477\n", - " w: -0.7815436979430415, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 803500652\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.7\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2116996959579716\n", - " w: 0.9773347628787704, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 816298246\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.6799999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.19294175778498965\n", - " w: 0.9812102109654376, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 826271057\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.66\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.17350299206578976\n", - " w: 0.9848333421164307, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 836186170\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.64\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.15341808887275654\n", - " w: 0.988161368404286, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 846061468\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.78\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.23690237287865074\n", - " w: 0.9715334609391818, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 866801500\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.58\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.08980559531591699\n", - " w: 0.9959593139531121, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 879305124\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.56\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.06771200763417459\n", - " w: 0.9977049082880918, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 889095067\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.54\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.0453144211719414\n", - " w: 0.9989727740203193, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 899603128\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.52\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.022709687246860417\n", - " w: 0.9997421017968333, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 909643411\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.5\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 1.2246467991473532e-16\n", - " w: -1.0, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 919872760\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.022709687246860538\n", - " w: -0.9997421017968333, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 930837392\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.46\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.045314421171941524\n", - " w: -0.9989727740203193, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 940669298\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.44\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.06771200763417472\n", - " w: -0.9977049082880918, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 950444221\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.42\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.08980559531591711\n", - " w: -0.9959593139531121, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 960928440\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.11150592856108661\n", - " w: -0.9937637686571844, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 971531629\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.1327331510254085\n", - " w: -0.9911518100769762, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 981504678\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.36\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.15341808887275665\n", - " w: -0.9881613684042859, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544917\n", - " nsecs: 991544485\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.17350299206579006\n", - " w: -0.9848333421164306, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 1651048\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.76\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.22248407835269934\n", - " w: 0.9749363234999248, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 11669158\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.74\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.20759148751784465\n", - " w: 0.978215607271796, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 21538734\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.72\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.19223376424350164\n", - " w: 0.9813491630835448, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 41085720\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.6799999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.1601822430069672\n", - " w: 0.9870874576374967, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 50888299\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.24\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6079025311911547\n", - " w: -0.7940116577049655, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 60572385\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.21999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6051264893449574\n", - " w: -0.7961293436955124, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 79907894\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.18000000000000005\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5990966850218961\n", - " w: -0.8006766900539662, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 92547893\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.16000000000000003\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.595815661390807\n", - " w: -0.8031212222581565, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 102537870\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.14\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5923364782216495\n", - " w: -0.805690695346529, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 112884759\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.12\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5886413254594184\n", - " w: -0.8083943282590367, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 123359680\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.09999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5847102846637651\n", - " w: -0.8112421851755608, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 144013881\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.06000000000000005\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5760484367663208\n", - " w: -0.8174155604703632, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 153965234\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.040000000000000036\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5712642314097769\n", - " w: -0.8207662139195283, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 164059638\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5661364326251805\n", - " w: -0.8243115549684078, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 194094181\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -0.03999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5483036971357891\n", - " w: -0.8362792928843958, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 203748703\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.541385747733913\n", - " w: -0.840774328907937, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 213503837\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.66\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.14353028825236291\n", - " w: 0.9896459247398505, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 224017381\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.64\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.12649723679630143\n", - " w: 0.9919669596730026, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 233902931\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.62\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.10911677189150902\n", - " w: 0.9940289382568178, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 263562440\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.31999999999999995\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.4812091581666131\n", - " w: -0.8766058099833582, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 273334980\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.56\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.05530038574178813\n", - " w: 0.9984697628555457, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 294827461\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.52\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.01850900096213863\n", - " w: 0.9998286937687794, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 304959297\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.5\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 1.2246467991473532e-16\n", - " w: -1.0, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 314709424\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.36\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.532573437384568\n", - " w: 0.8463837981627399, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 325293064\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.36\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5257311121191336\n", - " w: 0.85065080835204, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 335991859\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.018509000962138755\n", - " w: -0.9998286937687794, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 346140861\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.46\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.036961098084952626\n", - " w: -0.9993167051682638, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 356065750\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.36\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5019268181932334\n", - " w: 0.8649100931185952, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 377432346\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.31999999999999995\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.49806072645607874\n", - " w: 0.8671421525690256, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 397984027\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: -0.020000000000000018\n", - " y: -0.72\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.16966474960750313\n", - " w: 0.9855018380199112, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 408214569\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.42\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.07347291217220556\n", - " w: -0.9972972130598458, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 418574810\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.36\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5104644303570166\n", - " w: -0.8598988692516618, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 428881645\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.36\n", - " y: -0.03999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5183792016009997\n", - " w: -0.8551508658403557, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 438925266\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.09142755332923423\n", - " w: -0.9958117304451831, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 449546337\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.10911677189150912\n", - " w: -0.9940289382568177, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 459606885\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.36\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.12649723679630132\n", - " w: -0.9919669596730026, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 469818115\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.14353028825236303\n", - " w: -0.9896459247398504, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 480182886\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: -0.32\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.16018224300696732\n", - " w: -0.9870874576374967, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 490321397\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.05999999999999994\n", - " y: 0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.47918806782228074\n", - " w: -0.8777122510576854, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 501243829\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.46\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7630199824727257\n", - " w: 0.6463748961301957, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 511368751\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.44\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.764133282892573\n", - " w: 0.6450583895864149, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 531534433\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.3\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7733421413379024\n", - " w: 0.6339889056055382, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 542391061\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.28\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7749013304032105\n", - " w: 0.6320822162815011, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 552552223\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.26\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7765341206443674\n", - " w: 0.6300752014443031, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 562627077\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.24\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7782457171509326\n", - " w: 0.6279598743042668, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 572496891\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.22\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7800418122827314\n", - " w: 0.6257273935913882, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 582713603\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.2000000000000002\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7819286417257463\n", - " w: 0.6233679485255313, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 593607664\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.1800000000000002\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.783913048024316\n", - " w: 0.6208706251202633, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 604231595\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.1600000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7860025526744504\n", - " w: 0.6182232502820061, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 615185499\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.1400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7882054380161092\n", - " w: 0.6154122094026356, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 626099348\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.12\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7905308403287533\n", - " w: 0.6124222321969667, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 635951280\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.1\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7929888557099438\n", - " w: 0.6092361403592484, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 656157970\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7983486481160277\n", - " w: 0.602195513144453, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 666541576\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8012765844860855\n", - " w: 0.5982941042282742, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 696901559\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7882054380161092\n", - " w: -0.6154122094026356, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 706899642\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8043897838851272\n", - " w: 0.5941019067308558, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 717074871\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7947066772690753\n", - " w: -0.6069936549124264, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 727422475\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8077053073689017\n", - " w: 0.5895864113496071, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 737593412\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.584710284663765\n", - " w: 0.8112421851755609, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 748543024\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4310817166804798\n", - " w: 0.9023128911546209, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 759326457\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5599999999999999\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6794495938313833\n", - " w: -0.7337221881900318, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 780078649\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5800385487693184\n", - " w: 0.8145890264063119, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 790158510\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5750132745107971\n", - " w: 0.818144079081656, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 812283277\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8112421851755609\n", - " w: 0.584710284663765, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 822262287\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5637378164623551\n", - " w: 0.8259537967043049, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 832731246\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.45999999999999996\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5847102846637648\n", - " w: 0.8112421851755609, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 842995643\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.45999999999999996\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5902526335066423\n", - " w: 0.8072185755038553, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 853036403\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.88\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.35948867915153393\n", - " w: 0.9331494465314146, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 863647460\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.86\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3469462477349362\n", - " w: 0.9378850149046248, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 873960256\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.8400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.333732774306416\n", - " w: 0.9426677226646422, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 884471654\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.8200000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3198189174888669\n", - " w: 0.9474786857846721, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 895127058\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.45999999999999996\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5953311617147652\n", - " w: 0.8034804340438839, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 906480073\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5573899686393252\n", - " w: 0.8302508192469624, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 917049169\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5504910087462066\n", - " w: 0.8348410922382677, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 927591085\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.74\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2566679351570243\n", - " w: 0.9664996487646695, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 947772502\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.7\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2203854364245398\n", - " w: 0.9754128661300122, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 957824230\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.6799999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.20106587226819733\n", - " w: 0.9795777228015289, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 968458414\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.66\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.1809865534660407\n", - " w: 0.9834855705420817, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 979157924\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.64\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.1601822430069672\n", - " w: 0.9870874576374967, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544918\n", - " nsecs: 989204168\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.62\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.13870121188940068\n", - " w: 0.9903342737785114, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 20420312\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.56\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.07088902009067935\n", - " w: 0.9974842088126424, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 31285047\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.54\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.04745802042883704\n", - " w: 0.9988732333469429, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 41488409\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.52\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.023789307215243066\n", - " w: 0.9997169943850204, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 51862955\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.5\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 1.2246467991473532e-16\n", - " w: -1.0, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 62264919\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.02378930721524297\n", - " w: -0.9997169943850204, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 82359075\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.44\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.07088902009067946\n", - " w: -0.9974842088126424, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 103036642\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.11660571451398305\n", - " w: -0.9931782857788845, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 113466262\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.13870121188940082\n", - " w: -0.9903342737785114, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 133843421\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.1809865534660408\n", - " w: -0.9834855705420817, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 144020557\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.18\n", - " y: -0.32\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.20106587226819744\n", - " w: -0.9795777228015289, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 163890361\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.45999999999999996\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6082871552778866\n", - " w: 0.7937170381968226, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 173745393\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.45999999999999996\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6119795099577574\n", - " w: 0.790873617837808, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 183910846\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8150216638044884\n", - " w: 0.5794304855022417, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 194156885\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.12\n", - " y: -0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.16018224300696732\n", - " w: -0.9870874576374967, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 204169988\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8190674767950149\n", - " w: 0.5736971923032635, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 214705228\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8234061353888457\n", - " w: 0.5674524968700076, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 235476016\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5413857477339129\n", - " w: 0.8407743289079371, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 245808124\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5599999999999999\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6727521487784355\n", - " w: 0.7398679249122764, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 255650997\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5599999999999999\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6743382882342814\n", - " w: 0.7384225572267273, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 265812635\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5599999999999999\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6757848709593749\n", - " w: 0.7370989134318549, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 275789737\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5599999999999999\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6771094889847062\n", - " w: 0.7358822867326472, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 286756038\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5483036971357889\n", - " w: 0.8362792928843958, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 298326969\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.554700196225229\n", - " w: 0.8320502943378437, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 308969020\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5599999999999999\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6804881756815059\n", - " w: 0.7327590618734483, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 319038152\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.5599999999999999\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6814517407755631\n", - " w: 0.7318630507095948, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 329315423\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5606288093051838\n", - " w: 0.8280672304692729, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 339347362\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5661364326251803\n", - " w: 0.8243115549684079, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 349482059\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5712642314097768\n", - " w: 0.8207662139195284, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 359558582\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5760484367663208\n", - " w: 0.8174155604703632, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 369482517\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.08\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5805210231682381\n", - " w: 0.8142452589114058, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 379415988\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.1\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.584710284663765\n", - " w: 0.8112421851755609, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 389329671\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.12\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5886413254594183\n", - " w: 0.8083943282590367, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 399363040\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.1400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5923364782216495\n", - " w: 0.805690695346529, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 409301280\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.1600000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5958156613908069\n", - " w: 0.8031212222581566, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 419255733\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.1800000000000002\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5990966850218961\n", - " w: 0.8006766900539662, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 429352521\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.3\n", - " y: 0.06000000000000005\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5137015609692951\n", - " w: -0.8579689424785198, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 439219951\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.2000000000000002\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.602195513144453\n", - " w: 0.7983486481160277, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 449213981\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.12\n", - " y: -0.7\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.19611613513818393\n", - " w: 0.9805806756909202, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 459560871\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.12\n", - " y: -0.72\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2132313029385177\n", - " w: 0.9770017458772231, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 469874858\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.12\n", - " y: -0.74\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2297529205473612\n", - " w: 0.9732489894677302, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 479789495\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7983486481160277\n", - " w: 0.602195513144453, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 489479780\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.3\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.4672596576628944\n", - " w: -0.8841201345522873, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 499516248\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7947066772690754\n", - " w: 0.6069936549124263, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 509546995\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7913349155531438\n", - " w: 0.6113829008293401, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 519337415\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7882054380161092\n", - " w: 0.6154122094026356, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 539964437\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7825789118992277\n", - " w: 0.6225514008101024, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 550527572\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7800418122827314\n", - " w: 0.6257273935913882, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 560472249\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.72\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.77766608796156\n", - " w: 0.6286775450376476, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 580207109\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.22\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6051264893449573\n", - " w: 0.7961293436955124, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 590407609\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.24\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6079025311911546\n", - " w: 0.7940116577049655, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 621572971\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.3\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.47630463962314995\n", - " w: 0.8792803251941108, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 631641149\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.3\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4847685323929452\n", - " w: 0.8746424812468178, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 641553401\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.28\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6130353373714668\n", - " w: 0.790055488642318, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 653319358\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.42\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6275230496439778\n", - " w: 0.7785979849482799, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 663541078\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.44\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6292425428779992\n", - " w: 0.7772089952081289, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 683467149\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.48\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6324713384826219\n", - " w: 0.7745837630611687, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 693924903\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.3\n", - " y: -1.1\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5257311121191336\n", - " w: 0.85065080835204, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 704140663\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.5\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6339889056055381\n", - " w: 0.7733421413379024, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 713812112\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6599999999999999\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7438189039121905\n", - " w: 0.6683812072334675, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 723740100\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6599999999999999\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7451280178851304\n", - " w: 0.6669214623646302, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 733844518\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.39999999999999997\n", - " y: -1.52\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6354469054448959\n", - " w: 0.7721445657132514, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 744749307\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.819067476795015\n", - " w: -0.5736971923032633, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 774046421\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6599999999999999\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7533635260394922\n", - " w: 0.6576042865077321, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 783934116\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6599999999999999\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7554539549957063\n", - " w: 0.655201741360129, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 794060468\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -0.03999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8150216638044883\n", - " w: -0.5794304855022419, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 804785490\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8112421851755609\n", - " w: -0.5847102846637648, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 825284957\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: -0.03999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5637378164623552\n", - " w: -0.8259537967043047, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 845585823\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.42\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5750132745107973\n", - " w: -0.8181440790816558, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 856135606\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8043897838851272\n", - " w: -0.5941019067308557, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 876502752\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.06000000000000005\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7983486481160278\n", - " w: -0.6021955131444529, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 886613845\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.07999999999999996\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7955906604925091\n", - " w: -0.6058345491444782, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 896639585\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.09999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7929888557099438\n", - " w: -0.6092361403592484, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 907559156\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7071067811865475\n", - " w: 0.7071067811865476, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 927424430\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.12\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7905308403287534\n", - " w: -0.6124222321969663, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 937479496\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.14\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7882054380161092\n", - " w: -0.6154122094026356, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 957934379\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7071067811865475\n", - " w: 0.7071067811865476, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 977858066\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7071067811865475\n", - " w: 0.7071067811865476, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 987823247\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.16000000000000003\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7860025526744504\n", - " w: -0.618223250282006, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544919\n", - " nsecs: 997573375\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.18000000000000005\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.783913048024316\n", - " w: -0.6208706251202633, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 7592201\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.20000000000000007\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7819286417257465\n", - " w: -0.623367948525531, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 27238607\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.24\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7782457171509329\n", - " w: -0.6279598743042666, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 37187337\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.26\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7765341206443676\n", - " w: -0.6300752014443028, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 57217121\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7664963583466964\n", - " w: -0.6422486532809958, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 67085981\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.42000000000000004\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7652911781639873\n", - " w: -0.6436842491659838, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 77337503\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.52\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6552017413601289\n", - " w: 0.7554539549957063, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 87342262\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.52\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6532424277825721\n", - " w: 0.7571488166435519, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 97246408\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.44000000000000006\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.764133282892573\n", - " w: -0.6450583895864149, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 107070446\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.45999999999999996\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7630199824727258\n", - " w: -0.6463748961301956, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 117566823\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.52\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6463748961301958\n", - " w: 0.7630199824727257, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 127794265\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.52\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6436842491659837\n", - " w: 0.7652911781639874, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 137711286\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.52\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6407474392457675\n", - " w: 0.767751730118527, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 150225162\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.52\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6375295648477821\n", - " w: 0.7704258912737796, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 160764455\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.76\n", - " y: 0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7619487840078729\n", - " w: -0.647637283167765, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 170743227\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.4\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4998611817921905\n", - " w: 0.8661055356810247, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 180782556\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.38\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4956161255817646\n", - " w: 0.8685416835496848, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 201177597\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.3399999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4866443184625216\n", - " w: 0.8736001987798239, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 213806390\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.32\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.48190142905041683\n", - " w: 0.8762254348506247, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 223469972\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.8\n", - " y: 0.09999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8112421851755609\n", - " w: -0.5847102846637648, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 243908166\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.28\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4718579255320242\n", - " w: 0.8816745987679439, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 263970375\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.1\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4153730020007066\n", - " w: 0.9096511799634632, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 273994445\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.08\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4077100588947825\n", - " w: 0.9131114432948549, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 284109830\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6599999999999999\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7533635260394923\n", - " w: -0.657604286507732, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 294022321\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.8\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8320502943378438\n", - " w: -0.5547001962252289, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 326006412\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6599999999999999\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7465333575886381\n", - " w: -0.6653479886551357, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 337008714\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.39971796346469235\n", - " w: 0.9166381781726305, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 347310543\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.39138108854039505\n", - " w: 0.9202286908877246, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 358036518\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3826834323650898\n", - " w: 0.9238795325112867, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 370610475\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3736087091451055\n", - " w: 0.9275864016095363, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 381522893\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3641404642253537\n", - " w: 0.9313440407893014, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 391707181\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.3542622175095866\n", - " w: 0.9351461282843395, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 402300357\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.34395763883862607\n", - " w: 0.9389851663815341, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 412396192\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.33321075897716623\n", - " w: 0.9428523691977768, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 422230243\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.9\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.32200621957921877\n", - " w: 0.9467375531541463, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 432636737\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.62\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7205668331602575\n", - " w: -0.6933854908702645, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 442850828\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.62\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7210991742988173\n", - " w: -0.6928318560989846, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 473550319\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.15423335048016681\n", - " w: -0.9880344496016634, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 483459949\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.36\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.13608082209815303\n", - " w: -0.9906977388977382, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 493614435\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.11750042131729284\n", - " w: -0.993072832671531, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 504096269\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.27999999999999997\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.44382247843994094\n", - " w: 0.8961147290561785, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 513952732\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.27999999999999997\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.453777645066917\n", - " w: 0.8911149470396753, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 523840188\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.27999999999999997\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.46310663556107695\n", - " w: 0.8863025691598214, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 533734798\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.09853761796664212\n", - " w: -0.9951333266680702, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 544054985\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7071067811865476\n", - " w: -0.7071067811865475, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 553883552\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.62\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7229825934691132\n", - " w: -0.6908662457673518, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 563676357\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.8\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8455570886676865\n", - " w: 0.5338850155265888, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 573505640\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7071067811865476\n", - " w: -0.7071067811865475, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 583408832\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7071067811865476\n", - " w: -0.7071067811865475, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 593615531\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7709887786635176\n", - " w: -0.6368487286435748, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 612910509\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7758718496349772\n", - " w: -0.6308905395898715, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 622579574\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.8\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8407743289079371\n", - " w: 0.5413857477339129, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 632315635\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7815436979430416\n", - " w: -0.6238505014869474, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 642050027\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.8400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2855086566344833\n", - " w: 0.9583761302259008, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 651688337\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.8200000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2723432423390162\n", - " w: 0.9622001654293517, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 661351203\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.8\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8280672304692729\n", - " w: 0.5606288093051838, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 671063661\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.8\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8243115549684079\n", - " w: 0.5661364326251804, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 680626392\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.8\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2586642746412806\n", - " w: 0.9659672836200511, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 690305233\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.78\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.24446768710590863\n", - " w: 0.9696574394914359, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 699806213\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.76\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2297529205473612\n", - " w: 0.9732489894677302, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 719159364\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.72\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.198787259314375\n", - " w: 0.9800426651601856, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 728794574\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.8\n", - " y: -1.1400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.805690695346529\n", - " w: 0.5923364782216496, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 739019632\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.7\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.18255737974256264\n", - " w: 0.9831952009146149, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 758497953\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.66\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.14869598393710892\n", - " w: 0.9888829578676007, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 768382310\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.64\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.13111872764660712\n", - " w: 0.9913666724579432, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 778136730\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.020000000000000018\n", - " y: -0.8200000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.24942164698879468\n", - " w: 0.968394982439189, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 797852516\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6653479886551358\n", - " w: -0.746533357588638, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 807753801\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6636470369788332\n", - " w: -0.7480458611002506, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 817374706\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.6\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.09485133899780393\n", - " w: 0.9954914482256106, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 827094316\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.58\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.07625058147116914\n", - " w: 0.997088686539622, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 837395668\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6576042865077321\n", - " w: -0.7533635260394922, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 848101377\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.42\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.07924445748219482\n", - " w: -0.9968552131369695, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 897163629\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.01922011145500681\n", - " w: -0.9998152765964606, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 907011747\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.46\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.03837651950358736\n", - " w: -0.9992633500488202, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 916730880\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.44\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.057406724906011355\n", - " w: -0.9983508741597643, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 926568746\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.42\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.07625058147116927\n", - " w: -0.997088686539622, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 937285184\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.09485133899780428\n", - " w: -0.9954914482256106, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 947034358\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.11315653826752582\n", - " w: -0.9935771725675414, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 957026481\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.36\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.13111872764660726\n", - " w: -0.9913666724579432, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 967617511\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.21999999999999997\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4056394187149922\n", - " w: 0.9140331842906817, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 977944612\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: -0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.14869598393710906\n", - " w: -0.9888829578676007, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 988276481\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.46\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.769509108149535\n", - " w: 0.6386358371363977, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544920\n", - " nsecs: 998299598\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.44\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7707373971684058\n", - " w: 0.6371529365906361, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 8562088\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.42\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7720141211097296\n", - " w: 0.6356053782081865, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 18221139\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7847357922594201\n", - " w: 0.6198304093435398, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 28006315\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7815436979430415\n", - " w: 0.6238505014869475, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 37898063\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7785979849482798\n", - " w: 0.6275230496439778, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 57746171\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: 0.30000000000000004\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.476975706616483\n", - " w: -0.8789164779987384, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 67290544\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7709887786635173\n", - " w: 0.636848728643575, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 77006340\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7687942703292954\n", - " w: 0.6394961844365034, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 86667060\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.7\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7667433203111904\n", - " w: 0.6419537995511603, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 96265316\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: 0.32000000000000006\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.48190142905041666\n", - " w: -0.8762254348506247, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 105965852\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.28\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7825789118992277\n", - " w: 0.6225514008101024, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 115576744\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.26\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7843680207272645\n", - " w: 0.6202957424167875, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 125284671\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.24\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.78624155930207\n", - " w: 0.6179192588245245, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 135140895\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5524309953122208\n", - " w: 0.8335586334615874, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 144938230\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5464711272034338\n", - " w: 0.8374779442665988, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 154725313\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5400672594718117\n", - " w: 0.8416218600099494, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 183697938\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5257311121191336\n", - " w: 0.85065080835204, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 194594383\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5176837863645347\n", - " w: 0.8555720293086252, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 204714298\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.52\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6488487878132037\n", - " w: -0.7609173743274208, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 214483737\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.52\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6511308684688737\n", - " w: -0.7589654749242356, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 244819402\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6225514008101024\n", - " w: 0.7825789118992277, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 255036592\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.2000000000000002\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7902661070204828\n", - " w: 0.6127638044913315, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 265106439\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6552017413601289\n", - " w: 0.7554539549957063, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 275486230\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.657604286507732\n", - " w: 0.7533635260394923, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 285556316\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6597957320005307\n", - " w: 0.7514450026674501, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 295557022\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6618025632357402\n", - " w: 0.7496781758158658, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 305361986\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.62\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.11750042131729249\n", - " w: 0.9930728326715311, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 314964056\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.64\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.1360808220981529\n", - " w: 0.9906977388977382, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 324617624\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6669214623646302\n", - " w: 0.7451280178851305, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 334374666\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.54\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6683812072334675\n", - " w: 0.7438189039121905, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 344164848\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.66\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.15423335048016673\n", - " w: 0.9880344496016635, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 353968620\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.6799999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.1719194406273956\n", - " w: 0.9851110119851283, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 363894939\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.7\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.18910752115495127\n", - " w: 0.9819563867314218, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 373680114\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.72\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.205772893716877\n", - " w: 0.9785997732532861, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 383259534\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.09999999999999998\n", - " y: -0.74\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.22189743411284238\n", - " w: 0.9750700122217567, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 393896102\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6154122094026356\n", - " w: 0.7882054380161092, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 403790950\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.61138290082934\n", - " w: 0.791334915553144, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 413312673\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6069936549124263\n", - " w: 0.7947066772690754, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 422859430\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.62\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7237282464487099\n", - " w: 0.6900850855454531, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 432488441\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.62\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7229825934691132\n", - " w: 0.6908662457673519, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 442560195\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.62\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7223009152272711\n", - " w: 0.6915789093529722, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 452620267\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.62\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7216753233664641\n", - " w: 0.6922317008371615, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 462723493\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.1800000000000002\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7924306153589356\n", - " w: 0.6099620642645399, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 472694635\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.1600000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7947066772690754\n", - " w: 0.6069936549124263, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 482583999\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.43999999999999995\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5982941042282742\n", - " w: 0.8012765844860855, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 492875099\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.25999999999999995\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.4305820312855818\n", - " w: 0.9025514469181146, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 503608465\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.25999999999999995\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.44076779540038685\n", - " w: 0.8976211620376843, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 545543432\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.43999999999999995\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5794304855022417\n", - " w: 0.8150216638044885, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 556905508\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.43999999999999995\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.5736971923032635\n", - " w: 0.8190674767950149, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 579474687\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.62\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7196150118335541\n", - " w: 0.6943732675901296, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 590476512\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.1400000000000001\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7971027464882692\n", - " w: 0.6038436979391754, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 600560188\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.12\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7996280994512247\n", - " w: 0.6004955475005809, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 611992359\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.1\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8022929282893952\n", - " w: 0.5969305296404492, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 623099565\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.08\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8051084445192626\n", - " w: 0.5931276359804638, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 633123397\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8080869942070349\n", - " w: 0.5890631628216448, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 655219793\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.02\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8145890264063119\n", - " w: 0.5800385487693183, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 665919780\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -1.0\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.818144079081656\n", - " w: 0.575013274510797, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 676297664\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8219256175556252\n", - " w: 0.5695948377626013, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 686551332\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6225514008101027\n", - " w: -0.7825789118992276, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 697294473\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6191231894884393\n", - " w: -0.7852938788999072, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 707584142\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6154122094026357\n", - " w: -0.7882054380161091, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 717669010\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -0.96\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8259537967043049\n", - " w: 0.563737816462355, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 729904651\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6069936549124266\n", - " w: -0.7947066772690753, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 755266666\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.8348410922382677\n", - " w: 0.5504910087462066, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 765379905\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5257311121191337\n", - " w: -0.8506508083520399, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 775438785\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.0\n", - " y: -0.78\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.2165835404696473\n", - " w: 0.9762640882454054, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 785464763\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6799999999999999\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7589654749242356\n", - " w: -0.6511308684688735, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 797777175\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6799999999999999\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.7609173743274209\n", - " w: -0.6488487878132035, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 810024023\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: -0.03999999999999998\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5331718778667884\n", - " w: -0.8460069436192604, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 821498632\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5400672594718116\n", - " w: -0.8416218600099494, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 832209587\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6799999999999999\n", - " y: -0.06\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.767751730118527\n", - " w: -0.6407474392457674, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 842942476\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: 0.33999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.4866443184625217\n", - " w: -0.8736001987798239, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 854440927\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.07999999999999996\n", - " y: 0.36\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.49121312130825956\n", - " w: -0.8710394190015727, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 864692211\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.48\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6248846524332634\n", - " w: -0.780717087781073, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 874951601\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.45999999999999996\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6231467899582747\n", - " w: -0.7821049022763493, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 885563135\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.44000000000000006\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6213354700248949\n", - " w: -0.7835446596646187, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 897155761\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.42000000000000004\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6194460375118611\n", - " w: -0.7850392388988298, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 907792329\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.4\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6174734445800121\n", - " w: -0.7865917271612352, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 917936801\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.38\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.6154122094026357\n", - " w: -0.7882054380161091, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 928446054\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.48\n", - " y: -0.9199999999999999\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.6021955131444529\n", - " w: 0.7983486481160278, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 961369752\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.24\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5979254685648697\n", - " w: -0.8015517039102849, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 973284721\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.21999999999999997\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5948871592163426\n", - " w: -0.8038092235098512, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 987850427\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.20000000000000007\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5916812500238643\n", - " w: -0.8061720029684716, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544921\n", - " nsecs: 998610258\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.18000000000000005\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5882940228258898\n", - " w: -0.8086471064112771, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 8282661\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.38\n", - " y: 0.16000000000000003\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5847102846637651\n", - " w: -0.8112421851755608, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 27345895\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6799999999999999\n", - " y: -1.06\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7554539549957063\n", - " w: 0.655201741360129, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 37099599\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6799999999999999\n", - " y: -1.04\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7571488166435519\n", - " w: 0.6532424277825721, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 67073106\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6799999999999999\n", - " y: -0.98\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7630199824727256\n", - " w: 0.6463748961301958, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 86748838\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6799999999999999\n", - " y: -0.94\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.7677517301185269\n", - " w: 0.6407474392457675, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 105825424\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.43999999999999995\n", - " y: -0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5847102846637651\n", - " w: -0.8112421851755608, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 115547418\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.43999999999999995\n", - " y: 0.0\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.5895864113496071\n", - " w: -0.8077053073689017, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 134811162\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: 0.020000000000000018\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.814589026406312\n", - " w: -0.5800385487693182, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 144512414\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: 0.040000000000000036\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8112421851755609\n", - " w: -0.5847102846637648, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 154634714\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.78\n", - " y: 0.06000000000000005\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.8080869942070349\n", - " w: -0.5890631628216447, reachable_arms=None)\n", - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1706544922\n", - " nsecs: 164654016\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.15999999999999998\n", - " y: -0.62\n", - " z: 0.0\n", - " orientation: \n", - " x: 0.0\n", - " y: 0.0\n", - " z: 0.13273315102540856\n", - " w: 0.9911518100769761, reachable_arms=None)\n" - ] - } - ], "source": [ - "from pycram.designators.location_designator import *\n", - "from pycram.designators.object_designator import *\n", - "\n", - "robot_desig = BelieveObject(types=[ObjectType.ROBOT]).resolve()\n", - "milk_desig = BelieveObject(names=[\"Milk\"]).resolve()\n", - "location_desig = CostmapLocation(target=milk_desig, visible_for=robot_desig)\n", - "\n", - "print(f\"Resolved: {location_desig.resolve()}\")\n", - "print()\n", - "\n", - "for pose in location_desig:\n", - " print(pose)\n", - " " - ] + "for milk_holder_desig in milk_holder_designators:\n", + " OntologyManager.set_ontology_relation(subject_designator=milk_box_designator, object_designator=milk_holder_desig,\n", + " predicate_name=POURABLE_INTO_PREDICATE_NAME)" + ], + "outputs": [], + "execution_count": null }, { - "cell_type": "markdown", "metadata": {}, - "source": [ - "# Action Designator\n", - "Action Designators are used to describe high-level actions. Action Designators are usually composed of other Designators to describe the high-level action in detail. " - ] + "cell_type": "markdown", + "source": "### Set up `resolve` for the ontology concept of the pourable object" }, { + "metadata": {}, "cell_type": "code", - "execution_count": 27, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:22.690059907Z", - "start_time": "2024-01-29T16:15:22.178420266Z" - } - }, - "outputs": [], "source": [ - "from pycram.designators.action_designator import *\n", - "from pycram.enums import Arms\n", + "milk_box_concept = milk_box_designator.get_default_onto_concept()\n", + "def milk_box_concept_resolve(): \n", + " object_designator = OntologyManager.get_designators_by_subject_predicate(subject=milk_box_designator, predicate_name=POURABLE_INTO_PREDICATE_NAME)[0]\n", + " return object_designator, object_designator.resolve()\n", "\n", - "with simulated_robot:\n", - " ParkArmsAction([Arms.BOTH]).resolve().perform()\n" - ] + "milk_box_concept.resolve = milk_box_concept_resolve" + ], + "outputs": [], + "execution_count": null }, { - "cell_type": "markdown", "metadata": {}, + "cell_type": "markdown", "source": [ - "# Making a simple plan\n", - "To get familiar with the PyCRAM Framework we will write a simple pick and place plan. This plan will let the robot grasp a cereal box from the kitchen counter and place it on the kitchen island. This is a simple pick and place plan." + "Here, for demonstration purpose only, we specify the resolving result by __`milk_box_concept`__ as __`cup`__, the first-registered (default) pourable-into target milk holder, utilizing the ontology relation setup above.\n", + "\n", + "Now, we can query the milk box's target liquid holder by resolving `milk_box_concept`" ] }, { + "metadata": {}, "cell_type": "code", - "execution_count": 28, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:22.784167007Z", - "start_time": "2024-01-29T16:15:22.739698077Z" - } - }, - "outputs": [], "source": [ - "from pycram.designators.object_designator import *\n", - "cereal = Object(\"cereal\", ObjectType.BREAKFAST_CEREAL, \"breakfast_cereal.stl\", pose=Pose([1.4, 1, 0.95]))\n" - ] + "target_milk_holder_designator, target_milk_holder = milk_box_concept.resolve()\n", + "print('Pickup target object:', target_milk_holder.name)" + ], + "outputs": [], + "execution_count": null }, { + "metadata": {}, + "cell_type": "markdown", + "source": "### Robot picks up the target liquid holder" + }, + { + "metadata": {}, "cell_type": "code", - "execution_count": 29, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:37.008203353Z", - "start_time": "2024-01-29T16:15:22.784090487Z" - } - }, - "outputs": [], "source": [ - "cereal_desig = ObjectDesignatorDescription(names=[\"cereal\"])\n", - "kitchen_desig = ObjectDesignatorDescription(names=[\"kitchen\"])\n", - "robot_desig = ObjectDesignatorDescription(names=[\"pr2\"]).resolve()\n", "with simulated_robot:\n", " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", "\n", " MoveTorsoAction([0.3]).resolve().perform()\n", "\n", - " pickup_pose = CostmapLocation(target=cereal_desig.resolve(), reachable_for=robot_desig).resolve()\n", + " pickup_pose = CostmapLocation(target=target_milk_holder, reachable_for=robot_desig).resolve()\n", " pickup_arm = pickup_pose.reachable_arms[0]\n", "\n", + " print(pickup_pose, pickup_arm)\n", + "\n", " NavigateAction(target_locations=[pickup_pose.pose]).resolve().perform()\n", "\n", - " PickUpAction(object_designator_description=cereal_desig, arms=[pickup_arm], grasps=[\"front\"]).resolve().perform()\n", + " PickUpAction(object_designator_description=target_milk_holder_designator, arms=[pickup_arm], grasps=[\"front\"]).resolve().perform()\n", "\n", " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", "\n", - " place_island = SemanticCostmapLocation(\"kitchen_island_surface\", kitchen_desig.resolve(), cereal_desig.resolve()).resolve()\n", + " place_island = SemanticCostmapLocation(\"kitchen_island_surface\", kitchen_desig.resolve(), target_milk_holder_designator.resolve()).resolve()\n", "\n", " place_stand = CostmapLocation(place_island.pose, reachable_for=robot_desig, reachable_arm=pickup_arm).resolve()\n", "\n", " NavigateAction(target_locations=[place_stand.pose]).resolve().perform()\n", "\n", - " PlaceAction(cereal_desig, target_locations=[place_island.pose], arms=[pickup_arm]).resolve().perform()\n", + " PlaceAction(target_milk_holder_designator, target_locations=[place_island.pose], arms=[pickup_arm]).resolve().perform()\n", "\n", " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", - " \n", - " \n", - " " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Task Trees\n", - "Task trees are a hierarchical representation of all Actions involved in a plan. The Task tree can later be used to inspect and restructure the execution order of Actions in the plan." - ] - }, - { - "cell_type": "code", - "execution_count": 30, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:37.015721112Z", - "start_time": "2024-01-29T16:15:37.010004750Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "no_operation()\n", - "├── perform(MoveMotion)\n", - "├── perform(MoveMotion)\n", - "├── perform(ParkArmsActionPerformable)\n", - "├── perform(ParkArmsActionPerformable)\n", - "├── perform(MoveTorsoActionPerformable)\n", - "├── perform(NavigateActionPerformable)\n", - "│ └── perform(MoveMotion)\n", - "├── perform(PickUpActionPerformable)\n", - "│ ├── perform(MoveTCPMotion)\n", - "│ ├── perform(MoveGripperMotion)\n", - "│ ├── perform(MoveTCPMotion)\n", - "│ ├── perform(MoveGripperMotion)\n", - "│ └── perform(MoveTCPMotion)\n", - "├── perform(ParkArmsActionPerformable)\n", - "├── perform(NavigateActionPerformable)\n", - "│ └── perform(MoveMotion)\n", - "├── perform(PlaceActionPerformable)\n", - "│ ├── perform(MoveTCPMotion)\n", - "│ ├── perform(MoveGripperMotion)\n", - "│ └── perform(MoveTCPMotion)\n", - "└── perform(ParkArmsActionPerformable)\n" - ] - } - ], - "source": [ - "import pycram.task\n", - "import anytree\n", - "tt = pycram.task.task_tree\n", - "print(anytree.RenderTree(tt))" - ] - }, - { - "cell_type": "code", - "execution_count": 31, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:37.200246997Z", - "start_time": "2024-01-29T16:15:37.012295886Z" - } - }, - "outputs": [], - "source": [ - "from anytree.dotexport import RenderTreeGraph, DotExporter\n", - "RenderTreeGraph(tt).to_picture(\"tree.png\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# ORM\n" - ] - }, - { - "cell_type": "code", - "execution_count": 32, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:37.447175714Z", - "start_time": "2024-01-29T16:15:37.236464380Z" - } - }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Inserting TaskTree into database: 100%|██████████| 22/22 [00:00<00:00, 119.33it/s]\n" - ] - }, - { - "data": { - "text/plain": "TaskTreeNode(id=1, code_id=1, code=Code(id=1, function='no_operation', designator_id=None, designator=None, process_metadata_id=1), start_time=datetime.datetime(2024, 1, 29, 17, 14, 50, 893086), end_time=None, status=, reason=None, parent_id=None, parent=None, process_metadata_id=1)" - }, - "execution_count": 32, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import sqlalchemy.orm\n", - "import pycram.orm.base\n", - "import pycram.orm.action_designator\n", - "\n", - "# set description of what we are doing\n", - "pycram.orm.base.ProcessMetaData().description = \"Tutorial for getting familiar with the ORM.\"\n", - "\n", - "engine = sqlalchemy.create_engine(\"sqlite+pysqlite:///:memory:\", echo=False)\n", - "session = sqlalchemy.orm.Session(bind=engine)\n", - "pycram.orm.base.Base.metadata.create_all(engine)\n", - "session.commit()\n", - "\n", - "\n", - "tt.insert(session)" - ] - }, - { - "cell_type": "code", - "execution_count": 33, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:37.488726709Z", - "start_time": "2024-01-29T16:15:37.444290355Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "NavigateAction(id=6, process_metadata_id=1, dtype='NavigateAction', robot_state_id=4, robot_state=RobotState(id=4, torso_height=0.3, type=, pose_id=6, process_metadata_id=1), pose_id=7)\n", - "NavigateAction(id=15, process_metadata_id=1, dtype='NavigateAction', robot_state_id=7, robot_state=RobotState(id=7, torso_height=0.3, type=, pose_id=15, process_metadata_id=1), pose_id=16)\n" - ] - } - ], - "source": [ - "from sqlalchemy import select\n", "\n", - "navigations = session.scalars(select(pycram.orm.action_designator.NavigateAction)).all()\n", - "print(*navigations, sep=\"\\n\")" - ] - }, - { - "cell_type": "code", - "execution_count": 34, - "metadata": { - "ExecuteTime": { - "end_time": "2024-01-29T16:15:37.489720308Z", - "start_time": "2024-01-29T16:15:37.488078620Z" - } - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "NavigateAction(id=6, process_metadata_id=1, dtype='NavigateAction', robot_state_id=4, robot_state=RobotState(id=4, torso_height=0.3, type=, pose_id=6, process_metadata_id=1), pose_id=7)\n", - "NavigateAction(id=15, process_metadata_id=1, dtype='NavigateAction', robot_state_id=7, robot_state=RobotState(id=7, torso_height=0.3, type=, pose_id=15, process_metadata_id=1), pose_id=16)\n" - ] - } + "world.exit()" ], - "source": [ - "navigations = (session.scalars(select(pycram.orm.action_designator.NavigateAction, pycram.orm.base.Position, pycram.orm.base.Quaternion).\n", - " join(pycram.orm.action_designator.NavigateAction.pose).\n", - " join(pycram.orm.base.Pose.position).\n", - " join(pycram.orm.base.Pose.orientation)).all())\n", - "print(*navigations, sep=\"\\n\")" - ] + "outputs": [], + "execution_count": null }, { "cell_type": "markdown", - "source": [ - "The world can also be closed with the 'exit' method" - ], + "source": [], "metadata": { "collapsed": false } - }, - { - "cell_type": "code", - "execution_count": 35, - "outputs": [], - "source": [ - "world.exit()" - ], - "metadata": { - "collapsed": false, - "ExecuteTime": { - "end_time": "2024-01-29T16:15:37.732405944Z", - "start_time": "2024-01-29T16:15:37.488193658Z" - } - } } ], "metadata": { From 176640bef48cea4d47e859635ff7d237588da1de Mon Sep 17 00:00:00 2001 From: duc than Date: Fri, 5 Apr 2024 13:20:23 +0200 Subject: [PATCH 06/26] abbrev -> full-named vars Make owlready2 optional dependency Add test for OntologyManager --- doc/source/installation.rst | 18 +- examples/ontology.ipynb | 11462 +++++++++++++++++- requirements-ontology.txt | 2 + requirements.txt | 1 - src/pycram/designator.py | 35 +- src/pycram/designators/action_designator.py | 142 +- src/pycram/designators/object_designator.py | 13 +- src/pycram/helper.py | 3 + src/pycram/ontology.py | 581 +- test/bullet_world_testcase.py | 4 +- test/test_action_designator.py | 28 +- 11 files changed, 11723 insertions(+), 566 deletions(-) create mode 100644 requirements-ontology.txt diff --git a/doc/source/installation.rst b/doc/source/installation.rst index 189fb527a..2b1ebecc4 100644 --- a/doc/source/installation.rst +++ b/doc/source/installation.rst @@ -281,14 +281,28 @@ To verify that it works, you can execute any Testcase. **Useful tips** +- `Keyboard shortcuts `_ + - `Keymap `_ + +- `Python interpreter `_ + - `Python virtual environment `_ +- `Python packages `_ +- `Python console `_ + - **View | Active Editor | Soft-wrap**: wrap text inside the editor view -- **View | Tool Windows | Structure**: display notebook structure window for easy content navigation +- **View | Tool Windows | Structure**: display structure window for easy content navigation -- **Alt+12**: Open terminal +- **F12**: Open terminal - **Double Shift**: Quick file search +- **Ctrl F/R**: Find/Replace text in current file + +- **Ctrl Shift F/R**: Find/Replace text in the whole project, module, directory, scope + +- **Settings | Editor | Inspections | Code is compatible with specific Python versions**: Enable/Disable Python version-specific warnings + Using IPython as REPL ===================== diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index f1cb68f7c..d0794f481 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -20,10 +20,28 @@ "from pycram.designator import DesignatorDescription, ObjectDesignatorDescription" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:14.164862Z", + "start_time": "2024-04-05T20:40:13.620456Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "pybullet build time: Nov 28 2023 23:51:11\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='base_laser_link']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", + "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n", + "[WARN] [1712349614.148390]: Failed to import Giskard messages\n", + "[WARN] [1712349614.158395]: Could not import RoboKudo messages, RoboKudo interface could not be initialized\n" + ] + } + ], + "execution_count": 1 }, { "cell_type": "markdown", @@ -39,13 +57,25 @@ { "cell_type": "code", "source": [ - "from owlready2 import *" + "import logging\n", + "try:\n", + " import owlready2\n", + " from owlready2 import *\n", + "except ImportError:\n", + " owlready2 = None\n", + " logging.warn(\"Could not import owlready2, OWL Ontology Manager could not be initialized\")\n", + "\n", + "logging.getLogger().setLevel(logging.DEBUG)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:14.172519Z", + "start_time": "2024-04-05T20:40:14.165528Z" + } }, "outputs": [], - "execution_count": null + "execution_count": 2 }, { "cell_type": "markdown", @@ -67,24 +97,41 @@ { "cell_type": "code", "source": [ - "from pycram.ontology import OntologyManager, SOMA_HOME_ONTOLOGY\n", + "from pycram.ontology import OntologyManager, SOMA_HOME_ONTOLOGY_IRI\n", "\n", - "OntologyManager(SOMA_HOME_ONTOLOGY)\n", - "onto = OntologyManager.onto\n", - "soma = OntologyManager.soma\n", - "dul = OntologyManager.dul" + "ontology_manager = OntologyManager(SOMA_HOME_ONTOLOGY_IRI)\n", + "main_ontology = ontology_manager.main_ontology\n", + "soma = ontology_manager.soma\n", + "dul = ontology_manager.dul" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:14.825662Z", + "start_time": "2024-04-05T20:40:14.173116Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[INFO] [1712349614.821621]: Main Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712349614.822448]: Main Ontology namespace: SOMA-HOME\n", + "[INFO] [1712349614.822881]: Loaded ontologies:\n", + "[INFO] [1712349614.823264]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712349614.823646]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712349614.824033]: http://www.ease-crc.org/ont/SOMA.owl#\n" + ] + } + ], + "execution_count": 3 }, { "cell_type": "markdown", "source": [ "## Ontology Concept class\n", - "A built-in class named __`OntologyConcept`__, inheriting from __`owlready2.Thing`__, is created when `OntologyManager` is initialized, as the super class for all dynamically made ontology classes later on. It is then accessed by __`OntologyManager.onto.OntologyConcept`__\n", + "A built-in class named __`OntologyConcept`__, inheriting from __`owlready2.Thing`__, is created when `OntologyManager` is initialized, as the super class for all dynamically made ontology classes later on. It is then accessed by __`ontology_manager.main_ontology.OntologyConcept`__\n", "\n", "Notable members:\n", "- `designators`: a list of `DesignatorDescription` instances associated with the ontology concept\n", @@ -100,8 +147,7 @@ "## Query ontology classes and their properties\n", "\n", "Classes in the loaded ontology can be queried based on their exact names, or part of them, or by namespace.\n", - "\n", - "By specifying `print_info` parameter as `True`, essential info (ancestors, super/sub-classes, properties, direct instances, etc.) of the found ontology class will be printed." + "Here, we can see essential info (ancestors, super/sub-classes, properties, direct instances, etc.) of the found ontology class." ], "metadata": { "collapsed": false @@ -110,16 +156,10865 @@ { "cell_type": "code", "source": [ - "onto_designed_container_class = OntologyManager.get_ontology_class('DesignedContainer', print_info=True)\n", - "OntologyManager.print_ontology_class(onto_designed_container_class)\n", - "OntologyManager.get_ontology_classes_by_subname('PhysicalObject', print_info=True)\n", - "OntologyManager.get_ontology_classes_by_namespace('SOMA')" + "ontology_designed_container_class = ontology_manager.get_ontology_class('DesignedContainer')\n", + "ontology_manager.print_ontology_class(ontology_designed_container_class)\n", + "ontology_manager.get_ontology_classes_by_subname('PhysicalObject')\n", + "ontology_manager.get_ontology_classes_by_namespace('SOMA')" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.059825Z", + "start_time": "2024-04-05T20:40:14.826399Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[INFO] [1712349614.944856]: -------------------\n", + "[INFO] [1712349614.945597]: SOMA.DesignedContainer \n", + "[INFO] [1712349614.946100]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712349614.946635]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349614.947097]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", + "[INFO] [1712349614.947604]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.005336]: Instances: []\n", + "[INFO] [1712349615.005853]: Direct Instances: []\n", + "[INFO] [1712349615.006306]: Inverse Restrictions: []\n", + "[INFO] [1712349615.007651]: -------------------\n", + "[INFO] [1712349615.008082]: DUL.PhysicalObject \n", + "[INFO] [1712349615.008497]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349615.008895]: Ancestors: {DUL.Object, DUL.PhysicalObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.009323]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712349615.009799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.010595]: Instances: []\n", + "[INFO] [1712349615.011006]: Direct Instances: []\n", + "[INFO] [1712349615.016625]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", + "[INFO] [1712349615.017087]: -------------------\n", + "[INFO] [1712349615.017401]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712349615.017682]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349615.018025]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.018395]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712349615.018718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.019246]: Instances: []\n", + "[INFO] [1712349615.019542]: Direct Instances: []\n", + "[INFO] [1712349615.019847]: Inverse Restrictions: []\n", + "[INFO] [1712349615.020114]: -------------------\n", + "[INFO] [1712349615.020373]: DUL.PhysicalObject \n", + "[INFO] [1712349615.020624]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349615.020890]: Ancestors: {DUL.Object, DUL.PhysicalObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.021186]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712349615.021503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.022306]: Instances: []\n", + "[INFO] [1712349615.022688]: Direct Instances: []\n", + "[INFO] [1712349615.025215]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", + "[INFO] [1712349615.025532]: -------------------\n", + "[INFO] [1712349615.025799]: DUL.PhysicalObject \n", + "[INFO] [1712349615.026055]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349615.026309]: Ancestors: {DUL.Object, DUL.PhysicalObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.026562]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712349615.026868]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.027615]: Instances: []\n", + "[INFO] [1712349615.027898]: Direct Instances: []\n", + "[INFO] [1712349615.030410]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", + "[INFO] [1712349615.030711]: -------------------\n", + "[INFO] [1712349615.030987]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712349615.031250]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349615.031514]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.031786]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712349615.032088]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.032626]: Instances: []\n", + "[INFO] [1712349615.032954]: Direct Instances: []\n", + "[INFO] [1712349615.033251]: Inverse Restrictions: []\n", + "[INFO] [1712349615.034296]: -------------------\n", + "[INFO] [1712349615.034612]: SOMA.Affordance \n", + "[INFO] [1712349615.034930]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712349615.035235]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Affordance, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.035501]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712349615.035823]: Properties: [rdf-schema.comment, SOMA.definesTrigger, SOMA.definesBearer, DUL.definesTask, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.036341]: Instances: []\n", + "[INFO] [1712349615.036618]: Direct Instances: []\n", + "[INFO] [1712349615.037740]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712349615.038025]: -------------------\n", + "[INFO] [1712349615.038287]: SOMA.Disposition \n", + "[INFO] [1712349615.039962]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712349615.040304]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.040596]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712349615.040908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712349615.041473]: Instances: []\n", + "[INFO] [1712349615.041756]: Direct Instances: []\n", + "[INFO] [1712349615.042075]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712349615.042328]: -------------------\n", + "[INFO] [1712349615.042575]: SOMA.Setpoint \n", + "[INFO] [1712349615.042838]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712349615.043121]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, SOMA.Setpoint, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.043373]: Subclasses: []\n", + "[INFO] [1712349615.043662]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.044177]: Instances: []\n", + "[INFO] [1712349615.044462]: Direct Instances: []\n", + "[INFO] [1712349615.044797]: Inverse Restrictions: []\n", + "[INFO] [1712349615.045077]: -------------------\n", + "[INFO] [1712349615.045328]: SOMA.Answer \n", + "[INFO] [1712349615.045577]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712349615.045899]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, DUL.Entity, owl.Thing, SOMA.Answer, SOMA.Message, SOMA.Item}\n", + "[INFO] [1712349615.046156]: Subclasses: []\n", + "[INFO] [1712349615.046454]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.046957]: Instances: []\n", + "[INFO] [1712349615.047233]: Direct Instances: []\n", + "[INFO] [1712349615.047892]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712349615.048152]: -------------------\n", + "[INFO] [1712349615.048395]: SOMA.Message \n", + "[INFO] [1712349615.048677]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712349615.049049]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Message, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349615.049482]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712349615.049936]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", + "[INFO] [1712349615.050566]: Instances: []\n", + "[INFO] [1712349615.050958]: Direct Instances: []\n", + "[INFO] [1712349615.052869]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349615.053251]: -------------------\n", + "[INFO] [1712349615.053541]: SOMA.ProcessType \n", + "[INFO] [1712349615.053845]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712349615.054248]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.054659]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712349615.055012]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.055607]: Instances: []\n", + "[INFO] [1712349615.055882]: Direct Instances: []\n", + "[INFO] [1712349615.056223]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712349615.056488]: -------------------\n", + "[INFO] [1712349615.056740]: SOMA.OrderedElement \n", + "[INFO] [1712349615.057030]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712349615.058356]: Ancestors: {owl.Thing, SOMA.OrderedElement, SOMA.Singleton}\n", + "[INFO] [1712349615.058675]: Subclasses: []\n", + "[INFO] [1712349615.058996]: Properties: [rdf-schema.isDefinedBy, SOMA.isOrderedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.059499]: Instances: []\n", + "[INFO] [1712349615.059767]: Direct Instances: []\n", + "[INFO] [1712349615.060157]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712349615.060431]: -------------------\n", + "[INFO] [1712349615.060687]: SOMA.System \n", + "[INFO] [1712349615.060951]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712349615.061229]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.System}\n", + "[INFO] [1712349615.061492]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712349615.061808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.062339]: Instances: []\n", + "[INFO] [1712349615.062606]: Direct Instances: []\n", + "[INFO] [1712349615.062866]: Inverse Restrictions: []\n", + "[INFO] [1712349615.063114]: -------------------\n", + "[INFO] [1712349615.063369]: SOMA.Binding \n", + "[INFO] [1712349615.064077]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712349615.064385]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.064670]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712349615.064998]: Properties: [rdf-schema.comment, Inverse(SOMA.hasBinding), SOMA.hasBindingFiller, SOMA.hasBindingRole, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.065516]: Instances: []\n", + "[INFO] [1712349615.065785]: Direct Instances: []\n", + "[INFO] [1712349615.066070]: Inverse Restrictions: []\n", + "[INFO] [1712349615.066321]: -------------------\n", + "[INFO] [1712349615.066574]: SOMA.Joint \n", + "[INFO] [1712349615.066853]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712349615.067739]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349615.068031]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712349615.068354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasChildLink, SOMA.hasParentLink]\n", + "[INFO] [1712349615.068903]: Instances: []\n", + "[INFO] [1712349615.069215]: Direct Instances: []\n", + "[INFO] [1712349615.069507]: Inverse Restrictions: []\n", + "[INFO] [1712349615.069765]: -------------------\n", + "[INFO] [1712349615.070017]: SOMA.Color \n", + "[INFO] [1712349615.070302]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712349615.070592]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Color, owl.Thing, SOMA.Extrinsic}\n", + "[INFO] [1712349615.070869]: Subclasses: []\n", + "[INFO] [1712349615.071188]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.071689]: Instances: []\n", + "[INFO] [1712349615.071954]: Direct Instances: []\n", + "[INFO] [1712349615.072260]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712349615.072530]: -------------------\n", + "[INFO] [1712349615.072792]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712349615.073045]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349615.074056]: Ancestors: {SOMA.ExecutionStateRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.074361]: Subclasses: []\n", + "[INFO] [1712349615.074694]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.075226]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712349615.075533]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712349615.075821]: Inverse Restrictions: []\n", + "[INFO] [1712349615.076079]: -------------------\n", + "[INFO] [1712349615.076329]: SOMA.Feature \n", + "[INFO] [1712349615.076596]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712349615.076875]: Ancestors: {DUL.Object, owl.Thing, DUL.Entity, SOMA.Feature}\n", + "[INFO] [1712349615.077152]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712349615.077475]: Properties: [SOMA.isFeatureOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.077981]: Instances: []\n", + "[INFO] [1712349615.078259]: Direct Instances: []\n", + "[INFO] [1712349615.078561]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712349615.078815]: -------------------\n", + "[INFO] [1712349615.079061]: SOMA.FrictionAttribute \n", + "[INFO] [1712349615.079332]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712349615.079612]: Ancestors: {SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.079898]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712349615.080209]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasFrictionValue, rdf-schema.label]\n", + "[INFO] [1712349615.080715]: Instances: []\n", + "[INFO] [1712349615.080979]: Direct Instances: []\n", + "[INFO] [1712349615.081255]: Inverse Restrictions: []\n", + "[INFO] [1712349615.081505]: -------------------\n", + "[INFO] [1712349615.081748]: SOMA.SituationTransition \n", + "[INFO] [1712349615.081990]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712349615.082270]: Ancestors: {DUL.Situation, SOMA.SituationTransition, DUL.Entity, owl.Thing, DUL.Transition}\n", + "[INFO] [1712349615.082535]: Subclasses: []\n", + "[INFO] [1712349615.082837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.083341]: Instances: []\n", + "[INFO] [1712349615.083622]: Direct Instances: []\n", + "[INFO] [1712349615.085383]: Inverse Restrictions: []\n", + "[INFO] [1712349615.085654]: -------------------\n", + "[INFO] [1712349615.085903]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712349615.086146]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712349615.087446]: Ancestors: {SOMA.NonmanifestedSituation, owl.Thing, DUL.Situation, DUL.Entity}\n", + "[INFO] [1712349615.087724]: Subclasses: []\n", + "[INFO] [1712349615.088030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.088531]: Instances: []\n", + "[INFO] [1712349615.088813]: Direct Instances: []\n", + "[INFO] [1712349615.090200]: Inverse Restrictions: []\n", + "[INFO] [1712349615.090470]: -------------------\n", + "[INFO] [1712349615.090714]: SOMA.JointLimit \n", + "[INFO] [1712349615.090956]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712349615.091230]: Ancestors: {SOMA.JointLimit, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.091496]: Subclasses: []\n", + "[INFO] [1712349615.091791]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.092286]: Instances: []\n", + "[INFO] [1712349615.092544]: Direct Instances: []\n", + "[INFO] [1712349615.092962]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712349615.093367]: -------------------\n", + "[INFO] [1712349615.093744]: SOMA.JointState \n", + "[INFO] [1712349615.094157]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712349615.094552]: Ancestors: {SOMA.JointState, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.094842]: Subclasses: []\n", + "[INFO] [1712349615.095163]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasJointPosition, rdf-schema.isDefinedBy, SOMA.hasJointVelocity]\n", + "[INFO] [1712349615.095669]: Instances: []\n", + "[INFO] [1712349615.095931]: Direct Instances: []\n", + "[INFO] [1712349615.096266]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712349615.096529]: -------------------\n", + "[INFO] [1712349615.096784]: SOMA.Localization \n", + "[INFO] [1712349615.097132]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712349615.097446]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Localization, SOMA.Extrinsic}\n", + "[INFO] [1712349615.097737]: Subclasses: []\n", + "[INFO] [1712349615.098053]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.098558]: Instances: []\n", + "[INFO] [1712349615.098835]: Direct Instances: []\n", + "[INFO] [1712349615.101039]: Inverse Restrictions: []\n", + "[INFO] [1712349615.101312]: -------------------\n", + "[INFO] [1712349615.101563]: SOMA.MassAttribute \n", + "[INFO] [1712349615.101842]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712349615.102123]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.MassAttribute, owl.Thing}\n", + "[INFO] [1712349615.102377]: Subclasses: []\n", + "[INFO] [1712349615.102669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label]\n", + "[INFO] [1712349615.103173]: Instances: []\n", + "[INFO] [1712349615.103442]: Direct Instances: []\n", + "[INFO] [1712349615.103706]: Inverse Restrictions: []\n", + "[INFO] [1712349615.103954]: -------------------\n", + "[INFO] [1712349615.104198]: SOMA.NetForce \n", + "[INFO] [1712349615.104481]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712349615.104802]: Ancestors: {SOMA.ForceAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.NetForce, owl.Thing}\n", + "[INFO] [1712349615.105178]: Subclasses: []\n", + "[INFO] [1712349615.105609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.106155]: Instances: []\n", + "[INFO] [1712349615.106443]: Direct Instances: []\n", + "[INFO] [1712349615.106731]: Inverse Restrictions: []\n", + "[INFO] [1712349615.106994]: -------------------\n", + "[INFO] [1712349615.107248]: SOMA.Succedence \n", + "[INFO] [1712349615.107536]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712349615.107815]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Succedence, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.108082]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712349615.108392]: Properties: [rdf-schema.comment, Inverse(SOMA.hasSuccedence), SOMA.hasSuccessor, SOMA.hasPredecessor, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.108899]: Instances: []\n", + "[INFO] [1712349615.109163]: Direct Instances: []\n", + "[INFO] [1712349615.109415]: Inverse Restrictions: []\n", + "[INFO] [1712349615.109654]: -------------------\n", + "[INFO] [1712349615.109913]: SOMA.Preference \n", + "[INFO] [1712349615.110179]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712349615.110459]: Ancestors: {DUL.Quality, DUL.Entity, SOMA.Preference, SOMA.SocialQuality, owl.Thing}\n", + "[INFO] [1712349615.110705]: Subclasses: []\n", + "[INFO] [1712349615.111011]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.111518]: Instances: []\n", + "[INFO] [1712349615.111785]: Direct Instances: []\n", + "[INFO] [1712349615.112961]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712349615.113314]: -------------------\n", + "[INFO] [1712349615.113593]: SOMA.Shape \n", + "[INFO] [1712349615.113888]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712349615.114195]: Ancestors: {SOMA.PhysicalQuality, SOMA.Shape, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712349615.114467]: Subclasses: []\n", + "[INFO] [1712349615.114773]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.115267]: Instances: []\n", + "[INFO] [1712349615.115526]: Direct Instances: []\n", + "[INFO] [1712349615.117748]: Inverse Restrictions: []\n", + "[INFO] [1712349615.118047]: -------------------\n", + "[INFO] [1712349615.118314]: SOMA.ShapeRegion \n", + "[INFO] [1712349615.118592]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712349615.118869]: Ancestors: {DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349615.119139]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712349615.119447]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.119958]: Instances: []\n", + "[INFO] [1712349615.120226]: Direct Instances: []\n", + "[INFO] [1712349615.120950]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712349615.121240]: -------------------\n", + "[INFO] [1712349615.121503]: SOMA.SoftwareInstance \n", + "[INFO] [1712349615.122154]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712349615.122436]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", + "[INFO] [1712349615.122709]: Subclasses: []\n", + "[INFO] [1712349615.123018]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isDesignedBy, DUL.actsFor, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.123516]: Instances: []\n", + "[INFO] [1712349615.123783]: Direct Instances: []\n", + "[INFO] [1712349615.124475]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712349615.124751]: -------------------\n", + "[INFO] [1712349615.125020]: SOMA.StateType \n", + "[INFO] [1712349615.125304]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712349615.125583]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.125857]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712349615.126164]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.126684]: Instances: []\n", + "[INFO] [1712349615.126954]: Direct Instances: []\n", + "[INFO] [1712349615.127290]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712349615.127556]: -------------------\n", + "[INFO] [1712349615.127808]: SOMA.PhysicalEffector \n", + "[INFO] [1712349615.128073]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712349615.128352]: Ancestors: {SOMA.FunctionalPart, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector}\n", + "[INFO] [1712349615.128610]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712349615.128953]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, Inverse(DUL.hasPart), rdf-schema.label]\n", + "[INFO] [1712349615.129570]: Instances: []\n", + "[INFO] [1712349615.129872]: Direct Instances: []\n", + "[INFO] [1712349615.130150]: Inverse Restrictions: []\n", + "[INFO] [1712349615.130414]: -------------------\n", + "[INFO] [1712349615.130676]: SOMA.QueryingTask \n", + "[INFO] [1712349615.131323]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712349615.131614]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712349615.131872]: Subclasses: []\n", + "[INFO] [1712349615.132171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712349615.132679]: Instances: []\n", + "[INFO] [1712349615.132975]: Direct Instances: []\n", + "[INFO] [1712349615.134395]: Inverse Restrictions: []\n", + "[INFO] [1712349615.134675]: -------------------\n", + "[INFO] [1712349615.134933]: SOMA.Order \n", + "[INFO] [1712349615.135183]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712349615.135458]: Ancestors: {SOMA.Order, DUL.FormalEntity, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.135706]: Subclasses: []\n", + "[INFO] [1712349615.135996]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.orders]\n", + "[INFO] [1712349615.136589]: Instances: []\n", + "[INFO] [1712349615.136882]: Direct Instances: []\n", + "[INFO] [1712349615.137278]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712349615.137553]: -------------------\n", + "[INFO] [1712349615.137808]: SOMA.State \n", + "[INFO] [1712349615.138051]: Super classes: [DUL.Event]\n", + "[INFO] [1712349615.138323]: Ancestors: {owl.Thing, DUL.Entity, SOMA.State, DUL.Event}\n", + "[INFO] [1712349615.138592]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712349615.138889]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.139386]: Instances: []\n", + "[INFO] [1712349615.139655]: Direct Instances: []\n", + "[INFO] [1712349615.140167]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712349615.140423]: -------------------\n", + "[INFO] [1712349615.140662]: SOMA.Transient \n", + "[INFO] [1712349615.140933]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712349615.141210]: Ancestors: {SOMA.Transient, owl.Thing, DUL.Object, DUL.Entity}\n", + "[INFO] [1712349615.141468]: Subclasses: []\n", + "[INFO] [1712349615.141756]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.transitionsFrom]\n", + "[INFO] [1712349615.142246]: Instances: []\n", + "[INFO] [1712349615.142518]: Direct Instances: []\n", + "[INFO] [1712349615.142781]: Inverse Restrictions: []\n", + "[INFO] [1712349615.143022]: -------------------\n", + "[INFO] [1712349615.143265]: SOMA.ColorRegion \n", + "[INFO] [1712349615.143504]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712349615.143768]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, owl.Thing}\n", + "[INFO] [1712349615.144037]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712349615.144335]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.144851]: Instances: []\n", + "[INFO] [1712349615.145188]: Direct Instances: []\n", + "[INFO] [1712349615.145541]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712349615.146089]: -------------------\n", + "[INFO] [1712349615.146422]: SOMA.ForceAttribute \n", + "[INFO] [1712349615.146785]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712349615.147066]: Ancestors: {SOMA.ForceAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.147336]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712349615.147726]: Properties: [SOMA.hasForceValue, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.148461]: Instances: []\n", + "[INFO] [1712349615.148840]: Direct Instances: []\n", + "[INFO] [1712349615.149131]: Inverse Restrictions: []\n", + "[INFO] [1712349615.149420]: -------------------\n", + "[INFO] [1712349615.149687]: SOMA.API_Specification \n", + "[INFO] [1712349615.149947]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712349615.150250]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712349615.150511]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712349615.150808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.151310]: Instances: []\n", + "[INFO] [1712349615.151579]: Direct Instances: []\n", + "[INFO] [1712349615.151834]: Inverse Restrictions: []\n", + "[INFO] [1712349615.152072]: -------------------\n", + "[INFO] [1712349615.152311]: SOMA.InterfaceSpecification \n", + "[INFO] [1712349615.152561]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712349615.152821]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712349615.153080]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712349615.153372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.153885]: Instances: []\n", + "[INFO] [1712349615.154152]: Direct Instances: []\n", + "[INFO] [1712349615.155199]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712349615.155457]: -------------------\n", + "[INFO] [1712349615.155711]: SOMA.AbductiveReasoning \n", + "[INFO] [1712349615.155965]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712349615.157206]: Ancestors: {SOMA.InformationAcquisition, SOMA.AbductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", + "[INFO] [1712349615.157509]: Subclasses: []\n", + "[INFO] [1712349615.157827]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.158328]: Instances: []\n", + "[INFO] [1712349615.158588]: Direct Instances: []\n", + "[INFO] [1712349615.158841]: Inverse Restrictions: []\n", + "[INFO] [1712349615.159082]: -------------------\n", + "[INFO] [1712349615.159329]: SOMA.Reasoning \n", + "[INFO] [1712349615.159578]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349615.159826]: Ancestors: {owl.Thing, SOMA.Reasoning, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712349615.160080]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712349615.160367]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.160884]: Instances: []\n", + "[INFO] [1712349615.161158]: Direct Instances: []\n", + "[INFO] [1712349615.161421]: Inverse Restrictions: []\n", + "[INFO] [1712349615.161661]: -------------------\n", + "[INFO] [1712349615.161905]: SOMA.Accessor \n", + "[INFO] [1712349615.162162]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712349615.162452]: Ancestors: {DUL.SocialObject, SOMA.Accessor, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.162703]: Subclasses: []\n", + "[INFO] [1712349615.162991]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.163497]: Instances: []\n", + "[INFO] [1712349615.163764]: Direct Instances: []\n", + "[INFO] [1712349615.164020]: Inverse Restrictions: []\n", + "[INFO] [1712349615.164264]: -------------------\n", + "[INFO] [1712349615.164501]: SOMA.Instrument \n", + "[INFO] [1712349615.164741]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712349615.165007]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.165273]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712349615.165568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.166081]: Instances: []\n", + "[INFO] [1712349615.166369]: Direct Instances: []\n", + "[INFO] [1712349615.166772]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349615.167028]: -------------------\n", + "[INFO] [1712349615.167275]: SOMA.Accident \n", + "[INFO] [1712349615.167517]: Super classes: [DUL.Event]\n", + "[INFO] [1712349615.167796]: Ancestors: {SOMA.Accident, owl.Thing, DUL.Entity, DUL.Event}\n", + "[INFO] [1712349615.168051]: Subclasses: []\n", + "[INFO] [1712349615.168352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.168844]: Instances: []\n", + "[INFO] [1712349615.169152]: Direct Instances: []\n", + "[INFO] [1712349615.169426]: Inverse Restrictions: []\n", + "[INFO] [1712349615.169678]: -------------------\n", + "[INFO] [1712349615.169920]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712349615.170347]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712349615.170654]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Plan, owl.Thing, SOMA.ActionExecutionPlan}\n", + "[INFO] [1712349615.170917]: Subclasses: []\n", + "[INFO] [1712349615.171215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.171701]: Instances: []\n", + "[INFO] [1712349615.171974]: Direct Instances: []\n", + "[INFO] [1712349615.172234]: Inverse Restrictions: []\n", + "[INFO] [1712349615.172478]: -------------------\n", + "[INFO] [1712349615.172721]: SOMA.Actuating \n", + "[INFO] [1712349615.172971]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349615.173256]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349615.173546]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712349615.173853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.174384]: Instances: []\n", + "[INFO] [1712349615.174663]: Direct Instances: []\n", + "[INFO] [1712349615.174933]: Inverse Restrictions: []\n", + "[INFO] [1712349615.175182]: -------------------\n", + "[INFO] [1712349615.175424]: SOMA.PhysicalTask \n", + "[INFO] [1712349615.176790]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712349615.177101]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.177405]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712349615.177720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.178326]: Instances: []\n", + "[INFO] [1712349615.178612]: Direct Instances: []\n", + "[INFO] [1712349615.178944]: Inverse Restrictions: []\n", + "[INFO] [1712349615.179200]: -------------------\n", + "[INFO] [1712349615.179450]: SOMA.AestheticDesign \n", + "[INFO] [1712349615.179698]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712349615.179985]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.AestheticDesign, owl.Thing}\n", + "[INFO] [1712349615.180248]: Subclasses: []\n", + "[INFO] [1712349615.180545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.181037]: Instances: []\n", + "[INFO] [1712349615.181296]: Direct Instances: []\n", + "[INFO] [1712349615.181557]: Inverse Restrictions: []\n", + "[INFO] [1712349615.181806]: -------------------\n", + "[INFO] [1712349615.182059]: SOMA.AffordsBeingSitOn \n", + "[INFO] [1712349615.182931]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", + "[INFO] [1712349615.183229]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.AffordsBeingSitOn, SOMA.Affordance, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.183482]: Subclasses: []\n", + "[INFO] [1712349615.183775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", + "[INFO] [1712349615.184279]: Instances: []\n", + "[INFO] [1712349615.184541]: Direct Instances: []\n", + "[INFO] [1712349615.184829]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", + "[INFO] [1712349615.185098]: -------------------\n", + "[INFO] [1712349615.185355]: SOMA.CanBeSatOn \n", + "[INFO] [1712349615.185604]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", + "[INFO] [1712349615.185881]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, SOMA.CanBeSatOn, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.186156]: Subclasses: []\n", + "[INFO] [1712349615.186456]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712349615.186958]: Instances: []\n", + "[INFO] [1712349615.187222]: Direct Instances: []\n", + "[INFO] [1712349615.187751]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712349615.188026]: -------------------\n", + "[INFO] [1712349615.188281]: SOMA.SittingDestination \n", + "[INFO] [1712349615.188542]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", + "[INFO] [1712349615.188841]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.SittingDestination, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Role}\n", + "[INFO] [1712349615.189101]: Subclasses: []\n", + "[INFO] [1712349615.189412]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.189906]: Instances: []\n", + "[INFO] [1712349615.190172]: Direct Instances: []\n", + "[INFO] [1712349615.190447]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712349615.190707]: -------------------\n", + "[INFO] [1712349615.190954]: SOMA.CanSit \n", + "[INFO] [1712349615.191194]: Super classes: [SOMA.Capability]\n", + "[INFO] [1712349615.191466]: Ancestors: {SOMA.PhysicalQuality, SOMA.CanSit, DUL.Quality, SOMA.Capability, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.191730]: Subclasses: []\n", + "[INFO] [1712349615.192026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.192514]: Instances: []\n", + "[INFO] [1712349615.192778]: Direct Instances: []\n", + "[INFO] [1712349615.193071]: Inverse Restrictions: []\n", + "[INFO] [1712349615.193312]: -------------------\n", + "[INFO] [1712349615.193580]: SOMA.AgentRole \n", + "[INFO] [1712349615.193846]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712349615.194128]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.AgentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.194376]: Subclasses: []\n", + "[INFO] [1712349615.194670]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.195174]: Instances: []\n", + "[INFO] [1712349615.195447]: Direct Instances: []\n", + "[INFO] [1712349615.195731]: Inverse Restrictions: []\n", + "[INFO] [1712349615.195975]: -------------------\n", + "[INFO] [1712349615.196216]: SOMA.Sitting \n", + "[INFO] [1712349615.196452]: Super classes: [SOMA.AssumingPose]\n", + "[INFO] [1712349615.196738]: Ancestors: {SOMA.PhysicalTask, SOMA.AssumingPose, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Sitting}\n", + "[INFO] [1712349615.197006]: Subclasses: []\n", + "[INFO] [1712349615.197299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.197787]: Instances: []\n", + "[INFO] [1712349615.198066]: Direct Instances: []\n", + "[INFO] [1712349615.198350]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712349615.198597]: -------------------\n", + "[INFO] [1712349615.198839]: SOMA.CausativeRole \n", + "[INFO] [1712349615.199080]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349615.199369]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.199637]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712349615.199932]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.200430]: Instances: []\n", + "[INFO] [1712349615.200709]: Direct Instances: []\n", + "[INFO] [1712349615.200983]: Inverse Restrictions: []\n", + "[INFO] [1712349615.201229]: -------------------\n", + "[INFO] [1712349615.201472]: SOMA.Agonist \n", + "[INFO] [1712349615.201711]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.201978]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Agonist, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.202245]: Subclasses: []\n", + "[INFO] [1712349615.202546]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.203032]: Instances: []\n", + "[INFO] [1712349615.203295]: Direct Instances: []\n", + "[INFO] [1712349615.203595]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712349615.203856]: -------------------\n", + "[INFO] [1712349615.204103]: SOMA.Patient \n", + "[INFO] [1712349615.204341]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349615.204589]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.204871]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712349615.205182]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.205748]: Instances: []\n", + "[INFO] [1712349615.206029]: Direct Instances: []\n", + "[INFO] [1712349615.206472]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349615.206732]: -------------------\n", + "[INFO] [1712349615.206990]: SOMA.Algorithm \n", + "[INFO] [1712349615.207229]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712349615.207503]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Algorithm, DUL.Plan, owl.Thing}\n", + "[INFO] [1712349615.207766]: Subclasses: []\n", + "[INFO] [1712349615.208060]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.208540]: Instances: []\n", + "[INFO] [1712349615.208802]: Direct Instances: []\n", + "[INFO] [1712349615.209838]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712349615.210111]: -------------------\n", + "[INFO] [1712349615.210366]: SOMA.Alteration \n", + "[INFO] [1712349615.210614]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712349615.210884]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.211158]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712349615.211458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.211963]: Instances: []\n", + "[INFO] [1712349615.212228]: Direct Instances: []\n", + "[INFO] [1712349615.212482]: Inverse Restrictions: []\n", + "[INFO] [1712349615.212723]: -------------------\n", + "[INFO] [1712349615.212977]: SOMA.AlterativeInteraction \n", + "[INFO] [1712349615.213227]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712349615.214098]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.AlterativeInteraction, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.214372]: Subclasses: []\n", + "[INFO] [1712349615.214685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.215189]: Instances: []\n", + "[INFO] [1712349615.215451]: Direct Instances: []\n", + "[INFO] [1712349615.215734]: Inverse Restrictions: []\n", + "[INFO] [1712349615.216000]: -------------------\n", + "[INFO] [1712349615.216262]: SOMA.ForceInteraction \n", + "[INFO] [1712349615.216539]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712349615.216805]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.217062]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712349615.217371]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712349615.217886]: Instances: []\n", + "[INFO] [1712349615.218153]: Direct Instances: []\n", + "[INFO] [1712349615.218410]: Inverse Restrictions: []\n", + "[INFO] [1712349615.218654]: -------------------\n", + "[INFO] [1712349615.218893]: SOMA.PreservativeInteraction \n", + "[INFO] [1712349615.219135]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712349615.219419]: Ancestors: {SOMA.PreservativeInteraction, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.219675]: Subclasses: []\n", + "[INFO] [1712349615.219969]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.220456]: Instances: []\n", + "[INFO] [1712349615.220730]: Direct Instances: []\n", + "[INFO] [1712349615.221034]: Inverse Restrictions: []\n", + "[INFO] [1712349615.221292]: -------------------\n", + "[INFO] [1712349615.221534]: SOMA.AlteredObject \n", + "[INFO] [1712349615.221771]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.222040]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", + "[INFO] [1712349615.222314]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712349615.222609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.223108]: Instances: []\n", + "[INFO] [1712349615.223531]: Direct Instances: []\n", + "[INFO] [1712349615.224339]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712349615.224610]: -------------------\n", + "[INFO] [1712349615.224872]: SOMA.Amateurish \n", + "[INFO] [1712349615.225116]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712349615.225422]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349615.225699]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712349615.226026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.226525]: Instances: []\n", + "[INFO] [1712349615.226790]: Direct Instances: []\n", + "[INFO] [1712349615.227054]: Inverse Restrictions: []\n", + "[INFO] [1712349615.227301]: -------------------\n", + "[INFO] [1712349615.227540]: SOMA.AnsweringTask \n", + "[INFO] [1712349615.227776]: Super classes: [owl.Thing]\n", + "[INFO] [1712349615.230240]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", + "[INFO] [1712349615.230548]: Subclasses: []\n", + "[INFO] [1712349615.230869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712349615.231368]: Instances: []\n", + "[INFO] [1712349615.231632]: Direct Instances: []\n", + "[INFO] [1712349615.232987]: Inverse Restrictions: []\n", + "[INFO] [1712349615.233281]: -------------------\n", + "[INFO] [1712349615.233539]: SOMA.CommandingTask \n", + "[INFO] [1712349615.234179]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712349615.234460]: Ancestors: {SOMA.CommandingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712349615.234726]: Subclasses: []\n", + "[INFO] [1712349615.235027]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.235520]: Instances: []\n", + "[INFO] [1712349615.235779]: Direct Instances: []\n", + "[INFO] [1712349615.236127]: Inverse Restrictions: []\n", + "[INFO] [1712349615.236392]: -------------------\n", + "[INFO] [1712349615.236638]: SOMA.IllocutionaryTask \n", + "[INFO] [1712349615.238028]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712349615.238322]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712349615.238593]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712349615.238896]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.239402]: Instances: []\n", + "[INFO] [1712349615.239799]: Direct Instances: []\n", + "[INFO] [1712349615.240139]: Inverse Restrictions: []\n", + "[INFO] [1712349615.240412]: -------------------\n", + "[INFO] [1712349615.240680]: SOMA.Antagonist \n", + "[INFO] [1712349615.240941]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.241213]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Antagonist, DUL.Role}\n", + "[INFO] [1712349615.241480]: Subclasses: []\n", + "[INFO] [1712349615.241773]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.242265]: Instances: []\n", + "[INFO] [1712349615.242530]: Direct Instances: []\n", + "[INFO] [1712349615.242833]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712349615.243098]: -------------------\n", + "[INFO] [1712349615.243355]: SOMA.Appliance \n", + "[INFO] [1712349615.243598]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712349615.243863]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.244115]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712349615.244416]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.244917]: Instances: []\n", + "[INFO] [1712349615.245183]: Direct Instances: []\n", + "[INFO] [1712349615.245439]: Inverse Restrictions: []\n", + "[INFO] [1712349615.245680]: -------------------\n", + "[INFO] [1712349615.245930]: SOMA.Approaching \n", + "[INFO] [1712349615.246175]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349615.246472]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Approaching, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349615.246736]: Subclasses: []\n", + "[INFO] [1712349615.247036]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.247523]: Instances: []\n", + "[INFO] [1712349615.247778]: Direct Instances: []\n", + "[INFO] [1712349615.248024]: Inverse Restrictions: []\n", + "[INFO] [1712349615.248266]: -------------------\n", + "[INFO] [1712349615.248507]: SOMA.Locomotion \n", + "[INFO] [1712349615.248753]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712349615.249008]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349615.249269]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712349615.249588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.250107]: Instances: []\n", + "[INFO] [1712349615.250376]: Direct Instances: []\n", + "[INFO] [1712349615.250634]: Inverse Restrictions: []\n", + "[INFO] [1712349615.250876]: -------------------\n", + "[INFO] [1712349615.251117]: SOMA.ArchiveFile \n", + "[INFO] [1712349615.251378]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712349615.252614]: Ancestors: {DUL.InformationEntity, SOMA.ArchiveFile, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", + "[INFO] [1712349615.252901]: Subclasses: []\n", + "[INFO] [1712349615.253244]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.253757]: Instances: []\n", + "[INFO] [1712349615.254087]: Direct Instances: []\n", + "[INFO] [1712349615.254362]: Inverse Restrictions: []\n", + "[INFO] [1712349615.254618]: -------------------\n", + "[INFO] [1712349615.254864]: SOMA.ArchiveText \n", + "[INFO] [1712349615.255106]: Super classes: [owl.Thing]\n", + "[INFO] [1712349615.256894]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", + "[INFO] [1712349615.257224]: Subclasses: []\n", + "[INFO] [1712349615.257553]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, DUL.expresses]\n", + "[INFO] [1712349615.258065]: Instances: []\n", + "[INFO] [1712349615.258334]: Direct Instances: []\n", + "[INFO] [1712349615.258695]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712349615.258962]: -------------------\n", + "[INFO] [1712349615.259210]: SOMA.Digital_File \n", + "[INFO] [1712349615.259490]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712349615.259747]: Ancestors: {DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", + "[INFO] [1712349615.260003]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712349615.260300]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasNameString, DUL.realizes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.260816]: Instances: []\n", + "[INFO] [1712349615.261100]: Direct Instances: []\n", + "[INFO] [1712349615.263670]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712349615.263947]: -------------------\n", + "[INFO] [1712349615.264203]: SOMA.ArchiveFormat \n", + "[INFO] [1712349615.264453]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712349615.264760]: Ancestors: {SOMA.System, DUL.SocialObject, SOMA.ArchiveFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349615.265041]: Subclasses: []\n", + "[INFO] [1712349615.265350]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.265846]: Instances: []\n", + "[INFO] [1712349615.266104]: Direct Instances: []\n", + "[INFO] [1712349615.266392]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712349615.266651]: -------------------\n", + "[INFO] [1712349615.266900]: SOMA.File_format \n", + "[INFO] [1712349615.267142]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349615.267391]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712349615.267643]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712349615.267951]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.268451]: Instances: []\n", + "[INFO] [1712349615.268713]: Direct Instances: []\n", + "[INFO] [1712349615.269108]: Inverse Restrictions: []\n", + "[INFO] [1712349615.269435]: -------------------\n", + "[INFO] [1712349615.269718]: SOMA.FileConfiguration \n", + "[INFO] [1712349615.269983]: Super classes: [owl.Thing]\n", + "[INFO] [1712349615.270487]: Ancestors: {owl.Thing, SOMA.FileConfiguration}\n", + "[INFO] [1712349615.270771]: Subclasses: []\n", + "[INFO] [1712349615.271089]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.271585]: Instances: []\n", + "[INFO] [1712349615.271867]: Direct Instances: []\n", + "[INFO] [1712349615.272191]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712349615.272443]: -------------------\n", + "[INFO] [1712349615.272687]: SOMA.Structured_Text \n", + "[INFO] [1712349615.272948]: Super classes: [owl.Thing]\n", + "[INFO] [1712349615.274149]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", + "[INFO] [1712349615.274423]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712349615.274725]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.275239]: Instances: []\n", + "[INFO] [1712349615.275507]: Direct Instances: []\n", + "[INFO] [1712349615.278172]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712349615.278462]: -------------------\n", + "[INFO] [1712349615.278724]: SOMA.AreaSurveying \n", + "[INFO] [1712349615.278977]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712349615.279254]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", + "[INFO] [1712349615.279511]: Subclasses: []\n", + "[INFO] [1712349615.279812]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.280321]: Instances: []\n", + "[INFO] [1712349615.280591]: Direct Instances: []\n", + "[INFO] [1712349615.280852]: Inverse Restrictions: []\n", + "[INFO] [1712349615.281099]: -------------------\n", + "[INFO] [1712349615.281340]: SOMA.Perceiving \n", + "[INFO] [1712349615.281596]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712349615.281854]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712349615.282116]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712349615.282407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.282930]: Instances: []\n", + "[INFO] [1712349615.283221]: Direct Instances: []\n", + "[INFO] [1712349615.283500]: Inverse Restrictions: []\n", + "[INFO] [1712349615.283756]: -------------------\n", + "[INFO] [1712349615.284003]: SOMA.Arm \n", + "[INFO] [1712349615.284246]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712349615.285133]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.Arm, SOMA.PhysicalEffector, SOMA.Limb}\n", + "[INFO] [1712349615.285416]: Subclasses: []\n", + "[INFO] [1712349615.285722]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.286232]: Instances: []\n", + "[INFO] [1712349615.286501]: Direct Instances: []\n", + "[INFO] [1712349615.286791]: Inverse Restrictions: []\n", + "[INFO] [1712349615.287057]: -------------------\n", + "[INFO] [1712349615.287308]: SOMA.Limb \n", + "[INFO] [1712349615.287547]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712349615.287794]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", + "[INFO] [1712349615.288045]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712349615.288348]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.288869]: Instances: []\n", + "[INFO] [1712349615.289136]: Direct Instances: []\n", + "[INFO] [1712349615.289821]: Inverse Restrictions: []\n", + "[INFO] [1712349615.290093]: -------------------\n", + "[INFO] [1712349615.290354]: SOMA.Armchair \n", + "[INFO] [1712349615.290601]: Super classes: [SOMA.DesignedChair]\n", + "[INFO] [1712349615.290887]: Ancestors: {DUL.Object, SOMA.Armchair, DUL.Entity, owl.Thing, SOMA.DesignedChair, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.291158]: Subclasses: []\n", + "[INFO] [1712349615.291458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.291950]: Instances: []\n", + "[INFO] [1712349615.292212]: Direct Instances: []\n", + "[INFO] [1712349615.292463]: Inverse Restrictions: []\n", + "[INFO] [1712349615.292715]: -------------------\n", + "[INFO] [1712349615.292961]: SOMA.DesignedChair \n", + "[INFO] [1712349615.293204]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712349615.293450]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.DesignedChair, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.293694]: Subclasses: [SOMA.Armchair]\n", + "[INFO] [1712349615.293992]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", + "[INFO] [1712349615.294484]: Instances: []\n", + "[INFO] [1712349615.294737]: Direct Instances: []\n", + "[INFO] [1712349615.294987]: Inverse Restrictions: []\n", + "[INFO] [1712349615.295236]: -------------------\n", + "[INFO] [1712349615.295480]: SOMA.Arranging \n", + "[INFO] [1712349615.295716]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712349615.295991]: Ancestors: {SOMA.Arranging, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.296269]: Subclasses: []\n", + "[INFO] [1712349615.296580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.297119]: Instances: []\n", + "[INFO] [1712349615.297452]: Direct Instances: []\n", + "[INFO] [1712349615.297738]: Inverse Restrictions: []\n", + "[INFO] [1712349615.298002]: -------------------\n", + "[INFO] [1712349615.298295]: SOMA.Constructing \n", + "[INFO] [1712349615.298589]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349615.298853]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.299112]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712349615.299447]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.299960]: Instances: []\n", + "[INFO] [1712349615.300229]: Direct Instances: []\n", + "[INFO] [1712349615.300488]: Inverse Restrictions: []\n", + "[INFO] [1712349615.300738]: -------------------\n", + "[INFO] [1712349615.300997]: SOMA.ArtificialAgent \n", + "[INFO] [1712349615.301247]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712349615.301528]: Ancestors: {DUL.Agent, DUL.Object, DUL.Entity, DUL.PhysicalObject, SOMA.ArtificialAgent, DUL.PhysicalAgent, owl.Thing}\n", + "[INFO] [1712349615.301778]: Subclasses: []\n", + "[INFO] [1712349615.302073]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.302610]: Instances: []\n", + "[INFO] [1712349615.302904]: Direct Instances: []\n", + "[INFO] [1712349615.303169]: Inverse Restrictions: []\n", + "[INFO] [1712349615.303419]: -------------------\n", + "[INFO] [1712349615.303666]: SOMA.Assembling \n", + "[INFO] [1712349615.303917]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712349615.304192]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Assembling, owl.Thing}\n", + "[INFO] [1712349615.304439]: Subclasses: []\n", + "[INFO] [1712349615.304725]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.305239]: Instances: []\n", + "[INFO] [1712349615.305527]: Direct Instances: []\n", + "[INFO] [1712349615.305789]: Inverse Restrictions: []\n", + "[INFO] [1712349615.306037]: -------------------\n", + "[INFO] [1712349615.306273]: SOMA.AssertionTask \n", + "[INFO] [1712349615.306908]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712349615.307208]: Ancestors: {SOMA.AssertionTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712349615.307476]: Subclasses: []\n", + "[INFO] [1712349615.307775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.308267]: Instances: []\n", + "[INFO] [1712349615.308527]: Direct Instances: []\n", + "[INFO] [1712349615.308796]: Inverse Restrictions: []\n", + "[INFO] [1712349615.309050]: -------------------\n", + "[INFO] [1712349615.309295]: SOMA.DeclarativeClause \n", + "[INFO] [1712349615.309533]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712349615.309826]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DeclarativeClause, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", + "[INFO] [1712349615.310092]: Subclasses: []\n", + "[INFO] [1712349615.310394]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.310885]: Instances: []\n", + "[INFO] [1712349615.311141]: Direct Instances: []\n", + "[INFO] [1712349615.311433]: Inverse Restrictions: []\n", + "[INFO] [1712349615.311695]: -------------------\n", + "[INFO] [1712349615.311944]: SOMA.AssumingArmPose \n", + "[INFO] [1712349615.312181]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712349615.312446]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.AssumingArmPose}\n", + "[INFO] [1712349615.312696]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712349615.313000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.313520]: Instances: []\n", + "[INFO] [1712349615.313787]: Direct Instances: []\n", + "[INFO] [1712349615.314047]: Inverse Restrictions: []\n", + "[INFO] [1712349615.314285]: -------------------\n", + "[INFO] [1712349615.314523]: SOMA.AssumingPose \n", + "[INFO] [1712349615.314778]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349615.315035]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.315288]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712349615.315575]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.316110]: Instances: []\n", + "[INFO] [1712349615.316401]: Direct Instances: []\n", + "[INFO] [1712349615.316673]: Inverse Restrictions: []\n", + "[INFO] [1712349615.316924]: -------------------\n", + "[INFO] [1712349615.317170]: SOMA.AttentionShift \n", + "[INFO] [1712349615.317426]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712349615.317710]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.AttentionShift, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349615.317972]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712349615.318263]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.318759]: Instances: []\n", + "[INFO] [1712349615.319038]: Direct Instances: []\n", + "[INFO] [1712349615.319312]: Inverse Restrictions: []\n", + "[INFO] [1712349615.319562]: -------------------\n", + "[INFO] [1712349615.319805]: SOMA.MentalTask \n", + "[INFO] [1712349615.320067]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712349615.320341]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349615.320608]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712349615.320910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.321423]: Instances: []\n", + "[INFO] [1712349615.321703]: Direct Instances: []\n", + "[INFO] [1712349615.322002]: Inverse Restrictions: []\n", + "[INFO] [1712349615.322252]: -------------------\n", + "[INFO] [1712349615.322487]: SOMA.AvoidedObject \n", + "[INFO] [1712349615.322717]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.322982]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.AvoidedObject, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.323248]: Subclasses: []\n", + "[INFO] [1712349615.323549]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.324034]: Instances: []\n", + "[INFO] [1712349615.324303]: Direct Instances: []\n", + "[INFO] [1712349615.324551]: Inverse Restrictions: []\n", + "[INFO] [1712349615.324808]: -------------------\n", + "[INFO] [1712349615.325056]: SOMA.Avoiding \n", + "[INFO] [1712349615.325299]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712349615.325580]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Avoiding, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.325846]: Subclasses: []\n", + "[INFO] [1712349615.326137]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.326626]: Instances: []\n", + "[INFO] [1712349615.326882]: Direct Instances: []\n", + "[INFO] [1712349615.327130]: Inverse Restrictions: []\n", + "[INFO] [1712349615.327367]: -------------------\n", + "[INFO] [1712349615.327610]: SOMA.Navigating \n", + "[INFO] [1712349615.327847]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349615.328096]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.328347]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712349615.328649]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.329156]: Instances: []\n", + "[INFO] [1712349615.329418]: Direct Instances: []\n", + "[INFO] [1712349615.329673]: Inverse Restrictions: []\n", + "[INFO] [1712349615.329927]: -------------------\n", + "[INFO] [1712349615.330168]: SOMA.BakedGood \n", + "[INFO] [1712349615.330407]: Super classes: [SOMA.Dish]\n", + "[INFO] [1712349615.330683]: Ancestors: {SOMA.Dish, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.BakedGood}\n", + "[INFO] [1712349615.330956]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", + "[INFO] [1712349615.331248]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.331739]: Instances: []\n", + "[INFO] [1712349615.331997]: Direct Instances: []\n", + "[INFO] [1712349615.332248]: Inverse Restrictions: []\n", + "[INFO] [1712349615.332505]: -------------------\n", + "[INFO] [1712349615.332774]: SOMA.Dish \n", + "[INFO] [1712349615.333025]: Super classes: [DUL.DesignedArtifact]\n", + "[INFO] [1712349615.333269]: Ancestors: {SOMA.Dish, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.333527]: Subclasses: [SOMA.BakedGood]\n", + "[INFO] [1712349615.333823]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.334326]: Instances: []\n", + "[INFO] [1712349615.334587]: Direct Instances: []\n", + "[INFO] [1712349615.334854]: Inverse Restrictions: []\n", + "[INFO] [1712349615.335098]: -------------------\n", + "[INFO] [1712349615.335341]: SOMA.Barrier \n", + "[INFO] [1712349615.335579]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712349615.335855]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.336132]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712349615.336444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.336953]: Instances: []\n", + "[INFO] [1712349615.337217]: Direct Instances: []\n", + "[INFO] [1712349615.337521]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712349615.337784]: -------------------\n", + "[INFO] [1712349615.338034]: SOMA.Restrictor \n", + "[INFO] [1712349615.338277]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712349615.338528]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.338783]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712349615.339069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.339589]: Instances: []\n", + "[INFO] [1712349615.339854]: Direct Instances: []\n", + "[INFO] [1712349615.340222]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712349615.340479]: -------------------\n", + "[INFO] [1712349615.340733]: SOMA.BedsideTable \n", + "[INFO] [1712349615.340982]: Super classes: [SOMA.Table]\n", + "[INFO] [1712349615.341260]: Ancestors: {DUL.PhysicalArtifact, SOMA.BedsideTable, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, SOMA.Table, DUL.PhysicalObject}\n", + "[INFO] [1712349615.341517]: Subclasses: []\n", + "[INFO] [1712349615.341810]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.342301]: Instances: []\n", + "[INFO] [1712349615.342562]: Direct Instances: []\n", + "[INFO] [1712349615.342816]: Inverse Restrictions: []\n", + "[INFO] [1712349615.343064]: -------------------\n", + "[INFO] [1712349615.343303]: SOMA.Table \n", + "[INFO] [1712349615.343538]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712349615.343781]: Ancestors: {SOMA.Table, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.344028]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", + "[INFO] [1712349615.344328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.344829]: Instances: []\n", + "[INFO] [1712349615.345087]: Direct Instances: []\n", + "[INFO] [1712349615.345339]: Inverse Restrictions: []\n", + "[INFO] [1712349615.345577]: -------------------\n", + "[INFO] [1712349615.345824]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712349615.346081]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712349615.346327]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349615.346574]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712349615.346879]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", + "[INFO] [1712349615.347629]: Instances: []\n", + "[INFO] [1712349615.347951]: Direct Instances: []\n", + "[INFO] [1712349615.348224]: Inverse Restrictions: []\n", + "[INFO] [1712349615.348478]: -------------------\n", + "[INFO] [1712349615.348723]: SOMA.BeneficiaryRole \n", + "[INFO] [1712349615.349035]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712349615.349363]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.BeneficiaryRole, DUL.Role}\n", + "[INFO] [1712349615.349650]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712349615.349968]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.350543]: Instances: []\n", + "[INFO] [1712349615.350855]: Direct Instances: []\n", + "[INFO] [1712349615.351132]: Inverse Restrictions: []\n", + "[INFO] [1712349615.351389]: -------------------\n", + "[INFO] [1712349615.351639]: SOMA.GoalRole \n", + "[INFO] [1712349615.351883]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349615.352137]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.352413]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712349615.352723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.353232]: Instances: []\n", + "[INFO] [1712349615.353498]: Direct Instances: []\n", + "[INFO] [1712349615.353760]: Inverse Restrictions: []\n", + "[INFO] [1712349615.354018]: -------------------\n", + "[INFO] [1712349615.354269]: SOMA.CounterfactualBinding \n", + "[INFO] [1712349615.354513]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712349615.354777]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.CounterfactualBinding, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.355045]: Subclasses: []\n", + "[INFO] [1712349615.355359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.355848]: Instances: []\n", + "[INFO] [1712349615.356126]: Direct Instances: []\n", + "[INFO] [1712349615.356483]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712349615.356742]: -------------------\n", + "[INFO] [1712349615.357001]: SOMA.FactualBinding \n", + "[INFO] [1712349615.357255]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712349615.357522]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.FactualBinding, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.357792]: Subclasses: []\n", + "[INFO] [1712349615.358098]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.358596]: Instances: []\n", + "[INFO] [1712349615.358870]: Direct Instances: []\n", + "[INFO] [1712349615.359214]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712349615.359471]: -------------------\n", + "[INFO] [1712349615.359718]: SOMA.RoleFillerBinding \n", + "[INFO] [1712349615.359973]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712349615.360249]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.RoleFillerBinding, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.360512]: Subclasses: []\n", + "[INFO] [1712349615.360841]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.361338]: Instances: []\n", + "[INFO] [1712349615.361613]: Direct Instances: []\n", + "[INFO] [1712349615.361905]: Inverse Restrictions: []\n", + "[INFO] [1712349615.362159]: -------------------\n", + "[INFO] [1712349615.362412]: SOMA.RoleRoleBinding \n", + "[INFO] [1712349615.363060]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712349615.363348]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, SOMA.RoleRoleBinding, DUL.Entity, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.363622]: Subclasses: []\n", + "[INFO] [1712349615.363925]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.364419]: Instances: []\n", + "[INFO] [1712349615.364683]: Direct Instances: []\n", + "[INFO] [1712349615.364988]: Inverse Restrictions: []\n", + "[INFO] [1712349615.365258]: -------------------\n", + "[INFO] [1712349615.365507]: SOMA.Blade \n", + "[INFO] [1712349615.365757]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349615.366037]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Blade}\n", + "[INFO] [1712349615.366301]: Subclasses: []\n", + "[INFO] [1712349615.366594]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.367120]: Instances: []\n", + "[INFO] [1712349615.367393]: Direct Instances: []\n", + "[INFO] [1712349615.367676]: Inverse Restrictions: [SOMA.Knife]\n", + "[INFO] [1712349615.367939]: -------------------\n", + "[INFO] [1712349615.368184]: SOMA.DesignedComponent \n", + "[INFO] [1712349615.368447]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712349615.368705]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.368978]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712349615.369311]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.369846]: Instances: []\n", + "[INFO] [1712349615.370116]: Direct Instances: []\n", + "[INFO] [1712349615.370371]: Inverse Restrictions: []\n", + "[INFO] [1712349615.370619]: -------------------\n", + "[INFO] [1712349615.370861]: SOMA.Blockage \n", + "[INFO] [1712349615.371122]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712349615.371391]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.371657]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712349615.371952]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.372441]: Instances: []\n", + "[INFO] [1712349615.372696]: Direct Instances: []\n", + "[INFO] [1712349615.372950]: Inverse Restrictions: []\n", + "[INFO] [1712349615.373200]: -------------------\n", + "[INFO] [1712349615.373441]: SOMA.BlockedObject \n", + "[INFO] [1712349615.373681]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.373951]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.374220]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712349615.374518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.375040]: Instances: []\n", + "[INFO] [1712349615.375319]: Direct Instances: []\n", + "[INFO] [1712349615.375616]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712349615.375864]: -------------------\n", + "[INFO] [1712349615.376106]: SOMA.BodyMovement \n", + "[INFO] [1712349615.377171]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712349615.377613]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.377939]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712349615.378275]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.378827]: Instances: []\n", + "[INFO] [1712349615.379101]: Direct Instances: []\n", + "[INFO] [1712349615.379377]: Inverse Restrictions: []\n", + "[INFO] [1712349615.379630]: -------------------\n", + "[INFO] [1712349615.379875]: SOMA.Motion \n", + "[INFO] [1712349615.380112]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712349615.380358]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.380612]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712349615.380918]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.381469]: Instances: []\n", + "[INFO] [1712349615.381747]: Direct Instances: []\n", + "[INFO] [1712349615.382015]: Inverse Restrictions: []\n", + "[INFO] [1712349615.382260]: -------------------\n", + "[INFO] [1712349615.382499]: SOMA.Boiling \n", + "[INFO] [1712349615.382752]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712349615.383039]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, SOMA.Vaporizing, DUL.Object, DUL.Entity, SOMA.Alteration, owl.Thing, SOMA.ProcessType, SOMA.Boiling}\n", + "[INFO] [1712349615.383304]: Subclasses: []\n", + "[INFO] [1712349615.383608]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.384111]: Instances: []\n", + "[INFO] [1712349615.384390]: Direct Instances: []\n", + "[INFO] [1712349615.384670]: Inverse Restrictions: []\n", + "[INFO] [1712349615.384946]: -------------------\n", + "[INFO] [1712349615.385214]: SOMA.Vaporizing \n", + "[INFO] [1712349615.385899]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712349615.386176]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, SOMA.Vaporizing, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.386455]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712349615.386766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, SOMA.isProcessTypeOf]\n", + "[INFO] [1712349615.387265]: Instances: []\n", + "[INFO] [1712349615.387538]: Direct Instances: []\n", + "[INFO] [1712349615.387836]: Inverse Restrictions: []\n", + "[INFO] [1712349615.388082]: -------------------\n", + "[INFO] [1712349615.388325]: SOMA.Bottle \n", + "[INFO] [1712349615.388563]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712349615.388834]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Bottle, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.389107]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", + "[INFO] [1712349615.389396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.389889]: Instances: []\n", + "[INFO] [1712349615.390143]: Direct Instances: []\n", + "[INFO] [1712349615.390389]: Inverse Restrictions: []\n", + "[INFO] [1712349615.390634]: -------------------\n", + "[INFO] [1712349615.390878]: SOMA.DesignedContainer \n", + "[INFO] [1712349615.391118]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712349615.391361]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.391622]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", + "[INFO] [1712349615.391925]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.392478]: Instances: []\n", + "[INFO] [1712349615.392737]: Direct Instances: []\n", + "[INFO] [1712349615.393004]: Inverse Restrictions: []\n", + "[INFO] [1712349615.393248]: -------------------\n", + "[INFO] [1712349615.393486]: SOMA.Bowl \n", + "[INFO] [1712349615.393719]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712349615.394005]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Bowl}\n", + "[INFO] [1712349615.394279]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", + "[INFO] [1712349615.394572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.395067]: Instances: []\n", + "[INFO] [1712349615.395320]: Direct Instances: []\n", + "[INFO] [1712349615.395611]: Inverse Restrictions: [SOMA.Spoon]\n", + "[INFO] [1712349615.395865]: -------------------\n", + "[INFO] [1712349615.396108]: SOMA.Crockery \n", + "[INFO] [1712349615.396974]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712349615.397268]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.397542]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", + "[INFO] [1712349615.397842]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", + "[INFO] [1712349615.398356]: Instances: []\n", + "[INFO] [1712349615.398615]: Direct Instances: []\n", + "[INFO] [1712349615.398882]: Inverse Restrictions: []\n", + "[INFO] [1712349615.399127]: -------------------\n", + "[INFO] [1712349615.399385]: SOMA.Box \n", + "[INFO] [1712349615.399634]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", + "[INFO] [1712349615.399900]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.Box, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.400166]: Subclasses: [SOMA.CerealBox]\n", + "[INFO] [1712349615.400465]: Properties: [rdf-schema.isDefinedBy, SOMA.hasShapeRegion, rdf-schema.comment]\n", + "[INFO] [1712349615.400951]: Instances: []\n", + "[INFO] [1712349615.401207]: Direct Instances: []\n", + "[INFO] [1712349615.401457]: Inverse Restrictions: []\n", + "[INFO] [1712349615.401706]: -------------------\n", + "[INFO] [1712349615.401947]: SOMA.BoxShape \n", + "[INFO] [1712349615.402222]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712349615.402487]: Ancestors: {DUL.Region, DUL.Entity, DUL.Abstract, SOMA.BoxShape, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349615.402727]: Subclasses: []\n", + "[INFO] [1712349615.403026]: Properties: [rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasWidth, SOMA.hasHeight, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.403512]: Instances: []\n", + "[INFO] [1712349615.403768]: Direct Instances: []\n", + "[INFO] [1712349615.404035]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712349615.404278]: -------------------\n", + "[INFO] [1712349615.404529]: SOMA.Bread \n", + "[INFO] [1712349615.404763]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712349615.405031]: Ancestors: {SOMA.Dish, DUL.Object, SOMA.Bread, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.BakedGood}\n", + "[INFO] [1712349615.405316]: Subclasses: []\n", + "[INFO] [1712349615.405609]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.406105]: Instances: []\n", + "[INFO] [1712349615.406400]: Direct Instances: []\n", + "[INFO] [1712349615.406654]: Inverse Restrictions: []\n", + "[INFO] [1712349615.406895]: -------------------\n", + "[INFO] [1712349615.407128]: SOMA.BreadKnife \n", + "[INFO] [1712349615.407371]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712349615.407658]: Ancestors: {SOMA.Knife, SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.BreadKnife, DUL.PhysicalObject, SOMA.KitchenKnife}\n", + "[INFO] [1712349615.407903]: Subclasses: []\n", + "[INFO] [1712349615.408183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.408670]: Instances: []\n", + "[INFO] [1712349615.408937]: Direct Instances: []\n", + "[INFO] [1712349615.409186]: Inverse Restrictions: []\n", + "[INFO] [1712349615.409422]: -------------------\n", + "[INFO] [1712349615.409653]: SOMA.KitchenKnife \n", + "[INFO] [1712349615.409884]: Super classes: [SOMA.Knife]\n", + "[INFO] [1712349615.410140]: Ancestors: {SOMA.Knife, SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.KitchenKnife}\n", + "[INFO] [1712349615.410392]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", + "[INFO] [1712349615.410680]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.411170]: Instances: []\n", + "[INFO] [1712349615.411441]: Direct Instances: []\n", + "[INFO] [1712349615.411694]: Inverse Restrictions: []\n", + "[INFO] [1712349615.411928]: -------------------\n", + "[INFO] [1712349615.412163]: SOMA.BreakfastPlate \n", + "[INFO] [1712349615.412392]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712349615.412662]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, SOMA.BreakfastPlate, owl.Thing, DUL.DesignedArtifact, SOMA.Plate, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.412921]: Subclasses: []\n", + "[INFO] [1712349615.413334]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.413861]: Instances: []\n", + "[INFO] [1712349615.414155]: Direct Instances: []\n", + "[INFO] [1712349615.414422]: Inverse Restrictions: []\n", + "[INFO] [1712349615.414671]: -------------------\n", + "[INFO] [1712349615.414923]: SOMA.Plate \n", + "[INFO] [1712349615.415160]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712349615.415406]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Plate, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.415668]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", + "[INFO] [1712349615.415964]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.416455]: Instances: []\n", + "[INFO] [1712349615.416708]: Direct Instances: []\n", + "[INFO] [1712349615.416966]: Inverse Restrictions: []\n", + "[INFO] [1712349615.417215]: -------------------\n", + "[INFO] [1712349615.417457]: SOMA.Building \n", + "[INFO] [1712349615.417692]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712349615.417950]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Building, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.418193]: Subclasses: []\n", + "[INFO] [1712349615.418487]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.418977]: Instances: []\n", + "[INFO] [1712349615.419228]: Direct Instances: []\n", + "[INFO] [1712349615.419472]: Inverse Restrictions: []\n", + "[INFO] [1712349615.419699]: -------------------\n", + "[INFO] [1712349615.419936]: SOMA.Deposition \n", + "[INFO] [1712349615.420204]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712349615.420460]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.420704]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712349615.420992]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.421497]: Instances: []\n", + "[INFO] [1712349615.421758]: Direct Instances: []\n", + "[INFO] [1712349615.422436]: Inverse Restrictions: []\n", + "[INFO] [1712349615.422684]: -------------------\n", + "[INFO] [1712349615.422925]: SOMA.CanCut \n", + "[INFO] [1712349615.423200]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712349615.423483]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.CanCut, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.423729]: Subclasses: []\n", + "[INFO] [1712349615.424249]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.424785]: Instances: []\n", + "[INFO] [1712349615.425056]: Direct Instances: []\n", + "[INFO] [1712349615.425317]: Inverse Restrictions: []\n", + "[INFO] [1712349615.425567]: -------------------\n", + "[INFO] [1712349615.425816]: SOMA.Variability \n", + "[INFO] [1712349615.426083]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712349615.426345]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.426612]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712349615.426999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.427530]: Instances: []\n", + "[INFO] [1712349615.427818]: Direct Instances: []\n", + "[INFO] [1712349615.428087]: Inverse Restrictions: []\n", + "[INFO] [1712349615.428334]: -------------------\n", + "[INFO] [1712349615.428575]: SOMA.Cutter \n", + "[INFO] [1712349615.428816]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712349615.429099]: Ancestors: {SOMA.Cutter, SOMA.Tool, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.429365]: Subclasses: []\n", + "[INFO] [1712349615.429660]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.430142]: Instances: []\n", + "[INFO] [1712349615.430398]: Direct Instances: []\n", + "[INFO] [1712349615.430729]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712349615.430978]: -------------------\n", + "[INFO] [1712349615.431221]: SOMA.CutObject \n", + "[INFO] [1712349615.431457]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712349615.431735]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.CutObject, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", + "[INFO] [1712349615.431988]: Subclasses: []\n", + "[INFO] [1712349615.432274]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.432760]: Instances: []\n", + "[INFO] [1712349615.433039]: Direct Instances: []\n", + "[INFO] [1712349615.433370]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712349615.433617]: -------------------\n", + "[INFO] [1712349615.433855]: SOMA.Capability \n", + "[INFO] [1712349615.435525]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712349615.435827]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.436097]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712349615.436401]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712349615.436899]: Instances: []\n", + "[INFO] [1712349615.437171]: Direct Instances: []\n", + "[INFO] [1712349615.437433]: Inverse Restrictions: []\n", + "[INFO] [1712349615.437686]: -------------------\n", + "[INFO] [1712349615.437926]: SOMA.Capacity \n", + "[INFO] [1712349615.438157]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349615.438425]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Capacity, SOMA.Intrinsic}\n", + "[INFO] [1712349615.438687]: Subclasses: []\n", + "[INFO] [1712349615.438982]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.439469]: Instances: []\n", + "[INFO] [1712349615.439731]: Direct Instances: []\n", + "[INFO] [1712349615.440409]: Inverse Restrictions: []\n", + "[INFO] [1712349615.440663]: -------------------\n", + "[INFO] [1712349615.440906]: SOMA.Intrinsic \n", + "[INFO] [1712349615.441147]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712349615.441391]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712349615.441659]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712349615.441949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.442449]: Instances: []\n", + "[INFO] [1712349615.442719]: Direct Instances: []\n", + "[INFO] [1712349615.442991]: Inverse Restrictions: []\n", + "[INFO] [1712349615.443228]: -------------------\n", + "[INFO] [1712349615.443462]: SOMA.Carafe \n", + "[INFO] [1712349615.443697]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712349615.443966]: Ancestors: {DUL.Object, SOMA.Carafe, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.444223]: Subclasses: [SOMA.CoffeeCarafe]\n", + "[INFO] [1712349615.444505]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.444989]: Instances: []\n", + "[INFO] [1712349615.445250]: Direct Instances: []\n", + "[INFO] [1712349615.445501]: Inverse Restrictions: []\n", + "[INFO] [1712349615.445742]: -------------------\n", + "[INFO] [1712349615.445978]: SOMA.Catching \n", + "[INFO] [1712349615.446203]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349615.446469]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.Catching, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349615.446724]: Subclasses: []\n", + "[INFO] [1712349615.447020]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.447501]: Instances: []\n", + "[INFO] [1712349615.447761]: Direct Instances: []\n", + "[INFO] [1712349615.448007]: Inverse Restrictions: []\n", + "[INFO] [1712349615.448241]: -------------------\n", + "[INFO] [1712349615.448473]: SOMA.PickingUp \n", + "[INFO] [1712349615.448698]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349615.448982]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.PickingUp}\n", + "[INFO] [1712349615.449224]: Subclasses: []\n", + "[INFO] [1712349615.449510]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.449987]: Instances: []\n", + "[INFO] [1712349615.450255]: Direct Instances: []\n", + "[INFO] [1712349615.450512]: Inverse Restrictions: []\n", + "[INFO] [1712349615.450748]: -------------------\n", + "[INFO] [1712349615.450981]: SOMA.CausalEventRole \n", + "[INFO] [1712349615.451206]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712349615.451463]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.CausalEventRole, DUL.Role}\n", + "[INFO] [1712349615.451719]: Subclasses: []\n", + "[INFO] [1712349615.452007]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.452483]: Instances: []\n", + "[INFO] [1712349615.452730]: Direct Instances: []\n", + "[INFO] [1712349615.453027]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349615.453289]: -------------------\n", + "[INFO] [1712349615.453538]: SOMA.EventAdjacentRole \n", + "[INFO] [1712349615.453782]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712349615.454026]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.454276]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712349615.454568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.455240]: Instances: []\n", + "[INFO] [1712349615.455508]: Direct Instances: []\n", + "[INFO] [1712349615.455767]: Inverse Restrictions: []\n", + "[INFO] [1712349615.456017]: -------------------\n", + "[INFO] [1712349615.456270]: SOMA.CausedMotionTheory \n", + "[INFO] [1712349615.456549]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712349615.456849]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.CausedMotionTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.457118]: Subclasses: []\n", + "[INFO] [1712349615.457423]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasPart, DUL.defines]\n", + "[INFO] [1712349615.457909]: Instances: []\n", + "[INFO] [1712349615.458163]: Direct Instances: []\n", + "[INFO] [1712349615.458407]: Inverse Restrictions: []\n", + "[INFO] [1712349615.458633]: -------------------\n", + "[INFO] [1712349615.458877]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712349615.459113]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712349615.459352]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.459617]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712349615.459907]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.460414]: Instances: []\n", + "[INFO] [1712349615.460671]: Direct Instances: []\n", + "[INFO] [1712349615.461126]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.StateTransition, SOMA.Scene]\n", + "[INFO] [1712349615.461468]: -------------------\n", + "[INFO] [1712349615.461755]: SOMA.PerformerRole \n", + "[INFO] [1712349615.462045]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712349615.462354]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.462637]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712349615.462945]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.463468]: Instances: []\n", + "[INFO] [1712349615.463740]: Direct Instances: []\n", + "[INFO] [1712349615.464075]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349615.464325]: -------------------\n", + "[INFO] [1712349615.464578]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712349615.464865]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712349615.465149]: Ancestors: {DUL.Description, SOMA.SourcePathGoalTheory, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.465400]: Subclasses: []\n", + "[INFO] [1712349615.465696]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349615.466204]: Instances: []\n", + "[INFO] [1712349615.466474]: Direct Instances: []\n", + "[INFO] [1712349615.466768]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349615.467013]: -------------------\n", + "[INFO] [1712349615.467259]: SOMA.Ceiling \n", + "[INFO] [1712349615.467509]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712349615.467800]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, SOMA.Ceiling, DUL.PhysicalObject, SOMA.RoomSurface}\n", + "[INFO] [1712349615.468049]: Subclasses: []\n", + "[INFO] [1712349615.468340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.468848]: Instances: []\n", + "[INFO] [1712349615.469114]: Direct Instances: []\n", + "[INFO] [1712349615.469368]: Inverse Restrictions: []\n", + "[INFO] [1712349615.469605]: -------------------\n", + "[INFO] [1712349615.469841]: SOMA.RoomSurface \n", + "[INFO] [1712349615.470073]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712349615.470335]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, SOMA.RoomSurface}\n", + "[INFO] [1712349615.470590]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712349615.470880]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.471377]: Instances: []\n", + "[INFO] [1712349615.471660]: Direct Instances: []\n", + "[INFO] [1712349615.471925]: Inverse Restrictions: []\n", + "[INFO] [1712349615.472173]: -------------------\n", + "[INFO] [1712349615.472416]: SOMA.Floor \n", + "[INFO] [1712349615.472653]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712349615.472930]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, SOMA.Floor, DUL.PhysicalPlace, DUL.PhysicalObject, SOMA.RoomSurface}\n", + "[INFO] [1712349615.473193]: Subclasses: []\n", + "[INFO] [1712349615.473501]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.473988]: Instances: []\n", + "[INFO] [1712349615.474260]: Direct Instances: []\n", + "[INFO] [1712349615.474521]: Inverse Restrictions: []\n", + "[INFO] [1712349615.474760]: -------------------\n", + "[INFO] [1712349615.475002]: SOMA.Wall \n", + "[INFO] [1712349615.475237]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712349615.475511]: Ancestors: {SOMA.Surface, DUL.Object, SOMA.Wall, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, SOMA.RoomSurface}\n", + "[INFO] [1712349615.475757]: Subclasses: []\n", + "[INFO] [1712349615.476041]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.476522]: Instances: []\n", + "[INFO] [1712349615.476792]: Direct Instances: []\n", + "[INFO] [1712349615.477053]: Inverse Restrictions: []\n", + "[INFO] [1712349615.477293]: -------------------\n", + "[INFO] [1712349615.477528]: SOMA.CeramicCooktop \n", + "[INFO] [1712349615.477757]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712349615.478041]: Ancestors: {SOMA.FunctionalPart, SOMA.ElectricCooktop, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.CeramicCooktop}\n", + "[INFO] [1712349615.478295]: Subclasses: []\n", + "[INFO] [1712349615.478580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.479082]: Instances: []\n", + "[INFO] [1712349615.479344]: Direct Instances: []\n", + "[INFO] [1712349615.479589]: Inverse Restrictions: []\n", + "[INFO] [1712349615.479824]: -------------------\n", + "[INFO] [1712349615.480055]: SOMA.ElectricCooktop \n", + "[INFO] [1712349615.480285]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712349615.480537]: Ancestors: {SOMA.FunctionalPart, SOMA.ElectricCooktop, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.480793]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", + "[INFO] [1712349615.481078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.481587]: Instances: []\n", + "[INFO] [1712349615.481867]: Direct Instances: []\n", + "[INFO] [1712349615.482154]: Inverse Restrictions: []\n", + "[INFO] [1712349615.482404]: -------------------\n", + "[INFO] [1712349615.482662]: SOMA.CerealBox \n", + "[INFO] [1712349615.483030]: Super classes: [SOMA.Box]\n", + "[INFO] [1712349615.483412]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.Box, DUL.PhysicalArtifact, SOMA.CerealBox, DUL.PhysicalObject}\n", + "[INFO] [1712349615.483774]: Subclasses: []\n", + "[INFO] [1712349615.484245]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.484900]: Instances: []\n", + "[INFO] [1712349615.485324]: Direct Instances: []\n", + "[INFO] [1712349615.485714]: Inverse Restrictions: []\n", + "[INFO] [1712349615.485991]: -------------------\n", + "[INFO] [1712349615.486245]: SOMA.Channel \n", + "[INFO] [1712349615.486512]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712349615.486804]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.487072]: Subclasses: []\n", + "[INFO] [1712349615.487375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", + "[INFO] [1712349615.487880]: Instances: []\n", + "[INFO] [1712349615.488142]: Direct Instances: []\n", + "[INFO] [1712349615.488457]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349615.488705]: -------------------\n", + "[INFO] [1712349615.488954]: SOMA.PathRole \n", + "[INFO] [1712349615.489193]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712349615.489450]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.PathRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.489703]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712349615.489991]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.490481]: Instances: []\n", + "[INFO] [1712349615.490758]: Direct Instances: []\n", + "[INFO] [1712349615.491059]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712349615.491305]: -------------------\n", + "[INFO] [1712349615.491544]: SOMA.CommunicationTask \n", + "[INFO] [1712349615.492560]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712349615.492868]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.493144]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712349615.493448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712349615.493948]: Instances: []\n", + "[INFO] [1712349615.494218]: Direct Instances: []\n", + "[INFO] [1712349615.495070]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel]\n", + "[INFO] [1712349615.495326]: -------------------\n", + "[INFO] [1712349615.495574]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712349615.495814]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712349615.496071]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.CheckingObjectPresence}\n", + "[INFO] [1712349615.496327]: Subclasses: []\n", + "[INFO] [1712349615.496618]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.497109]: Instances: []\n", + "[INFO] [1712349615.497377]: Direct Instances: []\n", + "[INFO] [1712349615.497629]: Inverse Restrictions: []\n", + "[INFO] [1712349615.497869]: -------------------\n", + "[INFO] [1712349615.498105]: SOMA.ChemicalProcess \n", + "[INFO] [1712349615.498332]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712349615.498594]: Ancestors: {DUL.Entity, DUL.Event, owl.Thing, SOMA.ChemicalProcess, DUL.Process}\n", + "[INFO] [1712349615.498854]: Subclasses: []\n", + "[INFO] [1712349615.499146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.499628]: Instances: []\n", + "[INFO] [1712349615.499880]: Direct Instances: []\n", + "[INFO] [1712349615.500139]: Inverse Restrictions: []\n", + "[INFO] [1712349615.500389]: -------------------\n", + "[INFO] [1712349615.500627]: SOMA.Choice \n", + "[INFO] [1712349615.500869]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712349615.501139]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Choice, SOMA.ResultRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.501398]: Subclasses: []\n", + "[INFO] [1712349615.501691]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.502173]: Instances: []\n", + "[INFO] [1712349615.502422]: Direct Instances: []\n", + "[INFO] [1712349615.502659]: Inverse Restrictions: []\n", + "[INFO] [1712349615.502902]: -------------------\n", + "[INFO] [1712349615.503138]: SOMA.ResultRole \n", + "[INFO] [1712349615.503368]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712349615.503611]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResultRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.503860]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712349615.504154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.504654]: Instances: []\n", + "[INFO] [1712349615.504911]: Direct Instances: []\n", + "[INFO] [1712349615.505163]: Inverse Restrictions: []\n", + "[INFO] [1712349615.505420]: -------------------\n", + "[INFO] [1712349615.505673]: SOMA.CircularCylinder \n", + "[INFO] [1712349615.505948]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712349615.506236]: Ancestors: {SOMA.CircularCylinder, SOMA.CylinderShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349615.506486]: Subclasses: []\n", + "[INFO] [1712349615.506770]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712349615.507246]: Instances: []\n", + "[INFO] [1712349615.507514]: Direct Instances: []\n", + "[INFO] [1712349615.507764]: Inverse Restrictions: []\n", + "[INFO] [1712349615.508002]: -------------------\n", + "[INFO] [1712349615.508234]: SOMA.CylinderShape \n", + "[INFO] [1712349615.508491]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712349615.508760]: Ancestors: {SOMA.CylinderShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349615.509028]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712349615.509323]: Properties: [rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.509805]: Instances: []\n", + "[INFO] [1712349615.510077]: Direct Instances: []\n", + "[INFO] [1712349615.510340]: Inverse Restrictions: []\n", + "[INFO] [1712349615.510581]: -------------------\n", + "[INFO] [1712349615.510818]: SOMA.Classifier \n", + "[INFO] [1712349615.511053]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712349615.511344]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.Classifier, SOMA.StatisticalReasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349615.511602]: Subclasses: []\n", + "[INFO] [1712349615.511887]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.512369]: Instances: []\n", + "[INFO] [1712349615.512640]: Direct Instances: []\n", + "[INFO] [1712349615.512903]: Inverse Restrictions: []\n", + "[INFO] [1712349615.513157]: -------------------\n", + "[INFO] [1712349615.513405]: SOMA.StatisticalReasoner \n", + "[INFO] [1712349615.513684]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712349615.513944]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.StatisticalReasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349615.514213]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712349615.514513]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.514999]: Instances: []\n", + "[INFO] [1712349615.515255]: Direct Instances: []\n", + "[INFO] [1712349615.515505]: Inverse Restrictions: []\n", + "[INFO] [1712349615.515749]: -------------------\n", + "[INFO] [1712349615.515983]: SOMA.ClausalObject \n", + "[INFO] [1712349615.516217]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712349615.516460]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", + "[INFO] [1712349615.516725]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712349615.517159]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.517732]: Instances: []\n", + "[INFO] [1712349615.518036]: Direct Instances: []\n", + "[INFO] [1712349615.518324]: Inverse Restrictions: []\n", + "[INFO] [1712349615.518581]: -------------------\n", + "[INFO] [1712349615.518824]: SOMA.Phrase \n", + "[INFO] [1712349615.519067]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712349615.519330]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Phrase}\n", + "[INFO] [1712349615.519603]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712349615.519907]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.520410]: Instances: []\n", + "[INFO] [1712349615.520688]: Direct Instances: []\n", + "[INFO] [1712349615.520957]: Inverse Restrictions: []\n", + "[INFO] [1712349615.521208]: -------------------\n", + "[INFO] [1712349615.521453]: SOMA.Clean \n", + "[INFO] [1712349615.521691]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712349615.521971]: Ancestors: {SOMA.Clean, DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.522228]: Subclasses: []\n", + "[INFO] [1712349615.522520]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.523013]: Instances: []\n", + "[INFO] [1712349615.523298]: Direct Instances: []\n", + "[INFO] [1712349615.524003]: Inverse Restrictions: []\n", + "[INFO] [1712349615.524264]: -------------------\n", + "[INFO] [1712349615.524509]: SOMA.CleanlinessRegion \n", + "[INFO] [1712349615.524751]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349615.525013]: Ancestors: {DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.525276]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712349615.525596]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.526105]: Instances: []\n", + "[INFO] [1712349615.526376]: Direct Instances: []\n", + "[INFO] [1712349615.526715]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712349615.526967]: -------------------\n", + "[INFO] [1712349615.527216]: SOMA.Cleaning \n", + "[INFO] [1712349615.527488]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712349615.527766]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Cleaning}\n", + "[INFO] [1712349615.528017]: Subclasses: []\n", + "[INFO] [1712349615.528304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349615.528808]: Instances: []\n", + "[INFO] [1712349615.529080]: Direct Instances: []\n", + "[INFO] [1712349615.529328]: Inverse Restrictions: []\n", + "[INFO] [1712349615.529567]: -------------------\n", + "[INFO] [1712349615.529801]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712349615.530047]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349615.530301]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.530559]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712349615.530846]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.531365]: Instances: []\n", + "[INFO] [1712349615.531629]: Direct Instances: []\n", + "[INFO] [1712349615.531888]: Inverse Restrictions: []\n", + "[INFO] [1712349615.532135]: -------------------\n", + "[INFO] [1712349615.532375]: SOMA.Purification \n", + "[INFO] [1712349615.533432]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712349615.533735]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Purification, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.533991]: Subclasses: []\n", + "[INFO] [1712349615.534288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.534799]: Instances: []\n", + "[INFO] [1712349615.535070]: Direct Instances: []\n", + "[INFO] [1712349615.535362]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712349615.535618]: -------------------\n", + "[INFO] [1712349615.535858]: SOMA.Cleanliness \n", + "[INFO] [1712349615.536118]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712349615.536395]: Ancestors: {DUL.Quality, DUL.Entity, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing}\n", + "[INFO] [1712349615.536652]: Subclasses: []\n", + "[INFO] [1712349615.536950]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.537439]: Instances: []\n", + "[INFO] [1712349615.537712]: Direct Instances: []\n", + "[INFO] [1712349615.538105]: Inverse Restrictions: []\n", + "[INFO] [1712349615.538361]: -------------------\n", + "[INFO] [1712349615.538604]: SOMA.SocialQuality \n", + "[INFO] [1712349615.538842]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712349615.539101]: Ancestors: {DUL.Quality, SOMA.SocialQuality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.539359]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712349615.539655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.540148]: Instances: []\n", + "[INFO] [1712349615.540424]: Direct Instances: []\n", + "[INFO] [1712349615.540688]: Inverse Restrictions: []\n", + "[INFO] [1712349615.540938]: -------------------\n", + "[INFO] [1712349615.541178]: SOMA.Client-Server_Specification \n", + "[INFO] [1712349615.542172]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712349615.542480]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing, SOMA.Client-Server_Specification}\n", + "[INFO] [1712349615.542745]: Subclasses: []\n", + "[INFO] [1712349615.543051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", + "[INFO] [1712349615.543545]: Instances: []\n", + "[INFO] [1712349615.543821]: Direct Instances: []\n", + "[INFO] [1712349615.544161]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712349615.544417]: -------------------\n", + "[INFO] [1712349615.544663]: SOMA.ClientRole \n", + "[INFO] [1712349615.544916]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712349615.546168]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ClientRole, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.546440]: Subclasses: []\n", + "[INFO] [1712349615.546743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", + "[INFO] [1712349615.547250]: Instances: []\n", + "[INFO] [1712349615.547515]: Direct Instances: []\n", + "[INFO] [1712349615.547823]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712349615.548073]: -------------------\n", + "[INFO] [1712349615.548315]: SOMA.ServerRole \n", + "[INFO] [1712349615.548789]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712349615.549196]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.ServerRole, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.549467]: Subclasses: []\n", + "[INFO] [1712349615.549765]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", + "[INFO] [1712349615.550276]: Instances: []\n", + "[INFO] [1712349615.550637]: Direct Instances: []\n", + "[INFO] [1712349615.550985]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712349615.551255]: -------------------\n", + "[INFO] [1712349615.551508]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712349615.551788]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349615.552060]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.552331]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712349615.552638]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.553138]: Instances: []\n", + "[INFO] [1712349615.553436]: Direct Instances: []\n", + "[INFO] [1712349615.553743]: Inverse Restrictions: []\n", + "[INFO] [1712349615.554008]: -------------------\n", + "[INFO] [1712349615.554255]: SOMA.Closing \n", + "[INFO] [1712349615.554711]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349615.554997]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Closing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349615.555264]: Subclasses: []\n", + "[INFO] [1712349615.555576]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.556063]: Instances: []\n", + "[INFO] [1712349615.556319]: Direct Instances: []\n", + "[INFO] [1712349615.556573]: Inverse Restrictions: []\n", + "[INFO] [1712349615.556829]: -------------------\n", + "[INFO] [1712349615.557075]: SOMA.Delivering \n", + "[INFO] [1712349615.557333]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712349615.557613]: Ancestors: {SOMA.Delivering, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349615.557889]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712349615.558205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349615.558716]: Instances: []\n", + "[INFO] [1712349615.558986]: Direct Instances: []\n", + "[INFO] [1712349615.559246]: Inverse Restrictions: []\n", + "[INFO] [1712349615.559499]: -------------------\n", + "[INFO] [1712349615.559739]: SOMA.Fetching \n", + "[INFO] [1712349615.560222]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712349615.560762]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAcquiring, SOMA.Fetching, owl.Thing}\n", + "[INFO] [1712349615.561227]: Subclasses: []\n", + "[INFO] [1712349615.561758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.562478]: Instances: []\n", + "[INFO] [1712349615.562983]: Direct Instances: []\n", + "[INFO] [1712349615.563473]: Inverse Restrictions: []\n", + "[INFO] [1712349615.563879]: -------------------\n", + "[INFO] [1712349615.564297]: SOMA.Lifting \n", + "[INFO] [1712349615.564698]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349615.565141]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Lifting, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349615.565466]: Subclasses: []\n", + "[INFO] [1712349615.565809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.566335]: Instances: []\n", + "[INFO] [1712349615.566611]: Direct Instances: []\n", + "[INFO] [1712349615.566878]: Inverse Restrictions: []\n", + "[INFO] [1712349615.567127]: -------------------\n", + "[INFO] [1712349615.567380]: SOMA.Opening \n", + "[INFO] [1712349615.567626]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349615.567897]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Opening, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349615.568145]: Subclasses: []\n", + "[INFO] [1712349615.568455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.568952]: Instances: []\n", + "[INFO] [1712349615.569213]: Direct Instances: []\n", + "[INFO] [1712349615.569474]: Inverse Restrictions: []\n", + "[INFO] [1712349615.569730]: -------------------\n", + "[INFO] [1712349615.569979]: SOMA.Pulling \n", + "[INFO] [1712349615.570221]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349615.570558]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Pulling, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349615.570853]: Subclasses: []\n", + "[INFO] [1712349615.571177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.571688]: Instances: []\n", + "[INFO] [1712349615.571956]: Direct Instances: []\n", + "[INFO] [1712349615.572218]: Inverse Restrictions: []\n", + "[INFO] [1712349615.572462]: -------------------\n", + "[INFO] [1712349615.572709]: SOMA.Pushing \n", + "[INFO] [1712349615.572969]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349615.573248]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", + "[INFO] [1712349615.573505]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712349615.573800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.574302]: Instances: []\n", + "[INFO] [1712349615.574568]: Direct Instances: []\n", + "[INFO] [1712349615.574830]: Inverse Restrictions: []\n", + "[INFO] [1712349615.575068]: -------------------\n", + "[INFO] [1712349615.575308]: SOMA.Squeezing \n", + "[INFO] [1712349615.575549]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349615.575829]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Squeezing, SOMA.Actuating}\n", + "[INFO] [1712349615.576087]: Subclasses: []\n", + "[INFO] [1712349615.576374]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.576861]: Instances: []\n", + "[INFO] [1712349615.577140]: Direct Instances: []\n", + "[INFO] [1712349615.577405]: Inverse Restrictions: []\n", + "[INFO] [1712349615.577651]: -------------------\n", + "[INFO] [1712349615.577892]: SOMA.ClosingDisposition \n", + "[INFO] [1712349615.578129]: Super classes: [SOMA.Linkage]\n", + "[INFO] [1712349615.578410]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Linkage, SOMA.ClosingDisposition, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic}\n", + "[INFO] [1712349615.578676]: Subclasses: []\n", + "[INFO] [1712349615.578978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.579475]: Instances: []\n", + "[INFO] [1712349615.579735]: Direct Instances: []\n", + "[INFO] [1712349615.579996]: Inverse Restrictions: []\n", + "[INFO] [1712349615.580245]: -------------------\n", + "[INFO] [1712349615.580488]: SOMA.Linkage \n", + "[INFO] [1712349615.580769]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712349615.581049]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Linkage, SOMA.Connectivity, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.581310]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712349615.581608]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.582104]: Instances: []\n", + "[INFO] [1712349615.582388]: Direct Instances: []\n", + "[INFO] [1712349615.582669]: Inverse Restrictions: []\n", + "[INFO] [1712349615.582937]: -------------------\n", + "[INFO] [1712349615.583188]: SOMA.Clumsiness \n", + "[INFO] [1712349615.583428]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712349615.583699]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.Clumsiness, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349615.583961]: Subclasses: []\n", + "[INFO] [1712349615.584254]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.584739]: Instances: []\n", + "[INFO] [1712349615.584998]: Direct Instances: []\n", + "[INFO] [1712349615.585247]: Inverse Restrictions: []\n", + "[INFO] [1712349615.585493]: -------------------\n", + "[INFO] [1712349615.585732]: SOMA.CoffeeCarafe \n", + "[INFO] [1712349615.585973]: Super classes: [SOMA.Carafe]\n", + "[INFO] [1712349615.586252]: Ancestors: {DUL.Object, SOMA.CoffeeCarafe, SOMA.Carafe, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.586515]: Subclasses: []\n", + "[INFO] [1712349615.586808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.587300]: Instances: []\n", + "[INFO] [1712349615.587554]: Direct Instances: []\n", + "[INFO] [1712349615.587802]: Inverse Restrictions: []\n", + "[INFO] [1712349615.588065]: -------------------\n", + "[INFO] [1712349615.588314]: SOMA.CoffeeTable \n", + "[INFO] [1712349615.588557]: Super classes: [SOMA.Table]\n", + "[INFO] [1712349615.588830]: Ancestors: {SOMA.Table, SOMA.CoffeeTable, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.589080]: Subclasses: []\n", + "[INFO] [1712349615.589382]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.589877]: Instances: []\n", + "[INFO] [1712349615.590139]: Direct Instances: []\n", + "[INFO] [1712349615.590389]: Inverse Restrictions: []\n", + "[INFO] [1712349615.590626]: -------------------\n", + "[INFO] [1712349615.590868]: SOMA.CognitiveAgent \n", + "[INFO] [1712349615.591115]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712349615.591381]: Ancestors: {SOMA.CognitiveAgent, DUL.Agent, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.591629]: Subclasses: []\n", + "[INFO] [1712349615.591930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.592436]: Instances: []\n", + "[INFO] [1712349615.592711]: Direct Instances: []\n", + "[INFO] [1712349615.592978]: Inverse Restrictions: []\n", + "[INFO] [1712349615.593221]: -------------------\n", + "[INFO] [1712349615.593462]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712349615.593711]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712349615.593978]: Ancestors: {DUL.Agent, DUL.Object, DUL.Entity, SOMA.SubCognitiveAgent, owl.Thing}\n", + "[INFO] [1712349615.594228]: Subclasses: []\n", + "[INFO] [1712349615.594514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.595014]: Instances: []\n", + "[INFO] [1712349615.595278]: Direct Instances: []\n", + "[INFO] [1712349615.595530]: Inverse Restrictions: []\n", + "[INFO] [1712349615.595776]: -------------------\n", + "[INFO] [1712349615.596010]: SOMA.CoilCooktop \n", + "[INFO] [1712349615.596262]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712349615.596543]: Ancestors: {SOMA.FunctionalPart, SOMA.ElectricCooktop, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.CoilCooktop}\n", + "[INFO] [1712349615.596798]: Subclasses: []\n", + "[INFO] [1712349615.597108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.597609]: Instances: []\n", + "[INFO] [1712349615.597885]: Direct Instances: []\n", + "[INFO] [1712349615.598136]: Inverse Restrictions: []\n", + "[INFO] [1712349615.598374]: -------------------\n", + "[INFO] [1712349615.598609]: SOMA.Collision \n", + "[INFO] [1712349615.598893]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712349615.599175]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Collision, owl.Thing}\n", + "[INFO] [1712349615.599432]: Subclasses: []\n", + "[INFO] [1712349615.599718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.600219]: Instances: []\n", + "[INFO] [1712349615.600482]: Direct Instances: []\n", + "[INFO] [1712349615.600755]: Inverse Restrictions: []\n", + "[INFO] [1712349615.601008]: -------------------\n", + "[INFO] [1712349615.601261]: SOMA.Extrinsic \n", + "[INFO] [1712349615.601509]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712349615.601757]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Extrinsic}\n", + "[INFO] [1712349615.602008]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712349615.602318]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.602884]: Instances: []\n", + "[INFO] [1712349615.603155]: Direct Instances: []\n", + "[INFO] [1712349615.603414]: Inverse Restrictions: []\n", + "[INFO] [1712349615.603656]: -------------------\n", + "[INFO] [1712349615.603906]: SOMA.ImperativeClause \n", + "[INFO] [1712349615.604181]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712349615.604464]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ImperativeClause, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", + "[INFO] [1712349615.604716]: Subclasses: []\n", + "[INFO] [1712349615.605037]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", + "[INFO] [1712349615.605538]: Instances: []\n", + "[INFO] [1712349615.605810]: Direct Instances: []\n", + "[INFO] [1712349615.606108]: Inverse Restrictions: []\n", + "[INFO] [1712349615.606350]: -------------------\n", + "[INFO] [1712349615.606588]: SOMA.CommitedObject \n", + "[INFO] [1712349615.606838]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712349615.607121]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.CommitedObject, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.607373]: Subclasses: []\n", + "[INFO] [1712349615.607668]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.608172]: Instances: []\n", + "[INFO] [1712349615.608442]: Direct Instances: []\n", + "[INFO] [1712349615.608697]: Inverse Restrictions: []\n", + "[INFO] [1712349615.608944]: -------------------\n", + "[INFO] [1712349615.609193]: SOMA.ConnectedObject \n", + "[INFO] [1712349615.609442]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.609696]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.609968]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712349615.610264]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.610760]: Instances: []\n", + "[INFO] [1712349615.611019]: Direct Instances: []\n", + "[INFO] [1712349615.611392]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712349615.611666]: -------------------\n", + "[INFO] [1712349615.611923]: SOMA.CommunicationAction \n", + "[INFO] [1712349615.612187]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712349615.612465]: Ancestors: {SOMA.CommunicationAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712349615.612715]: Subclasses: []\n", + "[INFO] [1712349615.613025]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349615.613554]: Instances: []\n", + "[INFO] [1712349615.613857]: Direct Instances: []\n", + "[INFO] [1712349615.614893]: Inverse Restrictions: []\n", + "[INFO] [1712349615.615193]: -------------------\n", + "[INFO] [1712349615.615451]: SOMA.LinguisticObject \n", + "[INFO] [1712349615.615700]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712349615.615986]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.616256]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712349615.616559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.617102]: Instances: []\n", + "[INFO] [1712349615.617494]: Direct Instances: []\n", + "[INFO] [1712349615.617827]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712349615.618104]: -------------------\n", + "[INFO] [1712349615.618361]: SOMA.CommunicationReport \n", + "[INFO] [1712349615.618613]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349615.618886]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing, SOMA.CommunicationReport}\n", + "[INFO] [1712349615.619161]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712349615.619472]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.619977]: Instances: []\n", + "[INFO] [1712349615.620240]: Direct Instances: []\n", + "[INFO] [1712349615.620492]: Inverse Restrictions: []\n", + "[INFO] [1712349615.620744]: -------------------\n", + "[INFO] [1712349615.620999]: SOMA.Receiver \n", + "[INFO] [1712349615.621242]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712349615.621515]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.Receiver, SOMA.ExperiencerRole, DUL.Role}\n", + "[INFO] [1712349615.621770]: Subclasses: []\n", + "[INFO] [1712349615.622078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", + "[INFO] [1712349615.622571]: Instances: []\n", + "[INFO] [1712349615.622827]: Direct Instances: []\n", + "[INFO] [1712349615.623133]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349615.623389]: -------------------\n", + "[INFO] [1712349615.623633]: SOMA.Sender \n", + "[INFO] [1712349615.623876]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712349615.624140]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, SOMA.Sender, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.624378]: Subclasses: []\n", + "[INFO] [1712349615.624671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", + "[INFO] [1712349615.625261]: Instances: []\n", + "[INFO] [1712349615.625692]: Direct Instances: []\n", + "[INFO] [1712349615.626056]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349615.626323]: -------------------\n", + "[INFO] [1712349615.626649]: SOMA.CommunicationTopic \n", + "[INFO] [1712349615.627689]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712349615.627988]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.628265]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349615.628570]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.629089]: Instances: []\n", + "[INFO] [1712349615.629367]: Direct Instances: []\n", + "[INFO] [1712349615.629632]: Inverse Restrictions: []\n", + "[INFO] [1712349615.629878]: -------------------\n", + "[INFO] [1712349615.630117]: SOMA.ResourceRole \n", + "[INFO] [1712349615.630350]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349615.630594]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.630862]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712349615.631156]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.631693]: Instances: []\n", + "[INFO] [1712349615.631970]: Direct Instances: []\n", + "[INFO] [1712349615.632231]: Inverse Restrictions: []\n", + "[INFO] [1712349615.632476]: -------------------\n", + "[INFO] [1712349615.632743]: SOMA.Compartment \n", + "[INFO] [1712349615.632992]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349615.633279]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.633554]: Subclasses: [SOMA.FreezerCompartment]\n", + "[INFO] [1712349615.633854]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.634349]: Instances: []\n", + "[INFO] [1712349615.634610]: Direct Instances: []\n", + "[INFO] [1712349615.634866]: Inverse Restrictions: []\n", + "[INFO] [1712349615.635130]: -------------------\n", + "[INFO] [1712349615.635387]: SOMA.Composing \n", + "[INFO] [1712349615.635636]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712349615.635906]: Ancestors: {SOMA.Composing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.636173]: Subclasses: []\n", + "[INFO] [1712349615.636477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.636980]: Instances: []\n", + "[INFO] [1712349615.637251]: Direct Instances: []\n", + "[INFO] [1712349615.637554]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712349615.637821]: -------------------\n", + "[INFO] [1712349615.638083]: SOMA.Computer_Language \n", + "[INFO] [1712349615.638391]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712349615.638670]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712349615.638941]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712349615.639240]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.639772]: Instances: []\n", + "[INFO] [1712349615.640044]: Direct Instances: []\n", + "[INFO] [1712349615.640308]: Inverse Restrictions: []\n", + "[INFO] [1712349615.640570]: -------------------\n", + "[INFO] [1712349615.640815]: SOMA.FormalLanguage \n", + "[INFO] [1712349615.641103]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712349615.641543]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712349615.641910]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349615.642316]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.642947]: Instances: []\n", + "[INFO] [1712349615.643312]: Direct Instances: []\n", + "[INFO] [1712349615.643716]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712349615.644058]: -------------------\n", + "[INFO] [1712349615.644389]: SOMA.Computer_Program \n", + "[INFO] [1712349615.644724]: Super classes: [owl.Thing]\n", + "[INFO] [1712349615.647011]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712349615.647354]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712349615.647686]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, DUL.expresses]\n", + "[INFO] [1712349615.648207]: Instances: []\n", + "[INFO] [1712349615.648485]: Direct Instances: []\n", + "[INFO] [1712349615.650310]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712349615.650607]: -------------------\n", + "[INFO] [1712349615.650875]: SOMA.Programming_Language \n", + "[INFO] [1712349615.651137]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712349615.651430]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Programming_Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712349615.651708]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712349615.652009]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.652511]: Instances: []\n", + "[INFO] [1712349615.652850]: Direct Instances: []\n", + "[INFO] [1712349615.653187]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712349615.653445]: -------------------\n", + "[INFO] [1712349615.653711]: SOMA.Conclusion \n", + "[INFO] [1712349615.653971]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712349615.654359]: Ancestors: {SOMA.Patient, DUL.SocialObject, SOMA.Conclusion, SOMA.EventAdjacentRole, DUL.Concept, DUL.Object, SOMA.Knowledge, DUL.Entity, SOMA.CreatedObject, owl.Thing, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349615.654654]: Subclasses: []\n", + "[INFO] [1712349615.654972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.655483]: Instances: []\n", + "[INFO] [1712349615.655749]: Direct Instances: []\n", + "[INFO] [1712349615.656809]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349615.657206]: -------------------\n", + "[INFO] [1712349615.657519]: SOMA.CreatedObject \n", + "[INFO] [1712349615.657772]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.658041]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.CreatedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.658303]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712349615.658598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.659091]: Instances: []\n", + "[INFO] [1712349615.659359]: Direct Instances: []\n", + "[INFO] [1712349615.659658]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712349615.659904]: -------------------\n", + "[INFO] [1712349615.660141]: SOMA.Knowledge \n", + "[INFO] [1712349615.660375]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712349615.660633]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349615.660892]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712349615.661184]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.661683]: Instances: []\n", + "[INFO] [1712349615.661959]: Direct Instances: []\n", + "[INFO] [1712349615.663129]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712349615.663392]: -------------------\n", + "[INFO] [1712349615.663651]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712349615.663904]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712349615.664175]: Ancestors: {DUL.Description, SOMA.ConditionalSuccedence, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Succedence, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349615.664420]: Subclasses: []\n", + "[INFO] [1712349615.664707]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.665230]: Instances: []\n", + "[INFO] [1712349615.665534]: Direct Instances: []\n", + "[INFO] [1712349615.665791]: Inverse Restrictions: []\n", + "[INFO] [1712349615.666034]: -------------------\n", + "[INFO] [1712349615.666268]: SOMA.Configuration \n", + "[INFO] [1712349615.666518]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712349615.666781]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Configuration}\n", + "[INFO] [1712349615.667023]: Subclasses: []\n", + "[INFO] [1712349615.667311]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", + "[INFO] [1712349615.667811]: Instances: []\n", + "[INFO] [1712349615.668077]: Direct Instances: []\n", + "[INFO] [1712349615.668330]: Inverse Restrictions: []\n", + "[INFO] [1712349615.668566]: -------------------\n", + "[INFO] [1712349615.668798]: SOMA.Connectivity \n", + "[INFO] [1712349615.669049]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712349615.669313]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic}\n", + "[INFO] [1712349615.669639]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712349615.669981]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.670504]: Instances: []\n", + "[INFO] [1712349615.670774]: Direct Instances: []\n", + "[INFO] [1712349615.671064]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712349615.671309]: -------------------\n", + "[INFO] [1712349615.671547]: SOMA.ContactState \n", + "[INFO] [1712349615.671809]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712349615.672092]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ContactState, owl.Thing}\n", + "[INFO] [1712349615.672349]: Subclasses: []\n", + "[INFO] [1712349615.672639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.673131]: Instances: []\n", + "[INFO] [1712349615.673434]: Direct Instances: []\n", + "[INFO] [1712349615.673695]: Inverse Restrictions: []\n", + "[INFO] [1712349615.673929]: -------------------\n", + "[INFO] [1712349615.674168]: SOMA.Container \n", + "[INFO] [1712349615.674398]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712349615.674661]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, SOMA.Container, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.674921]: Subclasses: []\n", + "[INFO] [1712349615.675213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.675695]: Instances: []\n", + "[INFO] [1712349615.675950]: Direct Instances: []\n", + "[INFO] [1712349615.676662]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712349615.677021]: -------------------\n", + "[INFO] [1712349615.677359]: SOMA.Containment \n", + "[INFO] [1712349615.677691]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712349615.678010]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.678294]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712349615.678613]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.679126]: Instances: []\n", + "[INFO] [1712349615.679403]: Direct Instances: []\n", + "[INFO] [1712349615.679884]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712349615.680148]: -------------------\n", + "[INFO] [1712349615.680407]: SOMA.IncludedObject \n", + "[INFO] [1712349615.680652]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.680924]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", + "[INFO] [1712349615.681316]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712349615.681724]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.682335]: Instances: []\n", + "[INFO] [1712349615.682705]: Direct Instances: []\n", + "[INFO] [1712349615.683095]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712349615.683452]: -------------------\n", + "[INFO] [1712349615.683818]: SOMA.ContainmentState \n", + "[INFO] [1712349615.684942]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712349615.685345]: Ancestors: {SOMA.StateType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ContainmentState, SOMA.FunctionalControl, owl.Thing}\n", + "[INFO] [1712349615.685713]: Subclasses: []\n", + "[INFO] [1712349615.686118]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349615.686706]: Instances: []\n", + "[INFO] [1712349615.687062]: Direct Instances: []\n", + "[INFO] [1712349615.687408]: Inverse Restrictions: []\n", + "[INFO] [1712349615.687743]: -------------------\n", + "[INFO] [1712349615.688095]: SOMA.FunctionalControl \n", + "[INFO] [1712349615.688498]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712349615.688910]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.FunctionalControl, owl.Thing}\n", + "[INFO] [1712349615.689321]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712349615.689774]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349615.690463]: Instances: []\n", + "[INFO] [1712349615.690882]: Direct Instances: []\n", + "[INFO] [1712349615.691285]: Inverse Restrictions: []\n", + "[INFO] [1712349615.691671]: -------------------\n", + "[INFO] [1712349615.692040]: SOMA.ContainmentTheory \n", + "[INFO] [1712349615.692405]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712349615.692818]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.693208]: Subclasses: []\n", + "[INFO] [1712349615.693623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.694213]: Instances: []\n", + "[INFO] [1712349615.694568]: Direct Instances: []\n", + "[INFO] [1712349615.694909]: Inverse Restrictions: []\n", + "[INFO] [1712349615.695239]: -------------------\n", + "[INFO] [1712349615.695590]: SOMA.ControlTheory \n", + "[INFO] [1712349615.695928]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712349615.696274]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.696620]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712349615.697030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.697629]: Instances: []\n", + "[INFO] [1712349615.697987]: Direct Instances: []\n", + "[INFO] [1712349615.698339]: Inverse Restrictions: []\n", + "[INFO] [1712349615.698674]: -------------------\n", + "[INFO] [1712349615.699003]: SOMA.ContinuousJoint \n", + "[INFO] [1712349615.699363]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712349615.699754]: Ancestors: {SOMA.Joint, SOMA.ContinuousJoint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349615.700098]: Subclasses: []\n", + "[INFO] [1712349615.700482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.701084]: Instances: []\n", + "[INFO] [1712349615.701446]: Direct Instances: []\n", + "[INFO] [1712349615.701789]: Inverse Restrictions: []\n", + "[INFO] [1712349615.702123]: -------------------\n", + "[INFO] [1712349615.702451]: SOMA.HingeJoint \n", + "[INFO] [1712349615.702774]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712349615.703122]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349615.703484]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712349615.703869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.704455]: Instances: []\n", + "[INFO] [1712349615.704816]: Direct Instances: []\n", + "[INFO] [1712349615.705170]: Inverse Restrictions: []\n", + "[INFO] [1712349615.705507]: -------------------\n", + "[INFO] [1712349615.705839]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712349615.706194]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712349615.706538]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.706893]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712349615.707280]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349615.707875]: Instances: []\n", + "[INFO] [1712349615.708233]: Direct Instances: []\n", + "[INFO] [1712349615.708583]: Inverse Restrictions: []\n", + "[INFO] [1712349615.708925]: -------------------\n", + "[INFO] [1712349615.709258]: SOMA.Cooktop \n", + "[INFO] [1712349615.709577]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349615.709910]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.710265]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", + "[INFO] [1712349615.710647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.711234]: Instances: []\n", + "[INFO] [1712349615.711597]: Direct Instances: []\n", + "[INFO] [1712349615.711942]: Inverse Restrictions: []\n", + "[INFO] [1712349615.712272]: -------------------\n", + "[INFO] [1712349615.712598]: SOMA.Countertop \n", + "[INFO] [1712349615.712922]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349615.713280]: Ancestors: {SOMA.FunctionalPart, SOMA.Countertop, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.713639]: Subclasses: []\n", + "[INFO] [1712349615.714023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.714597]: Instances: []\n", + "[INFO] [1712349615.714942]: Direct Instances: []\n", + "[INFO] [1712349615.715274]: Inverse Restrictions: []\n", + "[INFO] [1712349615.715607]: -------------------\n", + "[INFO] [1712349615.715981]: SOMA.Cover \n", + "[INFO] [1712349615.716310]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712349615.716667]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role, SOMA.Cover}\n", + "[INFO] [1712349615.717025]: Subclasses: []\n", + "[INFO] [1712349615.717365]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.717885]: Instances: []\n", + "[INFO] [1712349615.718161]: Direct Instances: []\n", + "[INFO] [1712349615.718468]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712349615.718719]: -------------------\n", + "[INFO] [1712349615.719066]: SOMA.Coverage \n", + "[INFO] [1712349615.719380]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712349615.719675]: Ancestors: {SOMA.PhysicalQuality, SOMA.Coverage, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.719938]: Subclasses: []\n", + "[INFO] [1712349615.720231]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.720718]: Instances: []\n", + "[INFO] [1712349615.721041]: Direct Instances: []\n", + "[INFO] [1712349615.721356]: Inverse Restrictions: []\n", + "[INFO] [1712349615.721617]: -------------------\n", + "[INFO] [1712349615.721872]: SOMA.CoveredObject \n", + "[INFO] [1712349615.722122]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712349615.722408]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.CoveredObject, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.722667]: Subclasses: []\n", + "[INFO] [1712349615.722960]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.723436]: Instances: []\n", + "[INFO] [1712349615.723713]: Direct Instances: []\n", + "[INFO] [1712349615.724011]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712349615.724255]: -------------------\n", + "[INFO] [1712349615.724490]: SOMA.CoverageTheory \n", + "[INFO] [1712349615.724722]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712349615.725000]: Ancestors: {DUL.Description, SOMA.CoverageTheory, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.725258]: Subclasses: []\n", + "[INFO] [1712349615.725554]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.726048]: Instances: []\n", + "[INFO] [1712349615.726298]: Direct Instances: []\n", + "[INFO] [1712349615.726544]: Inverse Restrictions: []\n", + "[INFO] [1712349615.726780]: -------------------\n", + "[INFO] [1712349615.727016]: SOMA.CoveringTheory \n", + "[INFO] [1712349615.727254]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712349615.727531]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, SOMA.CoveringTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349615.727767]: Subclasses: []\n", + "[INFO] [1712349615.728071]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349615.728561]: Instances: []\n", + "[INFO] [1712349615.728818]: Direct Instances: []\n", + "[INFO] [1712349615.729061]: Inverse Restrictions: []\n", + "[INFO] [1712349615.729298]: -------------------\n", + "[INFO] [1712349615.729537]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712349615.729772]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712349615.730011]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349615.730269]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712349615.730568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349615.731058]: Instances: []\n", + "[INFO] [1712349615.731308]: Direct Instances: []\n", + "[INFO] [1712349615.731561]: Inverse Restrictions: []\n", + "[INFO] [1712349615.731802]: -------------------\n", + "[INFO] [1712349615.732034]: SOMA.CrackingTheory \n", + "[INFO] [1712349615.732269]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712349615.732563]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.CrackingTheory, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349615.732842]: Subclasses: []\n", + "[INFO] [1712349615.733148]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349615.733659]: Instances: []\n", + "[INFO] [1712349615.733931]: Direct Instances: []\n", + "[INFO] [1712349615.734183]: Inverse Restrictions: []\n", + "[INFO] [1712349615.734427]: -------------------\n", + "[INFO] [1712349615.734665]: SOMA.Creation \n", + "[INFO] [1712349615.734901]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712349615.735170]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Creation, owl.Thing}\n", + "[INFO] [1712349615.735405]: Subclasses: []\n", + "[INFO] [1712349615.735698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349615.736189]: Instances: []\n", + "[INFO] [1712349615.736442]: Direct Instances: []\n", + "[INFO] [1712349615.736683]: Inverse Restrictions: []\n", + "[INFO] [1712349615.736915]: -------------------\n", + "[INFO] [1712349615.737190]: SOMA.Tableware \n", + "[INFO] [1712349615.737439]: Super classes: [SOMA.DesignedTool]\n", + "[INFO] [1712349615.737685]: Ancestors: {SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.737937]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", + "[INFO] [1712349615.738221]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.738765]: Instances: []\n", + "[INFO] [1712349615.739043]: Direct Instances: []\n", + "[INFO] [1712349615.739300]: Inverse Restrictions: []\n", + "[INFO] [1712349615.739532]: -------------------\n", + "[INFO] [1712349615.739762]: SOMA.Insertion \n", + "[INFO] [1712349615.740036]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712349615.740326]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, SOMA.Insertion, DUL.Entity, SOMA.Enclosing, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.740566]: Subclasses: []\n", + "[INFO] [1712349615.740874]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.741408]: Instances: []\n", + "[INFO] [1712349615.741687]: Direct Instances: []\n", + "[INFO] [1712349615.742230]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712349615.742488]: -------------------\n", + "[INFO] [1712349615.742812]: SOMA.Cup \n", + "[INFO] [1712349615.743101]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712349615.743390]: Ancestors: {SOMA.Crockery, SOMA.Cup, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.743644]: Subclasses: []\n", + "[INFO] [1712349615.743932]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.744433]: Instances: []\n", + "[INFO] [1712349615.744696]: Direct Instances: []\n", + "[INFO] [1712349615.744999]: Inverse Restrictions: []\n", + "[INFO] [1712349615.745274]: -------------------\n", + "[INFO] [1712349615.745524]: SOMA.DesignedHandle \n", + "[INFO] [1712349615.745791]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", + "[INFO] [1712349615.746076]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.DesignedHandle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.746323]: Subclasses: []\n", + "[INFO] [1712349615.746614]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.747121]: Instances: []\n", + "[INFO] [1712349615.747401]: Direct Instances: []\n", + "[INFO] [1712349615.747752]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", + "[INFO] [1712349615.748007]: -------------------\n", + "[INFO] [1712349615.748256]: SOMA.Cupboard \n", + "[INFO] [1712349615.748519]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", + "[INFO] [1712349615.748812]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Cupboard}\n", + "[INFO] [1712349615.749190]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", + "[INFO] [1712349615.749539]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.750218]: Instances: []\n", + "[INFO] [1712349615.750530]: Direct Instances: []\n", + "[INFO] [1712349615.750802]: Inverse Restrictions: []\n", + "[INFO] [1712349615.751050]: -------------------\n", + "[INFO] [1712349615.751288]: SOMA.DesignedFurniture \n", + "[INFO] [1712349615.751539]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712349615.751796]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.752060]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712349615.752358]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.752861]: Instances: []\n", + "[INFO] [1712349615.753157]: Direct Instances: []\n", + "[INFO] [1712349615.753431]: Inverse Restrictions: []\n", + "[INFO] [1712349615.753673]: -------------------\n", + "[INFO] [1712349615.753907]: SOMA.Rack \n", + "[INFO] [1712349615.754137]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349615.754417]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Rack, DUL.PhysicalObject}\n", + "[INFO] [1712349615.754674]: Subclasses: []\n", + "[INFO] [1712349615.754967]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.755445]: Instances: []\n", + "[INFO] [1712349615.755705]: Direct Instances: []\n", + "[INFO] [1712349615.755996]: Inverse Restrictions: [SOMA.Cupboard]\n", + "[INFO] [1712349615.756235]: -------------------\n", + "[INFO] [1712349615.756466]: SOMA.Cutlery \n", + "[INFO] [1712349615.756691]: Super classes: [SOMA.Tableware]\n", + "[INFO] [1712349615.756966]: Ancestors: {SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.757235]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", + "[INFO] [1712349615.757519]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.758002]: Instances: []\n", + "[INFO] [1712349615.758276]: Direct Instances: []\n", + "[INFO] [1712349615.758534]: Inverse Restrictions: []\n", + "[INFO] [1712349615.758765]: -------------------\n", + "[INFO] [1712349615.758990]: SOMA.Cuttability \n", + "[INFO] [1712349615.759224]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712349615.759495]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Cuttability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.759758]: Subclasses: []\n", + "[INFO] [1712349615.760052]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.760530]: Instances: []\n", + "[INFO] [1712349615.760805]: Direct Instances: []\n", + "[INFO] [1712349615.761065]: Inverse Restrictions: []\n", + "[INFO] [1712349615.761303]: -------------------\n", + "[INFO] [1712349615.761537]: SOMA.Tool \n", + "[INFO] [1712349615.761762]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712349615.762002]: Ancestors: {SOMA.Tool, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.762266]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712349615.762554]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.763034]: Instances: []\n", + "[INFO] [1712349615.763290]: Direct Instances: []\n", + "[INFO] [1712349615.763577]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712349615.763825]: -------------------\n", + "[INFO] [1712349615.764064]: SOMA.Cutting \n", + "[INFO] [1712349615.764297]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712349615.764568]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.764845]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712349615.765142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.765631]: Instances: []\n", + "[INFO] [1712349615.765891]: Direct Instances: []\n", + "[INFO] [1712349615.766151]: Inverse Restrictions: []\n", + "[INFO] [1712349615.766394]: -------------------\n", + "[INFO] [1712349615.766633]: SOMA.CuttingTool \n", + "[INFO] [1712349615.766886]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", + "[INFO] [1712349615.767132]: Ancestors: {SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.767379]: Subclasses: [SOMA.Knife]\n", + "[INFO] [1712349615.767660]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712349615.768172]: Instances: []\n", + "[INFO] [1712349615.768437]: Direct Instances: []\n", + "[INFO] [1712349615.768692]: Inverse Restrictions: []\n", + "[INFO] [1712349615.768936]: -------------------\n", + "[INFO] [1712349615.769175]: SOMA.DesignedTool \n", + "[INFO] [1712349615.769409]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712349615.769666]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.769918]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712349615.770207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.770725]: Instances: []\n", + "[INFO] [1712349615.771001]: Direct Instances: []\n", + "[INFO] [1712349615.771260]: Inverse Restrictions: []\n", + "[INFO] [1712349615.771519]: -------------------\n", + "[INFO] [1712349615.771763]: SOMA.Shaping \n", + "[INFO] [1712349615.772046]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712349615.772345]: Ancestors: {SOMA.PhysicalQuality, SOMA.Shaping, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.772597]: Subclasses: []\n", + "[INFO] [1712349615.772899]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.773381]: Instances: []\n", + "[INFO] [1712349615.773664]: Direct Instances: []\n", + "[INFO] [1712349615.773948]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712349615.774189]: -------------------\n", + "[INFO] [1712349615.774423]: SOMA.Database \n", + "[INFO] [1712349615.774652]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349615.774920]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", + "[INFO] [1712349615.775195]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712349615.775491]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.775986]: Instances: []\n", + "[INFO] [1712349615.776260]: Direct Instances: []\n", + "[INFO] [1712349615.776514]: Inverse Restrictions: []\n", + "[INFO] [1712349615.776747]: -------------------\n", + "[INFO] [1712349615.777002]: SOMA.SoftwareRole \n", + "[INFO] [1712349615.777268]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712349615.777513]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.777770]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712349615.778058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.778583]: Instances: []\n", + "[INFO] [1712349615.778852]: Direct Instances: []\n", + "[INFO] [1712349615.779145]: Inverse Restrictions: []\n", + "[INFO] [1712349615.779377]: -------------------\n", + "[INFO] [1712349615.779609]: SOMA.Deciding \n", + "[INFO] [1712349615.779850]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349615.780120]: Ancestors: {owl.Thing, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712349615.780382]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712349615.780673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.781236]: Instances: []\n", + "[INFO] [1712349615.781576]: Direct Instances: []\n", + "[INFO] [1712349615.781861]: Inverse Restrictions: []\n", + "[INFO] [1712349615.782110]: -------------------\n", + "[INFO] [1712349615.782349]: SOMA.DerivingInformation \n", + "[INFO] [1712349615.782609]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712349615.782864]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712349615.783128]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712349615.783419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isTaskOfInputRole, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712349615.783949]: Instances: []\n", + "[INFO] [1712349615.784239]: Direct Instances: []\n", + "[INFO] [1712349615.784509]: Inverse Restrictions: []\n", + "[INFO] [1712349615.784745]: -------------------\n", + "[INFO] [1712349615.785047]: SOMA.DeductiveReasoning \n", + "[INFO] [1712349615.785324]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712349615.785614]: Ancestors: {SOMA.InformationAcquisition, SOMA.DeductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", + "[INFO] [1712349615.785873]: Subclasses: []\n", + "[INFO] [1712349615.786171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.786660]: Instances: []\n", + "[INFO] [1712349615.786938]: Direct Instances: []\n", + "[INFO] [1712349615.787190]: Inverse Restrictions: []\n", + "[INFO] [1712349615.787425]: -------------------\n", + "[INFO] [1712349615.787654]: SOMA.Deformation \n", + "[INFO] [1712349615.787929]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712349615.788221]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.Deformation, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.788478]: Subclasses: []\n", + "[INFO] [1712349615.788787]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf]\n", + "[INFO] [1712349615.789303]: Instances: []\n", + "[INFO] [1712349615.789569]: Direct Instances: []\n", + "[INFO] [1712349615.789821]: Inverse Restrictions: []\n", + "[INFO] [1712349615.790054]: -------------------\n", + "[INFO] [1712349615.790292]: SOMA.ShapedObject \n", + "[INFO] [1712349615.790580]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712349615.790864]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ShapedObject, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", + "[INFO] [1712349615.791107]: Subclasses: []\n", + "[INFO] [1712349615.791404]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.791889]: Instances: []\n", + "[INFO] [1712349615.792163]: Direct Instances: []\n", + "[INFO] [1712349615.792486]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712349615.792733]: -------------------\n", + "[INFO] [1712349615.792980]: SOMA.FluidFlow \n", + "[INFO] [1712349615.793246]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712349615.793539]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.FluidFlow, owl.Thing}\n", + "[INFO] [1712349615.793791]: Subclasses: []\n", + "[INFO] [1712349615.794091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349615.794566]: Instances: []\n", + "[INFO] [1712349615.794840]: Direct Instances: []\n", + "[INFO] [1712349615.795100]: Inverse Restrictions: []\n", + "[INFO] [1712349615.795332]: -------------------\n", + "[INFO] [1712349615.795557]: SOMA.Shifting \n", + "[INFO] [1712349615.795824]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712349615.796118]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Shifting, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.796374]: Subclasses: []\n", + "[INFO] [1712349615.796671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.797166]: Instances: []\n", + "[INFO] [1712349615.797433]: Direct Instances: []\n", + "[INFO] [1712349615.797782]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712349615.798042]: -------------------\n", + "[INFO] [1712349615.798292]: SOMA.DependentPlace \n", + "[INFO] [1712349615.798528]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712349615.798793]: Ancestors: {SOMA.Feature, DUL.Object, SOMA.DependentPlace, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.799046]: Subclasses: []\n", + "[INFO] [1712349615.799364]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.799859]: Instances: []\n", + "[INFO] [1712349615.800113]: Direct Instances: []\n", + "[INFO] [1712349615.800375]: Inverse Restrictions: []\n", + "[INFO] [1712349615.800633]: -------------------\n", + "[INFO] [1712349615.800884]: SOMA.Deposit \n", + "[INFO] [1712349615.801120]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712349615.801382]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, SOMA.Deposit, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.801637]: Subclasses: []\n", + "[INFO] [1712349615.801927]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.802405]: Instances: []\n", + "[INFO] [1712349615.802664]: Direct Instances: []\n", + "[INFO] [1712349615.802950]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712349615.803218]: -------------------\n", + "[INFO] [1712349615.803465]: SOMA.DepositedObject \n", + "[INFO] [1712349615.803720]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.803999]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.DepositedObject, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.804259]: Subclasses: []\n", + "[INFO] [1712349615.804553]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.805045]: Instances: []\n", + "[INFO] [1712349615.805330]: Direct Instances: []\n", + "[INFO] [1712349615.805627]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712349615.805882]: -------------------\n", + "[INFO] [1712349615.806376]: SOMA.InformationAcquisition \n", + "[INFO] [1712349615.806919]: Super classes: [owl.Thing]\n", + "[INFO] [1712349615.807405]: Ancestors: {owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712349615.808286]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712349615.809718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712349615.812027]: Instances: []\n", + "[INFO] [1712349615.812852]: Direct Instances: []\n", + "[INFO] [1712349615.813684]: Inverse Restrictions: []\n", + "[INFO] [1712349615.814177]: -------------------\n", + "[INFO] [1712349615.814631]: SOMA.Premise \n", + "[INFO] [1712349615.814975]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712349615.815281]: Ancestors: {SOMA.Premise, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, SOMA.Item}\n", + "[INFO] [1712349615.815560]: Subclasses: []\n", + "[INFO] [1712349615.815892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.816404]: Instances: []\n", + "[INFO] [1712349615.816692]: Direct Instances: []\n", + "[INFO] [1712349615.817045]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349615.817309]: -------------------\n", + "[INFO] [1712349615.817555]: SOMA.FunctionalPart \n", + "[INFO] [1712349615.818309]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712349615.818629]: Ancestors: {SOMA.FunctionalPart, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349615.818915]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712349615.819237]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.819804]: Instances: []\n", + "[INFO] [1712349615.820094]: Direct Instances: []\n", + "[INFO] [1712349615.820365]: Inverse Restrictions: []\n", + "[INFO] [1712349615.820616]: -------------------\n", + "[INFO] [1712349615.820895]: SOMA.Graspability \n", + "[INFO] [1712349615.821156]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712349615.821431]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Graspability, SOMA.Extrinsic}\n", + "[INFO] [1712349615.821677]: Subclasses: []\n", + "[INFO] [1712349615.821970]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.822488]: Instances: []\n", + "[INFO] [1712349615.822764]: Direct Instances: []\n", + "[INFO] [1712349615.823048]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712349615.823300]: -------------------\n", + "[INFO] [1712349615.823543]: SOMA.DesignedSpade \n", + "[INFO] [1712349615.823780]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349615.824057]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, SOMA.DesignedSpade, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.824317]: Subclasses: []\n", + "[INFO] [1712349615.824613]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.825215]: Instances: []\n", + "[INFO] [1712349615.825516]: Direct Instances: []\n", + "[INFO] [1712349615.825834]: Inverse Restrictions: [SOMA.Spatula]\n", + "[INFO] [1712349615.826086]: -------------------\n", + "[INFO] [1712349615.826327]: SOMA.DessertFork \n", + "[INFO] [1712349615.826759]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712349615.827105]: Ancestors: {SOMA.DessertFork, SOMA.Tableware, SOMA.Fork, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.827360]: Subclasses: []\n", + "[INFO] [1712349615.827651]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.828171]: Instances: []\n", + "[INFO] [1712349615.828449]: Direct Instances: []\n", + "[INFO] [1712349615.828702]: Inverse Restrictions: []\n", + "[INFO] [1712349615.828961]: -------------------\n", + "[INFO] [1712349615.829216]: SOMA.Fork \n", + "[INFO] [1712349615.829471]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712349615.829736]: Ancestors: {SOMA.Tableware, SOMA.Fork, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.829994]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", + "[INFO] [1712349615.830288]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349615.830782]: Instances: []\n", + "[INFO] [1712349615.831041]: Direct Instances: []\n", + "[INFO] [1712349615.831359]: Inverse Restrictions: []\n", + "[INFO] [1712349615.831641]: -------------------\n", + "[INFO] [1712349615.831906]: SOMA.Destination \n", + "[INFO] [1712349615.832168]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712349615.832441]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Role}\n", + "[INFO] [1712349615.832733]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712349615.833134]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.833673]: Instances: []\n", + "[INFO] [1712349615.833964]: Direct Instances: []\n", + "[INFO] [1712349615.834319]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712349615.834566]: -------------------\n", + "[INFO] [1712349615.834801]: SOMA.Location \n", + "[INFO] [1712349615.835030]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712349615.835270]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Location, DUL.Role}\n", + "[INFO] [1712349615.835534]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712349615.835829]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.836314]: Instances: []\n", + "[INFO] [1712349615.836572]: Direct Instances: []\n", + "[INFO] [1712349615.836839]: Inverse Restrictions: []\n", + "[INFO] [1712349615.837084]: -------------------\n", + "[INFO] [1712349615.837314]: SOMA.DestroyedObject \n", + "[INFO] [1712349615.837539]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.837821]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.DestroyedObject, DUL.Role}\n", + "[INFO] [1712349615.838069]: Subclasses: []\n", + "[INFO] [1712349615.838377]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.838885]: Instances: []\n", + "[INFO] [1712349615.839148]: Direct Instances: []\n", + "[INFO] [1712349615.839456]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712349615.839697]: -------------------\n", + "[INFO] [1712349615.839940]: SOMA.Destruction \n", + "[INFO] [1712349615.840185]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712349615.840460]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Destruction, owl.Thing}\n", + "[INFO] [1712349615.840716]: Subclasses: []\n", + "[INFO] [1712349615.841023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349615.841530]: Instances: []\n", + "[INFO] [1712349615.841801]: Direct Instances: []\n", + "[INFO] [1712349615.842042]: Inverse Restrictions: []\n", + "[INFO] [1712349615.842275]: -------------------\n", + "[INFO] [1712349615.842503]: SOMA.DetectedObject \n", + "[INFO] [1712349615.842734]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.843017]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.DetectedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.843266]: Subclasses: []\n", + "[INFO] [1712349615.843553]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.844033]: Instances: []\n", + "[INFO] [1712349615.844305]: Direct Instances: []\n", + "[INFO] [1712349615.844561]: Inverse Restrictions: []\n", + "[INFO] [1712349615.844810]: -------------------\n", + "[INFO] [1712349615.845048]: SOMA.DeviceState \n", + "[INFO] [1712349615.845279]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349615.845546]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.DeviceState, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712349615.845802]: Subclasses: []\n", + "[INFO] [1712349615.846092]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.846576]: Instances: []\n", + "[INFO] [1712349615.846831]: Direct Instances: []\n", + "[INFO] [1712349615.847065]: Inverse Restrictions: []\n", + "[INFO] [1712349615.847296]: -------------------\n", + "[INFO] [1712349615.847533]: SOMA.DeviceStateRange \n", + "[INFO] [1712349615.847764]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349615.848629]: Ancestors: {SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.848945]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712349615.849272]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.849775]: Instances: []\n", + "[INFO] [1712349615.850034]: Direct Instances: []\n", + "[INFO] [1712349615.850304]: Inverse Restrictions: []\n", + "[INFO] [1712349615.850543]: -------------------\n", + "[INFO] [1712349615.850776]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712349615.851006]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712349615.851266]: Ancestors: {SOMA.DeviceTurnedOff, SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.851520]: Subclasses: []\n", + "[INFO] [1712349615.851809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.852290]: Instances: []\n", + "[INFO] [1712349615.852549]: Direct Instances: []\n", + "[INFO] [1712349615.852860]: Inverse Restrictions: []\n", + "[INFO] [1712349615.853165]: -------------------\n", + "[INFO] [1712349615.853435]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712349615.853685]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712349615.853966]: Ancestors: {SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOn}\n", + "[INFO] [1712349615.854219]: Subclasses: []\n", + "[INFO] [1712349615.854514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.855018]: Instances: []\n", + "[INFO] [1712349615.855286]: Direct Instances: []\n", + "[INFO] [1712349615.855590]: Inverse Restrictions: []\n", + "[INFO] [1712349615.855828]: -------------------\n", + "[INFO] [1712349615.856058]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712349615.856308]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712349615.856553]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349615.856821]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712349615.857211]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.857733]: Instances: []\n", + "[INFO] [1712349615.858029]: Direct Instances: []\n", + "[INFO] [1712349615.858302]: Inverse Restrictions: []\n", + "[INFO] [1712349615.858555]: -------------------\n", + "[INFO] [1712349615.858805]: SOMA.Dicing \n", + "[INFO] [1712349615.859043]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712349615.859318]: Ancestors: {SOMA.PhysicalTask, SOMA.ModifyingPhysicalObject, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing, SOMA.Dicing}\n", + "[INFO] [1712349615.859572]: Subclasses: []\n", + "[INFO] [1712349615.859856]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.860334]: Instances: []\n", + "[INFO] [1712349615.860605]: Direct Instances: []\n", + "[INFO] [1712349615.860867]: Inverse Restrictions: []\n", + "[INFO] [1712349615.861117]: -------------------\n", + "[INFO] [1712349615.861358]: SOMA.DinnerPlate \n", + "[INFO] [1712349615.861595]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712349615.861865]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Plate, SOMA.DinnerPlate, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.862125]: Subclasses: []\n", + "[INFO] [1712349615.862419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.862906]: Instances: []\n", + "[INFO] [1712349615.863162]: Direct Instances: []\n", + "[INFO] [1712349615.863407]: Inverse Restrictions: []\n", + "[INFO] [1712349615.863648]: -------------------\n", + "[INFO] [1712349615.863889]: SOMA.DirectedMotion \n", + "[INFO] [1712349615.864122]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712349615.864361]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349615.864630]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712349615.865052]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.865665]: Instances: []\n", + "[INFO] [1712349615.866022]: Direct Instances: []\n", + "[INFO] [1712349615.866347]: Inverse Restrictions: []\n", + "[INFO] [1712349615.866645]: -------------------\n", + "[INFO] [1712349615.866947]: SOMA.UndirectedMotion \n", + "[INFO] [1712349615.867255]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712349615.867604]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.UndirectedMotion, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349615.867958]: Subclasses: []\n", + "[INFO] [1712349615.868369]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.869072]: Instances: []\n", + "[INFO] [1712349615.869452]: Direct Instances: []\n", + "[INFO] [1712349615.869833]: Inverse Restrictions: []\n", + "[INFO] [1712349615.870242]: -------------------\n", + "[INFO] [1712349615.870653]: SOMA.Dirty \n", + "[INFO] [1712349615.871059]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712349615.871493]: Ancestors: {SOMA.Dirty, DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349615.871929]: Subclasses: []\n", + "[INFO] [1712349615.872443]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.873357]: Instances: []\n", + "[INFO] [1712349615.873933]: Direct Instances: []\n", + "[INFO] [1712349615.874469]: Inverse Restrictions: []\n", + "[INFO] [1712349615.874966]: -------------------\n", + "[INFO] [1712349615.875480]: SOMA.Discourse \n", + "[INFO] [1712349615.876038]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349615.876673]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, SOMA.Discourse, owl.Thing}\n", + "[INFO] [1712349615.877297]: Subclasses: []\n", + "[INFO] [1712349615.878023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.879207]: Instances: []\n", + "[INFO] [1712349615.879796]: Direct Instances: []\n", + "[INFO] [1712349615.880335]: Inverse Restrictions: []\n", + "[INFO] [1712349615.880830]: -------------------\n", + "[INFO] [1712349615.881337]: SOMA.Dishwasher \n", + "[INFO] [1712349615.881885]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", + "[INFO] [1712349615.882449]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, SOMA.Dishwasher, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.882993]: Subclasses: []\n", + "[INFO] [1712349615.883540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.884479]: Instances: []\n", + "[INFO] [1712349615.884977]: Direct Instances: []\n", + "[INFO] [1712349615.885436]: Inverse Restrictions: []\n", + "[INFO] [1712349615.885850]: -------------------\n", + "[INFO] [1712349615.886248]: SOMA.DishwasherTab \n", + "[INFO] [1712349615.886629]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712349615.887110]: Ancestors: {SOMA.DishwasherTab, DUL.DesignedSubstance, DUL.Substance, DUL.Object, DUL.PhysicalBody, DUL.FunctionalSubstance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.887523]: Subclasses: []\n", + "[INFO] [1712349615.887970]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.888694]: Instances: []\n", + "[INFO] [1712349615.889272]: Direct Instances: []\n", + "[INFO] [1712349615.889732]: Inverse Restrictions: []\n", + "[INFO] [1712349615.890107]: -------------------\n", + "[INFO] [1712349615.890458]: SOMA.Dispenser \n", + "[INFO] [1712349615.890819]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712349615.891212]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Dispenser}\n", + "[INFO] [1712349615.891576]: Subclasses: [SOMA.SugarDispenser]\n", + "[INFO] [1712349615.891988]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.892693]: Instances: []\n", + "[INFO] [1712349615.893077]: Direct Instances: []\n", + "[INFO] [1712349615.893443]: Inverse Restrictions: []\n", + "[INFO] [1712349615.893790]: -------------------\n", + "[INFO] [1712349615.894141]: SOMA.Distancing \n", + "[INFO] [1712349615.894490]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712349615.894913]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, SOMA.Distancing, owl.Thing}\n", + "[INFO] [1712349615.895302]: Subclasses: []\n", + "[INFO] [1712349615.895742]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.896519]: Instances: []\n", + "[INFO] [1712349615.896937]: Direct Instances: []\n", + "[INFO] [1712349615.897338]: Inverse Restrictions: []\n", + "[INFO] [1712349615.897732]: -------------------\n", + "[INFO] [1712349615.898123]: SOMA.Door \n", + "[INFO] [1712349615.898515]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349615.898970]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, SOMA.Door, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.899405]: Subclasses: []\n", + "[INFO] [1712349615.899897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.900735]: Instances: []\n", + "[INFO] [1712349615.901254]: Direct Instances: []\n", + "[INFO] [1712349615.901763]: Inverse Restrictions: [SOMA.Refrigerator]\n", + "[INFO] [1712349615.902196]: -------------------\n", + "[INFO] [1712349615.902612]: SOMA.Drawer \n", + "[INFO] [1712349615.903006]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", + "[INFO] [1712349615.903459]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, SOMA.Drawer, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349615.903848]: Subclasses: []\n", + "[INFO] [1712349615.904288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.905008]: Instances: []\n", + "[INFO] [1712349615.905405]: Direct Instances: []\n", + "[INFO] [1712349615.905794]: Inverse Restrictions: []\n", + "[INFO] [1712349615.906134]: -------------------\n", + "[INFO] [1712349615.906453]: SOMA.Dreaming \n", + "[INFO] [1712349615.906791]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349615.907299]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", + "[INFO] [1712349615.907757]: Subclasses: []\n", + "[INFO] [1712349615.908243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.908903]: Instances: []\n", + "[INFO] [1712349615.909372]: Direct Instances: []\n", + "[INFO] [1712349615.909728]: Inverse Restrictions: []\n", + "[INFO] [1712349615.910034]: -------------------\n", + "[INFO] [1712349615.910323]: SOMA.Driving \n", + "[INFO] [1712349615.910603]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349615.910934]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion, SOMA.Driving}\n", + "[INFO] [1712349615.911249]: Subclasses: []\n", + "[INFO] [1712349615.911643]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.912300]: Instances: []\n", + "[INFO] [1712349615.912662]: Direct Instances: []\n", + "[INFO] [1712349615.913023]: Inverse Restrictions: []\n", + "[INFO] [1712349615.913365]: -------------------\n", + "[INFO] [1712349615.913715]: SOMA.Flying \n", + "[INFO] [1712349615.914081]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349615.914530]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.Flying, SOMA.DirectedMotion}\n", + "[INFO] [1712349615.914957]: Subclasses: []\n", + "[INFO] [1712349615.915485]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.916419]: Instances: []\n", + "[INFO] [1712349615.916985]: Direct Instances: []\n", + "[INFO] [1712349615.917578]: Inverse Restrictions: []\n", + "[INFO] [1712349615.918125]: -------------------\n", + "[INFO] [1712349615.918676]: SOMA.Swimming \n", + "[INFO] [1712349615.919220]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349615.919873]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Swimming, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349615.920491]: Subclasses: []\n", + "[INFO] [1712349615.921208]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.922324]: Instances: []\n", + "[INFO] [1712349615.922892]: Direct Instances: []\n", + "[INFO] [1712349615.923421]: Inverse Restrictions: []\n", + "[INFO] [1712349615.923907]: -------------------\n", + "[INFO] [1712349615.924409]: SOMA.Walking \n", + "[INFO] [1712349615.924878]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349615.925390]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Walking, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349615.925855]: Subclasses: []\n", + "[INFO] [1712349615.926356]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.927156]: Instances: []\n", + "[INFO] [1712349615.927566]: Direct Instances: []\n", + "[INFO] [1712349615.927943]: Inverse Restrictions: []\n", + "[INFO] [1712349615.928292]: -------------------\n", + "[INFO] [1712349615.928656]: SOMA.Dropping \n", + "[INFO] [1712349615.928998]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349615.929370]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Dropping, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349615.929699]: Subclasses: []\n", + "[INFO] [1712349615.930091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.930746]: Instances: []\n", + "[INFO] [1712349615.931073]: Direct Instances: []\n", + "[INFO] [1712349615.931390]: Inverse Restrictions: []\n", + "[INFO] [1712349615.931697]: -------------------\n", + "[INFO] [1712349615.931978]: SOMA.Placing \n", + "[INFO] [1712349615.932247]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349615.932531]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Placing, owl.Thing}\n", + "[INFO] [1712349615.932808]: Subclasses: []\n", + "[INFO] [1712349615.933131]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.933634]: Instances: []\n", + "[INFO] [1712349615.933896]: Direct Instances: []\n", + "[INFO] [1712349615.934142]: Inverse Restrictions: []\n", + "[INFO] [1712349615.934387]: -------------------\n", + "[INFO] [1712349615.934625]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712349615.934892]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712349615.935163]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ESTSchemaTheory, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.935432]: Subclasses: []\n", + "[INFO] [1712349615.935732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349615.936225]: Instances: []\n", + "[INFO] [1712349615.936484]: Direct Instances: []\n", + "[INFO] [1712349615.936742]: Inverse Restrictions: []\n", + "[INFO] [1712349615.936992]: -------------------\n", + "[INFO] [1712349615.937227]: SOMA.ExistingObjectRole \n", + "[INFO] [1712349615.937461]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349615.937728]: Ancestors: {SOMA.ExistingObjectRole, DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.937988]: Subclasses: []\n", + "[INFO] [1712349615.938283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.938768]: Instances: []\n", + "[INFO] [1712349615.939018]: Direct Instances: []\n", + "[INFO] [1712349615.939310]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712349615.939558]: -------------------\n", + "[INFO] [1712349615.939797]: SOMA.Effort \n", + "[INFO] [1712349615.940032]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712349615.940285]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, owl.Thing, SOMA.Effort}\n", + "[INFO] [1712349615.940541]: Subclasses: []\n", + "[INFO] [1712349615.940836]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.941320]: Instances: []\n", + "[INFO] [1712349615.941574]: Direct Instances: []\n", + "[INFO] [1712349615.941832]: Inverse Restrictions: []\n", + "[INFO] [1712349615.942073]: -------------------\n", + "[INFO] [1712349615.942303]: SOMA.EnclosedObject \n", + "[INFO] [1712349615.942535]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712349615.942795]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", + "[INFO] [1712349615.943063]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712349615.943364]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.943856]: Instances: []\n", + "[INFO] [1712349615.944108]: Direct Instances: []\n", + "[INFO] [1712349615.944403]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712349615.944659]: -------------------\n", + "[INFO] [1712349615.944906]: SOMA.Enclosing \n", + "[INFO] [1712349615.945149]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712349615.945394]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Enclosing, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349615.945641]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712349615.945941]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.946433]: Instances: []\n", + "[INFO] [1712349615.946687]: Direct Instances: []\n", + "[INFO] [1712349615.946936]: Inverse Restrictions: []\n", + "[INFO] [1712349615.947184]: -------------------\n", + "[INFO] [1712349615.947430]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712349615.947670]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349615.947931]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712349615.948183]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712349615.948480]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.948970]: Instances: []\n", + "[INFO] [1712349615.949224]: Direct Instances: []\n", + "[INFO] [1712349615.949473]: Inverse Restrictions: []\n", + "[INFO] [1712349615.949710]: -------------------\n", + "[INFO] [1712349615.949951]: SOMA.Manipulating \n", + "[INFO] [1712349615.950207]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712349615.950455]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.950709]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712349615.950989]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.951718]: Instances: []\n", + "[INFO] [1712349615.952040]: Direct Instances: []\n", + "[INFO] [1712349615.952322]: Inverse Restrictions: []\n", + "[INFO] [1712349615.952575]: -------------------\n", + "[INFO] [1712349615.952824]: SOMA.Episode \n", + "[INFO] [1712349615.953081]: Super classes: [DUL.Situation]\n", + "[INFO] [1712349615.953359]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Episode}\n", + "[INFO] [1712349615.953616]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712349615.953904]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349615.954401]: Instances: []\n", + "[INFO] [1712349615.954664]: Direct Instances: []\n", + "[INFO] [1712349615.954913]: Inverse Restrictions: []\n", + "[INFO] [1712349615.955147]: -------------------\n", + "[INFO] [1712349615.955376]: SOMA.ExcludedObject \n", + "[INFO] [1712349615.955607]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.955871]: Ancestors: {SOMA.Patient, SOMA.ExcludedObject, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.956116]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712349615.956410]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.956887]: Instances: []\n", + "[INFO] [1712349615.957157]: Direct Instances: []\n", + "[INFO] [1712349615.957476]: Inverse Restrictions: []\n", + "[INFO] [1712349615.957713]: -------------------\n", + "[INFO] [1712349615.957946]: SOMA.ExecutableFile \n", + "[INFO] [1712349615.958174]: Super classes: [owl.Thing]\n", + "[INFO] [1712349615.959399]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", + "[INFO] [1712349615.959676]: Subclasses: []\n", + "[INFO] [1712349615.959976]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.960474]: Instances: []\n", + "[INFO] [1712349615.960819]: Direct Instances: []\n", + "[INFO] [1712349615.961875]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712349615.962139]: -------------------\n", + "[INFO] [1712349615.962397]: SOMA.Executable_Code \n", + "[INFO] [1712349615.962652]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712349615.963860]: Ancestors: {owl.Thing, SOMA.Computer_Program, SOMA.Executable_Code}\n", + "[INFO] [1712349615.964149]: Subclasses: []\n", + "[INFO] [1712349615.964464]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349615.964973]: Instances: []\n", + "[INFO] [1712349615.965247]: Direct Instances: []\n", + "[INFO] [1712349615.965665]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712349615.965938]: -------------------\n", + "[INFO] [1712349615.966199]: SOMA.ExecutableFormat \n", + "[INFO] [1712349615.966451]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712349615.966721]: Ancestors: {SOMA.System, DUL.SocialObject, SOMA.ExecutableFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349615.966969]: Subclasses: []\n", + "[INFO] [1712349615.967270]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.967768]: Instances: []\n", + "[INFO] [1712349615.968024]: Direct Instances: []\n", + "[INFO] [1712349615.968327]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712349615.968566]: -------------------\n", + "[INFO] [1712349615.968817]: SOMA.SchematicTheory \n", + "[INFO] [1712349615.969059]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712349615.969302]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349615.969552]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712349615.969846]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.970370]: Instances: []\n", + "[INFO] [1712349615.970628]: Direct Instances: []\n", + "[INFO] [1712349615.970887]: Inverse Restrictions: []\n", + "[INFO] [1712349615.971127]: -------------------\n", + "[INFO] [1712349615.971360]: SOMA.ExecutableSoftware \n", + "[INFO] [1712349615.971586]: Super classes: [owl.Thing]\n", + "[INFO] [1712349615.972796]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", + "[INFO] [1712349615.973091]: Subclasses: []\n", + "[INFO] [1712349615.973402]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasMember, rdf-schema.label]\n", + "[INFO] [1712349615.973900]: Instances: []\n", + "[INFO] [1712349615.974159]: Direct Instances: []\n", + "[INFO] [1712349615.974404]: Inverse Restrictions: []\n", + "[INFO] [1712349615.974641]: -------------------\n", + "[INFO] [1712349615.974889]: SOMA.Software \n", + "[INFO] [1712349615.975156]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712349615.975424]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.Software}\n", + "[INFO] [1712349615.975670]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712349615.975956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.describes]\n", + "[INFO] [1712349615.976456]: Instances: []\n", + "[INFO] [1712349615.976719]: Direct Instances: []\n", + "[INFO] [1712349615.977102]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349615.977349]: -------------------\n", + "[INFO] [1712349615.977675]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712349615.977953]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712349615.978219]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.978480]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712349615.978771]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.979281]: Instances: []\n", + "[INFO] [1712349615.979563]: Direct Instances: []\n", + "[INFO] [1712349615.979818]: Inverse Restrictions: []\n", + "[INFO] [1712349615.980056]: -------------------\n", + "[INFO] [1712349615.980289]: SOMA.ExperiencerRole \n", + "[INFO] [1712349615.980527]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712349615.980781]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.ExperiencerRole, DUL.Role}\n", + "[INFO] [1712349615.981028]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712349615.981312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.981816]: Instances: []\n", + "[INFO] [1712349615.982078]: Direct Instances: []\n", + "[INFO] [1712349615.982324]: Inverse Restrictions: []\n", + "[INFO] [1712349615.982557]: -------------------\n", + "[INFO] [1712349615.982788]: SOMA.ExtractedObject \n", + "[INFO] [1712349615.983032]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349615.983295]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ExtractedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349615.983542]: Subclasses: []\n", + "[INFO] [1712349615.983827]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.984325]: Instances: []\n", + "[INFO] [1712349615.984586]: Direct Instances: []\n", + "[INFO] [1712349615.984839]: Inverse Restrictions: []\n", + "[INFO] [1712349615.985083]: -------------------\n", + "[INFO] [1712349615.985321]: SOMA.PhysicalQuality \n", + "[INFO] [1712349615.985586]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712349615.985834]: Ancestors: {DUL.Quality, SOMA.PhysicalQuality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349615.986079]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712349615.986363]: Properties: [rdf-schema.isDefinedBy, DUL.isQualityOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.986948]: Instances: []\n", + "[INFO] [1712349615.987292]: Direct Instances: []\n", + "[INFO] [1712349615.987568]: Inverse Restrictions: []\n", + "[INFO] [1712349615.987818]: -------------------\n", + "[INFO] [1712349615.988056]: SOMA.FailedAttempt \n", + "[INFO] [1712349615.988303]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712349615.988592]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis, SOMA.FailedAttempt}\n", + "[INFO] [1712349615.988868]: Subclasses: []\n", + "[INFO] [1712349615.989161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.989666]: Instances: []\n", + "[INFO] [1712349615.989929]: Direct Instances: []\n", + "[INFO] [1712349615.990178]: Inverse Restrictions: []\n", + "[INFO] [1712349615.990411]: -------------------\n", + "[INFO] [1712349615.990649]: SOMA.FaultySoftware \n", + "[INFO] [1712349615.990888]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712349615.991173]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349615.991422]: Subclasses: []\n", + "[INFO] [1712349615.991708]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.992203]: Instances: []\n", + "[INFO] [1712349615.992459]: Direct Instances: []\n", + "[INFO] [1712349615.992706]: Inverse Restrictions: []\n", + "[INFO] [1712349615.993045]: -------------------\n", + "[INFO] [1712349615.993358]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712349615.993626]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712349615.993896]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349615.994164]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712349615.994466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.994988]: Instances: []\n", + "[INFO] [1712349615.995257]: Direct Instances: []\n", + "[INFO] [1712349615.995519]: Inverse Restrictions: []\n", + "[INFO] [1712349615.995762]: -------------------\n", + "[INFO] [1712349615.996129]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712349615.996486]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712349615.996869]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAcquiring, owl.Thing}\n", + "[INFO] [1712349615.997252]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712349615.997669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349615.998297]: Instances: []\n", + "[INFO] [1712349615.998682]: Direct Instances: []\n", + "[INFO] [1712349615.999061]: Inverse Restrictions: []\n", + "[INFO] [1712349615.999349]: -------------------\n", + "[INFO] [1712349615.999609]: SOMA.Finger \n", + "[INFO] [1712349615.999876]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712349616.000147]: Ancestors: {SOMA.FunctionalPart, SOMA.Finger, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", + "[INFO] [1712349616.000447]: Subclasses: []\n", + "[INFO] [1712349616.000767]: Properties: [rdf-schema.isDefinedBy, DUL.isPartOf, rdf-schema.comment]\n", + "[INFO] [1712349616.001263]: Instances: []\n", + "[INFO] [1712349616.001518]: Direct Instances: []\n", + "[INFO] [1712349616.001770]: Inverse Restrictions: []\n", + "[INFO] [1712349616.002014]: -------------------\n", + "[INFO] [1712349616.002247]: SOMA.Hand \n", + "[INFO] [1712349616.002482]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712349616.002754]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.Hand, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", + "[INFO] [1712349616.003020]: Subclasses: []\n", + "[INFO] [1712349616.003335]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.003824]: Instances: []\n", + "[INFO] [1712349616.004083]: Direct Instances: []\n", + "[INFO] [1712349616.004365]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712349616.004619]: -------------------\n", + "[INFO] [1712349616.004867]: SOMA.FixedJoint \n", + "[INFO] [1712349616.005133]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712349616.005401]: Ancestors: {SOMA.Joint, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, SOMA.FixedJoint, DUL.PhysicalObject}\n", + "[INFO] [1712349616.005660]: Subclasses: []\n", + "[INFO] [1712349616.005966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.006462]: Instances: []\n", + "[INFO] [1712349616.006737]: Direct Instances: []\n", + "[INFO] [1712349616.007027]: Inverse Restrictions: []\n", + "[INFO] [1712349616.007269]: -------------------\n", + "[INFO] [1712349616.007509]: SOMA.MovableJoint \n", + "[INFO] [1712349616.007752]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712349616.008013]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349616.008269]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712349616.008561]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasJointState, rdf-schema.label]\n", + "[INFO] [1712349616.009057]: Instances: []\n", + "[INFO] [1712349616.009330]: Direct Instances: []\n", + "[INFO] [1712349616.009624]: Inverse Restrictions: []\n", + "[INFO] [1712349616.009868]: -------------------\n", + "[INFO] [1712349616.010105]: SOMA.Flipping \n", + "[INFO] [1712349616.010344]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712349616.010610]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Flipping, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.010867]: Subclasses: []\n", + "[INFO] [1712349616.011161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349616.011646]: Instances: []\n", + "[INFO] [1712349616.011904]: Direct Instances: []\n", + "[INFO] [1712349616.012162]: Inverse Restrictions: []\n", + "[INFO] [1712349616.012406]: -------------------\n", + "[INFO] [1712349616.012646]: SOMA.FloatingJoint \n", + "[INFO] [1712349616.012879]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712349616.013143]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, SOMA.FloatingJoint, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349616.013397]: Subclasses: []\n", + "[INFO] [1712349616.013686]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.014178]: Instances: []\n", + "[INFO] [1712349616.014467]: Direct Instances: []\n", + "[INFO] [1712349616.014725]: Inverse Restrictions: []\n", + "[INFO] [1712349616.014964]: -------------------\n", + "[INFO] [1712349616.015199]: SOMA.Fluid \n", + "[INFO] [1712349616.015436]: Super classes: [DUL.Substance]\n", + "[INFO] [1712349616.015690]: Ancestors: {SOMA.Fluid, DUL.Substance, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349616.015987]: Subclasses: []\n", + "[INFO] [1712349616.016283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.016765]: Instances: []\n", + "[INFO] [1712349616.017028]: Direct Instances: []\n", + "[INFO] [1712349616.017297]: Inverse Restrictions: []\n", + "[INFO] [1712349616.017551]: -------------------\n", + "[INFO] [1712349616.017795]: SOMA.MovedObject \n", + "[INFO] [1712349616.018067]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712349616.018358]: Ancestors: {SOMA.MovedObject, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", + "[INFO] [1712349616.018613]: Subclasses: []\n", + "[INFO] [1712349616.018903]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.019410]: Instances: []\n", + "[INFO] [1712349616.019694]: Direct Instances: []\n", + "[INFO] [1712349616.020476]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712349616.020742]: -------------------\n", + "[INFO] [1712349616.020991]: SOMA.Focusing \n", + "[INFO] [1712349616.021232]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712349616.021504]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.AttentionShift, SOMA.MentalTask, owl.Thing, SOMA.Focusing}\n", + "[INFO] [1712349616.021770]: Subclasses: []\n", + "[INFO] [1712349616.022069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.022556]: Instances: []\n", + "[INFO] [1712349616.022808]: Direct Instances: []\n", + "[INFO] [1712349616.023055]: Inverse Restrictions: []\n", + "[INFO] [1712349616.023302]: -------------------\n", + "[INFO] [1712349616.023544]: SOMA.Foolishness \n", + "[INFO] [1712349616.023779]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712349616.024040]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, SOMA.Foolishness, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.024291]: Subclasses: []\n", + "[INFO] [1712349616.024581]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.025070]: Instances: []\n", + "[INFO] [1712349616.025355]: Direct Instances: []\n", + "[INFO] [1712349616.025613]: Inverse Restrictions: []\n", + "[INFO] [1712349616.025852]: -------------------\n", + "[INFO] [1712349616.026083]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712349616.026313]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712349616.026592]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.ForgettingIncorrectInformation, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349616.026840]: Subclasses: []\n", + "[INFO] [1712349616.027125]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.027607]: Instances: []\n", + "[INFO] [1712349616.027871]: Direct Instances: []\n", + "[INFO] [1712349616.028341]: Inverse Restrictions: []\n", + "[INFO] [1712349616.028620]: -------------------\n", + "[INFO] [1712349616.028868]: SOMA.InformationDismissal \n", + "[INFO] [1712349616.029157]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712349616.029519]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349616.029808]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712349616.030113]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label]\n", + "[INFO] [1712349616.030605]: Instances: []\n", + "[INFO] [1712349616.030880]: Direct Instances: []\n", + "[INFO] [1712349616.031141]: Inverse Restrictions: []\n", + "[INFO] [1712349616.031386]: -------------------\n", + "[INFO] [1712349616.031629]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712349616.031867]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712349616.032147]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349616.032406]: Subclasses: []\n", + "[INFO] [1712349616.032724]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.033230]: Instances: []\n", + "[INFO] [1712349616.033505]: Direct Instances: []\n", + "[INFO] [1712349616.033763]: Inverse Restrictions: []\n", + "[INFO] [1712349616.034009]: -------------------\n", + "[INFO] [1712349616.034251]: SOMA.Language \n", + "[INFO] [1712349616.034510]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712349616.034780]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712349616.035042]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712349616.035340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.035861]: Instances: []\n", + "[INFO] [1712349616.036140]: Direct Instances: []\n", + "[INFO] [1712349616.037195]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712349616.037467]: -------------------\n", + "[INFO] [1712349616.037724]: SOMA.FreezerCompartment \n", + "[INFO] [1712349616.037976]: Super classes: [SOMA.Compartment]\n", + "[INFO] [1712349616.038253]: Ancestors: {SOMA.FunctionalPart, SOMA.FreezerCompartment, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.038504]: Subclasses: []\n", + "[INFO] [1712349616.038792]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.039298]: Instances: []\n", + "[INFO] [1712349616.039567]: Direct Instances: []\n", + "[INFO] [1712349616.039822]: Inverse Restrictions: []\n", + "[INFO] [1712349616.040061]: -------------------\n", + "[INFO] [1712349616.040396]: SOMA.Item \n", + "[INFO] [1712349616.040666]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349616.040954]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349616.041242]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712349616.041545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.042085]: Instances: []\n", + "[INFO] [1712349616.042348]: Direct Instances: []\n", + "[INFO] [1712349616.042720]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712349616.042974]: -------------------\n", + "[INFO] [1712349616.043225]: SOMA.FunctionalDesign \n", + "[INFO] [1712349616.043464]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712349616.043730]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.FunctionalDesign}\n", + "[INFO] [1712349616.043992]: Subclasses: []\n", + "[INFO] [1712349616.044286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.044767]: Instances: []\n", + "[INFO] [1712349616.045034]: Direct Instances: []\n", + "[INFO] [1712349616.045285]: Inverse Restrictions: []\n", + "[INFO] [1712349616.045533]: -------------------\n", + "[INFO] [1712349616.045772]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712349616.046005]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712349616.046244]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis}\n", + "[INFO] [1712349616.046504]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712349616.046795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.047296]: Instances: []\n", + "[INFO] [1712349616.047562]: Direct Instances: []\n", + "[INFO] [1712349616.047814]: Inverse Restrictions: []\n", + "[INFO] [1712349616.048066]: -------------------\n", + "[INFO] [1712349616.048303]: SOMA.LocatumRole \n", + "[INFO] [1712349616.048545]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349616.048819]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, SOMA.LocatumRole, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.049087]: Subclasses: []\n", + "[INFO] [1712349616.049409]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.049907]: Instances: []\n", + "[INFO] [1712349616.050164]: Direct Instances: []\n", + "[INFO] [1712349616.050520]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712349616.050778]: -------------------\n", + "[INFO] [1712349616.051021]: SOMA.RelatumRole \n", + "[INFO] [1712349616.051266]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349616.051545]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, SOMA.RelatumRole, DUL.Entity, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.051803]: Subclasses: []\n", + "[INFO] [1712349616.052101]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.052584]: Instances: []\n", + "[INFO] [1712349616.052856]: Direct Instances: []\n", + "[INFO] [1712349616.053216]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712349616.053469]: -------------------\n", + "[INFO] [1712349616.053709]: SOMA.GasCooktop \n", + "[INFO] [1712349616.053944]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712349616.054212]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.GasCooktop, DUL.PhysicalObject}\n", + "[INFO] [1712349616.054475]: Subclasses: []\n", + "[INFO] [1712349616.054765]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.055249]: Instances: []\n", + "[INFO] [1712349616.055505]: Direct Instances: []\n", + "[INFO] [1712349616.055749]: Inverse Restrictions: []\n", + "[INFO] [1712349616.055997]: -------------------\n", + "[INFO] [1712349616.056240]: SOMA.GetTaskParameter \n", + "[INFO] [1712349616.056477]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712349616.056744]: Ancestors: {SOMA.InformationAcquisition, SOMA.GetTaskParameter, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.057011]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712349616.057310]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.057798]: Instances: []\n", + "[INFO] [1712349616.058051]: Direct Instances: []\n", + "[INFO] [1712349616.058294]: Inverse Restrictions: []\n", + "[INFO] [1712349616.058524]: -------------------\n", + "[INFO] [1712349616.058767]: SOMA.Planning \n", + "[INFO] [1712349616.059387]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712349616.059642]: Ancestors: {SOMA.InformationAcquisition, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.059888]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712349616.060191]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isTaskOf]\n", + "[INFO] [1712349616.060684]: Instances: []\n", + "[INFO] [1712349616.061040]: Direct Instances: []\n", + "[INFO] [1712349616.061377]: Inverse Restrictions: []\n", + "[INFO] [1712349616.061658]: -------------------\n", + "[INFO] [1712349616.061927]: SOMA.Glass \n", + "[INFO] [1712349616.062180]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712349616.062461]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.Glass, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.062737]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", + "[INFO] [1712349616.063037]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.063541]: Instances: []\n", + "[INFO] [1712349616.063799]: Direct Instances: []\n", + "[INFO] [1712349616.064048]: Inverse Restrictions: []\n", + "[INFO] [1712349616.064298]: -------------------\n", + "[INFO] [1712349616.064540]: SOMA.GraphDatabase \n", + "[INFO] [1712349616.064782]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712349616.065048]: Ancestors: {SOMA.SoftwareRole, SOMA.GraphDatabase, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", + "[INFO] [1712349616.065295]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712349616.065599]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.066091]: Instances: []\n", + "[INFO] [1712349616.066364]: Direct Instances: []\n", + "[INFO] [1712349616.066619]: Inverse Restrictions: []\n", + "[INFO] [1712349616.066859]: -------------------\n", + "[INFO] [1712349616.067105]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712349616.067349]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712349616.067620]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.GraphQueryLanguage, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349616.067867]: Subclasses: []\n", + "[INFO] [1712349616.068154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.068651]: Instances: []\n", + "[INFO] [1712349616.068912]: Direct Instances: []\n", + "[INFO] [1712349616.069161]: Inverse Restrictions: []\n", + "[INFO] [1712349616.069402]: -------------------\n", + "[INFO] [1712349616.069643]: SOMA.QueryLanguage \n", + "[INFO] [1712349616.069885]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349616.070132]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712349616.070388]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712349616.070685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.071180]: Instances: []\n", + "[INFO] [1712349616.071432]: Direct Instances: []\n", + "[INFO] [1712349616.071680]: Inverse Restrictions: []\n", + "[INFO] [1712349616.071930]: -------------------\n", + "[INFO] [1712349616.072173]: SOMA.GraspTransfer \n", + "[INFO] [1712349616.072408]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712349616.072679]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.GraspTransfer, DUL.Entity, SOMA.Grasping, owl.Thing}\n", + "[INFO] [1712349616.072942]: Subclasses: []\n", + "[INFO] [1712349616.073247]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.073737]: Instances: []\n", + "[INFO] [1712349616.073987]: Direct Instances: []\n", + "[INFO] [1712349616.074229]: Inverse Restrictions: []\n", + "[INFO] [1712349616.074467]: -------------------\n", + "[INFO] [1712349616.074702]: SOMA.Grasping \n", + "[INFO] [1712349616.074932]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349616.075169]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Grasping, owl.Thing}\n", + "[INFO] [1712349616.075425]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712349616.075721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.076205]: Instances: []\n", + "[INFO] [1712349616.076464]: Direct Instances: []\n", + "[INFO] [1712349616.076720]: Inverse Restrictions: []\n", + "[INFO] [1712349616.076963]: -------------------\n", + "[INFO] [1712349616.077197]: SOMA.Releasing \n", + "[INFO] [1712349616.077424]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349616.077691]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Releasing, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.077940]: Subclasses: []\n", + "[INFO] [1712349616.078222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.078717]: Instances: []\n", + "[INFO] [1712349616.078974]: Direct Instances: []\n", + "[INFO] [1712349616.079219]: Inverse Restrictions: []\n", + "[INFO] [1712349616.079453]: -------------------\n", + "[INFO] [1712349616.079681]: SOMA.GraspingMotion \n", + "[INFO] [1712349616.079923]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712349616.081347]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.081648]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712349616.082023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.082557]: Instances: []\n", + "[INFO] [1712349616.082827]: Direct Instances: []\n", + "[INFO] [1712349616.083119]: Inverse Restrictions: []\n", + "[INFO] [1712349616.083380]: -------------------\n", + "[INFO] [1712349616.083631]: SOMA.IntermediateGrasp \n", + "[INFO] [1712349616.083869]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712349616.084230]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion, SOMA.IntermediateGrasp}\n", + "[INFO] [1712349616.084524]: Subclasses: []\n", + "[INFO] [1712349616.084849]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.085356]: Instances: []\n", + "[INFO] [1712349616.085645]: Direct Instances: []\n", + "[INFO] [1712349616.085935]: Inverse Restrictions: []\n", + "[INFO] [1712349616.086172]: -------------------\n", + "[INFO] [1712349616.086412]: SOMA.PowerGrasp \n", + "[INFO] [1712349616.086674]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712349616.086943]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, SOMA.PowerGrasp, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.087208]: Subclasses: []\n", + "[INFO] [1712349616.087516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.088008]: Instances: []\n", + "[INFO] [1712349616.088262]: Direct Instances: []\n", + "[INFO] [1712349616.088560]: Inverse Restrictions: []\n", + "[INFO] [1712349616.088808]: -------------------\n", + "[INFO] [1712349616.089056]: SOMA.PrecisionGrasp \n", + "[INFO] [1712349616.089292]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712349616.089555]: Ancestors: {SOMA.PrecisionGrasp, SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.089811]: Subclasses: []\n", + "[INFO] [1712349616.090103]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.090582]: Instances: []\n", + "[INFO] [1712349616.090841]: Direct Instances: []\n", + "[INFO] [1712349616.091142]: Inverse Restrictions: []\n", + "[INFO] [1712349616.091389]: -------------------\n", + "[INFO] [1712349616.091621]: SOMA.PrehensileMotion \n", + "[INFO] [1712349616.092251]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712349616.092535]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.092805]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712349616.093117]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349616.093616]: Instances: []\n", + "[INFO] [1712349616.093890]: Direct Instances: []\n", + "[INFO] [1712349616.094153]: Inverse Restrictions: []\n", + "[INFO] [1712349616.094393]: -------------------\n", + "[INFO] [1712349616.094628]: SOMA.ReleasingMotion \n", + "[INFO] [1712349616.094860]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712349616.095122]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.ReleasingMotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.095376]: Subclasses: []\n", + "[INFO] [1712349616.095666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.096149]: Instances: []\n", + "[INFO] [1712349616.096400]: Direct Instances: []\n", + "[INFO] [1712349616.096677]: Inverse Restrictions: []\n", + "[INFO] [1712349616.096929]: -------------------\n", + "[INFO] [1712349616.097170]: SOMA.GreenColor \n", + "[INFO] [1712349616.097404]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712349616.097660]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, SOMA.GreenColor, owl.Thing}\n", + "[INFO] [1712349616.097898]: Subclasses: []\n", + "[INFO] [1712349616.098180]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.098666]: Instances: []\n", + "[INFO] [1712349616.098923]: Direct Instances: []\n", + "[INFO] [1712349616.099170]: Inverse Restrictions: []\n", + "[INFO] [1712349616.099403]: -------------------\n", + "[INFO] [1712349616.099640]: SOMA.Gripper \n", + "[INFO] [1712349616.099879]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712349616.100143]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.Gripper, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", + "[INFO] [1712349616.100383]: Subclasses: []\n", + "[INFO] [1712349616.100661]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.101162]: Instances: []\n", + "[INFO] [1712349616.101425]: Direct Instances: []\n", + "[INFO] [1712349616.101671]: Inverse Restrictions: []\n", + "[INFO] [1712349616.101908]: -------------------\n", + "[INFO] [1712349616.102143]: SOMA.PrehensileEffector \n", + "[INFO] [1712349616.102387]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712349616.102637]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", + "[INFO] [1712349616.102882]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712349616.103160]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.103658]: Instances: []\n", + "[INFO] [1712349616.103922]: Direct Instances: []\n", + "[INFO] [1712349616.104229]: Inverse Restrictions: []\n", + "[INFO] [1712349616.104467]: -------------------\n", + "[INFO] [1712349616.104699]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712349616.104951]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712349616.105286]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.HardwareDiagnosis, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349616.105579]: Subclasses: []\n", + "[INFO] [1712349616.105890]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.106390]: Instances: []\n", + "[INFO] [1712349616.106669]: Direct Instances: []\n", + "[INFO] [1712349616.106935]: Inverse Restrictions: []\n", + "[INFO] [1712349616.107208]: -------------------\n", + "[INFO] [1712349616.107449]: SOMA.HasQualityRegion \n", + "[INFO] [1712349616.107717]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712349616.107985]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.HasQualityRegion, DUL.Object, DUL.Entity, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349616.108246]: Subclasses: []\n", + "[INFO] [1712349616.108552]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasRegion, rdf-schema.isDefinedBy, DUL.hasQuality]\n", + "[INFO] [1712349616.109049]: Instances: []\n", + "[INFO] [1712349616.109308]: Direct Instances: []\n", + "[INFO] [1712349616.109573]: Inverse Restrictions: []\n", + "[INFO] [1712349616.109818]: -------------------\n", + "[INFO] [1712349616.110057]: SOMA.Head \n", + "[INFO] [1712349616.110292]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712349616.110553]: Ancestors: {SOMA.FunctionalPart, SOMA.Head, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349616.110814]: Subclasses: []\n", + "[INFO] [1712349616.111108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.111595]: Instances: []\n", + "[INFO] [1712349616.111854]: Direct Instances: []\n", + "[INFO] [1712349616.112103]: Inverse Restrictions: []\n", + "[INFO] [1712349616.112350]: -------------------\n", + "[INFO] [1712349616.112590]: SOMA.HeadMovement \n", + "[INFO] [1712349616.112830]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712349616.113094]: Ancestors: {SOMA.BodyMovement, SOMA.HeadMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.113360]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712349616.113659]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.114154]: Instances: []\n", + "[INFO] [1712349616.114434]: Direct Instances: []\n", + "[INFO] [1712349616.114691]: Inverse Restrictions: []\n", + "[INFO] [1712349616.114935]: -------------------\n", + "[INFO] [1712349616.115172]: SOMA.HeadTurning \n", + "[INFO] [1712349616.115403]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712349616.115661]: Ancestors: {SOMA.BodyMovement, SOMA.HeadMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.HeadTurning}\n", + "[INFO] [1712349616.115968]: Subclasses: []\n", + "[INFO] [1712349616.116268]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.116753]: Instances: []\n", + "[INFO] [1712349616.117014]: Direct Instances: []\n", + "[INFO] [1712349616.117270]: Inverse Restrictions: []\n", + "[INFO] [1712349616.117526]: -------------------\n", + "[INFO] [1712349616.117769]: SOMA.Holding \n", + "[INFO] [1712349616.118009]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349616.118270]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Holding}\n", + "[INFO] [1712349616.118523]: Subclasses: []\n", + "[INFO] [1712349616.118810]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.119294]: Instances: []\n", + "[INFO] [1712349616.119544]: Direct Instances: []\n", + "[INFO] [1712349616.119784]: Inverse Restrictions: []\n", + "[INFO] [1712349616.120030]: -------------------\n", + "[INFO] [1712349616.120269]: SOMA.HostRole \n", + "[INFO] [1712349616.120523]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712349616.120790]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.HostRole, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.121048]: Subclasses: []\n", + "[INFO] [1712349616.121344]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", + "[INFO] [1712349616.121828]: Instances: []\n", + "[INFO] [1712349616.122082]: Direct Instances: []\n", + "[INFO] [1712349616.123121]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712349616.123398]: -------------------\n", + "[INFO] [1712349616.123659]: SOMA.PluginSpecification \n", + "[INFO] [1712349616.123914]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712349616.124185]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, SOMA.PluginSpecification, owl.Thing}\n", + "[INFO] [1712349616.124445]: Subclasses: []\n", + "[INFO] [1712349616.124743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", + "[INFO] [1712349616.125238]: Instances: []\n", + "[INFO] [1712349616.125495]: Direct Instances: []\n", + "[INFO] [1712349616.125813]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712349616.126074]: -------------------\n", + "[INFO] [1712349616.126320]: SOMA.Hotplate \n", + "[INFO] [1712349616.126559]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349616.126825]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, SOMA.Hotplate, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.127068]: Subclasses: []\n", + "[INFO] [1712349616.127345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.127845]: Instances: []\n", + "[INFO] [1712349616.128109]: Direct Instances: []\n", + "[INFO] [1712349616.128386]: Inverse Restrictions: [SOMA.Stove]\n", + "[INFO] [1712349616.128628]: -------------------\n", + "[INFO] [1712349616.128868]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712349616.129138]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712349616.129416]: Ancestors: {SOMA.System, SOMA.Human-readable_Programming_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Programming_Language, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349616.129665]: Subclasses: []\n", + "[INFO] [1712349616.129954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.130434]: Instances: []\n", + "[INFO] [1712349616.130701]: Direct Instances: []\n", + "[INFO] [1712349616.131736]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712349616.131996]: -------------------\n", + "[INFO] [1712349616.132259]: SOMA.Source_Code \n", + "[INFO] [1712349616.132529]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712349616.133034]: Ancestors: {SOMA.Source_Code, owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712349616.133297]: Subclasses: []\n", + "[INFO] [1712349616.133606]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.134110]: Instances: []\n", + "[INFO] [1712349616.134381]: Direct Instances: []\n", + "[INFO] [1712349616.134670]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712349616.134914]: -------------------\n", + "[INFO] [1712349616.135173]: SOMA.HumanActivityRecording \n", + "[INFO] [1712349616.135420]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712349616.135708]: Ancestors: {DUL.Situation, SOMA.Episode, DUL.Entity, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712349616.135983]: Subclasses: []\n", + "[INFO] [1712349616.136312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.136834]: Instances: []\n", + "[INFO] [1712349616.137120]: Direct Instances: []\n", + "[INFO] [1712349616.137394]: Inverse Restrictions: []\n", + "[INFO] [1712349616.137650]: -------------------\n", + "[INFO] [1712349616.137905]: SOMA.Imagining \n", + "[INFO] [1712349616.138147]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712349616.138410]: Ancestors: {SOMA.Imagining, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712349616.138679]: Subclasses: []\n", + "[INFO] [1712349616.138983]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.139496]: Instances: []\n", + "[INFO] [1712349616.139761]: Direct Instances: []\n", + "[INFO] [1712349616.140026]: Inverse Restrictions: []\n", + "[INFO] [1712349616.140279]: -------------------\n", + "[INFO] [1712349616.140525]: SOMA.Impediment \n", + "[INFO] [1712349616.140803]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712349616.141115]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Impediment, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349616.141388]: Subclasses: []\n", + "[INFO] [1712349616.141695]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.142194]: Instances: []\n", + "[INFO] [1712349616.142481]: Direct Instances: []\n", + "[INFO] [1712349616.142754]: Inverse Restrictions: []\n", + "[INFO] [1712349616.143011]: -------------------\n", + "[INFO] [1712349616.143262]: SOMA.Obstacle \n", + "[INFO] [1712349616.143513]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712349616.143807]: Ancestors: {DUL.SocialObject, SOMA.Obstacle, SOMA.EventAdjacentRole, DUL.Concept, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.144073]: Subclasses: []\n", + "[INFO] [1712349616.144371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.144878]: Instances: []\n", + "[INFO] [1712349616.145176]: Direct Instances: []\n", + "[INFO] [1712349616.145490]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712349616.145746]: -------------------\n", + "[INFO] [1712349616.145988]: SOMA.RestrictedObject \n", + "[INFO] [1712349616.146225]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712349616.146502]: Ancestors: {SOMA.RestrictedObject, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.146754]: Subclasses: []\n", + "[INFO] [1712349616.147046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.147549]: Instances: []\n", + "[INFO] [1712349616.147812]: Direct Instances: []\n", + "[INFO] [1712349616.148099]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712349616.148344]: -------------------\n", + "[INFO] [1712349616.148582]: SOMA.StateTransition \n", + "[INFO] [1712349616.148865]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712349616.149145]: Ancestors: {DUL.Situation, DUL.Entity, owl.Thing, SOMA.StateTransition, DUL.Transition}\n", + "[INFO] [1712349616.149420]: Subclasses: []\n", + "[INFO] [1712349616.149724]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasInitialScene, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.150218]: Instances: []\n", + "[INFO] [1712349616.150496]: Direct Instances: []\n", + "[INFO] [1712349616.150820]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712349616.151072]: -------------------\n", + "[INFO] [1712349616.151313]: SOMA.Inability \n", + "[INFO] [1712349616.151551]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712349616.151816]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Inability, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.152083]: Subclasses: []\n", + "[INFO] [1712349616.152379]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.153136]: Instances: []\n", + "[INFO] [1712349616.153464]: Direct Instances: []\n", + "[INFO] [1712349616.153729]: Inverse Restrictions: []\n", + "[INFO] [1712349616.153986]: -------------------\n", + "[INFO] [1712349616.154328]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712349616.154609]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712349616.154920]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.IncompatibleSoftware, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349616.155208]: Subclasses: []\n", + "[INFO] [1712349616.155531]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.156037]: Instances: []\n", + "[INFO] [1712349616.156319]: Direct Instances: []\n", + "[INFO] [1712349616.156580]: Inverse Restrictions: []\n", + "[INFO] [1712349616.156830]: -------------------\n", + "[INFO] [1712349616.157072]: SOMA.InductionCooktop \n", + "[INFO] [1712349616.157310]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712349616.157582]: Ancestors: {SOMA.FunctionalPart, SOMA.ElectricCooktop, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.InductionCooktop, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.157848]: Subclasses: []\n", + "[INFO] [1712349616.158143]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.158630]: Instances: []\n", + "[INFO] [1712349616.158887]: Direct Instances: []\n", + "[INFO] [1712349616.159132]: Inverse Restrictions: []\n", + "[INFO] [1712349616.159364]: -------------------\n", + "[INFO] [1712349616.159607]: SOMA.InductiveReasoning \n", + "[INFO] [1712349616.159846]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712349616.160119]: Ancestors: {SOMA.InformationAcquisition, SOMA.InductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.160362]: Subclasses: []\n", + "[INFO] [1712349616.160646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.161139]: Instances: []\n", + "[INFO] [1712349616.161412]: Direct Instances: []\n", + "[INFO] [1712349616.161666]: Inverse Restrictions: []\n", + "[INFO] [1712349616.161907]: -------------------\n", + "[INFO] [1712349616.162144]: SOMA.Infeasibility \n", + "[INFO] [1712349616.162379]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712349616.162653]: Ancestors: {DUL.Description, SOMA.Infeasibility, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.162908]: Subclasses: []\n", + "[INFO] [1712349616.163195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.163679]: Instances: []\n", + "[INFO] [1712349616.163938]: Direct Instances: []\n", + "[INFO] [1712349616.164180]: Inverse Restrictions: []\n", + "[INFO] [1712349616.164428]: -------------------\n", + "[INFO] [1712349616.164677]: SOMA.InferenceRules \n", + "[INFO] [1712349616.164918]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712349616.165187]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, SOMA.Item, SOMA.InferenceRules}\n", + "[INFO] [1712349616.165429]: Subclasses: []\n", + "[INFO] [1712349616.165713]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.166213]: Instances: []\n", + "[INFO] [1712349616.166480]: Direct Instances: []\n", + "[INFO] [1712349616.166732]: Inverse Restrictions: []\n", + "[INFO] [1712349616.166970]: -------------------\n", + "[INFO] [1712349616.167201]: SOMA.InformationRetrieval \n", + "[INFO] [1712349616.167454]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712349616.167737]: Ancestors: {owl.Thing, SOMA.InformationRetrieval, SOMA.InformationAcquisition}\n", + "[INFO] [1712349616.167996]: Subclasses: []\n", + "[INFO] [1712349616.168291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712349616.168779]: Instances: []\n", + "[INFO] [1712349616.169063]: Direct Instances: []\n", + "[INFO] [1712349616.169406]: Inverse Restrictions: []\n", + "[INFO] [1712349616.169679]: -------------------\n", + "[INFO] [1712349616.169926]: SOMA.InformationStorage \n", + "[INFO] [1712349616.170208]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712349616.170500]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", + "[INFO] [1712349616.170764]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712349616.171065]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label]\n", + "[INFO] [1712349616.171553]: Instances: []\n", + "[INFO] [1712349616.171821]: Direct Instances: []\n", + "[INFO] [1712349616.172074]: Inverse Restrictions: []\n", + "[INFO] [1712349616.172312]: -------------------\n", + "[INFO] [1712349616.172555]: SOMA.StoredObject \n", + "[INFO] [1712349616.172793]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712349616.173068]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.StoredObject, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", + "[INFO] [1712349616.173323]: Subclasses: []\n", + "[INFO] [1712349616.173615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.174104]: Instances: []\n", + "[INFO] [1712349616.174374]: Direct Instances: []\n", + "[INFO] [1712349616.174727]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712349616.174992]: -------------------\n", + "[INFO] [1712349616.175245]: SOMA.InsertedObject \n", + "[INFO] [1712349616.175491]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712349616.175757]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.InsertedObject, DUL.Entity, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", + "[INFO] [1712349616.176018]: Subclasses: []\n", + "[INFO] [1712349616.176312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.176805]: Instances: []\n", + "[INFO] [1712349616.177069]: Direct Instances: []\n", + "[INFO] [1712349616.177352]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712349616.177613]: -------------------\n", + "[INFO] [1712349616.177860]: SOMA.Instructions \n", + "[INFO] [1712349616.178100]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712349616.178365]: Ancestors: {SOMA.Patient, DUL.SocialObject, SOMA.Instructions, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349616.178607]: Subclasses: []\n", + "[INFO] [1712349616.178896]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.179393]: Instances: []\n", + "[INFO] [1712349616.179654]: Direct Instances: []\n", + "[INFO] [1712349616.179899]: Inverse Restrictions: []\n", + "[INFO] [1712349616.180131]: -------------------\n", + "[INFO] [1712349616.180366]: SOMA.Interpreting \n", + "[INFO] [1712349616.180592]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349616.180863]: Ancestors: {SOMA.Interpreting, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.181214]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712349616.181541]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.182048]: Instances: []\n", + "[INFO] [1712349616.182327]: Direct Instances: []\n", + "[INFO] [1712349616.182586]: Inverse Restrictions: []\n", + "[INFO] [1712349616.182829]: -------------------\n", + "[INFO] [1712349616.183066]: SOMA.InterrogativeClause \n", + "[INFO] [1712349616.183302]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712349616.183577]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ClausalObject, SOMA.InterrogativeClause, SOMA.Phrase}\n", + "[INFO] [1712349616.183827]: Subclasses: []\n", + "[INFO] [1712349616.184128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.184615]: Instances: []\n", + "[INFO] [1712349616.184889]: Direct Instances: []\n", + "[INFO] [1712349616.185207]: Inverse Restrictions: []\n", + "[INFO] [1712349616.185456]: -------------------\n", + "[INFO] [1712349616.185692]: SOMA.Introspecting \n", + "[INFO] [1712349616.185930]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712349616.186187]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Introspecting}\n", + "[INFO] [1712349616.186451]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712349616.186748]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.187235]: Instances: []\n", + "[INFO] [1712349616.187486]: Direct Instances: []\n", + "[INFO] [1712349616.187735]: Inverse Restrictions: []\n", + "[INFO] [1712349616.187979]: -------------------\n", + "[INFO] [1712349616.188218]: SOMA.JamJar \n", + "[INFO] [1712349616.188454]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712349616.188728]: Ancestors: {DUL.Object, SOMA.JamJar, DUL.Entity, owl.Thing, SOMA.Jar, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.189005]: Subclasses: [SOMA.RaspberryJamJar]\n", + "[INFO] [1712349616.189304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.189800]: Instances: []\n", + "[INFO] [1712349616.190062]: Direct Instances: []\n", + "[INFO] [1712349616.190308]: Inverse Restrictions: []\n", + "[INFO] [1712349616.190548]: -------------------\n", + "[INFO] [1712349616.190793]: SOMA.Jar \n", + "[INFO] [1712349616.191029]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712349616.191275]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Jar, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.191521]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", + "[INFO] [1712349616.191808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.192312]: Instances: []\n", + "[INFO] [1712349616.192575]: Direct Instances: []\n", + "[INFO] [1712349616.192827]: Inverse Restrictions: []\n", + "[INFO] [1712349616.193092]: -------------------\n", + "[INFO] [1712349616.193341]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712349616.193576]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712349616.193843]: Ancestors: {SOMA.KineticFrictionAttribute, SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.194083]: Subclasses: []\n", + "[INFO] [1712349616.194369]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.194862]: Instances: []\n", + "[INFO] [1712349616.195129]: Direct Instances: []\n", + "[INFO] [1712349616.195388]: Inverse Restrictions: []\n", + "[INFO] [1712349616.195630]: -------------------\n", + "[INFO] [1712349616.195866]: SOMA.KinoDynamicData \n", + "[INFO] [1712349616.196113]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349616.196383]: Ancestors: {DUL.InformationObject, SOMA.KinoDynamicData, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.196626]: Subclasses: []\n", + "[INFO] [1712349616.196918]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.197511]: Instances: []\n", + "[INFO] [1712349616.197787]: Direct Instances: []\n", + "[INFO] [1712349616.198039]: Inverse Restrictions: []\n", + "[INFO] [1712349616.198278]: -------------------\n", + "[INFO] [1712349616.198517]: SOMA.Kitchen \n", + "[INFO] [1712349616.198768]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712349616.199045]: Ancestors: {SOMA.Room, DUL.Object, SOMA.Kitchen, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", + "[INFO] [1712349616.199290]: Subclasses: []\n", + "[INFO] [1712349616.199568]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", + "[INFO] [1712349616.200065]: Instances: []\n", + "[INFO] [1712349616.200322]: Direct Instances: []\n", + "[INFO] [1712349616.200566]: Inverse Restrictions: []\n", + "[INFO] [1712349616.200799]: -------------------\n", + "[INFO] [1712349616.201033]: SOMA.Room \n", + "[INFO] [1712349616.201276]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712349616.201521]: Ancestors: {SOMA.Room, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", + "[INFO] [1712349616.201761]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712349616.202042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.202543]: Instances: []\n", + "[INFO] [1712349616.202804]: Direct Instances: []\n", + "[INFO] [1712349616.203055]: Inverse Restrictions: []\n", + "[INFO] [1712349616.203285]: -------------------\n", + "[INFO] [1712349616.203518]: SOMA.KitchenCabinet \n", + "[INFO] [1712349616.203757]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712349616.204029]: Ancestors: {SOMA.KitchenCabinet, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Cupboard}\n", + "[INFO] [1712349616.204273]: Subclasses: []\n", + "[INFO] [1712349616.204550]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.205048]: Instances: []\n", + "[INFO] [1712349616.205317]: Direct Instances: []\n", + "[INFO] [1712349616.205568]: Inverse Restrictions: []\n", + "[INFO] [1712349616.205805]: -------------------\n", + "[INFO] [1712349616.206035]: SOMA.Knife \n", + "[INFO] [1712349616.206275]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712349616.206537]: Ancestors: {SOMA.Knife, SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.206794]: Subclasses: [SOMA.KitchenKnife]\n", + "[INFO] [1712349616.207076]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.207559]: Instances: []\n", + "[INFO] [1712349616.207826]: Direct Instances: []\n", + "[INFO] [1712349616.208078]: Inverse Restrictions: []\n", + "[INFO] [1712349616.208316]: -------------------\n", + "[INFO] [1712349616.208545]: SOMA.KitchenUnit \n", + "[INFO] [1712349616.208781]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712349616.209059]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.KitchenUnit}\n", + "[INFO] [1712349616.209311]: Subclasses: []\n", + "[INFO] [1712349616.209596]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.210076]: Instances: []\n", + "[INFO] [1712349616.210342]: Direct Instances: []\n", + "[INFO] [1712349616.210591]: Inverse Restrictions: []\n", + "[INFO] [1712349616.210824]: -------------------\n", + "[INFO] [1712349616.211057]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712349616.211290]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349616.211546]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.KnowledgeRepresentationLanguage, SOMA.Language}\n", + "[INFO] [1712349616.211811]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712349616.212102]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.212585]: Instances: []\n", + "[INFO] [1712349616.212842]: Direct Instances: []\n", + "[INFO] [1712349616.213106]: Inverse Restrictions: []\n", + "[INFO] [1712349616.213344]: -------------------\n", + "[INFO] [1712349616.213578]: SOMA.Labeling \n", + "[INFO] [1712349616.213809]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712349616.214072]: Ancestors: {SOMA.Interpreting, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.214331]: Subclasses: []\n", + "[INFO] [1712349616.214621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.215101]: Instances: []\n", + "[INFO] [1712349616.215346]: Direct Instances: []\n", + "[INFO] [1712349616.215590]: Inverse Restrictions: []\n", + "[INFO] [1712349616.215830]: -------------------\n", + "[INFO] [1712349616.216065]: SOMA.Text \n", + "[INFO] [1712349616.216294]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.217511]: Ancestors: {owl.Thing, SOMA.Text}\n", + "[INFO] [1712349616.217803]: Subclasses: []\n", + "[INFO] [1712349616.218112]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.218610]: Instances: []\n", + "[INFO] [1712349616.218883]: Direct Instances: []\n", + "[INFO] [1712349616.219965]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712349616.220223]: -------------------\n", + "[INFO] [1712349616.220468]: SOMA.Leaning \n", + "[INFO] [1712349616.220706]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712349616.220988]: Ancestors: {SOMA.Leaning, SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.221253]: Subclasses: []\n", + "[INFO] [1712349616.221542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.222030]: Instances: []\n", + "[INFO] [1712349616.222291]: Direct Instances: []\n", + "[INFO] [1712349616.222551]: Inverse Restrictions: []\n", + "[INFO] [1712349616.222794]: -------------------\n", + "[INFO] [1712349616.223032]: SOMA.PosturalMoving \n", + "[INFO] [1712349616.223265]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712349616.223511]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.223775]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712349616.224067]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.224562]: Instances: []\n", + "[INFO] [1712349616.224833]: Direct Instances: []\n", + "[INFO] [1712349616.225098]: Inverse Restrictions: []\n", + "[INFO] [1712349616.225338]: -------------------\n", + "[INFO] [1712349616.225572]: SOMA.Learning \n", + "[INFO] [1712349616.225803]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712349616.226063]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.Learning, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", + "[INFO] [1712349616.226333]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712349616.226623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.227100]: Instances: []\n", + "[INFO] [1712349616.227352]: Direct Instances: []\n", + "[INFO] [1712349616.227609]: Inverse Restrictions: []\n", + "[INFO] [1712349616.227859]: -------------------\n", + "[INFO] [1712349616.228104]: SOMA.Leg \n", + "[INFO] [1712349616.228338]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712349616.228600]: Ancestors: {SOMA.FunctionalPart, SOMA.Leg, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", + "[INFO] [1712349616.228858]: Subclasses: []\n", + "[INFO] [1712349616.229152]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.229796]: Instances: []\n", + "[INFO] [1712349616.230109]: Direct Instances: []\n", + "[INFO] [1712349616.230414]: Inverse Restrictions: []\n", + "[INFO] [1712349616.230678]: -------------------\n", + "[INFO] [1712349616.230940]: SOMA.Lid \n", + "[INFO] [1712349616.231190]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349616.231480]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Lid}\n", + "[INFO] [1712349616.231739]: Subclasses: []\n", + "[INFO] [1712349616.232029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.232507]: Instances: []\n", + "[INFO] [1712349616.232761]: Direct Instances: []\n", + "[INFO] [1712349616.233026]: Inverse Restrictions: []\n", + "[INFO] [1712349616.233283]: -------------------\n", + "[INFO] [1712349616.233526]: SOMA.LimbMotion \n", + "[INFO] [1712349616.234182]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712349616.234493]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.LimbMotion, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.234756]: Subclasses: []\n", + "[INFO] [1712349616.235064]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349616.235551]: Instances: []\n", + "[INFO] [1712349616.235825]: Direct Instances: []\n", + "[INFO] [1712349616.236077]: Inverse Restrictions: []\n", + "[INFO] [1712349616.236317]: -------------------\n", + "[INFO] [1712349616.236551]: SOMA.LinkedObject \n", + "[INFO] [1712349616.236790]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712349616.237058]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, SOMA.LinkedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.237318]: Subclasses: []\n", + "[INFO] [1712349616.237609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.238090]: Instances: []\n", + "[INFO] [1712349616.238350]: Direct Instances: []\n", + "[INFO] [1712349616.238697]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712349616.238959]: -------------------\n", + "[INFO] [1712349616.239218]: SOMA.LinkageState \n", + "[INFO] [1712349616.239469]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712349616.239743]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.LinkageState, owl.Thing}\n", + "[INFO] [1712349616.239990]: Subclasses: []\n", + "[INFO] [1712349616.240285]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349616.240801]: Instances: []\n", + "[INFO] [1712349616.241076]: Direct Instances: []\n", + "[INFO] [1712349616.241335]: Inverse Restrictions: []\n", + "[INFO] [1712349616.241579]: -------------------\n", + "[INFO] [1712349616.241825]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712349616.242073]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349616.242337]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.242596]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712349616.242888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.243399]: Instances: []\n", + "[INFO] [1712349616.243675]: Direct Instances: []\n", + "[INFO] [1712349616.243941]: Inverse Restrictions: []\n", + "[INFO] [1712349616.244187]: -------------------\n", + "[INFO] [1712349616.244436]: SOMA.SpatialRelationRole \n", + "[INFO] [1712349616.244682]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712349616.245058]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.245410]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712349616.245750]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.246269]: Instances: []\n", + "[INFO] [1712349616.246539]: Direct Instances: []\n", + "[INFO] [1712349616.246798]: Inverse Restrictions: []\n", + "[INFO] [1712349616.247042]: -------------------\n", + "[INFO] [1712349616.247279]: SOMA.LocutionaryAction \n", + "[INFO] [1712349616.247534]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.248740]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", + "[INFO] [1712349616.249021]: Subclasses: []\n", + "[INFO] [1712349616.249362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349616.249877]: Instances: []\n", + "[INFO] [1712349616.250144]: Direct Instances: []\n", + "[INFO] [1712349616.250397]: Inverse Restrictions: []\n", + "[INFO] [1712349616.250648]: -------------------\n", + "[INFO] [1712349616.250890]: SOMA.LookingAt \n", + "[INFO] [1712349616.251129]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349616.251399]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.LookingAt, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.251661]: Subclasses: []\n", + "[INFO] [1712349616.251955]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.252450]: Instances: []\n", + "[INFO] [1712349616.252725]: Direct Instances: []\n", + "[INFO] [1712349616.253051]: Inverse Restrictions: []\n", + "[INFO] [1712349616.253336]: -------------------\n", + "[INFO] [1712349616.253594]: SOMA.LookingFor \n", + "[INFO] [1712349616.253843]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712349616.254109]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.LookingFor}\n", + "[INFO] [1712349616.254356]: Subclasses: []\n", + "[INFO] [1712349616.254646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.255143]: Instances: []\n", + "[INFO] [1712349616.255410]: Direct Instances: []\n", + "[INFO] [1712349616.255664]: Inverse Restrictions: []\n", + "[INFO] [1712349616.255903]: -------------------\n", + "[INFO] [1712349616.256139]: SOMA.Lowering \n", + "[INFO] [1712349616.256380]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349616.256652]: Ancestors: {SOMA.Lowering, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.256901]: Subclasses: []\n", + "[INFO] [1712349616.257197]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.257679]: Instances: []\n", + "[INFO] [1712349616.257948]: Direct Instances: []\n", + "[INFO] [1712349616.258199]: Inverse Restrictions: []\n", + "[INFO] [1712349616.258435]: -------------------\n", + "[INFO] [1712349616.258669]: SOMA.PhysicalAction \n", + "[INFO] [1712349616.258899]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712349616.259167]: Ancestors: {DUL.Entity, DUL.Event, DUL.Action, owl.Thing, SOMA.PhysicalAction}\n", + "[INFO] [1712349616.259414]: Subclasses: []\n", + "[INFO] [1712349616.259703]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.260180]: Instances: []\n", + "[INFO] [1712349616.260447]: Direct Instances: []\n", + "[INFO] [1712349616.260735]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349616.260980]: -------------------\n", + "[INFO] [1712349616.261217]: SOMA.Markup_Language \n", + "[INFO] [1712349616.261448]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349616.261711]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Markup_Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712349616.261964]: Subclasses: []\n", + "[INFO] [1712349616.262261]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.262744]: Instances: []\n", + "[INFO] [1712349616.263016]: Direct Instances: []\n", + "[INFO] [1712349616.263273]: Inverse Restrictions: []\n", + "[INFO] [1712349616.263520]: -------------------\n", + "[INFO] [1712349616.263757]: SOMA.Masterful \n", + "[INFO] [1712349616.263993]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712349616.264257]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.Masterful, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.264521]: Subclasses: []\n", + "[INFO] [1712349616.264822]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.265312]: Instances: []\n", + "[INFO] [1712349616.265569]: Direct Instances: []\n", + "[INFO] [1712349616.265819]: Inverse Restrictions: []\n", + "[INFO] [1712349616.266068]: -------------------\n", + "[INFO] [1712349616.266313]: SOMA.Material \n", + "[INFO] [1712349616.266549]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349616.266805]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Material, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712349616.267043]: Subclasses: []\n", + "[INFO] [1712349616.267336]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.267826]: Instances: []\n", + "[INFO] [1712349616.268081]: Direct Instances: []\n", + "[INFO] [1712349616.268325]: Inverse Restrictions: []\n", + "[INFO] [1712349616.268560]: -------------------\n", + "[INFO] [1712349616.268809]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712349616.269064]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712349616.269332]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.MedicalDiagnosis, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis}\n", + "[INFO] [1712349616.269586]: Subclasses: []\n", + "[INFO] [1712349616.269883]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", + "[INFO] [1712349616.270387]: Instances: []\n", + "[INFO] [1712349616.270651]: Direct Instances: []\n", + "[INFO] [1712349616.270901]: Inverse Restrictions: []\n", + "[INFO] [1712349616.271140]: -------------------\n", + "[INFO] [1712349616.271378]: SOMA.Memorizing \n", + "[INFO] [1712349616.271622]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712349616.271904]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.Learning, SOMA.Memorizing, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", + "[INFO] [1712349616.272157]: Subclasses: []\n", + "[INFO] [1712349616.272448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.272951]: Instances: []\n", + "[INFO] [1712349616.273328]: Direct Instances: []\n", + "[INFO] [1712349616.273622]: Inverse Restrictions: []\n", + "[INFO] [1712349616.273889]: -------------------\n", + "[INFO] [1712349616.274145]: SOMA.MentalAction \n", + "[INFO] [1712349616.274791]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712349616.275074]: Ancestors: {SOMA.MentalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712349616.275340]: Subclasses: []\n", + "[INFO] [1712349616.275644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.276137]: Instances: []\n", + "[INFO] [1712349616.276400]: Direct Instances: []\n", + "[INFO] [1712349616.276697]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712349616.276949]: -------------------\n", + "[INFO] [1712349616.277184]: SOMA.MeshShape \n", + "[INFO] [1712349616.277454]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712349616.277740]: Ancestors: {DUL.Region, DUL.Entity, SOMA.MeshShape, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349616.277994]: Subclasses: []\n", + "[INFO] [1712349616.278287]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasFilePath, rdf-schema.label]\n", + "[INFO] [1712349616.278774]: Instances: []\n", + "[INFO] [1712349616.279044]: Direct Instances: []\n", + "[INFO] [1712349616.279302]: Inverse Restrictions: []\n", + "[INFO] [1712349616.279542]: -------------------\n", + "[INFO] [1712349616.279781]: SOMA.MeshShapeData \n", + "[INFO] [1712349616.280027]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349616.280294]: Ancestors: {DUL.InformationObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.MeshShapeData}\n", + "[INFO] [1712349616.280555]: Subclasses: []\n", + "[INFO] [1712349616.280851]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.281335]: Instances: []\n", + "[INFO] [1712349616.281589]: Direct Instances: []\n", + "[INFO] [1712349616.281829]: Inverse Restrictions: []\n", + "[INFO] [1712349616.282071]: -------------------\n", + "[INFO] [1712349616.282315]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712349616.282555]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712349616.282835]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.MetaCognitionEvaluationTopic, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.283079]: Subclasses: []\n", + "[INFO] [1712349616.283367]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.283858]: Instances: []\n", + "[INFO] [1712349616.284119]: Direct Instances: []\n", + "[INFO] [1712349616.284374]: Inverse Restrictions: []\n", + "[INFO] [1712349616.284614]: -------------------\n", + "[INFO] [1712349616.284865]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712349616.285116]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349616.285367]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.285621]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712349616.285905]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.286412]: Instances: []\n", + "[INFO] [1712349616.286676]: Direct Instances: []\n", + "[INFO] [1712349616.286927]: Inverse Restrictions: []\n", + "[INFO] [1712349616.287167]: -------------------\n", + "[INFO] [1712349616.287404]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712349616.287643]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712349616.287917]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.288164]: Subclasses: []\n", + "[INFO] [1712349616.288449]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.288953]: Instances: []\n", + "[INFO] [1712349616.289227]: Direct Instances: []\n", + "[INFO] [1712349616.289498]: Inverse Restrictions: []\n", + "[INFO] [1712349616.289741]: -------------------\n", + "[INFO] [1712349616.289974]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712349616.290205]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712349616.290481]: Ancestors: {SOMA.MetaCognitionPlanningTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.290730]: Subclasses: []\n", + "[INFO] [1712349616.291015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.291493]: Instances: []\n", + "[INFO] [1712349616.291760]: Direct Instances: []\n", + "[INFO] [1712349616.292013]: Inverse Restrictions: []\n", + "[INFO] [1712349616.292250]: -------------------\n", + "[INFO] [1712349616.292485]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712349616.292714]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712349616.292970]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.293248]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712349616.293542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.294052]: Instances: []\n", + "[INFO] [1712349616.294319]: Direct Instances: []\n", + "[INFO] [1712349616.294577]: Inverse Restrictions: []\n", + "[INFO] [1712349616.294819]: -------------------\n", + "[INFO] [1712349616.295054]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712349616.295290]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712349616.295562]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.MetacognitiveControlling}\n", + "[INFO] [1712349616.295820]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712349616.296108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.296591]: Instances: []\n", + "[INFO] [1712349616.296870]: Direct Instances: []\n", + "[INFO] [1712349616.297136]: Inverse Restrictions: []\n", + "[INFO] [1712349616.297379]: -------------------\n", + "[INFO] [1712349616.297619]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712349616.297863]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712349616.298127]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting}\n", + "[INFO] [1712349616.298393]: Subclasses: []\n", + "[INFO] [1712349616.298696]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.299190]: Instances: []\n", + "[INFO] [1712349616.299492]: Direct Instances: []\n", + "[INFO] [1712349616.299749]: Inverse Restrictions: []\n", + "[INFO] [1712349616.299999]: -------------------\n", + "[INFO] [1712349616.300264]: SOMA.MilkBottle \n", + "[INFO] [1712349616.300514]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712349616.300788]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Bottle, owl.Thing, SOMA.MilkBottle, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.301042]: Subclasses: []\n", + "[INFO] [1712349616.301333]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.301842]: Instances: []\n", + "[INFO] [1712349616.302118]: Direct Instances: []\n", + "[INFO] [1712349616.302379]: Inverse Restrictions: []\n", + "[INFO] [1712349616.302630]: -------------------\n", + "[INFO] [1712349616.302879]: SOMA.MilkPack \n", + "[INFO] [1712349616.303134]: Super classes: [SOMA.Pack]\n", + "[INFO] [1712349616.303432]: Ancestors: {SOMA.MilkPack, DUL.Object, SOMA.Pack, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.303697]: Subclasses: []\n", + "[INFO] [1712349616.303985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.304466]: Instances: []\n", + "[INFO] [1712349616.304745]: Direct Instances: []\n", + "[INFO] [1712349616.305009]: Inverse Restrictions: []\n", + "[INFO] [1712349616.305261]: -------------------\n", + "[INFO] [1712349616.305503]: SOMA.Pack \n", + "[INFO] [1712349616.305745]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712349616.306003]: Ancestors: {DUL.Object, SOMA.Pack, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.306271]: Subclasses: [SOMA.MilkPack]\n", + "[INFO] [1712349616.306559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.307044]: Instances: []\n", + "[INFO] [1712349616.307325]: Direct Instances: []\n", + "[INFO] [1712349616.307588]: Inverse Restrictions: []\n", + "[INFO] [1712349616.307831]: -------------------\n", + "[INFO] [1712349616.308075]: SOMA.Mixing \n", + "[INFO] [1712349616.308318]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712349616.308600]: Ancestors: {SOMA.Mixing, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.308867]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712349616.309170]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.309691]: Instances: []\n", + "[INFO] [1712349616.309967]: Direct Instances: []\n", + "[INFO] [1712349616.310225]: Inverse Restrictions: []\n", + "[INFO] [1712349616.310473]: -------------------\n", + "[INFO] [1712349616.310714]: SOMA.MixingTheory \n", + "[INFO] [1712349616.310965]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712349616.311257]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.MixingTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349616.311521]: Subclasses: []\n", + "[INFO] [1712349616.311823]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349616.312337]: Instances: []\n", + "[INFO] [1712349616.312614]: Direct Instances: []\n", + "[INFO] [1712349616.312874]: Inverse Restrictions: []\n", + "[INFO] [1712349616.313123]: -------------------\n", + "[INFO] [1712349616.313368]: SOMA.MonitoringJointState \n", + "[INFO] [1712349616.313608]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712349616.313904]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MonitoringJointState, SOMA.Proprioceiving, owl.Thing}\n", + "[INFO] [1712349616.314172]: Subclasses: []\n", + "[INFO] [1712349616.314465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.314956]: Instances: []\n", + "[INFO] [1712349616.315236]: Direct Instances: []\n", + "[INFO] [1712349616.315498]: Inverse Restrictions: []\n", + "[INFO] [1712349616.315749]: -------------------\n", + "[INFO] [1712349616.315991]: SOMA.Proprioceiving \n", + "[INFO] [1712349616.316236]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349616.316501]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Proprioceiving, owl.Thing}\n", + "[INFO] [1712349616.316762]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712349616.317069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.317582]: Instances: []\n", + "[INFO] [1712349616.317854]: Direct Instances: []\n", + "[INFO] [1712349616.318111]: Inverse Restrictions: []\n", + "[INFO] [1712349616.318355]: -------------------\n", + "[INFO] [1712349616.318595]: SOMA.MovingAway \n", + "[INFO] [1712349616.318846]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349616.319133]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MovingAway, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.319391]: Subclasses: []\n", + "[INFO] [1712349616.319690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.320222]: Instances: []\n", + "[INFO] [1712349616.320508]: Direct Instances: []\n", + "[INFO] [1712349616.320764]: Inverse Restrictions: []\n", + "[INFO] [1712349616.321014]: -------------------\n", + "[INFO] [1712349616.321257]: SOMA.MovingTo \n", + "[INFO] [1712349616.321510]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712349616.321784]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.MovingTo, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.322037]: Subclasses: []\n", + "[INFO] [1712349616.322328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.322840]: Instances: []\n", + "[INFO] [1712349616.323110]: Direct Instances: []\n", + "[INFO] [1712349616.323371]: Inverse Restrictions: []\n", + "[INFO] [1712349616.323617]: -------------------\n", + "[INFO] [1712349616.323855]: SOMA.Natural_Language \n", + "[INFO] [1712349616.324135]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712349616.324420]: Ancestors: {SOMA.Natural_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712349616.324678]: Subclasses: []\n", + "[INFO] [1712349616.325102]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.325700]: Instances: []\n", + "[INFO] [1712349616.326032]: Direct Instances: []\n", + "[INFO] [1712349616.326385]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712349616.326656]: -------------------\n", + "[INFO] [1712349616.326915]: SOMA.Natural_Language_Text \n", + "[INFO] [1712349616.327166]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.327676]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", + "[INFO] [1712349616.327970]: Subclasses: []\n", + "[INFO] [1712349616.328286]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.328795]: Instances: []\n", + "[INFO] [1712349616.329074]: Direct Instances: []\n", + "[INFO] [1712349616.329386]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712349616.329644]: -------------------\n", + "[INFO] [1712349616.329886]: SOMA.NutellaJar \n", + "[INFO] [1712349616.330125]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712349616.330389]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Jar, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.NutellaJar}\n", + "[INFO] [1712349616.330652]: Subclasses: []\n", + "[INFO] [1712349616.330945]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.331437]: Instances: []\n", + "[INFO] [1712349616.331692]: Direct Instances: []\n", + "[INFO] [1712349616.331934]: Inverse Restrictions: []\n", + "[INFO] [1712349616.332175]: -------------------\n", + "[INFO] [1712349616.332418]: SOMA.Ontology \n", + "[INFO] [1712349616.332671]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712349616.333904]: Ancestors: {owl.Thing, SOMA.Ontology, SOMA.Structured_Text}\n", + "[INFO] [1712349616.334200]: Subclasses: []\n", + "[INFO] [1712349616.334523]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.335023]: Instances: []\n", + "[INFO] [1712349616.335282]: Direct Instances: []\n", + "[INFO] [1712349616.335583]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712349616.335846]: -------------------\n", + "[INFO] [1712349616.336095]: SOMA.Ontology_Language \n", + "[INFO] [1712349616.336342]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712349616.336612]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Ontology_Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.KnowledgeRepresentationLanguage, SOMA.Language}\n", + "[INFO] [1712349616.336864]: Subclasses: []\n", + "[INFO] [1712349616.337162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.337660]: Instances: []\n", + "[INFO] [1712349616.337916]: Direct Instances: []\n", + "[INFO] [1712349616.338219]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712349616.338474]: -------------------\n", + "[INFO] [1712349616.338717]: SOMA.Option \n", + "[INFO] [1712349616.338954]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712349616.339213]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Option, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.339451]: Subclasses: []\n", + "[INFO] [1712349616.339742]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.340227]: Instances: []\n", + "[INFO] [1712349616.340477]: Direct Instances: []\n", + "[INFO] [1712349616.340714]: Inverse Restrictions: []\n", + "[INFO] [1712349616.340951]: -------------------\n", + "[INFO] [1712349616.341189]: SOMA.Singleton \n", + "[INFO] [1712349616.341423]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.341656]: Ancestors: {owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712349616.341892]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712349616.342174]: Properties: [rdf-schema.isDefinedBy, SOMA.encapsulates, rdf-schema.comment]\n", + "[INFO] [1712349616.342716]: Instances: []\n", + "[INFO] [1712349616.342980]: Direct Instances: []\n", + "[INFO] [1712349616.343231]: Inverse Restrictions: []\n", + "[INFO] [1712349616.343467]: -------------------\n", + "[INFO] [1712349616.343701]: SOMA.Orienting \n", + "[INFO] [1712349616.343928]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712349616.344209]: Ancestors: {SOMA.Orienting, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Positioning, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.344462]: Subclasses: []\n", + "[INFO] [1712349616.344747]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.345227]: Instances: []\n", + "[INFO] [1712349616.345497]: Direct Instances: []\n", + "[INFO] [1712349616.345747]: Inverse Restrictions: []\n", + "[INFO] [1712349616.345984]: -------------------\n", + "[INFO] [1712349616.346216]: SOMA.Positioning \n", + "[INFO] [1712349616.346458]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349616.346706]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Positioning, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.346947]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712349616.347224]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.347728]: Instances: []\n", + "[INFO] [1712349616.347990]: Direct Instances: []\n", + "[INFO] [1712349616.348242]: Inverse Restrictions: []\n", + "[INFO] [1712349616.348478]: -------------------\n", + "[INFO] [1712349616.348710]: SOMA.Origin \n", + "[INFO] [1712349616.348951]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712349616.349251]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Location, SOMA.Origin, DUL.Role}\n", + "[INFO] [1712349616.349507]: Subclasses: []\n", + "[INFO] [1712349616.349790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.350281]: Instances: []\n", + "[INFO] [1712349616.350539]: Direct Instances: []\n", + "[INFO] [1712349616.350820]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712349616.351060]: -------------------\n", + "[INFO] [1712349616.351290]: SOMA.Oven \n", + "[INFO] [1712349616.351546]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", + "[INFO] [1712349616.351815]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Oven}\n", + "[INFO] [1712349616.352055]: Subclasses: []\n", + "[INFO] [1712349616.352330]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", + "[INFO] [1712349616.352811]: Instances: []\n", + "[INFO] [1712349616.353089]: Direct Instances: []\n", + "[INFO] [1712349616.353345]: Inverse Restrictions: []\n", + "[INFO] [1712349616.353581]: -------------------\n", + "[INFO] [1712349616.353813]: SOMA.TemperingByHeating \n", + "[INFO] [1712349616.354036]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712349616.354590]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.TemperingByHeating, DUL.Entity, SOMA.Variability, SOMA.Tempering, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349616.354884]: Subclasses: []\n", + "[INFO] [1712349616.355177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.355673]: Instances: []\n", + "[INFO] [1712349616.355959]: Direct Instances: []\n", + "[INFO] [1712349616.356238]: Inverse Restrictions: [SOMA.Oven]\n", + "[INFO] [1712349616.356485]: -------------------\n", + "[INFO] [1712349616.356726]: SOMA.Pan \n", + "[INFO] [1712349616.356972]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712349616.357250]: Ancestors: {SOMA.Crockery, SOMA.Tableware, SOMA.Pan, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.357496]: Subclasses: []\n", + "[INFO] [1712349616.357780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.358271]: Instances: []\n", + "[INFO] [1712349616.358535]: Direct Instances: []\n", + "[INFO] [1712349616.358784]: Inverse Restrictions: []\n", + "[INFO] [1712349616.359020]: -------------------\n", + "[INFO] [1712349616.359259]: SOMA.Pancake \n", + "[INFO] [1712349616.359505]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712349616.359772]: Ancestors: {SOMA.Dish, SOMA.Pancake, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.BakedGood}\n", + "[INFO] [1712349616.360012]: Subclasses: []\n", + "[INFO] [1712349616.360286]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.360778]: Instances: []\n", + "[INFO] [1712349616.361039]: Direct Instances: []\n", + "[INFO] [1712349616.361286]: Inverse Restrictions: []\n", + "[INFO] [1712349616.361519]: -------------------\n", + "[INFO] [1712349616.361761]: SOMA.PancakeMix \n", + "[INFO] [1712349616.362000]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712349616.362268]: Ancestors: {DUL.DesignedSubstance, DUL.Substance, DUL.Object, DUL.PhysicalBody, DUL.FunctionalSubstance, DUL.Entity, SOMA.PancakeMix, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.362510]: Subclasses: []\n", + "[INFO] [1712349616.362802]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.363288]: Instances: []\n", + "[INFO] [1712349616.363542]: Direct Instances: []\n", + "[INFO] [1712349616.363782]: Inverse Restrictions: []\n", + "[INFO] [1712349616.364014]: -------------------\n", + "[INFO] [1712349616.364246]: SOMA.ParkingArms \n", + "[INFO] [1712349616.364490]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712349616.364757]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ParkingArms, DUL.Object, DUL.Entity, owl.Thing, SOMA.AssumingArmPose}\n", + "[INFO] [1712349616.365004]: Subclasses: []\n", + "[INFO] [1712349616.365291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.365790]: Instances: []\n", + "[INFO] [1712349616.366074]: Direct Instances: []\n", + "[INFO] [1712349616.366332]: Inverse Restrictions: []\n", + "[INFO] [1712349616.366570]: -------------------\n", + "[INFO] [1712349616.366814]: SOMA.PastaBowl \n", + "[INFO] [1712349616.367062]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712349616.367337]: Ancestors: {SOMA.Crockery, SOMA.PastaBowl, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Bowl}\n", + "[INFO] [1712349616.367583]: Subclasses: []\n", + "[INFO] [1712349616.367862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.368345]: Instances: []\n", + "[INFO] [1712349616.368618]: Direct Instances: []\n", + "[INFO] [1712349616.368877]: Inverse Restrictions: []\n", + "[INFO] [1712349616.369117]: -------------------\n", + "[INFO] [1712349616.369354]: SOMA.PepperShaker \n", + "[INFO] [1712349616.369591]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712349616.369871]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.PepperShaker, SOMA.Shaker}\n", + "[INFO] [1712349616.370116]: Subclasses: []\n", + "[INFO] [1712349616.370397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.370875]: Instances: []\n", + "[INFO] [1712349616.371141]: Direct Instances: []\n", + "[INFO] [1712349616.371399]: Inverse Restrictions: []\n", + "[INFO] [1712349616.371636]: -------------------\n", + "[INFO] [1712349616.371868]: SOMA.Shaker \n", + "[INFO] [1712349616.372099]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712349616.372350]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Shaker}\n", + "[INFO] [1712349616.372605]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", + "[INFO] [1712349616.372892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.373378]: Instances: []\n", + "[INFO] [1712349616.373624]: Direct Instances: []\n", + "[INFO] [1712349616.373878]: Inverse Restrictions: []\n", + "[INFO] [1712349616.374122]: -------------------\n", + "[INFO] [1712349616.374357]: SOMA.PhaseTransition \n", + "[INFO] [1712349616.374584]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712349616.374823]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.375080]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712349616.375372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.375854]: Instances: []\n", + "[INFO] [1712349616.376133]: Direct Instances: []\n", + "[INFO] [1712349616.376402]: Inverse Restrictions: []\n", + "[INFO] [1712349616.376643]: -------------------\n", + "[INFO] [1712349616.376888]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712349616.377133]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712349616.377402]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAccessibility, owl.Thing}\n", + "[INFO] [1712349616.377658]: Subclasses: []\n", + "[INFO] [1712349616.377953]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349616.378433]: Instances: []\n", + "[INFO] [1712349616.378705]: Direct Instances: []\n", + "[INFO] [1712349616.378955]: Inverse Restrictions: []\n", + "[INFO] [1712349616.379193]: -------------------\n", + "[INFO] [1712349616.379426]: SOMA.PhysicalBlockage \n", + "[INFO] [1712349616.379666]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712349616.379940]: Ancestors: {SOMA.PhysicalBlockage, DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.380192]: Subclasses: []\n", + "[INFO] [1712349616.380487]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349616.380987]: Instances: []\n", + "[INFO] [1712349616.381251]: Direct Instances: []\n", + "[INFO] [1712349616.381502]: Inverse Restrictions: []\n", + "[INFO] [1712349616.381737]: -------------------\n", + "[INFO] [1712349616.381973]: SOMA.PhysicalExistence \n", + "[INFO] [1712349616.382217]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712349616.382492]: Ancestors: {SOMA.PhysicalState, DUL.Entity, DUL.Event, SOMA.PhysicalExistence, owl.Thing, SOMA.State}\n", + "[INFO] [1712349616.382759]: Subclasses: []\n", + "[INFO] [1712349616.383043]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.383533]: Instances: []\n", + "[INFO] [1712349616.383789]: Direct Instances: []\n", + "[INFO] [1712349616.384033]: Inverse Restrictions: []\n", + "[INFO] [1712349616.384265]: -------------------\n", + "[INFO] [1712349616.384492]: SOMA.PhysicalState \n", + "[INFO] [1712349616.384739]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712349616.384998]: Ancestors: {SOMA.PhysicalState, DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", + "[INFO] [1712349616.385247]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712349616.385540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349616.386053]: Instances: []\n", + "[INFO] [1712349616.386317]: Direct Instances: []\n", + "[INFO] [1712349616.386571]: Inverse Restrictions: []\n", + "[INFO] [1712349616.386803]: -------------------\n", + "[INFO] [1712349616.387039]: SOMA.PhysicsProcess \n", + "[INFO] [1712349616.387297]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712349616.387577]: Ancestors: {DUL.Entity, DUL.Event, SOMA.PhysicsProcess, owl.Thing, DUL.Process}\n", + "[INFO] [1712349616.387843]: Subclasses: []\n", + "[INFO] [1712349616.388139]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349616.388622]: Instances: []\n", + "[INFO] [1712349616.388897]: Direct Instances: []\n", + "[INFO] [1712349616.389156]: Inverse Restrictions: []\n", + "[INFO] [1712349616.389399]: -------------------\n", + "[INFO] [1712349616.389634]: SOMA.PlacingTheory \n", + "[INFO] [1712349616.389871]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712349616.390147]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PlacingTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349616.390395]: Subclasses: []\n", + "[INFO] [1712349616.390687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349616.391194]: Instances: []\n", + "[INFO] [1712349616.391456]: Direct Instances: []\n", + "[INFO] [1712349616.391702]: Inverse Restrictions: []\n", + "[INFO] [1712349616.391938]: -------------------\n", + "[INFO] [1712349616.392172]: SOMA.PlanarJoint \n", + "[INFO] [1712349616.392401]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712349616.392669]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, SOMA.PlanarJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349616.392927]: Subclasses: []\n", + "[INFO] [1712349616.393219]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.393701]: Instances: []\n", + "[INFO] [1712349616.393967]: Direct Instances: []\n", + "[INFO] [1712349616.394219]: Inverse Restrictions: []\n", + "[INFO] [1712349616.394456]: -------------------\n", + "[INFO] [1712349616.394687]: SOMA.PluginRole \n", + "[INFO] [1712349616.394918]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712349616.395178]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, SOMA.PluginRole, DUL.Object, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.395437]: Subclasses: []\n", + "[INFO] [1712349616.395731]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", + "[INFO] [1712349616.396217]: Instances: []\n", + "[INFO] [1712349616.396482]: Direct Instances: []\n", + "[INFO] [1712349616.396800]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712349616.397046]: -------------------\n", + "[INFO] [1712349616.397286]: SOMA.Pot \n", + "[INFO] [1712349616.397519]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712349616.397788]: Ancestors: {SOMA.Crockery, SOMA.Pot, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.398046]: Subclasses: [SOMA.SoupPot]\n", + "[INFO] [1712349616.398330]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.398818]: Instances: []\n", + "[INFO] [1712349616.399065]: Direct Instances: []\n", + "[INFO] [1712349616.399342]: Inverse Restrictions: []\n", + "[INFO] [1712349616.399650]: -------------------\n", + "[INFO] [1712349616.399890]: SOMA.Pourable \n", + "[INFO] [1712349616.400146]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712349616.400412]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Pourable, SOMA.Extrinsic}\n", + "[INFO] [1712349616.400697]: Subclasses: []\n", + "[INFO] [1712349616.401005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.401499]: Instances: []\n", + "[INFO] [1712349616.401753]: Direct Instances: []\n", + "[INFO] [1712349616.402054]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712349616.402309]: -------------------\n", + "[INFO] [1712349616.402547]: SOMA.PouredObject \n", + "[INFO] [1712349616.402779]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349616.403041]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.PouredObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.403280]: Subclasses: []\n", + "[INFO] [1712349616.403561]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.404064]: Instances: []\n", + "[INFO] [1712349616.404328]: Direct Instances: []\n", + "[INFO] [1712349616.404616]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712349616.404869]: -------------------\n", + "[INFO] [1712349616.405126]: SOMA.Pouring \n", + "[INFO] [1712349616.405376]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712349616.405640]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.405897]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712349616.406187]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349616.406706]: Instances: []\n", + "[INFO] [1712349616.406977]: Direct Instances: []\n", + "[INFO] [1712349616.407229]: Inverse Restrictions: []\n", + "[INFO] [1712349616.407489]: -------------------\n", + "[INFO] [1712349616.407727]: SOMA.PouringInto \n", + "[INFO] [1712349616.407969]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712349616.408245]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.PouringInto, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.408492]: Subclasses: []\n", + "[INFO] [1712349616.408780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.409265]: Instances: []\n", + "[INFO] [1712349616.409533]: Direct Instances: []\n", + "[INFO] [1712349616.409799]: Inverse Restrictions: []\n", + "[INFO] [1712349616.410042]: -------------------\n", + "[INFO] [1712349616.410276]: SOMA.PouringOnto \n", + "[INFO] [1712349616.410507]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712349616.410767]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PouringOnto, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.411029]: Subclasses: []\n", + "[INFO] [1712349616.411323]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.411805]: Instances: []\n", + "[INFO] [1712349616.412066]: Direct Instances: []\n", + "[INFO] [1712349616.412322]: Inverse Restrictions: []\n", + "[INFO] [1712349616.412560]: -------------------\n", + "[INFO] [1712349616.412795]: SOMA.Prediction \n", + "[INFO] [1712349616.413032]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712349616.413295]: Ancestors: {SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.413554]: Subclasses: []\n", + "[INFO] [1712349616.413848]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.414333]: Instances: []\n", + "[INFO] [1712349616.414612]: Direct Instances: []\n", + "[INFO] [1712349616.414866]: Inverse Restrictions: []\n", + "[INFO] [1712349616.415105]: -------------------\n", + "[INFO] [1712349616.415340]: SOMA.Prospecting \n", + "[INFO] [1712349616.415570]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349616.415815]: Ancestors: {SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.416106]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712349616.416398]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.416885]: Instances: []\n", + "[INFO] [1712349616.417135]: Direct Instances: []\n", + "[INFO] [1712349616.417398]: Inverse Restrictions: []\n", + "[INFO] [1712349616.417648]: -------------------\n", + "[INFO] [1712349616.417890]: SOMA.Predilection \n", + "[INFO] [1712349616.418892]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712349616.419189]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Predilection, DUL.Relation, DUL.SocialRelation}\n", + "[INFO] [1712349616.419449]: Subclasses: []\n", + "[INFO] [1712349616.419743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.420238]: Instances: []\n", + "[INFO] [1712349616.420495]: Direct Instances: []\n", + "[INFO] [1712349616.420754]: Inverse Restrictions: []\n", + "[INFO] [1712349616.421077]: -------------------\n", + "[INFO] [1712349616.421325]: SOMA.PreferenceOrder \n", + "[INFO] [1712349616.421972]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712349616.422269]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PreferenceOrder, owl.Thing, DUL.Relation, DUL.SocialRelation}\n", + "[INFO] [1712349616.422530]: Subclasses: []\n", + "[INFO] [1712349616.422827]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.orders]\n", + "[INFO] [1712349616.423313]: Instances: []\n", + "[INFO] [1712349616.423572]: Direct Instances: []\n", + "[INFO] [1712349616.423827]: Inverse Restrictions: []\n", + "[INFO] [1712349616.424073]: -------------------\n", + "[INFO] [1712349616.424313]: SOMA.PreferenceRegion \n", + "[INFO] [1712349616.424549]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712349616.424817]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Entity, DUL.SocialObjectAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.425076]: Subclasses: []\n", + "[INFO] [1712349616.425378]: Properties: [rdf-schema.isDefinedBy, DUL.isRegionFor, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.425864]: Instances: []\n", + "[INFO] [1712349616.426114]: Direct Instances: []\n", + "[INFO] [1712349616.426359]: Inverse Restrictions: []\n", + "[INFO] [1712349616.426589]: -------------------\n", + "[INFO] [1712349616.426826]: SOMA.PrismaticJoint \n", + "[INFO] [1712349616.427073]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712349616.427334]: Ancestors: {SOMA.Joint, SOMA.PrismaticJoint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349616.427573]: Subclasses: []\n", + "[INFO] [1712349616.427879]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", + "[INFO] [1712349616.428370]: Instances: []\n", + "[INFO] [1712349616.428625]: Direct Instances: []\n", + "[INFO] [1712349616.428871]: Inverse Restrictions: []\n", + "[INFO] [1712349616.429108]: -------------------\n", + "[INFO] [1712349616.429337]: SOMA.ProcessFlow \n", + "[INFO] [1712349616.429582]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712349616.429845]: Ancestors: {DUL.Description, SOMA.ProcessFlow, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.430085]: Subclasses: []\n", + "[INFO] [1712349616.430371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.definesProcess, rdf-schema.label]\n", + "[INFO] [1712349616.430945]: Instances: []\n", + "[INFO] [1712349616.431314]: Direct Instances: []\n", + "[INFO] [1712349616.431982]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712349616.432278]: -------------------\n", + "[INFO] [1712349616.432545]: SOMA.Progression \n", + "[INFO] [1712349616.432816]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712349616.433661]: Ancestors: {owl.Thing, DUL.Situation, SOMA.Progression, DUL.Entity}\n", + "[INFO] [1712349616.433952]: Subclasses: []\n", + "[INFO] [1712349616.434262]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies]\n", + "[INFO] [1712349616.434763]: Instances: []\n", + "[INFO] [1712349616.435030]: Direct Instances: []\n", + "[INFO] [1712349616.435282]: Inverse Restrictions: []\n", + "[INFO] [1712349616.435522]: -------------------\n", + "[INFO] [1712349616.435764]: SOMA.Protector \n", + "[INFO] [1712349616.436012]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712349616.436287]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, SOMA.Protector, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.436542]: Subclasses: []\n", + "[INFO] [1712349616.436837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.437340]: Instances: []\n", + "[INFO] [1712349616.437609]: Direct Instances: []\n", + "[INFO] [1712349616.437862]: Inverse Restrictions: []\n", + "[INFO] [1712349616.438104]: -------------------\n", + "[INFO] [1712349616.438337]: SOMA.ProximalTheory \n", + "[INFO] [1712349616.438735]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712349616.439123]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProximalTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349616.439487]: Subclasses: []\n", + "[INFO] [1712349616.439800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349616.440293]: Instances: []\n", + "[INFO] [1712349616.440554]: Direct Instances: []\n", + "[INFO] [1712349616.440803]: Inverse Restrictions: []\n", + "[INFO] [1712349616.441042]: -------------------\n", + "[INFO] [1712349616.441302]: SOMA.PushingAway \n", + "[INFO] [1712349616.441546]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712349616.441818]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.PushingAway, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", + "[INFO] [1712349616.442064]: Subclasses: []\n", + "[INFO] [1712349616.442359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.442902]: Instances: []\n", + "[INFO] [1712349616.443179]: Direct Instances: []\n", + "[INFO] [1712349616.443438]: Inverse Restrictions: []\n", + "[INFO] [1712349616.443683]: -------------------\n", + "[INFO] [1712349616.443919]: SOMA.PushingDown \n", + "[INFO] [1712349616.444289]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712349616.444694]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.PushingDown, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", + "[INFO] [1712349616.445010]: Subclasses: []\n", + "[INFO] [1712349616.445310]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.445800]: Instances: []\n", + "[INFO] [1712349616.446079]: Direct Instances: []\n", + "[INFO] [1712349616.446343]: Inverse Restrictions: []\n", + "[INFO] [1712349616.446584]: -------------------\n", + "[INFO] [1712349616.446920]: SOMA.PuttingDown \n", + "[INFO] [1712349616.447176]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349616.447460]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.PuttingDown, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.447722]: Subclasses: []\n", + "[INFO] [1712349616.448015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.448495]: Instances: []\n", + "[INFO] [1712349616.448747]: Direct Instances: []\n", + "[INFO] [1712349616.449021]: Inverse Restrictions: []\n", + "[INFO] [1712349616.449309]: -------------------\n", + "[INFO] [1712349616.449550]: SOMA.QualityTransition \n", + "[INFO] [1712349616.449790]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712349616.450050]: Ancestors: {DUL.Situation, DUL.Entity, owl.Thing, SOMA.QualityTransition, DUL.Transition}\n", + "[INFO] [1712349616.450311]: Subclasses: []\n", + "[INFO] [1712349616.450631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.451123]: Instances: []\n", + "[INFO] [1712349616.451376]: Direct Instances: []\n", + "[INFO] [1712349616.451622]: Inverse Restrictions: []\n", + "[INFO] [1712349616.451855]: -------------------\n", + "[INFO] [1712349616.452100]: SOMA.Query \n", + "[INFO] [1712349616.452343]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712349616.452611]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, DUL.Entity, owl.Thing, SOMA.Query, SOMA.Message, SOMA.Item}\n", + "[INFO] [1712349616.452862]: Subclasses: []\n", + "[INFO] [1712349616.453159]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.453652]: Instances: []\n", + "[INFO] [1712349616.453909]: Direct Instances: []\n", + "[INFO] [1712349616.454190]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712349616.454428]: -------------------\n", + "[INFO] [1712349616.454677]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712349616.454940]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.456878]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", + "[INFO] [1712349616.457178]: Subclasses: []\n", + "[INFO] [1712349616.457494]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.457992]: Instances: []\n", + "[INFO] [1712349616.458260]: Direct Instances: []\n", + "[INFO] [1712349616.458513]: Inverse Restrictions: []\n", + "[INFO] [1712349616.458763]: -------------------\n", + "[INFO] [1712349616.459013]: SOMA.QueryEngine \n", + "[INFO] [1712349616.459257]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349616.459527]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.QueryEngine, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.459774]: Subclasses: []\n", + "[INFO] [1712349616.460063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.460567]: Instances: []\n", + "[INFO] [1712349616.460840]: Direct Instances: []\n", + "[INFO] [1712349616.461098]: Inverse Restrictions: []\n", + "[INFO] [1712349616.461339]: -------------------\n", + "[INFO] [1712349616.461577]: SOMA.RaspberryJamJar \n", + "[INFO] [1712349616.461818]: Super classes: [SOMA.JamJar]\n", + "[INFO] [1712349616.462101]: Ancestors: {DUL.Object, SOMA.RaspberryJamJar, SOMA.JamJar, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Jar, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.462352]: Subclasses: []\n", + "[INFO] [1712349616.462633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.463114]: Instances: []\n", + "[INFO] [1712349616.463393]: Direct Instances: []\n", + "[INFO] [1712349616.463650]: Inverse Restrictions: []\n", + "[INFO] [1712349616.463889]: -------------------\n", + "[INFO] [1712349616.464235]: SOMA.Reaching \n", + "[INFO] [1712349616.464490]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712349616.464767]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, SOMA.Reaching, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712349616.465042]: Subclasses: []\n", + "[INFO] [1712349616.465352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.465868]: Instances: []\n", + "[INFO] [1712349616.466157]: Direct Instances: []\n", + "[INFO] [1712349616.466416]: Inverse Restrictions: []\n", + "[INFO] [1712349616.466654]: -------------------\n", + "[INFO] [1712349616.466895]: SOMA.Retracting \n", + "[INFO] [1712349616.467142]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712349616.467419]: Ancestors: {SOMA.Retracting, SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712349616.467683]: Subclasses: []\n", + "[INFO] [1712349616.467977]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.468470]: Instances: []\n", + "[INFO] [1712349616.468724]: Direct Instances: []\n", + "[INFO] [1712349616.469004]: Inverse Restrictions: []\n", + "[INFO] [1712349616.469257]: -------------------\n", + "[INFO] [1712349616.469501]: SOMA.Reasoner \n", + "[INFO] [1712349616.469759]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349616.470009]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349616.470315]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712349616.470628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.471131]: Instances: []\n", + "[INFO] [1712349616.471391]: Direct Instances: []\n", + "[INFO] [1712349616.471640]: Inverse Restrictions: []\n", + "[INFO] [1712349616.471889]: -------------------\n", + "[INFO] [1712349616.472126]: SOMA.RecipientRole \n", + "[INFO] [1712349616.472357]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712349616.472621]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.RecipientRole, SOMA.BeneficiaryRole, DUL.Role}\n", + "[INFO] [1712349616.472882]: Subclasses: []\n", + "[INFO] [1712349616.473181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.473671]: Instances: []\n", + "[INFO] [1712349616.473925]: Direct Instances: []\n", + "[INFO] [1712349616.474173]: Inverse Restrictions: []\n", + "[INFO] [1712349616.474427]: -------------------\n", + "[INFO] [1712349616.474668]: SOMA.RecordedEpisode \n", + "[INFO] [1712349616.474918]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712349616.475161]: Ancestors: {DUL.Situation, SOMA.Episode, DUL.Entity, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712349616.475402]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712349616.475684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", + "[INFO] [1712349616.476185]: Instances: []\n", + "[INFO] [1712349616.476444]: Direct Instances: []\n", + "[INFO] [1712349616.476693]: Inverse Restrictions: []\n", + "[INFO] [1712349616.476929]: -------------------\n", + "[INFO] [1712349616.477177]: SOMA.RedColor \n", + "[INFO] [1712349616.477418]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712349616.477681]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, SOMA.RedColor, owl.Thing}\n", + "[INFO] [1712349616.477920]: Subclasses: []\n", + "[INFO] [1712349616.478198]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.478694]: Instances: []\n", + "[INFO] [1712349616.478956]: Direct Instances: []\n", + "[INFO] [1712349616.479206]: Inverse Restrictions: []\n", + "[INFO] [1712349616.479441]: -------------------\n", + "[INFO] [1712349616.479672]: SOMA.Refrigerator \n", + "[INFO] [1712349616.479907]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", + "[INFO] [1712349616.480182]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, SOMA.Refrigerator, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.480430]: Subclasses: []\n", + "[INFO] [1712349616.480713]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.481208]: Instances: []\n", + "[INFO] [1712349616.481529]: Direct Instances: []\n", + "[INFO] [1712349616.481798]: Inverse Restrictions: []\n", + "[INFO] [1712349616.482048]: -------------------\n", + "[INFO] [1712349616.482284]: SOMA.Reification \n", + "[INFO] [1712349616.482569]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712349616.482851]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Reification, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.483103]: Subclasses: []\n", + "[INFO] [1712349616.483402]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", + "[INFO] [1712349616.483954]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712349616.484249]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712349616.484510]: Inverse Restrictions: []\n", + "[INFO] [1712349616.484748]: -------------------\n", + "[INFO] [1712349616.484991]: SOMA.RelationalDatabase \n", + "[INFO] [1712349616.485222]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712349616.485487]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, SOMA.RelationalDatabase, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", + "[INFO] [1712349616.485769]: Subclasses: []\n", + "[INFO] [1712349616.486066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.486549]: Instances: []\n", + "[INFO] [1712349616.486818]: Direct Instances: []\n", + "[INFO] [1712349616.487072]: Inverse Restrictions: []\n", + "[INFO] [1712349616.487308]: -------------------\n", + "[INFO] [1712349616.487536]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712349616.487766]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712349616.488034]: Ancestors: {SOMA.RelationalQueryLanguage, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349616.488292]: Subclasses: []\n", + "[INFO] [1712349616.488582]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.489062]: Instances: []\n", + "[INFO] [1712349616.489344]: Direct Instances: []\n", + "[INFO] [1712349616.489596]: Inverse Restrictions: []\n", + "[INFO] [1712349616.489834]: -------------------\n", + "[INFO] [1712349616.490065]: SOMA.RelevantPart \n", + "[INFO] [1712349616.490296]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712349616.490561]: Ancestors: {SOMA.Feature, DUL.Object, DUL.Entity, owl.Thing, SOMA.RelevantPart}\n", + "[INFO] [1712349616.490808]: Subclasses: []\n", + "[INFO] [1712349616.491095]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.491590]: Instances: []\n", + "[INFO] [1712349616.491856]: Direct Instances: []\n", + "[INFO] [1712349616.492108]: Inverse Restrictions: []\n", + "[INFO] [1712349616.492342]: -------------------\n", + "[INFO] [1712349616.492573]: SOMA.Remembering \n", + "[INFO] [1712349616.492820]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712349616.493081]: Ancestors: {SOMA.Remembering, owl.Thing}\n", + "[INFO] [1712349616.493316]: Subclasses: []\n", + "[INFO] [1712349616.493639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.494118]: Instances: []\n", + "[INFO] [1712349616.494389]: Direct Instances: []\n", + "[INFO] [1712349616.494639]: Inverse Restrictions: []\n", + "[INFO] [1712349616.494873]: -------------------\n", + "[INFO] [1712349616.495103]: SOMA.Retrospecting \n", + "[INFO] [1712349616.495337]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712349616.495600]: Ancestors: {owl.Thing, SOMA.Retrospecting, SOMA.InformationAcquisition}\n", + "[INFO] [1712349616.495844]: Subclasses: []\n", + "[INFO] [1712349616.496123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.496598]: Instances: []\n", + "[INFO] [1712349616.496872]: Direct Instances: []\n", + "[INFO] [1712349616.497288]: Inverse Restrictions: []\n", + "[INFO] [1712349616.497656]: -------------------\n", + "[INFO] [1712349616.498020]: SOMA.RemovedObject \n", + "[INFO] [1712349616.498380]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712349616.498775]: Ancestors: {SOMA.Patient, SOMA.ExcludedObject, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.RemovedObject, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.499061]: Subclasses: []\n", + "[INFO] [1712349616.499368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.499872]: Instances: []\n", + "[INFO] [1712349616.500136]: Direct Instances: []\n", + "[INFO] [1712349616.500389]: Inverse Restrictions: []\n", + "[INFO] [1712349616.500633]: -------------------\n", + "[INFO] [1712349616.500896]: SOMA.Replanning \n", + "[INFO] [1712349616.501152]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712349616.501425]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Planning, SOMA.Replanning, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.501672]: Subclasses: []\n", + "[INFO] [1712349616.501965]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.502451]: Instances: []\n", + "[INFO] [1712349616.502727]: Direct Instances: []\n", + "[INFO] [1712349616.502983]: Inverse Restrictions: []\n", + "[INFO] [1712349616.503227]: -------------------\n", + "[INFO] [1712349616.503461]: SOMA.RevoluteJoint \n", + "[INFO] [1712349616.503909]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712349616.504307]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, SOMA.RevoluteJoint, DUL.PhysicalObject}\n", + "[INFO] [1712349616.504669]: Subclasses: []\n", + "[INFO] [1712349616.505031]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", + "[INFO] [1712349616.505545]: Instances: []\n", + "[INFO] [1712349616.505813]: Direct Instances: []\n", + "[INFO] [1712349616.506082]: Inverse Restrictions: []\n", + "[INFO] [1712349616.506328]: -------------------\n", + "[INFO] [1712349616.506568]: SOMA.Surface \n", + "[INFO] [1712349616.506807]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712349616.507068]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", + "[INFO] [1712349616.507322]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712349616.507609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.508106]: Instances: []\n", + "[INFO] [1712349616.508382]: Direct Instances: []\n", + "[INFO] [1712349616.508639]: Inverse Restrictions: []\n", + "[INFO] [1712349616.508965]: -------------------\n", + "[INFO] [1712349616.509259]: SOMA.Rubbing \n", + "[INFO] [1712349616.509529]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712349616.509888]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Rubbing, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.510167]: Subclasses: []\n", + "[INFO] [1712349616.510471]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.510958]: Instances: []\n", + "[INFO] [1712349616.511222]: Direct Instances: []\n", + "[INFO] [1712349616.511471]: Inverse Restrictions: []\n", + "[INFO] [1712349616.511722]: -------------------\n", + "[INFO] [1712349616.511969]: SOMA.SaladBowl \n", + "[INFO] [1712349616.512208]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712349616.512477]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.SaladBowl, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Bowl}\n", + "[INFO] [1712349616.512746]: Subclasses: []\n", + "[INFO] [1712349616.513053]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.513551]: Instances: []\n", + "[INFO] [1712349616.513812]: Direct Instances: []\n", + "[INFO] [1712349616.514071]: Inverse Restrictions: []\n", + "[INFO] [1712349616.514318]: -------------------\n", + "[INFO] [1712349616.514560]: SOMA.SaltShaker \n", + "[INFO] [1712349616.514796]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712349616.515060]: Ancestors: {SOMA.SaltShaker, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Shaker}\n", + "[INFO] [1712349616.515322]: Subclasses: []\n", + "[INFO] [1712349616.515616]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.516133]: Instances: []\n", + "[INFO] [1712349616.516413]: Direct Instances: []\n", + "[INFO] [1712349616.516671]: Inverse Restrictions: []\n", + "[INFO] [1712349616.516921]: -------------------\n", + "[INFO] [1712349616.517163]: SOMA.Scene \n", + "[INFO] [1712349616.517498]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712349616.517799]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Scene}\n", + "[INFO] [1712349616.518065]: Subclasses: []\n", + "[INFO] [1712349616.518357]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.includesEvent, DUL.satisfies]\n", + "[INFO] [1712349616.518857]: Instances: []\n", + "[INFO] [1712349616.519124]: Direct Instances: []\n", + "[INFO] [1712349616.519414]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712349616.519651]: -------------------\n", + "[INFO] [1712349616.520036]: SOMA.SelectedObject \n", + "[INFO] [1712349616.520441]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712349616.520889]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.SelectedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.521167]: Subclasses: []\n", + "[INFO] [1712349616.521457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.521941]: Instances: []\n", + "[INFO] [1712349616.522212]: Direct Instances: []\n", + "[INFO] [1712349616.522515]: Inverse Restrictions: []\n", + "[INFO] [1712349616.522756]: -------------------\n", + "[INFO] [1712349616.523156]: SOMA.Selecting \n", + "[INFO] [1712349616.523517]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712349616.523891]: Ancestors: {SOMA.InformationAcquisition, SOMA.Selecting, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.524234]: Subclasses: []\n", + "[INFO] [1712349616.524611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.525183]: Instances: []\n", + "[INFO] [1712349616.525541]: Direct Instances: []\n", + "[INFO] [1712349616.525881]: Inverse Restrictions: []\n", + "[INFO] [1712349616.526208]: -------------------\n", + "[INFO] [1712349616.526530]: SOMA.SelectingItem \n", + "[INFO] [1712349616.527261]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712349616.527648]: Ancestors: {SOMA.InformationAcquisition, SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.527992]: Subclasses: []\n", + "[INFO] [1712349616.528371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712349616.528943]: Instances: []\n", + "[INFO] [1712349616.529308]: Direct Instances: []\n", + "[INFO] [1712349616.529654]: Inverse Restrictions: []\n", + "[INFO] [1712349616.529982]: -------------------\n", + "[INFO] [1712349616.530310]: SOMA.SelfReflection \n", + "[INFO] [1712349616.530628]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712349616.530979]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.SelfReflection, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.MetacognitiveControlling}\n", + "[INFO] [1712349616.531317]: Subclasses: []\n", + "[INFO] [1712349616.531692]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.532255]: Instances: []\n", + "[INFO] [1712349616.532646]: Direct Instances: []\n", + "[INFO] [1712349616.533019]: Inverse Restrictions: []\n", + "[INFO] [1712349616.533307]: -------------------\n", + "[INFO] [1712349616.533559]: SOMA.Serving \n", + "[INFO] [1712349616.534911]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712349616.535259]: Ancestors: {SOMA.Delivering, SOMA.PhysicalTask, DUL.Task, SOMA.Serving, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.535538]: Subclasses: []\n", + "[INFO] [1712349616.535845]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.536337]: Instances: []\n", + "[INFO] [1712349616.536616]: Direct Instances: []\n", + "[INFO] [1712349616.536879]: Inverse Restrictions: []\n", + "[INFO] [1712349616.537126]: -------------------\n", + "[INFO] [1712349616.537365]: SOMA.SettingGripper \n", + "[INFO] [1712349616.537598]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712349616.537989]: Ancestors: {SOMA.SettingGripper, SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.538328]: Subclasses: []\n", + "[INFO] [1712349616.538702]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.539265]: Instances: []\n", + "[INFO] [1712349616.539616]: Direct Instances: []\n", + "[INFO] [1712349616.539946]: Inverse Restrictions: []\n", + "[INFO] [1712349616.540265]: -------------------\n", + "[INFO] [1712349616.540581]: SOMA.6DPose \n", + "[INFO] [1712349616.540917]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712349616.541286]: Ancestors: {SOMA.6DPose, DUL.SpaceRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.541619]: Subclasses: []\n", + "[INFO] [1712349616.541992]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", + "[INFO] [1712349616.542558]: Instances: []\n", + "[INFO] [1712349616.542904]: Direct Instances: []\n", + "[INFO] [1712349616.543274]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712349616.543599]: -------------------\n", + "[INFO] [1712349616.543919]: SOMA.Sharpness \n", + "[INFO] [1712349616.544233]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349616.544588]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic, SOMA.Sharpness}\n", + "[INFO] [1712349616.544924]: Subclasses: []\n", + "[INFO] [1712349616.545317]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.545895]: Instances: []\n", + "[INFO] [1712349616.546240]: Direct Instances: []\n", + "[INFO] [1712349616.546567]: Inverse Restrictions: []\n", + "[INFO] [1712349616.546885]: -------------------\n", + "[INFO] [1712349616.547196]: SOMA.Simulating \n", + "[INFO] [1712349616.547519]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712349616.547861]: Ancestors: {SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing, SOMA.Simulating, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.548183]: Subclasses: []\n", + "[INFO] [1712349616.548547]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.549140]: Instances: []\n", + "[INFO] [1712349616.549523]: Direct Instances: []\n", + "[INFO] [1712349616.549859]: Inverse Restrictions: []\n", + "[INFO] [1712349616.550177]: -------------------\n", + "[INFO] [1712349616.550496]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712349616.550823]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712349616.551176]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.Simulation_Reasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349616.551502]: Subclasses: []\n", + "[INFO] [1712349616.551867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.552423]: Instances: []\n", + "[INFO] [1712349616.552782]: Direct Instances: []\n", + "[INFO] [1712349616.553122]: Inverse Restrictions: []\n", + "[INFO] [1712349616.553444]: -------------------\n", + "[INFO] [1712349616.553761]: SOMA.Sink \n", + "[INFO] [1712349616.554074]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349616.554423]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, SOMA.Sink, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.554766]: Subclasses: []\n", + "[INFO] [1712349616.555137]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.555916]: Instances: []\n", + "[INFO] [1712349616.556300]: Direct Instances: []\n", + "[INFO] [1712349616.556638]: Inverse Restrictions: []\n", + "[INFO] [1712349616.557038]: -------------------\n", + "[INFO] [1712349616.557395]: SOMA.Size \n", + "[INFO] [1712349616.557704]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349616.558009]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic, SOMA.Size}\n", + "[INFO] [1712349616.558285]: Subclasses: []\n", + "[INFO] [1712349616.558590]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.559085]: Instances: []\n", + "[INFO] [1712349616.559361]: Direct Instances: []\n", + "[INFO] [1712349616.559618]: Inverse Restrictions: []\n", + "[INFO] [1712349616.559864]: -------------------\n", + "[INFO] [1712349616.560101]: SOMA.Slicing \n", + "[INFO] [1712349616.560335]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712349616.560605]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, SOMA.Slicing, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.560886]: Subclasses: []\n", + "[INFO] [1712349616.561181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.561663]: Instances: []\n", + "[INFO] [1712349616.561919]: Direct Instances: []\n", + "[INFO] [1712349616.562163]: Inverse Restrictions: []\n", + "[INFO] [1712349616.562417]: -------------------\n", + "[INFO] [1712349616.562662]: SOMA.Sluggishness \n", + "[INFO] [1712349616.562895]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712349616.563159]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, SOMA.Sluggishness, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.563398]: Subclasses: []\n", + "[INFO] [1712349616.563684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.564173]: Instances: []\n", + "[INFO] [1712349616.564430]: Direct Instances: []\n", + "[INFO] [1712349616.564675]: Inverse Restrictions: []\n", + "[INFO] [1712349616.564925]: -------------------\n", + "[INFO] [1712349616.565170]: SOMA.SocialState \n", + "[INFO] [1712349616.565433]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712349616.565696]: Ancestors: {SOMA.SocialState, DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", + "[INFO] [1712349616.565956]: Subclasses: []\n", + "[INFO] [1712349616.566276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349616.566772]: Instances: []\n", + "[INFO] [1712349616.567032]: Direct Instances: []\n", + "[INFO] [1712349616.567275]: Inverse Restrictions: []\n", + "[INFO] [1712349616.567524]: -------------------\n", + "[INFO] [1712349616.567766]: SOMA.Sofa \n", + "[INFO] [1712349616.568002]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712349616.568263]: Ancestors: {SOMA.Sofa, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.568501]: Subclasses: []\n", + "[INFO] [1712349616.568791]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", + "[INFO] [1712349616.569291]: Instances: []\n", + "[INFO] [1712349616.569556]: Direct Instances: []\n", + "[INFO] [1712349616.569806]: Inverse Restrictions: []\n", + "[INFO] [1712349616.570046]: -------------------\n", + "[INFO] [1712349616.570283]: SOMA.Software_Configuration \n", + "[INFO] [1712349616.570525]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712349616.570816]: Ancestors: {DUL.SocialObject, DUL.Configuration, DUL.Object, DUL.Collection, DUL.Entity, owl.Thing, SOMA.Software_Configuration}\n", + "[INFO] [1712349616.571070]: Subclasses: []\n", + "[INFO] [1712349616.571362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.isDescribedBy]\n", + "[INFO] [1712349616.571846]: Instances: []\n", + "[INFO] [1712349616.572117]: Direct Instances: []\n", + "[INFO] [1712349616.572465]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712349616.572711]: -------------------\n", + "[INFO] [1712349616.572954]: SOMA.SoftwareLibrary \n", + "[INFO] [1712349616.573189]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712349616.573450]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.SoftwareLibrary, SOMA.Software}\n", + "[INFO] [1712349616.573708]: Subclasses: []\n", + "[INFO] [1712349616.574000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.574482]: Instances: []\n", + "[INFO] [1712349616.574752]: Direct Instances: []\n", + "[INFO] [1712349616.575007]: Inverse Restrictions: []\n", + "[INFO] [1712349616.575247]: -------------------\n", + "[INFO] [1712349616.575483]: SOMA.SoupPot \n", + "[INFO] [1712349616.575711]: Super classes: [SOMA.Pot]\n", + "[INFO] [1712349616.575976]: Ancestors: {SOMA.Crockery, SOMA.Pot, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.SoupPot, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.576236]: Subclasses: []\n", + "[INFO] [1712349616.576530]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.577021]: Instances: []\n", + "[INFO] [1712349616.577296]: Direct Instances: []\n", + "[INFO] [1712349616.577550]: Inverse Restrictions: []\n", + "[INFO] [1712349616.577788]: -------------------\n", + "[INFO] [1712349616.578023]: SOMA.SourceMaterialRole \n", + "[INFO] [1712349616.578254]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712349616.578513]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResourceRole, SOMA.SourceMaterialRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.578772]: Subclasses: []\n", + "[INFO] [1712349616.579063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.579546]: Instances: []\n", + "[INFO] [1712349616.579801]: Direct Instances: []\n", + "[INFO] [1712349616.580042]: Inverse Restrictions: []\n", + "[INFO] [1712349616.580284]: -------------------\n", + "[INFO] [1712349616.580527]: SOMA.Spatula \n", + "[INFO] [1712349616.580767]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", + "[INFO] [1712349616.581171]: Ancestors: {SOMA.Tableware, DUL.Object, SOMA.DesignedTool, SOMA.Spatula, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.581470]: Subclasses: []\n", + "[INFO] [1712349616.581795]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.582300]: Instances: []\n", + "[INFO] [1712349616.582616]: Direct Instances: []\n", + "[INFO] [1712349616.582882]: Inverse Restrictions: []\n", + "[INFO] [1712349616.583129]: -------------------\n", + "[INFO] [1712349616.583367]: SOMA.SphereShape \n", + "[INFO] [1712349616.583626]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712349616.583910]: Ancestors: {SOMA.SphereShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349616.584167]: Subclasses: []\n", + "[INFO] [1712349616.584463]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712349616.584955]: Instances: []\n", + "[INFO] [1712349616.585223]: Direct Instances: []\n", + "[INFO] [1712349616.585485]: Inverse Restrictions: []\n", + "[INFO] [1712349616.585729]: -------------------\n", + "[INFO] [1712349616.585970]: SOMA.Spoon \n", + "[INFO] [1712349616.586630]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712349616.586929]: Ancestors: {SOMA.Spoon, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.587191]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", + "[INFO] [1712349616.587483]: Properties: [SOMA.hasPhysicalComponent, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.587973]: Instances: []\n", + "[INFO] [1712349616.588243]: Direct Instances: []\n", + "[INFO] [1712349616.588499]: Inverse Restrictions: []\n", + "[INFO] [1712349616.588738]: -------------------\n", + "[INFO] [1712349616.588980]: SOMA.Standing \n", + "[INFO] [1712349616.589214]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712349616.589497]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.Standing}\n", + "[INFO] [1712349616.589749]: Subclasses: []\n", + "[INFO] [1712349616.590036]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.590508]: Instances: []\n", + "[INFO] [1712349616.590779]: Direct Instances: []\n", + "[INFO] [1712349616.591036]: Inverse Restrictions: []\n", + "[INFO] [1712349616.591278]: -------------------\n", + "[INFO] [1712349616.591513]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712349616.591744]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712349616.592002]: Ancestors: {SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.StaticFrictionAttribute, owl.Thing}\n", + "[INFO] [1712349616.592261]: Subclasses: []\n", + "[INFO] [1712349616.592551]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.593039]: Instances: []\n", + "[INFO] [1712349616.593294]: Direct Instances: []\n", + "[INFO] [1712349616.593542]: Inverse Restrictions: []\n", + "[INFO] [1712349616.593789]: -------------------\n", + "[INFO] [1712349616.594028]: SOMA.Status \n", + "[INFO] [1712349616.594263]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712349616.594521]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, SOMA.Status, owl.Thing}\n", + "[INFO] [1712349616.594773]: Subclasses: []\n", + "[INFO] [1712349616.595058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.595536]: Instances: []\n", + "[INFO] [1712349616.595784]: Direct Instances: []\n", + "[INFO] [1712349616.596047]: Inverse Restrictions: []\n", + "[INFO] [1712349616.596298]: -------------------\n", + "[INFO] [1712349616.596540]: SOMA.StatusFailure \n", + "[INFO] [1712349616.596777]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349616.597034]: Ancestors: {DUL.Region, DUL.Entity, SOMA.StatusFailure, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.597270]: Subclasses: []\n", + "[INFO] [1712349616.597545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.598130]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712349616.598409]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712349616.598664]: Inverse Restrictions: []\n", + "[INFO] [1712349616.598911]: -------------------\n", + "[INFO] [1712349616.599159]: SOMA.StimulusRole \n", + "[INFO] [1712349616.599423]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712349616.599687]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.StimulusRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.599927]: Subclasses: []\n", + "[INFO] [1712349616.600209]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.600702]: Instances: []\n", + "[INFO] [1712349616.600967]: Direct Instances: []\n", + "[INFO] [1712349616.601213]: Inverse Restrictions: []\n", + "[INFO] [1712349616.601451]: -------------------\n", + "[INFO] [1712349616.601681]: SOMA.Stirring \n", + "[INFO] [1712349616.601933]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712349616.602203]: Ancestors: {SOMA.Mixing, DUL.Task, SOMA.Stirring, SOMA.PhysicalTask, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.602447]: Subclasses: []\n", + "[INFO] [1712349616.602734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349616.603224]: Instances: []\n", + "[INFO] [1712349616.603482]: Direct Instances: []\n", + "[INFO] [1712349616.603726]: Inverse Restrictions: []\n", + "[INFO] [1712349616.603959]: -------------------\n", + "[INFO] [1712349616.604190]: SOMA.Storage \n", + "[INFO] [1712349616.604421]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712349616.604694]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Storage, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349616.605027]: Subclasses: []\n", + "[INFO] [1712349616.605406]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.605929]: Instances: []\n", + "[INFO] [1712349616.606215]: Direct Instances: []\n", + "[INFO] [1712349616.606485]: Inverse Restrictions: []\n", + "[INFO] [1712349616.606734]: -------------------\n", + "[INFO] [1712349616.606974]: SOMA.Stove \n", + "[INFO] [1712349616.607220]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", + "[INFO] [1712349616.607494]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Stove}\n", + "[INFO] [1712349616.607739]: Subclasses: []\n", + "[INFO] [1712349616.608021]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.608493]: Instances: []\n", + "[INFO] [1712349616.608761]: Direct Instances: []\n", + "[INFO] [1712349616.609019]: Inverse Restrictions: []\n", + "[INFO] [1712349616.609259]: -------------------\n", + "[INFO] [1712349616.609492]: SOMA.StructuralDesign \n", + "[INFO] [1712349616.609723]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712349616.609985]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.StructuralDesign, owl.Thing}\n", + "[INFO] [1712349616.610243]: Subclasses: []\n", + "[INFO] [1712349616.610537]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.611020]: Instances: []\n", + "[INFO] [1712349616.611289]: Direct Instances: []\n", + "[INFO] [1712349616.611545]: Inverse Restrictions: []\n", + "[INFO] [1712349616.611784]: -------------------\n", + "[INFO] [1712349616.612024]: SOMA.TaskInvocation \n", + "[INFO] [1712349616.612281]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712349616.612567]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.TaskInvocation, DUL.Workflow, DUL.Plan, owl.Thing}\n", + "[INFO] [1712349616.612821]: Subclasses: []\n", + "[INFO] [1712349616.613114]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesTask, rdf-schema.label]\n", + "[INFO] [1712349616.613593]: Instances: []\n", + "[INFO] [1712349616.613864]: Direct Instances: []\n", + "[INFO] [1712349616.614182]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712349616.614424]: -------------------\n", + "[INFO] [1712349616.614663]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712349616.614896]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712349616.615153]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.615406]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712349616.615695]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.616186]: Instances: []\n", + "[INFO] [1712349616.616469]: Direct Instances: []\n", + "[INFO] [1712349616.616727]: Inverse Restrictions: []\n", + "[INFO] [1712349616.616970]: -------------------\n", + "[INFO] [1712349616.617206]: SOMA.Successfulness \n", + "[INFO] [1712349616.617438]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712349616.617700]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, SOMA.Successfulness, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.617954]: Subclasses: []\n", + "[INFO] [1712349616.618251]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.618732]: Instances: []\n", + "[INFO] [1712349616.618980]: Direct Instances: []\n", + "[INFO] [1712349616.619230]: Inverse Restrictions: []\n", + "[INFO] [1712349616.619466]: -------------------\n", + "[INFO] [1712349616.619697]: SOMA.SugarDispenser \n", + "[INFO] [1712349616.619925]: Super classes: [SOMA.Dispenser]\n", + "[INFO] [1712349616.620185]: Ancestors: {SOMA.SugarDispenser, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Dispenser}\n", + "[INFO] [1712349616.620435]: Subclasses: []\n", + "[INFO] [1712349616.620721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.621203]: Instances: []\n", + "[INFO] [1712349616.621474]: Direct Instances: []\n", + "[INFO] [1712349616.621920]: Inverse Restrictions: []\n", + "[INFO] [1712349616.622279]: -------------------\n", + "[INFO] [1712349616.622628]: SOMA.SupportState \n", + "[INFO] [1712349616.623737]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712349616.624144]: Ancestors: {SOMA.SupportState, SOMA.StateType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.FunctionalControl, owl.Thing}\n", + "[INFO] [1712349616.624506]: Subclasses: []\n", + "[INFO] [1712349616.624920]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349616.625509]: Instances: []\n", + "[INFO] [1712349616.625861]: Direct Instances: []\n", + "[INFO] [1712349616.626212]: Inverse Restrictions: []\n", + "[INFO] [1712349616.626556]: -------------------\n", + "[INFO] [1712349616.626889]: SOMA.Supporter \n", + "[INFO] [1712349616.627213]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712349616.627569]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, SOMA.Supporter, DUL.Role}\n", + "[INFO] [1712349616.627924]: Subclasses: []\n", + "[INFO] [1712349616.628307]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.628916]: Instances: []\n", + "[INFO] [1712349616.629339]: Direct Instances: []\n", + "[INFO] [1712349616.629757]: Inverse Restrictions: []\n", + "[INFO] [1712349616.630105]: -------------------\n", + "[INFO] [1712349616.630445]: SOMA.SupportTheory \n", + "[INFO] [1712349616.630779]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712349616.631142]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SupportTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349616.631498]: Subclasses: []\n", + "[INFO] [1712349616.631899]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.632651]: Instances: []\n", + "[INFO] [1712349616.633040]: Direct Instances: []\n", + "[INFO] [1712349616.633388]: Inverse Restrictions: []\n", + "[INFO] [1712349616.633737]: -------------------\n", + "[INFO] [1712349616.634073]: SOMA.SupportedObject \n", + "[INFO] [1712349616.634398]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712349616.634747]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, SOMA.SupportedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.635073]: Subclasses: []\n", + "[INFO] [1712349616.635483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.636059]: Instances: []\n", + "[INFO] [1712349616.636403]: Direct Instances: []\n", + "[INFO] [1712349616.636731]: Inverse Restrictions: []\n", + "[INFO] [1712349616.637145]: -------------------\n", + "[INFO] [1712349616.637465]: SOMA.SymbolicReasoner \n", + "[INFO] [1712349616.637743]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712349616.638049]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.SymbolicReasoner, DUL.Entity, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349616.638334]: Subclasses: []\n", + "[INFO] [1712349616.638654]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.639155]: Instances: []\n", + "[INFO] [1712349616.639418]: Direct Instances: []\n", + "[INFO] [1712349616.639669]: Inverse Restrictions: []\n", + "[INFO] [1712349616.639905]: -------------------\n", + "[INFO] [1712349616.640159]: SOMA.TableFork \n", + "[INFO] [1712349616.640403]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712349616.640676]: Ancestors: {SOMA.Tableware, SOMA.Fork, SOMA.TableFork, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.640929]: Subclasses: []\n", + "[INFO] [1712349616.641284]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.641795]: Instances: []\n", + "[INFO] [1712349616.642064]: Direct Instances: []\n", + "[INFO] [1712349616.642322]: Inverse Restrictions: []\n", + "[INFO] [1712349616.642567]: -------------------\n", + "[INFO] [1712349616.642813]: SOMA.TableKnife \n", + "[INFO] [1712349616.643052]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712349616.643323]: Ancestors: {SOMA.TableKnife, SOMA.Knife, SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.KitchenKnife}\n", + "[INFO] [1712349616.643585]: Subclasses: []\n", + "[INFO] [1712349616.643877]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.644358]: Instances: []\n", + "[INFO] [1712349616.644617]: Direct Instances: []\n", + "[INFO] [1712349616.644876]: Inverse Restrictions: []\n", + "[INFO] [1712349616.645130]: -------------------\n", + "[INFO] [1712349616.645373]: SOMA.TableSpoon \n", + "[INFO] [1712349616.645610]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712349616.645875]: Ancestors: {SOMA.Spoon, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, SOMA.TableSpoon, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.646135]: Subclasses: []\n", + "[INFO] [1712349616.646434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.646921]: Instances: []\n", + "[INFO] [1712349616.647175]: Direct Instances: []\n", + "[INFO] [1712349616.647419]: Inverse Restrictions: []\n", + "[INFO] [1712349616.647666]: -------------------\n", + "[INFO] [1712349616.647905]: SOMA.TeaSpoon \n", + "[INFO] [1712349616.648135]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712349616.648393]: Ancestors: {SOMA.Spoon, SOMA.Tableware, DUL.Object, SOMA.TeaSpoon, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.648650]: Subclasses: []\n", + "[INFO] [1712349616.648947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.649426]: Instances: []\n", + "[INFO] [1712349616.649675]: Direct Instances: []\n", + "[INFO] [1712349616.649922]: Inverse Restrictions: []\n", + "[INFO] [1712349616.650167]: -------------------\n", + "[INFO] [1712349616.650401]: SOMA.Tap \n", + "[INFO] [1712349616.650633]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712349616.650896]: Ancestors: {SOMA.FunctionalPart, SOMA.Tap, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.651157]: Subclasses: []\n", + "[INFO] [1712349616.651448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.651929]: Instances: []\n", + "[INFO] [1712349616.652182]: Direct Instances: []\n", + "[INFO] [1712349616.652422]: Inverse Restrictions: []\n", + "[INFO] [1712349616.652662]: -------------------\n", + "[INFO] [1712349616.652927]: SOMA.Tapping \n", + "[INFO] [1712349616.653249]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712349616.653544]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion, SOMA.Tapping}\n", + "[INFO] [1712349616.653808]: Subclasses: []\n", + "[INFO] [1712349616.654099]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.654588]: Instances: []\n", + "[INFO] [1712349616.654839]: Direct Instances: []\n", + "[INFO] [1712349616.655092]: Inverse Restrictions: []\n", + "[INFO] [1712349616.655333]: -------------------\n", + "[INFO] [1712349616.655569]: SOMA.Taxis \n", + "[INFO] [1712349616.655801]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712349616.656073]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.Taxis}\n", + "[INFO] [1712349616.656316]: Subclasses: []\n", + "[INFO] [1712349616.656598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.657102]: Instances: []\n", + "[INFO] [1712349616.657377]: Direct Instances: []\n", + "[INFO] [1712349616.657630]: Inverse Restrictions: []\n", + "[INFO] [1712349616.657872]: -------------------\n", + "[INFO] [1712349616.658107]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712349616.658362]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712349616.658632]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349616.658888]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712349616.659178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", + "[INFO] [1712349616.659671]: Instances: []\n", + "[INFO] [1712349616.659943]: Direct Instances: []\n", + "[INFO] [1712349616.660203]: Inverse Restrictions: []\n", + "[INFO] [1712349616.660442]: -------------------\n", + "[INFO] [1712349616.660677]: SOMA.Temperature \n", + "[INFO] [1712349616.660953]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712349616.661239]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Temperature, SOMA.Intrinsic}\n", + "[INFO] [1712349616.661494]: Subclasses: []\n", + "[INFO] [1712349616.661786]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.662267]: Instances: []\n", + "[INFO] [1712349616.662534]: Direct Instances: []\n", + "[INFO] [1712349616.663203]: Inverse Restrictions: []\n", + "[INFO] [1712349616.663465]: -------------------\n", + "[INFO] [1712349616.663711]: SOMA.TemperatureRegion \n", + "[INFO] [1712349616.663951]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349616.664212]: Ancestors: {SOMA.TemperatureRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.664475]: Subclasses: []\n", + "[INFO] [1712349616.664771]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.665350]: Instances: []\n", + "[INFO] [1712349616.665637]: Direct Instances: []\n", + "[INFO] [1712349616.665963]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712349616.666217]: -------------------\n", + "[INFO] [1712349616.666461]: SOMA.Tempering \n", + "[INFO] [1712349616.666724]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712349616.666981]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Tempering, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349616.667244]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712349616.667539]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.668024]: Instances: []\n", + "[INFO] [1712349616.668289]: Direct Instances: []\n", + "[INFO] [1712349616.668543]: Inverse Restrictions: []\n", + "[INFO] [1712349616.668785]: -------------------\n", + "[INFO] [1712349616.669132]: SOMA.TemperingByCooling \n", + "[INFO] [1712349616.669398]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712349616.669687]: Ancestors: {SOMA.PhysicalQuality, SOMA.TemperingByCooling, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Tempering, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349616.669947]: Subclasses: []\n", + "[INFO] [1712349616.670273]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.670773]: Instances: []\n", + "[INFO] [1712349616.671040]: Direct Instances: []\n", + "[INFO] [1712349616.671292]: Inverse Restrictions: []\n", + "[INFO] [1712349616.671528]: -------------------\n", + "[INFO] [1712349616.671762]: SOMA.ThinkAloud \n", + "[INFO] [1712349616.672006]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712349616.672269]: Ancestors: {SOMA.ThinkAloud, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing, SOMA.CommunicationReport}\n", + "[INFO] [1712349616.672510]: Subclasses: []\n", + "[INFO] [1712349616.672793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.673286]: Instances: []\n", + "[INFO] [1712349616.673543]: Direct Instances: []\n", + "[INFO] [1712349616.673788]: Inverse Restrictions: []\n", + "[INFO] [1712349616.674020]: -------------------\n", + "[INFO] [1712349616.674249]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712349616.674488]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349616.674754]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, SOMA.ThinkAloudActionTopic, DUL.Role}\n", + "[INFO] [1712349616.674992]: Subclasses: []\n", + "[INFO] [1712349616.675272]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.675760]: Instances: []\n", + "[INFO] [1712349616.676012]: Direct Instances: []\n", + "[INFO] [1712349616.676253]: Inverse Restrictions: []\n", + "[INFO] [1712349616.676484]: -------------------\n", + "[INFO] [1712349616.676709]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712349616.676954]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712349616.677237]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.677482]: Subclasses: []\n", + "[INFO] [1712349616.677764]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.678236]: Instances: []\n", + "[INFO] [1712349616.678500]: Direct Instances: []\n", + "[INFO] [1712349616.678746]: Inverse Restrictions: []\n", + "[INFO] [1712349616.678980]: -------------------\n", + "[INFO] [1712349616.679211]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712349616.679438]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349616.679684]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.679938]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712349616.680226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.680707]: Instances: []\n", + "[INFO] [1712349616.680981]: Direct Instances: []\n", + "[INFO] [1712349616.681327]: Inverse Restrictions: []\n", + "[INFO] [1712349616.681601]: -------------------\n", + "[INFO] [1712349616.682045]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712349616.682400]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349616.682786]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.683131]: Subclasses: []\n", + "[INFO] [1712349616.683516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.684087]: Instances: []\n", + "[INFO] [1712349616.684427]: Direct Instances: []\n", + "[INFO] [1712349616.684770]: Inverse Restrictions: []\n", + "[INFO] [1712349616.685111]: -------------------\n", + "[INFO] [1712349616.685439]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712349616.685755]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349616.686108]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudOpinionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.686448]: Subclasses: []\n", + "[INFO] [1712349616.686823]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.687388]: Instances: []\n", + "[INFO] [1712349616.687735]: Direct Instances: []\n", + "[INFO] [1712349616.688073]: Inverse Restrictions: []\n", + "[INFO] [1712349616.688396]: -------------------\n", + "[INFO] [1712349616.688718]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712349616.689109]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349616.689457]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudPerceptionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.689739]: Subclasses: []\n", + "[INFO] [1712349616.690048]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.690538]: Instances: []\n", + "[INFO] [1712349616.690800]: Direct Instances: []\n", + "[INFO] [1712349616.691052]: Inverse Restrictions: []\n", + "[INFO] [1712349616.691302]: -------------------\n", + "[INFO] [1712349616.691541]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712349616.691778]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349616.692043]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.ThinkAloudPlanTopic, SOMA.CommunicationTopic, DUL.Object, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.692303]: Subclasses: []\n", + "[INFO] [1712349616.692598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.693086]: Instances: []\n", + "[INFO] [1712349616.693345]: Direct Instances: []\n", + "[INFO] [1712349616.693604]: Inverse Restrictions: []\n", + "[INFO] [1712349616.693845]: -------------------\n", + "[INFO] [1712349616.694088]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712349616.694322]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712349616.694584]: Ancestors: {SOMA.ThinkAloudSceneKnowledgeTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.694845]: Subclasses: []\n", + "[INFO] [1712349616.695139]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.695620]: Instances: []\n", + "[INFO] [1712349616.695877]: Direct Instances: []\n", + "[INFO] [1712349616.696133]: Inverse Restrictions: []\n", + "[INFO] [1712349616.696375]: -------------------\n", + "[INFO] [1712349616.696612]: SOMA.Threshold \n", + "[INFO] [1712349616.696851]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712349616.697112]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, owl.Thing, SOMA.Threshold}\n", + "[INFO] [1712349616.697370]: Subclasses: []\n", + "[INFO] [1712349616.697658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.698136]: Instances: []\n", + "[INFO] [1712349616.698384]: Direct Instances: []\n", + "[INFO] [1712349616.698634]: Inverse Restrictions: []\n", + "[INFO] [1712349616.698878]: -------------------\n", + "[INFO] [1712349616.699116]: SOMA.Throwing \n", + "[INFO] [1712349616.699350]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712349616.699611]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Throwing, SOMA.Actuating}\n", + "[INFO] [1712349616.699852]: Subclasses: []\n", + "[INFO] [1712349616.700139]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.700613]: Instances: []\n", + "[INFO] [1712349616.700865]: Direct Instances: []\n", + "[INFO] [1712349616.701105]: Inverse Restrictions: []\n", + "[INFO] [1712349616.701338]: -------------------\n", + "[INFO] [1712349616.701584]: SOMA.TimeRole \n", + "[INFO] [1712349616.701824]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712349616.702088]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.TimeRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.702326]: Subclasses: []\n", + "[INFO] [1712349616.702606]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.703102]: Instances: []\n", + "[INFO] [1712349616.703366]: Direct Instances: []\n", + "[INFO] [1712349616.703615]: Inverse Restrictions: []\n", + "[INFO] [1712349616.703847]: -------------------\n", + "[INFO] [1712349616.704090]: SOMA.Transporting \n", + "[INFO] [1712349616.704334]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712349616.704598]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Transporting, owl.Thing}\n", + "[INFO] [1712349616.704842]: Subclasses: []\n", + "[INFO] [1712349616.705127]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.705626]: Instances: []\n", + "[INFO] [1712349616.705898]: Direct Instances: []\n", + "[INFO] [1712349616.706150]: Inverse Restrictions: []\n", + "[INFO] [1712349616.706385]: -------------------\n", + "[INFO] [1712349616.706620]: SOMA.TrashContainer \n", + "[INFO] [1712349616.706862]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712349616.707131]: Ancestors: {DUL.Object, SOMA.TrashContainer, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.707377]: Subclasses: []\n", + "[INFO] [1712349616.707656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.708151]: Instances: []\n", + "[INFO] [1712349616.708413]: Direct Instances: []\n", + "[INFO] [1712349616.708660]: Inverse Restrictions: []\n", + "[INFO] [1712349616.708899]: -------------------\n", + "[INFO] [1712349616.709135]: SOMA.Triplestore \n", + "[INFO] [1712349616.709368]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712349616.709629]: Ancestors: {SOMA.SoftwareRole, SOMA.GraphDatabase, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.Triplestore, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", + "[INFO] [1712349616.709886]: Subclasses: []\n", + "[INFO] [1712349616.710179]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.710659]: Instances: []\n", + "[INFO] [1712349616.710932]: Direct Instances: []\n", + "[INFO] [1712349616.711189]: Inverse Restrictions: []\n", + "[INFO] [1712349616.711426]: -------------------\n", + "[INFO] [1712349616.711660]: SOMA.Turning \n", + "[INFO] [1712349616.711893]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712349616.712159]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.Turning, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.712414]: Subclasses: []\n", + "[INFO] [1712349616.712699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.713178]: Instances: []\n", + "[INFO] [1712349616.713443]: Direct Instances: []\n", + "[INFO] [1712349616.713695]: Inverse Restrictions: []\n", + "[INFO] [1712349616.713933]: -------------------\n", + "[INFO] [1712349616.714165]: SOMA.UnavailableSoftware \n", + "[INFO] [1712349616.714396]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712349616.714674]: Ancestors: {DUL.Description, SOMA.UnavailableSoftware, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349616.714926]: Subclasses: []\n", + "[INFO] [1712349616.715216]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.715703]: Instances: []\n", + "[INFO] [1712349616.715966]: Direct Instances: []\n", + "[INFO] [1712349616.716214]: Inverse Restrictions: []\n", + "[INFO] [1712349616.716450]: -------------------\n", + "[INFO] [1712349616.716691]: SOMA.Unsuccessfulness \n", + "[INFO] [1712349616.716939]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712349616.717196]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.717445]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712349616.717725]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.718226]: Instances: []\n", + "[INFO] [1712349616.718488]: Direct Instances: []\n", + "[INFO] [1712349616.718742]: Inverse Restrictions: []\n", + "[INFO] [1712349616.718980]: -------------------\n", + "[INFO] [1712349616.719213]: SOMA.VideoData \n", + "[INFO] [1712349616.719443]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712349616.719714]: Ancestors: {DUL.InformationObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.VideoData}\n", + "[INFO] [1712349616.719957]: Subclasses: []\n", + "[INFO] [1712349616.720240]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.720715]: Instances: []\n", + "[INFO] [1712349616.720970]: Direct Instances: []\n", + "[INFO] [1712349616.721223]: Inverse Restrictions: []\n", + "[INFO] [1712349616.721463]: -------------------\n", + "[INFO] [1712349616.721698]: SOMA.Wardrobe \n", + "[INFO] [1712349616.721927]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712349616.722186]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Wardrobe, SOMA.Cupboard}\n", + "[INFO] [1712349616.722445]: Subclasses: []\n", + "[INFO] [1712349616.722735]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.723215]: Instances: []\n", + "[INFO] [1712349616.723465]: Direct Instances: []\n", + "[INFO] [1712349616.723704]: Inverse Restrictions: []\n", + "[INFO] [1712349616.723948]: -------------------\n", + "[INFO] [1712349616.724184]: SOMA.WaterBottle \n", + "[INFO] [1712349616.724415]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712349616.724670]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Bottle, owl.Thing, SOMA.WaterBottle, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.724930]: Subclasses: []\n", + "[INFO] [1712349616.725216]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.725696]: Instances: []\n", + "[INFO] [1712349616.725966]: Direct Instances: []\n", + "[INFO] [1712349616.726218]: Inverse Restrictions: []\n", + "[INFO] [1712349616.726468]: -------------------\n", + "[INFO] [1712349616.726708]: SOMA.WaterGlass \n", + "[INFO] [1712349616.726934]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712349616.727210]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.Glass, SOMA.DesignedTool, SOMA.WaterGlass, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.727467]: Subclasses: []\n", + "[INFO] [1712349616.727755]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.728236]: Instances: []\n", + "[INFO] [1712349616.728490]: Direct Instances: []\n", + "[INFO] [1712349616.728743]: Inverse Restrictions: []\n", + "[INFO] [1712349616.729060]: -------------------\n", + "[INFO] [1712349616.729331]: SOMA.WineBottle \n", + "[INFO] [1712349616.729571]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712349616.729832]: Ancestors: {SOMA.WineBottle, DUL.Object, DUL.Entity, SOMA.Bottle, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.730088]: Subclasses: []\n", + "[INFO] [1712349616.730375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.730854]: Instances: []\n", + "[INFO] [1712349616.731107]: Direct Instances: []\n", + "[INFO] [1712349616.731347]: Inverse Restrictions: []\n", + "[INFO] [1712349616.731587]: -------------------\n", + "[INFO] [1712349616.731828]: SOMA.WineGlass \n", + "[INFO] [1712349616.732063]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712349616.732324]: Ancestors: {SOMA.Crockery, SOMA.WineGlass, SOMA.Tableware, DUL.Object, SOMA.Glass, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.732560]: Subclasses: []\n", + "[INFO] [1712349616.732854]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.733334]: Instances: []\n", + "[INFO] [1712349616.733588]: Direct Instances: []\n", + "[INFO] [1712349616.733826]: Inverse Restrictions: []\n", + "[INFO] [1712349616.734056]: -------------------\n", + "[INFO] [1712349616.734286]: SOMA.3DPosition \n", + "[INFO] [1712349616.734555]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712349616.734824]: Ancestors: {DUL.SpaceRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.3DPosition}\n", + "[INFO] [1712349616.735067]: Subclasses: []\n", + "[INFO] [1712349616.735368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", + "[INFO] [1712349616.735852]: Instances: []\n", + "[INFO] [1712349616.736103]: Direct Instances: []\n", + "[INFO] [1712349616.736339]: Inverse Restrictions: []\n", + "[INFO] [1712349616.736578]: -------------------\n", + "[INFO] [1712349616.736816]: SOMA.Affordance \n", + "[INFO] [1712349616.737063]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712349616.737306]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Affordance, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349616.737564]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712349616.737863]: Properties: [rdf-schema.comment, SOMA.definesTrigger, SOMA.definesBearer, DUL.definesTask, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.738349]: Instances: []\n", + "[INFO] [1712349616.738616]: Direct Instances: []\n", + "[INFO] [1712349616.738992]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712349616.739231]: -------------------\n", + "[INFO] [1712349616.739464]: SOMA.Disposition \n", + "[INFO] [1712349616.739717]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712349616.739976]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349616.740246]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712349616.740537]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712349616.741073]: Instances: []\n", + "[INFO] [1712349616.741347]: Direct Instances: []\n", + "[INFO] [1712349616.741657]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712349616.741904]: -------------------\n", + "[INFO] [1712349616.742138]: SOMA.Setpoint \n", + "[INFO] [1712349616.742373]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712349616.742624]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, SOMA.Setpoint, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.742871]: Subclasses: []\n", + "[INFO] [1712349616.743152]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.743631]: Instances: []\n", + "[INFO] [1712349616.743901]: Direct Instances: []\n", + "[INFO] [1712349616.744156]: Inverse Restrictions: []\n", + "[INFO] [1712349616.744396]: -------------------\n", + "[INFO] [1712349616.744629]: SOMA.Answer \n", + "[INFO] [1712349616.744864]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712349616.745107]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, DUL.Entity, owl.Thing, SOMA.Answer, SOMA.Message, SOMA.Item}\n", + "[INFO] [1712349616.745367]: Subclasses: []\n", + "[INFO] [1712349616.745662]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.746143]: Instances: []\n", + "[INFO] [1712349616.746397]: Direct Instances: []\n", + "[INFO] [1712349616.746680]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712349616.746933]: -------------------\n", + "[INFO] [1712349616.747180]: SOMA.Message \n", + "[INFO] [1712349616.747426]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712349616.747677]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Message, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349616.747923]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712349616.748225]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", + "[INFO] [1712349616.748715]: Instances: []\n", + "[INFO] [1712349616.748971]: Direct Instances: []\n", + "[INFO] [1712349616.749275]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349616.749526]: -------------------\n", + "[INFO] [1712349616.749766]: SOMA.ProcessType \n", + "[INFO] [1712349616.750012]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712349616.750255]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.750510]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712349616.750814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.751378]: Instances: []\n", + "[INFO] [1712349616.751652]: Direct Instances: []\n", + "[INFO] [1712349616.751984]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712349616.752231]: -------------------\n", + "[INFO] [1712349616.752469]: SOMA.OrderedElement \n", + "[INFO] [1712349616.752714]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712349616.752973]: Ancestors: {owl.Thing, SOMA.OrderedElement, SOMA.Singleton}\n", + "[INFO] [1712349616.753220]: Subclasses: []\n", + "[INFO] [1712349616.753518]: Properties: [rdf-schema.isDefinedBy, SOMA.isOrderedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.754016]: Instances: []\n", + "[INFO] [1712349616.754280]: Direct Instances: []\n", + "[INFO] [1712349616.754641]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712349616.754901]: -------------------\n", + "[INFO] [1712349616.755147]: SOMA.System \n", + "[INFO] [1712349616.755386]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712349616.755631]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.System}\n", + "[INFO] [1712349616.755888]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712349616.756179]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.756689]: Instances: []\n", + "[INFO] [1712349616.757279]: Direct Instances: []\n", + "[INFO] [1712349616.757614]: Inverse Restrictions: []\n", + "[INFO] [1712349616.757889]: -------------------\n", + "[INFO] [1712349616.758148]: SOMA.Binding \n", + "[INFO] [1712349616.758430]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712349616.758695]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349616.758956]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712349616.759274]: Properties: [rdf-schema.comment, Inverse(SOMA.hasBinding), SOMA.hasBindingFiller, SOMA.hasBindingRole, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.759779]: Instances: []\n", + "[INFO] [1712349616.760056]: Direct Instances: []\n", + "[INFO] [1712349616.760319]: Inverse Restrictions: []\n", + "[INFO] [1712349616.760566]: -------------------\n", + "[INFO] [1712349616.760809]: SOMA.Joint \n", + "[INFO] [1712349616.761154]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712349616.761434]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349616.761699]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712349616.762034]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasChildLink, SOMA.hasParentLink]\n", + "[INFO] [1712349616.762555]: Instances: []\n", + "[INFO] [1712349616.762832]: Direct Instances: []\n", + "[INFO] [1712349616.763092]: Inverse Restrictions: []\n", + "[INFO] [1712349616.763333]: -------------------\n", + "[INFO] [1712349616.763582]: SOMA.Color \n", + "[INFO] [1712349616.763830]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712349616.764076]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Color, owl.Thing, SOMA.Extrinsic}\n", + "[INFO] [1712349616.764316]: Subclasses: []\n", + "[INFO] [1712349616.764602]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.765097]: Instances: []\n", + "[INFO] [1712349616.765361]: Direct Instances: []\n", + "[INFO] [1712349616.765655]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712349616.765900]: -------------------\n", + "[INFO] [1712349616.766142]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712349616.766391]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349616.766643]: Ancestors: {SOMA.ExecutionStateRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.766886]: Subclasses: []\n", + "[INFO] [1712349616.767190]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.767724]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712349616.768009]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712349616.768268]: Inverse Restrictions: []\n", + "[INFO] [1712349616.768511]: -------------------\n", + "[INFO] [1712349616.768747]: SOMA.Feature \n", + "[INFO] [1712349616.769007]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712349616.769258]: Ancestors: {DUL.Object, owl.Thing, DUL.Entity, SOMA.Feature}\n", + "[INFO] [1712349616.769510]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712349616.770009]: Properties: [SOMA.isFeatureOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.770632]: Instances: []\n", + "[INFO] [1712349616.771009]: Direct Instances: []\n", + "[INFO] [1712349616.771412]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712349616.771782]: -------------------\n", + "[INFO] [1712349616.772140]: SOMA.FrictionAttribute \n", + "[INFO] [1712349616.772494]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712349616.772854]: Ancestors: {SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.773210]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712349616.773603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasFrictionValue, rdf-schema.label]\n", + "[INFO] [1712349616.774211]: Instances: []\n", + "[INFO] [1712349616.774585]: Direct Instances: []\n", + "[INFO] [1712349616.774944]: Inverse Restrictions: []\n", + "[INFO] [1712349616.775288]: -------------------\n", + "[INFO] [1712349616.775634]: SOMA.SituationTransition \n", + "[INFO] [1712349616.775990]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712349616.776343]: Ancestors: {DUL.Situation, SOMA.SituationTransition, DUL.Entity, owl.Thing, DUL.Transition}\n", + "[INFO] [1712349616.776698]: Subclasses: []\n", + "[INFO] [1712349616.777095]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.777683]: Instances: []\n", + "[INFO] [1712349616.778055]: Direct Instances: []\n", + "[INFO] [1712349616.779938]: Inverse Restrictions: []\n", + "[INFO] [1712349616.780320]: -------------------\n", + "[INFO] [1712349616.780674]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712349616.781025]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712349616.781372]: Ancestors: {SOMA.NonmanifestedSituation, owl.Thing, DUL.Situation, DUL.Entity}\n", + "[INFO] [1712349616.781715]: Subclasses: []\n", + "[INFO] [1712349616.782123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.782723]: Instances: []\n", + "[INFO] [1712349616.783091]: Direct Instances: []\n", + "[INFO] [1712349616.784553]: Inverse Restrictions: []\n", + "[INFO] [1712349616.784927]: -------------------\n", + "[INFO] [1712349616.785278]: SOMA.JointLimit \n", + "[INFO] [1712349616.785623]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712349616.785968]: Ancestors: {SOMA.JointLimit, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.786305]: Subclasses: []\n", + "[INFO] [1712349616.786685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.787281]: Instances: []\n", + "[INFO] [1712349616.787645]: Direct Instances: []\n", + "[INFO] [1712349616.788057]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712349616.788398]: -------------------\n", + "[INFO] [1712349616.788742]: SOMA.JointState \n", + "[INFO] [1712349616.789103]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712349616.789449]: Ancestors: {SOMA.JointState, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.789791]: Subclasses: []\n", + "[INFO] [1712349616.790182]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasJointPosition, rdf-schema.isDefinedBy, SOMA.hasJointVelocity]\n", + "[INFO] [1712349616.790785]: Instances: []\n", + "[INFO] [1712349616.791149]: Direct Instances: []\n", + "[INFO] [1712349616.791568]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712349616.791906]: -------------------\n", + "[INFO] [1712349616.792238]: SOMA.Localization \n", + "[INFO] [1712349616.792579]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712349616.792937]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Localization, SOMA.Extrinsic}\n", + "[INFO] [1712349616.793289]: Subclasses: []\n", + "[INFO] [1712349616.793678]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.794254]: Instances: []\n", + "[INFO] [1712349616.794626]: Direct Instances: []\n", + "[INFO] [1712349616.795840]: Inverse Restrictions: []\n", + "[INFO] [1712349616.796195]: -------------------\n", + "[INFO] [1712349616.796546]: SOMA.MassAttribute \n", + "[INFO] [1712349616.796893]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712349616.797238]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.MassAttribute, owl.Thing}\n", + "[INFO] [1712349616.797572]: Subclasses: []\n", + "[INFO] [1712349616.797953]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label]\n", + "[INFO] [1712349616.798555]: Instances: []\n", + "[INFO] [1712349616.798965]: Direct Instances: []\n", + "[INFO] [1712349616.799349]: Inverse Restrictions: []\n", + "[INFO] [1712349616.799697]: -------------------\n", + "[INFO] [1712349616.800029]: SOMA.NetForce \n", + "[INFO] [1712349616.800351]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712349616.800702]: Ancestors: {SOMA.ForceAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.NetForce, owl.Thing}\n", + "[INFO] [1712349616.801167]: Subclasses: []\n", + "[INFO] [1712349616.801605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.802162]: Instances: []\n", + "[INFO] [1712349616.802480]: Direct Instances: []\n", + "[INFO] [1712349616.802761]: Inverse Restrictions: []\n", + "[INFO] [1712349616.803034]: -------------------\n", + "[INFO] [1712349616.803281]: SOMA.Succedence \n", + "[INFO] [1712349616.803565]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712349616.803828]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Succedence, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349616.804079]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712349616.804382]: Properties: [rdf-schema.comment, Inverse(SOMA.hasSuccedence), SOMA.hasSuccessor, SOMA.hasPredecessor, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.804895]: Instances: []\n", + "[INFO] [1712349616.805166]: Direct Instances: []\n", + "[INFO] [1712349616.805424]: Inverse Restrictions: []\n", + "[INFO] [1712349616.805663]: -------------------\n", + "[INFO] [1712349616.805900]: SOMA.Preference \n", + "[INFO] [1712349616.806144]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712349616.806402]: Ancestors: {DUL.Quality, DUL.Entity, SOMA.Preference, SOMA.SocialQuality, owl.Thing}\n", + "[INFO] [1712349616.806654]: Subclasses: []\n", + "[INFO] [1712349616.806944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.807425]: Instances: []\n", + "[INFO] [1712349616.807699]: Direct Instances: []\n", + "[INFO] [1712349616.808077]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712349616.808325]: -------------------\n", + "[INFO] [1712349616.808561]: SOMA.Shape \n", + "[INFO] [1712349616.808808]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712349616.809148]: Ancestors: {SOMA.PhysicalQuality, SOMA.Shape, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712349616.809438]: Subclasses: []\n", + "[INFO] [1712349616.809752]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.810255]: Instances: []\n", + "[INFO] [1712349616.810527]: Direct Instances: []\n", + "[INFO] [1712349616.811648]: Inverse Restrictions: []\n", + "[INFO] [1712349616.811916]: -------------------\n", + "[INFO] [1712349616.812167]: SOMA.ShapeRegion \n", + "[INFO] [1712349616.812430]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712349616.812711]: Ancestors: {DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349616.812998]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712349616.813303]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.813815]: Instances: []\n", + "[INFO] [1712349616.814094]: Direct Instances: []\n", + "[INFO] [1712349616.814912]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712349616.815217]: -------------------\n", + "[INFO] [1712349616.815484]: SOMA.SoftwareInstance \n", + "[INFO] [1712349616.815750]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712349616.816011]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", + "[INFO] [1712349616.816262]: Subclasses: []\n", + "[INFO] [1712349616.816558]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isDesignedBy, DUL.actsFor, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.817079]: Instances: []\n", + "[INFO] [1712349616.817439]: Direct Instances: []\n", + "[INFO] [1712349616.817813]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712349616.818096]: -------------------\n", + "[INFO] [1712349616.818368]: SOMA.StateType \n", + "[INFO] [1712349616.818654]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712349616.818928]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.819205]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712349616.819514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.820035]: Instances: []\n", + "[INFO] [1712349616.820304]: Direct Instances: []\n", + "[INFO] [1712349616.820628]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712349616.820878]: -------------------\n", + "[INFO] [1712349616.821130]: SOMA.PhysicalEffector \n", + "[INFO] [1712349616.821389]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712349616.821646]: Ancestors: {SOMA.FunctionalPart, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector}\n", + "[INFO] [1712349616.821897]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712349616.822189]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, Inverse(DUL.hasPart), rdf-schema.label]\n", + "[INFO] [1712349616.822709]: Instances: []\n", + "[INFO] [1712349616.822972]: Direct Instances: []\n", + "[INFO] [1712349616.823230]: Inverse Restrictions: []\n", + "[INFO] [1712349616.823469]: -------------------\n", + "[INFO] [1712349616.823706]: SOMA.QueryingTask \n", + "[INFO] [1712349616.823961]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712349616.824210]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712349616.824455]: Subclasses: []\n", + "[INFO] [1712349616.824752]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712349616.825380]: Instances: []\n", + "[INFO] [1712349616.825693]: Direct Instances: []\n", + "[INFO] [1712349616.826049]: Inverse Restrictions: []\n", + "[INFO] [1712349616.826311]: -------------------\n", + "[INFO] [1712349616.826560]: SOMA.Order \n", + "[INFO] [1712349616.826817]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712349616.827080]: Ancestors: {SOMA.Order, DUL.FormalEntity, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.827332]: Subclasses: []\n", + "[INFO] [1712349616.827632]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.orders]\n", + "[INFO] [1712349616.828122]: Instances: []\n", + "[INFO] [1712349616.828395]: Direct Instances: []\n", + "[INFO] [1712349616.828753]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712349616.829013]: -------------------\n", + "[INFO] [1712349616.829250]: SOMA.State \n", + "[INFO] [1712349616.829488]: Super classes: [DUL.Event]\n", + "[INFO] [1712349616.829741]: Ancestors: {owl.Thing, DUL.Entity, SOMA.State, DUL.Event}\n", + "[INFO] [1712349616.829994]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712349616.830277]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.830778]: Instances: []\n", + "[INFO] [1712349616.831046]: Direct Instances: []\n", + "[INFO] [1712349616.831539]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712349616.831788]: -------------------\n", + "[INFO] [1712349616.832024]: SOMA.Transient \n", + "[INFO] [1712349616.832268]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712349616.832531]: Ancestors: {SOMA.Transient, owl.Thing, DUL.Object, DUL.Entity}\n", + "[INFO] [1712349616.832817]: Subclasses: []\n", + "[INFO] [1712349616.833120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.transitionsFrom]\n", + "[INFO] [1712349616.833667]: Instances: []\n", + "[INFO] [1712349616.834040]: Direct Instances: []\n", + "[INFO] [1712349616.834316]: Inverse Restrictions: []\n", + "[INFO] [1712349616.834565]: -------------------\n", + "[INFO] [1712349616.834820]: SOMA.ColorRegion \n", + "[INFO] [1712349616.835083]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712349616.835355]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, owl.Thing}\n", + "[INFO] [1712349616.835644]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712349616.835979]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.836525]: Instances: []\n", + "[INFO] [1712349616.836818]: Direct Instances: []\n", + "[INFO] [1712349616.837178]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712349616.837454]: -------------------\n", + "[INFO] [1712349616.837723]: SOMA.ForceAttribute \n", + "[INFO] [1712349616.837998]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712349616.838286]: Ancestors: {SOMA.ForceAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349616.838576]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712349616.838908]: Properties: [SOMA.hasForceValue, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.839452]: Instances: []\n", + "[INFO] [1712349616.839734]: Direct Instances: []\n", + "[INFO] [1712349616.839993]: Inverse Restrictions: []\n", + "[INFO] [1712349616.840237]: -------------------\n", + "[INFO] [1712349616.840489]: SOMA.API_Specification \n", + "[INFO] [1712349616.840727]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712349616.840975]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712349616.841216]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712349616.841498]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.841993]: Instances: []\n", + "[INFO] [1712349616.842253]: Direct Instances: []\n", + "[INFO] [1712349616.842503]: Inverse Restrictions: []\n", + "[INFO] [1712349616.842742]: -------------------\n", + "[INFO] [1712349616.842977]: SOMA.InterfaceSpecification \n", + "[INFO] [1712349616.843208]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712349616.843460]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712349616.843711]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712349616.843997]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.844488]: Instances: []\n", + "[INFO] [1712349616.844757]: Direct Instances: []\n", + "[INFO] [1712349616.845078]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712349616.845325]: -------------------\n", + "[INFO] [1712349616.845562]: SOMA.AbductiveReasoning \n", + "[INFO] [1712349616.845795]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712349616.846045]: Ancestors: {SOMA.InformationAcquisition, SOMA.AbductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.846293]: Subclasses: []\n", + "[INFO] [1712349616.846580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.847059]: Instances: []\n", + "[INFO] [1712349616.847322]: Direct Instances: []\n", + "[INFO] [1712349616.847575]: Inverse Restrictions: []\n", + "[INFO] [1712349616.847815]: -------------------\n", + "[INFO] [1712349616.848047]: SOMA.Reasoning \n", + "[INFO] [1712349616.848274]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349616.848520]: Ancestors: {owl.Thing, SOMA.Reasoning, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712349616.848773]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712349616.849067]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.849626]: Instances: []\n", + "[INFO] [1712349616.849914]: Direct Instances: []\n", + "[INFO] [1712349616.850173]: Inverse Restrictions: []\n", + "[INFO] [1712349616.850409]: -------------------\n", + "[INFO] [1712349616.850646]: SOMA.Accessor \n", + "[INFO] [1712349616.850893]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712349616.851152]: Ancestors: {DUL.SocialObject, SOMA.Accessor, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.851393]: Subclasses: []\n", + "[INFO] [1712349616.851671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.852166]: Instances: []\n", + "[INFO] [1712349616.852425]: Direct Instances: []\n", + "[INFO] [1712349616.852670]: Inverse Restrictions: []\n", + "[INFO] [1712349616.852987]: -------------------\n", + "[INFO] [1712349616.853407]: SOMA.Instrument \n", + "[INFO] [1712349616.853804]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712349616.854194]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.854589]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712349616.854924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.855456]: Instances: []\n", + "[INFO] [1712349616.855722]: Direct Instances: []\n", + "[INFO] [1712349616.856090]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349616.856344]: -------------------\n", + "[INFO] [1712349616.856593]: SOMA.Accident \n", + "[INFO] [1712349616.856850]: Super classes: [DUL.Event]\n", + "[INFO] [1712349616.857100]: Ancestors: {SOMA.Accident, owl.Thing, DUL.Entity, DUL.Event}\n", + "[INFO] [1712349616.857341]: Subclasses: []\n", + "[INFO] [1712349616.857630]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.858119]: Instances: []\n", + "[INFO] [1712349616.858388]: Direct Instances: []\n", + "[INFO] [1712349616.858638]: Inverse Restrictions: []\n", + "[INFO] [1712349616.858880]: -------------------\n", + "[INFO] [1712349616.859115]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712349616.859354]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712349616.859614]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Plan, owl.Thing, SOMA.ActionExecutionPlan}\n", + "[INFO] [1712349616.859861]: Subclasses: []\n", + "[INFO] [1712349616.860146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.860626]: Instances: []\n", + "[INFO] [1712349616.860909]: Direct Instances: []\n", + "[INFO] [1712349616.861171]: Inverse Restrictions: []\n", + "[INFO] [1712349616.861411]: -------------------\n", + "[INFO] [1712349616.861645]: SOMA.Actuating \n", + "[INFO] [1712349616.861875]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349616.862130]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349616.862406]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712349616.862696]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.863220]: Instances: []\n", + "[INFO] [1712349616.863493]: Direct Instances: []\n", + "[INFO] [1712349616.863761]: Inverse Restrictions: []\n", + "[INFO] [1712349616.864002]: -------------------\n", + "[INFO] [1712349616.864239]: SOMA.PhysicalTask \n", + "[INFO] [1712349616.864489]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712349616.864754]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.865035]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712349616.865403]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.865998]: Instances: []\n", + "[INFO] [1712349616.866272]: Direct Instances: []\n", + "[INFO] [1712349616.866597]: Inverse Restrictions: []\n", + "[INFO] [1712349616.866843]: -------------------\n", + "[INFO] [1712349616.867084]: SOMA.AestheticDesign \n", + "[INFO] [1712349616.867326]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712349616.867578]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.AestheticDesign, owl.Thing}\n", + "[INFO] [1712349616.867823]: Subclasses: []\n", + "[INFO] [1712349616.868121]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.868635]: Instances: []\n", + "[INFO] [1712349616.868917]: Direct Instances: []\n", + "[INFO] [1712349616.869175]: Inverse Restrictions: []\n", + "[INFO] [1712349616.869414]: -------------------\n", + "[INFO] [1712349616.869651]: SOMA.AgentRole \n", + "[INFO] [1712349616.869893]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712349616.870142]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.AgentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.870384]: Subclasses: []\n", + "[INFO] [1712349616.870669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.871144]: Instances: []\n", + "[INFO] [1712349616.871414]: Direct Instances: []\n", + "[INFO] [1712349616.871701]: Inverse Restrictions: []\n", + "[INFO] [1712349616.871941]: -------------------\n", + "[INFO] [1712349616.872173]: SOMA.CausativeRole \n", + "[INFO] [1712349616.872406]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349616.872658]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.872927]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712349616.873221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.873710]: Instances: []\n", + "[INFO] [1712349616.873987]: Direct Instances: []\n", + "[INFO] [1712349616.874252]: Inverse Restrictions: []\n", + "[INFO] [1712349616.874486]: -------------------\n", + "[INFO] [1712349616.874726]: SOMA.Agonist \n", + "[INFO] [1712349616.874959]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349616.875200]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Agonist, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.875442]: Subclasses: []\n", + "[INFO] [1712349616.875721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.876216]: Instances: []\n", + "[INFO] [1712349616.876486]: Direct Instances: []\n", + "[INFO] [1712349616.876771]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712349616.877014]: -------------------\n", + "[INFO] [1712349616.877239]: SOMA.Patient \n", + "[INFO] [1712349616.877477]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349616.877721]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.878011]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712349616.878299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.878860]: Instances: []\n", + "[INFO] [1712349616.879133]: Direct Instances: []\n", + "[INFO] [1712349616.879539]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349616.879794]: -------------------\n", + "[INFO] [1712349616.880030]: SOMA.Algorithm \n", + "[INFO] [1712349616.880261]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712349616.880495]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Algorithm, DUL.Plan, owl.Thing}\n", + "[INFO] [1712349616.880730]: Subclasses: []\n", + "[INFO] [1712349616.881021]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.881517]: Instances: []\n", + "[INFO] [1712349616.881789]: Direct Instances: []\n", + "[INFO] [1712349616.882105]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712349616.882339]: -------------------\n", + "[INFO] [1712349616.882572]: SOMA.Alteration \n", + "[INFO] [1712349616.882813]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712349616.883057]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.883310]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712349616.883593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.884094]: Instances: []\n", + "[INFO] [1712349616.884362]: Direct Instances: []\n", + "[INFO] [1712349616.884619]: Inverse Restrictions: []\n", + "[INFO] [1712349616.884860]: -------------------\n", + "[INFO] [1712349616.885091]: SOMA.AlterativeInteraction \n", + "[INFO] [1712349616.885331]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712349616.885576]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.AlterativeInteraction, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.885827]: Subclasses: []\n", + "[INFO] [1712349616.886120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.886612]: Instances: []\n", + "[INFO] [1712349616.886880]: Direct Instances: []\n", + "[INFO] [1712349616.887166]: Inverse Restrictions: []\n", + "[INFO] [1712349616.887395]: -------------------\n", + "[INFO] [1712349616.887629]: SOMA.ForceInteraction \n", + "[INFO] [1712349616.887870]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712349616.888114]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.888382]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712349616.888695]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712349616.889203]: Instances: []\n", + "[INFO] [1712349616.889478]: Direct Instances: []\n", + "[INFO] [1712349616.889733]: Inverse Restrictions: []\n", + "[INFO] [1712349616.889972]: -------------------\n", + "[INFO] [1712349616.890215]: SOMA.PreservativeInteraction \n", + "[INFO] [1712349616.890450]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712349616.890697]: Ancestors: {SOMA.PreservativeInteraction, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349616.890936]: Subclasses: []\n", + "[INFO] [1712349616.891227]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.891717]: Instances: []\n", + "[INFO] [1712349616.891976]: Direct Instances: []\n", + "[INFO] [1712349616.892261]: Inverse Restrictions: []\n", + "[INFO] [1712349616.892498]: -------------------\n", + "[INFO] [1712349616.892730]: SOMA.AlteredObject \n", + "[INFO] [1712349616.892991]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349616.893252]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", + "[INFO] [1712349616.893516]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712349616.893806]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.894296]: Instances: []\n", + "[INFO] [1712349616.894572]: Direct Instances: []\n", + "[INFO] [1712349616.894911]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712349616.895158]: -------------------\n", + "[INFO] [1712349616.895395]: SOMA.Amateurish \n", + "[INFO] [1712349616.895627]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712349616.895884]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.896140]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712349616.896436]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.896930]: Instances: []\n", + "[INFO] [1712349616.897218]: Direct Instances: []\n", + "[INFO] [1712349616.897480]: Inverse Restrictions: []\n", + "[INFO] [1712349616.897722]: -------------------\n", + "[INFO] [1712349616.897958]: SOMA.AnsweringTask \n", + "[INFO] [1712349616.898191]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.898436]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", + "[INFO] [1712349616.898680]: Subclasses: []\n", + "[INFO] [1712349616.898971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712349616.899452]: Instances: []\n", + "[INFO] [1712349616.899705]: Direct Instances: []\n", + "[INFO] [1712349616.899993]: Inverse Restrictions: []\n", + "[INFO] [1712349616.900234]: -------------------\n", + "[INFO] [1712349616.900468]: SOMA.CommandingTask \n", + "[INFO] [1712349616.900705]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712349616.901047]: Ancestors: {SOMA.CommandingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712349616.901305]: Subclasses: []\n", + "[INFO] [1712349616.901604]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.902103]: Instances: []\n", + "[INFO] [1712349616.902365]: Direct Instances: []\n", + "[INFO] [1712349616.902686]: Inverse Restrictions: []\n", + "[INFO] [1712349616.902925]: -------------------\n", + "[INFO] [1712349616.903172]: SOMA.IllocutionaryTask \n", + "[INFO] [1712349616.903428]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712349616.903666]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712349616.903918]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712349616.904208]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.904715]: Instances: []\n", + "[INFO] [1712349616.904983]: Direct Instances: []\n", + "[INFO] [1712349616.905275]: Inverse Restrictions: []\n", + "[INFO] [1712349616.905530]: -------------------\n", + "[INFO] [1712349616.905777]: SOMA.Antagonist \n", + "[INFO] [1712349616.906010]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349616.906255]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Antagonist, DUL.Role}\n", + "[INFO] [1712349616.906495]: Subclasses: []\n", + "[INFO] [1712349616.906791]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.907276]: Instances: []\n", + "[INFO] [1712349616.907540]: Direct Instances: []\n", + "[INFO] [1712349616.907820]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712349616.908056]: -------------------\n", + "[INFO] [1712349616.908302]: SOMA.Appliance \n", + "[INFO] [1712349616.908538]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712349616.908782]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349616.909033]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712349616.909322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.909820]: Instances: []\n", + "[INFO] [1712349616.910078]: Direct Instances: []\n", + "[INFO] [1712349616.910325]: Inverse Restrictions: []\n", + "[INFO] [1712349616.910558]: -------------------\n", + "[INFO] [1712349616.910799]: SOMA.Approaching \n", + "[INFO] [1712349616.911042]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349616.911293]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Approaching, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.911531]: Subclasses: []\n", + "[INFO] [1712349616.911814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.912313]: Instances: []\n", + "[INFO] [1712349616.912581]: Direct Instances: []\n", + "[INFO] [1712349616.912831]: Inverse Restrictions: []\n", + "[INFO] [1712349616.913071]: -------------------\n", + "[INFO] [1712349616.913302]: SOMA.Locomotion \n", + "[INFO] [1712349616.913532]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712349616.913789]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349616.914047]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712349616.914349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.914854]: Instances: []\n", + "[INFO] [1712349616.915116]: Direct Instances: []\n", + "[INFO] [1712349616.915374]: Inverse Restrictions: []\n", + "[INFO] [1712349616.915611]: -------------------\n", + "[INFO] [1712349616.915843]: SOMA.ArchiveFile \n", + "[INFO] [1712349616.916083]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712349616.916334]: Ancestors: {DUL.InformationEntity, SOMA.ArchiveFile, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", + "[INFO] [1712349616.916575]: Subclasses: []\n", + "[INFO] [1712349616.916880]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.917391]: Instances: []\n", + "[INFO] [1712349616.917658]: Direct Instances: []\n", + "[INFO] [1712349616.917907]: Inverse Restrictions: []\n", + "[INFO] [1712349616.918148]: -------------------\n", + "[INFO] [1712349616.918388]: SOMA.ArchiveText \n", + "[INFO] [1712349616.918622]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.918868]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", + "[INFO] [1712349616.919110]: Subclasses: []\n", + "[INFO] [1712349616.919405]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, DUL.expresses]\n", + "[INFO] [1712349616.919889]: Instances: []\n", + "[INFO] [1712349616.920159]: Direct Instances: []\n", + "[INFO] [1712349616.920497]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712349616.920740]: -------------------\n", + "[INFO] [1712349616.920978]: SOMA.Digital_File \n", + "[INFO] [1712349616.921221]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712349616.921481]: Ancestors: {DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", + "[INFO] [1712349616.921733]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712349616.922026]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasNameString, DUL.realizes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349616.922509]: Instances: []\n", + "[INFO] [1712349616.922788]: Direct Instances: []\n", + "[INFO] [1712349616.923880]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712349616.924136]: -------------------\n", + "[INFO] [1712349616.924375]: SOMA.ArchiveFormat \n", + "[INFO] [1712349616.924614]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712349616.924880]: Ancestors: {SOMA.System, DUL.SocialObject, SOMA.ArchiveFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349616.925128]: Subclasses: []\n", + "[INFO] [1712349616.925417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.925896]: Instances: []\n", + "[INFO] [1712349616.926152]: Direct Instances: []\n", + "[INFO] [1712349616.926442]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712349616.926687]: -------------------\n", + "[INFO] [1712349616.926921]: SOMA.File_format \n", + "[INFO] [1712349616.927152]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349616.927392]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712349616.927647]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712349616.927937]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.928430]: Instances: []\n", + "[INFO] [1712349616.928703]: Direct Instances: []\n", + "[INFO] [1712349616.928965]: Inverse Restrictions: []\n", + "[INFO] [1712349616.929211]: -------------------\n", + "[INFO] [1712349616.929448]: SOMA.FileConfiguration \n", + "[INFO] [1712349616.929691]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.929938]: Ancestors: {owl.Thing, SOMA.FileConfiguration}\n", + "[INFO] [1712349616.930179]: Subclasses: []\n", + "[INFO] [1712349616.930465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.930960]: Instances: []\n", + "[INFO] [1712349616.931220]: Direct Instances: []\n", + "[INFO] [1712349616.931520]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712349616.931754]: -------------------\n", + "[INFO] [1712349616.931985]: SOMA.Structured_Text \n", + "[INFO] [1712349616.932219]: Super classes: [owl.Thing]\n", + "[INFO] [1712349616.932470]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", + "[INFO] [1712349616.932717]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712349616.933009]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349616.933515]: Instances: []\n", + "[INFO] [1712349616.933780]: Direct Instances: []\n", + "[INFO] [1712349616.934207]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712349616.934456]: -------------------\n", + "[INFO] [1712349616.934706]: SOMA.AreaSurveying \n", + "[INFO] [1712349616.934943]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712349616.935182]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", + "[INFO] [1712349616.935418]: Subclasses: []\n", + "[INFO] [1712349616.935705]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.936204]: Instances: []\n", + "[INFO] [1712349616.936466]: Direct Instances: []\n", + "[INFO] [1712349616.936716]: Inverse Restrictions: []\n", + "[INFO] [1712349616.936955]: -------------------\n", + "[INFO] [1712349616.937192]: SOMA.Perceiving \n", + "[INFO] [1712349616.937441]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712349616.937684]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712349616.937932]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712349616.938214]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.938723]: Instances: []\n", + "[INFO] [1712349616.938997]: Direct Instances: []\n", + "[INFO] [1712349616.939246]: Inverse Restrictions: []\n", + "[INFO] [1712349616.939483]: -------------------\n", + "[INFO] [1712349616.939726]: SOMA.Arm \n", + "[INFO] [1712349616.939966]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712349616.940219]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.Arm, SOMA.PhysicalEffector, SOMA.Limb}\n", + "[INFO] [1712349616.940456]: Subclasses: []\n", + "[INFO] [1712349616.940735]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.941235]: Instances: []\n", + "[INFO] [1712349616.941500]: Direct Instances: []\n", + "[INFO] [1712349616.941783]: Inverse Restrictions: []\n", + "[INFO] [1712349616.942022]: -------------------\n", + "[INFO] [1712349616.942258]: SOMA.Limb \n", + "[INFO] [1712349616.942500]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712349616.942747]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", + "[INFO] [1712349616.942999]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712349616.943292]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.943794]: Instances: []\n", + "[INFO] [1712349616.944055]: Direct Instances: []\n", + "[INFO] [1712349616.944360]: Inverse Restrictions: []\n", + "[INFO] [1712349616.944599]: -------------------\n", + "[INFO] [1712349616.944838]: SOMA.Arranging \n", + "[INFO] [1712349616.945086]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712349616.945337]: Ancestors: {SOMA.Arranging, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.945582]: Subclasses: []\n", + "[INFO] [1712349616.945865]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.946353]: Instances: []\n", + "[INFO] [1712349616.946612]: Direct Instances: []\n", + "[INFO] [1712349616.946855]: Inverse Restrictions: []\n", + "[INFO] [1712349616.947085]: -------------------\n", + "[INFO] [1712349616.947318]: SOMA.Constructing \n", + "[INFO] [1712349616.947549]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349616.947803]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.948055]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712349616.948351]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.948907]: Instances: []\n", + "[INFO] [1712349616.949389]: Direct Instances: []\n", + "[INFO] [1712349616.949788]: Inverse Restrictions: []\n", + "[INFO] [1712349616.950160]: -------------------\n", + "[INFO] [1712349616.950533]: SOMA.ArtificialAgent \n", + "[INFO] [1712349616.950904]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712349616.951282]: Ancestors: {DUL.Agent, DUL.Object, DUL.Entity, DUL.PhysicalObject, SOMA.ArtificialAgent, DUL.PhysicalAgent, owl.Thing}\n", + "[INFO] [1712349616.951660]: Subclasses: []\n", + "[INFO] [1712349616.951990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.952492]: Instances: []\n", + "[INFO] [1712349616.952754]: Direct Instances: []\n", + "[INFO] [1712349616.953009]: Inverse Restrictions: []\n", + "[INFO] [1712349616.953250]: -------------------\n", + "[INFO] [1712349616.953487]: SOMA.Assembling \n", + "[INFO] [1712349616.953724]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712349616.953983]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Assembling, owl.Thing}\n", + "[INFO] [1712349616.954228]: Subclasses: []\n", + "[INFO] [1712349616.954513]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.954990]: Instances: []\n", + "[INFO] [1712349616.955240]: Direct Instances: []\n", + "[INFO] [1712349616.955491]: Inverse Restrictions: []\n", + "[INFO] [1712349616.955725]: -------------------\n", + "[INFO] [1712349616.955954]: SOMA.AssertionTask \n", + "[INFO] [1712349616.956193]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712349616.956425]: Ancestors: {SOMA.AssertionTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712349616.956670]: Subclasses: []\n", + "[INFO] [1712349616.956960]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.957436]: Instances: []\n", + "[INFO] [1712349616.957695]: Direct Instances: []\n", + "[INFO] [1712349616.957938]: Inverse Restrictions: []\n", + "[INFO] [1712349616.958513]: -------------------\n", + "[INFO] [1712349616.958920]: SOMA.DeclarativeClause \n", + "[INFO] [1712349616.959149]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712349616.959395]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DeclarativeClause, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", + "[INFO] [1712349616.959647]: Subclasses: []\n", + "[INFO] [1712349616.959940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.960422]: Instances: []\n", + "[INFO] [1712349616.960677]: Direct Instances: []\n", + "[INFO] [1712349616.960974]: Inverse Restrictions: []\n", + "[INFO] [1712349616.961215]: -------------------\n", + "[INFO] [1712349616.961449]: SOMA.AssumingArmPose \n", + "[INFO] [1712349616.961681]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712349616.961923]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.AssumingArmPose}\n", + "[INFO] [1712349616.962178]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712349616.962466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.962946]: Instances: []\n", + "[INFO] [1712349616.963203]: Direct Instances: []\n", + "[INFO] [1712349616.963443]: Inverse Restrictions: []\n", + "[INFO] [1712349616.963685]: -------------------\n", + "[INFO] [1712349616.963922]: SOMA.AssumingPose \n", + "[INFO] [1712349616.964151]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349616.964389]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.964632]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712349616.964930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.965430]: Instances: []\n", + "[INFO] [1712349616.965687]: Direct Instances: []\n", + "[INFO] [1712349616.965931]: Inverse Restrictions: []\n", + "[INFO] [1712349616.966175]: -------------------\n", + "[INFO] [1712349616.966412]: SOMA.AttentionShift \n", + "[INFO] [1712349616.966644]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712349616.966891]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.AttentionShift, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349616.967130]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712349616.967419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.967906]: Instances: []\n", + "[INFO] [1712349616.968167]: Direct Instances: []\n", + "[INFO] [1712349616.968412]: Inverse Restrictions: []\n", + "[INFO] [1712349616.968641]: -------------------\n", + "[INFO] [1712349616.968875]: SOMA.MentalTask \n", + "[INFO] [1712349616.969113]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712349616.969364]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349616.969620]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712349616.969908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.970418]: Instances: []\n", + "[INFO] [1712349616.970675]: Direct Instances: []\n", + "[INFO] [1712349616.970955]: Inverse Restrictions: []\n", + "[INFO] [1712349616.971190]: -------------------\n", + "[INFO] [1712349616.971431]: SOMA.AvoidedObject \n", + "[INFO] [1712349616.971664]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349616.971907]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.AvoidedObject, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.972141]: Subclasses: []\n", + "[INFO] [1712349616.972420]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.972917]: Instances: []\n", + "[INFO] [1712349616.973185]: Direct Instances: []\n", + "[INFO] [1712349616.973433]: Inverse Restrictions: []\n", + "[INFO] [1712349616.973667]: -------------------\n", + "[INFO] [1712349616.973899]: SOMA.Avoiding \n", + "[INFO] [1712349616.974138]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712349616.974389]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Avoiding, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.974627]: Subclasses: []\n", + "[INFO] [1712349616.974905]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.975395]: Instances: []\n", + "[INFO] [1712349616.975651]: Direct Instances: []\n", + "[INFO] [1712349616.975891]: Inverse Restrictions: []\n", + "[INFO] [1712349616.976118]: -------------------\n", + "[INFO] [1712349616.976345]: SOMA.Navigating \n", + "[INFO] [1712349616.976577]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349616.976827]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349616.977072]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712349616.977352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.977849]: Instances: []\n", + "[INFO] [1712349616.978107]: Direct Instances: []\n", + "[INFO] [1712349616.978356]: Inverse Restrictions: []\n", + "[INFO] [1712349616.978589]: -------------------\n", + "[INFO] [1712349616.978819]: SOMA.Barrier \n", + "[INFO] [1712349616.979059]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712349616.979308]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.979550]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712349616.979824]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.980318]: Instances: []\n", + "[INFO] [1712349616.980574]: Direct Instances: []\n", + "[INFO] [1712349616.980859]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712349616.981094]: -------------------\n", + "[INFO] [1712349616.981329]: SOMA.Restrictor \n", + "[INFO] [1712349616.981575]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712349616.981825]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.982077]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712349616.982357]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349616.982845]: Instances: []\n", + "[INFO] [1712349616.983115]: Direct Instances: []\n", + "[INFO] [1712349616.983461]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712349616.983705]: -------------------\n", + "[INFO] [1712349616.983937]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712349616.984174]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712349616.984430]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349616.984690]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712349616.985087]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", + "[INFO] [1712349616.985688]: Instances: []\n", + "[INFO] [1712349616.985989]: Direct Instances: []\n", + "[INFO] [1712349616.986267]: Inverse Restrictions: []\n", + "[INFO] [1712349616.986515]: -------------------\n", + "[INFO] [1712349616.986757]: SOMA.BeneficiaryRole \n", + "[INFO] [1712349616.987006]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712349616.987262]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.BeneficiaryRole, DUL.Role}\n", + "[INFO] [1712349616.987511]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712349616.987798]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.988297]: Instances: []\n", + "[INFO] [1712349616.988560]: Direct Instances: []\n", + "[INFO] [1712349616.988814]: Inverse Restrictions: []\n", + "[INFO] [1712349616.989048]: -------------------\n", + "[INFO] [1712349616.989280]: SOMA.GoalRole \n", + "[INFO] [1712349616.989524]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349616.989771]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349616.990018]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712349616.990299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.990804]: Instances: []\n", + "[INFO] [1712349616.991067]: Direct Instances: []\n", + "[INFO] [1712349616.991318]: Inverse Restrictions: []\n", + "[INFO] [1712349616.991551]: -------------------\n", + "[INFO] [1712349616.991785]: SOMA.CounterfactualBinding \n", + "[INFO] [1712349616.992031]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712349616.992278]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.CounterfactualBinding, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349616.992514]: Subclasses: []\n", + "[INFO] [1712349616.992808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.993526]: Instances: []\n", + "[INFO] [1712349616.993912]: Direct Instances: []\n", + "[INFO] [1712349616.994339]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712349616.994685]: -------------------\n", + "[INFO] [1712349616.995022]: SOMA.FactualBinding \n", + "[INFO] [1712349616.995362]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712349616.995711]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.FactualBinding, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349616.996049]: Subclasses: []\n", + "[INFO] [1712349616.996429]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349616.997008]: Instances: []\n", + "[INFO] [1712349616.997374]: Direct Instances: []\n", + "[INFO] [1712349616.997792]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712349616.998129]: -------------------\n", + "[INFO] [1712349616.998458]: SOMA.RoleFillerBinding \n", + "[INFO] [1712349616.998786]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712349616.999124]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.RoleFillerBinding, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349616.999470]: Subclasses: []\n", + "[INFO] [1712349616.999865]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.000441]: Instances: []\n", + "[INFO] [1712349617.000811]: Direct Instances: []\n", + "[INFO] [1712349617.001190]: Inverse Restrictions: []\n", + "[INFO] [1712349617.001520]: -------------------\n", + "[INFO] [1712349617.001846]: SOMA.RoleRoleBinding \n", + "[INFO] [1712349617.002181]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712349617.002525]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, SOMA.RoleRoleBinding, DUL.Entity, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349617.002856]: Subclasses: []\n", + "[INFO] [1712349617.003232]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.003814]: Instances: []\n", + "[INFO] [1712349617.004167]: Direct Instances: []\n", + "[INFO] [1712349617.004913]: Inverse Restrictions: []\n", + "[INFO] [1712349617.005306]: -------------------\n", + "[INFO] [1712349617.005658]: SOMA.DesignedComponent \n", + "[INFO] [1712349617.006006]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712349617.006354]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349617.006716]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712349617.007112]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.007722]: Instances: []\n", + "[INFO] [1712349617.008070]: Direct Instances: []\n", + "[INFO] [1712349617.008419]: Inverse Restrictions: []\n", + "[INFO] [1712349617.008754]: -------------------\n", + "[INFO] [1712349617.009202]: SOMA.Blockage \n", + "[INFO] [1712349617.009568]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712349617.009935]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.010304]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712349617.010726]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.011337]: Instances: []\n", + "[INFO] [1712349617.011626]: Direct Instances: []\n", + "[INFO] [1712349617.011883]: Inverse Restrictions: []\n", + "[INFO] [1712349617.012123]: -------------------\n", + "[INFO] [1712349617.012368]: SOMA.BlockedObject \n", + "[INFO] [1712349617.012606]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.012856]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.013103]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712349617.013384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.013884]: Instances: []\n", + "[INFO] [1712349617.014146]: Direct Instances: []\n", + "[INFO] [1712349617.014433]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712349617.014673]: -------------------\n", + "[INFO] [1712349617.014921]: SOMA.BodyMovement \n", + "[INFO] [1712349617.015190]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712349617.015446]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.015700]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712349617.015985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.016508]: Instances: []\n", + "[INFO] [1712349617.016770]: Direct Instances: []\n", + "[INFO] [1712349617.017114]: Inverse Restrictions: []\n", + "[INFO] [1712349617.017380]: -------------------\n", + "[INFO] [1712349617.017631]: SOMA.Motion \n", + "[INFO] [1712349617.017874]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712349617.018123]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.018382]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712349617.018687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.019230]: Instances: []\n", + "[INFO] [1712349617.019492]: Direct Instances: []\n", + "[INFO] [1712349617.019743]: Inverse Restrictions: []\n", + "[INFO] [1712349617.019993]: -------------------\n", + "[INFO] [1712349617.020236]: SOMA.Boiling \n", + "[INFO] [1712349617.020473]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712349617.020722]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, SOMA.Vaporizing, DUL.Object, DUL.Entity, SOMA.Alteration, owl.Thing, SOMA.ProcessType, SOMA.Boiling}\n", + "[INFO] [1712349617.020977]: Subclasses: []\n", + "[INFO] [1712349617.021261]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.021763]: Instances: []\n", + "[INFO] [1712349617.022030]: Direct Instances: []\n", + "[INFO] [1712349617.022279]: Inverse Restrictions: []\n", + "[INFO] [1712349617.022513]: -------------------\n", + "[INFO] [1712349617.022748]: SOMA.Vaporizing \n", + "[INFO] [1712349617.022990]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712349617.023251]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, SOMA.Vaporizing, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.023504]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712349617.023795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, SOMA.isProcessTypeOf]\n", + "[INFO] [1712349617.024277]: Instances: []\n", + "[INFO] [1712349617.024547]: Direct Instances: []\n", + "[INFO] [1712349617.024815]: Inverse Restrictions: []\n", + "[INFO] [1712349617.025064]: -------------------\n", + "[INFO] [1712349617.025309]: SOMA.DesignedContainer \n", + "[INFO] [1712349617.025548]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712349617.025797]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349617.026071]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", + "[INFO] [1712349617.026371]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.026918]: Instances: []\n", + "[INFO] [1712349617.027189]: Direct Instances: []\n", + "[INFO] [1712349617.027451]: Inverse Restrictions: []\n", + "[INFO] [1712349617.027690]: -------------------\n", + "[INFO] [1712349617.027925]: SOMA.BoxShape \n", + "[INFO] [1712349617.028166]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712349617.028436]: Ancestors: {DUL.Region, DUL.Entity, DUL.Abstract, SOMA.BoxShape, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349617.028683]: Subclasses: []\n", + "[INFO] [1712349617.028980]: Properties: [rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasWidth, SOMA.hasHeight, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349617.029469]: Instances: []\n", + "[INFO] [1712349617.029740]: Direct Instances: []\n", + "[INFO] [1712349617.030020]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712349617.030261]: -------------------\n", + "[INFO] [1712349617.030499]: SOMA.Deposition \n", + "[INFO] [1712349617.030741]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712349617.030996]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.031246]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712349617.031543]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.032032]: Instances: []\n", + "[INFO] [1712349617.032299]: Direct Instances: []\n", + "[INFO] [1712349617.032621]: Inverse Restrictions: []\n", + "[INFO] [1712349617.032863]: -------------------\n", + "[INFO] [1712349617.033098]: SOMA.CanCut \n", + "[INFO] [1712349617.033338]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712349617.033581]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.CanCut, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.033831]: Subclasses: []\n", + "[INFO] [1712349617.034125]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.034602]: Instances: []\n", + "[INFO] [1712349617.034864]: Direct Instances: []\n", + "[INFO] [1712349617.035451]: Inverse Restrictions: []\n", + "[INFO] [1712349617.035800]: -------------------\n", + "[INFO] [1712349617.036150]: SOMA.Variability \n", + "[INFO] [1712349617.036410]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712349617.036679]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.036969]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712349617.037271]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.037770]: Instances: []\n", + "[INFO] [1712349617.038051]: Direct Instances: []\n", + "[INFO] [1712349617.038321]: Inverse Restrictions: []\n", + "[INFO] [1712349617.038557]: -------------------\n", + "[INFO] [1712349617.038788]: SOMA.Cutter \n", + "[INFO] [1712349617.039026]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712349617.039271]: Ancestors: {SOMA.Cutter, SOMA.Tool, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.039511]: Subclasses: []\n", + "[INFO] [1712349617.039797]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.040281]: Instances: []\n", + "[INFO] [1712349617.040538]: Direct Instances: []\n", + "[INFO] [1712349617.040852]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712349617.041089]: -------------------\n", + "[INFO] [1712349617.041316]: SOMA.CutObject \n", + "[INFO] [1712349617.041551]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712349617.041793]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.CutObject, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", + "[INFO] [1712349617.042031]: Subclasses: []\n", + "[INFO] [1712349617.042319]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.042814]: Instances: []\n", + "[INFO] [1712349617.043085]: Direct Instances: []\n", + "[INFO] [1712349617.043410]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712349617.043646]: -------------------\n", + "[INFO] [1712349617.043876]: SOMA.Capability \n", + "[INFO] [1712349617.044135]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712349617.044389]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.044647]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712349617.044939]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712349617.045437]: Instances: []\n", + "[INFO] [1712349617.045696]: Direct Instances: []\n", + "[INFO] [1712349617.045949]: Inverse Restrictions: []\n", + "[INFO] [1712349617.046175]: -------------------\n", + "[INFO] [1712349617.046400]: SOMA.Capacity \n", + "[INFO] [1712349617.046635]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349617.046877]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Capacity, SOMA.Intrinsic}\n", + "[INFO] [1712349617.047119]: Subclasses: []\n", + "[INFO] [1712349617.047400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.047892]: Instances: []\n", + "[INFO] [1712349617.048152]: Direct Instances: []\n", + "[INFO] [1712349617.048450]: Inverse Restrictions: []\n", + "[INFO] [1712349617.048681]: -------------------\n", + "[INFO] [1712349617.049028]: SOMA.Intrinsic \n", + "[INFO] [1712349617.049386]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712349617.049695]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712349617.049995]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712349617.050306]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.050825]: Instances: []\n", + "[INFO] [1712349617.051112]: Direct Instances: []\n", + "[INFO] [1712349617.051392]: Inverse Restrictions: []\n", + "[INFO] [1712349617.051634]: -------------------\n", + "[INFO] [1712349617.051868]: SOMA.Catching \n", + "[INFO] [1712349617.052101]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.052344]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.Catching, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.052600]: Subclasses: []\n", + "[INFO] [1712349617.052912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.053424]: Instances: []\n", + "[INFO] [1712349617.053683]: Direct Instances: []\n", + "[INFO] [1712349617.053932]: Inverse Restrictions: []\n", + "[INFO] [1712349617.054174]: -------------------\n", + "[INFO] [1712349617.054412]: SOMA.PickingUp \n", + "[INFO] [1712349617.054642]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349617.054881]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.PickingUp}\n", + "[INFO] [1712349617.055120]: Subclasses: []\n", + "[INFO] [1712349617.055422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.055911]: Instances: []\n", + "[INFO] [1712349617.056191]: Direct Instances: []\n", + "[INFO] [1712349617.056453]: Inverse Restrictions: []\n", + "[INFO] [1712349617.056691]: -------------------\n", + "[INFO] [1712349617.056930]: SOMA.CausalEventRole \n", + "[INFO] [1712349617.057159]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712349617.057401]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.CausalEventRole, DUL.Role}\n", + "[INFO] [1712349617.057660]: Subclasses: []\n", + "[INFO] [1712349617.057953]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.058434]: Instances: []\n", + "[INFO] [1712349617.058684]: Direct Instances: []\n", + "[INFO] [1712349617.058972]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349617.059224]: -------------------\n", + "[INFO] [1712349617.059464]: SOMA.EventAdjacentRole \n", + "[INFO] [1712349617.059695]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712349617.059931]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.060186]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712349617.060493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.061160]: Instances: []\n", + "[INFO] [1712349617.061449]: Direct Instances: []\n", + "[INFO] [1712349617.061715]: Inverse Restrictions: []\n", + "[INFO] [1712349617.061950]: -------------------\n", + "[INFO] [1712349617.062178]: SOMA.CausedMotionTheory \n", + "[INFO] [1712349617.062419]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712349617.062674]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.CausedMotionTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.062918]: Subclasses: []\n", + "[INFO] [1712349617.063212]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasPart, DUL.defines]\n", + "[INFO] [1712349617.063682]: Instances: []\n", + "[INFO] [1712349617.063947]: Direct Instances: []\n", + "[INFO] [1712349617.064194]: Inverse Restrictions: []\n", + "[INFO] [1712349617.064422]: -------------------\n", + "[INFO] [1712349617.064647]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712349617.064874]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712349617.065109]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.065378]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712349617.065667]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.066225]: Instances: []\n", + "[INFO] [1712349617.066523]: Direct Instances: []\n", + "[INFO] [1712349617.066859]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.StateTransition, SOMA.Scene]\n", + "[INFO] [1712349617.067105]: -------------------\n", + "[INFO] [1712349617.067340]: SOMA.PerformerRole \n", + "[INFO] [1712349617.067574]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712349617.067827]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.068088]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712349617.068385]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.068878]: Instances: []\n", + "[INFO] [1712349617.069154]: Direct Instances: []\n", + "[INFO] [1712349617.069491]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349617.069753]: -------------------\n", + "[INFO] [1712349617.069990]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712349617.070236]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712349617.070497]: Ancestors: {DUL.Description, SOMA.SourcePathGoalTheory, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.070747]: Subclasses: []\n", + "[INFO] [1712349617.071042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.071529]: Instances: []\n", + "[INFO] [1712349617.071809]: Direct Instances: []\n", + "[INFO] [1712349617.072112]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712349617.072371]: -------------------\n", + "[INFO] [1712349617.072608]: SOMA.RoomSurface \n", + "[INFO] [1712349617.072841]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712349617.073189]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, SOMA.RoomSurface}\n", + "[INFO] [1712349617.073488]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712349617.073808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.074308]: Instances: []\n", + "[INFO] [1712349617.074593]: Direct Instances: []\n", + "[INFO] [1712349617.074859]: Inverse Restrictions: []\n", + "[INFO] [1712349617.075095]: -------------------\n", + "[INFO] [1712349617.075326]: SOMA.Channel \n", + "[INFO] [1712349617.075562]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712349617.075803]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.076054]: Subclasses: []\n", + "[INFO] [1712349617.076382]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", + "[INFO] [1712349617.076880]: Instances: []\n", + "[INFO] [1712349617.077138]: Direct Instances: []\n", + "[INFO] [1712349617.077460]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349617.077703]: -------------------\n", + "[INFO] [1712349617.077938]: SOMA.PathRole \n", + "[INFO] [1712349617.078165]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712349617.078402]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.PathRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.078661]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712349617.078955]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.079443]: Instances: []\n", + "[INFO] [1712349617.079703]: Direct Instances: []\n", + "[INFO] [1712349617.080009]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712349617.080249]: -------------------\n", + "[INFO] [1712349617.080482]: SOMA.CommunicationTask \n", + "[INFO] [1712349617.080731]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712349617.080986]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.081255]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712349617.081564]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712349617.082062]: Instances: []\n", + "[INFO] [1712349617.082335]: Direct Instances: []\n", + "[INFO] [1712349617.082860]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel]\n", + "[INFO] [1712349617.083117]: -------------------\n", + "[INFO] [1712349617.083354]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712349617.083586]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712349617.083817]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.CheckingObjectPresence}\n", + "[INFO] [1712349617.084067]: Subclasses: []\n", + "[INFO] [1712349617.084358]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.084838]: Instances: []\n", + "[INFO] [1712349617.085119]: Direct Instances: []\n", + "[INFO] [1712349617.085376]: Inverse Restrictions: []\n", + "[INFO] [1712349617.085609]: -------------------\n", + "[INFO] [1712349617.085839]: SOMA.ChemicalProcess \n", + "[INFO] [1712349617.086072]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712349617.086328]: Ancestors: {DUL.Entity, DUL.Event, owl.Thing, SOMA.ChemicalProcess, DUL.Process}\n", + "[INFO] [1712349617.086575]: Subclasses: []\n", + "[INFO] [1712349617.086862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.087342]: Instances: []\n", + "[INFO] [1712349617.087618]: Direct Instances: []\n", + "[INFO] [1712349617.087870]: Inverse Restrictions: []\n", + "[INFO] [1712349617.088100]: -------------------\n", + "[INFO] [1712349617.088328]: SOMA.Choice \n", + "[INFO] [1712349617.088553]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712349617.088796]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Choice, SOMA.ResultRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.089058]: Subclasses: []\n", + "[INFO] [1712349617.089349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.089830]: Instances: []\n", + "[INFO] [1712349617.090080]: Direct Instances: []\n", + "[INFO] [1712349617.090334]: Inverse Restrictions: []\n", + "[INFO] [1712349617.090575]: -------------------\n", + "[INFO] [1712349617.090807]: SOMA.ResultRole \n", + "[INFO] [1712349617.091036]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712349617.091271]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResultRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.091532]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712349617.091822]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.092301]: Instances: []\n", + "[INFO] [1712349617.092554]: Direct Instances: []\n", + "[INFO] [1712349617.092808]: Inverse Restrictions: []\n", + "[INFO] [1712349617.093052]: -------------------\n", + "[INFO] [1712349617.093285]: SOMA.CircularCylinder \n", + "[INFO] [1712349617.093522]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712349617.093769]: Ancestors: {SOMA.CircularCylinder, SOMA.CylinderShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349617.094028]: Subclasses: []\n", + "[INFO] [1712349617.094330]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712349617.094812]: Instances: []\n", + "[INFO] [1712349617.095064]: Direct Instances: []\n", + "[INFO] [1712349617.095318]: Inverse Restrictions: []\n", + "[INFO] [1712349617.095551]: -------------------\n", + "[INFO] [1712349617.095778]: SOMA.CylinderShape \n", + "[INFO] [1712349617.096013]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712349617.096250]: Ancestors: {SOMA.CylinderShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349617.096521]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712349617.096836]: Properties: [rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349617.097322]: Instances: []\n", + "[INFO] [1712349617.097598]: Direct Instances: []\n", + "[INFO] [1712349617.097855]: Inverse Restrictions: []\n", + "[INFO] [1712349617.098095]: -------------------\n", + "[INFO] [1712349617.098328]: SOMA.Classifier \n", + "[INFO] [1712349617.098559]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712349617.098805]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.Classifier, SOMA.StatisticalReasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349617.099056]: Subclasses: []\n", + "[INFO] [1712349617.099380]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.099873]: Instances: []\n", + "[INFO] [1712349617.100133]: Direct Instances: []\n", + "[INFO] [1712349617.100389]: Inverse Restrictions: []\n", + "[INFO] [1712349617.100633]: -------------------\n", + "[INFO] [1712349617.100873]: SOMA.StatisticalReasoner \n", + "[INFO] [1712349617.101107]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712349617.101347]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.StatisticalReasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349617.101607]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712349617.101901]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.102391]: Instances: []\n", + "[INFO] [1712349617.102643]: Direct Instances: []\n", + "[INFO] [1712349617.102882]: Inverse Restrictions: []\n", + "[INFO] [1712349617.103131]: -------------------\n", + "[INFO] [1712349617.103379]: SOMA.ClausalObject \n", + "[INFO] [1712349617.103620]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712349617.103864]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", + "[INFO] [1712349617.104122]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712349617.104511]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.105052]: Instances: []\n", + "[INFO] [1712349617.105340]: Direct Instances: []\n", + "[INFO] [1712349617.105604]: Inverse Restrictions: []\n", + "[INFO] [1712349617.105850]: -------------------\n", + "[INFO] [1712349617.106096]: SOMA.Phrase \n", + "[INFO] [1712349617.106340]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712349617.106588]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Phrase}\n", + "[INFO] [1712349617.106836]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712349617.107118]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349617.107626]: Instances: []\n", + "[INFO] [1712349617.107896]: Direct Instances: []\n", + "[INFO] [1712349617.108150]: Inverse Restrictions: []\n", + "[INFO] [1712349617.108386]: -------------------\n", + "[INFO] [1712349617.108619]: SOMA.Clean \n", + "[INFO] [1712349617.108865]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712349617.109121]: Ancestors: {SOMA.Clean, DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.109366]: Subclasses: []\n", + "[INFO] [1712349617.109648]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.110152]: Instances: []\n", + "[INFO] [1712349617.110415]: Direct Instances: []\n", + "[INFO] [1712349617.110733]: Inverse Restrictions: []\n", + "[INFO] [1712349617.110973]: -------------------\n", + "[INFO] [1712349617.111223]: SOMA.CleanlinessRegion \n", + "[INFO] [1712349617.111464]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349617.111709]: Ancestors: {DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.111957]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712349617.112244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.112756]: Instances: []\n", + "[INFO] [1712349617.113027]: Direct Instances: []\n", + "[INFO] [1712349617.113345]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712349617.113590]: -------------------\n", + "[INFO] [1712349617.113827]: SOMA.Cleaning \n", + "[INFO] [1712349617.114072]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712349617.114334]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Cleaning}\n", + "[INFO] [1712349617.114582]: Subclasses: []\n", + "[INFO] [1712349617.114871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349617.115374]: Instances: []\n", + "[INFO] [1712349617.115637]: Direct Instances: []\n", + "[INFO] [1712349617.115915]: Inverse Restrictions: []\n", + "[INFO] [1712349617.116174]: -------------------\n", + "[INFO] [1712349617.116423]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712349617.116665]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349617.116913]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.117169]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712349617.117455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.117974]: Instances: []\n", + "[INFO] [1712349617.118240]: Direct Instances: []\n", + "[INFO] [1712349617.118496]: Inverse Restrictions: []\n", + "[INFO] [1712349617.118739]: -------------------\n", + "[INFO] [1712349617.118973]: SOMA.Purification \n", + "[INFO] [1712349617.119224]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712349617.119491]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Purification, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.119740]: Subclasses: []\n", + "[INFO] [1712349617.120031]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.120517]: Instances: []\n", + "[INFO] [1712349617.120789]: Direct Instances: []\n", + "[INFO] [1712349617.121078]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712349617.121325]: -------------------\n", + "[INFO] [1712349617.121561]: SOMA.Cleanliness \n", + "[INFO] [1712349617.121801]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712349617.122063]: Ancestors: {DUL.Quality, DUL.Entity, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing}\n", + "[INFO] [1712349617.122313]: Subclasses: []\n", + "[INFO] [1712349617.122603]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349617.123091]: Instances: []\n", + "[INFO] [1712349617.123356]: Direct Instances: []\n", + "[INFO] [1712349617.123682]: Inverse Restrictions: []\n", + "[INFO] [1712349617.123927]: -------------------\n", + "[INFO] [1712349617.124160]: SOMA.SocialQuality \n", + "[INFO] [1712349617.124394]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712349617.124647]: Ancestors: {DUL.Quality, SOMA.SocialQuality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.124905]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712349617.125202]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.125692]: Instances: []\n", + "[INFO] [1712349617.125964]: Direct Instances: []\n", + "[INFO] [1712349617.126225]: Inverse Restrictions: []\n", + "[INFO] [1712349617.126460]: -------------------\n", + "[INFO] [1712349617.126696]: SOMA.Client-Server_Specification \n", + "[INFO] [1712349617.126940]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712349617.127200]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing, SOMA.Client-Server_Specification}\n", + "[INFO] [1712349617.127447]: Subclasses: []\n", + "[INFO] [1712349617.127741]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", + "[INFO] [1712349617.128225]: Instances: []\n", + "[INFO] [1712349617.128493]: Direct Instances: []\n", + "[INFO] [1712349617.128811]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712349617.129056]: -------------------\n", + "[INFO] [1712349617.129300]: SOMA.ClientRole \n", + "[INFO] [1712349617.129556]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712349617.129806]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ClientRole, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.130049]: Subclasses: []\n", + "[INFO] [1712349617.130339]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", + "[INFO] [1712349617.130843]: Instances: []\n", + "[INFO] [1712349617.131104]: Direct Instances: []\n", + "[INFO] [1712349617.131406]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712349617.131647]: -------------------\n", + "[INFO] [1712349617.131881]: SOMA.ServerRole \n", + "[INFO] [1712349617.132129]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712349617.132380]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.ServerRole, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.132657]: Subclasses: []\n", + "[INFO] [1712349617.132972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", + "[INFO] [1712349617.133456]: Instances: []\n", + "[INFO] [1712349617.133725]: Direct Instances: []\n", + "[INFO] [1712349617.134036]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712349617.134278]: -------------------\n", + "[INFO] [1712349617.134515]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712349617.134747]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349617.134994]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.135254]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712349617.135551]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.136067]: Instances: []\n", + "[INFO] [1712349617.136344]: Direct Instances: []\n", + "[INFO] [1712349617.136611]: Inverse Restrictions: []\n", + "[INFO] [1712349617.136857]: -------------------\n", + "[INFO] [1712349617.137096]: SOMA.Closing \n", + "[INFO] [1712349617.137331]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.137571]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Closing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.137825]: Subclasses: []\n", + "[INFO] [1712349617.138128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.138609]: Instances: []\n", + "[INFO] [1712349617.138873]: Direct Instances: []\n", + "[INFO] [1712349617.139127]: Inverse Restrictions: []\n", + "[INFO] [1712349617.139361]: -------------------\n", + "[INFO] [1712349617.139596]: SOMA.Delivering \n", + "[INFO] [1712349617.139828]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712349617.140069]: Ancestors: {SOMA.Delivering, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.140333]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712349617.140640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349617.141135]: Instances: []\n", + "[INFO] [1712349617.141407]: Direct Instances: []\n", + "[INFO] [1712349617.141664]: Inverse Restrictions: []\n", + "[INFO] [1712349617.141909]: -------------------\n", + "[INFO] [1712349617.142143]: SOMA.Fetching \n", + "[INFO] [1712349617.142375]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712349617.142614]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAcquiring, SOMA.Fetching, owl.Thing}\n", + "[INFO] [1712349617.142868]: Subclasses: []\n", + "[INFO] [1712349617.143169]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.143651]: Instances: []\n", + "[INFO] [1712349617.143905]: Direct Instances: []\n", + "[INFO] [1712349617.144157]: Inverse Restrictions: []\n", + "[INFO] [1712349617.144400]: -------------------\n", + "[INFO] [1712349617.144639]: SOMA.Lifting \n", + "[INFO] [1712349617.144876]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.145118]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Lifting, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.145371]: Subclasses: []\n", + "[INFO] [1712349617.145674]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.146158]: Instances: []\n", + "[INFO] [1712349617.146424]: Direct Instances: []\n", + "[INFO] [1712349617.146679]: Inverse Restrictions: []\n", + "[INFO] [1712349617.146917]: -------------------\n", + "[INFO] [1712349617.147150]: SOMA.Opening \n", + "[INFO] [1712349617.147374]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.147613]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Opening, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.147865]: Subclasses: []\n", + "[INFO] [1712349617.148162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.148642]: Instances: []\n", + "[INFO] [1712349617.148929]: Direct Instances: []\n", + "[INFO] [1712349617.149209]: Inverse Restrictions: []\n", + "[INFO] [1712349617.149487]: -------------------\n", + "[INFO] [1712349617.149734]: SOMA.Pulling \n", + "[INFO] [1712349617.149970]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.150217]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Pulling, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.150473]: Subclasses: []\n", + "[INFO] [1712349617.150774]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.151259]: Instances: []\n", + "[INFO] [1712349617.151511]: Direct Instances: []\n", + "[INFO] [1712349617.151757]: Inverse Restrictions: []\n", + "[INFO] [1712349617.152007]: -------------------\n", + "[INFO] [1712349617.152246]: SOMA.Pushing \n", + "[INFO] [1712349617.152477]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.152718]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", + "[INFO] [1712349617.152975]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712349617.153286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.153780]: Instances: []\n", + "[INFO] [1712349617.154051]: Direct Instances: []\n", + "[INFO] [1712349617.154319]: Inverse Restrictions: []\n", + "[INFO] [1712349617.154565]: -------------------\n", + "[INFO] [1712349617.154804]: SOMA.Squeezing \n", + "[INFO] [1712349617.155040]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.155285]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Squeezing, SOMA.Actuating}\n", + "[INFO] [1712349617.155543]: Subclasses: []\n", + "[INFO] [1712349617.155836]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.156325]: Instances: []\n", + "[INFO] [1712349617.156601]: Direct Instances: []\n", + "[INFO] [1712349617.156867]: Inverse Restrictions: []\n", + "[INFO] [1712349617.157107]: -------------------\n", + "[INFO] [1712349617.157342]: SOMA.Linkage \n", + "[INFO] [1712349617.157582]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712349617.157841]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Linkage, SOMA.Connectivity, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.158094]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712349617.158386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.158879]: Instances: []\n", + "[INFO] [1712349617.159142]: Direct Instances: []\n", + "[INFO] [1712349617.159865]: Inverse Restrictions: []\n", + "[INFO] [1712349617.160238]: -------------------\n", + "[INFO] [1712349617.160528]: SOMA.Clumsiness \n", + "[INFO] [1712349617.160836]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712349617.161096]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.Clumsiness, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.161370]: Subclasses: []\n", + "[INFO] [1712349617.161683]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.162169]: Instances: []\n", + "[INFO] [1712349617.162445]: Direct Instances: []\n", + "[INFO] [1712349617.162704]: Inverse Restrictions: []\n", + "[INFO] [1712349617.162940]: -------------------\n", + "[INFO] [1712349617.163173]: SOMA.CognitiveAgent \n", + "[INFO] [1712349617.163404]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712349617.163640]: Ancestors: {SOMA.CognitiveAgent, DUL.Agent, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.163893]: Subclasses: []\n", + "[INFO] [1712349617.164191]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.164666]: Instances: []\n", + "[INFO] [1712349617.164941]: Direct Instances: []\n", + "[INFO] [1712349617.165208]: Inverse Restrictions: []\n", + "[INFO] [1712349617.165445]: -------------------\n", + "[INFO] [1712349617.165673]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712349617.165941]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712349617.166194]: Ancestors: {DUL.Agent, DUL.Object, DUL.Entity, SOMA.SubCognitiveAgent, owl.Thing}\n", + "[INFO] [1712349617.166443]: Subclasses: []\n", + "[INFO] [1712349617.166731]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.167204]: Instances: []\n", + "[INFO] [1712349617.167465]: Direct Instances: []\n", + "[INFO] [1712349617.167721]: Inverse Restrictions: []\n", + "[INFO] [1712349617.167956]: -------------------\n", + "[INFO] [1712349617.168183]: SOMA.Collision \n", + "[INFO] [1712349617.168408]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712349617.168642]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Collision, owl.Thing}\n", + "[INFO] [1712349617.168907]: Subclasses: []\n", + "[INFO] [1712349617.169200]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.169698]: Instances: []\n", + "[INFO] [1712349617.169958]: Direct Instances: []\n", + "[INFO] [1712349617.170211]: Inverse Restrictions: []\n", + "[INFO] [1712349617.170454]: -------------------\n", + "[INFO] [1712349617.170691]: SOMA.Extrinsic \n", + "[INFO] [1712349617.170924]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712349617.171174]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Extrinsic}\n", + "[INFO] [1712349617.171427]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712349617.171721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.172264]: Instances: []\n", + "[INFO] [1712349617.172540]: Direct Instances: []\n", + "[INFO] [1712349617.172808]: Inverse Restrictions: []\n", + "[INFO] [1712349617.173057]: -------------------\n", + "[INFO] [1712349617.173299]: SOMA.ImperativeClause \n", + "[INFO] [1712349617.173553]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712349617.173819]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ImperativeClause, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", + "[INFO] [1712349617.174068]: Subclasses: []\n", + "[INFO] [1712349617.174361]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", + "[INFO] [1712349617.174847]: Instances: []\n", + "[INFO] [1712349617.175117]: Direct Instances: []\n", + "[INFO] [1712349617.175411]: Inverse Restrictions: []\n", + "[INFO] [1712349617.175656]: -------------------\n", + "[INFO] [1712349617.175891]: SOMA.CommitedObject \n", + "[INFO] [1712349617.176132]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712349617.176418]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.CommitedObject, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.176665]: Subclasses: []\n", + "[INFO] [1712349617.176954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.177438]: Instances: []\n", + "[INFO] [1712349617.177709]: Direct Instances: []\n", + "[INFO] [1712349617.177969]: Inverse Restrictions: []\n", + "[INFO] [1712349617.178207]: -------------------\n", + "[INFO] [1712349617.178442]: SOMA.ConnectedObject \n", + "[INFO] [1712349617.178673]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.178915]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.179181]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712349617.179477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.179977]: Instances: []\n", + "[INFO] [1712349617.180231]: Direct Instances: []\n", + "[INFO] [1712349617.180582]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712349617.180835]: -------------------\n", + "[INFO] [1712349617.181078]: SOMA.CommunicationAction \n", + "[INFO] [1712349617.181320]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712349617.181563]: Ancestors: {SOMA.CommunicationAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712349617.181799]: Subclasses: []\n", + "[INFO] [1712349617.182112]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349617.182647]: Instances: []\n", + "[INFO] [1712349617.182934]: Direct Instances: []\n", + "[INFO] [1712349617.183244]: Inverse Restrictions: []\n", + "[INFO] [1712349617.183499]: -------------------\n", + "[INFO] [1712349617.183742]: SOMA.LinguisticObject \n", + "[INFO] [1712349617.183984]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712349617.184243]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.184496]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712349617.184790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.185285]: Instances: []\n", + "[INFO] [1712349617.185562]: Direct Instances: []\n", + "[INFO] [1712349617.185860]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712349617.186106]: -------------------\n", + "[INFO] [1712349617.186349]: SOMA.CommunicationReport \n", + "[INFO] [1712349617.186586]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349617.186841]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing, SOMA.CommunicationReport}\n", + "[INFO] [1712349617.187103]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712349617.187393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.187872]: Instances: []\n", + "[INFO] [1712349617.188122]: Direct Instances: []\n", + "[INFO] [1712349617.188378]: Inverse Restrictions: []\n", + "[INFO] [1712349617.188614]: -------------------\n", + "[INFO] [1712349617.188867]: SOMA.Receiver \n", + "[INFO] [1712349617.189109]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712349617.189368]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.Receiver, SOMA.ExperiencerRole, DUL.Role}\n", + "[INFO] [1712349617.189618]: Subclasses: []\n", + "[INFO] [1712349617.189910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", + "[INFO] [1712349617.190393]: Instances: []\n", + "[INFO] [1712349617.190662]: Direct Instances: []\n", + "[INFO] [1712349617.190978]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349617.191228]: -------------------\n", + "[INFO] [1712349617.191465]: SOMA.Sender \n", + "[INFO] [1712349617.191701]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712349617.191962]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, SOMA.Sender, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.192210]: Subclasses: []\n", + "[INFO] [1712349617.192503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", + "[INFO] [1712349617.192997]: Instances: []\n", + "[INFO] [1712349617.193270]: Direct Instances: []\n", + "[INFO] [1712349617.193594]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349617.193841]: -------------------\n", + "[INFO] [1712349617.194079]: SOMA.CommunicationTopic \n", + "[INFO] [1712349617.194327]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712349617.194594]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.194858]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349617.195157]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.195666]: Instances: []\n", + "[INFO] [1712349617.195932]: Direct Instances: []\n", + "[INFO] [1712349617.196193]: Inverse Restrictions: []\n", + "[INFO] [1712349617.196433]: -------------------\n", + "[INFO] [1712349617.196666]: SOMA.ResourceRole \n", + "[INFO] [1712349617.196899]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349617.197140]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.197402]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712349617.197692]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.198229]: Instances: []\n", + "[INFO] [1712349617.198494]: Direct Instances: []\n", + "[INFO] [1712349617.198746]: Inverse Restrictions: []\n", + "[INFO] [1712349617.198989]: -------------------\n", + "[INFO] [1712349617.199258]: SOMA.Composing \n", + "[INFO] [1712349617.199524]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712349617.199788]: Ancestors: {SOMA.Composing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.200038]: Subclasses: []\n", + "[INFO] [1712349617.200325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.200809]: Instances: []\n", + "[INFO] [1712349617.201087]: Direct Instances: []\n", + "[INFO] [1712349617.201380]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712349617.201625]: -------------------\n", + "[INFO] [1712349617.201862]: SOMA.Computer_Language \n", + "[INFO] [1712349617.202096]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712349617.202343]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712349617.202610]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712349617.202901]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.203410]: Instances: []\n", + "[INFO] [1712349617.203680]: Direct Instances: []\n", + "[INFO] [1712349617.203944]: Inverse Restrictions: []\n", + "[INFO] [1712349617.204184]: -------------------\n", + "[INFO] [1712349617.204418]: SOMA.FormalLanguage \n", + "[INFO] [1712349617.204664]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712349617.204924]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712349617.205176]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349617.205465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.205978]: Instances: []\n", + "[INFO] [1712349617.206255]: Direct Instances: []\n", + "[INFO] [1712349617.206572]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712349617.206822]: -------------------\n", + "[INFO] [1712349617.207063]: SOMA.Computer_Program \n", + "[INFO] [1712349617.207302]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.207553]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712349617.207807]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712349617.208098]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, DUL.expresses]\n", + "[INFO] [1712349617.208591]: Instances: []\n", + "[INFO] [1712349617.208867]: Direct Instances: []\n", + "[INFO] [1712349617.209238]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712349617.209488]: -------------------\n", + "[INFO] [1712349617.209728]: SOMA.Programming_Language \n", + "[INFO] [1712349617.209972]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712349617.210227]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Programming_Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712349617.210480]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712349617.210768]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.211254]: Instances: []\n", + "[INFO] [1712349617.211525]: Direct Instances: []\n", + "[INFO] [1712349617.211838]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712349617.212081]: -------------------\n", + "[INFO] [1712349617.212318]: SOMA.Conclusion \n", + "[INFO] [1712349617.212554]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712349617.212806]: Ancestors: {SOMA.Patient, DUL.SocialObject, SOMA.Conclusion, SOMA.EventAdjacentRole, DUL.Concept, DUL.Object, SOMA.Knowledge, DUL.Entity, SOMA.CreatedObject, owl.Thing, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349617.213067]: Subclasses: []\n", + "[INFO] [1712349617.213363]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.213849]: Instances: []\n", + "[INFO] [1712349617.214102]: Direct Instances: []\n", + "[INFO] [1712349617.214409]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349617.214663]: -------------------\n", + "[INFO] [1712349617.214904]: SOMA.CreatedObject \n", + "[INFO] [1712349617.215143]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.215389]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.CreatedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.215646]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712349617.215981]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.216477]: Instances: []\n", + "[INFO] [1712349617.216730]: Direct Instances: []\n", + "[INFO] [1712349617.217021]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712349617.217277]: -------------------\n", + "[INFO] [1712349617.217516]: SOMA.Knowledge \n", + "[INFO] [1712349617.217747]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712349617.217989]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349617.218247]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712349617.218532]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712349617.219037]: Instances: []\n", + "[INFO] [1712349617.219298]: Direct Instances: []\n", + "[INFO] [1712349617.219725]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712349617.219973]: -------------------\n", + "[INFO] [1712349617.220199]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712349617.220448]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712349617.220696]: Ancestors: {DUL.Description, SOMA.ConditionalSuccedence, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Succedence, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349617.220945]: Subclasses: []\n", + "[INFO] [1712349617.221236]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.221733]: Instances: []\n", + "[INFO] [1712349617.222000]: Direct Instances: []\n", + "[INFO] [1712349617.222244]: Inverse Restrictions: []\n", + "[INFO] [1712349617.222476]: -------------------\n", + "[INFO] [1712349617.222703]: SOMA.Configuration \n", + "[INFO] [1712349617.222931]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712349617.223182]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Configuration}\n", + "[INFO] [1712349617.223427]: Subclasses: []\n", + "[INFO] [1712349617.223715]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", + "[INFO] [1712349617.224211]: Instances: []\n", + "[INFO] [1712349617.224475]: Direct Instances: []\n", + "[INFO] [1712349617.224717]: Inverse Restrictions: []\n", + "[INFO] [1712349617.224954]: -------------------\n", + "[INFO] [1712349617.225200]: SOMA.Connectivity \n", + "[INFO] [1712349617.225439]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712349617.225680]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic}\n", + "[INFO] [1712349617.225927]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712349617.226214]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.226712]: Instances: []\n", + "[INFO] [1712349617.226986]: Direct Instances: []\n", + "[INFO] [1712349617.227281]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712349617.227515]: -------------------\n", + "[INFO] [1712349617.227749]: SOMA.ContactState \n", + "[INFO] [1712349617.228000]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712349617.228248]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ContactState, owl.Thing}\n", + "[INFO] [1712349617.228487]: Subclasses: []\n", + "[INFO] [1712349617.228778]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.229275]: Instances: []\n", + "[INFO] [1712349617.229544]: Direct Instances: []\n", + "[INFO] [1712349617.229789]: Inverse Restrictions: []\n", + "[INFO] [1712349617.230019]: -------------------\n", + "[INFO] [1712349617.230242]: SOMA.Container \n", + "[INFO] [1712349617.230481]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712349617.230726]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, SOMA.Container, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.230965]: Subclasses: []\n", + "[INFO] [1712349617.231244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.231739]: Instances: []\n", + "[INFO] [1712349617.232002]: Direct Instances: []\n", + "[INFO] [1712349617.232333]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712349617.232614]: -------------------\n", + "[INFO] [1712349617.232884]: SOMA.Containment \n", + "[INFO] [1712349617.233141]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712349617.233387]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.233643]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712349617.233936]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.234419]: Instances: []\n", + "[INFO] [1712349617.234697]: Direct Instances: []\n", + "[INFO] [1712349617.235090]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712349617.235336]: -------------------\n", + "[INFO] [1712349617.235571]: SOMA.IncludedObject \n", + "[INFO] [1712349617.235802]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.236069]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", + "[INFO] [1712349617.236330]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712349617.236627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.237474]: Instances: []\n", + "[INFO] [1712349617.237787]: Direct Instances: []\n", + "[INFO] [1712349617.238091]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712349617.238333]: -------------------\n", + "[INFO] [1712349617.238569]: SOMA.ContainmentState \n", + "[INFO] [1712349617.238810]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712349617.239069]: Ancestors: {SOMA.StateType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ContainmentState, SOMA.FunctionalControl, owl.Thing}\n", + "[INFO] [1712349617.239318]: Subclasses: []\n", + "[INFO] [1712349617.239609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349617.240106]: Instances: []\n", + "[INFO] [1712349617.240376]: Direct Instances: []\n", + "[INFO] [1712349617.240623]: Inverse Restrictions: []\n", + "[INFO] [1712349617.240863]: -------------------\n", + "[INFO] [1712349617.241094]: SOMA.FunctionalControl \n", + "[INFO] [1712349617.241341]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712349617.241585]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.FunctionalControl, owl.Thing}\n", + "[INFO] [1712349617.241838]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712349617.242149]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349617.242639]: Instances: []\n", + "[INFO] [1712349617.242898]: Direct Instances: []\n", + "[INFO] [1712349617.243160]: Inverse Restrictions: []\n", + "[INFO] [1712349617.243395]: -------------------\n", + "[INFO] [1712349617.243629]: SOMA.ContainmentTheory \n", + "[INFO] [1712349617.243855]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712349617.244093]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.244348]: Subclasses: []\n", + "[INFO] [1712349617.244642]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.245140]: Instances: []\n", + "[INFO] [1712349617.245413]: Direct Instances: []\n", + "[INFO] [1712349617.245670]: Inverse Restrictions: []\n", + "[INFO] [1712349617.245904]: -------------------\n", + "[INFO] [1712349617.246135]: SOMA.ControlTheory \n", + "[INFO] [1712349617.246360]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712349617.246610]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.246870]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712349617.247158]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.247638]: Instances: []\n", + "[INFO] [1712349617.247921]: Direct Instances: []\n", + "[INFO] [1712349617.248184]: Inverse Restrictions: []\n", + "[INFO] [1712349617.248416]: -------------------\n", + "[INFO] [1712349617.248648]: SOMA.ContinuousJoint \n", + "[INFO] [1712349617.248880]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712349617.249121]: Ancestors: {SOMA.Joint, SOMA.ContinuousJoint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.249407]: Subclasses: []\n", + "[INFO] [1712349617.249722]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.250211]: Instances: []\n", + "[INFO] [1712349617.250485]: Direct Instances: []\n", + "[INFO] [1712349617.250743]: Inverse Restrictions: []\n", + "[INFO] [1712349617.250975]: -------------------\n", + "[INFO] [1712349617.251203]: SOMA.HingeJoint \n", + "[INFO] [1712349617.251428]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712349617.251675]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.251934]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712349617.252222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.252730]: Instances: []\n", + "[INFO] [1712349617.253014]: Direct Instances: []\n", + "[INFO] [1712349617.253271]: Inverse Restrictions: []\n", + "[INFO] [1712349617.253505]: -------------------\n", + "[INFO] [1712349617.253732]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712349617.253968]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712349617.254219]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.254476]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712349617.254769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.255257]: Instances: []\n", + "[INFO] [1712349617.255535]: Direct Instances: []\n", + "[INFO] [1712349617.255796]: Inverse Restrictions: []\n", + "[INFO] [1712349617.256032]: -------------------\n", + "[INFO] [1712349617.256266]: SOMA.Cover \n", + "[INFO] [1712349617.256510]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712349617.256785]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role, SOMA.Cover}\n", + "[INFO] [1712349617.257041]: Subclasses: []\n", + "[INFO] [1712349617.257324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.257794]: Instances: []\n", + "[INFO] [1712349617.258064]: Direct Instances: []\n", + "[INFO] [1712349617.258355]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712349617.258589]: -------------------\n", + "[INFO] [1712349617.258824]: SOMA.Coverage \n", + "[INFO] [1712349617.259068]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712349617.259306]: Ancestors: {SOMA.PhysicalQuality, SOMA.Coverage, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.259564]: Subclasses: []\n", + "[INFO] [1712349617.259862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.260355]: Instances: []\n", + "[INFO] [1712349617.260618]: Direct Instances: []\n", + "[INFO] [1712349617.260872]: Inverse Restrictions: []\n", + "[INFO] [1712349617.261111]: -------------------\n", + "[INFO] [1712349617.261346]: SOMA.CoveredObject \n", + "[INFO] [1712349617.261573]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712349617.261810]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.CoveredObject, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.262044]: Subclasses: []\n", + "[INFO] [1712349617.262337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.262818]: Instances: []\n", + "[INFO] [1712349617.263069]: Direct Instances: []\n", + "[INFO] [1712349617.263358]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712349617.263615]: -------------------\n", + "[INFO] [1712349617.263853]: SOMA.CoverageTheory \n", + "[INFO] [1712349617.264084]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712349617.264325]: Ancestors: {DUL.Description, SOMA.CoverageTheory, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.264575]: Subclasses: []\n", + "[INFO] [1712349617.264872]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.265355]: Instances: []\n", + "[INFO] [1712349617.265607]: Direct Instances: []\n", + "[INFO] [1712349617.265864]: Inverse Restrictions: []\n", + "[INFO] [1712349617.266159]: -------------------\n", + "[INFO] [1712349617.266404]: SOMA.CoveringTheory \n", + "[INFO] [1712349617.266646]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712349617.266889]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, SOMA.CoveringTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349617.267142]: Subclasses: []\n", + "[INFO] [1712349617.267442]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.267923]: Instances: []\n", + "[INFO] [1712349617.268181]: Direct Instances: []\n", + "[INFO] [1712349617.268424]: Inverse Restrictions: []\n", + "[INFO] [1712349617.268653]: -------------------\n", + "[INFO] [1712349617.268898]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712349617.269134]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712349617.269381]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349617.269646]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712349617.269952]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.270446]: Instances: []\n", + "[INFO] [1712349617.270692]: Direct Instances: []\n", + "[INFO] [1712349617.270939]: Inverse Restrictions: []\n", + "[INFO] [1712349617.271162]: -------------------\n", + "[INFO] [1712349617.271399]: SOMA.CrackingTheory \n", + "[INFO] [1712349617.271642]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712349617.271881]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.CrackingTheory, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349617.272118]: Subclasses: []\n", + "[INFO] [1712349617.272407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.272913]: Instances: []\n", + "[INFO] [1712349617.273185]: Direct Instances: []\n", + "[INFO] [1712349617.273431]: Inverse Restrictions: []\n", + "[INFO] [1712349617.273661]: -------------------\n", + "[INFO] [1712349617.273888]: SOMA.Creation \n", + "[INFO] [1712349617.274121]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712349617.274372]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Creation, owl.Thing}\n", + "[INFO] [1712349617.274617]: Subclasses: []\n", + "[INFO] [1712349617.274913]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349617.275401]: Instances: []\n", + "[INFO] [1712349617.275665]: Direct Instances: []\n", + "[INFO] [1712349617.275916]: Inverse Restrictions: []\n", + "[INFO] [1712349617.276145]: -------------------\n", + "[INFO] [1712349617.276381]: SOMA.Insertion \n", + "[INFO] [1712349617.276615]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712349617.276862]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, SOMA.Insertion, DUL.Entity, SOMA.Enclosing, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.277115]: Subclasses: []\n", + "[INFO] [1712349617.277408]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.277887]: Instances: []\n", + "[INFO] [1712349617.278161]: Direct Instances: []\n", + "[INFO] [1712349617.278500]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712349617.278736]: -------------------\n", + "[INFO] [1712349617.278967]: SOMA.DesignedFurniture \n", + "[INFO] [1712349617.279194]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712349617.279433]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349617.279695]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712349617.279985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.280479]: Instances: []\n", + "[INFO] [1712349617.280761]: Direct Instances: []\n", + "[INFO] [1712349617.281034]: Inverse Restrictions: []\n", + "[INFO] [1712349617.281274]: -------------------\n", + "[INFO] [1712349617.281504]: SOMA.Cuttability \n", + "[INFO] [1712349617.281748]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712349617.282212]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Cuttability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.282647]: Subclasses: []\n", + "[INFO] [1712349617.283113]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.283726]: Instances: []\n", + "[INFO] [1712349617.284127]: Direct Instances: []\n", + "[INFO] [1712349617.284506]: Inverse Restrictions: []\n", + "[INFO] [1712349617.284868]: -------------------\n", + "[INFO] [1712349617.285220]: SOMA.Tool \n", + "[INFO] [1712349617.285569]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712349617.285851]: Ancestors: {SOMA.Tool, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.286114]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712349617.286405]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.286885]: Instances: []\n", + "[INFO] [1712349617.287158]: Direct Instances: []\n", + "[INFO] [1712349617.287454]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712349617.287690]: -------------------\n", + "[INFO] [1712349617.287917]: SOMA.Cutting \n", + "[INFO] [1712349617.288142]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712349617.288378]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.288644]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712349617.288940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.289424]: Instances: []\n", + "[INFO] [1712349617.289675]: Direct Instances: []\n", + "[INFO] [1712349617.289926]: Inverse Restrictions: []\n", + "[INFO] [1712349617.290165]: -------------------\n", + "[INFO] [1712349617.290399]: SOMA.DesignedTool \n", + "[INFO] [1712349617.290627]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712349617.290861]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349617.291102]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712349617.291399]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.291945]: Instances: []\n", + "[INFO] [1712349617.292215]: Direct Instances: []\n", + "[INFO] [1712349617.292466]: Inverse Restrictions: []\n", + "[INFO] [1712349617.292706]: -------------------\n", + "[INFO] [1712349617.293062]: SOMA.Shaping \n", + "[INFO] [1712349617.293383]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712349617.293669]: Ancestors: {SOMA.PhysicalQuality, SOMA.Shaping, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.293941]: Subclasses: []\n", + "[INFO] [1712349617.294255]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.294760]: Instances: []\n", + "[INFO] [1712349617.295052]: Direct Instances: []\n", + "[INFO] [1712349617.295343]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712349617.295584]: -------------------\n", + "[INFO] [1712349617.295820]: SOMA.Database \n", + "[INFO] [1712349617.296051]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349617.296308]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", + "[INFO] [1712349617.296573]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712349617.296867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.297358]: Instances: []\n", + "[INFO] [1712349617.297643]: Direct Instances: []\n", + "[INFO] [1712349617.297910]: Inverse Restrictions: []\n", + "[INFO] [1712349617.298145]: -------------------\n", + "[INFO] [1712349617.298373]: SOMA.SoftwareRole \n", + "[INFO] [1712349617.298604]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712349617.298836]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.299105]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712349617.299453]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.299979]: Instances: []\n", + "[INFO] [1712349617.300260]: Direct Instances: []\n", + "[INFO] [1712349617.300565]: Inverse Restrictions: []\n", + "[INFO] [1712349617.300819]: -------------------\n", + "[INFO] [1712349617.301066]: SOMA.Deciding \n", + "[INFO] [1712349617.301336]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349617.301600]: Ancestors: {owl.Thing, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.301857]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712349617.302145]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.302638]: Instances: []\n", + "[INFO] [1712349617.302929]: Direct Instances: []\n", + "[INFO] [1712349617.303200]: Inverse Restrictions: []\n", + "[INFO] [1712349617.303436]: -------------------\n", + "[INFO] [1712349617.303666]: SOMA.DerivingInformation \n", + "[INFO] [1712349617.303903]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712349617.304137]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.304411]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712349617.304707]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isTaskOfInputRole, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712349617.305233]: Instances: []\n", + "[INFO] [1712349617.305516]: Direct Instances: []\n", + "[INFO] [1712349617.305784]: Inverse Restrictions: []\n", + "[INFO] [1712349617.306020]: -------------------\n", + "[INFO] [1712349617.306252]: SOMA.DeductiveReasoning \n", + "[INFO] [1712349617.306475]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712349617.306711]: Ancestors: {SOMA.InformationAcquisition, SOMA.DeductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.306958]: Subclasses: []\n", + "[INFO] [1712349617.307247]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.307715]: Instances: []\n", + "[INFO] [1712349617.307965]: Direct Instances: []\n", + "[INFO] [1712349617.308209]: Inverse Restrictions: []\n", + "[INFO] [1712349617.308450]: -------------------\n", + "[INFO] [1712349617.308686]: SOMA.Deformation \n", + "[INFO] [1712349617.308923]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712349617.309162]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.Deformation, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.309410]: Subclasses: []\n", + "[INFO] [1712349617.309710]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf]\n", + "[INFO] [1712349617.310193]: Instances: []\n", + "[INFO] [1712349617.310458]: Direct Instances: []\n", + "[INFO] [1712349617.310706]: Inverse Restrictions: []\n", + "[INFO] [1712349617.310935]: -------------------\n", + "[INFO] [1712349617.311163]: SOMA.ShapedObject \n", + "[INFO] [1712349617.311413]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712349617.311660]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ShapedObject, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", + "[INFO] [1712349617.311897]: Subclasses: []\n", + "[INFO] [1712349617.312182]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.312678]: Instances: []\n", + "[INFO] [1712349617.312940]: Direct Instances: []\n", + "[INFO] [1712349617.313256]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712349617.313494]: -------------------\n", + "[INFO] [1712349617.313722]: SOMA.FluidFlow \n", + "[INFO] [1712349617.313954]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712349617.314205]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.FluidFlow, owl.Thing}\n", + "[INFO] [1712349617.314447]: Subclasses: []\n", + "[INFO] [1712349617.314736]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349617.315236]: Instances: []\n", + "[INFO] [1712349617.315508]: Direct Instances: []\n", + "[INFO] [1712349617.315769]: Inverse Restrictions: []\n", + "[INFO] [1712349617.316048]: -------------------\n", + "[INFO] [1712349617.316290]: SOMA.Shifting \n", + "[INFO] [1712349617.316542]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712349617.316789]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Shifting, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.317037]: Subclasses: []\n", + "[INFO] [1712349617.317325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.317828]: Instances: []\n", + "[INFO] [1712349617.318100]: Direct Instances: []\n", + "[INFO] [1712349617.318417]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712349617.318649]: -------------------\n", + "[INFO] [1712349617.318882]: SOMA.DependentPlace \n", + "[INFO] [1712349617.319121]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712349617.319363]: Ancestors: {SOMA.Feature, DUL.Object, SOMA.DependentPlace, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.319604]: Subclasses: []\n", + "[INFO] [1712349617.319888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.320405]: Instances: []\n", + "[INFO] [1712349617.320677]: Direct Instances: []\n", + "[INFO] [1712349617.320941]: Inverse Restrictions: []\n", + "[INFO] [1712349617.321182]: -------------------\n", + "[INFO] [1712349617.321413]: SOMA.Deposit \n", + "[INFO] [1712349617.321640]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712349617.321873]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, SOMA.Deposit, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.322105]: Subclasses: []\n", + "[INFO] [1712349617.322392]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.322871]: Instances: []\n", + "[INFO] [1712349617.323126]: Direct Instances: []\n", + "[INFO] [1712349617.323406]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712349617.323655]: -------------------\n", + "[INFO] [1712349617.323889]: SOMA.DepositedObject \n", + "[INFO] [1712349617.324117]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.324352]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.DepositedObject, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.324594]: Subclasses: []\n", + "[INFO] [1712349617.324890]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.325381]: Instances: []\n", + "[INFO] [1712349617.325630]: Direct Instances: []\n", + "[INFO] [1712349617.325916]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712349617.326164]: -------------------\n", + "[INFO] [1712349617.326403]: SOMA.InformationAcquisition \n", + "[INFO] [1712349617.326635]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.326865]: Ancestors: {owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712349617.327122]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712349617.327424]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712349617.327955]: Instances: []\n", + "[INFO] [1712349617.328226]: Direct Instances: []\n", + "[INFO] [1712349617.328528]: Inverse Restrictions: []\n", + "[INFO] [1712349617.328762]: -------------------\n", + "[INFO] [1712349617.329001]: SOMA.Premise \n", + "[INFO] [1712349617.329233]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712349617.329473]: Ancestors: {SOMA.Premise, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, SOMA.Item}\n", + "[INFO] [1712349617.329727]: Subclasses: []\n", + "[INFO] [1712349617.330017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.330496]: Instances: []\n", + "[INFO] [1712349617.330744]: Direct Instances: []\n", + "[INFO] [1712349617.331041]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349617.331294]: -------------------\n", + "[INFO] [1712349617.331536]: SOMA.FunctionalPart \n", + "[INFO] [1712349617.331778]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712349617.332016]: Ancestors: {SOMA.FunctionalPart, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.332267]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712349617.332568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.333130]: Instances: []\n", + "[INFO] [1712349617.333417]: Direct Instances: []\n", + "[INFO] [1712349617.333687]: Inverse Restrictions: []\n", + "[INFO] [1712349617.333921]: -------------------\n", + "[INFO] [1712349617.334152]: SOMA.Graspability \n", + "[INFO] [1712349617.334378]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712349617.334613]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Graspability, SOMA.Extrinsic}\n", + "[INFO] [1712349617.334864]: Subclasses: []\n", + "[INFO] [1712349617.335155]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.335635]: Instances: []\n", + "[INFO] [1712349617.335888]: Direct Instances: []\n", + "[INFO] [1712349617.336161]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712349617.336418]: -------------------\n", + "[INFO] [1712349617.336662]: SOMA.Destination \n", + "[INFO] [1712349617.337012]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712349617.337328]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Role}\n", + "[INFO] [1712349617.337612]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712349617.337929]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.338440]: Instances: []\n", + "[INFO] [1712349617.338717]: Direct Instances: []\n", + "[INFO] [1712349617.339045]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712349617.339296]: -------------------\n", + "[INFO] [1712349617.339545]: SOMA.Location \n", + "[INFO] [1712349617.339785]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712349617.340029]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Location, DUL.Role}\n", + "[INFO] [1712349617.340286]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712349617.340578]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.341086]: Instances: []\n", + "[INFO] [1712349617.341362]: Direct Instances: []\n", + "[INFO] [1712349617.341622]: Inverse Restrictions: []\n", + "[INFO] [1712349617.341853]: -------------------\n", + "[INFO] [1712349617.342084]: SOMA.DestroyedObject \n", + "[INFO] [1712349617.342325]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.342569]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.DestroyedObject, DUL.Role}\n", + "[INFO] [1712349617.342808]: Subclasses: []\n", + "[INFO] [1712349617.343092]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.343564]: Instances: []\n", + "[INFO] [1712349617.343832]: Direct Instances: []\n", + "[INFO] [1712349617.344130]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712349617.344370]: -------------------\n", + "[INFO] [1712349617.344602]: SOMA.Destruction \n", + "[INFO] [1712349617.344837]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712349617.345099]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Destruction, owl.Thing}\n", + "[INFO] [1712349617.345368]: Subclasses: []\n", + "[INFO] [1712349617.345674]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349617.346156]: Instances: []\n", + "[INFO] [1712349617.346413]: Direct Instances: []\n", + "[INFO] [1712349617.346653]: Inverse Restrictions: []\n", + "[INFO] [1712349617.346889]: -------------------\n", + "[INFO] [1712349617.347127]: SOMA.DetectedObject \n", + "[INFO] [1712349617.347364]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.347606]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.DetectedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.347844]: Subclasses: []\n", + "[INFO] [1712349617.348144]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.348634]: Instances: []\n", + "[INFO] [1712349617.348900]: Direct Instances: []\n", + "[INFO] [1712349617.349145]: Inverse Restrictions: []\n", + "[INFO] [1712349617.349437]: -------------------\n", + "[INFO] [1712349617.349687]: SOMA.DeviceState \n", + "[INFO] [1712349617.349921]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349617.350161]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.DeviceState, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712349617.350412]: Subclasses: []\n", + "[INFO] [1712349617.350725]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.351201]: Instances: []\n", + "[INFO] [1712349617.351451]: Direct Instances: []\n", + "[INFO] [1712349617.351702]: Inverse Restrictions: []\n", + "[INFO] [1712349617.351940]: -------------------\n", + "[INFO] [1712349617.352177]: SOMA.DeviceStateRange \n", + "[INFO] [1712349617.352410]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349617.352644]: Ancestors: {SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.352907]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712349617.353222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.353717]: Instances: []\n", + "[INFO] [1712349617.354007]: Direct Instances: []\n", + "[INFO] [1712349617.354272]: Inverse Restrictions: []\n", + "[INFO] [1712349617.354514]: -------------------\n", + "[INFO] [1712349617.354750]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712349617.354980]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712349617.355238]: Ancestors: {SOMA.DeviceTurnedOff, SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.355480]: Subclasses: []\n", + "[INFO] [1712349617.355763]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.356268]: Instances: []\n", + "[INFO] [1712349617.356539]: Direct Instances: []\n", + "[INFO] [1712349617.356825]: Inverse Restrictions: []\n", + "[INFO] [1712349617.357067]: -------------------\n", + "[INFO] [1712349617.357305]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712349617.357550]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712349617.357797]: Ancestors: {SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOn}\n", + "[INFO] [1712349617.358040]: Subclasses: []\n", + "[INFO] [1712349617.358322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.358820]: Instances: []\n", + "[INFO] [1712349617.359094]: Direct Instances: []\n", + "[INFO] [1712349617.359385]: Inverse Restrictions: []\n", + "[INFO] [1712349617.359626]: -------------------\n", + "[INFO] [1712349617.359862]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712349617.360107]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712349617.360356]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.360600]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712349617.361360]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.361922]: Instances: []\n", + "[INFO] [1712349617.362212]: Direct Instances: []\n", + "[INFO] [1712349617.362480]: Inverse Restrictions: []\n", + "[INFO] [1712349617.362717]: -------------------\n", + "[INFO] [1712349617.362951]: SOMA.Dicing \n", + "[INFO] [1712349617.363175]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712349617.363430]: Ancestors: {SOMA.PhysicalTask, SOMA.ModifyingPhysicalObject, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing, SOMA.Dicing}\n", + "[INFO] [1712349617.363675]: Subclasses: []\n", + "[INFO] [1712349617.363962]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.364438]: Instances: []\n", + "[INFO] [1712349617.364707]: Direct Instances: []\n", + "[INFO] [1712349617.364972]: Inverse Restrictions: []\n", + "[INFO] [1712349617.365206]: -------------------\n", + "[INFO] [1712349617.365433]: SOMA.DirectedMotion \n", + "[INFO] [1712349617.365667]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712349617.365922]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.366205]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712349617.366507]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.367025]: Instances: []\n", + "[INFO] [1712349617.367302]: Direct Instances: []\n", + "[INFO] [1712349617.367564]: Inverse Restrictions: []\n", + "[INFO] [1712349617.367806]: -------------------\n", + "[INFO] [1712349617.368037]: SOMA.UndirectedMotion \n", + "[INFO] [1712349617.368292]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712349617.368544]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.UndirectedMotion, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.368792]: Subclasses: []\n", + "[INFO] [1712349617.369105]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.369602]: Instances: []\n", + "[INFO] [1712349617.369887]: Direct Instances: []\n", + "[INFO] [1712349617.370155]: Inverse Restrictions: []\n", + "[INFO] [1712349617.370408]: -------------------\n", + "[INFO] [1712349617.370649]: SOMA.Dirty \n", + "[INFO] [1712349617.370885]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712349617.371126]: Ancestors: {SOMA.Dirty, DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.371385]: Subclasses: []\n", + "[INFO] [1712349617.371681]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.372164]: Instances: []\n", + "[INFO] [1712349617.372416]: Direct Instances: []\n", + "[INFO] [1712349617.372670]: Inverse Restrictions: []\n", + "[INFO] [1712349617.372916]: -------------------\n", + "[INFO] [1712349617.373156]: SOMA.Discourse \n", + "[INFO] [1712349617.373393]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712349617.373648]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, SOMA.Discourse, owl.Thing}\n", + "[INFO] [1712349617.373883]: Subclasses: []\n", + "[INFO] [1712349617.374172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.374671]: Instances: []\n", + "[INFO] [1712349617.374930]: Direct Instances: []\n", + "[INFO] [1712349617.375186]: Inverse Restrictions: []\n", + "[INFO] [1712349617.375424]: -------------------\n", + "[INFO] [1712349617.375654]: SOMA.Distancing \n", + "[INFO] [1712349617.375883]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712349617.376124]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, SOMA.Distancing, owl.Thing}\n", + "[INFO] [1712349617.376411]: Subclasses: []\n", + "[INFO] [1712349617.376702]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.377198]: Instances: []\n", + "[INFO] [1712349617.377477]: Direct Instances: []\n", + "[INFO] [1712349617.377733]: Inverse Restrictions: []\n", + "[INFO] [1712349617.377969]: -------------------\n", + "[INFO] [1712349617.378206]: SOMA.Dreaming \n", + "[INFO] [1712349617.378437]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349617.378683]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.378931]: Subclasses: []\n", + "[INFO] [1712349617.379225]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.379707]: Instances: []\n", + "[INFO] [1712349617.379977]: Direct Instances: []\n", + "[INFO] [1712349617.380233]: Inverse Restrictions: []\n", + "[INFO] [1712349617.380472]: -------------------\n", + "[INFO] [1712349617.380706]: SOMA.Driving \n", + "[INFO] [1712349617.380942]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349617.381195]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion, SOMA.Driving}\n", + "[INFO] [1712349617.381446]: Subclasses: []\n", + "[INFO] [1712349617.381745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.382228]: Instances: []\n", + "[INFO] [1712349617.382503]: Direct Instances: []\n", + "[INFO] [1712349617.382777]: Inverse Restrictions: []\n", + "[INFO] [1712349617.383020]: -------------------\n", + "[INFO] [1712349617.383260]: SOMA.Flying \n", + "[INFO] [1712349617.383493]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349617.383738]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.Flying, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.383996]: Subclasses: []\n", + "[INFO] [1712349617.384312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.384799]: Instances: []\n", + "[INFO] [1712349617.385056]: Direct Instances: []\n", + "[INFO] [1712349617.385324]: Inverse Restrictions: []\n", + "[INFO] [1712349617.385580]: -------------------\n", + "[INFO] [1712349617.385819]: SOMA.Swimming \n", + "[INFO] [1712349617.386054]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349617.386305]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Swimming, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.386559]: Subclasses: []\n", + "[INFO] [1712349617.386858]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.387349]: Instances: []\n", + "[INFO] [1712349617.387610]: Direct Instances: []\n", + "[INFO] [1712349617.387868]: Inverse Restrictions: []\n", + "[INFO] [1712349617.388109]: -------------------\n", + "[INFO] [1712349617.388344]: SOMA.Walking \n", + "[INFO] [1712349617.388584]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349617.388834]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Walking, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.389102]: Subclasses: []\n", + "[INFO] [1712349617.389400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.389888]: Instances: []\n", + "[INFO] [1712349617.390164]: Direct Instances: []\n", + "[INFO] [1712349617.390422]: Inverse Restrictions: []\n", + "[INFO] [1712349617.390669]: -------------------\n", + "[INFO] [1712349617.390920]: SOMA.Dropping \n", + "[INFO] [1712349617.391160]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.391408]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Dropping, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.391648]: Subclasses: []\n", + "[INFO] [1712349617.391942]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.392438]: Instances: []\n", + "[INFO] [1712349617.392710]: Direct Instances: []\n", + "[INFO] [1712349617.392966]: Inverse Restrictions: []\n", + "[INFO] [1712349617.393204]: -------------------\n", + "[INFO] [1712349617.393440]: SOMA.Placing \n", + "[INFO] [1712349617.393673]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349617.393929]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Placing, owl.Thing}\n", + "[INFO] [1712349617.394173]: Subclasses: []\n", + "[INFO] [1712349617.394458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.394932]: Instances: []\n", + "[INFO] [1712349617.395205]: Direct Instances: []\n", + "[INFO] [1712349617.395461]: Inverse Restrictions: []\n", + "[INFO] [1712349617.395701]: -------------------\n", + "[INFO] [1712349617.395939]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712349617.396183]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712349617.396446]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ESTSchemaTheory, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.396694]: Subclasses: []\n", + "[INFO] [1712349617.396999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.397505]: Instances: []\n", + "[INFO] [1712349617.397774]: Direct Instances: []\n", + "[INFO] [1712349617.398026]: Inverse Restrictions: []\n", + "[INFO] [1712349617.398266]: -------------------\n", + "[INFO] [1712349617.398499]: SOMA.ExistingObjectRole \n", + "[INFO] [1712349617.398736]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349617.398990]: Ancestors: {SOMA.ExistingObjectRole, DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.399237]: Subclasses: []\n", + "[INFO] [1712349617.399542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.400024]: Instances: []\n", + "[INFO] [1712349617.400290]: Direct Instances: []\n", + "[INFO] [1712349617.400584]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712349617.400832]: -------------------\n", + "[INFO] [1712349617.401180]: SOMA.Effort \n", + "[INFO] [1712349617.401450]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712349617.401823]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, owl.Thing, SOMA.Effort}\n", + "[INFO] [1712349617.402104]: Subclasses: []\n", + "[INFO] [1712349617.402404]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.402887]: Instances: []\n", + "[INFO] [1712349617.403270]: Direct Instances: []\n", + "[INFO] [1712349617.403557]: Inverse Restrictions: []\n", + "[INFO] [1712349617.403916]: -------------------\n", + "[INFO] [1712349617.404185]: SOMA.EnclosedObject \n", + "[INFO] [1712349617.404429]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712349617.404686]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", + "[INFO] [1712349617.404950]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712349617.405240]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.405729]: Instances: []\n", + "[INFO] [1712349617.406014]: Direct Instances: []\n", + "[INFO] [1712349617.406326]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712349617.406579]: -------------------\n", + "[INFO] [1712349617.406822]: SOMA.Enclosing \n", + "[INFO] [1712349617.407160]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712349617.407453]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Enclosing, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.407733]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712349617.408039]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.408535]: Instances: []\n", + "[INFO] [1712349617.408810]: Direct Instances: []\n", + "[INFO] [1712349617.409087]: Inverse Restrictions: []\n", + "[INFO] [1712349617.409342]: -------------------\n", + "[INFO] [1712349617.409582]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712349617.409908]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349617.410205]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712349617.410478]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712349617.410767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.411252]: Instances: []\n", + "[INFO] [1712349617.411523]: Direct Instances: []\n", + "[INFO] [1712349617.411792]: Inverse Restrictions: []\n", + "[INFO] [1712349617.412037]: -------------------\n", + "[INFO] [1712349617.412465]: SOMA.Manipulating \n", + "[INFO] [1712349617.412820]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712349617.413198]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.413572]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712349617.413888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.414398]: Instances: []\n", + "[INFO] [1712349617.414675]: Direct Instances: []\n", + "[INFO] [1712349617.414938]: Inverse Restrictions: []\n", + "[INFO] [1712349617.415183]: -------------------\n", + "[INFO] [1712349617.415431]: SOMA.Episode \n", + "[INFO] [1712349617.415670]: Super classes: [DUL.Situation]\n", + "[INFO] [1712349617.415909]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Episode}\n", + "[INFO] [1712349617.416320]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712349617.416713]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.417341]: Instances: []\n", + "[INFO] [1712349617.417671]: Direct Instances: []\n", + "[INFO] [1712349617.417963]: Inverse Restrictions: []\n", + "[INFO] [1712349617.418226]: -------------------\n", + "[INFO] [1712349617.418478]: SOMA.ExcludedObject \n", + "[INFO] [1712349617.418732]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.418996]: Ancestors: {SOMA.Patient, SOMA.ExcludedObject, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.419250]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712349617.419542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.420023]: Instances: []\n", + "[INFO] [1712349617.420291]: Direct Instances: []\n", + "[INFO] [1712349617.420595]: Inverse Restrictions: []\n", + "[INFO] [1712349617.420842]: -------------------\n", + "[INFO] [1712349617.421086]: SOMA.ExecutableFile \n", + "[INFO] [1712349617.421321]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.421572]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", + "[INFO] [1712349617.421823]: Subclasses: []\n", + "[INFO] [1712349617.422117]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.422597]: Instances: []\n", + "[INFO] [1712349617.422865]: Direct Instances: []\n", + "[INFO] [1712349617.423172]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712349617.423413]: -------------------\n", + "[INFO] [1712349617.423650]: SOMA.Executable_Code \n", + "[INFO] [1712349617.423887]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712349617.424115]: Ancestors: {owl.Thing, SOMA.Computer_Program, SOMA.Executable_Code}\n", + "[INFO] [1712349617.424365]: Subclasses: []\n", + "[INFO] [1712349617.424668]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.425181]: Instances: []\n", + "[INFO] [1712349617.425534]: Direct Instances: []\n", + "[INFO] [1712349617.425929]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712349617.426197]: -------------------\n", + "[INFO] [1712349617.426440]: SOMA.ExecutableFormat \n", + "[INFO] [1712349617.426687]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712349617.426941]: Ancestors: {SOMA.System, DUL.SocialObject, SOMA.ExecutableFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349617.427186]: Subclasses: []\n", + "[INFO] [1712349617.427469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.427962]: Instances: []\n", + "[INFO] [1712349617.428221]: Direct Instances: []\n", + "[INFO] [1712349617.428523]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712349617.428761]: -------------------\n", + "[INFO] [1712349617.429000]: SOMA.SchematicTheory \n", + "[INFO] [1712349617.429245]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712349617.429489]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.429739]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712349617.430021]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.430524]: Instances: []\n", + "[INFO] [1712349617.430791]: Direct Instances: []\n", + "[INFO] [1712349617.431047]: Inverse Restrictions: []\n", + "[INFO] [1712349617.431288]: -------------------\n", + "[INFO] [1712349617.431526]: SOMA.ExecutableSoftware \n", + "[INFO] [1712349617.431760]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.431995]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", + "[INFO] [1712349617.432243]: Subclasses: []\n", + "[INFO] [1712349617.432534]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasMember, rdf-schema.label]\n", + "[INFO] [1712349617.433014]: Instances: []\n", + "[INFO] [1712349617.433272]: Direct Instances: []\n", + "[INFO] [1712349617.433524]: Inverse Restrictions: []\n", + "[INFO] [1712349617.433769]: -------------------\n", + "[INFO] [1712349617.434016]: SOMA.Software \n", + "[INFO] [1712349617.434271]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712349617.434519]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.Software}\n", + "[INFO] [1712349617.434942]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712349617.435341]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.describes]\n", + "[INFO] [1712349617.435927]: Instances: []\n", + "[INFO] [1712349617.436288]: Direct Instances: []\n", + "[INFO] [1712349617.436844]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349617.437195]: -------------------\n", + "[INFO] [1712349617.437530]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712349617.437858]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712349617.438188]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.438549]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712349617.439090]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.439706]: Instances: []\n", + "[INFO] [1712349617.440062]: Direct Instances: []\n", + "[INFO] [1712349617.440353]: Inverse Restrictions: []\n", + "[INFO] [1712349617.440601]: -------------------\n", + "[INFO] [1712349617.440973]: SOMA.ExperiencerRole \n", + "[INFO] [1712349617.441300]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712349617.441642]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.ExperiencerRole, DUL.Role}\n", + "[INFO] [1712349617.441994]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712349617.442377]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.442950]: Instances: []\n", + "[INFO] [1712349617.443293]: Direct Instances: []\n", + "[INFO] [1712349617.443661]: Inverse Restrictions: []\n", + "[INFO] [1712349617.443997]: -------------------\n", + "[INFO] [1712349617.444324]: SOMA.ExtractedObject \n", + "[INFO] [1712349617.444648]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.445018]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ExtractedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.445320]: Subclasses: []\n", + "[INFO] [1712349617.445629]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.446135]: Instances: []\n", + "[INFO] [1712349617.446405]: Direct Instances: []\n", + "[INFO] [1712349617.446660]: Inverse Restrictions: []\n", + "[INFO] [1712349617.446902]: -------------------\n", + "[INFO] [1712349617.447134]: SOMA.PhysicalQuality \n", + "[INFO] [1712349617.447382]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712349617.447639]: Ancestors: {DUL.Quality, SOMA.PhysicalQuality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.447897]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712349617.448191]: Properties: [rdf-schema.isDefinedBy, DUL.isQualityOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.448766]: Instances: []\n", + "[INFO] [1712349617.449112]: Direct Instances: []\n", + "[INFO] [1712349617.449398]: Inverse Restrictions: []\n", + "[INFO] [1712349617.449662]: -------------------\n", + "[INFO] [1712349617.449918]: SOMA.FailedAttempt \n", + "[INFO] [1712349617.450176]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712349617.450438]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis, SOMA.FailedAttempt}\n", + "[INFO] [1712349617.450697]: Subclasses: []\n", + "[INFO] [1712349617.450999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.451496]: Instances: []\n", + "[INFO] [1712349617.451759]: Direct Instances: []\n", + "[INFO] [1712349617.452004]: Inverse Restrictions: []\n", + "[INFO] [1712349617.452244]: -------------------\n", + "[INFO] [1712349617.452489]: SOMA.FaultySoftware \n", + "[INFO] [1712349617.452727]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712349617.452979]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349617.453220]: Subclasses: []\n", + "[INFO] [1712349617.453524]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.454017]: Instances: []\n", + "[INFO] [1712349617.454291]: Direct Instances: []\n", + "[INFO] [1712349617.454547]: Inverse Restrictions: []\n", + "[INFO] [1712349617.454796]: -------------------\n", + "[INFO] [1712349617.455035]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712349617.455271]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712349617.455517]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349617.455786]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712349617.456082]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.456570]: Instances: []\n", + "[INFO] [1712349617.456835]: Direct Instances: []\n", + "[INFO] [1712349617.457095]: Inverse Restrictions: []\n", + "[INFO] [1712349617.457347]: -------------------\n", + "[INFO] [1712349617.457588]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712349617.457823]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712349617.458075]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAcquiring, owl.Thing}\n", + "[INFO] [1712349617.458340]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712349617.458640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.459129]: Instances: []\n", + "[INFO] [1712349617.459388]: Direct Instances: []\n", + "[INFO] [1712349617.459648]: Inverse Restrictions: []\n", + "[INFO] [1712349617.459890]: -------------------\n", + "[INFO] [1712349617.460128]: SOMA.Finger \n", + "[INFO] [1712349617.460371]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712349617.460636]: Ancestors: {SOMA.FunctionalPart, SOMA.Finger, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", + "[INFO] [1712349617.460890]: Subclasses: []\n", + "[INFO] [1712349617.461181]: Properties: [rdf-schema.isDefinedBy, DUL.isPartOf, rdf-schema.comment]\n", + "[INFO] [1712349617.461683]: Instances: []\n", + "[INFO] [1712349617.461954]: Direct Instances: []\n", + "[INFO] [1712349617.462206]: Inverse Restrictions: []\n", + "[INFO] [1712349617.462441]: -------------------\n", + "[INFO] [1712349617.462687]: SOMA.Hand \n", + "[INFO] [1712349617.462924]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712349617.463175]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.Hand, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", + "[INFO] [1712349617.463416]: Subclasses: []\n", + "[INFO] [1712349617.463705]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.464211]: Instances: []\n", + "[INFO] [1712349617.464492]: Direct Instances: []\n", + "[INFO] [1712349617.464793]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712349617.465041]: -------------------\n", + "[INFO] [1712349617.465282]: SOMA.FixedJoint \n", + "[INFO] [1712349617.465522]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712349617.465784]: Ancestors: {SOMA.Joint, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, SOMA.FixedJoint, DUL.PhysicalObject}\n", + "[INFO] [1712349617.466038]: Subclasses: []\n", + "[INFO] [1712349617.466349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.466830]: Instances: []\n", + "[INFO] [1712349617.467105]: Direct Instances: []\n", + "[INFO] [1712349617.467397]: Inverse Restrictions: []\n", + "[INFO] [1712349617.467641]: -------------------\n", + "[INFO] [1712349617.467886]: SOMA.MovableJoint \n", + "[INFO] [1712349617.468145]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712349617.468404]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.468670]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712349617.468980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasJointState, rdf-schema.label]\n", + "[INFO] [1712349617.469502]: Instances: []\n", + "[INFO] [1712349617.469767]: Direct Instances: []\n", + "[INFO] [1712349617.470067]: Inverse Restrictions: []\n", + "[INFO] [1712349617.470309]: -------------------\n", + "[INFO] [1712349617.470546]: SOMA.Flipping \n", + "[INFO] [1712349617.470798]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712349617.471060]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Flipping, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.471305]: Subclasses: []\n", + "[INFO] [1712349617.471596]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349617.472097]: Instances: []\n", + "[INFO] [1712349617.472367]: Direct Instances: []\n", + "[INFO] [1712349617.472618]: Inverse Restrictions: []\n", + "[INFO] [1712349617.472860]: -------------------\n", + "[INFO] [1712349617.473118]: SOMA.FloatingJoint \n", + "[INFO] [1712349617.473376]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712349617.473631]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, SOMA.FloatingJoint, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.473873]: Subclasses: []\n", + "[INFO] [1712349617.474158]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.474662]: Instances: []\n", + "[INFO] [1712349617.474929]: Direct Instances: []\n", + "[INFO] [1712349617.475186]: Inverse Restrictions: []\n", + "[INFO] [1712349617.475428]: -------------------\n", + "[INFO] [1712349617.475667]: SOMA.Fluid \n", + "[INFO] [1712349617.475904]: Super classes: [DUL.Substance]\n", + "[INFO] [1712349617.476165]: Ancestors: {SOMA.Fluid, DUL.Substance, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.476428]: Subclasses: []\n", + "[INFO] [1712349617.476720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.477298]: Instances: []\n", + "[INFO] [1712349617.477638]: Direct Instances: []\n", + "[INFO] [1712349617.477924]: Inverse Restrictions: []\n", + "[INFO] [1712349617.478175]: -------------------\n", + "[INFO] [1712349617.478574]: SOMA.MovedObject \n", + "[INFO] [1712349617.478916]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712349617.479287]: Ancestors: {SOMA.MovedObject, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", + "[INFO] [1712349617.479633]: Subclasses: []\n", + "[INFO] [1712349617.480018]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.480589]: Instances: []\n", + "[INFO] [1712349617.480970]: Direct Instances: []\n", + "[INFO] [1712349617.481470]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712349617.481810]: -------------------\n", + "[INFO] [1712349617.482137]: SOMA.Focusing \n", + "[INFO] [1712349617.482457]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712349617.482797]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.AttentionShift, SOMA.MentalTask, owl.Thing, SOMA.Focusing}\n", + "[INFO] [1712349617.483130]: Subclasses: []\n", + "[INFO] [1712349617.483503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.484074]: Instances: []\n", + "[INFO] [1712349617.484448]: Direct Instances: []\n", + "[INFO] [1712349617.484802]: Inverse Restrictions: []\n", + "[INFO] [1712349617.485077]: -------------------\n", + "[INFO] [1712349617.485323]: SOMA.Foolishness \n", + "[INFO] [1712349617.485562]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712349617.485815]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, SOMA.Foolishness, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.486236]: Subclasses: []\n", + "[INFO] [1712349617.486621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.487198]: Instances: []\n", + "[INFO] [1712349617.487561]: Direct Instances: []\n", + "[INFO] [1712349617.487902]: Inverse Restrictions: []\n", + "[INFO] [1712349617.488227]: -------------------\n", + "[INFO] [1712349617.488552]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712349617.488874]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712349617.489221]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.ForgettingIncorrectInformation, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349617.489548]: Subclasses: []\n", + "[INFO] [1712349617.489927]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.490514]: Instances: []\n", + "[INFO] [1712349617.490866]: Direct Instances: []\n", + "[INFO] [1712349617.491200]: Inverse Restrictions: []\n", + "[INFO] [1712349617.491518]: -------------------\n", + "[INFO] [1712349617.491834]: SOMA.InformationDismissal \n", + "[INFO] [1712349617.492170]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712349617.492504]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349617.492840]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712349617.493223]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label]\n", + "[INFO] [1712349617.493812]: Instances: []\n", + "[INFO] [1712349617.494168]: Direct Instances: []\n", + "[INFO] [1712349617.494503]: Inverse Restrictions: []\n", + "[INFO] [1712349617.494826]: -------------------\n", + "[INFO] [1712349617.495144]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712349617.495462]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712349617.495851]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", + "[INFO] [1712349617.496209]: Subclasses: []\n", + "[INFO] [1712349617.496610]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.497292]: Instances: []\n", + "[INFO] [1712349617.497671]: Direct Instances: []\n", + "[INFO] [1712349617.497989]: Inverse Restrictions: []\n", + "[INFO] [1712349617.498261]: -------------------\n", + "[INFO] [1712349617.498516]: SOMA.Language \n", + "[INFO] [1712349617.498767]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712349617.499020]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712349617.499269]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712349617.499573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.500094]: Instances: []\n", + "[INFO] [1712349617.500366]: Direct Instances: []\n", + "[INFO] [1712349617.500680]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712349617.500929]: -------------------\n", + "[INFO] [1712349617.501163]: SOMA.Item \n", + "[INFO] [1712349617.501399]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.501648]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349617.501913]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712349617.502201]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.502705]: Instances: []\n", + "[INFO] [1712349617.502972]: Direct Instances: []\n", + "[INFO] [1712349617.503313]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712349617.503555]: -------------------\n", + "[INFO] [1712349617.503791]: SOMA.FunctionalDesign \n", + "[INFO] [1712349617.504022]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712349617.504272]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.FunctionalDesign}\n", + "[INFO] [1712349617.504513]: Subclasses: []\n", + "[INFO] [1712349617.504799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.505276]: Instances: []\n", + "[INFO] [1712349617.505544]: Direct Instances: []\n", + "[INFO] [1712349617.505795]: Inverse Restrictions: []\n", + "[INFO] [1712349617.506034]: -------------------\n", + "[INFO] [1712349617.506270]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712349617.506499]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712349617.506730]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis}\n", + "[INFO] [1712349617.506986]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712349617.507273]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.507761]: Instances: []\n", + "[INFO] [1712349617.508029]: Direct Instances: []\n", + "[INFO] [1712349617.508279]: Inverse Restrictions: []\n", + "[INFO] [1712349617.508515]: -------------------\n", + "[INFO] [1712349617.508746]: SOMA.LocatumRole \n", + "[INFO] [1712349617.508981]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349617.509238]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, SOMA.LocatumRole, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.509479]: Subclasses: []\n", + "[INFO] [1712349617.509763]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.510257]: Instances: []\n", + "[INFO] [1712349617.510518]: Direct Instances: []\n", + "[INFO] [1712349617.510829]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712349617.511067]: -------------------\n", + "[INFO] [1712349617.511296]: SOMA.RelatumRole \n", + "[INFO] [1712349617.511546]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349617.511795]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, SOMA.RelatumRole, DUL.Entity, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.512037]: Subclasses: []\n", + "[INFO] [1712349617.512325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.512821]: Instances: []\n", + "[INFO] [1712349617.513081]: Direct Instances: []\n", + "[INFO] [1712349617.513390]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712349617.513628]: -------------------\n", + "[INFO] [1712349617.513860]: SOMA.GetTaskParameter \n", + "[INFO] [1712349617.514105]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712349617.514351]: Ancestors: {SOMA.InformationAcquisition, SOMA.GetTaskParameter, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.514594]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712349617.514880]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.515375]: Instances: []\n", + "[INFO] [1712349617.515634]: Direct Instances: []\n", + "[INFO] [1712349617.515878]: Inverse Restrictions: []\n", + "[INFO] [1712349617.516123]: -------------------\n", + "[INFO] [1712349617.516362]: SOMA.Planning \n", + "[INFO] [1712349617.516603]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712349617.516846]: Ancestors: {SOMA.InformationAcquisition, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.517095]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712349617.517381]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isTaskOf]\n", + "[INFO] [1712349617.517891]: Instances: []\n", + "[INFO] [1712349617.518153]: Direct Instances: []\n", + "[INFO] [1712349617.518406]: Inverse Restrictions: []\n", + "[INFO] [1712349617.518642]: -------------------\n", + "[INFO] [1712349617.518874]: SOMA.GraphDatabase \n", + "[INFO] [1712349617.519110]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712349617.519360]: Ancestors: {SOMA.SoftwareRole, SOMA.GraphDatabase, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", + "[INFO] [1712349617.519605]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712349617.519919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.520405]: Instances: []\n", + "[INFO] [1712349617.520679]: Direct Instances: []\n", + "[INFO] [1712349617.520948]: Inverse Restrictions: []\n", + "[INFO] [1712349617.521192]: -------------------\n", + "[INFO] [1712349617.521429]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712349617.521664]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712349617.521922]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.GraphQueryLanguage, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349617.522170]: Subclasses: []\n", + "[INFO] [1712349617.522454]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.522923]: Instances: []\n", + "[INFO] [1712349617.523195]: Direct Instances: []\n", + "[INFO] [1712349617.523437]: Inverse Restrictions: []\n", + "[INFO] [1712349617.523665]: -------------------\n", + "[INFO] [1712349617.523892]: SOMA.QueryLanguage \n", + "[INFO] [1712349617.524114]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349617.524345]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712349617.524606]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712349617.524901]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.525380]: Instances: []\n", + "[INFO] [1712349617.525624]: Direct Instances: []\n", + "[INFO] [1712349617.526106]: Inverse Restrictions: []\n", + "[INFO] [1712349617.526515]: -------------------\n", + "[INFO] [1712349617.526912]: SOMA.GraspTransfer \n", + "[INFO] [1712349617.527309]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712349617.527730]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.GraspTransfer, DUL.Entity, SOMA.Grasping, owl.Thing}\n", + "[INFO] [1712349617.528101]: Subclasses: []\n", + "[INFO] [1712349617.528495]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.529077]: Instances: []\n", + "[INFO] [1712349617.529452]: Direct Instances: []\n", + "[INFO] [1712349617.529804]: Inverse Restrictions: []\n", + "[INFO] [1712349617.530133]: -------------------\n", + "[INFO] [1712349617.530454]: SOMA.Grasping \n", + "[INFO] [1712349617.530773]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349617.531113]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Grasping, owl.Thing}\n", + "[INFO] [1712349617.531458]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712349617.531837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.532424]: Instances: []\n", + "[INFO] [1712349617.532789]: Direct Instances: []\n", + "[INFO] [1712349617.533223]: Inverse Restrictions: []\n", + "[INFO] [1712349617.533580]: -------------------\n", + "[INFO] [1712349617.533920]: SOMA.Releasing \n", + "[INFO] [1712349617.534241]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349617.534512]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Releasing, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.534775]: Subclasses: []\n", + "[INFO] [1712349617.535072]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.535578]: Instances: []\n", + "[INFO] [1712349617.535857]: Direct Instances: []\n", + "[INFO] [1712349617.536124]: Inverse Restrictions: []\n", + "[INFO] [1712349617.536359]: -------------------\n", + "[INFO] [1712349617.536590]: SOMA.GraspingMotion \n", + "[INFO] [1712349617.536823]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712349617.537083]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.537345]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712349617.537652]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.538143]: Instances: []\n", + "[INFO] [1712349617.538416]: Direct Instances: []\n", + "[INFO] [1712349617.538712]: Inverse Restrictions: []\n", + "[INFO] [1712349617.538958]: -------------------\n", + "[INFO] [1712349617.539201]: SOMA.IntermediateGrasp \n", + "[INFO] [1712349617.539439]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712349617.539691]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion, SOMA.IntermediateGrasp}\n", + "[INFO] [1712349617.539945]: Subclasses: []\n", + "[INFO] [1712349617.540252]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.540736]: Instances: []\n", + "[INFO] [1712349617.541018]: Direct Instances: []\n", + "[INFO] [1712349617.541308]: Inverse Restrictions: []\n", + "[INFO] [1712349617.541552]: -------------------\n", + "[INFO] [1712349617.541788]: SOMA.PowerGrasp \n", + "[INFO] [1712349617.542028]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712349617.542285]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, SOMA.PowerGrasp, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.542540]: Subclasses: []\n", + "[INFO] [1712349617.542842]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.543324]: Instances: []\n", + "[INFO] [1712349617.543590]: Direct Instances: []\n", + "[INFO] [1712349617.543880]: Inverse Restrictions: []\n", + "[INFO] [1712349617.544120]: -------------------\n", + "[INFO] [1712349617.544352]: SOMA.PrecisionGrasp \n", + "[INFO] [1712349617.544581]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712349617.544846]: Ancestors: {SOMA.PrecisionGrasp, SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.545096]: Subclasses: []\n", + "[INFO] [1712349617.545383]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.545859]: Instances: []\n", + "[INFO] [1712349617.546131]: Direct Instances: []\n", + "[INFO] [1712349617.546427]: Inverse Restrictions: []\n", + "[INFO] [1712349617.546671]: -------------------\n", + "[INFO] [1712349617.546912]: SOMA.PrehensileMotion \n", + "[INFO] [1712349617.547160]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712349617.547408]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.547669]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712349617.547974]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349617.548466]: Instances: []\n", + "[INFO] [1712349617.548733]: Direct Instances: []\n", + "[INFO] [1712349617.549095]: Inverse Restrictions: []\n", + "[INFO] [1712349617.549507]: -------------------\n", + "[INFO] [1712349617.549861]: SOMA.ReleasingMotion \n", + "[INFO] [1712349617.550209]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712349617.550577]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.ReleasingMotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.550910]: Subclasses: []\n", + "[INFO] [1712349617.551324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.551929]: Instances: []\n", + "[INFO] [1712349617.552278]: Direct Instances: []\n", + "[INFO] [1712349617.552594]: Inverse Restrictions: []\n", + "[INFO] [1712349617.552849]: -------------------\n", + "[INFO] [1712349617.553087]: SOMA.GreenColor \n", + "[INFO] [1712349617.553324]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712349617.553565]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, SOMA.GreenColor, owl.Thing}\n", + "[INFO] [1712349617.553816]: Subclasses: []\n", + "[INFO] [1712349617.554108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.554585]: Instances: []\n", + "[INFO] [1712349617.554836]: Direct Instances: []\n", + "[INFO] [1712349617.555087]: Inverse Restrictions: []\n", + "[INFO] [1712349617.555326]: -------------------\n", + "[INFO] [1712349617.555561]: SOMA.Gripper \n", + "[INFO] [1712349617.555792]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712349617.556038]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.Gripper, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", + "[INFO] [1712349617.556299]: Subclasses: []\n", + "[INFO] [1712349617.556589]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.557074]: Instances: []\n", + "[INFO] [1712349617.557330]: Direct Instances: []\n", + "[INFO] [1712349617.557583]: Inverse Restrictions: []\n", + "[INFO] [1712349617.557820]: -------------------\n", + "[INFO] [1712349617.558050]: SOMA.PrehensileEffector \n", + "[INFO] [1712349617.558274]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712349617.558517]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", + "[INFO] [1712349617.558778]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712349617.559069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.559551]: Instances: []\n", + "[INFO] [1712349617.559821]: Direct Instances: []\n", + "[INFO] [1712349617.560132]: Inverse Restrictions: []\n", + "[INFO] [1712349617.560373]: -------------------\n", + "[INFO] [1712349617.560608]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712349617.560862]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712349617.561122]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.HardwareDiagnosis, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349617.561371]: Subclasses: []\n", + "[INFO] [1712349617.561656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.562136]: Instances: []\n", + "[INFO] [1712349617.562406]: Direct Instances: []\n", + "[INFO] [1712349617.563046]: Inverse Restrictions: []\n", + "[INFO] [1712349617.563351]: -------------------\n", + "[INFO] [1712349617.563596]: SOMA.HasQualityRegion \n", + "[INFO] [1712349617.563846]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712349617.564105]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.HasQualityRegion, DUL.Object, DUL.Entity, owl.Thing, DUL.Relation}\n", + "[INFO] [1712349617.564377]: Subclasses: []\n", + "[INFO] [1712349617.564692]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasRegion, rdf-schema.isDefinedBy, DUL.hasQuality]\n", + "[INFO] [1712349617.565200]: Instances: []\n", + "[INFO] [1712349617.565468]: Direct Instances: []\n", + "[INFO] [1712349617.565711]: Inverse Restrictions: []\n", + "[INFO] [1712349617.565954]: -------------------\n", + "[INFO] [1712349617.566221]: SOMA.Head \n", + "[INFO] [1712349617.566459]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712349617.566699]: Ancestors: {SOMA.FunctionalPart, SOMA.Head, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.566936]: Subclasses: []\n", + "[INFO] [1712349617.567217]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.567715]: Instances: []\n", + "[INFO] [1712349617.567982]: Direct Instances: []\n", + "[INFO] [1712349617.568237]: Inverse Restrictions: []\n", + "[INFO] [1712349617.568480]: -------------------\n", + "[INFO] [1712349617.568707]: SOMA.HeadMovement \n", + "[INFO] [1712349617.568940]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712349617.569197]: Ancestors: {SOMA.BodyMovement, SOMA.HeadMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.569453]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712349617.569740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.570240]: Instances: []\n", + "[INFO] [1712349617.570507]: Direct Instances: []\n", + "[INFO] [1712349617.570762]: Inverse Restrictions: []\n", + "[INFO] [1712349617.570992]: -------------------\n", + "[INFO] [1712349617.571220]: SOMA.HeadTurning \n", + "[INFO] [1712349617.571458]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712349617.571719]: Ancestors: {SOMA.BodyMovement, SOMA.HeadMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.HeadTurning}\n", + "[INFO] [1712349617.571963]: Subclasses: []\n", + "[INFO] [1712349617.572251]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.572736]: Instances: []\n", + "[INFO] [1712349617.573015]: Direct Instances: []\n", + "[INFO] [1712349617.573275]: Inverse Restrictions: []\n", + "[INFO] [1712349617.573506]: -------------------\n", + "[INFO] [1712349617.573733]: SOMA.Holding \n", + "[INFO] [1712349617.573958]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349617.574196]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Holding}\n", + "[INFO] [1712349617.574446]: Subclasses: []\n", + "[INFO] [1712349617.574734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.575208]: Instances: []\n", + "[INFO] [1712349617.575483]: Direct Instances: []\n", + "[INFO] [1712349617.575739]: Inverse Restrictions: []\n", + "[INFO] [1712349617.575971]: -------------------\n", + "[INFO] [1712349617.576201]: SOMA.HostRole \n", + "[INFO] [1712349617.576436]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712349617.576690]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.HostRole, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.576947]: Subclasses: []\n", + "[INFO] [1712349617.577240]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", + "[INFO] [1712349617.577719]: Instances: []\n", + "[INFO] [1712349617.577991]: Direct Instances: []\n", + "[INFO] [1712349617.578303]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712349617.578544]: -------------------\n", + "[INFO] [1712349617.578775]: SOMA.PluginSpecification \n", + "[INFO] [1712349617.579016]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712349617.579271]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, SOMA.PluginSpecification, owl.Thing}\n", + "[INFO] [1712349617.579519]: Subclasses: []\n", + "[INFO] [1712349617.579812]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", + "[INFO] [1712349617.580294]: Instances: []\n", + "[INFO] [1712349617.580560]: Direct Instances: []\n", + "[INFO] [1712349617.580888]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712349617.581127]: -------------------\n", + "[INFO] [1712349617.581363]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712349617.581594]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712349617.581851]: Ancestors: {SOMA.System, SOMA.Human-readable_Programming_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Programming_Language, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349617.582093]: Subclasses: []\n", + "[INFO] [1712349617.582381]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.582871]: Instances: []\n", + "[INFO] [1712349617.583197]: Direct Instances: []\n", + "[INFO] [1712349617.583527]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712349617.583769]: -------------------\n", + "[INFO] [1712349617.584012]: SOMA.Source_Code \n", + "[INFO] [1712349617.584244]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712349617.584497]: Ancestors: {SOMA.Source_Code, owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712349617.584750]: Subclasses: []\n", + "[INFO] [1712349617.585064]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.585555]: Instances: []\n", + "[INFO] [1712349617.585810]: Direct Instances: []\n", + "[INFO] [1712349617.586099]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712349617.586342]: -------------------\n", + "[INFO] [1712349617.586573]: SOMA.HumanActivityRecording \n", + "[INFO] [1712349617.586801]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712349617.587037]: Ancestors: {DUL.Situation, SOMA.Episode, DUL.Entity, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712349617.587273]: Subclasses: []\n", + "[INFO] [1712349617.587568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.588047]: Instances: []\n", + "[INFO] [1712349617.588299]: Direct Instances: []\n", + "[INFO] [1712349617.588537]: Inverse Restrictions: []\n", + "[INFO] [1712349617.588763]: -------------------\n", + "[INFO] [1712349617.589009]: SOMA.Imagining \n", + "[INFO] [1712349617.589239]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712349617.589469]: Ancestors: {SOMA.Imagining, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712349617.589704]: Subclasses: []\n", + "[INFO] [1712349617.589983]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.590480]: Instances: []\n", + "[INFO] [1712349617.590749]: Direct Instances: []\n", + "[INFO] [1712349617.590989]: Inverse Restrictions: []\n", + "[INFO] [1712349617.591223]: -------------------\n", + "[INFO] [1712349617.591459]: SOMA.Impediment \n", + "[INFO] [1712349617.591704]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712349617.591955]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Impediment, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.592197]: Subclasses: []\n", + "[INFO] [1712349617.592486]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.592994]: Instances: []\n", + "[INFO] [1712349617.593267]: Direct Instances: []\n", + "[INFO] [1712349617.593520]: Inverse Restrictions: []\n", + "[INFO] [1712349617.593753]: -------------------\n", + "[INFO] [1712349617.593980]: SOMA.Obstacle \n", + "[INFO] [1712349617.594209]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712349617.594462]: Ancestors: {DUL.SocialObject, SOMA.Obstacle, SOMA.EventAdjacentRole, DUL.Concept, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.594710]: Subclasses: []\n", + "[INFO] [1712349617.594996]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.595473]: Instances: []\n", + "[INFO] [1712349617.595742]: Direct Instances: []\n", + "[INFO] [1712349617.596041]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712349617.596276]: -------------------\n", + "[INFO] [1712349617.596508]: SOMA.RestrictedObject \n", + "[INFO] [1712349617.596735]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712349617.596988]: Ancestors: {SOMA.RestrictedObject, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.597238]: Subclasses: []\n", + "[INFO] [1712349617.597530]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.598025]: Instances: []\n", + "[INFO] [1712349617.598303]: Direct Instances: []\n", + "[INFO] [1712349617.598595]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712349617.598831]: -------------------\n", + "[INFO] [1712349617.599056]: SOMA.StateTransition \n", + "[INFO] [1712349617.599311]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712349617.599592]: Ancestors: {DUL.Situation, DUL.Entity, owl.Thing, SOMA.StateTransition, DUL.Transition}\n", + "[INFO] [1712349617.599838]: Subclasses: []\n", + "[INFO] [1712349617.600132]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasInitialScene, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349617.600615]: Instances: []\n", + "[INFO] [1712349617.600895]: Direct Instances: []\n", + "[INFO] [1712349617.601221]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712349617.601463]: -------------------\n", + "[INFO] [1712349617.601694]: SOMA.Inability \n", + "[INFO] [1712349617.601920]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712349617.602160]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Inability, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.602412]: Subclasses: []\n", + "[INFO] [1712349617.602700]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.603181]: Instances: []\n", + "[INFO] [1712349617.603430]: Direct Instances: []\n", + "[INFO] [1712349617.603673]: Inverse Restrictions: []\n", + "[INFO] [1712349617.603913]: -------------------\n", + "[INFO] [1712349617.604143]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712349617.604384]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712349617.604630]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.IncompatibleSoftware, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349617.604873]: Subclasses: []\n", + "[INFO] [1712349617.605171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.605659]: Instances: []\n", + "[INFO] [1712349617.605922]: Direct Instances: []\n", + "[INFO] [1712349617.606177]: Inverse Restrictions: []\n", + "[INFO] [1712349617.606422]: -------------------\n", + "[INFO] [1712349617.606660]: SOMA.InductiveReasoning \n", + "[INFO] [1712349617.606897]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712349617.607143]: Ancestors: {SOMA.InformationAcquisition, SOMA.InductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.607381]: Subclasses: []\n", + "[INFO] [1712349617.607663]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.608160]: Instances: []\n", + "[INFO] [1712349617.608422]: Direct Instances: []\n", + "[INFO] [1712349617.608667]: Inverse Restrictions: []\n", + "[INFO] [1712349617.608908]: -------------------\n", + "[INFO] [1712349617.609143]: SOMA.Infeasibility \n", + "[INFO] [1712349617.609369]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712349617.609618]: Ancestors: {DUL.Description, SOMA.Infeasibility, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.609866]: Subclasses: []\n", + "[INFO] [1712349617.610152]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.610628]: Instances: []\n", + "[INFO] [1712349617.610895]: Direct Instances: []\n", + "[INFO] [1712349617.611148]: Inverse Restrictions: []\n", + "[INFO] [1712349617.611383]: -------------------\n", + "[INFO] [1712349617.611614]: SOMA.InferenceRules \n", + "[INFO] [1712349617.611840]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712349617.612077]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, SOMA.Item, SOMA.InferenceRules}\n", + "[INFO] [1712349617.612329]: Subclasses: []\n", + "[INFO] [1712349617.612619]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.613106]: Instances: []\n", + "[INFO] [1712349617.613383]: Direct Instances: []\n", + "[INFO] [1712349617.613640]: Inverse Restrictions: []\n", + "[INFO] [1712349617.613870]: -------------------\n", + "[INFO] [1712349617.614096]: SOMA.InformationRetrieval \n", + "[INFO] [1712349617.614326]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712349617.614569]: Ancestors: {owl.Thing, SOMA.InformationRetrieval, SOMA.InformationAcquisition}\n", + "[INFO] [1712349617.614813]: Subclasses: []\n", + "[INFO] [1712349617.615101]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712349617.615592]: Instances: []\n", + "[INFO] [1712349617.615865]: Direct Instances: []\n", + "[INFO] [1712349617.616170]: Inverse Restrictions: []\n", + "[INFO] [1712349617.616414]: -------------------\n", + "[INFO] [1712349617.616650]: SOMA.InformationStorage \n", + "[INFO] [1712349617.616890]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712349617.617139]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", + "[INFO] [1712349617.617395]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712349617.617687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label]\n", + "[INFO] [1712349617.618170]: Instances: []\n", + "[INFO] [1712349617.618445]: Direct Instances: []\n", + "[INFO] [1712349617.618709]: Inverse Restrictions: []\n", + "[INFO] [1712349617.618941]: -------------------\n", + "[INFO] [1712349617.619169]: SOMA.StoredObject \n", + "[INFO] [1712349617.619395]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712349617.619634]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.StoredObject, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", + "[INFO] [1712349617.619895]: Subclasses: []\n", + "[INFO] [1712349617.620188]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.620676]: Instances: []\n", + "[INFO] [1712349617.620950]: Direct Instances: []\n", + "[INFO] [1712349617.621300]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712349617.621546]: -------------------\n", + "[INFO] [1712349617.621780]: SOMA.InsertedObject \n", + "[INFO] [1712349617.622011]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712349617.622252]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.InsertedObject, DUL.Entity, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", + "[INFO] [1712349617.622501]: Subclasses: []\n", + "[INFO] [1712349617.622804]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.623282]: Instances: []\n", + "[INFO] [1712349617.623532]: Direct Instances: []\n", + "[INFO] [1712349617.623834]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712349617.624076]: -------------------\n", + "[INFO] [1712349617.624309]: SOMA.Instructions \n", + "[INFO] [1712349617.624537]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712349617.624781]: Ancestors: {SOMA.Patient, DUL.SocialObject, SOMA.Instructions, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", + "[INFO] [1712349617.625039]: Subclasses: []\n", + "[INFO] [1712349617.625342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.625822]: Instances: []\n", + "[INFO] [1712349617.626077]: Direct Instances: []\n", + "[INFO] [1712349617.626313]: Inverse Restrictions: []\n", + "[INFO] [1712349617.626552]: -------------------\n", + "[INFO] [1712349617.626785]: SOMA.Interpreting \n", + "[INFO] [1712349617.627011]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349617.627241]: Ancestors: {SOMA.Interpreting, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.627484]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712349617.627767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.628270]: Instances: []\n", + "[INFO] [1712349617.628536]: Direct Instances: []\n", + "[INFO] [1712349617.628800]: Inverse Restrictions: []\n", + "[INFO] [1712349617.629056]: -------------------\n", + "[INFO] [1712349617.629307]: SOMA.InterrogativeClause \n", + "[INFO] [1712349617.629544]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712349617.629791]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ClausalObject, SOMA.InterrogativeClause, SOMA.Phrase}\n", + "[INFO] [1712349617.630031]: Subclasses: []\n", + "[INFO] [1712349617.630329]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.630809]: Instances: []\n", + "[INFO] [1712349617.631062]: Direct Instances: []\n", + "[INFO] [1712349617.631354]: Inverse Restrictions: []\n", + "[INFO] [1712349617.631599]: -------------------\n", + "[INFO] [1712349617.631836]: SOMA.Introspecting \n", + "[INFO] [1712349617.632066]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712349617.632299]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Introspecting}\n", + "[INFO] [1712349617.632538]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712349617.632849]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.633349]: Instances: []\n", + "[INFO] [1712349617.633609]: Direct Instances: []\n", + "[INFO] [1712349617.633867]: Inverse Restrictions: []\n", + "[INFO] [1712349617.634111]: -------------------\n", + "[INFO] [1712349617.634348]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712349617.634577]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712349617.634811]: Ancestors: {SOMA.KineticFrictionAttribute, SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.635042]: Subclasses: []\n", + "[INFO] [1712349617.635324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.635818]: Instances: []\n", + "[INFO] [1712349617.636078]: Direct Instances: []\n", + "[INFO] [1712349617.636316]: Inverse Restrictions: []\n", + "[INFO] [1712349617.636545]: -------------------\n", + "[INFO] [1712349617.636779]: SOMA.KinoDynamicData \n", + "[INFO] [1712349617.637023]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349617.637266]: Ancestors: {DUL.InformationObject, SOMA.KinoDynamicData, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.637504]: Subclasses: []\n", + "[INFO] [1712349617.637788]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.638287]: Instances: []\n", + "[INFO] [1712349617.638554]: Direct Instances: []\n", + "[INFO] [1712349617.638800]: Inverse Restrictions: []\n", + "[INFO] [1712349617.639029]: -------------------\n", + "[INFO] [1712349617.639258]: SOMA.Room \n", + "[INFO] [1712349617.639497]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712349617.639739]: Ancestors: {SOMA.Room, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", + "[INFO] [1712349617.639984]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712349617.640263]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.640883]: Instances: []\n", + "[INFO] [1712349617.641202]: Direct Instances: []\n", + "[INFO] [1712349617.641490]: Inverse Restrictions: []\n", + "[INFO] [1712349617.641747]: -------------------\n", + "[INFO] [1712349617.641992]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712349617.642230]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349617.642478]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.KnowledgeRepresentationLanguage, SOMA.Language}\n", + "[INFO] [1712349617.642758]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712349617.643061]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.643546]: Instances: []\n", + "[INFO] [1712349617.643804]: Direct Instances: []\n", + "[INFO] [1712349617.644055]: Inverse Restrictions: []\n", + "[INFO] [1712349617.644293]: -------------------\n", + "[INFO] [1712349617.644529]: SOMA.Labeling \n", + "[INFO] [1712349617.644758]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712349617.644998]: Ancestors: {SOMA.Interpreting, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.645250]: Subclasses: []\n", + "[INFO] [1712349617.645541]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.646032]: Instances: []\n", + "[INFO] [1712349617.646297]: Direct Instances: []\n", + "[INFO] [1712349617.646546]: Inverse Restrictions: []\n", + "[INFO] [1712349617.646775]: -------------------\n", + "[INFO] [1712349617.647002]: SOMA.Text \n", + "[INFO] [1712349617.647239]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.647473]: Ancestors: {owl.Thing, SOMA.Text}\n", + "[INFO] [1712349617.647708]: Subclasses: []\n", + "[INFO] [1712349617.647998]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.648504]: Instances: []\n", + "[INFO] [1712349617.648778]: Direct Instances: []\n", + "[INFO] [1712349617.649136]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712349617.649411]: -------------------\n", + "[INFO] [1712349617.649654]: SOMA.Leaning \n", + "[INFO] [1712349617.649889]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712349617.650143]: Ancestors: {SOMA.Leaning, SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.650384]: Subclasses: []\n", + "[INFO] [1712349617.650686]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.651159]: Instances: []\n", + "[INFO] [1712349617.651419]: Direct Instances: []\n", + "[INFO] [1712349617.651674]: Inverse Restrictions: []\n", + "[INFO] [1712349617.651917]: -------------------\n", + "[INFO] [1712349617.652150]: SOMA.PosturalMoving \n", + "[INFO] [1712349617.652384]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712349617.652880]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.653334]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712349617.653815]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.654475]: Instances: []\n", + "[INFO] [1712349617.654898]: Direct Instances: []\n", + "[INFO] [1712349617.655318]: Inverse Restrictions: []\n", + "[INFO] [1712349617.655752]: -------------------\n", + "[INFO] [1712349617.656108]: SOMA.Learning \n", + "[INFO] [1712349617.656454]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712349617.656802]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.Learning, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", + "[INFO] [1712349617.657238]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712349617.657633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.658243]: Instances: []\n", + "[INFO] [1712349617.658607]: Direct Instances: []\n", + "[INFO] [1712349617.658953]: Inverse Restrictions: []\n", + "[INFO] [1712349617.659289]: -------------------\n", + "[INFO] [1712349617.659623]: SOMA.Leg \n", + "[INFO] [1712349617.659962]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712349617.660302]: Ancestors: {SOMA.FunctionalPart, SOMA.Leg, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", + "[INFO] [1712349617.660636]: Subclasses: []\n", + "[INFO] [1712349617.661015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.661594]: Instances: []\n", + "[INFO] [1712349617.661956]: Direct Instances: []\n", + "[INFO] [1712349617.662352]: Inverse Restrictions: []\n", + "[INFO] [1712349617.662684]: -------------------\n", + "[INFO] [1712349617.663021]: SOMA.LimbMotion \n", + "[INFO] [1712349617.663364]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712349617.663717]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.LimbMotion, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.664067]: Subclasses: []\n", + "[INFO] [1712349617.664459]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", + "[INFO] [1712349617.665047]: Instances: []\n", + "[INFO] [1712349617.665409]: Direct Instances: []\n", + "[INFO] [1712349617.665752]: Inverse Restrictions: []\n", + "[INFO] [1712349617.666081]: -------------------\n", + "[INFO] [1712349617.666407]: SOMA.LinkedObject \n", + "[INFO] [1712349617.666737]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712349617.667074]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, SOMA.LinkedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.667399]: Subclasses: []\n", + "[INFO] [1712349617.667766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.668341]: Instances: []\n", + "[INFO] [1712349617.668690]: Direct Instances: []\n", + "[INFO] [1712349617.669270]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712349617.669691]: -------------------\n", + "[INFO] [1712349617.670011]: SOMA.LinkageState \n", + "[INFO] [1712349617.670392]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712349617.670770]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.LinkageState, owl.Thing}\n", + "[INFO] [1712349617.671058]: Subclasses: []\n", + "[INFO] [1712349617.671375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349617.671882]: Instances: []\n", + "[INFO] [1712349617.672145]: Direct Instances: []\n", + "[INFO] [1712349617.672398]: Inverse Restrictions: []\n", + "[INFO] [1712349617.672637]: -------------------\n", + "[INFO] [1712349617.672892]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712349617.673151]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712349617.673406]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.673658]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712349617.673949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.674467]: Instances: []\n", + "[INFO] [1712349617.674732]: Direct Instances: []\n", + "[INFO] [1712349617.674984]: Inverse Restrictions: []\n", + "[INFO] [1712349617.675223]: -------------------\n", + "[INFO] [1712349617.675459]: SOMA.SpatialRelationRole \n", + "[INFO] [1712349617.675710]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712349617.675964]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.676214]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712349617.676502]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.677012]: Instances: []\n", + "[INFO] [1712349617.677281]: Direct Instances: []\n", + "[INFO] [1712349617.677540]: Inverse Restrictions: []\n", + "[INFO] [1712349617.677780]: -------------------\n", + "[INFO] [1712349617.678028]: SOMA.LocutionaryAction \n", + "[INFO] [1712349617.678269]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.678504]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", + "[INFO] [1712349617.678743]: Subclasses: []\n", + "[INFO] [1712349617.679036]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349617.679539]: Instances: []\n", + "[INFO] [1712349617.679804]: Direct Instances: []\n", + "[INFO] [1712349617.680056]: Inverse Restrictions: []\n", + "[INFO] [1712349617.680292]: -------------------\n", + "[INFO] [1712349617.680522]: SOMA.LookingAt \n", + "[INFO] [1712349617.680763]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349617.681024]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.LookingAt, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.681269]: Subclasses: []\n", + "[INFO] [1712349617.681555]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.682036]: Instances: []\n", + "[INFO] [1712349617.682307]: Direct Instances: []\n", + "[INFO] [1712349617.682558]: Inverse Restrictions: []\n", + "[INFO] [1712349617.682793]: -------------------\n", + "[INFO] [1712349617.683025]: SOMA.LookingFor \n", + "[INFO] [1712349617.683254]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712349617.683497]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.LookingFor}\n", + "[INFO] [1712349617.683754]: Subclasses: []\n", + "[INFO] [1712349617.684044]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.684524]: Instances: []\n", + "[INFO] [1712349617.684782]: Direct Instances: []\n", + "[INFO] [1712349617.685035]: Inverse Restrictions: []\n", + "[INFO] [1712349617.685280]: -------------------\n", + "[INFO] [1712349617.685518]: SOMA.Lowering \n", + "[INFO] [1712349617.685751]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.685993]: Ancestors: {SOMA.Lowering, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.686249]: Subclasses: []\n", + "[INFO] [1712349617.686540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.687021]: Instances: []\n", + "[INFO] [1712349617.687275]: Direct Instances: []\n", + "[INFO] [1712349617.687519]: Inverse Restrictions: []\n", + "[INFO] [1712349617.687768]: -------------------\n", + "[INFO] [1712349617.688006]: SOMA.PhysicalAction \n", + "[INFO] [1712349617.688241]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712349617.688482]: Ancestors: {DUL.Entity, DUL.Event, DUL.Action, owl.Thing, SOMA.PhysicalAction}\n", + "[INFO] [1712349617.688715]: Subclasses: []\n", + "[INFO] [1712349617.689010]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.689502]: Instances: []\n", + "[INFO] [1712349617.689776]: Direct Instances: []\n", + "[INFO] [1712349617.690072]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349617.690321]: -------------------\n", + "[INFO] [1712349617.690559]: SOMA.Markup_Language \n", + "[INFO] [1712349617.690789]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712349617.691031]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Markup_Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712349617.691286]: Subclasses: []\n", + "[INFO] [1712349617.691580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.692058]: Instances: []\n", + "[INFO] [1712349617.692326]: Direct Instances: []\n", + "[INFO] [1712349617.692577]: Inverse Restrictions: []\n", + "[INFO] [1712349617.692838]: -------------------\n", + "[INFO] [1712349617.693215]: SOMA.Masterful \n", + "[INFO] [1712349617.693510]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712349617.693788]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.Masterful, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.694048]: Subclasses: []\n", + "[INFO] [1712349617.694338]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.694841]: Instances: []\n", + "[INFO] [1712349617.695103]: Direct Instances: []\n", + "[INFO] [1712349617.695356]: Inverse Restrictions: []\n", + "[INFO] [1712349617.695594]: -------------------\n", + "[INFO] [1712349617.695841]: SOMA.Material \n", + "[INFO] [1712349617.696079]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349617.696324]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Material, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712349617.696563]: Subclasses: []\n", + "[INFO] [1712349617.696846]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.697353]: Instances: []\n", + "[INFO] [1712349617.697619]: Direct Instances: []\n", + "[INFO] [1712349617.697871]: Inverse Restrictions: []\n", + "[INFO] [1712349617.698108]: -------------------\n", + "[INFO] [1712349617.698343]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712349617.698584]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712349617.698838]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.MedicalDiagnosis, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis}\n", + "[INFO] [1712349617.699084]: Subclasses: []\n", + "[INFO] [1712349617.699424]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", + "[INFO] [1712349617.699920]: Instances: []\n", + "[INFO] [1712349617.700197]: Direct Instances: []\n", + "[INFO] [1712349617.700451]: Inverse Restrictions: []\n", + "[INFO] [1712349617.700685]: -------------------\n", + "[INFO] [1712349617.700924]: SOMA.Memorizing \n", + "[INFO] [1712349617.701153]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712349617.701396]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.Learning, SOMA.Memorizing, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", + "[INFO] [1712349617.701649]: Subclasses: []\n", + "[INFO] [1712349617.701944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.702427]: Instances: []\n", + "[INFO] [1712349617.702692]: Direct Instances: []\n", + "[INFO] [1712349617.703007]: Inverse Restrictions: []\n", + "[INFO] [1712349617.703281]: -------------------\n", + "[INFO] [1712349617.703536]: SOMA.MentalAction \n", + "[INFO] [1712349617.703782]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712349617.704021]: Ancestors: {SOMA.MentalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712349617.704274]: Subclasses: []\n", + "[INFO] [1712349617.704568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.705054]: Instances: []\n", + "[INFO] [1712349617.705305]: Direct Instances: []\n", + "[INFO] [1712349617.705587]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712349617.705843]: -------------------\n", + "[INFO] [1712349617.706092]: SOMA.MeshShape \n", + "[INFO] [1712349617.706342]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712349617.706586]: Ancestors: {DUL.Region, DUL.Entity, SOMA.MeshShape, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349617.706822]: Subclasses: []\n", + "[INFO] [1712349617.707112]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasFilePath, rdf-schema.label]\n", + "[INFO] [1712349617.707600]: Instances: []\n", + "[INFO] [1712349617.707851]: Direct Instances: []\n", + "[INFO] [1712349617.708096]: Inverse Restrictions: []\n", + "[INFO] [1712349617.708341]: -------------------\n", + "[INFO] [1712349617.708580]: SOMA.MeshShapeData \n", + "[INFO] [1712349617.708821]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712349617.709064]: Ancestors: {DUL.InformationObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.MeshShapeData}\n", + "[INFO] [1712349617.709314]: Subclasses: []\n", + "[INFO] [1712349617.709605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.710088]: Instances: []\n", + "[INFO] [1712349617.710352]: Direct Instances: []\n", + "[INFO] [1712349617.710601]: Inverse Restrictions: []\n", + "[INFO] [1712349617.710833]: -------------------\n", + "[INFO] [1712349617.711067]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712349617.711298]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712349617.711559]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.MetaCognitionEvaluationTopic, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.711807]: Subclasses: []\n", + "[INFO] [1712349617.712091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.712566]: Instances: []\n", + "[INFO] [1712349617.712817]: Direct Instances: []\n", + "[INFO] [1712349617.713074]: Inverse Restrictions: []\n", + "[INFO] [1712349617.713315]: -------------------\n", + "[INFO] [1712349617.713551]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712349617.713777]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349617.714017]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.714279]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712349617.714570]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.715057]: Instances: []\n", + "[INFO] [1712349617.715332]: Direct Instances: []\n", + "[INFO] [1712349617.715593]: Inverse Restrictions: []\n", + "[INFO] [1712349617.715832]: -------------------\n", + "[INFO] [1712349617.716064]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712349617.716291]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712349617.716547]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.716793]: Subclasses: []\n", + "[INFO] [1712349617.717084]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.717572]: Instances: []\n", + "[INFO] [1712349617.717828]: Direct Instances: []\n", + "[INFO] [1712349617.718071]: Inverse Restrictions: []\n", + "[INFO] [1712349617.718302]: -------------------\n", + "[INFO] [1712349617.718531]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712349617.718762]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712349617.719017]: Ancestors: {SOMA.MetaCognitionPlanningTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.719262]: Subclasses: []\n", + "[INFO] [1712349617.719544]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.720040]: Instances: []\n", + "[INFO] [1712349617.720311]: Direct Instances: []\n", + "[INFO] [1712349617.720562]: Inverse Restrictions: []\n", + "[INFO] [1712349617.720802]: -------------------\n", + "[INFO] [1712349617.721037]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712349617.721282]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712349617.721536]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.721797]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712349617.722087]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.722604]: Instances: []\n", + "[INFO] [1712349617.722867]: Direct Instances: []\n", + "[INFO] [1712349617.723126]: Inverse Restrictions: []\n", + "[INFO] [1712349617.723363]: -------------------\n", + "[INFO] [1712349617.723596]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712349617.723828]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712349617.724083]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.MetacognitiveControlling}\n", + "[INFO] [1712349617.724333]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712349617.724615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.725103]: Instances: []\n", + "[INFO] [1712349617.725375]: Direct Instances: []\n", + "[INFO] [1712349617.725638]: Inverse Restrictions: []\n", + "[INFO] [1712349617.725881]: -------------------\n", + "[INFO] [1712349617.726117]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712349617.726346]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712349617.726598]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting}\n", + "[INFO] [1712349617.726842]: Subclasses: []\n", + "[INFO] [1712349617.727129]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.727609]: Instances: []\n", + "[INFO] [1712349617.727880]: Direct Instances: []\n", + "[INFO] [1712349617.728132]: Inverse Restrictions: []\n", + "[INFO] [1712349617.728371]: -------------------\n", + "[INFO] [1712349617.728607]: SOMA.Mixing \n", + "[INFO] [1712349617.728846]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712349617.729107]: Ancestors: {SOMA.Mixing, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.729358]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712349617.729641]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.730119]: Instances: []\n", + "[INFO] [1712349617.730386]: Direct Instances: []\n", + "[INFO] [1712349617.730641]: Inverse Restrictions: []\n", + "[INFO] [1712349617.730876]: -------------------\n", + "[INFO] [1712349617.731107]: SOMA.MixingTheory \n", + "[INFO] [1712349617.731349]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712349617.731610]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.MixingTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349617.731857]: Subclasses: []\n", + "[INFO] [1712349617.732146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.732623]: Instances: []\n", + "[INFO] [1712349617.732890]: Direct Instances: []\n", + "[INFO] [1712349617.733146]: Inverse Restrictions: []\n", + "[INFO] [1712349617.733382]: -------------------\n", + "[INFO] [1712349617.733615]: SOMA.MonitoringJointState \n", + "[INFO] [1712349617.733844]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712349617.734087]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MonitoringJointState, SOMA.Proprioceiving, owl.Thing}\n", + "[INFO] [1712349617.734338]: Subclasses: []\n", + "[INFO] [1712349617.734627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.735110]: Instances: []\n", + "[INFO] [1712349617.735378]: Direct Instances: []\n", + "[INFO] [1712349617.735633]: Inverse Restrictions: []\n", + "[INFO] [1712349617.735873]: -------------------\n", + "[INFO] [1712349617.736107]: SOMA.Proprioceiving \n", + "[INFO] [1712349617.736333]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712349617.736581]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Proprioceiving, owl.Thing}\n", + "[INFO] [1712349617.736839]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712349617.737125]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.737608]: Instances: []\n", + "[INFO] [1712349617.737873]: Direct Instances: []\n", + "[INFO] [1712349617.738129]: Inverse Restrictions: []\n", + "[INFO] [1712349617.738365]: -------------------\n", + "[INFO] [1712349617.738595]: SOMA.MovingAway \n", + "[INFO] [1712349617.738824]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712349617.739082]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MovingAway, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.739329]: Subclasses: []\n", + "[INFO] [1712349617.739614]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.740112]: Instances: []\n", + "[INFO] [1712349617.740371]: Direct Instances: []\n", + "[INFO] [1712349617.740617]: Inverse Restrictions: []\n", + "[INFO] [1712349617.740860]: -------------------\n", + "[INFO] [1712349617.741094]: SOMA.MovingTo \n", + "[INFO] [1712349617.741324]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712349617.741581]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.MovingTo, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.741825]: Subclasses: []\n", + "[INFO] [1712349617.742104]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.742583]: Instances: []\n", + "[INFO] [1712349617.742845]: Direct Instances: []\n", + "[INFO] [1712349617.743097]: Inverse Restrictions: []\n", + "[INFO] [1712349617.743332]: -------------------\n", + "[INFO] [1712349617.743565]: SOMA.Natural_Language \n", + "[INFO] [1712349617.743810]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712349617.744069]: Ancestors: {SOMA.Natural_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712349617.744317]: Subclasses: []\n", + "[INFO] [1712349617.744603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.745087]: Instances: []\n", + "[INFO] [1712349617.745356]: Direct Instances: []\n", + "[INFO] [1712349617.745668]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712349617.745913]: -------------------\n", + "[INFO] [1712349617.746154]: SOMA.Natural_Language_Text \n", + "[INFO] [1712349617.746386]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.746631]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", + "[INFO] [1712349617.746871]: Subclasses: []\n", + "[INFO] [1712349617.747161]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.747636]: Instances: []\n", + "[INFO] [1712349617.747903]: Direct Instances: []\n", + "[INFO] [1712349617.748193]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712349617.748433]: -------------------\n", + "[INFO] [1712349617.748667]: SOMA.Ontology \n", + "[INFO] [1712349617.748988]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712349617.749361]: Ancestors: {owl.Thing, SOMA.Ontology, SOMA.Structured_Text}\n", + "[INFO] [1712349617.749665]: Subclasses: []\n", + "[INFO] [1712349617.750003]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349617.750536]: Instances: []\n", + "[INFO] [1712349617.750816]: Direct Instances: []\n", + "[INFO] [1712349617.751118]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712349617.751370]: -------------------\n", + "[INFO] [1712349617.751612]: SOMA.Ontology_Language \n", + "[INFO] [1712349617.751858]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712349617.752123]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Ontology_Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.KnowledgeRepresentationLanguage, SOMA.Language}\n", + "[INFO] [1712349617.752372]: Subclasses: []\n", + "[INFO] [1712349617.752669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.753157]: Instances: []\n", + "[INFO] [1712349617.753476]: Direct Instances: []\n", + "[INFO] [1712349617.753813]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712349617.754071]: -------------------\n", + "[INFO] [1712349617.754318]: SOMA.Option \n", + "[INFO] [1712349617.754563]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712349617.754821]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Option, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.755066]: Subclasses: []\n", + "[INFO] [1712349617.755351]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.755843]: Instances: []\n", + "[INFO] [1712349617.756104]: Direct Instances: []\n", + "[INFO] [1712349617.756352]: Inverse Restrictions: []\n", + "[INFO] [1712349617.756587]: -------------------\n", + "[INFO] [1712349617.756835]: SOMA.Singleton \n", + "[INFO] [1712349617.757094]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.757341]: Ancestors: {owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712349617.757586]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712349617.757869]: Properties: [rdf-schema.isDefinedBy, SOMA.encapsulates, rdf-schema.comment]\n", + "[INFO] [1712349617.758376]: Instances: []\n", + "[INFO] [1712349617.758639]: Direct Instances: []\n", + "[INFO] [1712349617.758889]: Inverse Restrictions: []\n", + "[INFO] [1712349617.759125]: -------------------\n", + "[INFO] [1712349617.759368]: SOMA.Orienting \n", + "[INFO] [1712349617.759612]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712349617.759860]: Ancestors: {SOMA.Orienting, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Positioning, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.760100]: Subclasses: []\n", + "[INFO] [1712349617.760381]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.760880]: Instances: []\n", + "[INFO] [1712349617.761142]: Direct Instances: []\n", + "[INFO] [1712349617.761475]: Inverse Restrictions: []\n", + "[INFO] [1712349617.761715]: -------------------\n", + "[INFO] [1712349617.761943]: SOMA.Positioning \n", + "[INFO] [1712349617.762175]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712349617.762435]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Positioning, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.762681]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712349617.762961]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.763446]: Instances: []\n", + "[INFO] [1712349617.763712]: Direct Instances: []\n", + "[INFO] [1712349617.763967]: Inverse Restrictions: []\n", + "[INFO] [1712349617.764403]: -------------------\n", + "[INFO] [1712349617.764708]: SOMA.Origin \n", + "[INFO] [1712349617.764987]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712349617.765269]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Location, SOMA.Origin, DUL.Role}\n", + "[INFO] [1712349617.765527]: Subclasses: []\n", + "[INFO] [1712349617.765869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.766454]: Instances: []\n", + "[INFO] [1712349617.766739]: Direct Instances: []\n", + "[INFO] [1712349617.767044]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712349617.767287]: -------------------\n", + "[INFO] [1712349617.767521]: SOMA.ParkingArms \n", + "[INFO] [1712349617.767782]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712349617.768050]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ParkingArms, DUL.Object, DUL.Entity, owl.Thing, SOMA.AssumingArmPose}\n", + "[INFO] [1712349617.768308]: Subclasses: []\n", + "[INFO] [1712349617.768605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.769092]: Instances: []\n", + "[INFO] [1712349617.769360]: Direct Instances: []\n", + "[INFO] [1712349617.769623]: Inverse Restrictions: []\n", + "[INFO] [1712349617.769860]: -------------------\n", + "[INFO] [1712349617.770090]: SOMA.PhaseTransition \n", + "[INFO] [1712349617.770331]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712349617.770567]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349617.770848]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712349617.771150]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.771647]: Instances: []\n", + "[INFO] [1712349617.771904]: Direct Instances: []\n", + "[INFO] [1712349617.772156]: Inverse Restrictions: []\n", + "[INFO] [1712349617.772397]: -------------------\n", + "[INFO] [1712349617.772634]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712349617.772883]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712349617.773128]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAccessibility, owl.Thing}\n", + "[INFO] [1712349617.773368]: Subclasses: []\n", + "[INFO] [1712349617.773673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349617.774162]: Instances: []\n", + "[INFO] [1712349617.774416]: Direct Instances: []\n", + "[INFO] [1712349617.774660]: Inverse Restrictions: []\n", + "[INFO] [1712349617.774885]: -------------------\n", + "[INFO] [1712349617.775111]: SOMA.PhysicalBlockage \n", + "[INFO] [1712349617.775355]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712349617.775599]: Ancestors: {SOMA.PhysicalBlockage, DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.775836]: Subclasses: []\n", + "[INFO] [1712349617.776144]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349617.776656]: Instances: []\n", + "[INFO] [1712349617.776927]: Direct Instances: []\n", + "[INFO] [1712349617.777177]: Inverse Restrictions: []\n", + "[INFO] [1712349617.777416]: -------------------\n", + "[INFO] [1712349617.777647]: SOMA.PhysicalExistence \n", + "[INFO] [1712349617.777885]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712349617.778130]: Ancestors: {SOMA.PhysicalState, DUL.Entity, DUL.Event, SOMA.PhysicalExistence, owl.Thing, SOMA.State}\n", + "[INFO] [1712349617.778371]: Subclasses: []\n", + "[INFO] [1712349617.778657]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.779151]: Instances: []\n", + "[INFO] [1712349617.779422]: Direct Instances: []\n", + "[INFO] [1712349617.779672]: Inverse Restrictions: []\n", + "[INFO] [1712349617.779900]: -------------------\n", + "[INFO] [1712349617.780124]: SOMA.PhysicalState \n", + "[INFO] [1712349617.780352]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712349617.780599]: Ancestors: {SOMA.PhysicalState, DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", + "[INFO] [1712349617.780856]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712349617.781148]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349617.781632]: Instances: []\n", + "[INFO] [1712349617.781912]: Direct Instances: []\n", + "[INFO] [1712349617.782177]: Inverse Restrictions: []\n", + "[INFO] [1712349617.782413]: -------------------\n", + "[INFO] [1712349617.782682]: SOMA.PhysicsProcess \n", + "[INFO] [1712349617.782936]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712349617.783196]: Ancestors: {DUL.Entity, DUL.Event, SOMA.PhysicsProcess, owl.Thing, DUL.Process}\n", + "[INFO] [1712349617.783448]: Subclasses: []\n", + "[INFO] [1712349617.783745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349617.784230]: Instances: []\n", + "[INFO] [1712349617.784507]: Direct Instances: []\n", + "[INFO] [1712349617.784765]: Inverse Restrictions: []\n", + "[INFO] [1712349617.785005]: -------------------\n", + "[INFO] [1712349617.785235]: SOMA.PlacingTheory \n", + "[INFO] [1712349617.785470]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712349617.785718]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PlacingTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712349617.785969]: Subclasses: []\n", + "[INFO] [1712349617.786278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.786787]: Instances: []\n", + "[INFO] [1712349617.787053]: Direct Instances: []\n", + "[INFO] [1712349617.787302]: Inverse Restrictions: []\n", + "[INFO] [1712349617.787534]: -------------------\n", + "[INFO] [1712349617.787782]: SOMA.PlanarJoint \n", + "[INFO] [1712349617.788026]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712349617.788280]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, SOMA.PlanarJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.788523]: Subclasses: []\n", + "[INFO] [1712349617.788830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.789341]: Instances: []\n", + "[INFO] [1712349617.789619]: Direct Instances: []\n", + "[INFO] [1712349617.789867]: Inverse Restrictions: []\n", + "[INFO] [1712349617.790101]: -------------------\n", + "[INFO] [1712349617.790329]: SOMA.PluginRole \n", + "[INFO] [1712349617.790560]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712349617.790812]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, SOMA.PluginRole, DUL.Object, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.791053]: Subclasses: []\n", + "[INFO] [1712349617.791342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", + "[INFO] [1712349617.791814]: Instances: []\n", + "[INFO] [1712349617.792086]: Direct Instances: []\n", + "[INFO] [1712349617.792405]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712349617.792643]: -------------------\n", + "[INFO] [1712349617.792876]: SOMA.Pourable \n", + "[INFO] [1712349617.793112]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712349617.793352]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Pourable, SOMA.Extrinsic}\n", + "[INFO] [1712349617.793605]: Subclasses: []\n", + "[INFO] [1712349617.793898]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.794384]: Instances: []\n", + "[INFO] [1712349617.794656]: Direct Instances: []\n", + "[INFO] [1712349617.794953]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712349617.795190]: -------------------\n", + "[INFO] [1712349617.795420]: SOMA.PouredObject \n", + "[INFO] [1712349617.795647]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712349617.795884]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.PouredObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.796140]: Subclasses: []\n", + "[INFO] [1712349617.796431]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.796913]: Instances: []\n", + "[INFO] [1712349617.797167]: Direct Instances: []\n", + "[INFO] [1712349617.797465]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712349617.797703]: -------------------\n", + "[INFO] [1712349617.797930]: SOMA.Pouring \n", + "[INFO] [1712349617.798160]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712349617.798395]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.798659]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712349617.798951]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349617.799471]: Instances: []\n", + "[INFO] [1712349617.799769]: Direct Instances: []\n", + "[INFO] [1712349617.800044]: Inverse Restrictions: []\n", + "[INFO] [1712349617.800285]: -------------------\n", + "[INFO] [1712349617.800523]: SOMA.PouringInto \n", + "[INFO] [1712349617.800756]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712349617.801026]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.PouringInto, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.801291]: Subclasses: []\n", + "[INFO] [1712349617.801601]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.802094]: Instances: []\n", + "[INFO] [1712349617.802356]: Direct Instances: []\n", + "[INFO] [1712349617.802632]: Inverse Restrictions: []\n", + "[INFO] [1712349617.802889]: -------------------\n", + "[INFO] [1712349617.803129]: SOMA.PouringOnto \n", + "[INFO] [1712349617.803364]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712349617.803601]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PouringOnto, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.803836]: Subclasses: []\n", + "[INFO] [1712349617.804128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.804605]: Instances: []\n", + "[INFO] [1712349617.804865]: Direct Instances: []\n", + "[INFO] [1712349617.805100]: Inverse Restrictions: []\n", + "[INFO] [1712349617.805324]: -------------------\n", + "[INFO] [1712349617.805560]: SOMA.Prediction \n", + "[INFO] [1712349617.805789]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712349617.806027]: Ancestors: {SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.806262]: Subclasses: []\n", + "[INFO] [1712349617.806565]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.807040]: Instances: []\n", + "[INFO] [1712349617.807290]: Direct Instances: []\n", + "[INFO] [1712349617.807523]: Inverse Restrictions: []\n", + "[INFO] [1712349617.807762]: -------------------\n", + "[INFO] [1712349617.807995]: SOMA.Prospecting \n", + "[INFO] [1712349617.808224]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712349617.808455]: Ancestors: {SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.808703]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712349617.809111]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.809678]: Instances: []\n", + "[INFO] [1712349617.809966]: Direct Instances: []\n", + "[INFO] [1712349617.810246]: Inverse Restrictions: []\n", + "[INFO] [1712349617.810501]: -------------------\n", + "[INFO] [1712349617.810740]: SOMA.Predilection \n", + "[INFO] [1712349617.810999]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712349617.811260]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Predilection, DUL.Relation, DUL.SocialRelation}\n", + "[INFO] [1712349617.811508]: Subclasses: []\n", + "[INFO] [1712349617.811799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.812272]: Instances: []\n", + "[INFO] [1712349617.812545]: Direct Instances: []\n", + "[INFO] [1712349617.812804]: Inverse Restrictions: []\n", + "[INFO] [1712349617.813048]: -------------------\n", + "[INFO] [1712349617.813279]: SOMA.PreferenceOrder \n", + "[INFO] [1712349617.813521]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712349617.813772]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PreferenceOrder, owl.Thing, DUL.Relation, DUL.SocialRelation}\n", + "[INFO] [1712349617.814015]: Subclasses: []\n", + "[INFO] [1712349617.814304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.orders]\n", + "[INFO] [1712349617.814782]: Instances: []\n", + "[INFO] [1712349617.815056]: Direct Instances: []\n", + "[INFO] [1712349617.815300]: Inverse Restrictions: []\n", + "[INFO] [1712349617.815536]: -------------------\n", + "[INFO] [1712349617.815764]: SOMA.PreferenceRegion \n", + "[INFO] [1712349617.816027]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712349617.816268]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Entity, DUL.SocialObjectAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.816525]: Subclasses: []\n", + "[INFO] [1712349617.816822]: Properties: [rdf-schema.isDefinedBy, DUL.isRegionFor, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.817306]: Instances: []\n", + "[INFO] [1712349617.817556]: Direct Instances: []\n", + "[INFO] [1712349617.817800]: Inverse Restrictions: []\n", + "[INFO] [1712349617.818039]: -------------------\n", + "[INFO] [1712349617.818271]: SOMA.PrismaticJoint \n", + "[INFO] [1712349617.818503]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712349617.818740]: Ancestors: {SOMA.Joint, SOMA.PrismaticJoint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712349617.818969]: Subclasses: []\n", + "[INFO] [1712349617.819259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", + "[INFO] [1712349617.819741]: Instances: []\n", + "[INFO] [1712349617.820003]: Direct Instances: []\n", + "[INFO] [1712349617.820251]: Inverse Restrictions: []\n", + "[INFO] [1712349617.820475]: -------------------\n", + "[INFO] [1712349617.820702]: SOMA.ProcessFlow \n", + "[INFO] [1712349617.820951]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712349617.821195]: Ancestors: {DUL.Description, SOMA.ProcessFlow, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.821434]: Subclasses: []\n", + "[INFO] [1712349617.821718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.definesProcess, rdf-schema.label]\n", + "[INFO] [1712349617.822215]: Instances: []\n", + "[INFO] [1712349617.822474]: Direct Instances: []\n", + "[INFO] [1712349617.822762]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712349617.823011]: -------------------\n", + "[INFO] [1712349617.823244]: SOMA.Progression \n", + "[INFO] [1712349617.823488]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712349617.823729]: Ancestors: {owl.Thing, DUL.Situation, SOMA.Progression, DUL.Entity}\n", + "[INFO] [1712349617.823967]: Subclasses: []\n", + "[INFO] [1712349617.824264]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies]\n", + "[INFO] [1712349617.824761]: Instances: []\n", + "[INFO] [1712349617.825045]: Direct Instances: []\n", + "[INFO] [1712349617.825293]: Inverse Restrictions: []\n", + "[INFO] [1712349617.825526]: -------------------\n", + "[INFO] [1712349617.825752]: SOMA.Protector \n", + "[INFO] [1712349617.825978]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712349617.826230]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, SOMA.Protector, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.826472]: Subclasses: []\n", + "[INFO] [1712349617.826751]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.827227]: Instances: []\n", + "[INFO] [1712349617.827497]: Direct Instances: []\n", + "[INFO] [1712349617.827745]: Inverse Restrictions: []\n", + "[INFO] [1712349617.827974]: -------------------\n", + "[INFO] [1712349617.828198]: SOMA.ProximalTheory \n", + "[INFO] [1712349617.828428]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712349617.828671]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProximalTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.828925]: Subclasses: []\n", + "[INFO] [1712349617.829219]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", + "[INFO] [1712349617.829695]: Instances: []\n", + "[INFO] [1712349617.829963]: Direct Instances: []\n", + "[INFO] [1712349617.830213]: Inverse Restrictions: []\n", + "[INFO] [1712349617.830449]: -------------------\n", + "[INFO] [1712349617.830682]: SOMA.PushingAway \n", + "[INFO] [1712349617.830916]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712349617.831156]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.PushingAway, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", + "[INFO] [1712349617.831407]: Subclasses: []\n", + "[INFO] [1712349617.831708]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.832187]: Instances: []\n", + "[INFO] [1712349617.832461]: Direct Instances: []\n", + "[INFO] [1712349617.832739]: Inverse Restrictions: []\n", + "[INFO] [1712349617.832986]: -------------------\n", + "[INFO] [1712349617.833217]: SOMA.PushingDown \n", + "[INFO] [1712349617.833443]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712349617.833694]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.PushingDown, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", + "[INFO] [1712349617.833936]: Subclasses: []\n", + "[INFO] [1712349617.834222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.834721]: Instances: []\n", + "[INFO] [1712349617.834981]: Direct Instances: []\n", + "[INFO] [1712349617.835233]: Inverse Restrictions: []\n", + "[INFO] [1712349617.835462]: -------------------\n", + "[INFO] [1712349617.835696]: SOMA.PuttingDown \n", + "[INFO] [1712349617.835932]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712349617.836193]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.PuttingDown, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.836436]: Subclasses: []\n", + "[INFO] [1712349617.836723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.837233]: Instances: []\n", + "[INFO] [1712349617.837492]: Direct Instances: []\n", + "[INFO] [1712349617.837738]: Inverse Restrictions: []\n", + "[INFO] [1712349617.837968]: -------------------\n", + "[INFO] [1712349617.838199]: SOMA.QualityTransition \n", + "[INFO] [1712349617.838438]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712349617.838676]: Ancestors: {DUL.Situation, DUL.Entity, owl.Thing, SOMA.QualityTransition, DUL.Transition}\n", + "[INFO] [1712349617.838913]: Subclasses: []\n", + "[INFO] [1712349617.839195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.839685]: Instances: []\n", + "[INFO] [1712349617.839940]: Direct Instances: []\n", + "[INFO] [1712349617.840186]: Inverse Restrictions: []\n", + "[INFO] [1712349617.840413]: -------------------\n", + "[INFO] [1712349617.840637]: SOMA.Query \n", + "[INFO] [1712349617.840878]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712349617.841136]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, DUL.Entity, owl.Thing, SOMA.Query, SOMA.Message, SOMA.Item}\n", + "[INFO] [1712349617.841379]: Subclasses: []\n", + "[INFO] [1712349617.841663]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.842182]: Instances: []\n", + "[INFO] [1712349617.842645]: Direct Instances: []\n", + "[INFO] [1712349617.843095]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712349617.843487]: -------------------\n", + "[INFO] [1712349617.843841]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712349617.844188]: Super classes: [owl.Thing]\n", + "[INFO] [1712349617.844543]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", + "[INFO] [1712349617.844835]: Subclasses: []\n", + "[INFO] [1712349617.845278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.845885]: Instances: []\n", + "[INFO] [1712349617.846300]: Direct Instances: []\n", + "[INFO] [1712349617.846570]: Inverse Restrictions: []\n", + "[INFO] [1712349617.846824]: -------------------\n", + "[INFO] [1712349617.847066]: SOMA.QueryEngine \n", + "[INFO] [1712349617.847298]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349617.847538]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.QueryEngine, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.847771]: Subclasses: []\n", + "[INFO] [1712349617.848063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.848542]: Instances: []\n", + "[INFO] [1712349617.848794]: Direct Instances: []\n", + "[INFO] [1712349617.849039]: Inverse Restrictions: []\n", + "[INFO] [1712349617.849267]: -------------------\n", + "[INFO] [1712349617.849510]: SOMA.Reaching \n", + "[INFO] [1712349617.849746]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712349617.849991]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, SOMA.Reaching, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712349617.850228]: Subclasses: []\n", + "[INFO] [1712349617.850528]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.851015]: Instances: []\n", + "[INFO] [1712349617.851265]: Direct Instances: []\n", + "[INFO] [1712349617.851510]: Inverse Restrictions: []\n", + "[INFO] [1712349617.851753]: -------------------\n", + "[INFO] [1712349617.851990]: SOMA.Retracting \n", + "[INFO] [1712349617.852221]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712349617.852459]: Ancestors: {SOMA.Retracting, SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712349617.852715]: Subclasses: []\n", + "[INFO] [1712349617.853014]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.853501]: Instances: []\n", + "[INFO] [1712349617.853753]: Direct Instances: []\n", + "[INFO] [1712349617.854008]: Inverse Restrictions: []\n", + "[INFO] [1712349617.854254]: -------------------\n", + "[INFO] [1712349617.854485]: SOMA.Reasoner \n", + "[INFO] [1712349617.854714]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712349617.854966]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349617.855219]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712349617.855503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.856002]: Instances: []\n", + "[INFO] [1712349617.856271]: Direct Instances: []\n", + "[INFO] [1712349617.856527]: Inverse Restrictions: []\n", + "[INFO] [1712349617.856763]: -------------------\n", + "[INFO] [1712349617.857002]: SOMA.RecipientRole \n", + "[INFO] [1712349617.857231]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712349617.857485]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.RecipientRole, SOMA.BeneficiaryRole, DUL.Role}\n", + "[INFO] [1712349617.857730]: Subclasses: []\n", + "[INFO] [1712349617.858010]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.858480]: Instances: []\n", + "[INFO] [1712349617.858743]: Direct Instances: []\n", + "[INFO] [1712349617.858995]: Inverse Restrictions: []\n", + "[INFO] [1712349617.859229]: -------------------\n", + "[INFO] [1712349617.859460]: SOMA.RecordedEpisode \n", + "[INFO] [1712349617.859699]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712349617.859935]: Ancestors: {DUL.Situation, SOMA.Episode, DUL.Entity, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712349617.860186]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712349617.860474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", + "[INFO] [1712349617.860971]: Instances: []\n", + "[INFO] [1712349617.861223]: Direct Instances: []\n", + "[INFO] [1712349617.861471]: Inverse Restrictions: []\n", + "[INFO] [1712349617.861717]: -------------------\n", + "[INFO] [1712349617.861954]: SOMA.RedColor \n", + "[INFO] [1712349617.862184]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712349617.862426]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, SOMA.RedColor, owl.Thing}\n", + "[INFO] [1712349617.862660]: Subclasses: []\n", + "[INFO] [1712349617.862943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.863437]: Instances: []\n", + "[INFO] [1712349617.863704]: Direct Instances: []\n", + "[INFO] [1712349617.863948]: Inverse Restrictions: []\n", + "[INFO] [1712349617.864185]: -------------------\n", + "[INFO] [1712349617.864424]: SOMA.Reification \n", + "[INFO] [1712349617.864671]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712349617.864915]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Reification, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.865149]: Subclasses: []\n", + "[INFO] [1712349617.865427]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", + "[INFO] [1712349617.865924]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712349617.866187]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712349617.866435]: Inverse Restrictions: []\n", + "[INFO] [1712349617.866668]: -------------------\n", + "[INFO] [1712349617.866902]: SOMA.RelationalDatabase \n", + "[INFO] [1712349617.867145]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712349617.867393]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, SOMA.RelationalDatabase, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", + "[INFO] [1712349617.867628]: Subclasses: []\n", + "[INFO] [1712349617.867902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.868393]: Instances: []\n", + "[INFO] [1712349617.868652]: Direct Instances: []\n", + "[INFO] [1712349617.868902]: Inverse Restrictions: []\n", + "[INFO] [1712349617.869147]: -------------------\n", + "[INFO] [1712349617.869400]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712349617.869644]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712349617.869890]: Ancestors: {SOMA.RelationalQueryLanguage, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", + "[INFO] [1712349617.870128]: Subclasses: []\n", + "[INFO] [1712349617.870424]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.870939]: Instances: []\n", + "[INFO] [1712349617.871199]: Direct Instances: []\n", + "[INFO] [1712349617.871444]: Inverse Restrictions: []\n", + "[INFO] [1712349617.871675]: -------------------\n", + "[INFO] [1712349617.871916]: SOMA.RelevantPart \n", + "[INFO] [1712349617.872148]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712349617.872389]: Ancestors: {SOMA.Feature, DUL.Object, DUL.Entity, owl.Thing, SOMA.RelevantPart}\n", + "[INFO] [1712349617.872639]: Subclasses: []\n", + "[INFO] [1712349617.872933]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.873423]: Instances: []\n", + "[INFO] [1712349617.873692]: Direct Instances: []\n", + "[INFO] [1712349617.873943]: Inverse Restrictions: []\n", + "[INFO] [1712349617.874178]: -------------------\n", + "[INFO] [1712349617.874408]: SOMA.Remembering \n", + "[INFO] [1712349617.874637]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712349617.874880]: Ancestors: {SOMA.Remembering, owl.Thing}\n", + "[INFO] [1712349617.875118]: Subclasses: []\n", + "[INFO] [1712349617.875399]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.875895]: Instances: []\n", + "[INFO] [1712349617.876152]: Direct Instances: []\n", + "[INFO] [1712349617.876395]: Inverse Restrictions: []\n", + "[INFO] [1712349617.876708]: -------------------\n", + "[INFO] [1712349617.876959]: SOMA.Retrospecting \n", + "[INFO] [1712349617.877205]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712349617.877453]: Ancestors: {owl.Thing, SOMA.Retrospecting, SOMA.InformationAcquisition}\n", + "[INFO] [1712349617.877690]: Subclasses: []\n", + "[INFO] [1712349617.877977]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.878473]: Instances: []\n", + "[INFO] [1712349617.878734]: Direct Instances: []\n", + "[INFO] [1712349617.879025]: Inverse Restrictions: []\n", + "[INFO] [1712349617.879263]: -------------------\n", + "[INFO] [1712349617.879491]: SOMA.RemovedObject \n", + "[INFO] [1712349617.879721]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712349617.879973]: Ancestors: {SOMA.Patient, SOMA.ExcludedObject, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.RemovedObject, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.880214]: Subclasses: []\n", + "[INFO] [1712349617.880499]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.880996]: Instances: []\n", + "[INFO] [1712349617.881253]: Direct Instances: []\n", + "[INFO] [1712349617.881503]: Inverse Restrictions: []\n", + "[INFO] [1712349617.881767]: -------------------\n", + "[INFO] [1712349617.882015]: SOMA.Replanning \n", + "[INFO] [1712349617.882262]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712349617.882510]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Planning, SOMA.Replanning, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.882751]: Subclasses: []\n", + "[INFO] [1712349617.883029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.883526]: Instances: []\n", + "[INFO] [1712349617.883788]: Direct Instances: []\n", + "[INFO] [1712349617.884034]: Inverse Restrictions: []\n", + "[INFO] [1712349617.884271]: -------------------\n", + "[INFO] [1712349617.884504]: SOMA.RevoluteJoint \n", + "[INFO] [1712349617.884753]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712349617.885017]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, SOMA.RevoluteJoint, DUL.PhysicalObject}\n", + "[INFO] [1712349617.885258]: Subclasses: []\n", + "[INFO] [1712349617.885552]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", + "[INFO] [1712349617.886050]: Instances: []\n", + "[INFO] [1712349617.886321]: Direct Instances: []\n", + "[INFO] [1712349617.886573]: Inverse Restrictions: []\n", + "[INFO] [1712349617.886809]: -------------------\n", + "[INFO] [1712349617.887041]: SOMA.Surface \n", + "[INFO] [1712349617.887281]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712349617.887527]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", + "[INFO] [1712349617.887773]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712349617.888051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.888556]: Instances: []\n", + "[INFO] [1712349617.888821]: Direct Instances: []\n", + "[INFO] [1712349617.889067]: Inverse Restrictions: []\n", + "[INFO] [1712349617.889300]: -------------------\n", + "[INFO] [1712349617.889535]: SOMA.Rubbing \n", + "[INFO] [1712349617.889784]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712349617.890031]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Rubbing, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", + "[INFO] [1712349617.890271]: Subclasses: []\n", + "[INFO] [1712349617.890548]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.891041]: Instances: []\n", + "[INFO] [1712349617.891300]: Direct Instances: []\n", + "[INFO] [1712349617.891545]: Inverse Restrictions: []\n", + "[INFO] [1712349617.891776]: -------------------\n", + "[INFO] [1712349617.892018]: SOMA.Scene \n", + "[INFO] [1712349617.892260]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712349617.892495]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Scene}\n", + "[INFO] [1712349617.892726]: Subclasses: []\n", + "[INFO] [1712349617.893025]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.includesEvent, DUL.satisfies]\n", + "[INFO] [1712349617.893507]: Instances: []\n", + "[INFO] [1712349617.893764]: Direct Instances: []\n", + "[INFO] [1712349617.894051]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712349617.894313]: -------------------\n", + "[INFO] [1712349617.894559]: SOMA.SelectedObject \n", + "[INFO] [1712349617.894796]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712349617.895035]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.SelectedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.895270]: Subclasses: []\n", + "[INFO] [1712349617.895562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.896051]: Instances: []\n", + "[INFO] [1712349617.896299]: Direct Instances: []\n", + "[INFO] [1712349617.896588]: Inverse Restrictions: []\n", + "[INFO] [1712349617.896843]: -------------------\n", + "[INFO] [1712349617.897109]: SOMA.Selecting \n", + "[INFO] [1712349617.897380]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712349617.897627]: Ancestors: {SOMA.InformationAcquisition, SOMA.Selecting, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.897862]: Subclasses: []\n", + "[INFO] [1712349617.898144]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.898644]: Instances: []\n", + "[INFO] [1712349617.898902]: Direct Instances: []\n", + "[INFO] [1712349617.899145]: Inverse Restrictions: []\n", + "[INFO] [1712349617.899388]: -------------------\n", + "[INFO] [1712349617.899633]: SOMA.SelectingItem \n", + "[INFO] [1712349617.899893]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712349617.900138]: Ancestors: {SOMA.InformationAcquisition, SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.900389]: Subclasses: []\n", + "[INFO] [1712349617.900683]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712349617.901188]: Instances: []\n", + "[INFO] [1712349617.901462]: Direct Instances: []\n", + "[INFO] [1712349617.901711]: Inverse Restrictions: []\n", + "[INFO] [1712349617.901946]: -------------------\n", + "[INFO] [1712349617.902179]: SOMA.SelfReflection \n", + "[INFO] [1712349617.902419]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712349617.902673]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.SelfReflection, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.MetacognitiveControlling}\n", + "[INFO] [1712349617.902913]: Subclasses: []\n", + "[INFO] [1712349617.903196]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.903690]: Instances: []\n", + "[INFO] [1712349617.903962]: Direct Instances: []\n", + "[INFO] [1712349617.904221]: Inverse Restrictions: []\n", + "[INFO] [1712349617.904461]: -------------------\n", + "[INFO] [1712349617.904692]: SOMA.Serving \n", + "[INFO] [1712349617.904955]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712349617.905242]: Ancestors: {SOMA.Delivering, SOMA.PhysicalTask, DUL.Task, SOMA.Serving, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712349617.905491]: Subclasses: []\n", + "[INFO] [1712349617.905786]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.906281]: Instances: []\n", + "[INFO] [1712349617.906554]: Direct Instances: []\n", + "[INFO] [1712349617.906805]: Inverse Restrictions: []\n", + "[INFO] [1712349617.907040]: -------------------\n", + "[INFO] [1712349617.907290]: SOMA.SettingGripper \n", + "[INFO] [1712349617.907530]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712349617.907785]: Ancestors: {SOMA.SettingGripper, SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.908023]: Subclasses: []\n", + "[INFO] [1712349617.908303]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.908794]: Instances: []\n", + "[INFO] [1712349617.909055]: Direct Instances: []\n", + "[INFO] [1712349617.909301]: Inverse Restrictions: []\n", + "[INFO] [1712349617.909535]: -------------------\n", + "[INFO] [1712349617.909771]: SOMA.6DPose \n", + "[INFO] [1712349617.910003]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712349617.910258]: Ancestors: {SOMA.6DPose, DUL.SpaceRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.910503]: Subclasses: []\n", + "[INFO] [1712349617.910790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", + "[INFO] [1712349617.911264]: Instances: []\n", + "[INFO] [1712349617.911534]: Direct Instances: []\n", + "[INFO] [1712349617.911825]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712349617.912068]: -------------------\n", + "[INFO] [1712349617.912306]: SOMA.Sharpness \n", + "[INFO] [1712349617.912536]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349617.912778]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic, SOMA.Sharpness}\n", + "[INFO] [1712349617.913032]: Subclasses: []\n", + "[INFO] [1712349617.913328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.913807]: Instances: []\n", + "[INFO] [1712349617.914057]: Direct Instances: []\n", + "[INFO] [1712349617.914309]: Inverse Restrictions: []\n", + "[INFO] [1712349617.914544]: -------------------\n", + "[INFO] [1712349617.914781]: SOMA.Simulating \n", + "[INFO] [1712349617.915007]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712349617.915244]: Ancestors: {SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing, SOMA.Simulating, SOMA.DerivingInformation}\n", + "[INFO] [1712349617.915493]: Subclasses: []\n", + "[INFO] [1712349617.915776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.916249]: Instances: []\n", + "[INFO] [1712349617.916515]: Direct Instances: []\n", + "[INFO] [1712349617.916763]: Inverse Restrictions: []\n", + "[INFO] [1712349617.917006]: -------------------\n", + "[INFO] [1712349617.917239]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712349617.917470]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712349617.917721]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.Simulation_Reasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349617.917968]: Subclasses: []\n", + "[INFO] [1712349617.918255]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.918731]: Instances: []\n", + "[INFO] [1712349617.919001]: Direct Instances: []\n", + "[INFO] [1712349617.919254]: Inverse Restrictions: []\n", + "[INFO] [1712349617.919491]: -------------------\n", + "[INFO] [1712349617.919730]: SOMA.Size \n", + "[INFO] [1712349617.919961]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712349617.920212]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic, SOMA.Size}\n", + "[INFO] [1712349617.920452]: Subclasses: []\n", + "[INFO] [1712349617.920733]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.921233]: Instances: []\n", + "[INFO] [1712349617.921499]: Direct Instances: []\n", + "[INFO] [1712349617.921743]: Inverse Restrictions: []\n", + "[INFO] [1712349617.921976]: -------------------\n", + "[INFO] [1712349617.922209]: SOMA.Slicing \n", + "[INFO] [1712349617.922451]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712349617.922703]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, SOMA.Slicing, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.922950]: Subclasses: []\n", + "[INFO] [1712349617.923231]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.923726]: Instances: []\n", + "[INFO] [1712349617.923995]: Direct Instances: []\n", + "[INFO] [1712349617.924242]: Inverse Restrictions: []\n", + "[INFO] [1712349617.924476]: -------------------\n", + "[INFO] [1712349617.924707]: SOMA.Sluggishness \n", + "[INFO] [1712349617.925104]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712349617.925488]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, SOMA.Sluggishness, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.925865]: Subclasses: []\n", + "[INFO] [1712349617.926280]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.926882]: Instances: []\n", + "[INFO] [1712349617.927171]: Direct Instances: []\n", + "[INFO] [1712349617.927435]: Inverse Restrictions: []\n", + "[INFO] [1712349617.927680]: -------------------\n", + "[INFO] [1712349617.927921]: SOMA.SocialState \n", + "[INFO] [1712349617.928164]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712349617.928409]: Ancestors: {SOMA.SocialState, DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", + "[INFO] [1712349617.928662]: Subclasses: []\n", + "[INFO] [1712349617.928965]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712349617.929462]: Instances: []\n", + "[INFO] [1712349617.929735]: Direct Instances: []\n", + "[INFO] [1712349617.929988]: Inverse Restrictions: []\n", + "[INFO] [1712349617.930224]: -------------------\n", + "[INFO] [1712349617.930455]: SOMA.Software_Configuration \n", + "[INFO] [1712349617.930703]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712349617.930951]: Ancestors: {DUL.SocialObject, DUL.Configuration, DUL.Object, DUL.Collection, DUL.Entity, owl.Thing, SOMA.Software_Configuration}\n", + "[INFO] [1712349617.931185]: Subclasses: []\n", + "[INFO] [1712349617.931469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.isDescribedBy]\n", + "[INFO] [1712349617.931960]: Instances: []\n", + "[INFO] [1712349617.932219]: Direct Instances: []\n", + "[INFO] [1712349617.932556]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712349617.932796]: -------------------\n", + "[INFO] [1712349617.933036]: SOMA.SoftwareLibrary \n", + "[INFO] [1712349617.933279]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712349617.933528]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.SoftwareLibrary, SOMA.Software}\n", + "[INFO] [1712349617.933765]: Subclasses: []\n", + "[INFO] [1712349617.934044]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712349617.934522]: Instances: []\n", + "[INFO] [1712349617.934801]: Direct Instances: []\n", + "[INFO] [1712349617.935056]: Inverse Restrictions: []\n", + "[INFO] [1712349617.935296]: -------------------\n", + "[INFO] [1712349617.935533]: SOMA.SourceMaterialRole \n", + "[INFO] [1712349617.935771]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712349617.936016]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResourceRole, SOMA.SourceMaterialRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.936269]: Subclasses: []\n", + "[INFO] [1712349617.936563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.937042]: Instances: []\n", + "[INFO] [1712349617.937322]: Direct Instances: []\n", + "[INFO] [1712349617.937573]: Inverse Restrictions: []\n", + "[INFO] [1712349617.937812]: -------------------\n", + "[INFO] [1712349617.938046]: SOMA.SphereShape \n", + "[INFO] [1712349617.938290]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712349617.938533]: Ancestors: {SOMA.SphereShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", + "[INFO] [1712349617.938772]: Subclasses: []\n", + "[INFO] [1712349617.939066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712349617.939568]: Instances: []\n", + "[INFO] [1712349617.939830]: Direct Instances: []\n", + "[INFO] [1712349617.940077]: Inverse Restrictions: []\n", + "[INFO] [1712349617.940309]: -------------------\n", + "[INFO] [1712349617.940541]: SOMA.Standing \n", + "[INFO] [1712349617.940777]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712349617.941037]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.Standing}\n", + "[INFO] [1712349617.941281]: Subclasses: []\n", + "[INFO] [1712349617.941562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.942035]: Instances: []\n", + "[INFO] [1712349617.942303]: Direct Instances: []\n", + "[INFO] [1712349617.942550]: Inverse Restrictions: []\n", + "[INFO] [1712349617.942783]: -------------------\n", + "[INFO] [1712349617.943014]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712349617.943253]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712349617.943501]: Ancestors: {SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.StaticFrictionAttribute, owl.Thing}\n", + "[INFO] [1712349617.943743]: Subclasses: []\n", + "[INFO] [1712349617.944028]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.944515]: Instances: []\n", + "[INFO] [1712349617.944783]: Direct Instances: []\n", + "[INFO] [1712349617.945036]: Inverse Restrictions: []\n", + "[INFO] [1712349617.945271]: -------------------\n", + "[INFO] [1712349617.945508]: SOMA.Status \n", + "[INFO] [1712349617.945752]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712349617.945997]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, SOMA.Status, owl.Thing}\n", + "[INFO] [1712349617.946234]: Subclasses: []\n", + "[INFO] [1712349617.946514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.947008]: Instances: []\n", + "[INFO] [1712349617.947269]: Direct Instances: []\n", + "[INFO] [1712349617.947539]: Inverse Restrictions: []\n", + "[INFO] [1712349617.947776]: -------------------\n", + "[INFO] [1712349617.948012]: SOMA.StatusFailure \n", + "[INFO] [1712349617.948253]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349617.948498]: Ancestors: {DUL.Region, DUL.Entity, SOMA.StatusFailure, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.948735]: Subclasses: []\n", + "[INFO] [1712349617.949020]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.949533]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712349617.949804]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712349617.950069]: Inverse Restrictions: []\n", + "[INFO] [1712349617.950303]: -------------------\n", + "[INFO] [1712349617.950531]: SOMA.StimulusRole \n", + "[INFO] [1712349617.950757]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712349617.951019]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.StimulusRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.951268]: Subclasses: []\n", + "[INFO] [1712349617.951565]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.952046]: Instances: []\n", + "[INFO] [1712349617.952298]: Direct Instances: []\n", + "[INFO] [1712349617.952538]: Inverse Restrictions: []\n", + "[INFO] [1712349617.952766]: -------------------\n", + "[INFO] [1712349617.953002]: SOMA.Stirring \n", + "[INFO] [1712349617.953262]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712349617.953523]: Ancestors: {SOMA.Mixing, DUL.Task, SOMA.Stirring, SOMA.PhysicalTask, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712349617.953766]: Subclasses: []\n", + "[INFO] [1712349617.954049]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712349617.954537]: Instances: []\n", + "[INFO] [1712349617.954802]: Direct Instances: []\n", + "[INFO] [1712349617.955047]: Inverse Restrictions: []\n", + "[INFO] [1712349617.955280]: -------------------\n", + "[INFO] [1712349617.955512]: SOMA.Storage \n", + "[INFO] [1712349617.955754]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712349617.955999]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Storage, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.956235]: Subclasses: []\n", + "[INFO] [1712349617.956516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.957047]: Instances: []\n", + "[INFO] [1712349617.957385]: Direct Instances: []\n", + "[INFO] [1712349617.957741]: Inverse Restrictions: []\n", + "[INFO] [1712349617.958022]: -------------------\n", + "[INFO] [1712349617.958284]: SOMA.StructuralDesign \n", + "[INFO] [1712349617.958534]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712349617.958790]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.StructuralDesign, owl.Thing}\n", + "[INFO] [1712349617.959056]: Subclasses: []\n", + "[INFO] [1712349617.959358]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.959844]: Instances: []\n", + "[INFO] [1712349617.960101]: Direct Instances: []\n", + "[INFO] [1712349617.960355]: Inverse Restrictions: []\n", + "[INFO] [1712349617.960603]: -------------------\n", + "[INFO] [1712349617.960846]: SOMA.TaskInvocation \n", + "[INFO] [1712349617.961092]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712349617.961332]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.TaskInvocation, DUL.Workflow, DUL.Plan, owl.Thing}\n", + "[INFO] [1712349617.961576]: Subclasses: []\n", + "[INFO] [1712349617.961880]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesTask, rdf-schema.label]\n", + "[INFO] [1712349617.962364]: Instances: []\n", + "[INFO] [1712349617.962617]: Direct Instances: []\n", + "[INFO] [1712349617.962921]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712349617.963174]: -------------------\n", + "[INFO] [1712349617.963415]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712349617.963646]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712349617.963889]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.964129]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712349617.964423]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.964915]: Instances: []\n", + "[INFO] [1712349617.965170]: Direct Instances: []\n", + "[INFO] [1712349617.965416]: Inverse Restrictions: []\n", + "[INFO] [1712349617.966004]: -------------------\n", + "[INFO] [1712349617.966407]: SOMA.Successfulness \n", + "[INFO] [1712349617.966764]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712349617.967118]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, SOMA.Successfulness, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349617.967473]: Subclasses: []\n", + "[INFO] [1712349617.967882]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.968471]: Instances: []\n", + "[INFO] [1712349617.968836]: Direct Instances: []\n", + "[INFO] [1712349617.969184]: Inverse Restrictions: []\n", + "[INFO] [1712349617.969521]: -------------------\n", + "[INFO] [1712349617.969877]: SOMA.SupportState \n", + "[INFO] [1712349617.970234]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712349617.970582]: Ancestors: {SOMA.SupportState, SOMA.StateType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.FunctionalControl, owl.Thing}\n", + "[INFO] [1712349617.970919]: Subclasses: []\n", + "[INFO] [1712349617.971300]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", + "[INFO] [1712349617.971893]: Instances: []\n", + "[INFO] [1712349617.972268]: Direct Instances: []\n", + "[INFO] [1712349617.972615]: Inverse Restrictions: []\n", + "[INFO] [1712349617.972954]: -------------------\n", + "[INFO] [1712349617.973279]: SOMA.Supporter \n", + "[INFO] [1712349617.973608]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712349617.973959]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, SOMA.Supporter, DUL.Role}\n", + "[INFO] [1712349617.974295]: Subclasses: []\n", + "[INFO] [1712349617.974669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.975257]: Instances: []\n", + "[INFO] [1712349617.975611]: Direct Instances: []\n", + "[INFO] [1712349617.976029]: Inverse Restrictions: []\n", + "[INFO] [1712349617.976364]: -------------------\n", + "[INFO] [1712349617.976701]: SOMA.SupportTheory \n", + "[INFO] [1712349617.977032]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712349617.977381]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SupportTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712349617.977707]: Subclasses: []\n", + "[INFO] [1712349617.978090]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.978660]: Instances: []\n", + "[INFO] [1712349617.979002]: Direct Instances: []\n", + "[INFO] [1712349617.979332]: Inverse Restrictions: []\n", + "[INFO] [1712349617.979649]: -------------------\n", + "[INFO] [1712349617.979984]: SOMA.SupportedObject \n", + "[INFO] [1712349617.980311]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712349617.980643]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, SOMA.SupportedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712349617.981053]: Subclasses: []\n", + "[INFO] [1712349617.981434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.981956]: Instances: []\n", + "[INFO] [1712349617.982235]: Direct Instances: []\n", + "[INFO] [1712349617.982510]: Inverse Restrictions: []\n", + "[INFO] [1712349617.982777]: -------------------\n", + "[INFO] [1712349617.983032]: SOMA.SymbolicReasoner \n", + "[INFO] [1712349617.983273]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712349617.983524]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.SymbolicReasoner, DUL.Entity, owl.Thing, SOMA.Reasoner, DUL.Role}\n", + "[INFO] [1712349617.983764]: Subclasses: []\n", + "[INFO] [1712349617.984064]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.984551]: Instances: []\n", + "[INFO] [1712349617.984831]: Direct Instances: []\n", + "[INFO] [1712349617.985090]: Inverse Restrictions: []\n", + "[INFO] [1712349617.985343]: -------------------\n", + "[INFO] [1712349617.985585]: SOMA.Tapping \n", + "[INFO] [1712349617.985821]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712349617.986068]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion, SOMA.Tapping}\n", + "[INFO] [1712349617.986336]: Subclasses: []\n", + "[INFO] [1712349617.986632]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.987117]: Instances: []\n", + "[INFO] [1712349617.987371]: Direct Instances: []\n", + "[INFO] [1712349617.987613]: Inverse Restrictions: []\n", + "[INFO] [1712349617.987844]: -------------------\n", + "[INFO] [1712349617.988076]: SOMA.Taxis \n", + "[INFO] [1712349617.988316]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712349617.988568]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.Taxis}\n", + "[INFO] [1712349617.988807]: Subclasses: []\n", + "[INFO] [1712349617.989088]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.989568]: Instances: []\n", + "[INFO] [1712349617.989841]: Direct Instances: []\n", + "[INFO] [1712349617.990092]: Inverse Restrictions: []\n", + "[INFO] [1712349617.990328]: -------------------\n", + "[INFO] [1712349617.990561]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712349617.990796]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712349617.991041]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349617.991298]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712349617.991593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", + "[INFO] [1712349617.992102]: Instances: []\n", + "[INFO] [1712349617.992383]: Direct Instances: []\n", + "[INFO] [1712349617.992641]: Inverse Restrictions: []\n", + "[INFO] [1712349617.992884]: -------------------\n", + "[INFO] [1712349617.993124]: SOMA.Temperature \n", + "[INFO] [1712349617.993365]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712349617.993637]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Temperature, SOMA.Intrinsic}\n", + "[INFO] [1712349617.993886]: Subclasses: []\n", + "[INFO] [1712349617.994179]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349617.994664]: Instances: []\n", + "[INFO] [1712349617.994932]: Direct Instances: []\n", + "[INFO] [1712349617.995229]: Inverse Restrictions: []\n", + "[INFO] [1712349617.995473]: -------------------\n", + "[INFO] [1712349617.995708]: SOMA.TemperatureRegion \n", + "[INFO] [1712349617.995938]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712349617.996180]: Ancestors: {SOMA.TemperatureRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712349617.996430]: Subclasses: []\n", + "[INFO] [1712349617.996718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349617.997303]: Instances: []\n", + "[INFO] [1712349617.997555]: Direct Instances: []\n", + "[INFO] [1712349617.997861]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712349617.998112]: -------------------\n", + "[INFO] [1712349617.998358]: SOMA.Tempering \n", + "[INFO] [1712349617.998601]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712349617.998849]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Tempering, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", + "[INFO] [1712349617.999107]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712349617.999442]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349617.999942]: Instances: []\n", + "[INFO] [1712349618.000197]: Direct Instances: []\n", + "[INFO] [1712349618.000453]: Inverse Restrictions: []\n", + "[INFO] [1712349618.000695]: -------------------\n", + "[INFO] [1712349618.000944]: SOMA.ThinkAloud \n", + "[INFO] [1712349618.001184]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712349618.001430]: Ancestors: {SOMA.ThinkAloud, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing, SOMA.CommunicationReport}\n", + "[INFO] [1712349618.001683]: Subclasses: []\n", + "[INFO] [1712349618.001972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.002454]: Instances: []\n", + "[INFO] [1712349618.002723]: Direct Instances: []\n", + "[INFO] [1712349618.002975]: Inverse Restrictions: []\n", + "[INFO] [1712349618.003212]: -------------------\n", + "[INFO] [1712349618.003445]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712349618.003679]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349618.003926]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, SOMA.ThinkAloudActionTopic, DUL.Role}\n", + "[INFO] [1712349618.004180]: Subclasses: []\n", + "[INFO] [1712349618.004468]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.004975]: Instances: []\n", + "[INFO] [1712349618.005353]: Direct Instances: []\n", + "[INFO] [1712349618.005651]: Inverse Restrictions: []\n", + "[INFO] [1712349618.005913]: -------------------\n", + "[INFO] [1712349618.006168]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712349618.006408]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712349618.006661]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349618.006919]: Subclasses: []\n", + "[INFO] [1712349618.007214]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.007700]: Instances: []\n", + "[INFO] [1712349618.007954]: Direct Instances: []\n", + "[INFO] [1712349618.008204]: Inverse Restrictions: []\n", + "[INFO] [1712349618.008453]: -------------------\n", + "[INFO] [1712349618.008693]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712349618.008932]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349618.009179]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349618.009437]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712349618.009728]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.010225]: Instances: []\n", + "[INFO] [1712349618.010504]: Direct Instances: []\n", + "[INFO] [1712349618.010763]: Inverse Restrictions: []\n", + "[INFO] [1712349618.011008]: -------------------\n", + "[INFO] [1712349618.011245]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712349618.011480]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349618.011732]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349618.011971]: Subclasses: []\n", + "[INFO] [1712349618.012265]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.012747]: Instances: []\n", + "[INFO] [1712349618.013006]: Direct Instances: []\n", + "[INFO] [1712349618.013252]: Inverse Restrictions: []\n", + "[INFO] [1712349618.013481]: -------------------\n", + "[INFO] [1712349618.013709]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712349618.013943]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349618.014186]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudOpinionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349618.014428]: Subclasses: []\n", + "[INFO] [1712349618.014712]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.015203]: Instances: []\n", + "[INFO] [1712349618.015471]: Direct Instances: []\n", + "[INFO] [1712349618.015716]: Inverse Restrictions: []\n", + "[INFO] [1712349618.015982]: -------------------\n", + "[INFO] [1712349618.016215]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712349618.016443]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349618.016693]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudPerceptionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349618.016940]: Subclasses: []\n", + "[INFO] [1712349618.017225]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.017702]: Instances: []\n", + "[INFO] [1712349618.017982]: Direct Instances: []\n", + "[INFO] [1712349618.018253]: Inverse Restrictions: []\n", + "[INFO] [1712349618.018493]: -------------------\n", + "[INFO] [1712349618.018726]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712349618.018951]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712349618.019202]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.ThinkAloudPlanTopic, SOMA.CommunicationTopic, DUL.Object, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349618.019444]: Subclasses: []\n", + "[INFO] [1712349618.019729]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.020212]: Instances: []\n", + "[INFO] [1712349618.020480]: Direct Instances: []\n", + "[INFO] [1712349618.020731]: Inverse Restrictions: []\n", + "[INFO] [1712349618.020972]: -------------------\n", + "[INFO] [1712349618.021205]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712349618.021436]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712349618.021680]: Ancestors: {SOMA.ThinkAloudSceneKnowledgeTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", + "[INFO] [1712349618.021935]: Subclasses: []\n", + "[INFO] [1712349618.022225]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.022702]: Instances: []\n", + "[INFO] [1712349618.022963]: Direct Instances: []\n", + "[INFO] [1712349618.023205]: Inverse Restrictions: []\n", + "[INFO] [1712349618.023452]: -------------------\n", + "[INFO] [1712349618.023689]: SOMA.Threshold \n", + "[INFO] [1712349618.023923]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712349618.024163]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, owl.Thing, SOMA.Threshold}\n", + "[INFO] [1712349618.024404]: Subclasses: []\n", + "[INFO] [1712349618.024693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349618.025191]: Instances: []\n", + "[INFO] [1712349618.025452]: Direct Instances: []\n", + "[INFO] [1712349618.025692]: Inverse Restrictions: []\n", + "[INFO] [1712349618.025935]: -------------------\n", + "[INFO] [1712349618.026174]: SOMA.Throwing \n", + "[INFO] [1712349618.026411]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712349618.026657]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Throwing, SOMA.Actuating}\n", + "[INFO] [1712349618.026897]: Subclasses: []\n", + "[INFO] [1712349618.027178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349618.027662]: Instances: []\n", + "[INFO] [1712349618.027918]: Direct Instances: []\n", + "[INFO] [1712349618.028159]: Inverse Restrictions: []\n", + "[INFO] [1712349618.028389]: -------------------\n", + "[INFO] [1712349618.028622]: SOMA.TimeRole \n", + "[INFO] [1712349618.028870]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712349618.029124]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.TimeRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712349618.029367]: Subclasses: []\n", + "[INFO] [1712349618.029649]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.030141]: Instances: []\n", + "[INFO] [1712349618.030404]: Direct Instances: []\n", + "[INFO] [1712349618.030650]: Inverse Restrictions: []\n", + "[INFO] [1712349618.030885]: -------------------\n", + "[INFO] [1712349618.031116]: SOMA.Transporting \n", + "[INFO] [1712349618.031359]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712349618.031608]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Transporting, owl.Thing}\n", + "[INFO] [1712349618.031845]: Subclasses: []\n", + "[INFO] [1712349618.032123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349618.032641]: Instances: []\n", + "[INFO] [1712349618.032915]: Direct Instances: []\n", + "[INFO] [1712349618.033165]: Inverse Restrictions: []\n", + "[INFO] [1712349618.033398]: -------------------\n", + "[INFO] [1712349618.033630]: SOMA.Triplestore \n", + "[INFO] [1712349618.033865]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712349618.034123]: Ancestors: {SOMA.SoftwareRole, SOMA.GraphDatabase, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.Triplestore, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", + "[INFO] [1712349618.034378]: Subclasses: []\n", + "[INFO] [1712349618.034666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.035138]: Instances: []\n", + "[INFO] [1712349618.035412]: Direct Instances: []\n", + "[INFO] [1712349618.035664]: Inverse Restrictions: []\n", + "[INFO] [1712349618.035905]: -------------------\n", + "[INFO] [1712349618.036140]: SOMA.Turning \n", + "[INFO] [1712349618.036371]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712349618.036615]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.Turning, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", + "[INFO] [1712349618.036871]: Subclasses: []\n", + "[INFO] [1712349618.037162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349618.037641]: Instances: []\n", + "[INFO] [1712349618.037906]: Direct Instances: []\n", + "[INFO] [1712349618.038156]: Inverse Restrictions: []\n", + "[INFO] [1712349618.038393]: -------------------\n", + "[INFO] [1712349618.038627]: SOMA.UnavailableSoftware \n", + "[INFO] [1712349618.038854]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712349618.039097]: Ancestors: {DUL.Description, SOMA.UnavailableSoftware, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", + "[INFO] [1712349618.039348]: Subclasses: []\n", + "[INFO] [1712349618.039638]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.040114]: Instances: []\n", + "[INFO] [1712349618.040390]: Direct Instances: []\n", + "[INFO] [1712349618.040645]: Inverse Restrictions: []\n", + "[INFO] [1712349618.040890]: -------------------\n", + "[INFO] [1712349618.041126]: SOMA.Unsuccessfulness \n", + "[INFO] [1712349618.041359]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712349618.041613]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712349618.041863]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712349618.042142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712349618.042619]: Instances: []\n", + "[INFO] [1712349618.042882]: Direct Instances: []\n", + "[INFO] [1712349618.043131]: Inverse Restrictions: []\n", + "[INFO] [1712349618.043707]: -------------------\n", + "[INFO] [1712349618.044090]: SOMA.VideoData \n", + "[INFO] [1712349618.044429]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712349618.044693]: Ancestors: {DUL.InformationObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.VideoData}\n", + "[INFO] [1712349618.045140]: Subclasses: []\n", + "[INFO] [1712349618.045656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712349618.046460]: Instances: []\n", + "[INFO] [1712349618.046862]: Direct Instances: []\n", + "[INFO] [1712349618.047250]: Inverse Restrictions: []\n", + "[INFO] [1712349618.047618]: -------------------\n", + "[INFO] [1712349618.047994]: SOMA.3DPosition \n", + "[INFO] [1712349618.048376]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712349618.048761]: Ancestors: {DUL.SpaceRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.3DPosition}\n", + "[INFO] [1712349618.049148]: Subclasses: []\n", + "[INFO] [1712349618.049616]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", + "[INFO] [1712349618.050390]: Instances: []\n", + "[INFO] [1712349618.050772]: Direct Instances: []\n", + "[INFO] [1712349618.051147]: Inverse Restrictions: []\n" + ] + }, + { + "data": { + "text/plain": [ + "[SOMA.Affordance,\n", + " SOMA.Disposition,\n", + " SOMA.Setpoint,\n", + " SOMA.Answer,\n", + " SOMA.Message,\n", + " SOMA.ProcessType,\n", + " SOMA.OrderedElement,\n", + " SOMA.System,\n", + " SOMA.Binding,\n", + " SOMA.Joint,\n", + " SOMA.Color,\n", + " SOMA.ExecutionStateRegion,\n", + " SOMA.Feature,\n", + " SOMA.FrictionAttribute,\n", + " SOMA.SituationTransition,\n", + " SOMA.NonmanifestedSituation,\n", + " SOMA.JointLimit,\n", + " SOMA.JointState,\n", + " SOMA.Localization,\n", + " SOMA.MassAttribute,\n", + " SOMA.NetForce,\n", + " SOMA.Succedence,\n", + " SOMA.Preference,\n", + " SOMA.Shape,\n", + " SOMA.ShapeRegion,\n", + " SOMA.SoftwareInstance,\n", + " SOMA.StateType,\n", + " SOMA.PhysicalEffector,\n", + " SOMA.QueryingTask,\n", + " SOMA.Order,\n", + " SOMA.State,\n", + " SOMA.Transient,\n", + " SOMA.ColorRegion,\n", + " SOMA.ForceAttribute,\n", + " SOMA.API_Specification,\n", + " SOMA.InterfaceSpecification,\n", + " SOMA.AbductiveReasoning,\n", + " SOMA.Reasoning,\n", + " SOMA.Accessor,\n", + " SOMA.Instrument,\n", + " SOMA.Accident,\n", + " SOMA.ActionExecutionPlan,\n", + " SOMA.Actuating,\n", + " SOMA.PhysicalTask,\n", + " SOMA.AestheticDesign,\n", + " SOMA.AffordsBeingSitOn,\n", + " SOMA.CanBeSatOn,\n", + " SOMA.SittingDestination,\n", + " SOMA.CanSit,\n", + " SOMA.AgentRole,\n", + " SOMA.Sitting,\n", + " SOMA.CausativeRole,\n", + " SOMA.Agonist,\n", + " SOMA.Patient,\n", + " SOMA.Algorithm,\n", + " SOMA.Alteration,\n", + " SOMA.AlterativeInteraction,\n", + " SOMA.ForceInteraction,\n", + " SOMA.PreservativeInteraction,\n", + " SOMA.AlteredObject,\n", + " SOMA.Amateurish,\n", + " SOMA.AnsweringTask,\n", + " SOMA.CommandingTask,\n", + " SOMA.IllocutionaryTask,\n", + " SOMA.Antagonist,\n", + " SOMA.Appliance,\n", + " SOMA.Approaching,\n", + " SOMA.Locomotion,\n", + " SOMA.ArchiveFile,\n", + " SOMA.ArchiveText,\n", + " SOMA.Digital_File,\n", + " SOMA.ArchiveFormat,\n", + " SOMA.File_format,\n", + " SOMA.FileConfiguration,\n", + " SOMA.Structured_Text,\n", + " SOMA.AreaSurveying,\n", + " SOMA.Perceiving,\n", + " SOMA.Arm,\n", + " SOMA.Limb,\n", + " SOMA.Armchair,\n", + " SOMA.DesignedChair,\n", + " SOMA.Arranging,\n", + " SOMA.Constructing,\n", + " SOMA.ArtificialAgent,\n", + " SOMA.Assembling,\n", + " SOMA.AssertionTask,\n", + " SOMA.DeclarativeClause,\n", + " SOMA.AssumingArmPose,\n", + " SOMA.AssumingPose,\n", + " SOMA.AttentionShift,\n", + " SOMA.MentalTask,\n", + " SOMA.AvoidedObject,\n", + " SOMA.Avoiding,\n", + " SOMA.Navigating,\n", + " SOMA.BakedGood,\n", + " SOMA.Dish,\n", + " SOMA.Barrier,\n", + " SOMA.Restrictor,\n", + " SOMA.BedsideTable,\n", + " SOMA.Table,\n", + " SOMA.BehavioralDiagnosis,\n", + " SOMA.BeneficiaryRole,\n", + " SOMA.GoalRole,\n", + " SOMA.CounterfactualBinding,\n", + " SOMA.FactualBinding,\n", + " SOMA.RoleFillerBinding,\n", + " SOMA.RoleRoleBinding,\n", + " SOMA.Blade,\n", + " SOMA.DesignedComponent,\n", + " SOMA.Blockage,\n", + " SOMA.BlockedObject,\n", + " SOMA.BodyMovement,\n", + " SOMA.Motion,\n", + " SOMA.Boiling,\n", + " SOMA.Vaporizing,\n", + " SOMA.Bottle,\n", + " SOMA.DesignedContainer,\n", + " SOMA.Bowl,\n", + " SOMA.Crockery,\n", + " SOMA.Box,\n", + " SOMA.BoxShape,\n", + " SOMA.Bread,\n", + " SOMA.BreadKnife,\n", + " SOMA.KitchenKnife,\n", + " SOMA.BreakfastPlate,\n", + " SOMA.Plate,\n", + " SOMA.Building,\n", + " SOMA.Deposition,\n", + " SOMA.CanCut,\n", + " SOMA.Variability,\n", + " SOMA.Cutter,\n", + " SOMA.CutObject,\n", + " SOMA.Capability,\n", + " SOMA.Capacity,\n", + " SOMA.Intrinsic,\n", + " SOMA.Carafe,\n", + " SOMA.Catching,\n", + " SOMA.PickingUp,\n", + " SOMA.CausalEventRole,\n", + " SOMA.EventAdjacentRole,\n", + " SOMA.CausedMotionTheory,\n", + " SOMA.ImageSchemaTheory,\n", + " SOMA.PerformerRole,\n", + " SOMA.SourcePathGoalTheory,\n", + " SOMA.Ceiling,\n", + " SOMA.RoomSurface,\n", + " SOMA.Floor,\n", + " SOMA.Wall,\n", + " SOMA.CeramicCooktop,\n", + " SOMA.ElectricCooktop,\n", + " SOMA.CerealBox,\n", + " SOMA.Channel,\n", + " SOMA.PathRole,\n", + " SOMA.CommunicationTask,\n", + " SOMA.CheckingObjectPresence,\n", + " SOMA.ChemicalProcess,\n", + " SOMA.Choice,\n", + " SOMA.ResultRole,\n", + " SOMA.CircularCylinder,\n", + " SOMA.CylinderShape,\n", + " SOMA.Classifier,\n", + " SOMA.StatisticalReasoner,\n", + " SOMA.ClausalObject,\n", + " SOMA.Phrase,\n", + " SOMA.Clean,\n", + " SOMA.CleanlinessRegion,\n", + " SOMA.Cleaning,\n", + " SOMA.ModifyingPhysicalObject,\n", + " SOMA.Purification,\n", + " SOMA.Cleanliness,\n", + " SOMA.SocialQuality,\n", + " SOMA.Client-Server_Specification,\n", + " SOMA.ClientRole,\n", + " SOMA.ServerRole,\n", + " SOMA.InterfaceComponentRole,\n", + " SOMA.Closing,\n", + " SOMA.Delivering,\n", + " SOMA.Fetching,\n", + " SOMA.Lifting,\n", + " SOMA.Opening,\n", + " SOMA.Pulling,\n", + " SOMA.Pushing,\n", + " SOMA.Squeezing,\n", + " SOMA.ClosingDisposition,\n", + " SOMA.Linkage,\n", + " SOMA.Clumsiness,\n", + " SOMA.CoffeeCarafe,\n", + " SOMA.CoffeeTable,\n", + " SOMA.CognitiveAgent,\n", + " SOMA.SubCognitiveAgent,\n", + " SOMA.CoilCooktop,\n", + " SOMA.Collision,\n", + " SOMA.Extrinsic,\n", + " SOMA.ImperativeClause,\n", + " SOMA.CommitedObject,\n", + " SOMA.ConnectedObject,\n", + " SOMA.CommunicationAction,\n", + " SOMA.LinguisticObject,\n", + " SOMA.CommunicationReport,\n", + " SOMA.Receiver,\n", + " SOMA.Sender,\n", + " SOMA.CommunicationTopic,\n", + " SOMA.ResourceRole,\n", + " SOMA.Compartment,\n", + " SOMA.Composing,\n", + " SOMA.Computer_Language,\n", + " SOMA.FormalLanguage,\n", + " SOMA.Computer_Program,\n", + " SOMA.Programming_Language,\n", + " SOMA.Conclusion,\n", + " SOMA.CreatedObject,\n", + " SOMA.Knowledge,\n", + " SOMA.ConditionalSuccedence,\n", + " SOMA.Configuration,\n", + " SOMA.Connectivity,\n", + " SOMA.ContactState,\n", + " SOMA.Container,\n", + " SOMA.Containment,\n", + " SOMA.IncludedObject,\n", + " SOMA.ContainmentState,\n", + " SOMA.FunctionalControl,\n", + " SOMA.ContainmentTheory,\n", + " SOMA.ControlTheory,\n", + " SOMA.ContinuousJoint,\n", + " SOMA.HingeJoint,\n", + " SOMA.FunctionalSpatialSchemaTheory,\n", + " SOMA.Cooktop,\n", + " SOMA.Countertop,\n", + " SOMA.Cover,\n", + " SOMA.Coverage,\n", + " SOMA.CoveredObject,\n", + " SOMA.CoverageTheory,\n", + " SOMA.CoveringTheory,\n", + " SOMA.ExecutableSchematicTheory,\n", + " SOMA.CrackingTheory,\n", + " SOMA.Creation,\n", + " SOMA.Tableware,\n", + " SOMA.Insertion,\n", + " SOMA.Cup,\n", + " SOMA.DesignedHandle,\n", + " SOMA.Cupboard,\n", + " SOMA.DesignedFurniture,\n", + " SOMA.Rack,\n", + " SOMA.Cutlery,\n", + " SOMA.Cuttability,\n", + " SOMA.Tool,\n", + " SOMA.Cutting,\n", + " SOMA.CuttingTool,\n", + " SOMA.DesignedTool,\n", + " SOMA.Shaping,\n", + " SOMA.Database,\n", + " SOMA.SoftwareRole,\n", + " SOMA.Deciding,\n", + " SOMA.DerivingInformation,\n", + " SOMA.DeductiveReasoning,\n", + " SOMA.Deformation,\n", + " SOMA.ShapedObject,\n", + " SOMA.FluidFlow,\n", + " SOMA.Shifting,\n", + " SOMA.DependentPlace,\n", + " SOMA.Deposit,\n", + " SOMA.DepositedObject,\n", + " SOMA.InformationAcquisition,\n", + " SOMA.Premise,\n", + " SOMA.FunctionalPart,\n", + " SOMA.Graspability,\n", + " SOMA.DesignedSpade,\n", + " SOMA.DessertFork,\n", + " SOMA.Fork,\n", + " SOMA.Destination,\n", + " SOMA.Location,\n", + " SOMA.DestroyedObject,\n", + " SOMA.Destruction,\n", + " SOMA.DetectedObject,\n", + " SOMA.DeviceState,\n", + " SOMA.DeviceStateRange,\n", + " SOMA.DeviceTurnedOff,\n", + " SOMA.DeviceTurnedOn,\n", + " SOMA.DexterityDiagnosis,\n", + " SOMA.Dicing,\n", + " SOMA.DinnerPlate,\n", + " SOMA.DirectedMotion,\n", + " SOMA.UndirectedMotion,\n", + " SOMA.Dirty,\n", + " SOMA.Discourse,\n", + " SOMA.Dishwasher,\n", + " SOMA.DishwasherTab,\n", + " SOMA.Dispenser,\n", + " SOMA.Distancing,\n", + " SOMA.Door,\n", + " SOMA.Drawer,\n", + " SOMA.Dreaming,\n", + " SOMA.Driving,\n", + " SOMA.Flying,\n", + " SOMA.Swimming,\n", + " SOMA.Walking,\n", + " SOMA.Dropping,\n", + " SOMA.Placing,\n", + " SOMA.ESTSchemaTheory,\n", + " SOMA.ExistingObjectRole,\n", + " SOMA.Effort,\n", + " SOMA.EnclosedObject,\n", + " SOMA.Enclosing,\n", + " SOMA.EndEffectorPositioning,\n", + " SOMA.Manipulating,\n", + " SOMA.Episode,\n", + " SOMA.ExcludedObject,\n", + " SOMA.ExecutableFile,\n", + " SOMA.Executable_Code,\n", + " SOMA.ExecutableFormat,\n", + " SOMA.SchematicTheory,\n", + " SOMA.ExecutableSoftware,\n", + " SOMA.Software,\n", + " SOMA.RelationAdjacentRole,\n", + " SOMA.ExperiencerRole,\n", + " SOMA.ExtractedObject,\n", + " SOMA.PhysicalQuality,\n", + " SOMA.FailedAttempt,\n", + " SOMA.FaultySoftware,\n", + " SOMA.SoftwareDiagnosis,\n", + " SOMA.PhysicalAcquiring,\n", + " SOMA.Finger,\n", + " SOMA.Hand,\n", + " SOMA.FixedJoint,\n", + " SOMA.MovableJoint,\n", + " SOMA.Flipping,\n", + " SOMA.FloatingJoint,\n", + " SOMA.Fluid,\n", + " SOMA.MovedObject,\n", + " SOMA.Focusing,\n", + " SOMA.Foolishness,\n", + " SOMA.ForgettingIncorrectInformation,\n", + " SOMA.InformationDismissal,\n", + " SOMA.ForgettingIrrelevantInformation,\n", + " SOMA.Language,\n", + " SOMA.FreezerCompartment,\n", + " SOMA.Item,\n", + " SOMA.FunctionalDesign,\n", + " SOMA.FunctionalDiagnosis,\n", + " SOMA.LocatumRole,\n", + " SOMA.RelatumRole,\n", + " SOMA.GasCooktop,\n", + " SOMA.GetTaskParameter,\n", + " SOMA.Planning,\n", + " SOMA.Glass,\n", + " SOMA.GraphDatabase,\n", + " SOMA.GraphQueryLanguage,\n", + " SOMA.QueryLanguage,\n", + " SOMA.GraspTransfer,\n", + " SOMA.Grasping,\n", + " SOMA.Releasing,\n", + " SOMA.GraspingMotion,\n", + " SOMA.IntermediateGrasp,\n", + " SOMA.PowerGrasp,\n", + " SOMA.PrecisionGrasp,\n", + " SOMA.PrehensileMotion,\n", + " SOMA.ReleasingMotion,\n", + " SOMA.GreenColor,\n", + " SOMA.Gripper,\n", + " SOMA.PrehensileEffector,\n", + " SOMA.HardwareDiagnosis,\n", + " SOMA.HasQualityRegion,\n", + " SOMA.Head,\n", + " SOMA.HeadMovement,\n", + " SOMA.HeadTurning,\n", + " SOMA.Holding,\n", + " SOMA.HostRole,\n", + " SOMA.PluginSpecification,\n", + " SOMA.Hotplate,\n", + " SOMA.Human-readable_Programming_Language,\n", + " SOMA.Source_Code,\n", + " SOMA.HumanActivityRecording,\n", + " SOMA.Imagining,\n", + " SOMA.Impediment,\n", + " SOMA.Obstacle,\n", + " SOMA.RestrictedObject,\n", + " SOMA.StateTransition,\n", + " SOMA.Inability,\n", + " SOMA.IncompatibleSoftware,\n", + " SOMA.InductionCooktop,\n", + " SOMA.InductiveReasoning,\n", + " SOMA.Infeasibility,\n", + " SOMA.InferenceRules,\n", + " SOMA.InformationRetrieval,\n", + " SOMA.InformationStorage,\n", + " SOMA.StoredObject,\n", + " SOMA.InsertedObject,\n", + " SOMA.Instructions,\n", + " SOMA.Interpreting,\n", + " SOMA.InterrogativeClause,\n", + " SOMA.Introspecting,\n", + " SOMA.JamJar,\n", + " SOMA.Jar,\n", + " SOMA.KineticFrictionAttribute,\n", + " SOMA.KinoDynamicData,\n", + " SOMA.Kitchen,\n", + " SOMA.Room,\n", + " SOMA.KitchenCabinet,\n", + " SOMA.Knife,\n", + " SOMA.KitchenUnit,\n", + " SOMA.KnowledgeRepresentationLanguage,\n", + " SOMA.Labeling,\n", + " SOMA.Text,\n", + " SOMA.Leaning,\n", + " SOMA.PosturalMoving,\n", + " SOMA.Learning,\n", + " SOMA.Leg,\n", + " SOMA.Lid,\n", + " SOMA.LimbMotion,\n", + " SOMA.LinkedObject,\n", + " SOMA.LinkageState,\n", + " SOMA.SpatioTemporalRole,\n", + " SOMA.SpatialRelationRole,\n", + " SOMA.LocutionaryAction,\n", + " SOMA.LookingAt,\n", + " SOMA.LookingFor,\n", + " SOMA.Lowering,\n", + " SOMA.PhysicalAction,\n", + " SOMA.Markup_Language,\n", + " SOMA.Masterful,\n", + " SOMA.Material,\n", + " SOMA.MedicalDiagnosis,\n", + " SOMA.Memorizing,\n", + " SOMA.MentalAction,\n", + " SOMA.MeshShape,\n", + " SOMA.MeshShapeData,\n", + " SOMA.MetaCognitionEvaluationTopic,\n", + " SOMA.MetaCognitionTopic,\n", + " SOMA.MetaCognitionMemoryTopic,\n", + " SOMA.MetaCognitionPlanningTopic,\n", + " SOMA.ThinkAloudTopic,\n", + " SOMA.MetacognitiveControlling,\n", + " SOMA.MetacognitiveMonitoring,\n", + " SOMA.MilkBottle,\n", + " SOMA.MilkPack,\n", + " SOMA.Pack,\n", + " SOMA.Mixing,\n", + " SOMA.MixingTheory,\n", + " SOMA.MonitoringJointState,\n", + " SOMA.Proprioceiving,\n", + " SOMA.MovingAway,\n", + " SOMA.MovingTo,\n", + " SOMA.Natural_Language,\n", + " SOMA.Natural_Language_Text,\n", + " SOMA.NutellaJar,\n", + " SOMA.Ontology,\n", + " SOMA.Ontology_Language,\n", + " SOMA.Option,\n", + " SOMA.Singleton,\n", + " SOMA.Orienting,\n", + " SOMA.Positioning,\n", + " SOMA.Origin,\n", + " SOMA.Oven,\n", + " SOMA.TemperingByHeating,\n", + " SOMA.Pan,\n", + " SOMA.Pancake,\n", + " SOMA.PancakeMix,\n", + " SOMA.ParkingArms,\n", + " SOMA.PastaBowl,\n", + " SOMA.PepperShaker,\n", + " SOMA.Shaker,\n", + " SOMA.PhaseTransition,\n", + " SOMA.PhysicalAccessibility,\n", + " SOMA.PhysicalBlockage,\n", + " SOMA.PhysicalExistence,\n", + " SOMA.PhysicalState,\n", + " SOMA.PhysicsProcess,\n", + " SOMA.PlacingTheory,\n", + " SOMA.PlanarJoint,\n", + " SOMA.PluginRole,\n", + " SOMA.Pot,\n", + " SOMA.Pourable,\n", + " SOMA.PouredObject,\n", + " SOMA.Pouring,\n", + " SOMA.PouringInto,\n", + " SOMA.PouringOnto,\n", + " SOMA.Prediction,\n", + " SOMA.Prospecting,\n", + " SOMA.Predilection,\n", + " SOMA.PreferenceOrder,\n", + " SOMA.PreferenceRegion,\n", + " SOMA.PrismaticJoint,\n", + " SOMA.ProcessFlow,\n", + " SOMA.Progression,\n", + " SOMA.Protector,\n", + " SOMA.ProximalTheory,\n", + " SOMA.PushingAway,\n", + " SOMA.PushingDown,\n", + " SOMA.PuttingDown,\n", + " SOMA.QualityTransition,\n", + " SOMA.Query,\n", + " SOMA.QueryAnsweringTask,\n", + " SOMA.QueryEngine,\n", + " SOMA.RaspberryJamJar,\n", + " SOMA.Reaching,\n", + " SOMA.Retracting,\n", + " SOMA.Reasoner,\n", + " SOMA.RecipientRole,\n", + " SOMA.RecordedEpisode,\n", + " SOMA.RedColor,\n", + " SOMA.Refrigerator,\n", + " SOMA.Reification,\n", + " SOMA.RelationalDatabase,\n", + " SOMA.RelationalQueryLanguage,\n", + " SOMA.RelevantPart,\n", + " SOMA.Remembering,\n", + " SOMA.Retrospecting,\n", + " SOMA.RemovedObject,\n", + " SOMA.Replanning,\n", + " SOMA.RevoluteJoint,\n", + " SOMA.Surface,\n", + " SOMA.Rubbing,\n", + " SOMA.SaladBowl,\n", + " SOMA.SaltShaker,\n", + " SOMA.Scene,\n", + " SOMA.SelectedObject,\n", + " SOMA.Selecting,\n", + " SOMA.SelectingItem,\n", + " SOMA.SelfReflection,\n", + " SOMA.Serving,\n", + " SOMA.SettingGripper,\n", + " SOMA.6DPose,\n", + " SOMA.Sharpness,\n", + " SOMA.Simulating,\n", + " SOMA.Simulation_Reasoner,\n", + " SOMA.Sink,\n", + " SOMA.Size,\n", + " SOMA.Slicing,\n", + " SOMA.Sluggishness,\n", + " SOMA.SocialState,\n", + " SOMA.Sofa,\n", + " SOMA.Software_Configuration,\n", + " SOMA.SoftwareLibrary,\n", + " SOMA.SoupPot,\n", + " SOMA.SourceMaterialRole,\n", + " SOMA.Spatula,\n", + " SOMA.SphereShape,\n", + " SOMA.Spoon,\n", + " SOMA.Standing,\n", + " SOMA.StaticFrictionAttribute,\n", + " SOMA.Status,\n", + " SOMA.StatusFailure,\n", + " SOMA.StimulusRole,\n", + " SOMA.Stirring,\n", + " SOMA.Storage,\n", + " SOMA.Stove,\n", + " SOMA.StructuralDesign,\n", + " SOMA.TaskInvocation,\n", + " SOMA.SuccessDiagnosis,\n", + " SOMA.Successfulness,\n", + " SOMA.SugarDispenser,\n", + " SOMA.SupportState,\n", + " SOMA.Supporter,\n", + " SOMA.SupportTheory,\n", + " SOMA.SupportedObject,\n", + " SOMA.SymbolicReasoner,\n", + " SOMA.TableFork,\n", + " SOMA.TableKnife,\n", + " SOMA.TableSpoon,\n", + " SOMA.TeaSpoon,\n", + " SOMA.Tap,\n", + " SOMA.Tapping,\n", + " SOMA.Taxis,\n", + " SOMA.TechnicalDiagnosis,\n", + " SOMA.Temperature,\n", + " SOMA.TemperatureRegion,\n", + " SOMA.Tempering,\n", + " SOMA.TemperingByCooling,\n", + " SOMA.ThinkAloud,\n", + " SOMA.ThinkAloudActionTopic,\n", + " SOMA.ThinkAloudGeneralKnowledgeTopic,\n", + " SOMA.ThinkAloudKnowledgeTopic,\n", + " SOMA.ThinkAloudObstructionTopic,\n", + " SOMA.ThinkAloudOpinionTopic,\n", + " SOMA.ThinkAloudPerceptionTopic,\n", + " SOMA.ThinkAloudPlanTopic,\n", + " SOMA.ThinkAloudSceneKnowledgeTopic,\n", + " SOMA.Threshold,\n", + " SOMA.Throwing,\n", + " SOMA.TimeRole,\n", + " SOMA.Transporting,\n", + " SOMA.TrashContainer,\n", + " SOMA.Triplestore,\n", + " SOMA.Turning,\n", + " SOMA.UnavailableSoftware,\n", + " SOMA.Unsuccessfulness,\n", + " SOMA.VideoData,\n", + " SOMA.Wardrobe,\n", + " SOMA.WaterBottle,\n", + " SOMA.WaterGlass,\n", + " SOMA.WineBottle,\n", + " SOMA.WineGlass,\n", + " SOMA.3DPosition,\n", + " SOMA.Affordance,\n", + " SOMA.Disposition,\n", + " SOMA.Setpoint,\n", + " SOMA.Answer,\n", + " SOMA.Message,\n", + " SOMA.ProcessType,\n", + " SOMA.OrderedElement,\n", + " SOMA.System,\n", + " SOMA.Binding,\n", + " SOMA.Joint,\n", + " SOMA.Color,\n", + " SOMA.ExecutionStateRegion,\n", + " SOMA.Feature,\n", + " SOMA.FrictionAttribute,\n", + " SOMA.SituationTransition,\n", + " SOMA.NonmanifestedSituation,\n", + " SOMA.JointLimit,\n", + " SOMA.JointState,\n", + " SOMA.Localization,\n", + " SOMA.MassAttribute,\n", + " SOMA.NetForce,\n", + " SOMA.Succedence,\n", + " SOMA.Preference,\n", + " SOMA.Shape,\n", + " SOMA.ShapeRegion,\n", + " SOMA.SoftwareInstance,\n", + " SOMA.StateType,\n", + " SOMA.PhysicalEffector,\n", + " SOMA.QueryingTask,\n", + " SOMA.Order,\n", + " SOMA.State,\n", + " SOMA.Transient,\n", + " SOMA.ColorRegion,\n", + " SOMA.ForceAttribute,\n", + " SOMA.API_Specification,\n", + " SOMA.InterfaceSpecification,\n", + " SOMA.AbductiveReasoning,\n", + " SOMA.Reasoning,\n", + " SOMA.Accessor,\n", + " SOMA.Instrument,\n", + " SOMA.Accident,\n", + " SOMA.ActionExecutionPlan,\n", + " SOMA.Actuating,\n", + " SOMA.PhysicalTask,\n", + " SOMA.AestheticDesign,\n", + " SOMA.AgentRole,\n", + " SOMA.CausativeRole,\n", + " SOMA.Agonist,\n", + " SOMA.Patient,\n", + " SOMA.Algorithm,\n", + " SOMA.Alteration,\n", + " SOMA.AlterativeInteraction,\n", + " SOMA.ForceInteraction,\n", + " SOMA.PreservativeInteraction,\n", + " SOMA.AlteredObject,\n", + " SOMA.Amateurish,\n", + " SOMA.AnsweringTask,\n", + " SOMA.CommandingTask,\n", + " SOMA.IllocutionaryTask,\n", + " SOMA.Antagonist,\n", + " SOMA.Appliance,\n", + " SOMA.Approaching,\n", + " SOMA.Locomotion,\n", + " SOMA.ArchiveFile,\n", + " SOMA.ArchiveText,\n", + " SOMA.Digital_File,\n", + " SOMA.ArchiveFormat,\n", + " SOMA.File_format,\n", + " SOMA.FileConfiguration,\n", + " SOMA.Structured_Text,\n", + " SOMA.AreaSurveying,\n", + " SOMA.Perceiving,\n", + " SOMA.Arm,\n", + " SOMA.Limb,\n", + " SOMA.Arranging,\n", + " SOMA.Constructing,\n", + " SOMA.ArtificialAgent,\n", + " SOMA.Assembling,\n", + " SOMA.AssertionTask,\n", + " SOMA.DeclarativeClause,\n", + " SOMA.AssumingArmPose,\n", + " SOMA.AssumingPose,\n", + " SOMA.AttentionShift,\n", + " SOMA.MentalTask,\n", + " SOMA.AvoidedObject,\n", + " SOMA.Avoiding,\n", + " SOMA.Navigating,\n", + " SOMA.Barrier,\n", + " SOMA.Restrictor,\n", + " SOMA.BehavioralDiagnosis,\n", + " SOMA.BeneficiaryRole,\n", + " SOMA.GoalRole,\n", + " SOMA.CounterfactualBinding,\n", + " SOMA.FactualBinding,\n", + " SOMA.RoleFillerBinding,\n", + " SOMA.RoleRoleBinding,\n", + " SOMA.DesignedComponent,\n", + " SOMA.Blockage,\n", + " SOMA.BlockedObject,\n", + " SOMA.BodyMovement,\n", + " SOMA.Motion,\n", + " SOMA.Boiling,\n", + " SOMA.Vaporizing,\n", + " SOMA.DesignedContainer,\n", + " SOMA.BoxShape,\n", + " SOMA.Deposition,\n", + " SOMA.CanCut,\n", + " SOMA.Variability,\n", + " SOMA.Cutter,\n", + " SOMA.CutObject,\n", + " SOMA.Capability,\n", + " SOMA.Capacity,\n", + " SOMA.Intrinsic,\n", + " SOMA.Catching,\n", + " SOMA.PickingUp,\n", + " SOMA.CausalEventRole,\n", + " SOMA.EventAdjacentRole,\n", + " SOMA.CausedMotionTheory,\n", + " SOMA.ImageSchemaTheory,\n", + " SOMA.PerformerRole,\n", + " SOMA.SourcePathGoalTheory,\n", + " SOMA.RoomSurface,\n", + " SOMA.Channel,\n", + " SOMA.PathRole,\n", + " SOMA.CommunicationTask,\n", + " SOMA.CheckingObjectPresence,\n", + " SOMA.ChemicalProcess,\n", + " SOMA.Choice,\n", + " SOMA.ResultRole,\n", + " SOMA.CircularCylinder,\n", + " SOMA.CylinderShape,\n", + " SOMA.Classifier,\n", + " SOMA.StatisticalReasoner,\n", + " SOMA.ClausalObject,\n", + " SOMA.Phrase,\n", + " SOMA.Clean,\n", + " SOMA.CleanlinessRegion,\n", + " SOMA.Cleaning,\n", + " SOMA.ModifyingPhysicalObject,\n", + " SOMA.Purification,\n", + " SOMA.Cleanliness,\n", + " SOMA.SocialQuality,\n", + " SOMA.Client-Server_Specification,\n", + " SOMA.ClientRole,\n", + " SOMA.ServerRole,\n", + " SOMA.InterfaceComponentRole,\n", + " SOMA.Closing,\n", + " SOMA.Delivering,\n", + " SOMA.Fetching,\n", + " SOMA.Lifting,\n", + " SOMA.Opening,\n", + " SOMA.Pulling,\n", + " SOMA.Pushing,\n", + " SOMA.Squeezing,\n", + " SOMA.Linkage,\n", + " SOMA.Clumsiness,\n", + " SOMA.CognitiveAgent,\n", + " SOMA.SubCognitiveAgent,\n", + " SOMA.Collision,\n", + " SOMA.Extrinsic,\n", + " SOMA.ImperativeClause,\n", + " SOMA.CommitedObject,\n", + " SOMA.ConnectedObject,\n", + " SOMA.CommunicationAction,\n", + " SOMA.LinguisticObject,\n", + " SOMA.CommunicationReport,\n", + " SOMA.Receiver,\n", + " SOMA.Sender,\n", + " SOMA.CommunicationTopic,\n", + " SOMA.ResourceRole,\n", + " SOMA.Composing,\n", + " SOMA.Computer_Language,\n", + " SOMA.FormalLanguage,\n", + " SOMA.Computer_Program,\n", + " SOMA.Programming_Language,\n", + " SOMA.Conclusion,\n", + " SOMA.CreatedObject,\n", + " SOMA.Knowledge,\n", + " SOMA.ConditionalSuccedence,\n", + " SOMA.Configuration,\n", + " SOMA.Connectivity,\n", + " SOMA.ContactState,\n", + " SOMA.Container,\n", + " SOMA.Containment,\n", + " SOMA.IncludedObject,\n", + " SOMA.ContainmentState,\n", + " SOMA.FunctionalControl,\n", + " SOMA.ContainmentTheory,\n", + " SOMA.ControlTheory,\n", + " SOMA.ContinuousJoint,\n", + " SOMA.HingeJoint,\n", + " SOMA.FunctionalSpatialSchemaTheory,\n", + " SOMA.Cover,\n", + " SOMA.Coverage,\n", + " SOMA.CoveredObject,\n", + " SOMA.CoverageTheory,\n", + " SOMA.CoveringTheory,\n", + " SOMA.ExecutableSchematicTheory,\n", + " SOMA.CrackingTheory,\n", + " SOMA.Creation,\n", + " SOMA.Insertion,\n", + " SOMA.DesignedFurniture,\n", + " SOMA.Cuttability,\n", + " SOMA.Tool,\n", + " SOMA.Cutting,\n", + " SOMA.DesignedTool,\n", + " SOMA.Shaping,\n", + " SOMA.Database,\n", + " SOMA.SoftwareRole,\n", + " SOMA.Deciding,\n", + " SOMA.DerivingInformation,\n", + " SOMA.DeductiveReasoning,\n", + " SOMA.Deformation,\n", + " SOMA.ShapedObject,\n", + " SOMA.FluidFlow,\n", + " SOMA.Shifting,\n", + " SOMA.DependentPlace,\n", + " SOMA.Deposit,\n", + " SOMA.DepositedObject,\n", + " SOMA.InformationAcquisition,\n", + " SOMA.Premise,\n", + " SOMA.FunctionalPart,\n", + " SOMA.Graspability,\n", + " SOMA.Destination,\n", + " SOMA.Location,\n", + " SOMA.DestroyedObject,\n", + " SOMA.Destruction,\n", + " SOMA.DetectedObject,\n", + " SOMA.DeviceState,\n", + " SOMA.DeviceStateRange,\n", + " SOMA.DeviceTurnedOff,\n", + " SOMA.DeviceTurnedOn,\n", + " SOMA.DexterityDiagnosis,\n", + " SOMA.Dicing,\n", + " SOMA.DirectedMotion,\n", + " SOMA.UndirectedMotion,\n", + " SOMA.Dirty,\n", + " SOMA.Discourse,\n", + " SOMA.Distancing,\n", + " SOMA.Dreaming,\n", + " SOMA.Driving,\n", + " SOMA.Flying,\n", + " SOMA.Swimming,\n", + " SOMA.Walking,\n", + " SOMA.Dropping,\n", + " SOMA.Placing,\n", + " SOMA.ESTSchemaTheory,\n", + " SOMA.ExistingObjectRole,\n", + " SOMA.Effort,\n", + " SOMA.EnclosedObject,\n", + " SOMA.Enclosing,\n", + " SOMA.EndEffectorPositioning,\n", + " SOMA.Manipulating,\n", + " SOMA.Episode,\n", + " SOMA.ExcludedObject,\n", + " SOMA.ExecutableFile,\n", + " SOMA.Executable_Code,\n", + " SOMA.ExecutableFormat,\n", + " SOMA.SchematicTheory,\n", + " SOMA.ExecutableSoftware,\n", + " SOMA.Software,\n", + " SOMA.RelationAdjacentRole,\n", + " SOMA.ExperiencerRole,\n", + " SOMA.ExtractedObject,\n", + " SOMA.PhysicalQuality,\n", + " SOMA.FailedAttempt,\n", + " SOMA.FaultySoftware,\n", + " SOMA.SoftwareDiagnosis,\n", + " SOMA.PhysicalAcquiring,\n", + " SOMA.Finger,\n", + " SOMA.Hand,\n", + " SOMA.FixedJoint,\n", + " SOMA.MovableJoint,\n", + " SOMA.Flipping,\n", + " SOMA.FloatingJoint,\n", + " SOMA.Fluid,\n", + " SOMA.MovedObject,\n", + " SOMA.Focusing,\n", + " SOMA.Foolishness,\n", + " SOMA.ForgettingIncorrectInformation,\n", + " SOMA.InformationDismissal,\n", + " SOMA.ForgettingIrrelevantInformation,\n", + " SOMA.Language,\n", + " SOMA.Item,\n", + " SOMA.FunctionalDesign,\n", + " SOMA.FunctionalDiagnosis,\n", + " SOMA.LocatumRole,\n", + " SOMA.RelatumRole,\n", + " SOMA.GetTaskParameter,\n", + " SOMA.Planning,\n", + " SOMA.GraphDatabase,\n", + " SOMA.GraphQueryLanguage,\n", + " SOMA.QueryLanguage,\n", + " SOMA.GraspTransfer,\n", + " SOMA.Grasping,\n", + " SOMA.Releasing,\n", + " SOMA.GraspingMotion,\n", + " SOMA.IntermediateGrasp,\n", + " SOMA.PowerGrasp,\n", + " SOMA.PrecisionGrasp,\n", + " SOMA.PrehensileMotion,\n", + " SOMA.ReleasingMotion,\n", + " SOMA.GreenColor,\n", + " SOMA.Gripper,\n", + " SOMA.PrehensileEffector,\n", + " SOMA.HardwareDiagnosis,\n", + " SOMA.HasQualityRegion,\n", + " SOMA.Head,\n", + " SOMA.HeadMovement,\n", + " SOMA.HeadTurning,\n", + " SOMA.Holding,\n", + " SOMA.HostRole,\n", + " SOMA.PluginSpecification,\n", + " SOMA.Human-readable_Programming_Language,\n", + " SOMA.Source_Code,\n", + " SOMA.HumanActivityRecording,\n", + " SOMA.Imagining,\n", + " SOMA.Impediment,\n", + " SOMA.Obstacle,\n", + " SOMA.RestrictedObject,\n", + " SOMA.StateTransition,\n", + " SOMA.Inability,\n", + " SOMA.IncompatibleSoftware,\n", + " SOMA.InductiveReasoning,\n", + " SOMA.Infeasibility,\n", + " SOMA.InferenceRules,\n", + " SOMA.InformationRetrieval,\n", + " SOMA.InformationStorage,\n", + " SOMA.StoredObject,\n", + " SOMA.InsertedObject,\n", + " SOMA.Instructions,\n", + " SOMA.Interpreting,\n", + " SOMA.InterrogativeClause,\n", + " SOMA.Introspecting,\n", + " SOMA.KineticFrictionAttribute,\n", + " SOMA.KinoDynamicData,\n", + " SOMA.Room,\n", + " SOMA.KnowledgeRepresentationLanguage,\n", + " SOMA.Labeling,\n", + " SOMA.Text,\n", + " SOMA.Leaning,\n", + " SOMA.PosturalMoving,\n", + " SOMA.Learning,\n", + " SOMA.Leg,\n", + " SOMA.LimbMotion,\n", + " SOMA.LinkedObject,\n", + " SOMA.LinkageState,\n", + " SOMA.SpatioTemporalRole,\n", + " SOMA.SpatialRelationRole,\n", + " SOMA.LocutionaryAction,\n", + " SOMA.LookingAt,\n", + " SOMA.LookingFor,\n", + " SOMA.Lowering,\n", + " SOMA.PhysicalAction,\n", + " SOMA.Markup_Language,\n", + " SOMA.Masterful,\n", + " SOMA.Material,\n", + " SOMA.MedicalDiagnosis,\n", + " SOMA.Memorizing,\n", + " SOMA.MentalAction,\n", + " SOMA.MeshShape,\n", + " SOMA.MeshShapeData,\n", + " SOMA.MetaCognitionEvaluationTopic,\n", + " SOMA.MetaCognitionTopic,\n", + " SOMA.MetaCognitionMemoryTopic,\n", + " SOMA.MetaCognitionPlanningTopic,\n", + " SOMA.ThinkAloudTopic,\n", + " SOMA.MetacognitiveControlling,\n", + " SOMA.MetacognitiveMonitoring,\n", + " SOMA.Mixing,\n", + " SOMA.MixingTheory,\n", + " SOMA.MonitoringJointState,\n", + " SOMA.Proprioceiving,\n", + " SOMA.MovingAway,\n", + " SOMA.MovingTo,\n", + " SOMA.Natural_Language,\n", + " SOMA.Natural_Language_Text,\n", + " SOMA.Ontology,\n", + " SOMA.Ontology_Language,\n", + " SOMA.Option,\n", + " SOMA.Singleton,\n", + " SOMA.Orienting,\n", + " SOMA.Positioning,\n", + " SOMA.Origin,\n", + " SOMA.ParkingArms,\n", + " SOMA.PhaseTransition,\n", + " SOMA.PhysicalAccessibility,\n", + " SOMA.PhysicalBlockage,\n", + " SOMA.PhysicalExistence,\n", + " SOMA.PhysicalState,\n", + " SOMA.PhysicsProcess,\n", + " SOMA.PlacingTheory,\n", + " SOMA.PlanarJoint,\n", + " SOMA.PluginRole,\n", + " SOMA.Pourable,\n", + " SOMA.PouredObject,\n", + " SOMA.Pouring,\n", + " SOMA.PouringInto,\n", + " SOMA.PouringOnto,\n", + " SOMA.Prediction,\n", + " SOMA.Prospecting,\n", + " SOMA.Predilection,\n", + " SOMA.PreferenceOrder,\n", + " SOMA.PreferenceRegion,\n", + " SOMA.PrismaticJoint,\n", + " SOMA.ProcessFlow,\n", + " SOMA.Progression,\n", + " ...]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 4 }, { "cell_type": "markdown", @@ -132,12 +11027,69 @@ }, { "cell_type": "code", - "source": "OntologyManager.get_ontology_descendant_classes(onto_designed_container_class)", + "source": "ontology_manager.get_ontology_descendant_classes(ontology_designed_container_class)", "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.071054Z", + "start_time": "2024-04-05T20:40:18.060420Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "data": { + "text/plain": [ + "[SOMA.Bottle,\n", + " SOMA.DesignedContainer,\n", + " SOMA.Bowl,\n", + " SOMA.Crockery,\n", + " SOMA.Box,\n", + " SOMA.BreakfastPlate,\n", + " SOMA.Plate,\n", + " SOMA.Building,\n", + " SOMA.Carafe,\n", + " SOMA.CerealBox,\n", + " SOMA.CoffeeCarafe,\n", + " SOMA.Cup,\n", + " SOMA.Cupboard,\n", + " SOMA.DinnerPlate,\n", + " SOMA.Dishwasher,\n", + " SOMA.Dispenser,\n", + " SOMA.Drawer,\n", + " SOMA.Glass,\n", + " SOMA.JamJar,\n", + " SOMA.Jar,\n", + " SOMA.KitchenCabinet,\n", + " SOMA.MilkBottle,\n", + " SOMA.MilkPack,\n", + " SOMA.Pack,\n", + " SOMA.NutellaJar,\n", + " SOMA.Oven,\n", + " SOMA.Pan,\n", + " SOMA.PastaBowl,\n", + " SOMA.PepperShaker,\n", + " SOMA.Shaker,\n", + " SOMA.Pot,\n", + " SOMA.RaspberryJamJar,\n", + " SOMA.Refrigerator,\n", + " SOMA.SaladBowl,\n", + " SOMA.SaltShaker,\n", + " SOMA.SoupPot,\n", + " SOMA.SugarDispenser,\n", + " SOMA.TrashContainer,\n", + " SOMA.Wardrobe,\n", + " SOMA.WaterBottle,\n", + " SOMA.WaterGlass,\n", + " SOMA.WineBottle,\n", + " SOMA.WineGlass]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "execution_count": 5 }, { "cell_type": "markdown", @@ -154,22 +11106,26 @@ { "cell_type": "code", "source": [ - "onto_custom_container_class = OntologyManager.create_ontology_concept_class('CustomContainerConcept',\n", - " onto_designed_container_class)\n", - "custom_container_concept = onto_custom_container_class('onto_custom_container_concept')" + "ontology_custom_container_class = ontology_manager.create_ontology_concept_class('CustomContainerConcept',\n", + " ontology_designed_container_class)\n", + "custom_container_concept = ontology_custom_container_class('ontology_custom_container_concept')" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.084717Z", + "start_time": "2024-04-05T20:40:18.071628Z" + } }, "outputs": [], - "execution_count": null + "execution_count": 6 }, { "cell_type": "markdown", "source": [ "## Access ontology classes and individuals\n", - "All ontology classes created on the fly inherit from __`owlready2.Thing`__, and so share the same namespace with the loaded ontology instance `onto`. They can then be accessible through that namespace by __`onto.`__.\n", - "The same applies for individuals of those classes, accessible by __`onto.`__" + "All ontology classes created on the fly inherit from __`owlready2.Thing`__, and so share the same namespace with the loaded ontology instance `onto`. They can then be accessible through that namespace by __`main_ontology.`__.\n", + "The same applies for individuals of those classes, accessible by __`main_ontology.`__" ], "metadata": { "collapsed": false @@ -178,15 +11134,45 @@ { "cell_type": "code", "source": [ - "OntologyManager.print_ontology_class(onto.OntologyConcept)\n", - "OntologyManager.print_ontology_class(onto.CustomContainerConcept)\n", - "print(f\"custom_container_concept is {onto.onto_custom_container_concept}: {custom_container_concept is onto.onto_custom_container_concept}\")" + "ontology_manager.print_ontology_class(main_ontology.OntologyConcept)\n", + "ontology_manager.print_ontology_class(main_ontology.CustomContainerConcept)\n", + "print(f\"custom_container_concept is {main_ontology.ontology_custom_container_concept}: {custom_container_concept is main_ontology.ontology_custom_container_concept}\")" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.106405Z", + "start_time": "2024-04-05T20:40:18.085348Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[INFO] [1712349618.097436]: -------------------\n", + "[INFO] [1712349618.098242]: SOMA-HOME.OntologyConcept \n", + "[INFO] [1712349618.098652]: Super classes: [owl.Thing]\n", + "[INFO] [1712349618.099044]: Ancestors: {owl.Thing, SOMA-HOME.OntologyConcept}\n", + "[INFO] [1712349618.099438]: Subclasses: [SOMA-HOME.CustomContainerConcept]\n", + "[INFO] [1712349618.099867]: Properties: []\n", + "[INFO] [1712349618.100529]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712349618.100943]: Direct Instances: []\n", + "[INFO] [1712349618.101336]: Inverse Restrictions: []\n", + "[INFO] [1712349618.101745]: -------------------\n", + "[INFO] [1712349618.102108]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712349618.102462]: Super classes: [SOMA-HOME.OntologyConcept, SOMA.DesignedContainer]\n", + "[INFO] [1712349618.102863]: Ancestors: {SOMA-HOME.CustomContainerConcept, DUL.Object, DUL.PhysicalObject, DUL.Entity, DUL.DesignedArtifact, SOMA-HOME.OntologyConcept, SOMA.DesignedContainer, DUL.PhysicalArtifact, owl.Thing}\n", + "[INFO] [1712349618.103233]: Subclasses: []\n", + "[INFO] [1712349618.103642]: Properties: []\n", + "[INFO] [1712349618.104265]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712349618.104638]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712349618.105024]: Inverse Restrictions: []\n", + "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" + ] + } + ], + "execution_count": 7 }, { "cell_type": "markdown", @@ -200,20 +11186,40 @@ { "cell_type": "code", "source": [ - "OntologyManager.print_ontology_class(soma.Cup)" + "ontology_manager.print_ontology_class(soma.Cup)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.122029Z", + "start_time": "2024-04-05T20:40:18.106869Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[INFO] [1712349618.117187]: -------------------\n", + "[INFO] [1712349618.117756]: SOMA.Cup \n", + "[INFO] [1712349618.118187]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712349618.118583]: Ancestors: {SOMA.Crockery, SOMA.Cup, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712349618.118947]: Subclasses: []\n", + "[INFO] [1712349618.119378]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712349618.119986]: Instances: []\n", + "[INFO] [1712349618.120366]: Direct Instances: []\n", + "[INFO] [1712349618.120726]: Inverse Restrictions: []\n" + ] + } + ], + "execution_count": 8 }, { "cell_type": "markdown", "source": [ "## Connect ontology class individuals with designators\n", "After creating `custom_container_concept` class, we connect it to a designator (say `obj_designator`) by:\n", - "- Append to `obj_designator.onto_concepts` with `custom_container_concept`\n", + "- Append to `obj_designator.ontology_concepts` with `custom_container_concept`\n", "- Append to `custom_container_concept.designators` with `obj_designator`" ], "metadata": { @@ -224,14 +11230,18 @@ "cell_type": "code", "source": [ "custom_container_designator = ObjectDesignatorDescription(names=[\"obj\"])\n", - "custom_container_designator.onto_concepts.append(custom_container_concept)\n", + "custom_container_designator.ontology_concepts.append(custom_container_concept)\n", "custom_container_concept.designators.append(custom_container_designator)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.133354Z", + "start_time": "2024-04-05T20:40:18.122476Z" + } }, "outputs": [], - "execution_count": null + "execution_count": 9 }, { "cell_type": "markdown", @@ -245,18 +11255,31 @@ { "cell_type": "code", "source": [ - "another_custom_container_designator = OntologyManager.create_ontology_linked_designator(designator_name=\"another_custom_container\",\n", - " designator_class=ObjectDesignatorDescription,\n", - " onto_concept_name=\"AnotherCustomContainerConcept\",\n", - " onto_parent_class=onto_designed_container_class)\n", - "print(another_custom_container_designator.onto_concepts)\n", - "print(onto.AnotherCustomContainerConcept.instances()[0].get_default_designator().names)" + "another_custom_container_designator = ontology_manager.create_ontology_linked_designator(designator_name=\"another_custom_container\",\n", + " designator_class=ObjectDesignatorDescription,\n", + " ontology_concept_name=\"AnotherCustomContainerConcept\",\n", + " ontology_parent_class=ontology_designed_container_class)\n", + "print(another_custom_container_designator.ontology_concepts)\n", + "print(main_ontology.AnotherCustomContainerConcept.instances()[0].get_default_designator().names)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.143662Z", + "start_time": "2024-04-05T20:40:18.134278Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[SOMA-HOME.another_custom_container_concept]\n", + "['another_custom_container']\n" + ] + } + ], + "execution_count": 10 }, { "cell_type": "markdown", @@ -274,20 +11297,24 @@ "source": [ "PLACEABLE_ON_PREDICATE_NAME = \"placeable_on\"\n", "HOLD_OBJ_PREDICATE_NAME = \"hold_obj\"\n", - "OntologyManager.create_ontology_triple_classes(onto_subject_parent_class=soma.DesignedContainer,\n", - " subject_class_name=\"OntologyPlaceHolderObject\",\n", - " onto_object_parent_class=soma.Shape,\n", - " object_class_name=\"OntologyHandheldObject\",\n", - " predicate_name=PLACEABLE_ON_PREDICATE_NAME,\n", - " inverse_predicate_name=HOLD_OBJ_PREDICATE_NAME,\n", - " onto_property_parent_class=soma.affordsBearer,\n", - " onto_inverse_property_parent_class=soma.isBearerAffordedBy)" + "ontology_manager.create_ontology_triple_classes(ontology_subject_parent_class=soma.DesignedContainer,\n", + " subject_class_name=\"OntologyPlaceHolderObject\",\n", + " ontology_object_parent_class=soma.Shape,\n", + " object_class_name=\"OntologyHandheldObject\",\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME,\n", + " inverse_predicate_name=HOLD_OBJ_PREDICATE_NAME,\n", + " ontology_property_parent_class=soma.affordsBearer,\n", + " ontology_inverse_property_parent_class=soma.isBearerAffordedBy)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.153466Z", + "start_time": "2024-04-05T20:40:18.144116Z" + } }, "outputs": [], - "execution_count": null + "execution_count": 11 }, { "cell_type": "markdown", @@ -295,7 +11322,7 @@ "There, we use `soma.DesignedContainer` & `soma.Shape`, existing concept in SOMA ontology, as the parent classes for the subject & object concepts respectively.\n", "There is also a note that those classes, as inheriting from ##owlready2##-provided classes, are automatically given the namespace `onto`, so later on to be accessible through it.\n", "\n", - "Then now we define some instances of the newly created triple classes, and link them to object designators, again using __`OntologyManager.create_ontology_linked_designator()`__" + "Then now we define some instances of the newly created triple classes, and link them to object designators, again using __`ontology_manager.create_ontology_linked_designator()`__" ], "metadata": { "collapsed": false @@ -304,33 +11331,37 @@ { "cell_type": "code", "source": [ - "def create_ontology_handheld_object(obj_name: str, onto_parent_class: Type[Thing]):\n", - " return OntologyManager.create_ontology_linked_designator(designator_name=obj_name,\n", - " designator_class=ObjectDesignatorDescription,\n", - " onto_concept_name=f\"Onto{obj_name}\",\n", - " onto_parent_class=onto.OntologyHandheldObject)\n", + "def create_ontology_handheld_object(object_name: str, ontology_parent_class: Type[owlready2.Thing]):\n", + " return ontology_manager.create_ontology_linked_designator(designator_name=object_name,\n", + " designator_class=ObjectDesignatorDescription,\n", + " ontology_concept_name=f\"Onto{object_name}\",\n", + " ontology_parent_class=ontology_parent_class)\n", "# Holdable Objects\n", - "cookie_box = create_ontology_handheld_object(\"cookie_box\", onto.OntologyHandheldObject)\n", - "egg = create_ontology_handheld_object(\"egg\", onto.OntologyHandheldObject)\n", + "cookie_box = create_ontology_handheld_object(\"cookie_box\", main_ontology.OntologyHandheldObject)\n", + "egg = create_ontology_handheld_object(\"egg\", main_ontology.OntologyHandheldObject)\n", " \n", "# Placeholder objects\n", - "placeholders = [create_ontology_handheld_object(obj_name, onto.OntologyPlaceHolderObject)\n", - " for obj_name in ['table', 'stool', 'shelf']]\n", + "placeholders = [create_ontology_handheld_object(object_name, main_ontology.OntologyPlaceHolderObject)\n", + " for object_name in ['table', 'stool', 'shelf']]\n", "\n", - "egg_tray = create_ontology_handheld_object(\"egg_tray\", onto.OntologyPlaceHolderObject)" + "egg_tray = create_ontology_handheld_object(\"egg_tray\", main_ontology.OntologyPlaceHolderObject)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.167497Z", + "start_time": "2024-04-05T20:40:18.154157Z" + } }, "outputs": [], - "execution_count": null + "execution_count": 12 }, { "cell_type": "markdown", "source": [ "### Create ontology relations\n", "\n", - "Now we will create ontology relations or predicates between __placeholder objects__ and __handheld objects__ with __`OntologyManager.set_ontology_relation()`__" + "Now we will create ontology relations or predicates between __placeholder objects__ and __handheld objects__ with __`ontology_manager.set_ontology_relation()`__" ], "metadata": { "collapsed": false @@ -340,17 +11371,21 @@ "cell_type": "code", "source": [ "for place_holder in placeholders:\n", - " OntologyManager.set_ontology_relation(subject_designator=cookie_box, object_designator=place_holder,\n", - " predicate_name=PLACEABLE_ON_PREDICATE_NAME)\n", + " ontology_manager.set_ontology_relation(subject_designator=cookie_box, object_designator=place_holder,\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME)\n", "\n", - "OntologyManager.set_ontology_relation(subject_designator=egg_tray, object_designator=egg,\n", - " predicate_name=HOLD_OBJ_PREDICATE_NAME)" + "ontology_manager.set_ontology_relation(subject_designator=egg_tray, object_designator=egg,\n", + " predicate_name=HOLD_OBJ_PREDICATE_NAME)" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.176522Z", + "start_time": "2024-04-05T20:40:18.167918Z" + } }, "outputs": [], - "execution_count": null + "execution_count": 13 }, { "cell_type": "markdown", @@ -368,30 +11403,47 @@ "source": [ "print(f\"{cookie_box.names}'s placeholder candidates:\",\n", " f\"\"\"{[placeholder.names for placeholder in\n", - " OntologyManager.get_designators_by_subject_predicate(subject=cookie_box,\n", - " predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}\"\"\")\n", + " ontology_manager.get_designators_by_subject_predicate(subject=cookie_box,\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}\"\"\")\n", "\n", "print(f\"{egg.names}'s placeholder candidates:\",\n", " f\"\"\"{[placeholder.names for placeholder in\n", - " OntologyManager.get_designators_by_subject_predicate(subject=egg,\n", - " predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}\"\"\")\n", + " ontology_manager.get_designators_by_subject_predicate(subject=egg,\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}\"\"\")\n", "\n", "for place_holder in placeholders:\n", " print(f\"{place_holder.names} can hold:\",\n", " f\"\"\"{[placeholder.names for placeholder in\n", - " OntologyManager.get_designators_by_subject_predicate(subject=place_holder,\n", - " predicate_name=HOLD_OBJ_PREDICATE_NAME)]}\"\"\")\n", + " ontology_manager.get_designators_by_subject_predicate(subject=place_holder,\n", + " predicate_name=HOLD_OBJ_PREDICATE_NAME)]}\"\"\")\n", "\n", "print(f\"{egg_tray.names} can hold:\",\n", " f\"\"\"{[placeholder.names for placeholder in\n", - " OntologyManager.get_designators_by_subject_predicate(subject=egg_tray,\n", - " predicate_name=HOLD_OBJ_PREDICATE_NAME)]}\"\"\")" + " ontology_manager.get_designators_by_subject_predicate(subject=egg_tray,\n", + " predicate_name=HOLD_OBJ_PREDICATE_NAME)]}\"\"\")" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.190837Z", + "start_time": "2024-04-05T20:40:18.176973Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['cookie_box']'s placeholder candidates: [['table'], ['stool'], ['shelf']]\n", + "['egg']'s placeholder candidates: [['egg_tray']]\n", + "['table'] can hold: [['cookie_box']]\n", + "['stool'] can hold: [['cookie_box']]\n", + "['shelf'] can hold: [['cookie_box']]\n", + "['egg_tray'] can hold: [['egg']]\n" + ] + } + ], + "execution_count": 14 }, { "cell_type": "markdown", @@ -411,24 +11463,38 @@ "from pycram.enums import ObjectType\n", "\n", "# Create a generic ontology concept class for edible objects\n", - "generic_edible_class = OntologyManager.create_ontology_concept_class('GenericEdible')\n", + "generic_edible_class = ontology_manager.create_ontology_concept_class('GenericEdible')\n", "\n", "# Create a list of object designators sharing the same concept class as [generic_edible_class]\n", "edible_obj_types = [ObjectType.MILK, ObjectType.BREAKFAST_CEREAL]\n", "for object_type in ObjectType:\n", " if object_type in edible_obj_types:\n", " # Create a designator for the edible object\n", - " OntologyManager.create_ontology_object_designator_from_type(object_type, generic_edible_class)\n", + " ontology_manager.create_ontology_object_designator_from_type(object_type, generic_edible_class)\n", "\n", "print(f'{generic_edible_class.name} object types:')\n", - "for edible_onto_concept in generic_edible_class.direct_instances():\n", - " print(edible_onto_concept, [des.types for des in edible_onto_concept.designators])\n" + "for edible_ontology_concept in generic_edible_class.direct_instances():\n", + " print(edible_ontology_concept, [des.types for des in edible_ontology_concept.designators])\n" ], "metadata": { - "collapsed": false + "collapsed": false, + "ExecuteTime": { + "end_time": "2024-04-05T20:40:18.200510Z", + "start_time": "2024-04-05T20:40:18.191346Z" + } }, - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GenericEdible object types:\n", + "SOMA-HOME.milk_concept [['milk']]\n", + "SOMA-HOME.breakfast_cereal_concept [['breakfast_cereal']]\n" + ] + } + ], + "execution_count": 15 }, { "cell_type": "markdown", @@ -452,7 +11518,12 @@ } }, { - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-05T20:40:26.423697Z", + "start_time": "2024-04-05T20:40:18.200975Z" + } + }, "cell_type": "code", "source": [ "from pycram.bullet_world import BulletWorld, Object\n", @@ -467,11 +11538,20 @@ "plane = BulletWorld.current_bullet_world.objects[0]\n", "kitchen = Object(\"kitchen\", ObjectType.ENVIRONMENT, \"kitchen.urdf\")\n", "pr2 = Object(\"pr2\", ObjectType.ROBOT, \"pr2.urdf\")\n", - "kitchen_desig = ObjectDesignatorDescription(names=[\"kitchen\"])\n", - "robot_desig = ObjectDesignatorDescription(names=[\"pr2\"]).resolve()" + "kitchen_designator = ObjectDesignatorDescription(names=[\"kitchen\"])\n", + "robot_designator = ObjectDesignatorDescription(names=[\"pr2\"]).resolve()" ], - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Scalar element defined multiple times: limit\n", + "Scalar element defined multiple times: limit\n" + ] + } + ], + "execution_count": 16 }, { "metadata": {}, @@ -479,22 +11559,27 @@ "source": "### Create PourableObject-LiquidHolder triple ontology classes" }, { - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-05T20:40:26.500872Z", + "start_time": "2024-04-05T20:40:26.424328Z" + } + }, "cell_type": "code", "source": [ "POURABLE_INTO_PREDICATE_NAME = \"pourable_into\"\n", "HOLD_LIQUID_PREDICATE_NAME = \"hold_liquid\"\n", - "OntologyManager.create_ontology_triple_classes(onto_subject_parent_class=soma.DesignedContainer,\n", - " subject_class_name=\"OntologyLiquidHolderObject\",\n", - " onto_object_parent_class=soma.Shape,\n", - " object_class_name=\"OntologyPourableObject\",\n", - " predicate_name=POURABLE_INTO_PREDICATE_NAME,\n", - " inverse_predicate_name=HOLD_LIQUID_PREDICATE_NAME,\n", - " onto_property_parent_class=soma.affordsBearer,\n", - " onto_inverse_property_parent_class=onto.HOLD_OBJ_PREDICATE_NAME)" + "ontology_manager.create_ontology_triple_classes(ontology_subject_parent_class=soma.DesignedContainer,\n", + " subject_class_name=\"OntologyLiquidHolderObject\",\n", + " ontology_object_parent_class=soma.Shape,\n", + " object_class_name=\"OntologyPourableObject\",\n", + " predicate_name=POURABLE_INTO_PREDICATE_NAME,\n", + " inverse_predicate_name=HOLD_LIQUID_PREDICATE_NAME,\n", + " ontology_property_parent_class=soma.affordsBearer,\n", + " ontology_inverse_property_parent_class=soma.isBearerAffordedBy)" ], "outputs": [], - "execution_count": null + "execution_count": 17 }, { "metadata": {}, @@ -502,23 +11587,28 @@ "source": "### Spawn a pourable object & liquid holders into the world and Create their designators" }, { - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-05T20:40:26.785195Z", + "start_time": "2024-04-05T20:40:26.501417Z" + } + }, "cell_type": "code", "source": [ "# Holdable obj\n", "milk_box = Object(\"milk_box\", ObjectType.MILK, \"milk.stl\")\n", - "milk_box_designator = create_ontology_handheld_object(milk_box.name, onto.OntologyPourableObject)\n", + "milk_box_designator = create_ontology_handheld_object(milk_box.name, main_ontology.OntologyPourableObject)\n", "\n", "# Liquid-holders\n", "cup = Object(\"cup\", ObjectType.JEROEN_CUP, \"jeroen_cup.stl\", pose=Pose([1.4, 1, 0.9]))\n", "bowl = Object(\"bowl\", ObjectType.BOWL, \"bowl.stl\", pose=Pose([1.4, 0.5, 0.9]))\n", "pitcher = Object(\"pitcher\", ObjectType.GENERIC_OBJECT, \"Static_MilkPitcher.stl\", pose=Pose([1.4, 0, 0.9]))\n", "milk_holders = [cup, bowl, pitcher]\n", - "milk_holder_designators = [create_ontology_handheld_object(obj.name, onto.OntologyLiquidHolderObject)\n", + "milk_holder_designators = [create_ontology_handheld_object(obj.name, main_ontology.OntologyLiquidHolderObject)\n", " for obj in milk_holders]" ], "outputs": [], - "execution_count": null + "execution_count": 18 }, { "metadata": {}, @@ -526,15 +11616,20 @@ "source": "### Create an ontology relation between the designators of the pourable object & its liquid holders" }, { - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-05T20:40:26.809299Z", + "start_time": "2024-04-05T20:40:26.785742Z" + } + }, "cell_type": "code", "source": [ "for milk_holder_desig in milk_holder_designators:\n", - " OntologyManager.set_ontology_relation(subject_designator=milk_box_designator, object_designator=milk_holder_desig,\n", - " predicate_name=POURABLE_INTO_PREDICATE_NAME)" + " ontology_manager.set_ontology_relation(subject_designator=milk_box_designator, object_designator=milk_holder_desig,\n", + " predicate_name=POURABLE_INTO_PREDICATE_NAME)" ], "outputs": [], - "execution_count": null + "execution_count": 19 }, { "metadata": {}, @@ -542,18 +11637,23 @@ "source": "### Set up `resolve` for the ontology concept of the pourable object" }, { - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-05T20:40:26.827784Z", + "start_time": "2024-04-05T20:40:26.809789Z" + } + }, "cell_type": "code", "source": [ - "milk_box_concept = milk_box_designator.get_default_onto_concept()\n", + "milk_box_concept = milk_box_designator.get_default_ontology_concept()\n", "def milk_box_concept_resolve(): \n", - " object_designator = OntologyManager.get_designators_by_subject_predicate(subject=milk_box_designator, predicate_name=POURABLE_INTO_PREDICATE_NAME)[0]\n", + " object_designator = ontology_manager.get_designators_by_subject_predicate(subject=milk_box_designator, predicate_name=POURABLE_INTO_PREDICATE_NAME)[0]\n", " return object_designator, object_designator.resolve()\n", "\n", "milk_box_concept.resolve = milk_box_concept_resolve" ], "outputs": [], - "execution_count": null + "execution_count": 20 }, { "metadata": {}, @@ -565,14 +11665,27 @@ ] }, { - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-05T20:40:26.842434Z", + "start_time": "2024-04-05T20:40:26.828301Z" + } + }, "cell_type": "code", "source": [ "target_milk_holder_designator, target_milk_holder = milk_box_concept.resolve()\n", "print('Pickup target object:', target_milk_holder.name)" ], - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Pickup target object: cup\n" + ] + } + ], + "execution_count": 21 }, { "metadata": {}, @@ -580,7 +11693,12 @@ "source": "### Robot picks up the target liquid holder" }, { - "metadata": {}, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-05T20:40:36.153706Z", + "start_time": "2024-04-05T20:40:26.842895Z" + } + }, "cell_type": "code", "source": [ "with simulated_robot:\n", @@ -588,7 +11706,7 @@ "\n", " MoveTorsoAction([0.3]).resolve().perform()\n", "\n", - " pickup_pose = CostmapLocation(target=target_milk_holder, reachable_for=robot_desig).resolve()\n", + " pickup_pose = CostmapLocation(target=target_milk_holder, reachable_for=robot_designator).resolve()\n", " pickup_arm = pickup_pose.reachable_arms[0]\n", "\n", " print(pickup_pose, pickup_arm)\n", @@ -599,27 +11717,79 @@ "\n", " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", "\n", - " place_island = SemanticCostmapLocation(\"kitchen_island_surface\", kitchen_desig.resolve(), target_milk_holder_designator.resolve()).resolve()\n", + " place_island = SemanticCostmapLocation(\"kitchen_island_surface\", kitchen_designator.resolve(), target_milk_holder_designator.resolve()).resolve()\n", "\n", - " place_stand = CostmapLocation(place_island.pose, reachable_for=robot_desig, reachable_arm=pickup_arm).resolve()\n", + " place_stand = CostmapLocation(place_island.pose, reachable_for=robot_designator, reachable_arm=pickup_arm).resolve()\n", "\n", " NavigateAction(target_locations=[place_stand.pose]).resolve().perform()\n", "\n", " PlaceAction(target_milk_holder_designator, target_locations=[place_island.pose], arms=[pickup_arm]).resolve().perform()\n", "\n", " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", - "\n", "world.exit()" ], - "outputs": [], - "execution_count": null + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1712349628\n", + " nsecs: 307107686\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6399999999999999\n", + " y: 1.24\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.15234391170286138\n", + " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n" + ] + } + ], + "execution_count": 22 }, { + "metadata": {}, "cell_type": "markdown", - "source": [], + "source": [ + "# Save ontologies to an OWL file\n", + "After all the above operations to our ontologies, we now can save them to an OWL file on disk" + ] + }, + { "metadata": { - "collapsed": false - } + "ExecuteTime": { + "end_time": "2024-04-05T20:40:36.201385Z", + "start_time": "2024-04-05T20:40:36.154368Z" + } + }, + "cell_type": "code", + "source": "ontology_manager.save(f\"{Path.home()}/ontologies/New{main_ontology.name}.owl\")", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[INFO] [1712349636.199589]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + ] + } + ], + "execution_count": 23 + }, + { + "metadata": {}, + "cell_type": "markdown", + "source": [ + "# Optimize ontology loading with SQLite3\n", + "Upon the initial ontology loading from OWL, an SQLite3 file is automatically created, acting as the quadstore cache for the loaded ontologies. This allows them to be __selectively__ reusable the next time that being loaded.\n", + "More info can be referenced [here](https://owlready2.readthedocs.io/en/latest/world.html). " + ] } ], "metadata": { diff --git a/requirements-ontology.txt b/requirements-ontology.txt new file mode 100644 index 000000000..f151f0854 --- /dev/null +++ b/requirements-ontology.txt @@ -0,0 +1,2 @@ +-r requirements.txt +owlready2>=0.45 diff --git a/requirements.txt b/requirements.txt index d23c2727b..d40530f22 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,4 +16,3 @@ tqdm==4.66.1 psutil==5.9.7 lxml==4.9.1 typing_extensions==4.9.0 -owlready2~=0.45 diff --git a/src/pycram/designator.py b/src/pycram/designator.py index 5fe1bf875..622dbe204 100644 --- a/src/pycram/designator.py +++ b/src/pycram/designator.py @@ -5,6 +5,11 @@ from abc import ABC, abstractmethod from inspect import isgenerator, isgeneratorfunction +try: + import owlready2 +except ImportError: + owlready2 = None + from sqlalchemy.orm.session import Session import rospy @@ -28,8 +33,6 @@ from .orm.base import RobotState, ProcessMetaData from .task import with_tree -from owlready2 import Thing - class DesignatorError(Exception): """Implementation of designator errors.""" @@ -319,17 +322,17 @@ class DesignatorDescription(ABC): :ivar resolve: The resolver function to use for this designator, defaults to self.ground """ - def __init__(self, resolver: Optional[Callable] = None, onto_concepts: Optional[List[Thing]] = None): + def __init__(self, resolver: Optional[Callable] = None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Create a Designator description. :param resolver: The grounding method used for the description. The grounding method creates a location instance that matches the description. - :param onto_concepts: A list of ontology concepts that the designator is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the designator is categorized as or associated with """ if resolver is None: self.resolve = self.ground - self.onto_concepts = [] if onto_concepts is None else onto_concepts + self.ontology_concepts = [] if ontology_concepts is None else ontology_concepts def make_dictionary(self, properties: List[str]): """ @@ -364,11 +367,11 @@ def get_slots(self) -> List[str]: def copy(self) -> Type[DesignatorDescription]: return self - def get_default_onto_concept(self): + def get_default_ontology_concept(self) -> owlready2.Thing: """ - Returns the first element of onto_concepts if there is, else None + Returns the first element of ontology_concepts if there is, else None """ - return self.onto_concepts[0] if len(self.onto_concepts) > 0 else None + return self.ontology_concepts[0] if len(self.ontology_concepts) > 0 else None class ActionDesignatorDescription(DesignatorDescription, Language): """ @@ -444,14 +447,14 @@ def insert(self, session: Session, *args, **kwargs) -> ORMAction: return action - def __init__(self, resolver=None, onto_concepts: Optional[List[Thing]] = None): + def __init__(self, resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Base of all action designator descriptions. :param resolver: An alternative resolver that returns an action designator - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) Language.__init__(self) def ground(self) -> Action: @@ -483,8 +486,8 @@ class Location: The resolved pose of the location designator. Pose is inherited by all location designator. """ - def __init__(self, resolver=None, onto_concepts: Optional[List[Thing]] = None): - super().__init__(resolver, onto_concepts) + def __init__(self, resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + super().__init__(resolver, ontology_concepts) def ground(self) -> Location: """ @@ -649,16 +652,16 @@ def special_knowledge_adjustment_pose(self, grasp: str, pose: Pose) -> Pose: # return pose def __init__(self, names: Optional[List[str]] = None, types: Optional[List[str]] = None, - resolver: Optional[Callable] = None, onto_concepts: Optional[List[Thing]] = None): + resolver: Optional[Callable] = None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Base of all object designator descriptions. Every object designator has the name and type of the object. :param names: A list of names that could describe the object :param types: A list of types that could represent the object :param resolver: An alternative resolver that returns an object designator for the list of names and types - :param onto_concepts: A list of ontology concepts that the object is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the object is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.types: Optional[List[str]] = types self.names: Optional[List[str]] = names diff --git a/src/pycram/designators/action_designator.py b/src/pycram/designators/action_designator.py index 2038b8d02..5bb7fe741 100644 --- a/src/pycram/designators/action_designator.py +++ b/src/pycram/designators/action_designator.py @@ -11,7 +11,10 @@ LookAtActionPerformable, DetectActionPerformable, OpenActionPerformable, CloseActionPerformable, GraspingActionPerformable, ReleaseActionPerformable) -from owlready2 import Thing +try: + import owlready2 +except ImportError: + owlready2 = None from pycram.ontology import OntologyManager @@ -20,18 +23,18 @@ class MoveTorsoAction(ActionDesignatorDescription): Action Designator for Moving the torso of the robot up and down """ - def __init__(self, positions: List[float], resolver=None, onto_concepts: Optional[List[Thing]] = None): + def __init__(self, positions: List[float], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Create a designator description to move the torso of the robot up and down. :param positions: List of possible positions of the robots torso, possible position is a float of height in metres :param resolver: An optional resolver that returns a performable designator for a designator description. - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.positions: List[float] = positions - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.MoveTorso] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.MoveTorso] def ground(self) -> MoveTorsoActionPerformable: """ @@ -56,20 +59,21 @@ class SetGripperAction(ActionDesignatorDescription): Set the gripper state of the robot """ - def __init__(self, grippers: List[str], motions: List[str], resolver=None, onto_concepts: Optional[List[Thing]] = None): + def __init__(self, grippers: List[str], motions: List[str], resolver=None, + ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Sets the gripper state, the desired state is given with the motion. Motion can either be 'open' or 'close'. :param grippers: A list of possible grippers :param motions: A list of possible motions :param resolver: An alternative resolver that returns a performable designator for a designator description - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.grippers: List[str] = grippers self.motions: List[str] = motions - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.SettingGripper] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.SettingGripper] def ground(self) -> SetGripperActionPerformable: """ @@ -97,12 +101,12 @@ class ReleaseAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], object_designator_description: ObjectDesignatorDescription, - resolver=None, onto_concepts: Optional[List[Thing]] = None): - super().__init__(resolver, onto_concepts) + resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + super().__init__(resolver, ontology_concepts) self.grippers: List[str] = grippers self.object_designator_description = object_designator_description - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.Releasing] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.Releasing] def ground(self) -> ReleaseActionPerformable: return ReleaseActionPerformable(self.grippers[0], self.object_designator_description.ground()) @@ -120,13 +124,13 @@ class GripAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], object_designator_description: ObjectDesignatorDescription, - efforts: List[float], resolver=None, onto_concepts: Optional[List[Thing]] = None): - super().__init__(resolver, onto_concepts) + efforts: List[float], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + super().__init__(resolver, ontology_concepts) self.grippers: List[str] = grippers self.object_designator_description: ObjectDesignatorDescription = object_designator_description self.efforts: List[float] = efforts - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.Holding] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.Holding] def ground(self) -> GripActionPerformable: return GripActionPerformable(self.grippers[0], self.object_designator_description.ground(), self.efforts[0]) @@ -136,18 +140,18 @@ class ParkArmsAction(ActionDesignatorDescription): Park the arms of the robot. """ - def __init__(self, arms: List[Arms], resolver=None, onto_concepts: Optional[List[Thing]] = None): + def __init__(self, arms: List[Arms], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Moves the arms in the pre-defined parking position. Arms are taken from pycram.enum.Arms :param arms: A list of possible arms, that could be used :param resolver: An optional resolver that returns a performable designator from the designator description - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.arms: List[Arms] = arms - if self.onto_concepts is None and OntologyManager.onto: - self.onto_concepts = OntologyManager.soma.ParkingArms + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = OntologyManager().soma.ParkingArms def ground(self) -> ParkArmsActionPerformable: """ @@ -164,7 +168,7 @@ class PickUpAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], - arms: List[str], grasps: List[str], resolver=None, onto_concepts: Optional[List[Thing]] = None): + arms: List[str], grasps: List[str], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Lets the robot pick up an object. The description needs an object designator describing the object that should be picked up, an arm that should be used as well as the grasp from which side the object should be picked up. @@ -173,15 +177,15 @@ def __init__(self, object_designator_description: Union[ObjectDesignatorDescrip :param arms: List of possible arms that could be used :param grasps: List of possible grasps for the object :param resolver: An optional resolver that returns a performable designator with elements from the lists of possible paramter - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.grasps: List[str] = grasps - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.PickingUp] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.PickingUp] def ground(self) -> PickUpActionPerformable: """ @@ -203,7 +207,7 @@ class PlaceAction(ActionDesignatorDescription): def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], target_locations: List[Pose], - arms: List[str], resolver=None, onto_concepts: Optional[List[Thing]] = None): + arms: List[str], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Create an Action Description to place an object @@ -211,15 +215,15 @@ def __init__(self, :param target_locations: List of possible positions/orientations to place the object :param arms: List of possible arms to use :param resolver: Grounding method to resolve this designator - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.target_locations: List[Pose] = target_locations self.arms: List[str] = arms - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.Placing] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.Placing] def ground(self) -> PlaceActionPerformable: """ @@ -238,18 +242,18 @@ class NavigateAction(ActionDesignatorDescription): Navigates the Robot to a position. """ - def __init__(self, target_locations: List[Pose], resolver=None, onto_concepts: Optional[List[Thing]] = None): + def __init__(self, target_locations: List[Pose], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Navigates the robot to a location. :param target_locations: A list of possible target locations for the navigation. :param resolver: An alternative resolver that creates a performable designator from the list of possible parameter - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.target_locations: List[Pose] = target_locations - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.Navigating] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.Navigating] def ground(self) -> NavigateActionPerformable: """ @@ -268,7 +272,7 @@ class TransportAction(ActionDesignatorDescription): def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], arms: List[str], - target_locations: List[Pose], resolver=None, onto_concepts: Optional[List[Thing]] = None): + target_locations: List[Pose], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Designator representing a pick and place plan. @@ -276,15 +280,15 @@ def __init__(self, :param arms: A List of possible arms that could be used for transporting :param target_locations: A list of possible target locations for the object to be placed :param resolver: An alternative resolver that returns a performable designator for the list of possible parameter - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.target_locations: List[Pose] = target_locations - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.Transporting] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.Transporting] def ground(self) -> TransportActionPerformable: """ @@ -304,18 +308,18 @@ class LookAtAction(ActionDesignatorDescription): Lets the robot look at a position. """ - def __init__(self, targets: List[Pose], resolver=None, onto_concepts: Optional[List[Thing]] = None): + def __init__(self, targets: List[Pose], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Moves the head of the robot such that it points towards the given target location. :param targets: A list of possible locations to look at :param resolver: An alternative resolver that returns a performable designator for a list of possible target locations - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.targets: List[Pose] = targets - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.LookingAt] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.LookingAt] def ground(self) -> LookAtActionPerformable: """ @@ -332,18 +336,18 @@ class DetectAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: ObjectDesignatorDescription, resolver=None, - onto_concepts: Optional[List[Thing]] = None): + ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Tries to detect an object in the field of view (FOV) of the robot. :param object_designator_description: Object designator describing the object :param resolver: An alternative resolver - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.object_designator_description: ObjectDesignatorDescription = object_designator_description - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.LookingFor, OntologyManager.soma.CheckingObjectPresence] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.LookingFor, OntologyManager().soma.CheckingObjectPresence] def ground(self) -> DetectActionPerformable: """ @@ -362,20 +366,20 @@ class OpenAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: ObjectPart, arms: List[str], resolver=None, - onto_concepts: Optional[List[Thing]] = None): + ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Moves the arm of the robot to open a container. :param object_designator_description: Object designator describing the handle that should be used to open :param arms: A list of possible arms that should be used :param resolver: A alternative resolver that returns a performable designator for the lists of possible parameter. - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.Opening] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.Opening] def ground(self) -> OpenActionPerformable: """ @@ -395,20 +399,20 @@ class CloseAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: ObjectPart, arms: List[str], - resolver=None, onto_concepts: Optional[List[Thing]] = None): + resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Attempts to close an open container :param object_designator_description: Object designator description of the handle that should be used :param arms: A list of possible arms to use :param resolver: An alternative resolver that returns a performable designator for the list of possible parameter - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.Closing] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.Closing] def ground(self) -> CloseActionPerformable: """ @@ -426,7 +430,7 @@ class GraspingAction(ActionDesignatorDescription): """ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDescription, ObjectPart], - resolver: Callable = None, onto_concepts: Optional[List[Thing]] = None): + resolver: Callable = None, ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Will try to grasp the object described by the given description. Grasping is done by moving into a pre grasp position 10 cm before the object, opening the gripper, moving to the object and then closing the gripper. @@ -434,13 +438,13 @@ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDe :param arms: List of Arms that should be used for grasping :param object_description: Description of the object that should be grasped :param resolver: An alternative resolver to get a specified designator from the designator description - :param onto_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, onto_concepts) + super().__init__(resolver, ontology_concepts) self.arms: List[str] = arms self.object_description: ObjectDesignatorDescription = object_description - if self.onto_concepts is None and OntologyManager.soma is not None: - self.onto_concepts = [OntologyManager.soma.Grasping] + if not self.ontology_concepts and OntologyManager().soma is not None: + self.ontology_concepts = [OntologyManager().soma.Grasping] def ground(self) -> GraspingActionPerformable: """ diff --git a/src/pycram/designators/object_designator.py b/src/pycram/designators/object_designator.py index 269ca58d5..e77ff5444 100644 --- a/src/pycram/designators/object_designator.py +++ b/src/pycram/designators/object_designator.py @@ -8,6 +8,10 @@ from ..pose import Pose from ..external_interfaces.robokudo import query +try: + import owlready2 +except ImportError: + owlready2 = None class BelieveObject(ObjectDesignatorDescription): """ @@ -67,7 +71,7 @@ def __init__(self, names: List[str], :param part_of: Parent object of which the part should be described :param type: Type of the part :param resolver: An alternative resolver to resolve the input parameter to an object designator - :param onto_concepts: A list of ontology concepts that the object part is categorized as or associated with + :param ontology_concepts: A list of ontology concepts that the object part is categorized as or associated with """ super().__init__(names, type, resolver) @@ -116,7 +120,8 @@ class Object(ObjectDesignatorDescription.Object): """ def __init__(self, names: List[str], types: List[str], - reference_frames: List[str], timestamps: List[float], resolver: Optional[Callable] = None): + reference_frames: List[str], timestamps: List[float], resolver: Optional[Callable] = None, + ontology_concepts: Optional[List[owlready2.Thing]] = None): """ Describing an object resolved through knowrob. @@ -125,9 +130,9 @@ def __init__(self, names: List[str], types: List[str], :param reference_frames: Frame of reference in which the object position should be :param timestamps: Timestamps for which positions should be returned :param resolver: An alternative resolver that resolves the input parameter to an object designator. - :param onto_concepts: A list of ontology concepts that the object is categorized as + :param ontology_concepts: A list of ontology concepts that the object is categorized as """ - super(LocatedObject, self).__init__(names, types, resolver) + super(LocatedObject, self).__init__(names, types, resolver, ontology_concepts) self.reference_frames: List[str] = reference_frames self.timestamps: List[float] = timestamps diff --git a/src/pycram/helper.py b/src/pycram/helper.py index ec3e8360e..2b0a67583 100644 --- a/src/pycram/helper.py +++ b/src/pycram/helper.py @@ -24,6 +24,9 @@ import math class Singleton(type): + """ + Metaclass for singletons + """ _instances = {} def __call__(cls, *args, **kwargs): diff --git a/src/pycram/ontology.py b/src/pycram/ontology.py index 5c259314d..bd4cfa558 100644 --- a/src/pycram/ontology.py +++ b/src/pycram/ontology.py @@ -1,133 +1,119 @@ import inspect +import logging from pathlib import Path from typing import Optional, List, Type, Callable -from owlready2 import * +import rospy + +try: + import owlready2 + from owlready2 import * +except ImportError: + owlready2 = None + logging.warn("Could not import owlready2, OWL Ontology Manager could not be initialized") from pycram.enums import ObjectType from pycram.helper import Singleton from pycram.designator import DesignatorDescription, ObjectDesignatorDescription -SOMA_HOME_ONTOLOGY = "http://www.ease-crc.org/ont/SOMA-HOME.owl" -SOMA_ONTOLOGY = "http://www.ease-crc.org/ont/SOMA.owl" +SOMA_HOME_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA-HOME.owl" +SOMA_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA.owl" class OntologyManager(object, metaclass=Singleton): """ Singleton class as the adapter accessing data of an OWL ontology, largely based on owlready2. - """ - """ - The ontology instance as the result of an ontology loading operation - """ - onto = None - """ - The SOMA ontology instance, referencing :attr:`onto` in case of ontology loading from SOMA.owl - Ref: http://www.ease-crc.org/ont/SOMA.owl - """ - soma = None - """ - The DUL ontology instance, referencing :attr:`onto` in case of ontology loading from DUL.owl - Ref: http://www.ease-crc.org/ont/DUL.owl - """ - dul = None - """ - Ontology world, place holder of triples stored by owlready2. Ref: https://owlready2.readthedocs.io/en/latest/world.html - """ - onto_world = None - """ - Full name path of the file from which the ontology is loaded - """ - onto_filename = None - """ - Namespace of the loaded ontology - """ - onto_namespace = None + Attributes + ---------- + main_ontology: owlready2.Ontology + The main ontology instance as the result of an ontology loading operation - @classmethod - def print_ontology_class(cls, onto_class): - """ - Print information (ancestors, super classes, subclasses, properties, etc.) of an ontology class - """ - if onto_class is None: - return - print("-------------------") - print(onto_class, type(onto_class)) - print('Super classes: ', onto_class.is_a) - print('Ancestors: ', onto_class.ancestors()) - print('Subclasses: ', list(onto_class.subclasses())) - print('Properties: ', list(onto_class.get_class_properties())) - print("Instances: ", list(onto_class.instances())) - print("Direct Instances: ", list(onto_class.direct_instances())) - print("Inverse Restrictions: ", list(onto_class.inverse_restrictions())) - - @classmethod - def browse_ontologies(cls, condition: Callable, func: Optional[Callable] = None, **kwargs): - if cls.onto is None: - assert False, "Main ontology has not been loaded!" + main_ontology_iri: str + Ontology IRI (Internationalized Resource Identifier), either a URL to a remote OWL file or the full name path of a local one - do_func = func is not None - if condition is None: - if do_func: - func(cls.onto, **kwargs) - for sub_onto in cls.onto.get_imported_ontologies(): - func(sub_onto, **kwargs) - elif condition(cls.onto, **kwargs): - if do_func: func(cls.onto, **kwargs) - else: - for sub_onto in cls.onto.get_imported_ontologies(): - if condition(sub_onto, **kwargs) and do_func: - func(sub_onto, **kwargs) - break + main_ontology_namespace: str + Namespace of the main ontology + + soma: owlready2.Ontology + The SOMA ontology instance, referencing :attr:`ontology` in case of ontology loading from SOMA.owl + Ref: http://www.ease-crc.org/ont/SOMA.owl + + dul: owlready2.Ontology + The DUL ontology instance, referencing :attr:`ontology` in case of ontology loading from DUL.owl + Ref: http://www.ease-crc.org/ont/DUL.owl + + ontology_world: + Ontology world, the placeholder of triples stored by owlready2. + Ref: https://owlready2.readthedocs.io/en/latest/world.html + """ - def __init__(self, onto_filename: str, onto_search_path=f"{Path.home()}/ontologies"): + def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = f"{Path.home()}/ontologies"): """ Create the singleton object of OntologyManager class - :param onto_filename: full name path of to be loaded ontology file - :param onto_search_path: directory path from which a possibly existing ontology is searched. This is appended - to `onto_path`, a global variable by owlready2 containing a list of directories for searching local copies of + :param main_ontology_iri: Ontology IRI (Internationalized Resource Identifier), either a URL to a remote OWL file + or the full name path of a local one + :param ontology_search_path: directory path from which a possibly existing ontology is searched. This is appended + to `owlready2.onto_path`, a global variable containing a list of directories for searching local copies of ontologies (similarly to python `sys.path` for modules/packages). """ - Path(onto_search_path).mkdir(parents=True, exist_ok=True) - onto_path.append(onto_search_path) - onto_name = Path(onto_filename).stem - OntologyManager.onto_filename = onto_filename + if owlready2: + Path(ontology_search_path).mkdir(parents=True, exist_ok=True) + owlready2.onto_path.append(ontology_search_path) + else: + rospy.logerr("owlready2 is not imported!") + return - # Create an ontology world with parallelized file parsing enabled - OntologyManager.onto_world = World(filename=f"{onto_search_path}/{onto_name}.sqlite3", exclusive=False, - enable_thread_parallelism=True) + self.main_ontology: owlready2.Ontology = None + self.soma: owlready2.Ontology = None + self.dul: owlready2.Ontology = None - onto_ = OntologyManager.onto_world.get_ontology(onto_filename).load() - if onto_.loaded: - print(f'Main Ontology [{onto_.base_iri}]\'s name: {onto_.name} has been loaded') - OntologyManager.onto = onto_ - OntologyManager.onto_namespace = get_namespace(onto_.base_iri).name - print(f'Main Ontology namespace: {OntologyManager.onto_namespace}') + self.ontology_world: owlready2.World = None + self.main_ontology_iri: str = main_ontology_iri + self.main_ontology_namespace: str = None - print(f'Loaded ontologies:') - OntologyManager.browse_ontologies(condition=None, func=lambda ontology: print(ontology.base_iri)) + # Create an ontology world with parallelized file parsing enabled + main_ontology_name = Path(main_ontology_iri).stem + self.ontology_world = World(filename=f"{ontology_search_path}/{main_ontology_name}.sqlite3", exclusive=False, + enable_thread_parallelism=True) + + ontology_ = self.ontology_world.get_ontology(main_ontology_iri).load(reload_if_newer=True) + if ontology_.loaded: + # So any check for `main_ontology` later if passed means it has been already loaded + self.main_ontology = ontology_ + self.main_ontology_namespace = owlready2.get_namespace(ontology_.base_iri).name + + rospy.loginfo( + f'Main Ontology [{self.main_ontology.base_iri}]\'s name: {self.main_ontology.name} has been loaded') + rospy.loginfo(f'Main Ontology namespace: {self.main_ontology_namespace}') + rospy.loginfo(f'Loaded ontologies:') + self.browse_ontologies(condition=None, func=lambda ontology__: rospy.loginfo(ontology__.base_iri)) # Search for SOMA & DUL from imported sub-ontologies - def is_matching_onto(ontology, onto_name): - return get_namespace(ontology.base_iri).name.lower() == onto_name.lower() + def is_matching_ontology(ontology__, ontology_name): + return owlready2.get_namespace(ontology__.base_iri).name.lower() == ontology_name.lower() - def set_soma(ontology, onto_name): - OntologyManager.soma = ontology + def set_soma(ontology__, ontology_name): + self.soma = ontology__ - def set_dul(ontology, onto_name): - OntologyManager.dul = ontology + def set_dul(ontology__, ontology_name): + self.dul = ontology__ - OntologyManager.browse_ontologies(condition=is_matching_onto, func=set_soma, onto_name="SOMA") - OntologyManager.browse_ontologies(condition=is_matching_onto, func=set_dul, onto_name="DUL") + self.browse_ontologies(condition=is_matching_ontology, func=set_soma, ontology_name="SOMA") + self.browse_ontologies(condition=is_matching_ontology, func=set_dul, ontology_name="DUL") else: - assert False, f'Ontology [{onto_.base_iri}]\'s name: {onto_.name} failed being loaded' + rospy.logerr(f"Ontology [{ontology_.base_iri}]\'s name: {ontology_.name} failed being loaded") + return - with onto_: - class OntologyConcept(Thing): + ontology_concept_class = self.get_ontology_class_by_ontology(ontology_, "OntologyConcept") + if ontology_concept_class: + del ontology_concept_class + with ontology_: + class OntologyConcept(owlready2.Thing): """ A default ontology concept class that inherits from owlready2.Thing with a list of designators as its attribute """ - namespace = onto_ + namespace = ontology_ def __init__(self, name: str): """ @@ -136,8 +122,8 @@ def __init__(self, name: str): :param name: concept name """ super().__init__(name) - self.designators = [] - self.resolve = None + self.designators: List[DesignatorDescription] = [] + self.resolve: Callable = None def get_default_designator(self) -> DesignatorDescription: """ @@ -145,131 +131,189 @@ def get_default_designator(self) -> DesignatorDescription: """ return self.designators[0] if len(self.designators) > 0 else None - @classmethod - def save(cls): + @staticmethod + def print_ontology_class(ontology_class): + """ + Print information (ancestors, super classes, subclasses, properties, etc.) of an ontology class + """ + if ontology_class is None: + return + rospy.loginfo("-------------------") + rospy.loginfo(f"{ontology_class} {type(ontology_class)}") + rospy.loginfo(f"Super classes: {ontology_class.is_a}") + rospy.loginfo(f"Ancestors: {ontology_class.ancestors()}") + rospy.loginfo(f"Subclasses: {list(ontology_class.subclasses())}") + rospy.loginfo(f"Properties: {list(ontology_class.get_class_properties())}") + rospy.loginfo(f"Instances: {list(ontology_class.instances())}") + rospy.loginfo(f"Direct Instances: {list(ontology_class.direct_instances())}") + rospy.loginfo(f"Inverse Restrictions: {list(ontology_class.inverse_restrictions())}") + + def browse_ontologies(self, condition: Optional[Callable] = None, func: Optional[Callable] = None, **kwargs): + """ + Browse the loaded ontologies (including the main and imported ones), doing operations based on a condition. + + :param condition: a Callable condition that if not None needs to be passed before doing operations, otherwise just + always carry the operations + :param func: a Callable specifying the operations to perform on all the loaded ontologies if condition is None, + otherwise only the first ontology which meets the condition + """ + if self.main_ontology is None: + rospy.logerr("Main ontology has not been loaded!") + return + + do_func = func is not None + # No condition: Do func for all ontologies + if condition is None: + if do_func: + func(self.main_ontology, **kwargs) + for sub_onto in self.main_ontology.get_imported_ontologies(): + func(sub_onto, **kwargs) + # Else: Only do func for the first ontology which meets the condition + elif condition(self.main_ontology, **kwargs): + if do_func: func(self.main_ontology, **kwargs) + else: + for sub_onto in self.main_ontology.get_imported_ontologies(): + if condition(sub_onto, **kwargs) and do_func: + func(sub_onto, **kwargs) + break + + def save(self, target_filename: str = ""): """ Save the current ontology to disk + :param target_filename: full name path of a file which the ontologies are saved into. + If empty, they are saved to the same original OWL file from which the main ontology was loaded, or + a file at the same folder with ontology search path specified at constructor if it was loaded from a remote IRI. """ - cls.onto.save(file=cls.onto_filename) - cls.onto_world.save() - @classmethod - def create_ontology_concept_class(cls, class_name: str, - onto_parent_concept_class: Optional[owlready2.Thing] = None)\ + # Commit the whole graph data of the current ontology world, saving it into SQLite3, to be reused the next time + # the ontologies are loaded + self.ontology_world.save() + + # Save ontologies to OWL + current_ontology_filename = self.main_ontology_iri if Path(self.main_ontology_iri).exists() \ + else f"{Path(self.ontology_world.filename).parent.absolute()}/{Path(self.main_ontology_iri).stem}.owl" + save_filename = target_filename if target_filename else current_ontology_filename + self.main_ontology.save(save_filename) + rospy.loginfo(f"Ontologies have been saved to {save_filename}") + + def create_ontology_concept_class(self, class_name: str, + ontology_parent_concept_class: Optional[owlready2.Thing] = None) \ -> Type[owlready2.Thing]: """ Create a new concept class in ontology :param class_name: A given name to the new class - :param onto_parent_concept_class: An optional parent ontology class of the new class + :param ontology_parent_concept_class: An optional parent ontology class of the new class :return: The created ontology class """ - return types.new_class(class_name, (cls.onto.OntologyConcept, onto_parent_concept_class,) - if inspect.isclass(onto_parent_concept_class) else (cls.onto.OntologyConcept,)) + ontology_concept_class = self.get_ontology_class_by_ontology(self.main_ontology, class_name) + if ontology_concept_class: + return ontology_concept_class + else: + return types.new_class(class_name, (self.main_ontology.OntologyConcept, ontology_parent_concept_class,) + if inspect.isclass(ontology_parent_concept_class) else (self.main_ontology.OntologyConcept,)) - @classmethod - def create_ontology_property_class(cls, class_name: str, - onto_parent_property_class: Optional[owlready2.Property] = None)\ + @staticmethod + def create_ontology_property_class(class_name: str, + ontology_parent_property_class: Optional[Type[owlready2.Property]] = None) \ -> Type[owlready2.Property]: """ Create a new property class in ontology :param class_name: A given name to the new class - :param onto_parent_property_class: An optional parent ontology property class of the new class + :param ontology_parent_property_class: An optional parent ontology property class of the new class :return: The created ontology class """ - if onto_parent_property_class: - assert issubclass(onto_parent_property_class, owlready2.Property), \ - f"{onto_parent_property_class} must be a subclass of one implementing owlready2.Property" - return types.new_class(class_name, (onto_parent_property_class,) - if inspect.isclass(onto_parent_property_class) else (owlready2.ObjectProperty,)) + parent_class = ontology_parent_property_class if (ontology_parent_property_class and + issubclass(ontology_parent_property_class, owlready2.Property)) \ + else None + return types.new_class(class_name, (parent_class,) if parent_class else (owlready2.Property,)) - @classmethod - def get_ontology_classes_by_condition(cls, condition: Callable, print_info=False, first_match_only=False, **kwargs)\ + def get_ontology_classes_by_condition(self, condition: Callable, first_match_only=False, **kwargs) \ -> List[Type[owlready2.Thing]]: """ Get an ontology class by a given condition :param condition: condition of searching - :param print_info: print essential information of the class (super/sub-classes, ancestors, properties, etc.) :param first_match_only: whether to only fetch the first class matching the given condition :return: The ontology class satisfying the given condition if found else None """ out_classes = [] - for onto_class in list(cls.onto.classes()): - if condition(onto_class, **kwargs): - out_classes.append(onto_class) + for ontology_class in list(self.main_ontology.classes()): + if condition(ontology_class, **kwargs): + out_classes.append(ontology_class) if first_match_only: return out_classes - for sub_onto in cls.onto.get_imported_ontologies(): - for sub_onto_class in list(sub_onto.classes()): - if condition(sub_onto_class, **kwargs): - out_classes.append(sub_onto_class) + for sub_onto in self.main_ontology.get_imported_ontologies(): + for sub_ontology_class in list(sub_onto.classes()): + if condition(sub_ontology_class, **kwargs): + out_classes.append(sub_ontology_class) if first_match_only: return out_classes if len(out_classes): - if print_info: - for out_class in out_classes: cls.print_ontology_class(out_class) + for out_class in out_classes: self.print_ontology_class(out_class) else: - print(f"No class with {kwargs} is found in the ontology {cls.onto}") + rospy.loginfo(f"No class with {kwargs} is found in the ontology {self.main_ontology}") return out_classes - @classmethod - def get_ontology_class(cls, class_name: str, print_info=False) -> Type[owlready2.Thing]: + @staticmethod + def get_ontology_class_by_ontology(ontology: owlready2.Ontology, class_name: str) -> Type[owlready2.Thing]: + """ + Get an ontology class if it exists in a given ontology + + :param ontology: an ontology instance + :return: The ontology class if it exists under the namespace of the given ontology, None otherwise + """ + return getattr(ontology, class_name) if ontology and hasattr(ontology, class_name) else None + + def get_ontology_class(self, class_name: str) -> Type[owlready2.Thing]: """ Get an ontology class by name :param class_name: name of the searched-for ontology class - :param print_info: print essential information of the class (super/sub-classes, ancestors, properties, etc.) :return: The ontology class of the given name if existing else None """ - def is_matching_class_name(onto_class: Type[owlready2.Thing], onto_class_name: str): - return onto_class.name == onto_class_name + def is_matching_class_name(ontology_class: Type[owlready2.Thing], ontology_class_name: str): + return ontology_class.name == ontology_class_name - found_classes = cls.get_ontology_classes_by_condition(condition=is_matching_class_name, - onto_class_name=class_name, - print_info=print_info, first_match_only=True) + found_classes = self.get_ontology_classes_by_condition(condition=is_matching_class_name, + ontology_class_name=class_name, + first_match_only=True) return found_classes[0] if len(found_classes) > 0 else None - @classmethod - def get_ontology_classes_by_namespace(cls, onto_namespace: str, print_info=False) -> List[Type[owlready2.Thing]]: + def get_ontology_classes_by_namespace(self, ontology_namespace: str) -> List[ + Type[owlready2.Thing]]: """ Get all ontologies classes by namespace - :param onto_namespace: namespace of the searched-for ontology classes - :param print_info: whether to print the found class info + :param ontology_namespace: namespace of the searched-for ontology classes :return: A list of the ontology classes under the given namespace """ - def is_matching_onto_namespace(onto_class: Type[owlready2.Thing], ontology_namespace: str): - return onto_class.namespace.name == ontology_namespace + def is_matching_ontology_namespace(ontology_class: Type[owlready2.Thing], main_ontology_namespace: str): + return ontology_class.namespace.name == main_ontology_namespace - return cls.get_ontology_classes_by_condition(condition=is_matching_onto_namespace, - ontology_namespace=onto_namespace, - print_info=print_info) + return self.get_ontology_classes_by_condition(condition=is_matching_ontology_namespace, + main_ontology_namespace=ontology_namespace) - @classmethod - def get_ontology_classes_by_subname(cls, class_subname: str, print_info=False) -> List[Type[owlready2.Thing]]: + def get_ontology_classes_by_subname(self, class_subname: str) -> List[Type[owlready2.Thing]]: """ Get all ontologies classes by subname :param class_subname: a string as part of the full names of the searched-for ontology classes - :param print_info: whether to print the found class info :return: A list of the ontology classes of which the name contains the given subname """ - def is_matching_class_subname(onto_class: Type[owlready2.Thing], onto_class_subname: str): - return onto_class_subname.lower() in onto_class.name.lower() + def is_matching_class_subname(ontology_class: Type[owlready2.Thing], ontology_class_subname: str): + return ontology_class_subname.lower() in ontology_class.name.lower() - return cls.get_ontology_classes_by_condition(condition=is_matching_class_subname, - onto_class_subname=class_subname, - print_info=print_info) + return self.get_ontology_classes_by_condition(condition=is_matching_class_subname, + ontology_class_subname=class_subname) - @classmethod - def get_ontology_descendant_classes(cls, ancestor_class: Type[owlready2.Thing], class_subname: str = "")\ + def get_ontology_descendant_classes(self, ancestor_class: Type[owlready2.Thing], class_subname: str = "") \ -> List[Type[owlready2.Thing]]: """ Get ontology descendant classes of an ancestor class given descendant class subname @@ -277,92 +321,93 @@ def get_ontology_descendant_classes(cls, ancestor_class: Type[owlready2.Thing], :param class_subname: a string as part of the ancestor class full name :return: A list of the ontology descendant classes """ - return [onto_class for onto_class in cls.onto.classes() - if (class_subname.lower() in onto_class.name.lower()) and - (ancestor_class in onto_class.ancestors())] + return [ontology_class for ontology_class in self.main_ontology.classes() + if (class_subname.lower() in ontology_class.name.lower()) and + (ancestor_class in ontology_class.ancestors())] - @classmethod - def create_ontology_triple_classes(cls, subject_class_name: str, object_class_name: str, + def create_ontology_triple_classes(self, subject_class_name: str, object_class_name: str, predicate_name: str, inverse_predicate_name: str, - onto_subject_parent_class: Optional[Type[owlready2.Thing]] = None, - onto_object_parent_class: Optional[Type[owlready2.Thing]] = None, - onto_property_parent_class: Optional[Type[ + ontology_subject_parent_class: Optional[Type[owlready2.Thing]] = None, + ontology_object_parent_class: Optional[Type[owlready2.Thing]] = None, + ontology_property_parent_class: Optional[Type[ owlready2.Property]] = owlready2.ObjectProperty, - onto_inverse_property_parent_class: Optional[Type[ + ontology_inverse_property_parent_class: Optional[Type[ owlready2.Property]] = owlready2.ObjectProperty): """ Dynamically create ontology triple classes under same namespace with the main ontology, - aka subject, predicate, object, with relation among them + as known as {subject, predicate, object}, with the relations among them :param subject_class_name: name of the subject class :param object_class_name: name of the object class :param predicate_name: name of predicate class, also used as a Python attribute of the subject class to query object instances :param inverse_predicate_name: name of inverse predicate - :param onto_subject_parent_class: a parent class of the subject class - :param onto_object_parent_class: a parent class of the object class - :param onto_property_parent_class: a parent ontology property class, default: owlready2.ObjectProperty - :param onto_inverse_property_parent_class: a parent ontology inverse property class, default: owlready2.ObjectProperty + :param ontology_subject_parent_class: a parent class of the subject class + :param ontology_object_parent_class: a parent class of the object class + :param ontology_property_parent_class: a parent ontology property class, default: owlready2.ObjectProperty + :param ontology_inverse_property_parent_class: a parent ontology inverse property class, default: owlready2.ObjectProperty """ - # This context manager ensures all classes created here-in share the same namepsace with `cls.onto` - with cls.onto: + # This context manager ensures all classes created here-in share the same namepsace with `self.main_ontology` + with self.main_ontology: # Subject - onto_subject_class = cls.create_ontology_concept_class(subject_class_name, onto_subject_parent_class) + ontology_subject_class = self.create_ontology_concept_class(subject_class_name, + ontology_subject_parent_class) # Object - onto_object_class = cls.create_ontology_concept_class(object_class_name, onto_object_parent_class) + ontology_object_class = self.create_ontology_concept_class(object_class_name, ontology_object_parent_class) # Predicate - onto_predicate_class = cls.create_ontology_property_class("OntologyPredicate", - onto_property_parent_class) - onto_predicate_class.domain = [onto_subject_class] - onto_predicate_class.range = [onto_object_class] - onto_predicate_class.python_name = predicate_name + ontology_predicate_class = self.create_ontology_property_class("OntologyPredicate", + ontology_property_parent_class) + ontology_predicate_class.domain = [ontology_subject_class] + ontology_predicate_class.range = [ontology_object_class] + ontology_predicate_class.python_name = predicate_name # Inverse Predicate - onto_inverse_predicate = cls.create_ontology_property_class("OntologyInversePredicate", - onto_inverse_property_parent_class) - onto_inverse_predicate.inverse_property = onto_predicate_class - onto_inverse_predicate.python_name = inverse_predicate_name - - @classmethod - def create_ontology_linked_designator(cls, designator_name: str, designator_class: Type[DesignatorDescription], - onto_concept_name: str, onto_parent_class: Optional[Type[owlready2.Thing]] = None)\ + ontology_inverse_predicate = self.create_ontology_property_class("OntologyInversePredicate", + ontology_inverse_property_parent_class) + ontology_inverse_predicate.inverse_property = ontology_predicate_class + ontology_inverse_predicate.python_name = inverse_predicate_name + + def create_ontology_linked_designator(self, designator_name: str, designator_class: Type[DesignatorDescription], + ontology_concept_name: str, + ontology_parent_class: Optional[Type[owlready2.Thing]] = None) \ -> DesignatorDescription: """ Create an object designator linked to a given ontology concept :param designator_name: Designator name :param designator_class: Designator class - :param onto_concept_name: Ontology concept name - :param onto_parent_class: Parent ontology class from which the class of designator inherits + :param ontology_concept_name: Ontology concept name + :param ontology_parent_class: Parent ontology class from which the class of designator inherits :return: An object designator associated with an ontology concept """ - onto_concept_class = cls.create_ontology_concept_class(onto_concept_name, onto_parent_class) - return cls.create_ontology_linked_designator_by_concept(designator_name, designator_class, onto_concept_class) + ontology_concept_class = self.create_ontology_concept_class(ontology_concept_name, ontology_parent_class) + return self.create_ontology_linked_designator_by_concept(designator_name, designator_class, + ontology_concept_class) - @classmethod - def create_ontology_linked_designator_by_concept(cls, designator_name: str, + def create_ontology_linked_designator_by_concept(self, designator_name: str, designator_class: Type[DesignatorDescription], - onto_concept_class: Type[owlready2.Thing]) -> DesignatorDescription: + ontology_concept_class: Type[ + owlready2.Thing]) -> DesignatorDescription: """ Create an object designator that belongs to a given ontology concept class :param designator_name: Designator name :param designator_class: Designator class - :param onto_concept_class: Ontology concept class which the output designator is associated with + :param ontology_concept_class: Ontology concept class which the output designator is associated with :return: An object designator associated with the given ontology concept class """ designator = designator_class(names=[designator_name]) if issubclass(designator_class, ObjectDesignatorDescription) \ - else designator_class() - desig_onto_concept = onto_concept_class(name=f'{designator_name}_concept') - cls.set_ontology_concept_designator_connection(designator, desig_onto_concept) + else designator_class() + designator_ontology_concept = ontology_concept_class(name=f'{designator_name}_concept') + self.set_ontology_concept_designator_connection(designator, designator_ontology_concept) return designator - @classmethod - def set_ontology_concept_designator_connection(cls, designator: DesignatorDescription, + @staticmethod + def set_ontology_concept_designator_connection(designator: DesignatorDescription, ontology_concept: owlready2.Thing): """ Set two-way connection between a designator and an ontology concept @@ -370,11 +415,11 @@ def set_ontology_concept_designator_connection(cls, designator: DesignatorDescri :param designator: Designator :param ontology_concept: Ontology concept """ - designator.onto_concepts.append(ontology_concept) + designator.ontology_concepts.append(ontology_concept) ontology_concept.designators.append(designator) - @classmethod - def set_ontology_relation(cls, subject_designator: DesignatorDescription, + @staticmethod + def set_ontology_relation(subject_designator: DesignatorDescription, object_designator: DesignatorDescription, predicate_name: str): """ @@ -384,11 +429,14 @@ def set_ontology_relation(cls, subject_designator: DesignatorDescription, :param object_designator: An object designator as the ontology object :param predicate_name: Name of the predicate """ - for subject_onto_concept in subject_designator.onto_concepts: - getattr(subject_onto_concept, predicate_name).extend(object_designator.onto_concepts) + for subject_ontology_concept in subject_designator.ontology_concepts: + if hasattr(subject_ontology_concept, predicate_name): + getattr(subject_ontology_concept, predicate_name).extend(object_designator.ontology_concepts) + else: + rospy.logerr(f"[{subject_ontology_concept.name}] has no predicate [{predicate_name}]") - @classmethod - def get_designators_by_subject_predicate(cls, subject: DesignatorDescription, + @staticmethod + def get_designators_by_subject_predicate(subject: DesignatorDescription, predicate_name: str) -> List[DesignatorDescription]: """ Get list of designators for a given subject designator and predicate @@ -398,110 +446,19 @@ def get_designators_by_subject_predicate(cls, subject: DesignatorDescription, :return: List of object designators """ designators = list(itertools.chain( - *[onto_subject.designators for subject_onto_concept in subject.onto_concepts - for onto_subject in getattr(subject_onto_concept, predicate_name)])) + *[ontology_subject.designators for subject_ontology_concept in subject.ontology_concepts + for ontology_subject in getattr(subject_ontology_concept, predicate_name) + if hasattr(subject_ontology_concept, predicate_name)])) return designators - @classmethod - def create_ontology_object_designator_from_type(cls, object_type: ObjectType, - onto_concept_class=Type[owlready2.Thing]) -> ObjectDesignatorDescription: - obj_type_name = object_type.name.lower() - obj_designator = \ - cls.create_ontology_linked_designator_by_concept(obj_type_name, - ObjectDesignatorDescription, - onto_concept_class) - obj_designator.types = [obj_type_name] - return obj_designator - - @classmethod - def demo_placeable_on_candidates_query(cls): - """ - Demonstrates how to create ontology-based object designators dynamically with ontology relations among them - """ - PLACEABLE_ON_PREDICATE_NAME = "placeable_on" - HOLD_OBJ_PREDICATE_NAME = "hold_obj" - cls.create_ontology_triple_classes(onto_subject_parent_class=cls.onto.Container, - subject_class_name="OntologyPlaceHolderObject", - onto_object_parent_class=cls.onto.PhysicalObject, - object_class_name="OntologyHandheldObject", - predicate_name=PLACEABLE_ON_PREDICATE_NAME, - inverse_predicate_name=HOLD_OBJ_PREDICATE_NAME, - onto_property_parent_class=cls.soma.affordsBearer, - onto_inverse_property_parent_class=cls.soma.isBearerAffordedBy) - - def create_ontology_handheld_object(obj_name: str, onto_parent_class: Type[owlready2.Thing]): - return OntologyManager.create_ontology_linked_designator(designator_name=obj_name, - designator_class=ObjectDesignatorDescription, - onto_concept_name=f"Onto{obj_name}", - onto_parent_class=cls.onto.OntologyHandheldObject) - - # Holdable Objects - cookie_box = create_ontology_handheld_object("cookie_box", cls.onto.OntologyHandheldObject) - egg = create_ontology_handheld_object("egg", cls.onto.OntologyHandheldObject) - - # Placeholder objects - placeholders = [create_ontology_handheld_object(obj_name, cls.onto.OntologyPlaceHolderObject) - for obj_name in ['table', 'stool', 'shelf']] - - egg_tray = create_ontology_handheld_object("egg_tray", cls.onto.OntologyPlaceHolderObject) - - # Create ontology relation between [Place-holders] and [Holdable objs] - for place_holder in placeholders: - cls.set_ontology_relation(subject_designator=cookie_box, object_designator=place_holder, - predicate_name=PLACEABLE_ON_PREDICATE_NAME) - - cls.set_ontology_relation(subject_designator=egg_tray, object_designator=egg, - predicate_name=HOLD_OBJ_PREDICATE_NAME) - - # Make queries for potential designator candidates based on above-set ontology relations among them - print(f"{cookie_box.names}'s placeholder candidates:", - f"""{[placeholder.names for placeholder in - cls.get_designators_by_subject_predicate(subject=cookie_box, predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}""") - - print(f"{egg.names}'s placeholder candidates:", - f"""{[placeholder.names for placeholder in - cls.get_designators_by_subject_predicate(subject=egg, predicate_name=PLACEABLE_ON_PREDICATE_NAME)]}""") - - for place_holder in placeholders: - print(f"{place_holder.names} can hold:", - f"""{[placeholder.names for placeholder in - cls.get_designators_by_subject_predicate(subject=place_holder, - predicate_name=HOLD_OBJ_PREDICATE_NAME)]}""") - - print(f"{egg_tray.names}'s can hold:", - f"""{[placeholder.names for placeholder in - cls.get_designators_by_subject_predicate(subject=egg_tray, - predicate_name=HOLD_OBJ_PREDICATE_NAME)]}""") - - @classmethod - def demo_edible_object_types_query(cls): - generic_edible_class = cls.create_ontology_concept_class('GenericEdible') - - edible_obj_types = [ObjectType.MILK, ObjectType.BREAKFAST_CEREAL] - for object_type in ObjectType: - if object_type in edible_obj_types: - # Create a designator for that edible object - cls.create_ontology_object_designator_from_type(object_type, generic_edible_class) - - print(f"{generic_edible_class.name} object types:") - for edible_onto_concept in generic_edible_class.instances(): - print(edible_onto_concept, [des.types for des in edible_onto_concept.designators]) - - -if __name__ == "__main__": - # Initialize ontologies - OntologyManager(SOMA_HOME_ONTOLOGY) - # Main ontology - onto = OntologyManager.onto - - # Imported ontologies - soma = OntologyManager.soma - dul = OntologyManager.dul - - #print(OntologyManager.get_ontology_classes_by_namespace('SOMA')) - print(OntologyManager.get_ontology_classes_by_subname('Container')) - print(f'Subclasses of {soma.name}.DesignedContainer: ', - OntologyManager.get_ontology_descendant_classes(soma.DesignedContainer)) - - OntologyManager.demo_placeable_on_candidates_query() - OntologyManager.demo_edible_object_types_query() + def create_ontology_object_designator_from_type(self, object_type: ObjectType, + ontology_concept_class=Type[owlready2.Thing]) \ + -> ObjectDesignatorDescription: + object_type_name = object_type.name.lower() + object_designator = \ + self.create_ontology_linked_designator_by_concept(object_type_name, + ObjectDesignatorDescription, + ontology_concept_class) + object_designator.types = [object_type_name] + return object_designator + diff --git a/test/bullet_world_testcase.py b/test/bullet_world_testcase.py index ddf1b0bc9..ae8662044 100644 --- a/test/bullet_world_testcase.py +++ b/test/bullet_world_testcase.py @@ -7,7 +7,7 @@ from pycram.process_module import ProcessModule from pycram.enums import ObjectType from pycram.ros.viz_marker_publisher import VizMarkerPublisher -from pycram.ontology import OntologyManager, SOMA_ONTOLOGY +from pycram.ontology import OntologyManager, SOMA_ONTOLOGY_IRI class BulletWorldTestCase(unittest.TestCase): @@ -23,7 +23,7 @@ def setUpClass(cls): cls.cereal = Object("cereal", ObjectType.BREAKFAST_CEREAL, "breakfast_cereal.stl", pose=Pose([1.3, 0.7, 0.95])) ProcessModule.execution_delay = False cls.viz_marker_publisher = VizMarkerPublisher() - OntologyManager(SOMA_ONTOLOGY) + OntologyManager(SOMA_ONTOLOGY_IRI) def setUp(self): self.world.reset_bullet_world() diff --git a/test/test_action_designator.py b/test/test_action_designator.py index 0ef432817..1f7e53969 100644 --- a/test/test_action_designator.py +++ b/test/test_action_designator.py @@ -19,7 +19,7 @@ class TestActionDesignatorGrounding(BulletWorldTestCase): def test_move_torso(self): description = action_designator.MoveTorsoAction([0.3]) # SOMA ontology seems not provide a corresponding concept yet for MoveTorso - # self.assertIsNotNone(description.onto_concepts) + #self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().position, 0.3) with simulated_robot: description.resolve().perform() @@ -27,7 +27,7 @@ def test_move_torso(self): def test_set_gripper(self): description = action_designator.SetGripperAction(["left"], ["open", "close"]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().motion, "open") self.assertEqual(len(list(iter(description))), 2) @@ -39,20 +39,20 @@ def test_set_gripper(self): def test_release(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.ReleaseAction(["left"], object_description) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().object_designator.name, "milk") def test_grip(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.GripAction(["left"], object_description, [0.5]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().object_designator.name, "milk") def test_park_arms(self): description = action_designator.ParkArmsAction([pycram.enums.Arms.BOTH]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().arm, pycram.enums.Arms.BOTH) with simulated_robot: description.resolve().perform() @@ -63,13 +63,13 @@ def test_park_arms(self): def test_navigate(self): description = action_designator.NavigateAction([Pose([0, 0, 0], [0, 0, 0, 1])]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().target_location, Pose([0, 0, 0], [0, 0, 0, 1])) def test_pick_up(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.PickUpAction(object_description, ["left"], ["front"]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: NavigateActionPerformable(Pose([0.6, 0.4, 0], [0, 0, 0, 1])).perform() @@ -80,7 +80,7 @@ def test_pick_up(self): def test_place(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.PlaceAction(object_description, [Pose([1.3, 1, 0.9], [0, 0, 0, 1])], ["left"]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: NavigateActionPerformable(Pose([0.6, 0.4, 0], [0, 0, 0, 1])).perform() @@ -91,7 +91,7 @@ def test_place(self): def test_look_at(self): description = action_designator.LookAtAction([Pose([1, 0, 1])]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().target, Pose([1, 0, 1])) with simulated_robot: description.resolve().perform() @@ -103,7 +103,7 @@ def test_detect(self): # time.sleep(1) object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.DetectAction(object_description) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: detected_object = description.resolve().perform() @@ -116,14 +116,14 @@ def test_detect(self): def test_open(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.OpenAction(object_description, ["left"], [1]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().object_designator.name, "milk") @unittest.skip def test_close(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.CloseAction(object_description, ["left"]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) self.assertEqual(description.ground().object_designator.name, "milk") def test_transport(self): @@ -132,7 +132,7 @@ def test_transport(self): ["left"], [Pose([-1.35, 0.78, 0.95], [0.0, 0.0, 0.16439898301071468, 0.9863939245479175])]) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) with simulated_robot: action_designator.MoveTorsoAction([0.2]).resolve().perform() description.resolve().perform() @@ -145,7 +145,7 @@ def test_grasping(self): self.robot.set_pose(Pose([-2.14, 1.06, 0])) milk_desig = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.GraspingAction(["right"], milk_desig) - self.assertIsNotNone(description.onto_concepts) + self.assertTrue(description.ontology_concepts) with simulated_robot: description.resolve().perform() dist = np.linalg.norm( From c256249e43d795a7f23422cb5dbcc8b4626faf3c Mon Sep 17 00:00:00 2001 From: duc than Date: Fri, 5 Apr 2024 22:44:30 +0200 Subject: [PATCH 07/26] new-pycram-ci.yml install ontology deps --- .github/workflows/new-pycram-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/new-pycram-ci.yml b/.github/workflows/new-pycram-ci.yml index 1fa0f8839..1a7a2f710 100644 --- a/.github/workflows/new-pycram-ci.yml +++ b/.github/workflows/new-pycram-ci.yml @@ -61,6 +61,7 @@ jobs: cd /opt/ros/overlay_ws/src/pycram pip3 install -r requirements.txt pip3 install -r requirements-resolver.txt + pip3 install -r requirements-ontology.txt - name: Install pytest & pyjpt run: | From 5db24bbf7004c20b853467304f4de600756c9ac0 Mon Sep 17 00:00:00 2001 From: duc than Date: Fri, 5 Apr 2024 22:49:50 +0200 Subject: [PATCH 08/26] doc/source/examples.rst Add Ontology notebook section --- doc/source/examples.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/source/examples.rst b/doc/source/examples.rst index 111a96eee..d00fa286a 100644 --- a/doc/source/examples.rst +++ b/doc/source/examples.rst @@ -66,3 +66,9 @@ Examples notebooks/orm_example notebooks/migrate_neems notebooks/orm_querying_examples + +Ontology +========== + +.. nbgallery:: + notebooks/ontology \ No newline at end of file From 6c469803789f15711f505fe016a69e9de02d30f3 Mon Sep 17 00:00:00 2001 From: duc than Date: Fri, 5 Apr 2024 23:05:29 +0200 Subject: [PATCH 09/26] update after merge from dev --- examples/ontology.ipynb | 19847 +++++++++++++++++++------------------- src/pycram/ontology.py | 2 +- 2 files changed, 9927 insertions(+), 9922 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index d0794f481..e4cf3b823 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:14.164862Z", - "start_time": "2024-04-05T20:40:13.620456Z" + "end_time": "2024-04-05T21:04:23.073136Z", + "start_time": "2024-04-05T21:04:22.510921Z" } }, "outputs": [ @@ -31,13 +31,13 @@ "name": "stderr", "output_type": "stream", "text": [ - "pybullet build time: Nov 28 2023 23:51:11\n", "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='base_laser_link']\n", "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n", - "[WARN] [1712349614.148390]: Failed to import Giskard messages\n", - "[WARN] [1712349614.158395]: Could not import RoboKudo messages, RoboKudo interface could not be initialized\n" + "Failed to import Giskard messages\n", + "Could not import RoboKudo messages, RoboKudo interface could not be initialized\n", + "pybullet build time: Nov 28 2023 23:51:11\n" ] } ], @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:14.172519Z", - "start_time": "2024-04-05T20:40:14.165528Z" + "end_time": "2024-04-05T21:04:23.086096Z", + "start_time": "2024-04-05T21:04:23.076074Z" } }, "outputs": [], @@ -107,8 +107,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:14.825662Z", - "start_time": "2024-04-05T20:40:14.173116Z" + "end_time": "2024-04-05T21:04:23.549981Z", + "start_time": "2024-04-05T21:04:23.086539Z" } }, "outputs": [ @@ -116,12 +116,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712349614.821621]: Main Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712349614.822448]: Main Ontology namespace: SOMA-HOME\n", - "[INFO] [1712349614.822881]: Loaded ontologies:\n", - "[INFO] [1712349614.823264]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712349614.823646]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712349614.824033]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712351063.545588]: Main Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712351063.546573]: Main Ontology namespace: SOMA-HOME\n", + "[INFO] [1712351063.547160]: Loaded ontologies:\n", + "[INFO] [1712351063.547561]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712351063.547945]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712351063.548321]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -164,8 +164,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.059825Z", - "start_time": "2024-04-05T20:40:14.826399Z" + "end_time": "2024-04-05T21:04:26.790724Z", + "start_time": "2024-04-05T21:04:23.550836Z" } }, "outputs": [ @@ -173,9834 +173,9834 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712349614.944856]: -------------------\n", - "[INFO] [1712349614.945597]: SOMA.DesignedContainer \n", - "[INFO] [1712349614.946100]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712349614.946635]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349614.947097]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", - "[INFO] [1712349614.947604]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.005336]: Instances: []\n", - "[INFO] [1712349615.005853]: Direct Instances: []\n", - "[INFO] [1712349615.006306]: Inverse Restrictions: []\n", - "[INFO] [1712349615.007651]: -------------------\n", - "[INFO] [1712349615.008082]: DUL.PhysicalObject \n", - "[INFO] [1712349615.008497]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349615.008895]: Ancestors: {DUL.Object, DUL.PhysicalObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.009323]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712349615.009799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.010595]: Instances: []\n", - "[INFO] [1712349615.011006]: Direct Instances: []\n", - "[INFO] [1712349615.016625]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", - "[INFO] [1712349615.017087]: -------------------\n", - "[INFO] [1712349615.017401]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712349615.017682]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349615.018025]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.018395]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712349615.018718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.019246]: Instances: []\n", - "[INFO] [1712349615.019542]: Direct Instances: []\n", - "[INFO] [1712349615.019847]: Inverse Restrictions: []\n", - "[INFO] [1712349615.020114]: -------------------\n", - "[INFO] [1712349615.020373]: DUL.PhysicalObject \n", - "[INFO] [1712349615.020624]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349615.020890]: Ancestors: {DUL.Object, DUL.PhysicalObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.021186]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712349615.021503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.022306]: Instances: []\n", - "[INFO] [1712349615.022688]: Direct Instances: []\n", - "[INFO] [1712349615.025215]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", - "[INFO] [1712349615.025532]: -------------------\n", - "[INFO] [1712349615.025799]: DUL.PhysicalObject \n", - "[INFO] [1712349615.026055]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349615.026309]: Ancestors: {DUL.Object, DUL.PhysicalObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.026562]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712349615.026868]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.027615]: Instances: []\n", - "[INFO] [1712349615.027898]: Direct Instances: []\n", - "[INFO] [1712349615.030410]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", - "[INFO] [1712349615.030711]: -------------------\n", - "[INFO] [1712349615.030987]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712349615.031250]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349615.031514]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.031786]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712349615.032088]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.032626]: Instances: []\n", - "[INFO] [1712349615.032954]: Direct Instances: []\n", - "[INFO] [1712349615.033251]: Inverse Restrictions: []\n", - "[INFO] [1712349615.034296]: -------------------\n", - "[INFO] [1712349615.034612]: SOMA.Affordance \n", - "[INFO] [1712349615.034930]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712349615.035235]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Affordance, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.035501]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712349615.035823]: Properties: [rdf-schema.comment, SOMA.definesTrigger, SOMA.definesBearer, DUL.definesTask, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.036341]: Instances: []\n", - "[INFO] [1712349615.036618]: Direct Instances: []\n", - "[INFO] [1712349615.037740]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712349615.038025]: -------------------\n", - "[INFO] [1712349615.038287]: SOMA.Disposition \n", - "[INFO] [1712349615.039962]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712349615.040304]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.040596]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712349615.040908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712349615.041473]: Instances: []\n", - "[INFO] [1712349615.041756]: Direct Instances: []\n", - "[INFO] [1712349615.042075]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712349615.042328]: -------------------\n", - "[INFO] [1712349615.042575]: SOMA.Setpoint \n", - "[INFO] [1712349615.042838]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712349615.043121]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, SOMA.Setpoint, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.043373]: Subclasses: []\n", - "[INFO] [1712349615.043662]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.044177]: Instances: []\n", - "[INFO] [1712349615.044462]: Direct Instances: []\n", - "[INFO] [1712349615.044797]: Inverse Restrictions: []\n", - "[INFO] [1712349615.045077]: -------------------\n", - "[INFO] [1712349615.045328]: SOMA.Answer \n", - "[INFO] [1712349615.045577]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712349615.045899]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, DUL.Entity, owl.Thing, SOMA.Answer, SOMA.Message, SOMA.Item}\n", - "[INFO] [1712349615.046156]: Subclasses: []\n", - "[INFO] [1712349615.046454]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.046957]: Instances: []\n", - "[INFO] [1712349615.047233]: Direct Instances: []\n", - "[INFO] [1712349615.047892]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712349615.048152]: -------------------\n", - "[INFO] [1712349615.048395]: SOMA.Message \n", - "[INFO] [1712349615.048677]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712349615.049049]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Message, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349615.049482]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712349615.049936]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", - "[INFO] [1712349615.050566]: Instances: []\n", - "[INFO] [1712349615.050958]: Direct Instances: []\n", - "[INFO] [1712349615.052869]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349615.053251]: -------------------\n", - "[INFO] [1712349615.053541]: SOMA.ProcessType \n", - "[INFO] [1712349615.053845]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712349615.054248]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.054659]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712349615.055012]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.055607]: Instances: []\n", - "[INFO] [1712349615.055882]: Direct Instances: []\n", - "[INFO] [1712349615.056223]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712349615.056488]: -------------------\n", - "[INFO] [1712349615.056740]: SOMA.OrderedElement \n", - "[INFO] [1712349615.057030]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712349615.058356]: Ancestors: {owl.Thing, SOMA.OrderedElement, SOMA.Singleton}\n", - "[INFO] [1712349615.058675]: Subclasses: []\n", - "[INFO] [1712349615.058996]: Properties: [rdf-schema.isDefinedBy, SOMA.isOrderedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.059499]: Instances: []\n", - "[INFO] [1712349615.059767]: Direct Instances: []\n", - "[INFO] [1712349615.060157]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712349615.060431]: -------------------\n", - "[INFO] [1712349615.060687]: SOMA.System \n", - "[INFO] [1712349615.060951]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712349615.061229]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.System}\n", - "[INFO] [1712349615.061492]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712349615.061808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.062339]: Instances: []\n", - "[INFO] [1712349615.062606]: Direct Instances: []\n", - "[INFO] [1712349615.062866]: Inverse Restrictions: []\n", - "[INFO] [1712349615.063114]: -------------------\n", - "[INFO] [1712349615.063369]: SOMA.Binding \n", - "[INFO] [1712349615.064077]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712349615.064385]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.064670]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712349615.064998]: Properties: [rdf-schema.comment, Inverse(SOMA.hasBinding), SOMA.hasBindingFiller, SOMA.hasBindingRole, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.065516]: Instances: []\n", - "[INFO] [1712349615.065785]: Direct Instances: []\n", - "[INFO] [1712349615.066070]: Inverse Restrictions: []\n", - "[INFO] [1712349615.066321]: -------------------\n", - "[INFO] [1712349615.066574]: SOMA.Joint \n", - "[INFO] [1712349615.066853]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712349615.067739]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349615.068031]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712349615.068354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasChildLink, SOMA.hasParentLink]\n", - "[INFO] [1712349615.068903]: Instances: []\n", - "[INFO] [1712349615.069215]: Direct Instances: []\n", - "[INFO] [1712349615.069507]: Inverse Restrictions: []\n", - "[INFO] [1712349615.069765]: -------------------\n", - "[INFO] [1712349615.070017]: SOMA.Color \n", - "[INFO] [1712349615.070302]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712349615.070592]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Color, owl.Thing, SOMA.Extrinsic}\n", - "[INFO] [1712349615.070869]: Subclasses: []\n", - "[INFO] [1712349615.071188]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.071689]: Instances: []\n", - "[INFO] [1712349615.071954]: Direct Instances: []\n", - "[INFO] [1712349615.072260]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712349615.072530]: -------------------\n", - "[INFO] [1712349615.072792]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712349615.073045]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349615.074056]: Ancestors: {SOMA.ExecutionStateRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.074361]: Subclasses: []\n", - "[INFO] [1712349615.074694]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.075226]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712349615.075533]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712349615.075821]: Inverse Restrictions: []\n", - "[INFO] [1712349615.076079]: -------------------\n", - "[INFO] [1712349615.076329]: SOMA.Feature \n", - "[INFO] [1712349615.076596]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712349615.076875]: Ancestors: {DUL.Object, owl.Thing, DUL.Entity, SOMA.Feature}\n", - "[INFO] [1712349615.077152]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712349615.077475]: Properties: [SOMA.isFeatureOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.077981]: Instances: []\n", - "[INFO] [1712349615.078259]: Direct Instances: []\n", - "[INFO] [1712349615.078561]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712349615.078815]: -------------------\n", - "[INFO] [1712349615.079061]: SOMA.FrictionAttribute \n", - "[INFO] [1712349615.079332]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712349615.079612]: Ancestors: {SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.079898]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712349615.080209]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasFrictionValue, rdf-schema.label]\n", - "[INFO] [1712349615.080715]: Instances: []\n", - "[INFO] [1712349615.080979]: Direct Instances: []\n", - "[INFO] [1712349615.081255]: Inverse Restrictions: []\n", - "[INFO] [1712349615.081505]: -------------------\n", - "[INFO] [1712349615.081748]: SOMA.SituationTransition \n", - "[INFO] [1712349615.081990]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712349615.082270]: Ancestors: {DUL.Situation, SOMA.SituationTransition, DUL.Entity, owl.Thing, DUL.Transition}\n", - "[INFO] [1712349615.082535]: Subclasses: []\n", - "[INFO] [1712349615.082837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.083341]: Instances: []\n", - "[INFO] [1712349615.083622]: Direct Instances: []\n", - "[INFO] [1712349615.085383]: Inverse Restrictions: []\n", - "[INFO] [1712349615.085654]: -------------------\n", - "[INFO] [1712349615.085903]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712349615.086146]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712349615.087446]: Ancestors: {SOMA.NonmanifestedSituation, owl.Thing, DUL.Situation, DUL.Entity}\n", - "[INFO] [1712349615.087724]: Subclasses: []\n", - "[INFO] [1712349615.088030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.088531]: Instances: []\n", - "[INFO] [1712349615.088813]: Direct Instances: []\n", - "[INFO] [1712349615.090200]: Inverse Restrictions: []\n", - "[INFO] [1712349615.090470]: -------------------\n", - "[INFO] [1712349615.090714]: SOMA.JointLimit \n", - "[INFO] [1712349615.090956]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712349615.091230]: Ancestors: {SOMA.JointLimit, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.091496]: Subclasses: []\n", - "[INFO] [1712349615.091791]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.092286]: Instances: []\n", - "[INFO] [1712349615.092544]: Direct Instances: []\n", - "[INFO] [1712349615.092962]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712349615.093367]: -------------------\n", - "[INFO] [1712349615.093744]: SOMA.JointState \n", - "[INFO] [1712349615.094157]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712349615.094552]: Ancestors: {SOMA.JointState, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.094842]: Subclasses: []\n", - "[INFO] [1712349615.095163]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasJointPosition, rdf-schema.isDefinedBy, SOMA.hasJointVelocity]\n", - "[INFO] [1712349615.095669]: Instances: []\n", - "[INFO] [1712349615.095931]: Direct Instances: []\n", - "[INFO] [1712349615.096266]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712349615.096529]: -------------------\n", - "[INFO] [1712349615.096784]: SOMA.Localization \n", - "[INFO] [1712349615.097132]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712349615.097446]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Localization, SOMA.Extrinsic}\n", - "[INFO] [1712349615.097737]: Subclasses: []\n", - "[INFO] [1712349615.098053]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.098558]: Instances: []\n", - "[INFO] [1712349615.098835]: Direct Instances: []\n", - "[INFO] [1712349615.101039]: Inverse Restrictions: []\n", - "[INFO] [1712349615.101312]: -------------------\n", - "[INFO] [1712349615.101563]: SOMA.MassAttribute \n", - "[INFO] [1712349615.101842]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712349615.102123]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.MassAttribute, owl.Thing}\n", - "[INFO] [1712349615.102377]: Subclasses: []\n", - "[INFO] [1712349615.102669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label]\n", - "[INFO] [1712349615.103173]: Instances: []\n", - "[INFO] [1712349615.103442]: Direct Instances: []\n", - "[INFO] [1712349615.103706]: Inverse Restrictions: []\n", - "[INFO] [1712349615.103954]: -------------------\n", - "[INFO] [1712349615.104198]: SOMA.NetForce \n", - "[INFO] [1712349615.104481]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712349615.104802]: Ancestors: {SOMA.ForceAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.NetForce, owl.Thing}\n", - "[INFO] [1712349615.105178]: Subclasses: []\n", - "[INFO] [1712349615.105609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.106155]: Instances: []\n", - "[INFO] [1712349615.106443]: Direct Instances: []\n", - "[INFO] [1712349615.106731]: Inverse Restrictions: []\n", - "[INFO] [1712349615.106994]: -------------------\n", - "[INFO] [1712349615.107248]: SOMA.Succedence \n", - "[INFO] [1712349615.107536]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712349615.107815]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Succedence, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.108082]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712349615.108392]: Properties: [rdf-schema.comment, Inverse(SOMA.hasSuccedence), SOMA.hasSuccessor, SOMA.hasPredecessor, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.108899]: Instances: []\n", - "[INFO] [1712349615.109163]: Direct Instances: []\n", - "[INFO] [1712349615.109415]: Inverse Restrictions: []\n", - "[INFO] [1712349615.109654]: -------------------\n", - "[INFO] [1712349615.109913]: SOMA.Preference \n", - "[INFO] [1712349615.110179]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712349615.110459]: Ancestors: {DUL.Quality, DUL.Entity, SOMA.Preference, SOMA.SocialQuality, owl.Thing}\n", - "[INFO] [1712349615.110705]: Subclasses: []\n", - "[INFO] [1712349615.111011]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.111518]: Instances: []\n", - "[INFO] [1712349615.111785]: Direct Instances: []\n", - "[INFO] [1712349615.112961]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712349615.113314]: -------------------\n", - "[INFO] [1712349615.113593]: SOMA.Shape \n", - "[INFO] [1712349615.113888]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712349615.114195]: Ancestors: {SOMA.PhysicalQuality, SOMA.Shape, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712349615.114467]: Subclasses: []\n", - "[INFO] [1712349615.114773]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.115267]: Instances: []\n", - "[INFO] [1712349615.115526]: Direct Instances: []\n", - "[INFO] [1712349615.117748]: Inverse Restrictions: []\n", - "[INFO] [1712349615.118047]: -------------------\n", - "[INFO] [1712349615.118314]: SOMA.ShapeRegion \n", - "[INFO] [1712349615.118592]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712349615.118869]: Ancestors: {DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349615.119139]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712349615.119447]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.119958]: Instances: []\n", - "[INFO] [1712349615.120226]: Direct Instances: []\n", - "[INFO] [1712349615.120950]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712349615.121240]: -------------------\n", - "[INFO] [1712349615.121503]: SOMA.SoftwareInstance \n", - "[INFO] [1712349615.122154]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712349615.122436]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", - "[INFO] [1712349615.122709]: Subclasses: []\n", - "[INFO] [1712349615.123018]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isDesignedBy, DUL.actsFor, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.123516]: Instances: []\n", - "[INFO] [1712349615.123783]: Direct Instances: []\n", - "[INFO] [1712349615.124475]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712349615.124751]: -------------------\n", - "[INFO] [1712349615.125020]: SOMA.StateType \n", - "[INFO] [1712349615.125304]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712349615.125583]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.125857]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712349615.126164]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.126684]: Instances: []\n", - "[INFO] [1712349615.126954]: Direct Instances: []\n", - "[INFO] [1712349615.127290]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712349615.127556]: -------------------\n", - "[INFO] [1712349615.127808]: SOMA.PhysicalEffector \n", - "[INFO] [1712349615.128073]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712349615.128352]: Ancestors: {SOMA.FunctionalPart, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector}\n", - "[INFO] [1712349615.128610]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712349615.128953]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, Inverse(DUL.hasPart), rdf-schema.label]\n", - "[INFO] [1712349615.129570]: Instances: []\n", - "[INFO] [1712349615.129872]: Direct Instances: []\n", - "[INFO] [1712349615.130150]: Inverse Restrictions: []\n", - "[INFO] [1712349615.130414]: -------------------\n", - "[INFO] [1712349615.130676]: SOMA.QueryingTask \n", - "[INFO] [1712349615.131323]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712349615.131614]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712349615.131872]: Subclasses: []\n", - "[INFO] [1712349615.132171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712349615.132679]: Instances: []\n", - "[INFO] [1712349615.132975]: Direct Instances: []\n", - "[INFO] [1712349615.134395]: Inverse Restrictions: []\n", - "[INFO] [1712349615.134675]: -------------------\n", - "[INFO] [1712349615.134933]: SOMA.Order \n", - "[INFO] [1712349615.135183]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712349615.135458]: Ancestors: {SOMA.Order, DUL.FormalEntity, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.135706]: Subclasses: []\n", - "[INFO] [1712349615.135996]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.orders]\n", - "[INFO] [1712349615.136589]: Instances: []\n", - "[INFO] [1712349615.136882]: Direct Instances: []\n", - "[INFO] [1712349615.137278]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712349615.137553]: -------------------\n", - "[INFO] [1712349615.137808]: SOMA.State \n", - "[INFO] [1712349615.138051]: Super classes: [DUL.Event]\n", - "[INFO] [1712349615.138323]: Ancestors: {owl.Thing, DUL.Entity, SOMA.State, DUL.Event}\n", - "[INFO] [1712349615.138592]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712349615.138889]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.139386]: Instances: []\n", - "[INFO] [1712349615.139655]: Direct Instances: []\n", - "[INFO] [1712349615.140167]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712349615.140423]: -------------------\n", - "[INFO] [1712349615.140662]: SOMA.Transient \n", - "[INFO] [1712349615.140933]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712349615.141210]: Ancestors: {SOMA.Transient, owl.Thing, DUL.Object, DUL.Entity}\n", - "[INFO] [1712349615.141468]: Subclasses: []\n", - "[INFO] [1712349615.141756]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.transitionsFrom]\n", - "[INFO] [1712349615.142246]: Instances: []\n", - "[INFO] [1712349615.142518]: Direct Instances: []\n", - "[INFO] [1712349615.142781]: Inverse Restrictions: []\n", - "[INFO] [1712349615.143022]: -------------------\n", - "[INFO] [1712349615.143265]: SOMA.ColorRegion \n", - "[INFO] [1712349615.143504]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712349615.143768]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, owl.Thing}\n", - "[INFO] [1712349615.144037]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712349615.144335]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.144851]: Instances: []\n", - "[INFO] [1712349615.145188]: Direct Instances: []\n", - "[INFO] [1712349615.145541]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712349615.146089]: -------------------\n", - "[INFO] [1712349615.146422]: SOMA.ForceAttribute \n", - "[INFO] [1712349615.146785]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712349615.147066]: Ancestors: {SOMA.ForceAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.147336]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712349615.147726]: Properties: [SOMA.hasForceValue, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.148461]: Instances: []\n", - "[INFO] [1712349615.148840]: Direct Instances: []\n", - "[INFO] [1712349615.149131]: Inverse Restrictions: []\n", - "[INFO] [1712349615.149420]: -------------------\n", - "[INFO] [1712349615.149687]: SOMA.API_Specification \n", - "[INFO] [1712349615.149947]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712349615.150250]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712349615.150511]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712349615.150808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.151310]: Instances: []\n", - "[INFO] [1712349615.151579]: Direct Instances: []\n", - "[INFO] [1712349615.151834]: Inverse Restrictions: []\n", - "[INFO] [1712349615.152072]: -------------------\n", - "[INFO] [1712349615.152311]: SOMA.InterfaceSpecification \n", - "[INFO] [1712349615.152561]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712349615.152821]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712349615.153080]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712349615.153372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.153885]: Instances: []\n", - "[INFO] [1712349615.154152]: Direct Instances: []\n", - "[INFO] [1712349615.155199]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712349615.155457]: -------------------\n", - "[INFO] [1712349615.155711]: SOMA.AbductiveReasoning \n", - "[INFO] [1712349615.155965]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712349615.157206]: Ancestors: {SOMA.InformationAcquisition, SOMA.AbductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", - "[INFO] [1712349615.157509]: Subclasses: []\n", - "[INFO] [1712349615.157827]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.158328]: Instances: []\n", - "[INFO] [1712349615.158588]: Direct Instances: []\n", - "[INFO] [1712349615.158841]: Inverse Restrictions: []\n", - "[INFO] [1712349615.159082]: -------------------\n", - "[INFO] [1712349615.159329]: SOMA.Reasoning \n", - "[INFO] [1712349615.159578]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349615.159826]: Ancestors: {owl.Thing, SOMA.Reasoning, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712349615.160080]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712349615.160367]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.160884]: Instances: []\n", - "[INFO] [1712349615.161158]: Direct Instances: []\n", - "[INFO] [1712349615.161421]: Inverse Restrictions: []\n", - "[INFO] [1712349615.161661]: -------------------\n", - "[INFO] [1712349615.161905]: SOMA.Accessor \n", - "[INFO] [1712349615.162162]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712349615.162452]: Ancestors: {DUL.SocialObject, SOMA.Accessor, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.162703]: Subclasses: []\n", - "[INFO] [1712349615.162991]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.163497]: Instances: []\n", - "[INFO] [1712349615.163764]: Direct Instances: []\n", - "[INFO] [1712349615.164020]: Inverse Restrictions: []\n", - "[INFO] [1712349615.164264]: -------------------\n", - "[INFO] [1712349615.164501]: SOMA.Instrument \n", - "[INFO] [1712349615.164741]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712349615.165007]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.165273]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712349615.165568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.166081]: Instances: []\n", - "[INFO] [1712349615.166369]: Direct Instances: []\n", - "[INFO] [1712349615.166772]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349615.167028]: -------------------\n", - "[INFO] [1712349615.167275]: SOMA.Accident \n", - "[INFO] [1712349615.167517]: Super classes: [DUL.Event]\n", - "[INFO] [1712349615.167796]: Ancestors: {SOMA.Accident, owl.Thing, DUL.Entity, DUL.Event}\n", - "[INFO] [1712349615.168051]: Subclasses: []\n", - "[INFO] [1712349615.168352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.168844]: Instances: []\n", - "[INFO] [1712349615.169152]: Direct Instances: []\n", - "[INFO] [1712349615.169426]: Inverse Restrictions: []\n", - "[INFO] [1712349615.169678]: -------------------\n", - "[INFO] [1712349615.169920]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712349615.170347]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712349615.170654]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Plan, owl.Thing, SOMA.ActionExecutionPlan}\n", - "[INFO] [1712349615.170917]: Subclasses: []\n", - "[INFO] [1712349615.171215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.171701]: Instances: []\n", - "[INFO] [1712349615.171974]: Direct Instances: []\n", - "[INFO] [1712349615.172234]: Inverse Restrictions: []\n", - "[INFO] [1712349615.172478]: -------------------\n", - "[INFO] [1712349615.172721]: SOMA.Actuating \n", - "[INFO] [1712349615.172971]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349615.173256]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349615.173546]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712349615.173853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.174384]: Instances: []\n", - "[INFO] [1712349615.174663]: Direct Instances: []\n", - "[INFO] [1712349615.174933]: Inverse Restrictions: []\n", - "[INFO] [1712349615.175182]: -------------------\n", - "[INFO] [1712349615.175424]: SOMA.PhysicalTask \n", - "[INFO] [1712349615.176790]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712349615.177101]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.177405]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712349615.177720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.178326]: Instances: []\n", - "[INFO] [1712349615.178612]: Direct Instances: []\n", - "[INFO] [1712349615.178944]: Inverse Restrictions: []\n", - "[INFO] [1712349615.179200]: -------------------\n", - "[INFO] [1712349615.179450]: SOMA.AestheticDesign \n", - "[INFO] [1712349615.179698]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712349615.179985]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.AestheticDesign, owl.Thing}\n", - "[INFO] [1712349615.180248]: Subclasses: []\n", - "[INFO] [1712349615.180545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.181037]: Instances: []\n", - "[INFO] [1712349615.181296]: Direct Instances: []\n", - "[INFO] [1712349615.181557]: Inverse Restrictions: []\n", - "[INFO] [1712349615.181806]: -------------------\n", - "[INFO] [1712349615.182059]: SOMA.AffordsBeingSitOn \n", - "[INFO] [1712349615.182931]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", - "[INFO] [1712349615.183229]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.AffordsBeingSitOn, SOMA.Affordance, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.183482]: Subclasses: []\n", - "[INFO] [1712349615.183775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", - "[INFO] [1712349615.184279]: Instances: []\n", - "[INFO] [1712349615.184541]: Direct Instances: []\n", - "[INFO] [1712349615.184829]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", - "[INFO] [1712349615.185098]: -------------------\n", - "[INFO] [1712349615.185355]: SOMA.CanBeSatOn \n", - "[INFO] [1712349615.185604]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", - "[INFO] [1712349615.185881]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, SOMA.CanBeSatOn, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.186156]: Subclasses: []\n", - "[INFO] [1712349615.186456]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712349615.186958]: Instances: []\n", - "[INFO] [1712349615.187222]: Direct Instances: []\n", - "[INFO] [1712349615.187751]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712349615.188026]: -------------------\n", - "[INFO] [1712349615.188281]: SOMA.SittingDestination \n", - "[INFO] [1712349615.188542]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", - "[INFO] [1712349615.188841]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.SittingDestination, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Role}\n", - "[INFO] [1712349615.189101]: Subclasses: []\n", - "[INFO] [1712349615.189412]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.189906]: Instances: []\n", - "[INFO] [1712349615.190172]: Direct Instances: []\n", - "[INFO] [1712349615.190447]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712349615.190707]: -------------------\n", - "[INFO] [1712349615.190954]: SOMA.CanSit \n", - "[INFO] [1712349615.191194]: Super classes: [SOMA.Capability]\n", - "[INFO] [1712349615.191466]: Ancestors: {SOMA.PhysicalQuality, SOMA.CanSit, DUL.Quality, SOMA.Capability, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.191730]: Subclasses: []\n", - "[INFO] [1712349615.192026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.192514]: Instances: []\n", - "[INFO] [1712349615.192778]: Direct Instances: []\n", - "[INFO] [1712349615.193071]: Inverse Restrictions: []\n", - "[INFO] [1712349615.193312]: -------------------\n", - "[INFO] [1712349615.193580]: SOMA.AgentRole \n", - "[INFO] [1712349615.193846]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712349615.194128]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.AgentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.194376]: Subclasses: []\n", - "[INFO] [1712349615.194670]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.195174]: Instances: []\n", - "[INFO] [1712349615.195447]: Direct Instances: []\n", - "[INFO] [1712349615.195731]: Inverse Restrictions: []\n", - "[INFO] [1712349615.195975]: -------------------\n", - "[INFO] [1712349615.196216]: SOMA.Sitting \n", - "[INFO] [1712349615.196452]: Super classes: [SOMA.AssumingPose]\n", - "[INFO] [1712349615.196738]: Ancestors: {SOMA.PhysicalTask, SOMA.AssumingPose, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Sitting}\n", - "[INFO] [1712349615.197006]: Subclasses: []\n", - "[INFO] [1712349615.197299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.197787]: Instances: []\n", - "[INFO] [1712349615.198066]: Direct Instances: []\n", - "[INFO] [1712349615.198350]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712349615.198597]: -------------------\n", - "[INFO] [1712349615.198839]: SOMA.CausativeRole \n", - "[INFO] [1712349615.199080]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349615.199369]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.199637]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712349615.199932]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.200430]: Instances: []\n", - "[INFO] [1712349615.200709]: Direct Instances: []\n", - "[INFO] [1712349615.200983]: Inverse Restrictions: []\n", - "[INFO] [1712349615.201229]: -------------------\n", - "[INFO] [1712349615.201472]: SOMA.Agonist \n", - "[INFO] [1712349615.201711]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.201978]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Agonist, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.202245]: Subclasses: []\n", - "[INFO] [1712349615.202546]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.203032]: Instances: []\n", - "[INFO] [1712349615.203295]: Direct Instances: []\n", - "[INFO] [1712349615.203595]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712349615.203856]: -------------------\n", - "[INFO] [1712349615.204103]: SOMA.Patient \n", - "[INFO] [1712349615.204341]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349615.204589]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.204871]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712349615.205182]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.205748]: Instances: []\n", - "[INFO] [1712349615.206029]: Direct Instances: []\n", - "[INFO] [1712349615.206472]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349615.206732]: -------------------\n", - "[INFO] [1712349615.206990]: SOMA.Algorithm \n", - "[INFO] [1712349615.207229]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712349615.207503]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Algorithm, DUL.Plan, owl.Thing}\n", - "[INFO] [1712349615.207766]: Subclasses: []\n", - "[INFO] [1712349615.208060]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.208540]: Instances: []\n", - "[INFO] [1712349615.208802]: Direct Instances: []\n", - "[INFO] [1712349615.209838]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712349615.210111]: -------------------\n", - "[INFO] [1712349615.210366]: SOMA.Alteration \n", - "[INFO] [1712349615.210614]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712349615.210884]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.211158]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712349615.211458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.211963]: Instances: []\n", - "[INFO] [1712349615.212228]: Direct Instances: []\n", - "[INFO] [1712349615.212482]: Inverse Restrictions: []\n", - "[INFO] [1712349615.212723]: -------------------\n", - "[INFO] [1712349615.212977]: SOMA.AlterativeInteraction \n", - "[INFO] [1712349615.213227]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712349615.214098]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.AlterativeInteraction, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.214372]: Subclasses: []\n", - "[INFO] [1712349615.214685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.215189]: Instances: []\n", - "[INFO] [1712349615.215451]: Direct Instances: []\n", - "[INFO] [1712349615.215734]: Inverse Restrictions: []\n", - "[INFO] [1712349615.216000]: -------------------\n", - "[INFO] [1712349615.216262]: SOMA.ForceInteraction \n", - "[INFO] [1712349615.216539]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712349615.216805]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.217062]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712349615.217371]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712349615.217886]: Instances: []\n", - "[INFO] [1712349615.218153]: Direct Instances: []\n", - "[INFO] [1712349615.218410]: Inverse Restrictions: []\n", - "[INFO] [1712349615.218654]: -------------------\n", - "[INFO] [1712349615.218893]: SOMA.PreservativeInteraction \n", - "[INFO] [1712349615.219135]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712349615.219419]: Ancestors: {SOMA.PreservativeInteraction, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.219675]: Subclasses: []\n", - "[INFO] [1712349615.219969]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.220456]: Instances: []\n", - "[INFO] [1712349615.220730]: Direct Instances: []\n", - "[INFO] [1712349615.221034]: Inverse Restrictions: []\n", - "[INFO] [1712349615.221292]: -------------------\n", - "[INFO] [1712349615.221534]: SOMA.AlteredObject \n", - "[INFO] [1712349615.221771]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.222040]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", - "[INFO] [1712349615.222314]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712349615.222609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.223108]: Instances: []\n", - "[INFO] [1712349615.223531]: Direct Instances: []\n", - "[INFO] [1712349615.224339]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712349615.224610]: -------------------\n", - "[INFO] [1712349615.224872]: SOMA.Amateurish \n", - "[INFO] [1712349615.225116]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712349615.225422]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349615.225699]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712349615.226026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.226525]: Instances: []\n", - "[INFO] [1712349615.226790]: Direct Instances: []\n", - "[INFO] [1712349615.227054]: Inverse Restrictions: []\n", - "[INFO] [1712349615.227301]: -------------------\n", - "[INFO] [1712349615.227540]: SOMA.AnsweringTask \n", - "[INFO] [1712349615.227776]: Super classes: [owl.Thing]\n", - "[INFO] [1712349615.230240]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", - "[INFO] [1712349615.230548]: Subclasses: []\n", - "[INFO] [1712349615.230869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712349615.231368]: Instances: []\n", - "[INFO] [1712349615.231632]: Direct Instances: []\n", - "[INFO] [1712349615.232987]: Inverse Restrictions: []\n", - "[INFO] [1712349615.233281]: -------------------\n", - "[INFO] [1712349615.233539]: SOMA.CommandingTask \n", - "[INFO] [1712349615.234179]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712349615.234460]: Ancestors: {SOMA.CommandingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712349615.234726]: Subclasses: []\n", - "[INFO] [1712349615.235027]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.235520]: Instances: []\n", - "[INFO] [1712349615.235779]: Direct Instances: []\n", - "[INFO] [1712349615.236127]: Inverse Restrictions: []\n", - "[INFO] [1712349615.236392]: -------------------\n", - "[INFO] [1712349615.236638]: SOMA.IllocutionaryTask \n", - "[INFO] [1712349615.238028]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712349615.238322]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712349615.238593]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712349615.238896]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.239402]: Instances: []\n", - "[INFO] [1712349615.239799]: Direct Instances: []\n", - "[INFO] [1712349615.240139]: Inverse Restrictions: []\n", - "[INFO] [1712349615.240412]: -------------------\n", - "[INFO] [1712349615.240680]: SOMA.Antagonist \n", - "[INFO] [1712349615.240941]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.241213]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Antagonist, DUL.Role}\n", - "[INFO] [1712349615.241480]: Subclasses: []\n", - "[INFO] [1712349615.241773]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.242265]: Instances: []\n", - "[INFO] [1712349615.242530]: Direct Instances: []\n", - "[INFO] [1712349615.242833]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712349615.243098]: -------------------\n", - "[INFO] [1712349615.243355]: SOMA.Appliance \n", - "[INFO] [1712349615.243598]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712349615.243863]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.244115]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712349615.244416]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.244917]: Instances: []\n", - "[INFO] [1712349615.245183]: Direct Instances: []\n", - "[INFO] [1712349615.245439]: Inverse Restrictions: []\n", - "[INFO] [1712349615.245680]: -------------------\n", - "[INFO] [1712349615.245930]: SOMA.Approaching \n", - "[INFO] [1712349615.246175]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349615.246472]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Approaching, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349615.246736]: Subclasses: []\n", - "[INFO] [1712349615.247036]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.247523]: Instances: []\n", - "[INFO] [1712349615.247778]: Direct Instances: []\n", - "[INFO] [1712349615.248024]: Inverse Restrictions: []\n", - "[INFO] [1712349615.248266]: -------------------\n", - "[INFO] [1712349615.248507]: SOMA.Locomotion \n", - "[INFO] [1712349615.248753]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712349615.249008]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349615.249269]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712349615.249588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.250107]: Instances: []\n", - "[INFO] [1712349615.250376]: Direct Instances: []\n", - "[INFO] [1712349615.250634]: Inverse Restrictions: []\n", - "[INFO] [1712349615.250876]: -------------------\n", - "[INFO] [1712349615.251117]: SOMA.ArchiveFile \n", - "[INFO] [1712349615.251378]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712349615.252614]: Ancestors: {DUL.InformationEntity, SOMA.ArchiveFile, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", - "[INFO] [1712349615.252901]: Subclasses: []\n", - "[INFO] [1712349615.253244]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.253757]: Instances: []\n", - "[INFO] [1712349615.254087]: Direct Instances: []\n", - "[INFO] [1712349615.254362]: Inverse Restrictions: []\n", - "[INFO] [1712349615.254618]: -------------------\n", - "[INFO] [1712349615.254864]: SOMA.ArchiveText \n", - "[INFO] [1712349615.255106]: Super classes: [owl.Thing]\n", - "[INFO] [1712349615.256894]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", - "[INFO] [1712349615.257224]: Subclasses: []\n", - "[INFO] [1712349615.257553]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, DUL.expresses]\n", - "[INFO] [1712349615.258065]: Instances: []\n", - "[INFO] [1712349615.258334]: Direct Instances: []\n", - "[INFO] [1712349615.258695]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712349615.258962]: -------------------\n", - "[INFO] [1712349615.259210]: SOMA.Digital_File \n", - "[INFO] [1712349615.259490]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712349615.259747]: Ancestors: {DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", - "[INFO] [1712349615.260003]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712349615.260300]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasNameString, DUL.realizes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.260816]: Instances: []\n", - "[INFO] [1712349615.261100]: Direct Instances: []\n", - "[INFO] [1712349615.263670]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712349615.263947]: -------------------\n", - "[INFO] [1712349615.264203]: SOMA.ArchiveFormat \n", - "[INFO] [1712349615.264453]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712349615.264760]: Ancestors: {SOMA.System, DUL.SocialObject, SOMA.ArchiveFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349615.265041]: Subclasses: []\n", - "[INFO] [1712349615.265350]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.265846]: Instances: []\n", - "[INFO] [1712349615.266104]: Direct Instances: []\n", - "[INFO] [1712349615.266392]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712349615.266651]: -------------------\n", - "[INFO] [1712349615.266900]: SOMA.File_format \n", - "[INFO] [1712349615.267142]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349615.267391]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712349615.267643]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712349615.267951]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.268451]: Instances: []\n", - "[INFO] [1712349615.268713]: Direct Instances: []\n", - "[INFO] [1712349615.269108]: Inverse Restrictions: []\n", - "[INFO] [1712349615.269435]: -------------------\n", - "[INFO] [1712349615.269718]: SOMA.FileConfiguration \n", - "[INFO] [1712349615.269983]: Super classes: [owl.Thing]\n", - "[INFO] [1712349615.270487]: Ancestors: {owl.Thing, SOMA.FileConfiguration}\n", - "[INFO] [1712349615.270771]: Subclasses: []\n", - "[INFO] [1712349615.271089]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.271585]: Instances: []\n", - "[INFO] [1712349615.271867]: Direct Instances: []\n", - "[INFO] [1712349615.272191]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712349615.272443]: -------------------\n", - "[INFO] [1712349615.272687]: SOMA.Structured_Text \n", - "[INFO] [1712349615.272948]: Super classes: [owl.Thing]\n", - "[INFO] [1712349615.274149]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", - "[INFO] [1712349615.274423]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712349615.274725]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.275239]: Instances: []\n", - "[INFO] [1712349615.275507]: Direct Instances: []\n", - "[INFO] [1712349615.278172]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712349615.278462]: -------------------\n", - "[INFO] [1712349615.278724]: SOMA.AreaSurveying \n", - "[INFO] [1712349615.278977]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712349615.279254]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", - "[INFO] [1712349615.279511]: Subclasses: []\n", - "[INFO] [1712349615.279812]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.280321]: Instances: []\n", - "[INFO] [1712349615.280591]: Direct Instances: []\n", - "[INFO] [1712349615.280852]: Inverse Restrictions: []\n", - "[INFO] [1712349615.281099]: -------------------\n", - "[INFO] [1712349615.281340]: SOMA.Perceiving \n", - "[INFO] [1712349615.281596]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712349615.281854]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712349615.282116]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712349615.282407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.282930]: Instances: []\n", - "[INFO] [1712349615.283221]: Direct Instances: []\n", - "[INFO] [1712349615.283500]: Inverse Restrictions: []\n", - "[INFO] [1712349615.283756]: -------------------\n", - "[INFO] [1712349615.284003]: SOMA.Arm \n", - "[INFO] [1712349615.284246]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712349615.285133]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.Arm, SOMA.PhysicalEffector, SOMA.Limb}\n", - "[INFO] [1712349615.285416]: Subclasses: []\n", - "[INFO] [1712349615.285722]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.286232]: Instances: []\n", - "[INFO] [1712349615.286501]: Direct Instances: []\n", - "[INFO] [1712349615.286791]: Inverse Restrictions: []\n", - "[INFO] [1712349615.287057]: -------------------\n", - "[INFO] [1712349615.287308]: SOMA.Limb \n", - "[INFO] [1712349615.287547]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712349615.287794]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", - "[INFO] [1712349615.288045]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712349615.288348]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.288869]: Instances: []\n", - "[INFO] [1712349615.289136]: Direct Instances: []\n", - "[INFO] [1712349615.289821]: Inverse Restrictions: []\n", - "[INFO] [1712349615.290093]: -------------------\n", - "[INFO] [1712349615.290354]: SOMA.Armchair \n", - "[INFO] [1712349615.290601]: Super classes: [SOMA.DesignedChair]\n", - "[INFO] [1712349615.290887]: Ancestors: {DUL.Object, SOMA.Armchair, DUL.Entity, owl.Thing, SOMA.DesignedChair, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.291158]: Subclasses: []\n", - "[INFO] [1712349615.291458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.291950]: Instances: []\n", - "[INFO] [1712349615.292212]: Direct Instances: []\n", - "[INFO] [1712349615.292463]: Inverse Restrictions: []\n", - "[INFO] [1712349615.292715]: -------------------\n", - "[INFO] [1712349615.292961]: SOMA.DesignedChair \n", - "[INFO] [1712349615.293204]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712349615.293450]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.DesignedChair, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.293694]: Subclasses: [SOMA.Armchair]\n", - "[INFO] [1712349615.293992]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", - "[INFO] [1712349615.294484]: Instances: []\n", - "[INFO] [1712349615.294737]: Direct Instances: []\n", - "[INFO] [1712349615.294987]: Inverse Restrictions: []\n", - "[INFO] [1712349615.295236]: -------------------\n", - "[INFO] [1712349615.295480]: SOMA.Arranging \n", - "[INFO] [1712349615.295716]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712349615.295991]: Ancestors: {SOMA.Arranging, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.296269]: Subclasses: []\n", - "[INFO] [1712349615.296580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.297119]: Instances: []\n", - "[INFO] [1712349615.297452]: Direct Instances: []\n", - "[INFO] [1712349615.297738]: Inverse Restrictions: []\n", - "[INFO] [1712349615.298002]: -------------------\n", - "[INFO] [1712349615.298295]: SOMA.Constructing \n", - "[INFO] [1712349615.298589]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349615.298853]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.299112]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712349615.299447]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.299960]: Instances: []\n", - "[INFO] [1712349615.300229]: Direct Instances: []\n", - "[INFO] [1712349615.300488]: Inverse Restrictions: []\n", - "[INFO] [1712349615.300738]: -------------------\n", - "[INFO] [1712349615.300997]: SOMA.ArtificialAgent \n", - "[INFO] [1712349615.301247]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712349615.301528]: Ancestors: {DUL.Agent, DUL.Object, DUL.Entity, DUL.PhysicalObject, SOMA.ArtificialAgent, DUL.PhysicalAgent, owl.Thing}\n", - "[INFO] [1712349615.301778]: Subclasses: []\n", - "[INFO] [1712349615.302073]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.302610]: Instances: []\n", - "[INFO] [1712349615.302904]: Direct Instances: []\n", - "[INFO] [1712349615.303169]: Inverse Restrictions: []\n", - "[INFO] [1712349615.303419]: -------------------\n", - "[INFO] [1712349615.303666]: SOMA.Assembling \n", - "[INFO] [1712349615.303917]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712349615.304192]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Assembling, owl.Thing}\n", - "[INFO] [1712349615.304439]: Subclasses: []\n", - "[INFO] [1712349615.304725]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.305239]: Instances: []\n", - "[INFO] [1712349615.305527]: Direct Instances: []\n", - "[INFO] [1712349615.305789]: Inverse Restrictions: []\n", - "[INFO] [1712349615.306037]: -------------------\n", - "[INFO] [1712349615.306273]: SOMA.AssertionTask \n", - "[INFO] [1712349615.306908]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712349615.307208]: Ancestors: {SOMA.AssertionTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712349615.307476]: Subclasses: []\n", - "[INFO] [1712349615.307775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.308267]: Instances: []\n", - "[INFO] [1712349615.308527]: Direct Instances: []\n", - "[INFO] [1712349615.308796]: Inverse Restrictions: []\n", - "[INFO] [1712349615.309050]: -------------------\n", - "[INFO] [1712349615.309295]: SOMA.DeclarativeClause \n", - "[INFO] [1712349615.309533]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712349615.309826]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DeclarativeClause, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", - "[INFO] [1712349615.310092]: Subclasses: []\n", - "[INFO] [1712349615.310394]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.310885]: Instances: []\n", - "[INFO] [1712349615.311141]: Direct Instances: []\n", - "[INFO] [1712349615.311433]: Inverse Restrictions: []\n", - "[INFO] [1712349615.311695]: -------------------\n", - "[INFO] [1712349615.311944]: SOMA.AssumingArmPose \n", - "[INFO] [1712349615.312181]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712349615.312446]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.AssumingArmPose}\n", - "[INFO] [1712349615.312696]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712349615.313000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.313520]: Instances: []\n", - "[INFO] [1712349615.313787]: Direct Instances: []\n", - "[INFO] [1712349615.314047]: Inverse Restrictions: []\n", - "[INFO] [1712349615.314285]: -------------------\n", - "[INFO] [1712349615.314523]: SOMA.AssumingPose \n", - "[INFO] [1712349615.314778]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349615.315035]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.315288]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712349615.315575]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.316110]: Instances: []\n", - "[INFO] [1712349615.316401]: Direct Instances: []\n", - "[INFO] [1712349615.316673]: Inverse Restrictions: []\n", - "[INFO] [1712349615.316924]: -------------------\n", - "[INFO] [1712349615.317170]: SOMA.AttentionShift \n", - "[INFO] [1712349615.317426]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712349615.317710]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.AttentionShift, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349615.317972]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712349615.318263]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.318759]: Instances: []\n", - "[INFO] [1712349615.319038]: Direct Instances: []\n", - "[INFO] [1712349615.319312]: Inverse Restrictions: []\n", - "[INFO] [1712349615.319562]: -------------------\n", - "[INFO] [1712349615.319805]: SOMA.MentalTask \n", - "[INFO] [1712349615.320067]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712349615.320341]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349615.320608]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712349615.320910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.321423]: Instances: []\n", - "[INFO] [1712349615.321703]: Direct Instances: []\n", - "[INFO] [1712349615.322002]: Inverse Restrictions: []\n", - "[INFO] [1712349615.322252]: -------------------\n", - "[INFO] [1712349615.322487]: SOMA.AvoidedObject \n", - "[INFO] [1712349615.322717]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.322982]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.AvoidedObject, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.323248]: Subclasses: []\n", - "[INFO] [1712349615.323549]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.324034]: Instances: []\n", - "[INFO] [1712349615.324303]: Direct Instances: []\n", - "[INFO] [1712349615.324551]: Inverse Restrictions: []\n", - "[INFO] [1712349615.324808]: -------------------\n", - "[INFO] [1712349615.325056]: SOMA.Avoiding \n", - "[INFO] [1712349615.325299]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712349615.325580]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Avoiding, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.325846]: Subclasses: []\n", - "[INFO] [1712349615.326137]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.326626]: Instances: []\n", - "[INFO] [1712349615.326882]: Direct Instances: []\n", - "[INFO] [1712349615.327130]: Inverse Restrictions: []\n", - "[INFO] [1712349615.327367]: -------------------\n", - "[INFO] [1712349615.327610]: SOMA.Navigating \n", - "[INFO] [1712349615.327847]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349615.328096]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.328347]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712349615.328649]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.329156]: Instances: []\n", - "[INFO] [1712349615.329418]: Direct Instances: []\n", - "[INFO] [1712349615.329673]: Inverse Restrictions: []\n", - "[INFO] [1712349615.329927]: -------------------\n", - "[INFO] [1712349615.330168]: SOMA.BakedGood \n", - "[INFO] [1712349615.330407]: Super classes: [SOMA.Dish]\n", - "[INFO] [1712349615.330683]: Ancestors: {SOMA.Dish, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.BakedGood}\n", - "[INFO] [1712349615.330956]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", - "[INFO] [1712349615.331248]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.331739]: Instances: []\n", - "[INFO] [1712349615.331997]: Direct Instances: []\n", - "[INFO] [1712349615.332248]: Inverse Restrictions: []\n", - "[INFO] [1712349615.332505]: -------------------\n", - "[INFO] [1712349615.332774]: SOMA.Dish \n", - "[INFO] [1712349615.333025]: Super classes: [DUL.DesignedArtifact]\n", - "[INFO] [1712349615.333269]: Ancestors: {SOMA.Dish, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.333527]: Subclasses: [SOMA.BakedGood]\n", - "[INFO] [1712349615.333823]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.334326]: Instances: []\n", - "[INFO] [1712349615.334587]: Direct Instances: []\n", - "[INFO] [1712349615.334854]: Inverse Restrictions: []\n", - "[INFO] [1712349615.335098]: -------------------\n", - "[INFO] [1712349615.335341]: SOMA.Barrier \n", - "[INFO] [1712349615.335579]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712349615.335855]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.336132]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712349615.336444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.336953]: Instances: []\n", - "[INFO] [1712349615.337217]: Direct Instances: []\n", - "[INFO] [1712349615.337521]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712349615.337784]: -------------------\n", - "[INFO] [1712349615.338034]: SOMA.Restrictor \n", - "[INFO] [1712349615.338277]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712349615.338528]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.338783]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712349615.339069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.339589]: Instances: []\n", - "[INFO] [1712349615.339854]: Direct Instances: []\n", - "[INFO] [1712349615.340222]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712349615.340479]: -------------------\n", - "[INFO] [1712349615.340733]: SOMA.BedsideTable \n", - "[INFO] [1712349615.340982]: Super classes: [SOMA.Table]\n", - "[INFO] [1712349615.341260]: Ancestors: {DUL.PhysicalArtifact, SOMA.BedsideTable, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, SOMA.Table, DUL.PhysicalObject}\n", - "[INFO] [1712349615.341517]: Subclasses: []\n", - "[INFO] [1712349615.341810]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.342301]: Instances: []\n", - "[INFO] [1712349615.342562]: Direct Instances: []\n", - "[INFO] [1712349615.342816]: Inverse Restrictions: []\n", - "[INFO] [1712349615.343064]: -------------------\n", - "[INFO] [1712349615.343303]: SOMA.Table \n", - "[INFO] [1712349615.343538]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712349615.343781]: Ancestors: {SOMA.Table, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.344028]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", - "[INFO] [1712349615.344328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.344829]: Instances: []\n", - "[INFO] [1712349615.345087]: Direct Instances: []\n", - "[INFO] [1712349615.345339]: Inverse Restrictions: []\n", - "[INFO] [1712349615.345577]: -------------------\n", - "[INFO] [1712349615.345824]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712349615.346081]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712349615.346327]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349615.346574]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712349615.346879]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", - "[INFO] [1712349615.347629]: Instances: []\n", - "[INFO] [1712349615.347951]: Direct Instances: []\n", - "[INFO] [1712349615.348224]: Inverse Restrictions: []\n", - "[INFO] [1712349615.348478]: -------------------\n", - "[INFO] [1712349615.348723]: SOMA.BeneficiaryRole \n", - "[INFO] [1712349615.349035]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712349615.349363]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.BeneficiaryRole, DUL.Role}\n", - "[INFO] [1712349615.349650]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712349615.349968]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.350543]: Instances: []\n", - "[INFO] [1712349615.350855]: Direct Instances: []\n", - "[INFO] [1712349615.351132]: Inverse Restrictions: []\n", - "[INFO] [1712349615.351389]: -------------------\n", - "[INFO] [1712349615.351639]: SOMA.GoalRole \n", - "[INFO] [1712349615.351883]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349615.352137]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.352413]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712349615.352723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.353232]: Instances: []\n", - "[INFO] [1712349615.353498]: Direct Instances: []\n", - "[INFO] [1712349615.353760]: Inverse Restrictions: []\n", - "[INFO] [1712349615.354018]: -------------------\n", - "[INFO] [1712349615.354269]: SOMA.CounterfactualBinding \n", - "[INFO] [1712349615.354513]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712349615.354777]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.CounterfactualBinding, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.355045]: Subclasses: []\n", - "[INFO] [1712349615.355359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.355848]: Instances: []\n", - "[INFO] [1712349615.356126]: Direct Instances: []\n", - "[INFO] [1712349615.356483]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712349615.356742]: -------------------\n", - "[INFO] [1712349615.357001]: SOMA.FactualBinding \n", - "[INFO] [1712349615.357255]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712349615.357522]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.FactualBinding, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.357792]: Subclasses: []\n", - "[INFO] [1712349615.358098]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.358596]: Instances: []\n", - "[INFO] [1712349615.358870]: Direct Instances: []\n", - "[INFO] [1712349615.359214]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712349615.359471]: -------------------\n", - "[INFO] [1712349615.359718]: SOMA.RoleFillerBinding \n", - "[INFO] [1712349615.359973]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712349615.360249]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.RoleFillerBinding, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.360512]: Subclasses: []\n", - "[INFO] [1712349615.360841]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.361338]: Instances: []\n", - "[INFO] [1712349615.361613]: Direct Instances: []\n", - "[INFO] [1712349615.361905]: Inverse Restrictions: []\n", - "[INFO] [1712349615.362159]: -------------------\n", - "[INFO] [1712349615.362412]: SOMA.RoleRoleBinding \n", - "[INFO] [1712349615.363060]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712349615.363348]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, SOMA.RoleRoleBinding, DUL.Entity, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.363622]: Subclasses: []\n", - "[INFO] [1712349615.363925]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.364419]: Instances: []\n", - "[INFO] [1712349615.364683]: Direct Instances: []\n", - "[INFO] [1712349615.364988]: Inverse Restrictions: []\n", - "[INFO] [1712349615.365258]: -------------------\n", - "[INFO] [1712349615.365507]: SOMA.Blade \n", - "[INFO] [1712349615.365757]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349615.366037]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Blade}\n", - "[INFO] [1712349615.366301]: Subclasses: []\n", - "[INFO] [1712349615.366594]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.367120]: Instances: []\n", - "[INFO] [1712349615.367393]: Direct Instances: []\n", - "[INFO] [1712349615.367676]: Inverse Restrictions: [SOMA.Knife]\n", - "[INFO] [1712349615.367939]: -------------------\n", - "[INFO] [1712349615.368184]: SOMA.DesignedComponent \n", - "[INFO] [1712349615.368447]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712349615.368705]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.368978]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712349615.369311]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.369846]: Instances: []\n", - "[INFO] [1712349615.370116]: Direct Instances: []\n", - "[INFO] [1712349615.370371]: Inverse Restrictions: []\n", - "[INFO] [1712349615.370619]: -------------------\n", - "[INFO] [1712349615.370861]: SOMA.Blockage \n", - "[INFO] [1712349615.371122]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712349615.371391]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.371657]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712349615.371952]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.372441]: Instances: []\n", - "[INFO] [1712349615.372696]: Direct Instances: []\n", - "[INFO] [1712349615.372950]: Inverse Restrictions: []\n", - "[INFO] [1712349615.373200]: -------------------\n", - "[INFO] [1712349615.373441]: SOMA.BlockedObject \n", - "[INFO] [1712349615.373681]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.373951]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.374220]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712349615.374518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.375040]: Instances: []\n", - "[INFO] [1712349615.375319]: Direct Instances: []\n", - "[INFO] [1712349615.375616]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712349615.375864]: -------------------\n", - "[INFO] [1712349615.376106]: SOMA.BodyMovement \n", - "[INFO] [1712349615.377171]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712349615.377613]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.377939]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712349615.378275]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.378827]: Instances: []\n", - "[INFO] [1712349615.379101]: Direct Instances: []\n", - "[INFO] [1712349615.379377]: Inverse Restrictions: []\n", - "[INFO] [1712349615.379630]: -------------------\n", - "[INFO] [1712349615.379875]: SOMA.Motion \n", - "[INFO] [1712349615.380112]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712349615.380358]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.380612]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712349615.380918]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.381469]: Instances: []\n", - "[INFO] [1712349615.381747]: Direct Instances: []\n", - "[INFO] [1712349615.382015]: Inverse Restrictions: []\n", - "[INFO] [1712349615.382260]: -------------------\n", - "[INFO] [1712349615.382499]: SOMA.Boiling \n", - "[INFO] [1712349615.382752]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712349615.383039]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, SOMA.Vaporizing, DUL.Object, DUL.Entity, SOMA.Alteration, owl.Thing, SOMA.ProcessType, SOMA.Boiling}\n", - "[INFO] [1712349615.383304]: Subclasses: []\n", - "[INFO] [1712349615.383608]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.384111]: Instances: []\n", - "[INFO] [1712349615.384390]: Direct Instances: []\n", - "[INFO] [1712349615.384670]: Inverse Restrictions: []\n", - "[INFO] [1712349615.384946]: -------------------\n", - "[INFO] [1712349615.385214]: SOMA.Vaporizing \n", - "[INFO] [1712349615.385899]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712349615.386176]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, SOMA.Vaporizing, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.386455]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712349615.386766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, SOMA.isProcessTypeOf]\n", - "[INFO] [1712349615.387265]: Instances: []\n", - "[INFO] [1712349615.387538]: Direct Instances: []\n", - "[INFO] [1712349615.387836]: Inverse Restrictions: []\n", - "[INFO] [1712349615.388082]: -------------------\n", - "[INFO] [1712349615.388325]: SOMA.Bottle \n", - "[INFO] [1712349615.388563]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712349615.388834]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Bottle, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.389107]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", - "[INFO] [1712349615.389396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.389889]: Instances: []\n", - "[INFO] [1712349615.390143]: Direct Instances: []\n", - "[INFO] [1712349615.390389]: Inverse Restrictions: []\n", - "[INFO] [1712349615.390634]: -------------------\n", - "[INFO] [1712349615.390878]: SOMA.DesignedContainer \n", - "[INFO] [1712349615.391118]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712349615.391361]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.391622]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", - "[INFO] [1712349615.391925]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.392478]: Instances: []\n", - "[INFO] [1712349615.392737]: Direct Instances: []\n", - "[INFO] [1712349615.393004]: Inverse Restrictions: []\n", - "[INFO] [1712349615.393248]: -------------------\n", - "[INFO] [1712349615.393486]: SOMA.Bowl \n", - "[INFO] [1712349615.393719]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712349615.394005]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Bowl}\n", - "[INFO] [1712349615.394279]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", - "[INFO] [1712349615.394572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.395067]: Instances: []\n", - "[INFO] [1712349615.395320]: Direct Instances: []\n", - "[INFO] [1712349615.395611]: Inverse Restrictions: [SOMA.Spoon]\n", - "[INFO] [1712349615.395865]: -------------------\n", - "[INFO] [1712349615.396108]: SOMA.Crockery \n", - "[INFO] [1712349615.396974]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712349615.397268]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.397542]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", - "[INFO] [1712349615.397842]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", - "[INFO] [1712349615.398356]: Instances: []\n", - "[INFO] [1712349615.398615]: Direct Instances: []\n", - "[INFO] [1712349615.398882]: Inverse Restrictions: []\n", - "[INFO] [1712349615.399127]: -------------------\n", - "[INFO] [1712349615.399385]: SOMA.Box \n", - "[INFO] [1712349615.399634]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", - "[INFO] [1712349615.399900]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.Box, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.400166]: Subclasses: [SOMA.CerealBox]\n", - "[INFO] [1712349615.400465]: Properties: [rdf-schema.isDefinedBy, SOMA.hasShapeRegion, rdf-schema.comment]\n", - "[INFO] [1712349615.400951]: Instances: []\n", - "[INFO] [1712349615.401207]: Direct Instances: []\n", - "[INFO] [1712349615.401457]: Inverse Restrictions: []\n", - "[INFO] [1712349615.401706]: -------------------\n", - "[INFO] [1712349615.401947]: SOMA.BoxShape \n", - "[INFO] [1712349615.402222]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712349615.402487]: Ancestors: {DUL.Region, DUL.Entity, DUL.Abstract, SOMA.BoxShape, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349615.402727]: Subclasses: []\n", - "[INFO] [1712349615.403026]: Properties: [rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasWidth, SOMA.hasHeight, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.403512]: Instances: []\n", - "[INFO] [1712349615.403768]: Direct Instances: []\n", - "[INFO] [1712349615.404035]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712349615.404278]: -------------------\n", - "[INFO] [1712349615.404529]: SOMA.Bread \n", - "[INFO] [1712349615.404763]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712349615.405031]: Ancestors: {SOMA.Dish, DUL.Object, SOMA.Bread, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.BakedGood}\n", - "[INFO] [1712349615.405316]: Subclasses: []\n", - "[INFO] [1712349615.405609]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.406105]: Instances: []\n", - "[INFO] [1712349615.406400]: Direct Instances: []\n", - "[INFO] [1712349615.406654]: Inverse Restrictions: []\n", - "[INFO] [1712349615.406895]: -------------------\n", - "[INFO] [1712349615.407128]: SOMA.BreadKnife \n", - "[INFO] [1712349615.407371]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712349615.407658]: Ancestors: {SOMA.Knife, SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.BreadKnife, DUL.PhysicalObject, SOMA.KitchenKnife}\n", - "[INFO] [1712349615.407903]: Subclasses: []\n", - "[INFO] [1712349615.408183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.408670]: Instances: []\n", - "[INFO] [1712349615.408937]: Direct Instances: []\n", - "[INFO] [1712349615.409186]: Inverse Restrictions: []\n", - "[INFO] [1712349615.409422]: -------------------\n", - "[INFO] [1712349615.409653]: SOMA.KitchenKnife \n", - "[INFO] [1712349615.409884]: Super classes: [SOMA.Knife]\n", - "[INFO] [1712349615.410140]: Ancestors: {SOMA.Knife, SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.KitchenKnife}\n", - "[INFO] [1712349615.410392]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", - "[INFO] [1712349615.410680]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.411170]: Instances: []\n", - "[INFO] [1712349615.411441]: Direct Instances: []\n", - "[INFO] [1712349615.411694]: Inverse Restrictions: []\n", - "[INFO] [1712349615.411928]: -------------------\n", - "[INFO] [1712349615.412163]: SOMA.BreakfastPlate \n", - "[INFO] [1712349615.412392]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712349615.412662]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, SOMA.BreakfastPlate, owl.Thing, DUL.DesignedArtifact, SOMA.Plate, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.412921]: Subclasses: []\n", - "[INFO] [1712349615.413334]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.413861]: Instances: []\n", - "[INFO] [1712349615.414155]: Direct Instances: []\n", - "[INFO] [1712349615.414422]: Inverse Restrictions: []\n", - "[INFO] [1712349615.414671]: -------------------\n", - "[INFO] [1712349615.414923]: SOMA.Plate \n", - "[INFO] [1712349615.415160]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712349615.415406]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Plate, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.415668]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", - "[INFO] [1712349615.415964]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.416455]: Instances: []\n", - "[INFO] [1712349615.416708]: Direct Instances: []\n", - "[INFO] [1712349615.416966]: Inverse Restrictions: []\n", - "[INFO] [1712349615.417215]: -------------------\n", - "[INFO] [1712349615.417457]: SOMA.Building \n", - "[INFO] [1712349615.417692]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712349615.417950]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Building, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.418193]: Subclasses: []\n", - "[INFO] [1712349615.418487]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.418977]: Instances: []\n", - "[INFO] [1712349615.419228]: Direct Instances: []\n", - "[INFO] [1712349615.419472]: Inverse Restrictions: []\n", - "[INFO] [1712349615.419699]: -------------------\n", - "[INFO] [1712349615.419936]: SOMA.Deposition \n", - "[INFO] [1712349615.420204]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712349615.420460]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.420704]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712349615.420992]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.421497]: Instances: []\n", - "[INFO] [1712349615.421758]: Direct Instances: []\n", - "[INFO] [1712349615.422436]: Inverse Restrictions: []\n", - "[INFO] [1712349615.422684]: -------------------\n", - "[INFO] [1712349615.422925]: SOMA.CanCut \n", - "[INFO] [1712349615.423200]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712349615.423483]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.CanCut, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.423729]: Subclasses: []\n", - "[INFO] [1712349615.424249]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.424785]: Instances: []\n", - "[INFO] [1712349615.425056]: Direct Instances: []\n", - "[INFO] [1712349615.425317]: Inverse Restrictions: []\n", - "[INFO] [1712349615.425567]: -------------------\n", - "[INFO] [1712349615.425816]: SOMA.Variability \n", - "[INFO] [1712349615.426083]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712349615.426345]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.426612]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712349615.426999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.427530]: Instances: []\n", - "[INFO] [1712349615.427818]: Direct Instances: []\n", - "[INFO] [1712349615.428087]: Inverse Restrictions: []\n", - "[INFO] [1712349615.428334]: -------------------\n", - "[INFO] [1712349615.428575]: SOMA.Cutter \n", - "[INFO] [1712349615.428816]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712349615.429099]: Ancestors: {SOMA.Cutter, SOMA.Tool, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.429365]: Subclasses: []\n", - "[INFO] [1712349615.429660]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.430142]: Instances: []\n", - "[INFO] [1712349615.430398]: Direct Instances: []\n", - "[INFO] [1712349615.430729]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712349615.430978]: -------------------\n", - "[INFO] [1712349615.431221]: SOMA.CutObject \n", - "[INFO] [1712349615.431457]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712349615.431735]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.CutObject, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", - "[INFO] [1712349615.431988]: Subclasses: []\n", - "[INFO] [1712349615.432274]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.432760]: Instances: []\n", - "[INFO] [1712349615.433039]: Direct Instances: []\n", - "[INFO] [1712349615.433370]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712349615.433617]: -------------------\n", - "[INFO] [1712349615.433855]: SOMA.Capability \n", - "[INFO] [1712349615.435525]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712349615.435827]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.436097]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712349615.436401]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712349615.436899]: Instances: []\n", - "[INFO] [1712349615.437171]: Direct Instances: []\n", - "[INFO] [1712349615.437433]: Inverse Restrictions: []\n", - "[INFO] [1712349615.437686]: -------------------\n", - "[INFO] [1712349615.437926]: SOMA.Capacity \n", - "[INFO] [1712349615.438157]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349615.438425]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Capacity, SOMA.Intrinsic}\n", - "[INFO] [1712349615.438687]: Subclasses: []\n", - "[INFO] [1712349615.438982]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.439469]: Instances: []\n", - "[INFO] [1712349615.439731]: Direct Instances: []\n", - "[INFO] [1712349615.440409]: Inverse Restrictions: []\n", - "[INFO] [1712349615.440663]: -------------------\n", - "[INFO] [1712349615.440906]: SOMA.Intrinsic \n", - "[INFO] [1712349615.441147]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712349615.441391]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712349615.441659]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712349615.441949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.442449]: Instances: []\n", - "[INFO] [1712349615.442719]: Direct Instances: []\n", - "[INFO] [1712349615.442991]: Inverse Restrictions: []\n", - "[INFO] [1712349615.443228]: -------------------\n", - "[INFO] [1712349615.443462]: SOMA.Carafe \n", - "[INFO] [1712349615.443697]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712349615.443966]: Ancestors: {DUL.Object, SOMA.Carafe, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.444223]: Subclasses: [SOMA.CoffeeCarafe]\n", - "[INFO] [1712349615.444505]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.444989]: Instances: []\n", - "[INFO] [1712349615.445250]: Direct Instances: []\n", - "[INFO] [1712349615.445501]: Inverse Restrictions: []\n", - "[INFO] [1712349615.445742]: -------------------\n", - "[INFO] [1712349615.445978]: SOMA.Catching \n", - "[INFO] [1712349615.446203]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349615.446469]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.Catching, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349615.446724]: Subclasses: []\n", - "[INFO] [1712349615.447020]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.447501]: Instances: []\n", - "[INFO] [1712349615.447761]: Direct Instances: []\n", - "[INFO] [1712349615.448007]: Inverse Restrictions: []\n", - "[INFO] [1712349615.448241]: -------------------\n", - "[INFO] [1712349615.448473]: SOMA.PickingUp \n", - "[INFO] [1712349615.448698]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349615.448982]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.PickingUp}\n", - "[INFO] [1712349615.449224]: Subclasses: []\n", - "[INFO] [1712349615.449510]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.449987]: Instances: []\n", - "[INFO] [1712349615.450255]: Direct Instances: []\n", - "[INFO] [1712349615.450512]: Inverse Restrictions: []\n", - "[INFO] [1712349615.450748]: -------------------\n", - "[INFO] [1712349615.450981]: SOMA.CausalEventRole \n", - "[INFO] [1712349615.451206]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712349615.451463]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.CausalEventRole, DUL.Role}\n", - "[INFO] [1712349615.451719]: Subclasses: []\n", - "[INFO] [1712349615.452007]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.452483]: Instances: []\n", - "[INFO] [1712349615.452730]: Direct Instances: []\n", - "[INFO] [1712349615.453027]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349615.453289]: -------------------\n", - "[INFO] [1712349615.453538]: SOMA.EventAdjacentRole \n", - "[INFO] [1712349615.453782]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712349615.454026]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.454276]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712349615.454568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.455240]: Instances: []\n", - "[INFO] [1712349615.455508]: Direct Instances: []\n", - "[INFO] [1712349615.455767]: Inverse Restrictions: []\n", - "[INFO] [1712349615.456017]: -------------------\n", - "[INFO] [1712349615.456270]: SOMA.CausedMotionTheory \n", - "[INFO] [1712349615.456549]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712349615.456849]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.CausedMotionTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.457118]: Subclasses: []\n", - "[INFO] [1712349615.457423]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasPart, DUL.defines]\n", - "[INFO] [1712349615.457909]: Instances: []\n", - "[INFO] [1712349615.458163]: Direct Instances: []\n", - "[INFO] [1712349615.458407]: Inverse Restrictions: []\n", - "[INFO] [1712349615.458633]: -------------------\n", - "[INFO] [1712349615.458877]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712349615.459113]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712349615.459352]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.459617]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712349615.459907]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.460414]: Instances: []\n", - "[INFO] [1712349615.460671]: Direct Instances: []\n", - "[INFO] [1712349615.461126]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.StateTransition, SOMA.Scene]\n", - "[INFO] [1712349615.461468]: -------------------\n", - "[INFO] [1712349615.461755]: SOMA.PerformerRole \n", - "[INFO] [1712349615.462045]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712349615.462354]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.462637]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712349615.462945]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.463468]: Instances: []\n", - "[INFO] [1712349615.463740]: Direct Instances: []\n", - "[INFO] [1712349615.464075]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349615.464325]: -------------------\n", - "[INFO] [1712349615.464578]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712349615.464865]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712349615.465149]: Ancestors: {DUL.Description, SOMA.SourcePathGoalTheory, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.465400]: Subclasses: []\n", - "[INFO] [1712349615.465696]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349615.466204]: Instances: []\n", - "[INFO] [1712349615.466474]: Direct Instances: []\n", - "[INFO] [1712349615.466768]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349615.467013]: -------------------\n", - "[INFO] [1712349615.467259]: SOMA.Ceiling \n", - "[INFO] [1712349615.467509]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712349615.467800]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, SOMA.Ceiling, DUL.PhysicalObject, SOMA.RoomSurface}\n", - "[INFO] [1712349615.468049]: Subclasses: []\n", - "[INFO] [1712349615.468340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.468848]: Instances: []\n", - "[INFO] [1712349615.469114]: Direct Instances: []\n", - "[INFO] [1712349615.469368]: Inverse Restrictions: []\n", - "[INFO] [1712349615.469605]: -------------------\n", - "[INFO] [1712349615.469841]: SOMA.RoomSurface \n", - "[INFO] [1712349615.470073]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712349615.470335]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, SOMA.RoomSurface}\n", - "[INFO] [1712349615.470590]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712349615.470880]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.471377]: Instances: []\n", - "[INFO] [1712349615.471660]: Direct Instances: []\n", - "[INFO] [1712349615.471925]: Inverse Restrictions: []\n", - "[INFO] [1712349615.472173]: -------------------\n", - "[INFO] [1712349615.472416]: SOMA.Floor \n", - "[INFO] [1712349615.472653]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712349615.472930]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, SOMA.Floor, DUL.PhysicalPlace, DUL.PhysicalObject, SOMA.RoomSurface}\n", - "[INFO] [1712349615.473193]: Subclasses: []\n", - "[INFO] [1712349615.473501]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.473988]: Instances: []\n", - "[INFO] [1712349615.474260]: Direct Instances: []\n", - "[INFO] [1712349615.474521]: Inverse Restrictions: []\n", - "[INFO] [1712349615.474760]: -------------------\n", - "[INFO] [1712349615.475002]: SOMA.Wall \n", - "[INFO] [1712349615.475237]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712349615.475511]: Ancestors: {SOMA.Surface, DUL.Object, SOMA.Wall, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, SOMA.RoomSurface}\n", - "[INFO] [1712349615.475757]: Subclasses: []\n", - "[INFO] [1712349615.476041]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.476522]: Instances: []\n", - "[INFO] [1712349615.476792]: Direct Instances: []\n", - "[INFO] [1712349615.477053]: Inverse Restrictions: []\n", - "[INFO] [1712349615.477293]: -------------------\n", - "[INFO] [1712349615.477528]: SOMA.CeramicCooktop \n", - "[INFO] [1712349615.477757]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712349615.478041]: Ancestors: {SOMA.FunctionalPart, SOMA.ElectricCooktop, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.CeramicCooktop}\n", - "[INFO] [1712349615.478295]: Subclasses: []\n", - "[INFO] [1712349615.478580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.479082]: Instances: []\n", - "[INFO] [1712349615.479344]: Direct Instances: []\n", - "[INFO] [1712349615.479589]: Inverse Restrictions: []\n", - "[INFO] [1712349615.479824]: -------------------\n", - "[INFO] [1712349615.480055]: SOMA.ElectricCooktop \n", - "[INFO] [1712349615.480285]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712349615.480537]: Ancestors: {SOMA.FunctionalPart, SOMA.ElectricCooktop, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.480793]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", - "[INFO] [1712349615.481078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.481587]: Instances: []\n", - "[INFO] [1712349615.481867]: Direct Instances: []\n", - "[INFO] [1712349615.482154]: Inverse Restrictions: []\n", - "[INFO] [1712349615.482404]: -------------------\n", - "[INFO] [1712349615.482662]: SOMA.CerealBox \n", - "[INFO] [1712349615.483030]: Super classes: [SOMA.Box]\n", - "[INFO] [1712349615.483412]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.Box, DUL.PhysicalArtifact, SOMA.CerealBox, DUL.PhysicalObject}\n", - "[INFO] [1712349615.483774]: Subclasses: []\n", - "[INFO] [1712349615.484245]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.484900]: Instances: []\n", - "[INFO] [1712349615.485324]: Direct Instances: []\n", - "[INFO] [1712349615.485714]: Inverse Restrictions: []\n", - "[INFO] [1712349615.485991]: -------------------\n", - "[INFO] [1712349615.486245]: SOMA.Channel \n", - "[INFO] [1712349615.486512]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712349615.486804]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.487072]: Subclasses: []\n", - "[INFO] [1712349615.487375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", - "[INFO] [1712349615.487880]: Instances: []\n", - "[INFO] [1712349615.488142]: Direct Instances: []\n", - "[INFO] [1712349615.488457]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349615.488705]: -------------------\n", - "[INFO] [1712349615.488954]: SOMA.PathRole \n", - "[INFO] [1712349615.489193]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712349615.489450]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.PathRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.489703]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712349615.489991]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.490481]: Instances: []\n", - "[INFO] [1712349615.490758]: Direct Instances: []\n", - "[INFO] [1712349615.491059]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712349615.491305]: -------------------\n", - "[INFO] [1712349615.491544]: SOMA.CommunicationTask \n", - "[INFO] [1712349615.492560]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712349615.492868]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.493144]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712349615.493448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712349615.493948]: Instances: []\n", - "[INFO] [1712349615.494218]: Direct Instances: []\n", - "[INFO] [1712349615.495070]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel]\n", - "[INFO] [1712349615.495326]: -------------------\n", - "[INFO] [1712349615.495574]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712349615.495814]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712349615.496071]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.CheckingObjectPresence}\n", - "[INFO] [1712349615.496327]: Subclasses: []\n", - "[INFO] [1712349615.496618]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.497109]: Instances: []\n", - "[INFO] [1712349615.497377]: Direct Instances: []\n", - "[INFO] [1712349615.497629]: Inverse Restrictions: []\n", - "[INFO] [1712349615.497869]: -------------------\n", - "[INFO] [1712349615.498105]: SOMA.ChemicalProcess \n", - "[INFO] [1712349615.498332]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712349615.498594]: Ancestors: {DUL.Entity, DUL.Event, owl.Thing, SOMA.ChemicalProcess, DUL.Process}\n", - "[INFO] [1712349615.498854]: Subclasses: []\n", - "[INFO] [1712349615.499146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.499628]: Instances: []\n", - "[INFO] [1712349615.499880]: Direct Instances: []\n", - "[INFO] [1712349615.500139]: Inverse Restrictions: []\n", - "[INFO] [1712349615.500389]: -------------------\n", - "[INFO] [1712349615.500627]: SOMA.Choice \n", - "[INFO] [1712349615.500869]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712349615.501139]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Choice, SOMA.ResultRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.501398]: Subclasses: []\n", - "[INFO] [1712349615.501691]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.502173]: Instances: []\n", - "[INFO] [1712349615.502422]: Direct Instances: []\n", - "[INFO] [1712349615.502659]: Inverse Restrictions: []\n", - "[INFO] [1712349615.502902]: -------------------\n", - "[INFO] [1712349615.503138]: SOMA.ResultRole \n", - "[INFO] [1712349615.503368]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712349615.503611]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResultRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.503860]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712349615.504154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.504654]: Instances: []\n", - "[INFO] [1712349615.504911]: Direct Instances: []\n", - "[INFO] [1712349615.505163]: Inverse Restrictions: []\n", - "[INFO] [1712349615.505420]: -------------------\n", - "[INFO] [1712349615.505673]: SOMA.CircularCylinder \n", - "[INFO] [1712349615.505948]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712349615.506236]: Ancestors: {SOMA.CircularCylinder, SOMA.CylinderShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349615.506486]: Subclasses: []\n", - "[INFO] [1712349615.506770]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712349615.507246]: Instances: []\n", - "[INFO] [1712349615.507514]: Direct Instances: []\n", - "[INFO] [1712349615.507764]: Inverse Restrictions: []\n", - "[INFO] [1712349615.508002]: -------------------\n", - "[INFO] [1712349615.508234]: SOMA.CylinderShape \n", - "[INFO] [1712349615.508491]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712349615.508760]: Ancestors: {SOMA.CylinderShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349615.509028]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712349615.509323]: Properties: [rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.509805]: Instances: []\n", - "[INFO] [1712349615.510077]: Direct Instances: []\n", - "[INFO] [1712349615.510340]: Inverse Restrictions: []\n", - "[INFO] [1712349615.510581]: -------------------\n", - "[INFO] [1712349615.510818]: SOMA.Classifier \n", - "[INFO] [1712349615.511053]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712349615.511344]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.Classifier, SOMA.StatisticalReasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349615.511602]: Subclasses: []\n", - "[INFO] [1712349615.511887]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.512369]: Instances: []\n", - "[INFO] [1712349615.512640]: Direct Instances: []\n", - "[INFO] [1712349615.512903]: Inverse Restrictions: []\n", - "[INFO] [1712349615.513157]: -------------------\n", - "[INFO] [1712349615.513405]: SOMA.StatisticalReasoner \n", - "[INFO] [1712349615.513684]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712349615.513944]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.StatisticalReasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349615.514213]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712349615.514513]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.514999]: Instances: []\n", - "[INFO] [1712349615.515255]: Direct Instances: []\n", - "[INFO] [1712349615.515505]: Inverse Restrictions: []\n", - "[INFO] [1712349615.515749]: -------------------\n", - "[INFO] [1712349615.515983]: SOMA.ClausalObject \n", - "[INFO] [1712349615.516217]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712349615.516460]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", - "[INFO] [1712349615.516725]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712349615.517159]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.517732]: Instances: []\n", - "[INFO] [1712349615.518036]: Direct Instances: []\n", - "[INFO] [1712349615.518324]: Inverse Restrictions: []\n", - "[INFO] [1712349615.518581]: -------------------\n", - "[INFO] [1712349615.518824]: SOMA.Phrase \n", - "[INFO] [1712349615.519067]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712349615.519330]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Phrase}\n", - "[INFO] [1712349615.519603]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712349615.519907]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.520410]: Instances: []\n", - "[INFO] [1712349615.520688]: Direct Instances: []\n", - "[INFO] [1712349615.520957]: Inverse Restrictions: []\n", - "[INFO] [1712349615.521208]: -------------------\n", - "[INFO] [1712349615.521453]: SOMA.Clean \n", - "[INFO] [1712349615.521691]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712349615.521971]: Ancestors: {SOMA.Clean, DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.522228]: Subclasses: []\n", - "[INFO] [1712349615.522520]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.523013]: Instances: []\n", - "[INFO] [1712349615.523298]: Direct Instances: []\n", - "[INFO] [1712349615.524003]: Inverse Restrictions: []\n", - "[INFO] [1712349615.524264]: -------------------\n", - "[INFO] [1712349615.524509]: SOMA.CleanlinessRegion \n", - "[INFO] [1712349615.524751]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349615.525013]: Ancestors: {DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.525276]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712349615.525596]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.526105]: Instances: []\n", - "[INFO] [1712349615.526376]: Direct Instances: []\n", - "[INFO] [1712349615.526715]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712349615.526967]: -------------------\n", - "[INFO] [1712349615.527216]: SOMA.Cleaning \n", - "[INFO] [1712349615.527488]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712349615.527766]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Cleaning}\n", - "[INFO] [1712349615.528017]: Subclasses: []\n", - "[INFO] [1712349615.528304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349615.528808]: Instances: []\n", - "[INFO] [1712349615.529080]: Direct Instances: []\n", - "[INFO] [1712349615.529328]: Inverse Restrictions: []\n", - "[INFO] [1712349615.529567]: -------------------\n", - "[INFO] [1712349615.529801]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712349615.530047]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349615.530301]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.530559]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712349615.530846]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.531365]: Instances: []\n", - "[INFO] [1712349615.531629]: Direct Instances: []\n", - "[INFO] [1712349615.531888]: Inverse Restrictions: []\n", - "[INFO] [1712349615.532135]: -------------------\n", - "[INFO] [1712349615.532375]: SOMA.Purification \n", - "[INFO] [1712349615.533432]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712349615.533735]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Purification, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.533991]: Subclasses: []\n", - "[INFO] [1712349615.534288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.534799]: Instances: []\n", - "[INFO] [1712349615.535070]: Direct Instances: []\n", - "[INFO] [1712349615.535362]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712349615.535618]: -------------------\n", - "[INFO] [1712349615.535858]: SOMA.Cleanliness \n", - "[INFO] [1712349615.536118]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712349615.536395]: Ancestors: {DUL.Quality, DUL.Entity, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing}\n", - "[INFO] [1712349615.536652]: Subclasses: []\n", - "[INFO] [1712349615.536950]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.537439]: Instances: []\n", - "[INFO] [1712349615.537712]: Direct Instances: []\n", - "[INFO] [1712349615.538105]: Inverse Restrictions: []\n", - "[INFO] [1712349615.538361]: -------------------\n", - "[INFO] [1712349615.538604]: SOMA.SocialQuality \n", - "[INFO] [1712349615.538842]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712349615.539101]: Ancestors: {DUL.Quality, SOMA.SocialQuality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.539359]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712349615.539655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.540148]: Instances: []\n", - "[INFO] [1712349615.540424]: Direct Instances: []\n", - "[INFO] [1712349615.540688]: Inverse Restrictions: []\n", - "[INFO] [1712349615.540938]: -------------------\n", - "[INFO] [1712349615.541178]: SOMA.Client-Server_Specification \n", - "[INFO] [1712349615.542172]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712349615.542480]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing, SOMA.Client-Server_Specification}\n", - "[INFO] [1712349615.542745]: Subclasses: []\n", - "[INFO] [1712349615.543051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", - "[INFO] [1712349615.543545]: Instances: []\n", - "[INFO] [1712349615.543821]: Direct Instances: []\n", - "[INFO] [1712349615.544161]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712349615.544417]: -------------------\n", - "[INFO] [1712349615.544663]: SOMA.ClientRole \n", - "[INFO] [1712349615.544916]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712349615.546168]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ClientRole, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.546440]: Subclasses: []\n", - "[INFO] [1712349615.546743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", - "[INFO] [1712349615.547250]: Instances: []\n", - "[INFO] [1712349615.547515]: Direct Instances: []\n", - "[INFO] [1712349615.547823]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712349615.548073]: -------------------\n", - "[INFO] [1712349615.548315]: SOMA.ServerRole \n", - "[INFO] [1712349615.548789]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712349615.549196]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.ServerRole, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.549467]: Subclasses: []\n", - "[INFO] [1712349615.549765]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", - "[INFO] [1712349615.550276]: Instances: []\n", - "[INFO] [1712349615.550637]: Direct Instances: []\n", - "[INFO] [1712349615.550985]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712349615.551255]: -------------------\n", - "[INFO] [1712349615.551508]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712349615.551788]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349615.552060]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.552331]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712349615.552638]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.553138]: Instances: []\n", - "[INFO] [1712349615.553436]: Direct Instances: []\n", - "[INFO] [1712349615.553743]: Inverse Restrictions: []\n", - "[INFO] [1712349615.554008]: -------------------\n", - "[INFO] [1712349615.554255]: SOMA.Closing \n", - "[INFO] [1712349615.554711]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349615.554997]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Closing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349615.555264]: Subclasses: []\n", - "[INFO] [1712349615.555576]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.556063]: Instances: []\n", - "[INFO] [1712349615.556319]: Direct Instances: []\n", - "[INFO] [1712349615.556573]: Inverse Restrictions: []\n", - "[INFO] [1712349615.556829]: -------------------\n", - "[INFO] [1712349615.557075]: SOMA.Delivering \n", - "[INFO] [1712349615.557333]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712349615.557613]: Ancestors: {SOMA.Delivering, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349615.557889]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712349615.558205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349615.558716]: Instances: []\n", - "[INFO] [1712349615.558986]: Direct Instances: []\n", - "[INFO] [1712349615.559246]: Inverse Restrictions: []\n", - "[INFO] [1712349615.559499]: -------------------\n", - "[INFO] [1712349615.559739]: SOMA.Fetching \n", - "[INFO] [1712349615.560222]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712349615.560762]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAcquiring, SOMA.Fetching, owl.Thing}\n", - "[INFO] [1712349615.561227]: Subclasses: []\n", - "[INFO] [1712349615.561758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.562478]: Instances: []\n", - "[INFO] [1712349615.562983]: Direct Instances: []\n", - "[INFO] [1712349615.563473]: Inverse Restrictions: []\n", - "[INFO] [1712349615.563879]: -------------------\n", - "[INFO] [1712349615.564297]: SOMA.Lifting \n", - "[INFO] [1712349615.564698]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349615.565141]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Lifting, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349615.565466]: Subclasses: []\n", - "[INFO] [1712349615.565809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.566335]: Instances: []\n", - "[INFO] [1712349615.566611]: Direct Instances: []\n", - "[INFO] [1712349615.566878]: Inverse Restrictions: []\n", - "[INFO] [1712349615.567127]: -------------------\n", - "[INFO] [1712349615.567380]: SOMA.Opening \n", - "[INFO] [1712349615.567626]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349615.567897]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Opening, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349615.568145]: Subclasses: []\n", - "[INFO] [1712349615.568455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.568952]: Instances: []\n", - "[INFO] [1712349615.569213]: Direct Instances: []\n", - "[INFO] [1712349615.569474]: Inverse Restrictions: []\n", - "[INFO] [1712349615.569730]: -------------------\n", - "[INFO] [1712349615.569979]: SOMA.Pulling \n", - "[INFO] [1712349615.570221]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349615.570558]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Pulling, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349615.570853]: Subclasses: []\n", - "[INFO] [1712349615.571177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.571688]: Instances: []\n", - "[INFO] [1712349615.571956]: Direct Instances: []\n", - "[INFO] [1712349615.572218]: Inverse Restrictions: []\n", - "[INFO] [1712349615.572462]: -------------------\n", - "[INFO] [1712349615.572709]: SOMA.Pushing \n", - "[INFO] [1712349615.572969]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349615.573248]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", - "[INFO] [1712349615.573505]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712349615.573800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.574302]: Instances: []\n", - "[INFO] [1712349615.574568]: Direct Instances: []\n", - "[INFO] [1712349615.574830]: Inverse Restrictions: []\n", - "[INFO] [1712349615.575068]: -------------------\n", - "[INFO] [1712349615.575308]: SOMA.Squeezing \n", - "[INFO] [1712349615.575549]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349615.575829]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Squeezing, SOMA.Actuating}\n", - "[INFO] [1712349615.576087]: Subclasses: []\n", - "[INFO] [1712349615.576374]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.576861]: Instances: []\n", - "[INFO] [1712349615.577140]: Direct Instances: []\n", - "[INFO] [1712349615.577405]: Inverse Restrictions: []\n", - "[INFO] [1712349615.577651]: -------------------\n", - "[INFO] [1712349615.577892]: SOMA.ClosingDisposition \n", - "[INFO] [1712349615.578129]: Super classes: [SOMA.Linkage]\n", - "[INFO] [1712349615.578410]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Linkage, SOMA.ClosingDisposition, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic}\n", - "[INFO] [1712349615.578676]: Subclasses: []\n", - "[INFO] [1712349615.578978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.579475]: Instances: []\n", - "[INFO] [1712349615.579735]: Direct Instances: []\n", - "[INFO] [1712349615.579996]: Inverse Restrictions: []\n", - "[INFO] [1712349615.580245]: -------------------\n", - "[INFO] [1712349615.580488]: SOMA.Linkage \n", - "[INFO] [1712349615.580769]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712349615.581049]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Linkage, SOMA.Connectivity, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.581310]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712349615.581608]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.582104]: Instances: []\n", - "[INFO] [1712349615.582388]: Direct Instances: []\n", - "[INFO] [1712349615.582669]: Inverse Restrictions: []\n", - "[INFO] [1712349615.582937]: -------------------\n", - "[INFO] [1712349615.583188]: SOMA.Clumsiness \n", - "[INFO] [1712349615.583428]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712349615.583699]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.Clumsiness, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349615.583961]: Subclasses: []\n", - "[INFO] [1712349615.584254]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.584739]: Instances: []\n", - "[INFO] [1712349615.584998]: Direct Instances: []\n", - "[INFO] [1712349615.585247]: Inverse Restrictions: []\n", - "[INFO] [1712349615.585493]: -------------------\n", - "[INFO] [1712349615.585732]: SOMA.CoffeeCarafe \n", - "[INFO] [1712349615.585973]: Super classes: [SOMA.Carafe]\n", - "[INFO] [1712349615.586252]: Ancestors: {DUL.Object, SOMA.CoffeeCarafe, SOMA.Carafe, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.586515]: Subclasses: []\n", - "[INFO] [1712349615.586808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.587300]: Instances: []\n", - "[INFO] [1712349615.587554]: Direct Instances: []\n", - "[INFO] [1712349615.587802]: Inverse Restrictions: []\n", - "[INFO] [1712349615.588065]: -------------------\n", - "[INFO] [1712349615.588314]: SOMA.CoffeeTable \n", - "[INFO] [1712349615.588557]: Super classes: [SOMA.Table]\n", - "[INFO] [1712349615.588830]: Ancestors: {SOMA.Table, SOMA.CoffeeTable, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.589080]: Subclasses: []\n", - "[INFO] [1712349615.589382]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.589877]: Instances: []\n", - "[INFO] [1712349615.590139]: Direct Instances: []\n", - "[INFO] [1712349615.590389]: Inverse Restrictions: []\n", - "[INFO] [1712349615.590626]: -------------------\n", - "[INFO] [1712349615.590868]: SOMA.CognitiveAgent \n", - "[INFO] [1712349615.591115]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712349615.591381]: Ancestors: {SOMA.CognitiveAgent, DUL.Agent, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.591629]: Subclasses: []\n", - "[INFO] [1712349615.591930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.592436]: Instances: []\n", - "[INFO] [1712349615.592711]: Direct Instances: []\n", - "[INFO] [1712349615.592978]: Inverse Restrictions: []\n", - "[INFO] [1712349615.593221]: -------------------\n", - "[INFO] [1712349615.593462]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712349615.593711]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712349615.593978]: Ancestors: {DUL.Agent, DUL.Object, DUL.Entity, SOMA.SubCognitiveAgent, owl.Thing}\n", - "[INFO] [1712349615.594228]: Subclasses: []\n", - "[INFO] [1712349615.594514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.595014]: Instances: []\n", - "[INFO] [1712349615.595278]: Direct Instances: []\n", - "[INFO] [1712349615.595530]: Inverse Restrictions: []\n", - "[INFO] [1712349615.595776]: -------------------\n", - "[INFO] [1712349615.596010]: SOMA.CoilCooktop \n", - "[INFO] [1712349615.596262]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712349615.596543]: Ancestors: {SOMA.FunctionalPart, SOMA.ElectricCooktop, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.CoilCooktop}\n", - "[INFO] [1712349615.596798]: Subclasses: []\n", - "[INFO] [1712349615.597108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.597609]: Instances: []\n", - "[INFO] [1712349615.597885]: Direct Instances: []\n", - "[INFO] [1712349615.598136]: Inverse Restrictions: []\n", - "[INFO] [1712349615.598374]: -------------------\n", - "[INFO] [1712349615.598609]: SOMA.Collision \n", - "[INFO] [1712349615.598893]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712349615.599175]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Collision, owl.Thing}\n", - "[INFO] [1712349615.599432]: Subclasses: []\n", - "[INFO] [1712349615.599718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.600219]: Instances: []\n", - "[INFO] [1712349615.600482]: Direct Instances: []\n", - "[INFO] [1712349615.600755]: Inverse Restrictions: []\n", - "[INFO] [1712349615.601008]: -------------------\n", - "[INFO] [1712349615.601261]: SOMA.Extrinsic \n", - "[INFO] [1712349615.601509]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712349615.601757]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Extrinsic}\n", - "[INFO] [1712349615.602008]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712349615.602318]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.602884]: Instances: []\n", - "[INFO] [1712349615.603155]: Direct Instances: []\n", - "[INFO] [1712349615.603414]: Inverse Restrictions: []\n", - "[INFO] [1712349615.603656]: -------------------\n", - "[INFO] [1712349615.603906]: SOMA.ImperativeClause \n", - "[INFO] [1712349615.604181]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712349615.604464]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ImperativeClause, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", - "[INFO] [1712349615.604716]: Subclasses: []\n", - "[INFO] [1712349615.605037]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", - "[INFO] [1712349615.605538]: Instances: []\n", - "[INFO] [1712349615.605810]: Direct Instances: []\n", - "[INFO] [1712349615.606108]: Inverse Restrictions: []\n", - "[INFO] [1712349615.606350]: -------------------\n", - "[INFO] [1712349615.606588]: SOMA.CommitedObject \n", - "[INFO] [1712349615.606838]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712349615.607121]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.CommitedObject, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.607373]: Subclasses: []\n", - "[INFO] [1712349615.607668]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.608172]: Instances: []\n", - "[INFO] [1712349615.608442]: Direct Instances: []\n", - "[INFO] [1712349615.608697]: Inverse Restrictions: []\n", - "[INFO] [1712349615.608944]: -------------------\n", - "[INFO] [1712349615.609193]: SOMA.ConnectedObject \n", - "[INFO] [1712349615.609442]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.609696]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.609968]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712349615.610264]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.610760]: Instances: []\n", - "[INFO] [1712349615.611019]: Direct Instances: []\n", - "[INFO] [1712349615.611392]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712349615.611666]: -------------------\n", - "[INFO] [1712349615.611923]: SOMA.CommunicationAction \n", - "[INFO] [1712349615.612187]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712349615.612465]: Ancestors: {SOMA.CommunicationAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712349615.612715]: Subclasses: []\n", - "[INFO] [1712349615.613025]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349615.613554]: Instances: []\n", - "[INFO] [1712349615.613857]: Direct Instances: []\n", - "[INFO] [1712349615.614893]: Inverse Restrictions: []\n", - "[INFO] [1712349615.615193]: -------------------\n", - "[INFO] [1712349615.615451]: SOMA.LinguisticObject \n", - "[INFO] [1712349615.615700]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712349615.615986]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.616256]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712349615.616559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.617102]: Instances: []\n", - "[INFO] [1712349615.617494]: Direct Instances: []\n", - "[INFO] [1712349615.617827]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712349615.618104]: -------------------\n", - "[INFO] [1712349615.618361]: SOMA.CommunicationReport \n", - "[INFO] [1712349615.618613]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349615.618886]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing, SOMA.CommunicationReport}\n", - "[INFO] [1712349615.619161]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712349615.619472]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.619977]: Instances: []\n", - "[INFO] [1712349615.620240]: Direct Instances: []\n", - "[INFO] [1712349615.620492]: Inverse Restrictions: []\n", - "[INFO] [1712349615.620744]: -------------------\n", - "[INFO] [1712349615.620999]: SOMA.Receiver \n", - "[INFO] [1712349615.621242]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712349615.621515]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.Receiver, SOMA.ExperiencerRole, DUL.Role}\n", - "[INFO] [1712349615.621770]: Subclasses: []\n", - "[INFO] [1712349615.622078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", - "[INFO] [1712349615.622571]: Instances: []\n", - "[INFO] [1712349615.622827]: Direct Instances: []\n", - "[INFO] [1712349615.623133]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349615.623389]: -------------------\n", - "[INFO] [1712349615.623633]: SOMA.Sender \n", - "[INFO] [1712349615.623876]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712349615.624140]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, SOMA.Sender, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.624378]: Subclasses: []\n", - "[INFO] [1712349615.624671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", - "[INFO] [1712349615.625261]: Instances: []\n", - "[INFO] [1712349615.625692]: Direct Instances: []\n", - "[INFO] [1712349615.626056]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349615.626323]: -------------------\n", - "[INFO] [1712349615.626649]: SOMA.CommunicationTopic \n", - "[INFO] [1712349615.627689]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712349615.627988]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.628265]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349615.628570]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.629089]: Instances: []\n", - "[INFO] [1712349615.629367]: Direct Instances: []\n", - "[INFO] [1712349615.629632]: Inverse Restrictions: []\n", - "[INFO] [1712349615.629878]: -------------------\n", - "[INFO] [1712349615.630117]: SOMA.ResourceRole \n", - "[INFO] [1712349615.630350]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349615.630594]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.630862]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712349615.631156]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.631693]: Instances: []\n", - "[INFO] [1712349615.631970]: Direct Instances: []\n", - "[INFO] [1712349615.632231]: Inverse Restrictions: []\n", - "[INFO] [1712349615.632476]: -------------------\n", - "[INFO] [1712349615.632743]: SOMA.Compartment \n", - "[INFO] [1712349615.632992]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349615.633279]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.633554]: Subclasses: [SOMA.FreezerCompartment]\n", - "[INFO] [1712349615.633854]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.634349]: Instances: []\n", - "[INFO] [1712349615.634610]: Direct Instances: []\n", - "[INFO] [1712349615.634866]: Inverse Restrictions: []\n", - "[INFO] [1712349615.635130]: -------------------\n", - "[INFO] [1712349615.635387]: SOMA.Composing \n", - "[INFO] [1712349615.635636]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712349615.635906]: Ancestors: {SOMA.Composing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.636173]: Subclasses: []\n", - "[INFO] [1712349615.636477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.636980]: Instances: []\n", - "[INFO] [1712349615.637251]: Direct Instances: []\n", - "[INFO] [1712349615.637554]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712349615.637821]: -------------------\n", - "[INFO] [1712349615.638083]: SOMA.Computer_Language \n", - "[INFO] [1712349615.638391]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712349615.638670]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712349615.638941]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712349615.639240]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.639772]: Instances: []\n", - "[INFO] [1712349615.640044]: Direct Instances: []\n", - "[INFO] [1712349615.640308]: Inverse Restrictions: []\n", - "[INFO] [1712349615.640570]: -------------------\n", - "[INFO] [1712349615.640815]: SOMA.FormalLanguage \n", - "[INFO] [1712349615.641103]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712349615.641543]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712349615.641910]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349615.642316]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.642947]: Instances: []\n", - "[INFO] [1712349615.643312]: Direct Instances: []\n", - "[INFO] [1712349615.643716]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712349615.644058]: -------------------\n", - "[INFO] [1712349615.644389]: SOMA.Computer_Program \n", - "[INFO] [1712349615.644724]: Super classes: [owl.Thing]\n", - "[INFO] [1712349615.647011]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712349615.647354]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712349615.647686]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, DUL.expresses]\n", - "[INFO] [1712349615.648207]: Instances: []\n", - "[INFO] [1712349615.648485]: Direct Instances: []\n", - "[INFO] [1712349615.650310]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712349615.650607]: -------------------\n", - "[INFO] [1712349615.650875]: SOMA.Programming_Language \n", - "[INFO] [1712349615.651137]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712349615.651430]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Programming_Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712349615.651708]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712349615.652009]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.652511]: Instances: []\n", - "[INFO] [1712349615.652850]: Direct Instances: []\n", - "[INFO] [1712349615.653187]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712349615.653445]: -------------------\n", - "[INFO] [1712349615.653711]: SOMA.Conclusion \n", - "[INFO] [1712349615.653971]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712349615.654359]: Ancestors: {SOMA.Patient, DUL.SocialObject, SOMA.Conclusion, SOMA.EventAdjacentRole, DUL.Concept, DUL.Object, SOMA.Knowledge, DUL.Entity, SOMA.CreatedObject, owl.Thing, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349615.654654]: Subclasses: []\n", - "[INFO] [1712349615.654972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.655483]: Instances: []\n", - "[INFO] [1712349615.655749]: Direct Instances: []\n", - "[INFO] [1712349615.656809]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349615.657206]: -------------------\n", - "[INFO] [1712349615.657519]: SOMA.CreatedObject \n", - "[INFO] [1712349615.657772]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.658041]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.CreatedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.658303]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712349615.658598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.659091]: Instances: []\n", - "[INFO] [1712349615.659359]: Direct Instances: []\n", - "[INFO] [1712349615.659658]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712349615.659904]: -------------------\n", - "[INFO] [1712349615.660141]: SOMA.Knowledge \n", - "[INFO] [1712349615.660375]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712349615.660633]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349615.660892]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712349615.661184]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.661683]: Instances: []\n", - "[INFO] [1712349615.661959]: Direct Instances: []\n", - "[INFO] [1712349615.663129]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712349615.663392]: -------------------\n", - "[INFO] [1712349615.663651]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712349615.663904]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712349615.664175]: Ancestors: {DUL.Description, SOMA.ConditionalSuccedence, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Succedence, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349615.664420]: Subclasses: []\n", - "[INFO] [1712349615.664707]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.665230]: Instances: []\n", - "[INFO] [1712349615.665534]: Direct Instances: []\n", - "[INFO] [1712349615.665791]: Inverse Restrictions: []\n", - "[INFO] [1712349615.666034]: -------------------\n", - "[INFO] [1712349615.666268]: SOMA.Configuration \n", - "[INFO] [1712349615.666518]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712349615.666781]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Configuration}\n", - "[INFO] [1712349615.667023]: Subclasses: []\n", - "[INFO] [1712349615.667311]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", - "[INFO] [1712349615.667811]: Instances: []\n", - "[INFO] [1712349615.668077]: Direct Instances: []\n", - "[INFO] [1712349615.668330]: Inverse Restrictions: []\n", - "[INFO] [1712349615.668566]: -------------------\n", - "[INFO] [1712349615.668798]: SOMA.Connectivity \n", - "[INFO] [1712349615.669049]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712349615.669313]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic}\n", - "[INFO] [1712349615.669639]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712349615.669981]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.670504]: Instances: []\n", - "[INFO] [1712349615.670774]: Direct Instances: []\n", - "[INFO] [1712349615.671064]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712349615.671309]: -------------------\n", - "[INFO] [1712349615.671547]: SOMA.ContactState \n", - "[INFO] [1712349615.671809]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712349615.672092]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ContactState, owl.Thing}\n", - "[INFO] [1712349615.672349]: Subclasses: []\n", - "[INFO] [1712349615.672639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.673131]: Instances: []\n", - "[INFO] [1712349615.673434]: Direct Instances: []\n", - "[INFO] [1712349615.673695]: Inverse Restrictions: []\n", - "[INFO] [1712349615.673929]: -------------------\n", - "[INFO] [1712349615.674168]: SOMA.Container \n", - "[INFO] [1712349615.674398]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712349615.674661]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, SOMA.Container, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.674921]: Subclasses: []\n", - "[INFO] [1712349615.675213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.675695]: Instances: []\n", - "[INFO] [1712349615.675950]: Direct Instances: []\n", - "[INFO] [1712349615.676662]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712349615.677021]: -------------------\n", - "[INFO] [1712349615.677359]: SOMA.Containment \n", - "[INFO] [1712349615.677691]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712349615.678010]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.678294]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712349615.678613]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.679126]: Instances: []\n", - "[INFO] [1712349615.679403]: Direct Instances: []\n", - "[INFO] [1712349615.679884]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712349615.680148]: -------------------\n", - "[INFO] [1712349615.680407]: SOMA.IncludedObject \n", - "[INFO] [1712349615.680652]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.680924]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", - "[INFO] [1712349615.681316]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712349615.681724]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.682335]: Instances: []\n", - "[INFO] [1712349615.682705]: Direct Instances: []\n", - "[INFO] [1712349615.683095]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712349615.683452]: -------------------\n", - "[INFO] [1712349615.683818]: SOMA.ContainmentState \n", - "[INFO] [1712349615.684942]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712349615.685345]: Ancestors: {SOMA.StateType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ContainmentState, SOMA.FunctionalControl, owl.Thing}\n", - "[INFO] [1712349615.685713]: Subclasses: []\n", - "[INFO] [1712349615.686118]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349615.686706]: Instances: []\n", - "[INFO] [1712349615.687062]: Direct Instances: []\n", - "[INFO] [1712349615.687408]: Inverse Restrictions: []\n", - "[INFO] [1712349615.687743]: -------------------\n", - "[INFO] [1712349615.688095]: SOMA.FunctionalControl \n", - "[INFO] [1712349615.688498]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712349615.688910]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.FunctionalControl, owl.Thing}\n", - "[INFO] [1712349615.689321]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712349615.689774]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349615.690463]: Instances: []\n", - "[INFO] [1712349615.690882]: Direct Instances: []\n", - "[INFO] [1712349615.691285]: Inverse Restrictions: []\n", - "[INFO] [1712349615.691671]: -------------------\n", - "[INFO] [1712349615.692040]: SOMA.ContainmentTheory \n", - "[INFO] [1712349615.692405]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712349615.692818]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.693208]: Subclasses: []\n", - "[INFO] [1712349615.693623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.694213]: Instances: []\n", - "[INFO] [1712349615.694568]: Direct Instances: []\n", - "[INFO] [1712349615.694909]: Inverse Restrictions: []\n", - "[INFO] [1712349615.695239]: -------------------\n", - "[INFO] [1712349615.695590]: SOMA.ControlTheory \n", - "[INFO] [1712349615.695928]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712349615.696274]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.696620]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712349615.697030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.697629]: Instances: []\n", - "[INFO] [1712349615.697987]: Direct Instances: []\n", - "[INFO] [1712349615.698339]: Inverse Restrictions: []\n", - "[INFO] [1712349615.698674]: -------------------\n", - "[INFO] [1712349615.699003]: SOMA.ContinuousJoint \n", - "[INFO] [1712349615.699363]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712349615.699754]: Ancestors: {SOMA.Joint, SOMA.ContinuousJoint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349615.700098]: Subclasses: []\n", - "[INFO] [1712349615.700482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.701084]: Instances: []\n", - "[INFO] [1712349615.701446]: Direct Instances: []\n", - "[INFO] [1712349615.701789]: Inverse Restrictions: []\n", - "[INFO] [1712349615.702123]: -------------------\n", - "[INFO] [1712349615.702451]: SOMA.HingeJoint \n", - "[INFO] [1712349615.702774]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712349615.703122]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349615.703484]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712349615.703869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.704455]: Instances: []\n", - "[INFO] [1712349615.704816]: Direct Instances: []\n", - "[INFO] [1712349615.705170]: Inverse Restrictions: []\n", - "[INFO] [1712349615.705507]: -------------------\n", - "[INFO] [1712349615.705839]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712349615.706194]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712349615.706538]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.706893]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712349615.707280]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349615.707875]: Instances: []\n", - "[INFO] [1712349615.708233]: Direct Instances: []\n", - "[INFO] [1712349615.708583]: Inverse Restrictions: []\n", - "[INFO] [1712349615.708925]: -------------------\n", - "[INFO] [1712349615.709258]: SOMA.Cooktop \n", - "[INFO] [1712349615.709577]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349615.709910]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.710265]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", - "[INFO] [1712349615.710647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.711234]: Instances: []\n", - "[INFO] [1712349615.711597]: Direct Instances: []\n", - "[INFO] [1712349615.711942]: Inverse Restrictions: []\n", - "[INFO] [1712349615.712272]: -------------------\n", - "[INFO] [1712349615.712598]: SOMA.Countertop \n", - "[INFO] [1712349615.712922]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349615.713280]: Ancestors: {SOMA.FunctionalPart, SOMA.Countertop, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.713639]: Subclasses: []\n", - "[INFO] [1712349615.714023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.714597]: Instances: []\n", - "[INFO] [1712349615.714942]: Direct Instances: []\n", - "[INFO] [1712349615.715274]: Inverse Restrictions: []\n", - "[INFO] [1712349615.715607]: -------------------\n", - "[INFO] [1712349615.715981]: SOMA.Cover \n", - "[INFO] [1712349615.716310]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712349615.716667]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role, SOMA.Cover}\n", - "[INFO] [1712349615.717025]: Subclasses: []\n", - "[INFO] [1712349615.717365]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.717885]: Instances: []\n", - "[INFO] [1712349615.718161]: Direct Instances: []\n", - "[INFO] [1712349615.718468]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712349615.718719]: -------------------\n", - "[INFO] [1712349615.719066]: SOMA.Coverage \n", - "[INFO] [1712349615.719380]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712349615.719675]: Ancestors: {SOMA.PhysicalQuality, SOMA.Coverage, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.719938]: Subclasses: []\n", - "[INFO] [1712349615.720231]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.720718]: Instances: []\n", - "[INFO] [1712349615.721041]: Direct Instances: []\n", - "[INFO] [1712349615.721356]: Inverse Restrictions: []\n", - "[INFO] [1712349615.721617]: -------------------\n", - "[INFO] [1712349615.721872]: SOMA.CoveredObject \n", - "[INFO] [1712349615.722122]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712349615.722408]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.CoveredObject, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.722667]: Subclasses: []\n", - "[INFO] [1712349615.722960]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.723436]: Instances: []\n", - "[INFO] [1712349615.723713]: Direct Instances: []\n", - "[INFO] [1712349615.724011]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712349615.724255]: -------------------\n", - "[INFO] [1712349615.724490]: SOMA.CoverageTheory \n", - "[INFO] [1712349615.724722]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712349615.725000]: Ancestors: {DUL.Description, SOMA.CoverageTheory, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.725258]: Subclasses: []\n", - "[INFO] [1712349615.725554]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.726048]: Instances: []\n", - "[INFO] [1712349615.726298]: Direct Instances: []\n", - "[INFO] [1712349615.726544]: Inverse Restrictions: []\n", - "[INFO] [1712349615.726780]: -------------------\n", - "[INFO] [1712349615.727016]: SOMA.CoveringTheory \n", - "[INFO] [1712349615.727254]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712349615.727531]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, SOMA.CoveringTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349615.727767]: Subclasses: []\n", - "[INFO] [1712349615.728071]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349615.728561]: Instances: []\n", - "[INFO] [1712349615.728818]: Direct Instances: []\n", - "[INFO] [1712349615.729061]: Inverse Restrictions: []\n", - "[INFO] [1712349615.729298]: -------------------\n", - "[INFO] [1712349615.729537]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712349615.729772]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712349615.730011]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349615.730269]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712349615.730568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349615.731058]: Instances: []\n", - "[INFO] [1712349615.731308]: Direct Instances: []\n", - "[INFO] [1712349615.731561]: Inverse Restrictions: []\n", - "[INFO] [1712349615.731802]: -------------------\n", - "[INFO] [1712349615.732034]: SOMA.CrackingTheory \n", - "[INFO] [1712349615.732269]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712349615.732563]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.CrackingTheory, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349615.732842]: Subclasses: []\n", - "[INFO] [1712349615.733148]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349615.733659]: Instances: []\n", - "[INFO] [1712349615.733931]: Direct Instances: []\n", - "[INFO] [1712349615.734183]: Inverse Restrictions: []\n", - "[INFO] [1712349615.734427]: -------------------\n", - "[INFO] [1712349615.734665]: SOMA.Creation \n", - "[INFO] [1712349615.734901]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712349615.735170]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Creation, owl.Thing}\n", - "[INFO] [1712349615.735405]: Subclasses: []\n", - "[INFO] [1712349615.735698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349615.736189]: Instances: []\n", - "[INFO] [1712349615.736442]: Direct Instances: []\n", - "[INFO] [1712349615.736683]: Inverse Restrictions: []\n", - "[INFO] [1712349615.736915]: -------------------\n", - "[INFO] [1712349615.737190]: SOMA.Tableware \n", - "[INFO] [1712349615.737439]: Super classes: [SOMA.DesignedTool]\n", - "[INFO] [1712349615.737685]: Ancestors: {SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.737937]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", - "[INFO] [1712349615.738221]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.738765]: Instances: []\n", - "[INFO] [1712349615.739043]: Direct Instances: []\n", - "[INFO] [1712349615.739300]: Inverse Restrictions: []\n", - "[INFO] [1712349615.739532]: -------------------\n", - "[INFO] [1712349615.739762]: SOMA.Insertion \n", - "[INFO] [1712349615.740036]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712349615.740326]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, SOMA.Insertion, DUL.Entity, SOMA.Enclosing, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.740566]: Subclasses: []\n", - "[INFO] [1712349615.740874]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.741408]: Instances: []\n", - "[INFO] [1712349615.741687]: Direct Instances: []\n", - "[INFO] [1712349615.742230]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712349615.742488]: -------------------\n", - "[INFO] [1712349615.742812]: SOMA.Cup \n", - "[INFO] [1712349615.743101]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712349615.743390]: Ancestors: {SOMA.Crockery, SOMA.Cup, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.743644]: Subclasses: []\n", - "[INFO] [1712349615.743932]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.744433]: Instances: []\n", - "[INFO] [1712349615.744696]: Direct Instances: []\n", - "[INFO] [1712349615.744999]: Inverse Restrictions: []\n", - "[INFO] [1712349615.745274]: -------------------\n", - "[INFO] [1712349615.745524]: SOMA.DesignedHandle \n", - "[INFO] [1712349615.745791]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", - "[INFO] [1712349615.746076]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.DesignedHandle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.746323]: Subclasses: []\n", - "[INFO] [1712349615.746614]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.747121]: Instances: []\n", - "[INFO] [1712349615.747401]: Direct Instances: []\n", - "[INFO] [1712349615.747752]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", - "[INFO] [1712349615.748007]: -------------------\n", - "[INFO] [1712349615.748256]: SOMA.Cupboard \n", - "[INFO] [1712349615.748519]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", - "[INFO] [1712349615.748812]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Cupboard}\n", - "[INFO] [1712349615.749190]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", - "[INFO] [1712349615.749539]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.750218]: Instances: []\n", - "[INFO] [1712349615.750530]: Direct Instances: []\n", - "[INFO] [1712349615.750802]: Inverse Restrictions: []\n", - "[INFO] [1712349615.751050]: -------------------\n", - "[INFO] [1712349615.751288]: SOMA.DesignedFurniture \n", - "[INFO] [1712349615.751539]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712349615.751796]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.752060]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712349615.752358]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.752861]: Instances: []\n", - "[INFO] [1712349615.753157]: Direct Instances: []\n", - "[INFO] [1712349615.753431]: Inverse Restrictions: []\n", - "[INFO] [1712349615.753673]: -------------------\n", - "[INFO] [1712349615.753907]: SOMA.Rack \n", - "[INFO] [1712349615.754137]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349615.754417]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Rack, DUL.PhysicalObject}\n", - "[INFO] [1712349615.754674]: Subclasses: []\n", - "[INFO] [1712349615.754967]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.755445]: Instances: []\n", - "[INFO] [1712349615.755705]: Direct Instances: []\n", - "[INFO] [1712349615.755996]: Inverse Restrictions: [SOMA.Cupboard]\n", - "[INFO] [1712349615.756235]: -------------------\n", - "[INFO] [1712349615.756466]: SOMA.Cutlery \n", - "[INFO] [1712349615.756691]: Super classes: [SOMA.Tableware]\n", - "[INFO] [1712349615.756966]: Ancestors: {SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.757235]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", - "[INFO] [1712349615.757519]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.758002]: Instances: []\n", - "[INFO] [1712349615.758276]: Direct Instances: []\n", - "[INFO] [1712349615.758534]: Inverse Restrictions: []\n", - "[INFO] [1712349615.758765]: -------------------\n", - "[INFO] [1712349615.758990]: SOMA.Cuttability \n", - "[INFO] [1712349615.759224]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712349615.759495]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Cuttability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.759758]: Subclasses: []\n", - "[INFO] [1712349615.760052]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.760530]: Instances: []\n", - "[INFO] [1712349615.760805]: Direct Instances: []\n", - "[INFO] [1712349615.761065]: Inverse Restrictions: []\n", - "[INFO] [1712349615.761303]: -------------------\n", - "[INFO] [1712349615.761537]: SOMA.Tool \n", - "[INFO] [1712349615.761762]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712349615.762002]: Ancestors: {SOMA.Tool, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.762266]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712349615.762554]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.763034]: Instances: []\n", - "[INFO] [1712349615.763290]: Direct Instances: []\n", - "[INFO] [1712349615.763577]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712349615.763825]: -------------------\n", - "[INFO] [1712349615.764064]: SOMA.Cutting \n", - "[INFO] [1712349615.764297]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712349615.764568]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.764845]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712349615.765142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.765631]: Instances: []\n", - "[INFO] [1712349615.765891]: Direct Instances: []\n", - "[INFO] [1712349615.766151]: Inverse Restrictions: []\n", - "[INFO] [1712349615.766394]: -------------------\n", - "[INFO] [1712349615.766633]: SOMA.CuttingTool \n", - "[INFO] [1712349615.766886]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", - "[INFO] [1712349615.767132]: Ancestors: {SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.767379]: Subclasses: [SOMA.Knife]\n", - "[INFO] [1712349615.767660]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712349615.768172]: Instances: []\n", - "[INFO] [1712349615.768437]: Direct Instances: []\n", - "[INFO] [1712349615.768692]: Inverse Restrictions: []\n", - "[INFO] [1712349615.768936]: -------------------\n", - "[INFO] [1712349615.769175]: SOMA.DesignedTool \n", - "[INFO] [1712349615.769409]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712349615.769666]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.769918]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712349615.770207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.770725]: Instances: []\n", - "[INFO] [1712349615.771001]: Direct Instances: []\n", - "[INFO] [1712349615.771260]: Inverse Restrictions: []\n", - "[INFO] [1712349615.771519]: -------------------\n", - "[INFO] [1712349615.771763]: SOMA.Shaping \n", - "[INFO] [1712349615.772046]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712349615.772345]: Ancestors: {SOMA.PhysicalQuality, SOMA.Shaping, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.772597]: Subclasses: []\n", - "[INFO] [1712349615.772899]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.773381]: Instances: []\n", - "[INFO] [1712349615.773664]: Direct Instances: []\n", - "[INFO] [1712349615.773948]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712349615.774189]: -------------------\n", - "[INFO] [1712349615.774423]: SOMA.Database \n", - "[INFO] [1712349615.774652]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349615.774920]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", - "[INFO] [1712349615.775195]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712349615.775491]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.775986]: Instances: []\n", - "[INFO] [1712349615.776260]: Direct Instances: []\n", - "[INFO] [1712349615.776514]: Inverse Restrictions: []\n", - "[INFO] [1712349615.776747]: -------------------\n", - "[INFO] [1712349615.777002]: SOMA.SoftwareRole \n", - "[INFO] [1712349615.777268]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712349615.777513]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.777770]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712349615.778058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.778583]: Instances: []\n", - "[INFO] [1712349615.778852]: Direct Instances: []\n", - "[INFO] [1712349615.779145]: Inverse Restrictions: []\n", - "[INFO] [1712349615.779377]: -------------------\n", - "[INFO] [1712349615.779609]: SOMA.Deciding \n", - "[INFO] [1712349615.779850]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349615.780120]: Ancestors: {owl.Thing, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712349615.780382]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712349615.780673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.781236]: Instances: []\n", - "[INFO] [1712349615.781576]: Direct Instances: []\n", - "[INFO] [1712349615.781861]: Inverse Restrictions: []\n", - "[INFO] [1712349615.782110]: -------------------\n", - "[INFO] [1712349615.782349]: SOMA.DerivingInformation \n", - "[INFO] [1712349615.782609]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712349615.782864]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712349615.783128]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712349615.783419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isTaskOfInputRole, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712349615.783949]: Instances: []\n", - "[INFO] [1712349615.784239]: Direct Instances: []\n", - "[INFO] [1712349615.784509]: Inverse Restrictions: []\n", - "[INFO] [1712349615.784745]: -------------------\n", - "[INFO] [1712349615.785047]: SOMA.DeductiveReasoning \n", - "[INFO] [1712349615.785324]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712349615.785614]: Ancestors: {SOMA.InformationAcquisition, SOMA.DeductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", - "[INFO] [1712349615.785873]: Subclasses: []\n", - "[INFO] [1712349615.786171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.786660]: Instances: []\n", - "[INFO] [1712349615.786938]: Direct Instances: []\n", - "[INFO] [1712349615.787190]: Inverse Restrictions: []\n", - "[INFO] [1712349615.787425]: -------------------\n", - "[INFO] [1712349615.787654]: SOMA.Deformation \n", - "[INFO] [1712349615.787929]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712349615.788221]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.Deformation, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.788478]: Subclasses: []\n", - "[INFO] [1712349615.788787]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf]\n", - "[INFO] [1712349615.789303]: Instances: []\n", - "[INFO] [1712349615.789569]: Direct Instances: []\n", - "[INFO] [1712349615.789821]: Inverse Restrictions: []\n", - "[INFO] [1712349615.790054]: -------------------\n", - "[INFO] [1712349615.790292]: SOMA.ShapedObject \n", - "[INFO] [1712349615.790580]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712349615.790864]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ShapedObject, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", - "[INFO] [1712349615.791107]: Subclasses: []\n", - "[INFO] [1712349615.791404]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.791889]: Instances: []\n", - "[INFO] [1712349615.792163]: Direct Instances: []\n", - "[INFO] [1712349615.792486]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712349615.792733]: -------------------\n", - "[INFO] [1712349615.792980]: SOMA.FluidFlow \n", - "[INFO] [1712349615.793246]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712349615.793539]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.FluidFlow, owl.Thing}\n", - "[INFO] [1712349615.793791]: Subclasses: []\n", - "[INFO] [1712349615.794091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349615.794566]: Instances: []\n", - "[INFO] [1712349615.794840]: Direct Instances: []\n", - "[INFO] [1712349615.795100]: Inverse Restrictions: []\n", - "[INFO] [1712349615.795332]: -------------------\n", - "[INFO] [1712349615.795557]: SOMA.Shifting \n", - "[INFO] [1712349615.795824]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712349615.796118]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Shifting, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.796374]: Subclasses: []\n", - "[INFO] [1712349615.796671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.797166]: Instances: []\n", - "[INFO] [1712349615.797433]: Direct Instances: []\n", - "[INFO] [1712349615.797782]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712349615.798042]: -------------------\n", - "[INFO] [1712349615.798292]: SOMA.DependentPlace \n", - "[INFO] [1712349615.798528]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712349615.798793]: Ancestors: {SOMA.Feature, DUL.Object, SOMA.DependentPlace, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.799046]: Subclasses: []\n", - "[INFO] [1712349615.799364]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.799859]: Instances: []\n", - "[INFO] [1712349615.800113]: Direct Instances: []\n", - "[INFO] [1712349615.800375]: Inverse Restrictions: []\n", - "[INFO] [1712349615.800633]: -------------------\n", - "[INFO] [1712349615.800884]: SOMA.Deposit \n", - "[INFO] [1712349615.801120]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712349615.801382]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, SOMA.Deposit, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.801637]: Subclasses: []\n", - "[INFO] [1712349615.801927]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.802405]: Instances: []\n", - "[INFO] [1712349615.802664]: Direct Instances: []\n", - "[INFO] [1712349615.802950]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712349615.803218]: -------------------\n", - "[INFO] [1712349615.803465]: SOMA.DepositedObject \n", - "[INFO] [1712349615.803720]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.803999]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.DepositedObject, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.804259]: Subclasses: []\n", - "[INFO] [1712349615.804553]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.805045]: Instances: []\n", - "[INFO] [1712349615.805330]: Direct Instances: []\n", - "[INFO] [1712349615.805627]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712349615.805882]: -------------------\n", - "[INFO] [1712349615.806376]: SOMA.InformationAcquisition \n", - "[INFO] [1712349615.806919]: Super classes: [owl.Thing]\n", - "[INFO] [1712349615.807405]: Ancestors: {owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712349615.808286]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712349615.809718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712349615.812027]: Instances: []\n", - "[INFO] [1712349615.812852]: Direct Instances: []\n", - "[INFO] [1712349615.813684]: Inverse Restrictions: []\n", - "[INFO] [1712349615.814177]: -------------------\n", - "[INFO] [1712349615.814631]: SOMA.Premise \n", - "[INFO] [1712349615.814975]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712349615.815281]: Ancestors: {SOMA.Premise, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, SOMA.Item}\n", - "[INFO] [1712349615.815560]: Subclasses: []\n", - "[INFO] [1712349615.815892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.816404]: Instances: []\n", - "[INFO] [1712349615.816692]: Direct Instances: []\n", - "[INFO] [1712349615.817045]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349615.817309]: -------------------\n", - "[INFO] [1712349615.817555]: SOMA.FunctionalPart \n", - "[INFO] [1712349615.818309]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712349615.818629]: Ancestors: {SOMA.FunctionalPart, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349615.818915]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712349615.819237]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.819804]: Instances: []\n", - "[INFO] [1712349615.820094]: Direct Instances: []\n", - "[INFO] [1712349615.820365]: Inverse Restrictions: []\n", - "[INFO] [1712349615.820616]: -------------------\n", - "[INFO] [1712349615.820895]: SOMA.Graspability \n", - "[INFO] [1712349615.821156]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712349615.821431]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Graspability, SOMA.Extrinsic}\n", - "[INFO] [1712349615.821677]: Subclasses: []\n", - "[INFO] [1712349615.821970]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.822488]: Instances: []\n", - "[INFO] [1712349615.822764]: Direct Instances: []\n", - "[INFO] [1712349615.823048]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712349615.823300]: -------------------\n", - "[INFO] [1712349615.823543]: SOMA.DesignedSpade \n", - "[INFO] [1712349615.823780]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349615.824057]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, SOMA.DesignedSpade, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.824317]: Subclasses: []\n", - "[INFO] [1712349615.824613]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.825215]: Instances: []\n", - "[INFO] [1712349615.825516]: Direct Instances: []\n", - "[INFO] [1712349615.825834]: Inverse Restrictions: [SOMA.Spatula]\n", - "[INFO] [1712349615.826086]: -------------------\n", - "[INFO] [1712349615.826327]: SOMA.DessertFork \n", - "[INFO] [1712349615.826759]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712349615.827105]: Ancestors: {SOMA.DessertFork, SOMA.Tableware, SOMA.Fork, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.827360]: Subclasses: []\n", - "[INFO] [1712349615.827651]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.828171]: Instances: []\n", - "[INFO] [1712349615.828449]: Direct Instances: []\n", - "[INFO] [1712349615.828702]: Inverse Restrictions: []\n", - "[INFO] [1712349615.828961]: -------------------\n", - "[INFO] [1712349615.829216]: SOMA.Fork \n", - "[INFO] [1712349615.829471]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712349615.829736]: Ancestors: {SOMA.Tableware, SOMA.Fork, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.829994]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", - "[INFO] [1712349615.830288]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349615.830782]: Instances: []\n", - "[INFO] [1712349615.831041]: Direct Instances: []\n", - "[INFO] [1712349615.831359]: Inverse Restrictions: []\n", - "[INFO] [1712349615.831641]: -------------------\n", - "[INFO] [1712349615.831906]: SOMA.Destination \n", - "[INFO] [1712349615.832168]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712349615.832441]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Role}\n", - "[INFO] [1712349615.832733]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712349615.833134]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.833673]: Instances: []\n", - "[INFO] [1712349615.833964]: Direct Instances: []\n", - "[INFO] [1712349615.834319]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712349615.834566]: -------------------\n", - "[INFO] [1712349615.834801]: SOMA.Location \n", - "[INFO] [1712349615.835030]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712349615.835270]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Location, DUL.Role}\n", - "[INFO] [1712349615.835534]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712349615.835829]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.836314]: Instances: []\n", - "[INFO] [1712349615.836572]: Direct Instances: []\n", - "[INFO] [1712349615.836839]: Inverse Restrictions: []\n", - "[INFO] [1712349615.837084]: -------------------\n", - "[INFO] [1712349615.837314]: SOMA.DestroyedObject \n", - "[INFO] [1712349615.837539]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.837821]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.DestroyedObject, DUL.Role}\n", - "[INFO] [1712349615.838069]: Subclasses: []\n", - "[INFO] [1712349615.838377]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.838885]: Instances: []\n", - "[INFO] [1712349615.839148]: Direct Instances: []\n", - "[INFO] [1712349615.839456]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712349615.839697]: -------------------\n", - "[INFO] [1712349615.839940]: SOMA.Destruction \n", - "[INFO] [1712349615.840185]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712349615.840460]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Destruction, owl.Thing}\n", - "[INFO] [1712349615.840716]: Subclasses: []\n", - "[INFO] [1712349615.841023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349615.841530]: Instances: []\n", - "[INFO] [1712349615.841801]: Direct Instances: []\n", - "[INFO] [1712349615.842042]: Inverse Restrictions: []\n", - "[INFO] [1712349615.842275]: -------------------\n", - "[INFO] [1712349615.842503]: SOMA.DetectedObject \n", - "[INFO] [1712349615.842734]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.843017]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.DetectedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.843266]: Subclasses: []\n", - "[INFO] [1712349615.843553]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.844033]: Instances: []\n", - "[INFO] [1712349615.844305]: Direct Instances: []\n", - "[INFO] [1712349615.844561]: Inverse Restrictions: []\n", - "[INFO] [1712349615.844810]: -------------------\n", - "[INFO] [1712349615.845048]: SOMA.DeviceState \n", - "[INFO] [1712349615.845279]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349615.845546]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.DeviceState, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712349615.845802]: Subclasses: []\n", - "[INFO] [1712349615.846092]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.846576]: Instances: []\n", - "[INFO] [1712349615.846831]: Direct Instances: []\n", - "[INFO] [1712349615.847065]: Inverse Restrictions: []\n", - "[INFO] [1712349615.847296]: -------------------\n", - "[INFO] [1712349615.847533]: SOMA.DeviceStateRange \n", - "[INFO] [1712349615.847764]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349615.848629]: Ancestors: {SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.848945]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712349615.849272]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.849775]: Instances: []\n", - "[INFO] [1712349615.850034]: Direct Instances: []\n", - "[INFO] [1712349615.850304]: Inverse Restrictions: []\n", - "[INFO] [1712349615.850543]: -------------------\n", - "[INFO] [1712349615.850776]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712349615.851006]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712349615.851266]: Ancestors: {SOMA.DeviceTurnedOff, SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.851520]: Subclasses: []\n", - "[INFO] [1712349615.851809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.852290]: Instances: []\n", - "[INFO] [1712349615.852549]: Direct Instances: []\n", - "[INFO] [1712349615.852860]: Inverse Restrictions: []\n", - "[INFO] [1712349615.853165]: -------------------\n", - "[INFO] [1712349615.853435]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712349615.853685]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712349615.853966]: Ancestors: {SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOn}\n", - "[INFO] [1712349615.854219]: Subclasses: []\n", - "[INFO] [1712349615.854514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.855018]: Instances: []\n", - "[INFO] [1712349615.855286]: Direct Instances: []\n", - "[INFO] [1712349615.855590]: Inverse Restrictions: []\n", - "[INFO] [1712349615.855828]: -------------------\n", - "[INFO] [1712349615.856058]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712349615.856308]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712349615.856553]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349615.856821]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712349615.857211]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.857733]: Instances: []\n", - "[INFO] [1712349615.858029]: Direct Instances: []\n", - "[INFO] [1712349615.858302]: Inverse Restrictions: []\n", - "[INFO] [1712349615.858555]: -------------------\n", - "[INFO] [1712349615.858805]: SOMA.Dicing \n", - "[INFO] [1712349615.859043]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712349615.859318]: Ancestors: {SOMA.PhysicalTask, SOMA.ModifyingPhysicalObject, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing, SOMA.Dicing}\n", - "[INFO] [1712349615.859572]: Subclasses: []\n", - "[INFO] [1712349615.859856]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.860334]: Instances: []\n", - "[INFO] [1712349615.860605]: Direct Instances: []\n", - "[INFO] [1712349615.860867]: Inverse Restrictions: []\n", - "[INFO] [1712349615.861117]: -------------------\n", - "[INFO] [1712349615.861358]: SOMA.DinnerPlate \n", - "[INFO] [1712349615.861595]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712349615.861865]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Plate, SOMA.DinnerPlate, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.862125]: Subclasses: []\n", - "[INFO] [1712349615.862419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.862906]: Instances: []\n", - "[INFO] [1712349615.863162]: Direct Instances: []\n", - "[INFO] [1712349615.863407]: Inverse Restrictions: []\n", - "[INFO] [1712349615.863648]: -------------------\n", - "[INFO] [1712349615.863889]: SOMA.DirectedMotion \n", - "[INFO] [1712349615.864122]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712349615.864361]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349615.864630]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712349615.865052]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.865665]: Instances: []\n", - "[INFO] [1712349615.866022]: Direct Instances: []\n", - "[INFO] [1712349615.866347]: Inverse Restrictions: []\n", - "[INFO] [1712349615.866645]: -------------------\n", - "[INFO] [1712349615.866947]: SOMA.UndirectedMotion \n", - "[INFO] [1712349615.867255]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712349615.867604]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.UndirectedMotion, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349615.867958]: Subclasses: []\n", - "[INFO] [1712349615.868369]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.869072]: Instances: []\n", - "[INFO] [1712349615.869452]: Direct Instances: []\n", - "[INFO] [1712349615.869833]: Inverse Restrictions: []\n", - "[INFO] [1712349615.870242]: -------------------\n", - "[INFO] [1712349615.870653]: SOMA.Dirty \n", - "[INFO] [1712349615.871059]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712349615.871493]: Ancestors: {SOMA.Dirty, DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349615.871929]: Subclasses: []\n", - "[INFO] [1712349615.872443]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.873357]: Instances: []\n", - "[INFO] [1712349615.873933]: Direct Instances: []\n", - "[INFO] [1712349615.874469]: Inverse Restrictions: []\n", - "[INFO] [1712349615.874966]: -------------------\n", - "[INFO] [1712349615.875480]: SOMA.Discourse \n", - "[INFO] [1712349615.876038]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349615.876673]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, SOMA.Discourse, owl.Thing}\n", - "[INFO] [1712349615.877297]: Subclasses: []\n", - "[INFO] [1712349615.878023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.879207]: Instances: []\n", - "[INFO] [1712349615.879796]: Direct Instances: []\n", - "[INFO] [1712349615.880335]: Inverse Restrictions: []\n", - "[INFO] [1712349615.880830]: -------------------\n", - "[INFO] [1712349615.881337]: SOMA.Dishwasher \n", - "[INFO] [1712349615.881885]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", - "[INFO] [1712349615.882449]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, SOMA.Dishwasher, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.882993]: Subclasses: []\n", - "[INFO] [1712349615.883540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.884479]: Instances: []\n", - "[INFO] [1712349615.884977]: Direct Instances: []\n", - "[INFO] [1712349615.885436]: Inverse Restrictions: []\n", - "[INFO] [1712349615.885850]: -------------------\n", - "[INFO] [1712349615.886248]: SOMA.DishwasherTab \n", - "[INFO] [1712349615.886629]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712349615.887110]: Ancestors: {SOMA.DishwasherTab, DUL.DesignedSubstance, DUL.Substance, DUL.Object, DUL.PhysicalBody, DUL.FunctionalSubstance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.887523]: Subclasses: []\n", - "[INFO] [1712349615.887970]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.888694]: Instances: []\n", - "[INFO] [1712349615.889272]: Direct Instances: []\n", - "[INFO] [1712349615.889732]: Inverse Restrictions: []\n", - "[INFO] [1712349615.890107]: -------------------\n", - "[INFO] [1712349615.890458]: SOMA.Dispenser \n", - "[INFO] [1712349615.890819]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712349615.891212]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Dispenser}\n", - "[INFO] [1712349615.891576]: Subclasses: [SOMA.SugarDispenser]\n", - "[INFO] [1712349615.891988]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.892693]: Instances: []\n", - "[INFO] [1712349615.893077]: Direct Instances: []\n", - "[INFO] [1712349615.893443]: Inverse Restrictions: []\n", - "[INFO] [1712349615.893790]: -------------------\n", - "[INFO] [1712349615.894141]: SOMA.Distancing \n", - "[INFO] [1712349615.894490]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712349615.894913]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, SOMA.Distancing, owl.Thing}\n", - "[INFO] [1712349615.895302]: Subclasses: []\n", - "[INFO] [1712349615.895742]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.896519]: Instances: []\n", - "[INFO] [1712349615.896937]: Direct Instances: []\n", - "[INFO] [1712349615.897338]: Inverse Restrictions: []\n", - "[INFO] [1712349615.897732]: -------------------\n", - "[INFO] [1712349615.898123]: SOMA.Door \n", - "[INFO] [1712349615.898515]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349615.898970]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, SOMA.Door, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.899405]: Subclasses: []\n", - "[INFO] [1712349615.899897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.900735]: Instances: []\n", - "[INFO] [1712349615.901254]: Direct Instances: []\n", - "[INFO] [1712349615.901763]: Inverse Restrictions: [SOMA.Refrigerator]\n", - "[INFO] [1712349615.902196]: -------------------\n", - "[INFO] [1712349615.902612]: SOMA.Drawer \n", - "[INFO] [1712349615.903006]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", - "[INFO] [1712349615.903459]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, SOMA.Drawer, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349615.903848]: Subclasses: []\n", - "[INFO] [1712349615.904288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.905008]: Instances: []\n", - "[INFO] [1712349615.905405]: Direct Instances: []\n", - "[INFO] [1712349615.905794]: Inverse Restrictions: []\n", - "[INFO] [1712349615.906134]: -------------------\n", - "[INFO] [1712349615.906453]: SOMA.Dreaming \n", - "[INFO] [1712349615.906791]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349615.907299]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", - "[INFO] [1712349615.907757]: Subclasses: []\n", - "[INFO] [1712349615.908243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.908903]: Instances: []\n", - "[INFO] [1712349615.909372]: Direct Instances: []\n", - "[INFO] [1712349615.909728]: Inverse Restrictions: []\n", - "[INFO] [1712349615.910034]: -------------------\n", - "[INFO] [1712349615.910323]: SOMA.Driving \n", - "[INFO] [1712349615.910603]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349615.910934]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion, SOMA.Driving}\n", - "[INFO] [1712349615.911249]: Subclasses: []\n", - "[INFO] [1712349615.911643]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.912300]: Instances: []\n", - "[INFO] [1712349615.912662]: Direct Instances: []\n", - "[INFO] [1712349615.913023]: Inverse Restrictions: []\n", - "[INFO] [1712349615.913365]: -------------------\n", - "[INFO] [1712349615.913715]: SOMA.Flying \n", - "[INFO] [1712349615.914081]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349615.914530]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.Flying, SOMA.DirectedMotion}\n", - "[INFO] [1712349615.914957]: Subclasses: []\n", - "[INFO] [1712349615.915485]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.916419]: Instances: []\n", - "[INFO] [1712349615.916985]: Direct Instances: []\n", - "[INFO] [1712349615.917578]: Inverse Restrictions: []\n", - "[INFO] [1712349615.918125]: -------------------\n", - "[INFO] [1712349615.918676]: SOMA.Swimming \n", - "[INFO] [1712349615.919220]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349615.919873]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Swimming, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349615.920491]: Subclasses: []\n", - "[INFO] [1712349615.921208]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.922324]: Instances: []\n", - "[INFO] [1712349615.922892]: Direct Instances: []\n", - "[INFO] [1712349615.923421]: Inverse Restrictions: []\n", - "[INFO] [1712349615.923907]: -------------------\n", - "[INFO] [1712349615.924409]: SOMA.Walking \n", - "[INFO] [1712349615.924878]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349615.925390]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Walking, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349615.925855]: Subclasses: []\n", - "[INFO] [1712349615.926356]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.927156]: Instances: []\n", - "[INFO] [1712349615.927566]: Direct Instances: []\n", - "[INFO] [1712349615.927943]: Inverse Restrictions: []\n", - "[INFO] [1712349615.928292]: -------------------\n", - "[INFO] [1712349615.928656]: SOMA.Dropping \n", - "[INFO] [1712349615.928998]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349615.929370]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Dropping, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349615.929699]: Subclasses: []\n", - "[INFO] [1712349615.930091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.930746]: Instances: []\n", - "[INFO] [1712349615.931073]: Direct Instances: []\n", - "[INFO] [1712349615.931390]: Inverse Restrictions: []\n", - "[INFO] [1712349615.931697]: -------------------\n", - "[INFO] [1712349615.931978]: SOMA.Placing \n", - "[INFO] [1712349615.932247]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349615.932531]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Placing, owl.Thing}\n", - "[INFO] [1712349615.932808]: Subclasses: []\n", - "[INFO] [1712349615.933131]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.933634]: Instances: []\n", - "[INFO] [1712349615.933896]: Direct Instances: []\n", - "[INFO] [1712349615.934142]: Inverse Restrictions: []\n", - "[INFO] [1712349615.934387]: -------------------\n", - "[INFO] [1712349615.934625]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712349615.934892]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712349615.935163]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ESTSchemaTheory, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.935432]: Subclasses: []\n", - "[INFO] [1712349615.935732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349615.936225]: Instances: []\n", - "[INFO] [1712349615.936484]: Direct Instances: []\n", - "[INFO] [1712349615.936742]: Inverse Restrictions: []\n", - "[INFO] [1712349615.936992]: -------------------\n", - "[INFO] [1712349615.937227]: SOMA.ExistingObjectRole \n", - "[INFO] [1712349615.937461]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349615.937728]: Ancestors: {SOMA.ExistingObjectRole, DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.937988]: Subclasses: []\n", - "[INFO] [1712349615.938283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.938768]: Instances: []\n", - "[INFO] [1712349615.939018]: Direct Instances: []\n", - "[INFO] [1712349615.939310]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712349615.939558]: -------------------\n", - "[INFO] [1712349615.939797]: SOMA.Effort \n", - "[INFO] [1712349615.940032]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712349615.940285]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, owl.Thing, SOMA.Effort}\n", - "[INFO] [1712349615.940541]: Subclasses: []\n", - "[INFO] [1712349615.940836]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.941320]: Instances: []\n", - "[INFO] [1712349615.941574]: Direct Instances: []\n", - "[INFO] [1712349615.941832]: Inverse Restrictions: []\n", - "[INFO] [1712349615.942073]: -------------------\n", - "[INFO] [1712349615.942303]: SOMA.EnclosedObject \n", - "[INFO] [1712349615.942535]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712349615.942795]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", - "[INFO] [1712349615.943063]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712349615.943364]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.943856]: Instances: []\n", - "[INFO] [1712349615.944108]: Direct Instances: []\n", - "[INFO] [1712349615.944403]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712349615.944659]: -------------------\n", - "[INFO] [1712349615.944906]: SOMA.Enclosing \n", - "[INFO] [1712349615.945149]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712349615.945394]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Enclosing, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349615.945641]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712349615.945941]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.946433]: Instances: []\n", - "[INFO] [1712349615.946687]: Direct Instances: []\n", - "[INFO] [1712349615.946936]: Inverse Restrictions: []\n", - "[INFO] [1712349615.947184]: -------------------\n", - "[INFO] [1712349615.947430]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712349615.947670]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349615.947931]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712349615.948183]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712349615.948480]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.948970]: Instances: []\n", - "[INFO] [1712349615.949224]: Direct Instances: []\n", - "[INFO] [1712349615.949473]: Inverse Restrictions: []\n", - "[INFO] [1712349615.949710]: -------------------\n", - "[INFO] [1712349615.949951]: SOMA.Manipulating \n", - "[INFO] [1712349615.950207]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712349615.950455]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.950709]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712349615.950989]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.951718]: Instances: []\n", - "[INFO] [1712349615.952040]: Direct Instances: []\n", - "[INFO] [1712349615.952322]: Inverse Restrictions: []\n", - "[INFO] [1712349615.952575]: -------------------\n", - "[INFO] [1712349615.952824]: SOMA.Episode \n", - "[INFO] [1712349615.953081]: Super classes: [DUL.Situation]\n", - "[INFO] [1712349615.953359]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Episode}\n", - "[INFO] [1712349615.953616]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712349615.953904]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349615.954401]: Instances: []\n", - "[INFO] [1712349615.954664]: Direct Instances: []\n", - "[INFO] [1712349615.954913]: Inverse Restrictions: []\n", - "[INFO] [1712349615.955147]: -------------------\n", - "[INFO] [1712349615.955376]: SOMA.ExcludedObject \n", - "[INFO] [1712349615.955607]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.955871]: Ancestors: {SOMA.Patient, SOMA.ExcludedObject, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.956116]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712349615.956410]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.956887]: Instances: []\n", - "[INFO] [1712349615.957157]: Direct Instances: []\n", - "[INFO] [1712349615.957476]: Inverse Restrictions: []\n", - "[INFO] [1712349615.957713]: -------------------\n", - "[INFO] [1712349615.957946]: SOMA.ExecutableFile \n", - "[INFO] [1712349615.958174]: Super classes: [owl.Thing]\n", - "[INFO] [1712349615.959399]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", - "[INFO] [1712349615.959676]: Subclasses: []\n", - "[INFO] [1712349615.959976]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.960474]: Instances: []\n", - "[INFO] [1712349615.960819]: Direct Instances: []\n", - "[INFO] [1712349615.961875]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712349615.962139]: -------------------\n", - "[INFO] [1712349615.962397]: SOMA.Executable_Code \n", - "[INFO] [1712349615.962652]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712349615.963860]: Ancestors: {owl.Thing, SOMA.Computer_Program, SOMA.Executable_Code}\n", - "[INFO] [1712349615.964149]: Subclasses: []\n", - "[INFO] [1712349615.964464]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349615.964973]: Instances: []\n", - "[INFO] [1712349615.965247]: Direct Instances: []\n", - "[INFO] [1712349615.965665]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712349615.965938]: -------------------\n", - "[INFO] [1712349615.966199]: SOMA.ExecutableFormat \n", - "[INFO] [1712349615.966451]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712349615.966721]: Ancestors: {SOMA.System, DUL.SocialObject, SOMA.ExecutableFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349615.966969]: Subclasses: []\n", - "[INFO] [1712349615.967270]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.967768]: Instances: []\n", - "[INFO] [1712349615.968024]: Direct Instances: []\n", - "[INFO] [1712349615.968327]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712349615.968566]: -------------------\n", - "[INFO] [1712349615.968817]: SOMA.SchematicTheory \n", - "[INFO] [1712349615.969059]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712349615.969302]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349615.969552]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712349615.969846]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.970370]: Instances: []\n", - "[INFO] [1712349615.970628]: Direct Instances: []\n", - "[INFO] [1712349615.970887]: Inverse Restrictions: []\n", - "[INFO] [1712349615.971127]: -------------------\n", - "[INFO] [1712349615.971360]: SOMA.ExecutableSoftware \n", - "[INFO] [1712349615.971586]: Super classes: [owl.Thing]\n", - "[INFO] [1712349615.972796]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", - "[INFO] [1712349615.973091]: Subclasses: []\n", - "[INFO] [1712349615.973402]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasMember, rdf-schema.label]\n", - "[INFO] [1712349615.973900]: Instances: []\n", - "[INFO] [1712349615.974159]: Direct Instances: []\n", - "[INFO] [1712349615.974404]: Inverse Restrictions: []\n", - "[INFO] [1712349615.974641]: -------------------\n", - "[INFO] [1712349615.974889]: SOMA.Software \n", - "[INFO] [1712349615.975156]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712349615.975424]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.Software}\n", - "[INFO] [1712349615.975670]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712349615.975956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.describes]\n", - "[INFO] [1712349615.976456]: Instances: []\n", - "[INFO] [1712349615.976719]: Direct Instances: []\n", - "[INFO] [1712349615.977102]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349615.977349]: -------------------\n", - "[INFO] [1712349615.977675]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712349615.977953]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712349615.978219]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.978480]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712349615.978771]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.979281]: Instances: []\n", - "[INFO] [1712349615.979563]: Direct Instances: []\n", - "[INFO] [1712349615.979818]: Inverse Restrictions: []\n", - "[INFO] [1712349615.980056]: -------------------\n", - "[INFO] [1712349615.980289]: SOMA.ExperiencerRole \n", - "[INFO] [1712349615.980527]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712349615.980781]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.ExperiencerRole, DUL.Role}\n", - "[INFO] [1712349615.981028]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712349615.981312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.981816]: Instances: []\n", - "[INFO] [1712349615.982078]: Direct Instances: []\n", - "[INFO] [1712349615.982324]: Inverse Restrictions: []\n", - "[INFO] [1712349615.982557]: -------------------\n", - "[INFO] [1712349615.982788]: SOMA.ExtractedObject \n", - "[INFO] [1712349615.983032]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349615.983295]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ExtractedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349615.983542]: Subclasses: []\n", - "[INFO] [1712349615.983827]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.984325]: Instances: []\n", - "[INFO] [1712349615.984586]: Direct Instances: []\n", - "[INFO] [1712349615.984839]: Inverse Restrictions: []\n", - "[INFO] [1712349615.985083]: -------------------\n", - "[INFO] [1712349615.985321]: SOMA.PhysicalQuality \n", - "[INFO] [1712349615.985586]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712349615.985834]: Ancestors: {DUL.Quality, SOMA.PhysicalQuality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349615.986079]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712349615.986363]: Properties: [rdf-schema.isDefinedBy, DUL.isQualityOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.986948]: Instances: []\n", - "[INFO] [1712349615.987292]: Direct Instances: []\n", - "[INFO] [1712349615.987568]: Inverse Restrictions: []\n", - "[INFO] [1712349615.987818]: -------------------\n", - "[INFO] [1712349615.988056]: SOMA.FailedAttempt \n", - "[INFO] [1712349615.988303]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712349615.988592]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis, SOMA.FailedAttempt}\n", - "[INFO] [1712349615.988868]: Subclasses: []\n", - "[INFO] [1712349615.989161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.989666]: Instances: []\n", - "[INFO] [1712349615.989929]: Direct Instances: []\n", - "[INFO] [1712349615.990178]: Inverse Restrictions: []\n", - "[INFO] [1712349615.990411]: -------------------\n", - "[INFO] [1712349615.990649]: SOMA.FaultySoftware \n", - "[INFO] [1712349615.990888]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712349615.991173]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349615.991422]: Subclasses: []\n", - "[INFO] [1712349615.991708]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.992203]: Instances: []\n", - "[INFO] [1712349615.992459]: Direct Instances: []\n", - "[INFO] [1712349615.992706]: Inverse Restrictions: []\n", - "[INFO] [1712349615.993045]: -------------------\n", - "[INFO] [1712349615.993358]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712349615.993626]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712349615.993896]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349615.994164]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712349615.994466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.994988]: Instances: []\n", - "[INFO] [1712349615.995257]: Direct Instances: []\n", - "[INFO] [1712349615.995519]: Inverse Restrictions: []\n", - "[INFO] [1712349615.995762]: -------------------\n", - "[INFO] [1712349615.996129]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712349615.996486]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712349615.996869]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAcquiring, owl.Thing}\n", - "[INFO] [1712349615.997252]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712349615.997669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349615.998297]: Instances: []\n", - "[INFO] [1712349615.998682]: Direct Instances: []\n", - "[INFO] [1712349615.999061]: Inverse Restrictions: []\n", - "[INFO] [1712349615.999349]: -------------------\n", - "[INFO] [1712349615.999609]: SOMA.Finger \n", - "[INFO] [1712349615.999876]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712349616.000147]: Ancestors: {SOMA.FunctionalPart, SOMA.Finger, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", - "[INFO] [1712349616.000447]: Subclasses: []\n", - "[INFO] [1712349616.000767]: Properties: [rdf-schema.isDefinedBy, DUL.isPartOf, rdf-schema.comment]\n", - "[INFO] [1712349616.001263]: Instances: []\n", - "[INFO] [1712349616.001518]: Direct Instances: []\n", - "[INFO] [1712349616.001770]: Inverse Restrictions: []\n", - "[INFO] [1712349616.002014]: -------------------\n", - "[INFO] [1712349616.002247]: SOMA.Hand \n", - "[INFO] [1712349616.002482]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712349616.002754]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.Hand, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", - "[INFO] [1712349616.003020]: Subclasses: []\n", - "[INFO] [1712349616.003335]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.003824]: Instances: []\n", - "[INFO] [1712349616.004083]: Direct Instances: []\n", - "[INFO] [1712349616.004365]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712349616.004619]: -------------------\n", - "[INFO] [1712349616.004867]: SOMA.FixedJoint \n", - "[INFO] [1712349616.005133]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712349616.005401]: Ancestors: {SOMA.Joint, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, SOMA.FixedJoint, DUL.PhysicalObject}\n", - "[INFO] [1712349616.005660]: Subclasses: []\n", - "[INFO] [1712349616.005966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.006462]: Instances: []\n", - "[INFO] [1712349616.006737]: Direct Instances: []\n", - "[INFO] [1712349616.007027]: Inverse Restrictions: []\n", - "[INFO] [1712349616.007269]: -------------------\n", - "[INFO] [1712349616.007509]: SOMA.MovableJoint \n", - "[INFO] [1712349616.007752]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712349616.008013]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349616.008269]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712349616.008561]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasJointState, rdf-schema.label]\n", - "[INFO] [1712349616.009057]: Instances: []\n", - "[INFO] [1712349616.009330]: Direct Instances: []\n", - "[INFO] [1712349616.009624]: Inverse Restrictions: []\n", - "[INFO] [1712349616.009868]: -------------------\n", - "[INFO] [1712349616.010105]: SOMA.Flipping \n", - "[INFO] [1712349616.010344]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712349616.010610]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Flipping, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.010867]: Subclasses: []\n", - "[INFO] [1712349616.011161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349616.011646]: Instances: []\n", - "[INFO] [1712349616.011904]: Direct Instances: []\n", - "[INFO] [1712349616.012162]: Inverse Restrictions: []\n", - "[INFO] [1712349616.012406]: -------------------\n", - "[INFO] [1712349616.012646]: SOMA.FloatingJoint \n", - "[INFO] [1712349616.012879]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712349616.013143]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, SOMA.FloatingJoint, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349616.013397]: Subclasses: []\n", - "[INFO] [1712349616.013686]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.014178]: Instances: []\n", - "[INFO] [1712349616.014467]: Direct Instances: []\n", - "[INFO] [1712349616.014725]: Inverse Restrictions: []\n", - "[INFO] [1712349616.014964]: -------------------\n", - "[INFO] [1712349616.015199]: SOMA.Fluid \n", - "[INFO] [1712349616.015436]: Super classes: [DUL.Substance]\n", - "[INFO] [1712349616.015690]: Ancestors: {SOMA.Fluid, DUL.Substance, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349616.015987]: Subclasses: []\n", - "[INFO] [1712349616.016283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.016765]: Instances: []\n", - "[INFO] [1712349616.017028]: Direct Instances: []\n", - "[INFO] [1712349616.017297]: Inverse Restrictions: []\n", - "[INFO] [1712349616.017551]: -------------------\n", - "[INFO] [1712349616.017795]: SOMA.MovedObject \n", - "[INFO] [1712349616.018067]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712349616.018358]: Ancestors: {SOMA.MovedObject, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", - "[INFO] [1712349616.018613]: Subclasses: []\n", - "[INFO] [1712349616.018903]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.019410]: Instances: []\n", - "[INFO] [1712349616.019694]: Direct Instances: []\n", - "[INFO] [1712349616.020476]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712349616.020742]: -------------------\n", - "[INFO] [1712349616.020991]: SOMA.Focusing \n", - "[INFO] [1712349616.021232]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712349616.021504]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.AttentionShift, SOMA.MentalTask, owl.Thing, SOMA.Focusing}\n", - "[INFO] [1712349616.021770]: Subclasses: []\n", - "[INFO] [1712349616.022069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.022556]: Instances: []\n", - "[INFO] [1712349616.022808]: Direct Instances: []\n", - "[INFO] [1712349616.023055]: Inverse Restrictions: []\n", - "[INFO] [1712349616.023302]: -------------------\n", - "[INFO] [1712349616.023544]: SOMA.Foolishness \n", - "[INFO] [1712349616.023779]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712349616.024040]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, SOMA.Foolishness, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.024291]: Subclasses: []\n", - "[INFO] [1712349616.024581]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.025070]: Instances: []\n", - "[INFO] [1712349616.025355]: Direct Instances: []\n", - "[INFO] [1712349616.025613]: Inverse Restrictions: []\n", - "[INFO] [1712349616.025852]: -------------------\n", - "[INFO] [1712349616.026083]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712349616.026313]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712349616.026592]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.ForgettingIncorrectInformation, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349616.026840]: Subclasses: []\n", - "[INFO] [1712349616.027125]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.027607]: Instances: []\n", - "[INFO] [1712349616.027871]: Direct Instances: []\n", - "[INFO] [1712349616.028341]: Inverse Restrictions: []\n", - "[INFO] [1712349616.028620]: -------------------\n", - "[INFO] [1712349616.028868]: SOMA.InformationDismissal \n", - "[INFO] [1712349616.029157]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712349616.029519]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349616.029808]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712349616.030113]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label]\n", - "[INFO] [1712349616.030605]: Instances: []\n", - "[INFO] [1712349616.030880]: Direct Instances: []\n", - "[INFO] [1712349616.031141]: Inverse Restrictions: []\n", - "[INFO] [1712349616.031386]: -------------------\n", - "[INFO] [1712349616.031629]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712349616.031867]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712349616.032147]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349616.032406]: Subclasses: []\n", - "[INFO] [1712349616.032724]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.033230]: Instances: []\n", - "[INFO] [1712349616.033505]: Direct Instances: []\n", - "[INFO] [1712349616.033763]: Inverse Restrictions: []\n", - "[INFO] [1712349616.034009]: -------------------\n", - "[INFO] [1712349616.034251]: SOMA.Language \n", - "[INFO] [1712349616.034510]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712349616.034780]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712349616.035042]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712349616.035340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.035861]: Instances: []\n", - "[INFO] [1712349616.036140]: Direct Instances: []\n", - "[INFO] [1712349616.037195]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712349616.037467]: -------------------\n", - "[INFO] [1712349616.037724]: SOMA.FreezerCompartment \n", - "[INFO] [1712349616.037976]: Super classes: [SOMA.Compartment]\n", - "[INFO] [1712349616.038253]: Ancestors: {SOMA.FunctionalPart, SOMA.FreezerCompartment, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.038504]: Subclasses: []\n", - "[INFO] [1712349616.038792]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.039298]: Instances: []\n", - "[INFO] [1712349616.039567]: Direct Instances: []\n", - "[INFO] [1712349616.039822]: Inverse Restrictions: []\n", - "[INFO] [1712349616.040061]: -------------------\n", - "[INFO] [1712349616.040396]: SOMA.Item \n", - "[INFO] [1712349616.040666]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349616.040954]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349616.041242]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712349616.041545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.042085]: Instances: []\n", - "[INFO] [1712349616.042348]: Direct Instances: []\n", - "[INFO] [1712349616.042720]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712349616.042974]: -------------------\n", - "[INFO] [1712349616.043225]: SOMA.FunctionalDesign \n", - "[INFO] [1712349616.043464]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712349616.043730]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.FunctionalDesign}\n", - "[INFO] [1712349616.043992]: Subclasses: []\n", - "[INFO] [1712349616.044286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.044767]: Instances: []\n", - "[INFO] [1712349616.045034]: Direct Instances: []\n", - "[INFO] [1712349616.045285]: Inverse Restrictions: []\n", - "[INFO] [1712349616.045533]: -------------------\n", - "[INFO] [1712349616.045772]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712349616.046005]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712349616.046244]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis}\n", - "[INFO] [1712349616.046504]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712349616.046795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.047296]: Instances: []\n", - "[INFO] [1712349616.047562]: Direct Instances: []\n", - "[INFO] [1712349616.047814]: Inverse Restrictions: []\n", - "[INFO] [1712349616.048066]: -------------------\n", - "[INFO] [1712349616.048303]: SOMA.LocatumRole \n", - "[INFO] [1712349616.048545]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349616.048819]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, SOMA.LocatumRole, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.049087]: Subclasses: []\n", - "[INFO] [1712349616.049409]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.049907]: Instances: []\n", - "[INFO] [1712349616.050164]: Direct Instances: []\n", - "[INFO] [1712349616.050520]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712349616.050778]: -------------------\n", - "[INFO] [1712349616.051021]: SOMA.RelatumRole \n", - "[INFO] [1712349616.051266]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349616.051545]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, SOMA.RelatumRole, DUL.Entity, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.051803]: Subclasses: []\n", - "[INFO] [1712349616.052101]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.052584]: Instances: []\n", - "[INFO] [1712349616.052856]: Direct Instances: []\n", - "[INFO] [1712349616.053216]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712349616.053469]: -------------------\n", - "[INFO] [1712349616.053709]: SOMA.GasCooktop \n", - "[INFO] [1712349616.053944]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712349616.054212]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.GasCooktop, DUL.PhysicalObject}\n", - "[INFO] [1712349616.054475]: Subclasses: []\n", - "[INFO] [1712349616.054765]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.055249]: Instances: []\n", - "[INFO] [1712349616.055505]: Direct Instances: []\n", - "[INFO] [1712349616.055749]: Inverse Restrictions: []\n", - "[INFO] [1712349616.055997]: -------------------\n", - "[INFO] [1712349616.056240]: SOMA.GetTaskParameter \n", - "[INFO] [1712349616.056477]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712349616.056744]: Ancestors: {SOMA.InformationAcquisition, SOMA.GetTaskParameter, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.057011]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712349616.057310]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.057798]: Instances: []\n", - "[INFO] [1712349616.058051]: Direct Instances: []\n", - "[INFO] [1712349616.058294]: Inverse Restrictions: []\n", - "[INFO] [1712349616.058524]: -------------------\n", - "[INFO] [1712349616.058767]: SOMA.Planning \n", - "[INFO] [1712349616.059387]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712349616.059642]: Ancestors: {SOMA.InformationAcquisition, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.059888]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712349616.060191]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isTaskOf]\n", - "[INFO] [1712349616.060684]: Instances: []\n", - "[INFO] [1712349616.061040]: Direct Instances: []\n", - "[INFO] [1712349616.061377]: Inverse Restrictions: []\n", - "[INFO] [1712349616.061658]: -------------------\n", - "[INFO] [1712349616.061927]: SOMA.Glass \n", - "[INFO] [1712349616.062180]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712349616.062461]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.Glass, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.062737]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", - "[INFO] [1712349616.063037]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.063541]: Instances: []\n", - "[INFO] [1712349616.063799]: Direct Instances: []\n", - "[INFO] [1712349616.064048]: Inverse Restrictions: []\n", - "[INFO] [1712349616.064298]: -------------------\n", - "[INFO] [1712349616.064540]: SOMA.GraphDatabase \n", - "[INFO] [1712349616.064782]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712349616.065048]: Ancestors: {SOMA.SoftwareRole, SOMA.GraphDatabase, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", - "[INFO] [1712349616.065295]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712349616.065599]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.066091]: Instances: []\n", - "[INFO] [1712349616.066364]: Direct Instances: []\n", - "[INFO] [1712349616.066619]: Inverse Restrictions: []\n", - "[INFO] [1712349616.066859]: -------------------\n", - "[INFO] [1712349616.067105]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712349616.067349]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712349616.067620]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.GraphQueryLanguage, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349616.067867]: Subclasses: []\n", - "[INFO] [1712349616.068154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.068651]: Instances: []\n", - "[INFO] [1712349616.068912]: Direct Instances: []\n", - "[INFO] [1712349616.069161]: Inverse Restrictions: []\n", - "[INFO] [1712349616.069402]: -------------------\n", - "[INFO] [1712349616.069643]: SOMA.QueryLanguage \n", - "[INFO] [1712349616.069885]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349616.070132]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712349616.070388]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712349616.070685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.071180]: Instances: []\n", - "[INFO] [1712349616.071432]: Direct Instances: []\n", - "[INFO] [1712349616.071680]: Inverse Restrictions: []\n", - "[INFO] [1712349616.071930]: -------------------\n", - "[INFO] [1712349616.072173]: SOMA.GraspTransfer \n", - "[INFO] [1712349616.072408]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712349616.072679]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.GraspTransfer, DUL.Entity, SOMA.Grasping, owl.Thing}\n", - "[INFO] [1712349616.072942]: Subclasses: []\n", - "[INFO] [1712349616.073247]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.073737]: Instances: []\n", - "[INFO] [1712349616.073987]: Direct Instances: []\n", - "[INFO] [1712349616.074229]: Inverse Restrictions: []\n", - "[INFO] [1712349616.074467]: -------------------\n", - "[INFO] [1712349616.074702]: SOMA.Grasping \n", - "[INFO] [1712349616.074932]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349616.075169]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Grasping, owl.Thing}\n", - "[INFO] [1712349616.075425]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712349616.075721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.076205]: Instances: []\n", - "[INFO] [1712349616.076464]: Direct Instances: []\n", - "[INFO] [1712349616.076720]: Inverse Restrictions: []\n", - "[INFO] [1712349616.076963]: -------------------\n", - "[INFO] [1712349616.077197]: SOMA.Releasing \n", - "[INFO] [1712349616.077424]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349616.077691]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Releasing, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.077940]: Subclasses: []\n", - "[INFO] [1712349616.078222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.078717]: Instances: []\n", - "[INFO] [1712349616.078974]: Direct Instances: []\n", - "[INFO] [1712349616.079219]: Inverse Restrictions: []\n", - "[INFO] [1712349616.079453]: -------------------\n", - "[INFO] [1712349616.079681]: SOMA.GraspingMotion \n", - "[INFO] [1712349616.079923]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712349616.081347]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.081648]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712349616.082023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.082557]: Instances: []\n", - "[INFO] [1712349616.082827]: Direct Instances: []\n", - "[INFO] [1712349616.083119]: Inverse Restrictions: []\n", - "[INFO] [1712349616.083380]: -------------------\n", - "[INFO] [1712349616.083631]: SOMA.IntermediateGrasp \n", - "[INFO] [1712349616.083869]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712349616.084230]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion, SOMA.IntermediateGrasp}\n", - "[INFO] [1712349616.084524]: Subclasses: []\n", - "[INFO] [1712349616.084849]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.085356]: Instances: []\n", - "[INFO] [1712349616.085645]: Direct Instances: []\n", - "[INFO] [1712349616.085935]: Inverse Restrictions: []\n", - "[INFO] [1712349616.086172]: -------------------\n", - "[INFO] [1712349616.086412]: SOMA.PowerGrasp \n", - "[INFO] [1712349616.086674]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712349616.086943]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, SOMA.PowerGrasp, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.087208]: Subclasses: []\n", - "[INFO] [1712349616.087516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.088008]: Instances: []\n", - "[INFO] [1712349616.088262]: Direct Instances: []\n", - "[INFO] [1712349616.088560]: Inverse Restrictions: []\n", - "[INFO] [1712349616.088808]: -------------------\n", - "[INFO] [1712349616.089056]: SOMA.PrecisionGrasp \n", - "[INFO] [1712349616.089292]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712349616.089555]: Ancestors: {SOMA.PrecisionGrasp, SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.089811]: Subclasses: []\n", - "[INFO] [1712349616.090103]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.090582]: Instances: []\n", - "[INFO] [1712349616.090841]: Direct Instances: []\n", - "[INFO] [1712349616.091142]: Inverse Restrictions: []\n", - "[INFO] [1712349616.091389]: -------------------\n", - "[INFO] [1712349616.091621]: SOMA.PrehensileMotion \n", - "[INFO] [1712349616.092251]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712349616.092535]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.092805]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712349616.093117]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349616.093616]: Instances: []\n", - "[INFO] [1712349616.093890]: Direct Instances: []\n", - "[INFO] [1712349616.094153]: Inverse Restrictions: []\n", - "[INFO] [1712349616.094393]: -------------------\n", - "[INFO] [1712349616.094628]: SOMA.ReleasingMotion \n", - "[INFO] [1712349616.094860]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712349616.095122]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.ReleasingMotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.095376]: Subclasses: []\n", - "[INFO] [1712349616.095666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.096149]: Instances: []\n", - "[INFO] [1712349616.096400]: Direct Instances: []\n", - "[INFO] [1712349616.096677]: Inverse Restrictions: []\n", - "[INFO] [1712349616.096929]: -------------------\n", - "[INFO] [1712349616.097170]: SOMA.GreenColor \n", - "[INFO] [1712349616.097404]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712349616.097660]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, SOMA.GreenColor, owl.Thing}\n", - "[INFO] [1712349616.097898]: Subclasses: []\n", - "[INFO] [1712349616.098180]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.098666]: Instances: []\n", - "[INFO] [1712349616.098923]: Direct Instances: []\n", - "[INFO] [1712349616.099170]: Inverse Restrictions: []\n", - "[INFO] [1712349616.099403]: -------------------\n", - "[INFO] [1712349616.099640]: SOMA.Gripper \n", - "[INFO] [1712349616.099879]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712349616.100143]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.Gripper, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", - "[INFO] [1712349616.100383]: Subclasses: []\n", - "[INFO] [1712349616.100661]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.101162]: Instances: []\n", - "[INFO] [1712349616.101425]: Direct Instances: []\n", - "[INFO] [1712349616.101671]: Inverse Restrictions: []\n", - "[INFO] [1712349616.101908]: -------------------\n", - "[INFO] [1712349616.102143]: SOMA.PrehensileEffector \n", - "[INFO] [1712349616.102387]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712349616.102637]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", - "[INFO] [1712349616.102882]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712349616.103160]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.103658]: Instances: []\n", - "[INFO] [1712349616.103922]: Direct Instances: []\n", - "[INFO] [1712349616.104229]: Inverse Restrictions: []\n", - "[INFO] [1712349616.104467]: -------------------\n", - "[INFO] [1712349616.104699]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712349616.104951]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712349616.105286]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.HardwareDiagnosis, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349616.105579]: Subclasses: []\n", - "[INFO] [1712349616.105890]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.106390]: Instances: []\n", - "[INFO] [1712349616.106669]: Direct Instances: []\n", - "[INFO] [1712349616.106935]: Inverse Restrictions: []\n", - "[INFO] [1712349616.107208]: -------------------\n", - "[INFO] [1712349616.107449]: SOMA.HasQualityRegion \n", - "[INFO] [1712349616.107717]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712349616.107985]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.HasQualityRegion, DUL.Object, DUL.Entity, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349616.108246]: Subclasses: []\n", - "[INFO] [1712349616.108552]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasRegion, rdf-schema.isDefinedBy, DUL.hasQuality]\n", - "[INFO] [1712349616.109049]: Instances: []\n", - "[INFO] [1712349616.109308]: Direct Instances: []\n", - "[INFO] [1712349616.109573]: Inverse Restrictions: []\n", - "[INFO] [1712349616.109818]: -------------------\n", - "[INFO] [1712349616.110057]: SOMA.Head \n", - "[INFO] [1712349616.110292]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712349616.110553]: Ancestors: {SOMA.FunctionalPart, SOMA.Head, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349616.110814]: Subclasses: []\n", - "[INFO] [1712349616.111108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.111595]: Instances: []\n", - "[INFO] [1712349616.111854]: Direct Instances: []\n", - "[INFO] [1712349616.112103]: Inverse Restrictions: []\n", - "[INFO] [1712349616.112350]: -------------------\n", - "[INFO] [1712349616.112590]: SOMA.HeadMovement \n", - "[INFO] [1712349616.112830]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712349616.113094]: Ancestors: {SOMA.BodyMovement, SOMA.HeadMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.113360]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712349616.113659]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.114154]: Instances: []\n", - "[INFO] [1712349616.114434]: Direct Instances: []\n", - "[INFO] [1712349616.114691]: Inverse Restrictions: []\n", - "[INFO] [1712349616.114935]: -------------------\n", - "[INFO] [1712349616.115172]: SOMA.HeadTurning \n", - "[INFO] [1712349616.115403]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712349616.115661]: Ancestors: {SOMA.BodyMovement, SOMA.HeadMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.HeadTurning}\n", - "[INFO] [1712349616.115968]: Subclasses: []\n", - "[INFO] [1712349616.116268]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.116753]: Instances: []\n", - "[INFO] [1712349616.117014]: Direct Instances: []\n", - "[INFO] [1712349616.117270]: Inverse Restrictions: []\n", - "[INFO] [1712349616.117526]: -------------------\n", - "[INFO] [1712349616.117769]: SOMA.Holding \n", - "[INFO] [1712349616.118009]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349616.118270]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Holding}\n", - "[INFO] [1712349616.118523]: Subclasses: []\n", - "[INFO] [1712349616.118810]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.119294]: Instances: []\n", - "[INFO] [1712349616.119544]: Direct Instances: []\n", - "[INFO] [1712349616.119784]: Inverse Restrictions: []\n", - "[INFO] [1712349616.120030]: -------------------\n", - "[INFO] [1712349616.120269]: SOMA.HostRole \n", - "[INFO] [1712349616.120523]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712349616.120790]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.HostRole, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.121048]: Subclasses: []\n", - "[INFO] [1712349616.121344]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", - "[INFO] [1712349616.121828]: Instances: []\n", - "[INFO] [1712349616.122082]: Direct Instances: []\n", - "[INFO] [1712349616.123121]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712349616.123398]: -------------------\n", - "[INFO] [1712349616.123659]: SOMA.PluginSpecification \n", - "[INFO] [1712349616.123914]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712349616.124185]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, SOMA.PluginSpecification, owl.Thing}\n", - "[INFO] [1712349616.124445]: Subclasses: []\n", - "[INFO] [1712349616.124743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", - "[INFO] [1712349616.125238]: Instances: []\n", - "[INFO] [1712349616.125495]: Direct Instances: []\n", - "[INFO] [1712349616.125813]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712349616.126074]: -------------------\n", - "[INFO] [1712349616.126320]: SOMA.Hotplate \n", - "[INFO] [1712349616.126559]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349616.126825]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, SOMA.Hotplate, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.127068]: Subclasses: []\n", - "[INFO] [1712349616.127345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.127845]: Instances: []\n", - "[INFO] [1712349616.128109]: Direct Instances: []\n", - "[INFO] [1712349616.128386]: Inverse Restrictions: [SOMA.Stove]\n", - "[INFO] [1712349616.128628]: -------------------\n", - "[INFO] [1712349616.128868]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712349616.129138]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712349616.129416]: Ancestors: {SOMA.System, SOMA.Human-readable_Programming_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Programming_Language, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349616.129665]: Subclasses: []\n", - "[INFO] [1712349616.129954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.130434]: Instances: []\n", - "[INFO] [1712349616.130701]: Direct Instances: []\n", - "[INFO] [1712349616.131736]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712349616.131996]: -------------------\n", - "[INFO] [1712349616.132259]: SOMA.Source_Code \n", - "[INFO] [1712349616.132529]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712349616.133034]: Ancestors: {SOMA.Source_Code, owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712349616.133297]: Subclasses: []\n", - "[INFO] [1712349616.133606]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.134110]: Instances: []\n", - "[INFO] [1712349616.134381]: Direct Instances: []\n", - "[INFO] [1712349616.134670]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712349616.134914]: -------------------\n", - "[INFO] [1712349616.135173]: SOMA.HumanActivityRecording \n", - "[INFO] [1712349616.135420]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712349616.135708]: Ancestors: {DUL.Situation, SOMA.Episode, DUL.Entity, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712349616.135983]: Subclasses: []\n", - "[INFO] [1712349616.136312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.136834]: Instances: []\n", - "[INFO] [1712349616.137120]: Direct Instances: []\n", - "[INFO] [1712349616.137394]: Inverse Restrictions: []\n", - "[INFO] [1712349616.137650]: -------------------\n", - "[INFO] [1712349616.137905]: SOMA.Imagining \n", - "[INFO] [1712349616.138147]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712349616.138410]: Ancestors: {SOMA.Imagining, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712349616.138679]: Subclasses: []\n", - "[INFO] [1712349616.138983]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.139496]: Instances: []\n", - "[INFO] [1712349616.139761]: Direct Instances: []\n", - "[INFO] [1712349616.140026]: Inverse Restrictions: []\n", - "[INFO] [1712349616.140279]: -------------------\n", - "[INFO] [1712349616.140525]: SOMA.Impediment \n", - "[INFO] [1712349616.140803]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712349616.141115]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Impediment, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349616.141388]: Subclasses: []\n", - "[INFO] [1712349616.141695]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.142194]: Instances: []\n", - "[INFO] [1712349616.142481]: Direct Instances: []\n", - "[INFO] [1712349616.142754]: Inverse Restrictions: []\n", - "[INFO] [1712349616.143011]: -------------------\n", - "[INFO] [1712349616.143262]: SOMA.Obstacle \n", - "[INFO] [1712349616.143513]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712349616.143807]: Ancestors: {DUL.SocialObject, SOMA.Obstacle, SOMA.EventAdjacentRole, DUL.Concept, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.144073]: Subclasses: []\n", - "[INFO] [1712349616.144371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.144878]: Instances: []\n", - "[INFO] [1712349616.145176]: Direct Instances: []\n", - "[INFO] [1712349616.145490]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712349616.145746]: -------------------\n", - "[INFO] [1712349616.145988]: SOMA.RestrictedObject \n", - "[INFO] [1712349616.146225]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712349616.146502]: Ancestors: {SOMA.RestrictedObject, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.146754]: Subclasses: []\n", - "[INFO] [1712349616.147046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.147549]: Instances: []\n", - "[INFO] [1712349616.147812]: Direct Instances: []\n", - "[INFO] [1712349616.148099]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712349616.148344]: -------------------\n", - "[INFO] [1712349616.148582]: SOMA.StateTransition \n", - "[INFO] [1712349616.148865]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712349616.149145]: Ancestors: {DUL.Situation, DUL.Entity, owl.Thing, SOMA.StateTransition, DUL.Transition}\n", - "[INFO] [1712349616.149420]: Subclasses: []\n", - "[INFO] [1712349616.149724]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasInitialScene, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.150218]: Instances: []\n", - "[INFO] [1712349616.150496]: Direct Instances: []\n", - "[INFO] [1712349616.150820]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712349616.151072]: -------------------\n", - "[INFO] [1712349616.151313]: SOMA.Inability \n", - "[INFO] [1712349616.151551]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712349616.151816]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Inability, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.152083]: Subclasses: []\n", - "[INFO] [1712349616.152379]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.153136]: Instances: []\n", - "[INFO] [1712349616.153464]: Direct Instances: []\n", - "[INFO] [1712349616.153729]: Inverse Restrictions: []\n", - "[INFO] [1712349616.153986]: -------------------\n", - "[INFO] [1712349616.154328]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712349616.154609]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712349616.154920]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.IncompatibleSoftware, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349616.155208]: Subclasses: []\n", - "[INFO] [1712349616.155531]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.156037]: Instances: []\n", - "[INFO] [1712349616.156319]: Direct Instances: []\n", - "[INFO] [1712349616.156580]: Inverse Restrictions: []\n", - "[INFO] [1712349616.156830]: -------------------\n", - "[INFO] [1712349616.157072]: SOMA.InductionCooktop \n", - "[INFO] [1712349616.157310]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712349616.157582]: Ancestors: {SOMA.FunctionalPart, SOMA.ElectricCooktop, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.InductionCooktop, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.157848]: Subclasses: []\n", - "[INFO] [1712349616.158143]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.158630]: Instances: []\n", - "[INFO] [1712349616.158887]: Direct Instances: []\n", - "[INFO] [1712349616.159132]: Inverse Restrictions: []\n", - "[INFO] [1712349616.159364]: -------------------\n", - "[INFO] [1712349616.159607]: SOMA.InductiveReasoning \n", - "[INFO] [1712349616.159846]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712349616.160119]: Ancestors: {SOMA.InformationAcquisition, SOMA.InductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.160362]: Subclasses: []\n", - "[INFO] [1712349616.160646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.161139]: Instances: []\n", - "[INFO] [1712349616.161412]: Direct Instances: []\n", - "[INFO] [1712349616.161666]: Inverse Restrictions: []\n", - "[INFO] [1712349616.161907]: -------------------\n", - "[INFO] [1712349616.162144]: SOMA.Infeasibility \n", - "[INFO] [1712349616.162379]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712349616.162653]: Ancestors: {DUL.Description, SOMA.Infeasibility, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.162908]: Subclasses: []\n", - "[INFO] [1712349616.163195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.163679]: Instances: []\n", - "[INFO] [1712349616.163938]: Direct Instances: []\n", - "[INFO] [1712349616.164180]: Inverse Restrictions: []\n", - "[INFO] [1712349616.164428]: -------------------\n", - "[INFO] [1712349616.164677]: SOMA.InferenceRules \n", - "[INFO] [1712349616.164918]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712349616.165187]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, SOMA.Item, SOMA.InferenceRules}\n", - "[INFO] [1712349616.165429]: Subclasses: []\n", - "[INFO] [1712349616.165713]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.166213]: Instances: []\n", - "[INFO] [1712349616.166480]: Direct Instances: []\n", - "[INFO] [1712349616.166732]: Inverse Restrictions: []\n", - "[INFO] [1712349616.166970]: -------------------\n", - "[INFO] [1712349616.167201]: SOMA.InformationRetrieval \n", - "[INFO] [1712349616.167454]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712349616.167737]: Ancestors: {owl.Thing, SOMA.InformationRetrieval, SOMA.InformationAcquisition}\n", - "[INFO] [1712349616.167996]: Subclasses: []\n", - "[INFO] [1712349616.168291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712349616.168779]: Instances: []\n", - "[INFO] [1712349616.169063]: Direct Instances: []\n", - "[INFO] [1712349616.169406]: Inverse Restrictions: []\n", - "[INFO] [1712349616.169679]: -------------------\n", - "[INFO] [1712349616.169926]: SOMA.InformationStorage \n", - "[INFO] [1712349616.170208]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712349616.170500]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", - "[INFO] [1712349616.170764]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712349616.171065]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label]\n", - "[INFO] [1712349616.171553]: Instances: []\n", - "[INFO] [1712349616.171821]: Direct Instances: []\n", - "[INFO] [1712349616.172074]: Inverse Restrictions: []\n", - "[INFO] [1712349616.172312]: -------------------\n", - "[INFO] [1712349616.172555]: SOMA.StoredObject \n", - "[INFO] [1712349616.172793]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712349616.173068]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.StoredObject, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", - "[INFO] [1712349616.173323]: Subclasses: []\n", - "[INFO] [1712349616.173615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.174104]: Instances: []\n", - "[INFO] [1712349616.174374]: Direct Instances: []\n", - "[INFO] [1712349616.174727]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712349616.174992]: -------------------\n", - "[INFO] [1712349616.175245]: SOMA.InsertedObject \n", - "[INFO] [1712349616.175491]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712349616.175757]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.InsertedObject, DUL.Entity, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", - "[INFO] [1712349616.176018]: Subclasses: []\n", - "[INFO] [1712349616.176312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.176805]: Instances: []\n", - "[INFO] [1712349616.177069]: Direct Instances: []\n", - "[INFO] [1712349616.177352]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712349616.177613]: -------------------\n", - "[INFO] [1712349616.177860]: SOMA.Instructions \n", - "[INFO] [1712349616.178100]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712349616.178365]: Ancestors: {SOMA.Patient, DUL.SocialObject, SOMA.Instructions, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349616.178607]: Subclasses: []\n", - "[INFO] [1712349616.178896]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.179393]: Instances: []\n", - "[INFO] [1712349616.179654]: Direct Instances: []\n", - "[INFO] [1712349616.179899]: Inverse Restrictions: []\n", - "[INFO] [1712349616.180131]: -------------------\n", - "[INFO] [1712349616.180366]: SOMA.Interpreting \n", - "[INFO] [1712349616.180592]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349616.180863]: Ancestors: {SOMA.Interpreting, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.181214]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712349616.181541]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.182048]: Instances: []\n", - "[INFO] [1712349616.182327]: Direct Instances: []\n", - "[INFO] [1712349616.182586]: Inverse Restrictions: []\n", - "[INFO] [1712349616.182829]: -------------------\n", - "[INFO] [1712349616.183066]: SOMA.InterrogativeClause \n", - "[INFO] [1712349616.183302]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712349616.183577]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ClausalObject, SOMA.InterrogativeClause, SOMA.Phrase}\n", - "[INFO] [1712349616.183827]: Subclasses: []\n", - "[INFO] [1712349616.184128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.184615]: Instances: []\n", - "[INFO] [1712349616.184889]: Direct Instances: []\n", - "[INFO] [1712349616.185207]: Inverse Restrictions: []\n", - "[INFO] [1712349616.185456]: -------------------\n", - "[INFO] [1712349616.185692]: SOMA.Introspecting \n", - "[INFO] [1712349616.185930]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712349616.186187]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Introspecting}\n", - "[INFO] [1712349616.186451]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712349616.186748]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.187235]: Instances: []\n", - "[INFO] [1712349616.187486]: Direct Instances: []\n", - "[INFO] [1712349616.187735]: Inverse Restrictions: []\n", - "[INFO] [1712349616.187979]: -------------------\n", - "[INFO] [1712349616.188218]: SOMA.JamJar \n", - "[INFO] [1712349616.188454]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712349616.188728]: Ancestors: {DUL.Object, SOMA.JamJar, DUL.Entity, owl.Thing, SOMA.Jar, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.189005]: Subclasses: [SOMA.RaspberryJamJar]\n", - "[INFO] [1712349616.189304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.189800]: Instances: []\n", - "[INFO] [1712349616.190062]: Direct Instances: []\n", - "[INFO] [1712349616.190308]: Inverse Restrictions: []\n", - "[INFO] [1712349616.190548]: -------------------\n", - "[INFO] [1712349616.190793]: SOMA.Jar \n", - "[INFO] [1712349616.191029]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712349616.191275]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Jar, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.191521]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", - "[INFO] [1712349616.191808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.192312]: Instances: []\n", - "[INFO] [1712349616.192575]: Direct Instances: []\n", - "[INFO] [1712349616.192827]: Inverse Restrictions: []\n", - "[INFO] [1712349616.193092]: -------------------\n", - "[INFO] [1712349616.193341]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712349616.193576]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712349616.193843]: Ancestors: {SOMA.KineticFrictionAttribute, SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.194083]: Subclasses: []\n", - "[INFO] [1712349616.194369]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.194862]: Instances: []\n", - "[INFO] [1712349616.195129]: Direct Instances: []\n", - "[INFO] [1712349616.195388]: Inverse Restrictions: []\n", - "[INFO] [1712349616.195630]: -------------------\n", - "[INFO] [1712349616.195866]: SOMA.KinoDynamicData \n", - "[INFO] [1712349616.196113]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349616.196383]: Ancestors: {DUL.InformationObject, SOMA.KinoDynamicData, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.196626]: Subclasses: []\n", - "[INFO] [1712349616.196918]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.197511]: Instances: []\n", - "[INFO] [1712349616.197787]: Direct Instances: []\n", - "[INFO] [1712349616.198039]: Inverse Restrictions: []\n", - "[INFO] [1712349616.198278]: -------------------\n", - "[INFO] [1712349616.198517]: SOMA.Kitchen \n", - "[INFO] [1712349616.198768]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712349616.199045]: Ancestors: {SOMA.Room, DUL.Object, SOMA.Kitchen, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", - "[INFO] [1712349616.199290]: Subclasses: []\n", - "[INFO] [1712349616.199568]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", - "[INFO] [1712349616.200065]: Instances: []\n", - "[INFO] [1712349616.200322]: Direct Instances: []\n", - "[INFO] [1712349616.200566]: Inverse Restrictions: []\n", - "[INFO] [1712349616.200799]: -------------------\n", - "[INFO] [1712349616.201033]: SOMA.Room \n", - "[INFO] [1712349616.201276]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712349616.201521]: Ancestors: {SOMA.Room, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", - "[INFO] [1712349616.201761]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712349616.202042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.202543]: Instances: []\n", - "[INFO] [1712349616.202804]: Direct Instances: []\n", - "[INFO] [1712349616.203055]: Inverse Restrictions: []\n", - "[INFO] [1712349616.203285]: -------------------\n", - "[INFO] [1712349616.203518]: SOMA.KitchenCabinet \n", - "[INFO] [1712349616.203757]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712349616.204029]: Ancestors: {SOMA.KitchenCabinet, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Cupboard}\n", - "[INFO] [1712349616.204273]: Subclasses: []\n", - "[INFO] [1712349616.204550]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.205048]: Instances: []\n", - "[INFO] [1712349616.205317]: Direct Instances: []\n", - "[INFO] [1712349616.205568]: Inverse Restrictions: []\n", - "[INFO] [1712349616.205805]: -------------------\n", - "[INFO] [1712349616.206035]: SOMA.Knife \n", - "[INFO] [1712349616.206275]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712349616.206537]: Ancestors: {SOMA.Knife, SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.206794]: Subclasses: [SOMA.KitchenKnife]\n", - "[INFO] [1712349616.207076]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.207559]: Instances: []\n", - "[INFO] [1712349616.207826]: Direct Instances: []\n", - "[INFO] [1712349616.208078]: Inverse Restrictions: []\n", - "[INFO] [1712349616.208316]: -------------------\n", - "[INFO] [1712349616.208545]: SOMA.KitchenUnit \n", - "[INFO] [1712349616.208781]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712349616.209059]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.KitchenUnit}\n", - "[INFO] [1712349616.209311]: Subclasses: []\n", - "[INFO] [1712349616.209596]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.210076]: Instances: []\n", - "[INFO] [1712349616.210342]: Direct Instances: []\n", - "[INFO] [1712349616.210591]: Inverse Restrictions: []\n", - "[INFO] [1712349616.210824]: -------------------\n", - "[INFO] [1712349616.211057]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712349616.211290]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349616.211546]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.KnowledgeRepresentationLanguage, SOMA.Language}\n", - "[INFO] [1712349616.211811]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712349616.212102]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.212585]: Instances: []\n", - "[INFO] [1712349616.212842]: Direct Instances: []\n", - "[INFO] [1712349616.213106]: Inverse Restrictions: []\n", - "[INFO] [1712349616.213344]: -------------------\n", - "[INFO] [1712349616.213578]: SOMA.Labeling \n", - "[INFO] [1712349616.213809]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712349616.214072]: Ancestors: {SOMA.Interpreting, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.214331]: Subclasses: []\n", - "[INFO] [1712349616.214621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.215101]: Instances: []\n", - "[INFO] [1712349616.215346]: Direct Instances: []\n", - "[INFO] [1712349616.215590]: Inverse Restrictions: []\n", - "[INFO] [1712349616.215830]: -------------------\n", - "[INFO] [1712349616.216065]: SOMA.Text \n", - "[INFO] [1712349616.216294]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.217511]: Ancestors: {owl.Thing, SOMA.Text}\n", - "[INFO] [1712349616.217803]: Subclasses: []\n", - "[INFO] [1712349616.218112]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.218610]: Instances: []\n", - "[INFO] [1712349616.218883]: Direct Instances: []\n", - "[INFO] [1712349616.219965]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712349616.220223]: -------------------\n", - "[INFO] [1712349616.220468]: SOMA.Leaning \n", - "[INFO] [1712349616.220706]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712349616.220988]: Ancestors: {SOMA.Leaning, SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.221253]: Subclasses: []\n", - "[INFO] [1712349616.221542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.222030]: Instances: []\n", - "[INFO] [1712349616.222291]: Direct Instances: []\n", - "[INFO] [1712349616.222551]: Inverse Restrictions: []\n", - "[INFO] [1712349616.222794]: -------------------\n", - "[INFO] [1712349616.223032]: SOMA.PosturalMoving \n", - "[INFO] [1712349616.223265]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712349616.223511]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.223775]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712349616.224067]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.224562]: Instances: []\n", - "[INFO] [1712349616.224833]: Direct Instances: []\n", - "[INFO] [1712349616.225098]: Inverse Restrictions: []\n", - "[INFO] [1712349616.225338]: -------------------\n", - "[INFO] [1712349616.225572]: SOMA.Learning \n", - "[INFO] [1712349616.225803]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712349616.226063]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.Learning, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", - "[INFO] [1712349616.226333]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712349616.226623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.227100]: Instances: []\n", - "[INFO] [1712349616.227352]: Direct Instances: []\n", - "[INFO] [1712349616.227609]: Inverse Restrictions: []\n", - "[INFO] [1712349616.227859]: -------------------\n", - "[INFO] [1712349616.228104]: SOMA.Leg \n", - "[INFO] [1712349616.228338]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712349616.228600]: Ancestors: {SOMA.FunctionalPart, SOMA.Leg, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", - "[INFO] [1712349616.228858]: Subclasses: []\n", - "[INFO] [1712349616.229152]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.229796]: Instances: []\n", - "[INFO] [1712349616.230109]: Direct Instances: []\n", - "[INFO] [1712349616.230414]: Inverse Restrictions: []\n", - "[INFO] [1712349616.230678]: -------------------\n", - "[INFO] [1712349616.230940]: SOMA.Lid \n", - "[INFO] [1712349616.231190]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349616.231480]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Lid}\n", - "[INFO] [1712349616.231739]: Subclasses: []\n", - "[INFO] [1712349616.232029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.232507]: Instances: []\n", - "[INFO] [1712349616.232761]: Direct Instances: []\n", - "[INFO] [1712349616.233026]: Inverse Restrictions: []\n", - "[INFO] [1712349616.233283]: -------------------\n", - "[INFO] [1712349616.233526]: SOMA.LimbMotion \n", - "[INFO] [1712349616.234182]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712349616.234493]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.LimbMotion, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.234756]: Subclasses: []\n", - "[INFO] [1712349616.235064]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349616.235551]: Instances: []\n", - "[INFO] [1712349616.235825]: Direct Instances: []\n", - "[INFO] [1712349616.236077]: Inverse Restrictions: []\n", - "[INFO] [1712349616.236317]: -------------------\n", - "[INFO] [1712349616.236551]: SOMA.LinkedObject \n", - "[INFO] [1712349616.236790]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712349616.237058]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, SOMA.LinkedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.237318]: Subclasses: []\n", - "[INFO] [1712349616.237609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.238090]: Instances: []\n", - "[INFO] [1712349616.238350]: Direct Instances: []\n", - "[INFO] [1712349616.238697]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712349616.238959]: -------------------\n", - "[INFO] [1712349616.239218]: SOMA.LinkageState \n", - "[INFO] [1712349616.239469]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712349616.239743]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.LinkageState, owl.Thing}\n", - "[INFO] [1712349616.239990]: Subclasses: []\n", - "[INFO] [1712349616.240285]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349616.240801]: Instances: []\n", - "[INFO] [1712349616.241076]: Direct Instances: []\n", - "[INFO] [1712349616.241335]: Inverse Restrictions: []\n", - "[INFO] [1712349616.241579]: -------------------\n", - "[INFO] [1712349616.241825]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712349616.242073]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349616.242337]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.242596]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712349616.242888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.243399]: Instances: []\n", - "[INFO] [1712349616.243675]: Direct Instances: []\n", - "[INFO] [1712349616.243941]: Inverse Restrictions: []\n", - "[INFO] [1712349616.244187]: -------------------\n", - "[INFO] [1712349616.244436]: SOMA.SpatialRelationRole \n", - "[INFO] [1712349616.244682]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712349616.245058]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.245410]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712349616.245750]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.246269]: Instances: []\n", - "[INFO] [1712349616.246539]: Direct Instances: []\n", - "[INFO] [1712349616.246798]: Inverse Restrictions: []\n", - "[INFO] [1712349616.247042]: -------------------\n", - "[INFO] [1712349616.247279]: SOMA.LocutionaryAction \n", - "[INFO] [1712349616.247534]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.248740]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", - "[INFO] [1712349616.249021]: Subclasses: []\n", - "[INFO] [1712349616.249362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349616.249877]: Instances: []\n", - "[INFO] [1712349616.250144]: Direct Instances: []\n", - "[INFO] [1712349616.250397]: Inverse Restrictions: []\n", - "[INFO] [1712349616.250648]: -------------------\n", - "[INFO] [1712349616.250890]: SOMA.LookingAt \n", - "[INFO] [1712349616.251129]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349616.251399]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.LookingAt, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.251661]: Subclasses: []\n", - "[INFO] [1712349616.251955]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.252450]: Instances: []\n", - "[INFO] [1712349616.252725]: Direct Instances: []\n", - "[INFO] [1712349616.253051]: Inverse Restrictions: []\n", - "[INFO] [1712349616.253336]: -------------------\n", - "[INFO] [1712349616.253594]: SOMA.LookingFor \n", - "[INFO] [1712349616.253843]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712349616.254109]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.LookingFor}\n", - "[INFO] [1712349616.254356]: Subclasses: []\n", - "[INFO] [1712349616.254646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.255143]: Instances: []\n", - "[INFO] [1712349616.255410]: Direct Instances: []\n", - "[INFO] [1712349616.255664]: Inverse Restrictions: []\n", - "[INFO] [1712349616.255903]: -------------------\n", - "[INFO] [1712349616.256139]: SOMA.Lowering \n", - "[INFO] [1712349616.256380]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349616.256652]: Ancestors: {SOMA.Lowering, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.256901]: Subclasses: []\n", - "[INFO] [1712349616.257197]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.257679]: Instances: []\n", - "[INFO] [1712349616.257948]: Direct Instances: []\n", - "[INFO] [1712349616.258199]: Inverse Restrictions: []\n", - "[INFO] [1712349616.258435]: -------------------\n", - "[INFO] [1712349616.258669]: SOMA.PhysicalAction \n", - "[INFO] [1712349616.258899]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712349616.259167]: Ancestors: {DUL.Entity, DUL.Event, DUL.Action, owl.Thing, SOMA.PhysicalAction}\n", - "[INFO] [1712349616.259414]: Subclasses: []\n", - "[INFO] [1712349616.259703]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.260180]: Instances: []\n", - "[INFO] [1712349616.260447]: Direct Instances: []\n", - "[INFO] [1712349616.260735]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349616.260980]: -------------------\n", - "[INFO] [1712349616.261217]: SOMA.Markup_Language \n", - "[INFO] [1712349616.261448]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349616.261711]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Markup_Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712349616.261964]: Subclasses: []\n", - "[INFO] [1712349616.262261]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.262744]: Instances: []\n", - "[INFO] [1712349616.263016]: Direct Instances: []\n", - "[INFO] [1712349616.263273]: Inverse Restrictions: []\n", - "[INFO] [1712349616.263520]: -------------------\n", - "[INFO] [1712349616.263757]: SOMA.Masterful \n", - "[INFO] [1712349616.263993]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712349616.264257]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.Masterful, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.264521]: Subclasses: []\n", - "[INFO] [1712349616.264822]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.265312]: Instances: []\n", - "[INFO] [1712349616.265569]: Direct Instances: []\n", - "[INFO] [1712349616.265819]: Inverse Restrictions: []\n", - "[INFO] [1712349616.266068]: -------------------\n", - "[INFO] [1712349616.266313]: SOMA.Material \n", - "[INFO] [1712349616.266549]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349616.266805]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Material, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712349616.267043]: Subclasses: []\n", - "[INFO] [1712349616.267336]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.267826]: Instances: []\n", - "[INFO] [1712349616.268081]: Direct Instances: []\n", - "[INFO] [1712349616.268325]: Inverse Restrictions: []\n", - "[INFO] [1712349616.268560]: -------------------\n", - "[INFO] [1712349616.268809]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712349616.269064]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712349616.269332]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.MedicalDiagnosis, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis}\n", - "[INFO] [1712349616.269586]: Subclasses: []\n", - "[INFO] [1712349616.269883]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", - "[INFO] [1712349616.270387]: Instances: []\n", - "[INFO] [1712349616.270651]: Direct Instances: []\n", - "[INFO] [1712349616.270901]: Inverse Restrictions: []\n", - "[INFO] [1712349616.271140]: -------------------\n", - "[INFO] [1712349616.271378]: SOMA.Memorizing \n", - "[INFO] [1712349616.271622]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712349616.271904]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.Learning, SOMA.Memorizing, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", - "[INFO] [1712349616.272157]: Subclasses: []\n", - "[INFO] [1712349616.272448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.272951]: Instances: []\n", - "[INFO] [1712349616.273328]: Direct Instances: []\n", - "[INFO] [1712349616.273622]: Inverse Restrictions: []\n", - "[INFO] [1712349616.273889]: -------------------\n", - "[INFO] [1712349616.274145]: SOMA.MentalAction \n", - "[INFO] [1712349616.274791]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712349616.275074]: Ancestors: {SOMA.MentalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712349616.275340]: Subclasses: []\n", - "[INFO] [1712349616.275644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.276137]: Instances: []\n", - "[INFO] [1712349616.276400]: Direct Instances: []\n", - "[INFO] [1712349616.276697]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712349616.276949]: -------------------\n", - "[INFO] [1712349616.277184]: SOMA.MeshShape \n", - "[INFO] [1712349616.277454]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712349616.277740]: Ancestors: {DUL.Region, DUL.Entity, SOMA.MeshShape, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349616.277994]: Subclasses: []\n", - "[INFO] [1712349616.278287]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasFilePath, rdf-schema.label]\n", - "[INFO] [1712349616.278774]: Instances: []\n", - "[INFO] [1712349616.279044]: Direct Instances: []\n", - "[INFO] [1712349616.279302]: Inverse Restrictions: []\n", - "[INFO] [1712349616.279542]: -------------------\n", - "[INFO] [1712349616.279781]: SOMA.MeshShapeData \n", - "[INFO] [1712349616.280027]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349616.280294]: Ancestors: {DUL.InformationObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.MeshShapeData}\n", - "[INFO] [1712349616.280555]: Subclasses: []\n", - "[INFO] [1712349616.280851]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.281335]: Instances: []\n", - "[INFO] [1712349616.281589]: Direct Instances: []\n", - "[INFO] [1712349616.281829]: Inverse Restrictions: []\n", - "[INFO] [1712349616.282071]: -------------------\n", - "[INFO] [1712349616.282315]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712349616.282555]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712349616.282835]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.MetaCognitionEvaluationTopic, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.283079]: Subclasses: []\n", - "[INFO] [1712349616.283367]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.283858]: Instances: []\n", - "[INFO] [1712349616.284119]: Direct Instances: []\n", - "[INFO] [1712349616.284374]: Inverse Restrictions: []\n", - "[INFO] [1712349616.284614]: -------------------\n", - "[INFO] [1712349616.284865]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712349616.285116]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349616.285367]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.285621]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712349616.285905]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.286412]: Instances: []\n", - "[INFO] [1712349616.286676]: Direct Instances: []\n", - "[INFO] [1712349616.286927]: Inverse Restrictions: []\n", - "[INFO] [1712349616.287167]: -------------------\n", - "[INFO] [1712349616.287404]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712349616.287643]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712349616.287917]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.288164]: Subclasses: []\n", - "[INFO] [1712349616.288449]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.288953]: Instances: []\n", - "[INFO] [1712349616.289227]: Direct Instances: []\n", - "[INFO] [1712349616.289498]: Inverse Restrictions: []\n", - "[INFO] [1712349616.289741]: -------------------\n", - "[INFO] [1712349616.289974]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712349616.290205]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712349616.290481]: Ancestors: {SOMA.MetaCognitionPlanningTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.290730]: Subclasses: []\n", - "[INFO] [1712349616.291015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.291493]: Instances: []\n", - "[INFO] [1712349616.291760]: Direct Instances: []\n", - "[INFO] [1712349616.292013]: Inverse Restrictions: []\n", - "[INFO] [1712349616.292250]: -------------------\n", - "[INFO] [1712349616.292485]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712349616.292714]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712349616.292970]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.293248]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712349616.293542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.294052]: Instances: []\n", - "[INFO] [1712349616.294319]: Direct Instances: []\n", - "[INFO] [1712349616.294577]: Inverse Restrictions: []\n", - "[INFO] [1712349616.294819]: -------------------\n", - "[INFO] [1712349616.295054]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712349616.295290]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712349616.295562]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.MetacognitiveControlling}\n", - "[INFO] [1712349616.295820]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712349616.296108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.296591]: Instances: []\n", - "[INFO] [1712349616.296870]: Direct Instances: []\n", - "[INFO] [1712349616.297136]: Inverse Restrictions: []\n", - "[INFO] [1712349616.297379]: -------------------\n", - "[INFO] [1712349616.297619]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712349616.297863]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712349616.298127]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting}\n", - "[INFO] [1712349616.298393]: Subclasses: []\n", - "[INFO] [1712349616.298696]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.299190]: Instances: []\n", - "[INFO] [1712349616.299492]: Direct Instances: []\n", - "[INFO] [1712349616.299749]: Inverse Restrictions: []\n", - "[INFO] [1712349616.299999]: -------------------\n", - "[INFO] [1712349616.300264]: SOMA.MilkBottle \n", - "[INFO] [1712349616.300514]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712349616.300788]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Bottle, owl.Thing, SOMA.MilkBottle, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.301042]: Subclasses: []\n", - "[INFO] [1712349616.301333]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.301842]: Instances: []\n", - "[INFO] [1712349616.302118]: Direct Instances: []\n", - "[INFO] [1712349616.302379]: Inverse Restrictions: []\n", - "[INFO] [1712349616.302630]: -------------------\n", - "[INFO] [1712349616.302879]: SOMA.MilkPack \n", - "[INFO] [1712349616.303134]: Super classes: [SOMA.Pack]\n", - "[INFO] [1712349616.303432]: Ancestors: {SOMA.MilkPack, DUL.Object, SOMA.Pack, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.303697]: Subclasses: []\n", - "[INFO] [1712349616.303985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.304466]: Instances: []\n", - "[INFO] [1712349616.304745]: Direct Instances: []\n", - "[INFO] [1712349616.305009]: Inverse Restrictions: []\n", - "[INFO] [1712349616.305261]: -------------------\n", - "[INFO] [1712349616.305503]: SOMA.Pack \n", - "[INFO] [1712349616.305745]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712349616.306003]: Ancestors: {DUL.Object, SOMA.Pack, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.306271]: Subclasses: [SOMA.MilkPack]\n", - "[INFO] [1712349616.306559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.307044]: Instances: []\n", - "[INFO] [1712349616.307325]: Direct Instances: []\n", - "[INFO] [1712349616.307588]: Inverse Restrictions: []\n", - "[INFO] [1712349616.307831]: -------------------\n", - "[INFO] [1712349616.308075]: SOMA.Mixing \n", - "[INFO] [1712349616.308318]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712349616.308600]: Ancestors: {SOMA.Mixing, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.308867]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712349616.309170]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.309691]: Instances: []\n", - "[INFO] [1712349616.309967]: Direct Instances: []\n", - "[INFO] [1712349616.310225]: Inverse Restrictions: []\n", - "[INFO] [1712349616.310473]: -------------------\n", - "[INFO] [1712349616.310714]: SOMA.MixingTheory \n", - "[INFO] [1712349616.310965]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712349616.311257]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.MixingTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349616.311521]: Subclasses: []\n", - "[INFO] [1712349616.311823]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349616.312337]: Instances: []\n", - "[INFO] [1712349616.312614]: Direct Instances: []\n", - "[INFO] [1712349616.312874]: Inverse Restrictions: []\n", - "[INFO] [1712349616.313123]: -------------------\n", - "[INFO] [1712349616.313368]: SOMA.MonitoringJointState \n", - "[INFO] [1712349616.313608]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712349616.313904]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MonitoringJointState, SOMA.Proprioceiving, owl.Thing}\n", - "[INFO] [1712349616.314172]: Subclasses: []\n", - "[INFO] [1712349616.314465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.314956]: Instances: []\n", - "[INFO] [1712349616.315236]: Direct Instances: []\n", - "[INFO] [1712349616.315498]: Inverse Restrictions: []\n", - "[INFO] [1712349616.315749]: -------------------\n", - "[INFO] [1712349616.315991]: SOMA.Proprioceiving \n", - "[INFO] [1712349616.316236]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349616.316501]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Proprioceiving, owl.Thing}\n", - "[INFO] [1712349616.316762]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712349616.317069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.317582]: Instances: []\n", - "[INFO] [1712349616.317854]: Direct Instances: []\n", - "[INFO] [1712349616.318111]: Inverse Restrictions: []\n", - "[INFO] [1712349616.318355]: -------------------\n", - "[INFO] [1712349616.318595]: SOMA.MovingAway \n", - "[INFO] [1712349616.318846]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349616.319133]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MovingAway, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.319391]: Subclasses: []\n", - "[INFO] [1712349616.319690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.320222]: Instances: []\n", - "[INFO] [1712349616.320508]: Direct Instances: []\n", - "[INFO] [1712349616.320764]: Inverse Restrictions: []\n", - "[INFO] [1712349616.321014]: -------------------\n", - "[INFO] [1712349616.321257]: SOMA.MovingTo \n", - "[INFO] [1712349616.321510]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712349616.321784]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.MovingTo, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.322037]: Subclasses: []\n", - "[INFO] [1712349616.322328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.322840]: Instances: []\n", - "[INFO] [1712349616.323110]: Direct Instances: []\n", - "[INFO] [1712349616.323371]: Inverse Restrictions: []\n", - "[INFO] [1712349616.323617]: -------------------\n", - "[INFO] [1712349616.323855]: SOMA.Natural_Language \n", - "[INFO] [1712349616.324135]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712349616.324420]: Ancestors: {SOMA.Natural_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712349616.324678]: Subclasses: []\n", - "[INFO] [1712349616.325102]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.325700]: Instances: []\n", - "[INFO] [1712349616.326032]: Direct Instances: []\n", - "[INFO] [1712349616.326385]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712349616.326656]: -------------------\n", - "[INFO] [1712349616.326915]: SOMA.Natural_Language_Text \n", - "[INFO] [1712349616.327166]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.327676]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", - "[INFO] [1712349616.327970]: Subclasses: []\n", - "[INFO] [1712349616.328286]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.328795]: Instances: []\n", - "[INFO] [1712349616.329074]: Direct Instances: []\n", - "[INFO] [1712349616.329386]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712349616.329644]: -------------------\n", - "[INFO] [1712349616.329886]: SOMA.NutellaJar \n", - "[INFO] [1712349616.330125]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712349616.330389]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Jar, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.NutellaJar}\n", - "[INFO] [1712349616.330652]: Subclasses: []\n", - "[INFO] [1712349616.330945]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.331437]: Instances: []\n", - "[INFO] [1712349616.331692]: Direct Instances: []\n", - "[INFO] [1712349616.331934]: Inverse Restrictions: []\n", - "[INFO] [1712349616.332175]: -------------------\n", - "[INFO] [1712349616.332418]: SOMA.Ontology \n", - "[INFO] [1712349616.332671]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712349616.333904]: Ancestors: {owl.Thing, SOMA.Ontology, SOMA.Structured_Text}\n", - "[INFO] [1712349616.334200]: Subclasses: []\n", - "[INFO] [1712349616.334523]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.335023]: Instances: []\n", - "[INFO] [1712349616.335282]: Direct Instances: []\n", - "[INFO] [1712349616.335583]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712349616.335846]: -------------------\n", - "[INFO] [1712349616.336095]: SOMA.Ontology_Language \n", - "[INFO] [1712349616.336342]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712349616.336612]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Ontology_Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.KnowledgeRepresentationLanguage, SOMA.Language}\n", - "[INFO] [1712349616.336864]: Subclasses: []\n", - "[INFO] [1712349616.337162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.337660]: Instances: []\n", - "[INFO] [1712349616.337916]: Direct Instances: []\n", - "[INFO] [1712349616.338219]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712349616.338474]: -------------------\n", - "[INFO] [1712349616.338717]: SOMA.Option \n", - "[INFO] [1712349616.338954]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712349616.339213]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Option, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.339451]: Subclasses: []\n", - "[INFO] [1712349616.339742]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.340227]: Instances: []\n", - "[INFO] [1712349616.340477]: Direct Instances: []\n", - "[INFO] [1712349616.340714]: Inverse Restrictions: []\n", - "[INFO] [1712349616.340951]: -------------------\n", - "[INFO] [1712349616.341189]: SOMA.Singleton \n", - "[INFO] [1712349616.341423]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.341656]: Ancestors: {owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712349616.341892]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712349616.342174]: Properties: [rdf-schema.isDefinedBy, SOMA.encapsulates, rdf-schema.comment]\n", - "[INFO] [1712349616.342716]: Instances: []\n", - "[INFO] [1712349616.342980]: Direct Instances: []\n", - "[INFO] [1712349616.343231]: Inverse Restrictions: []\n", - "[INFO] [1712349616.343467]: -------------------\n", - "[INFO] [1712349616.343701]: SOMA.Orienting \n", - "[INFO] [1712349616.343928]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712349616.344209]: Ancestors: {SOMA.Orienting, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Positioning, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.344462]: Subclasses: []\n", - "[INFO] [1712349616.344747]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.345227]: Instances: []\n", - "[INFO] [1712349616.345497]: Direct Instances: []\n", - "[INFO] [1712349616.345747]: Inverse Restrictions: []\n", - "[INFO] [1712349616.345984]: -------------------\n", - "[INFO] [1712349616.346216]: SOMA.Positioning \n", - "[INFO] [1712349616.346458]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349616.346706]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Positioning, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.346947]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712349616.347224]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.347728]: Instances: []\n", - "[INFO] [1712349616.347990]: Direct Instances: []\n", - "[INFO] [1712349616.348242]: Inverse Restrictions: []\n", - "[INFO] [1712349616.348478]: -------------------\n", - "[INFO] [1712349616.348710]: SOMA.Origin \n", - "[INFO] [1712349616.348951]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712349616.349251]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Location, SOMA.Origin, DUL.Role}\n", - "[INFO] [1712349616.349507]: Subclasses: []\n", - "[INFO] [1712349616.349790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.350281]: Instances: []\n", - "[INFO] [1712349616.350539]: Direct Instances: []\n", - "[INFO] [1712349616.350820]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712349616.351060]: -------------------\n", - "[INFO] [1712349616.351290]: SOMA.Oven \n", - "[INFO] [1712349616.351546]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", - "[INFO] [1712349616.351815]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Oven}\n", - "[INFO] [1712349616.352055]: Subclasses: []\n", - "[INFO] [1712349616.352330]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", - "[INFO] [1712349616.352811]: Instances: []\n", - "[INFO] [1712349616.353089]: Direct Instances: []\n", - "[INFO] [1712349616.353345]: Inverse Restrictions: []\n", - "[INFO] [1712349616.353581]: -------------------\n", - "[INFO] [1712349616.353813]: SOMA.TemperingByHeating \n", - "[INFO] [1712349616.354036]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712349616.354590]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.TemperingByHeating, DUL.Entity, SOMA.Variability, SOMA.Tempering, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349616.354884]: Subclasses: []\n", - "[INFO] [1712349616.355177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.355673]: Instances: []\n", - "[INFO] [1712349616.355959]: Direct Instances: []\n", - "[INFO] [1712349616.356238]: Inverse Restrictions: [SOMA.Oven]\n", - "[INFO] [1712349616.356485]: -------------------\n", - "[INFO] [1712349616.356726]: SOMA.Pan \n", - "[INFO] [1712349616.356972]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712349616.357250]: Ancestors: {SOMA.Crockery, SOMA.Tableware, SOMA.Pan, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.357496]: Subclasses: []\n", - "[INFO] [1712349616.357780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.358271]: Instances: []\n", - "[INFO] [1712349616.358535]: Direct Instances: []\n", - "[INFO] [1712349616.358784]: Inverse Restrictions: []\n", - "[INFO] [1712349616.359020]: -------------------\n", - "[INFO] [1712349616.359259]: SOMA.Pancake \n", - "[INFO] [1712349616.359505]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712349616.359772]: Ancestors: {SOMA.Dish, SOMA.Pancake, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.BakedGood}\n", - "[INFO] [1712349616.360012]: Subclasses: []\n", - "[INFO] [1712349616.360286]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.360778]: Instances: []\n", - "[INFO] [1712349616.361039]: Direct Instances: []\n", - "[INFO] [1712349616.361286]: Inverse Restrictions: []\n", - "[INFO] [1712349616.361519]: -------------------\n", - "[INFO] [1712349616.361761]: SOMA.PancakeMix \n", - "[INFO] [1712349616.362000]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712349616.362268]: Ancestors: {DUL.DesignedSubstance, DUL.Substance, DUL.Object, DUL.PhysicalBody, DUL.FunctionalSubstance, DUL.Entity, SOMA.PancakeMix, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.362510]: Subclasses: []\n", - "[INFO] [1712349616.362802]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.363288]: Instances: []\n", - "[INFO] [1712349616.363542]: Direct Instances: []\n", - "[INFO] [1712349616.363782]: Inverse Restrictions: []\n", - "[INFO] [1712349616.364014]: -------------------\n", - "[INFO] [1712349616.364246]: SOMA.ParkingArms \n", - "[INFO] [1712349616.364490]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712349616.364757]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ParkingArms, DUL.Object, DUL.Entity, owl.Thing, SOMA.AssumingArmPose}\n", - "[INFO] [1712349616.365004]: Subclasses: []\n", - "[INFO] [1712349616.365291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.365790]: Instances: []\n", - "[INFO] [1712349616.366074]: Direct Instances: []\n", - "[INFO] [1712349616.366332]: Inverse Restrictions: []\n", - "[INFO] [1712349616.366570]: -------------------\n", - "[INFO] [1712349616.366814]: SOMA.PastaBowl \n", - "[INFO] [1712349616.367062]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712349616.367337]: Ancestors: {SOMA.Crockery, SOMA.PastaBowl, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Bowl}\n", - "[INFO] [1712349616.367583]: Subclasses: []\n", - "[INFO] [1712349616.367862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.368345]: Instances: []\n", - "[INFO] [1712349616.368618]: Direct Instances: []\n", - "[INFO] [1712349616.368877]: Inverse Restrictions: []\n", - "[INFO] [1712349616.369117]: -------------------\n", - "[INFO] [1712349616.369354]: SOMA.PepperShaker \n", - "[INFO] [1712349616.369591]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712349616.369871]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.PepperShaker, SOMA.Shaker}\n", - "[INFO] [1712349616.370116]: Subclasses: []\n", - "[INFO] [1712349616.370397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.370875]: Instances: []\n", - "[INFO] [1712349616.371141]: Direct Instances: []\n", - "[INFO] [1712349616.371399]: Inverse Restrictions: []\n", - "[INFO] [1712349616.371636]: -------------------\n", - "[INFO] [1712349616.371868]: SOMA.Shaker \n", - "[INFO] [1712349616.372099]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712349616.372350]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Shaker}\n", - "[INFO] [1712349616.372605]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", - "[INFO] [1712349616.372892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.373378]: Instances: []\n", - "[INFO] [1712349616.373624]: Direct Instances: []\n", - "[INFO] [1712349616.373878]: Inverse Restrictions: []\n", - "[INFO] [1712349616.374122]: -------------------\n", - "[INFO] [1712349616.374357]: SOMA.PhaseTransition \n", - "[INFO] [1712349616.374584]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712349616.374823]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.375080]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712349616.375372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.375854]: Instances: []\n", - "[INFO] [1712349616.376133]: Direct Instances: []\n", - "[INFO] [1712349616.376402]: Inverse Restrictions: []\n", - "[INFO] [1712349616.376643]: -------------------\n", - "[INFO] [1712349616.376888]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712349616.377133]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712349616.377402]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAccessibility, owl.Thing}\n", - "[INFO] [1712349616.377658]: Subclasses: []\n", - "[INFO] [1712349616.377953]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349616.378433]: Instances: []\n", - "[INFO] [1712349616.378705]: Direct Instances: []\n", - "[INFO] [1712349616.378955]: Inverse Restrictions: []\n", - "[INFO] [1712349616.379193]: -------------------\n", - "[INFO] [1712349616.379426]: SOMA.PhysicalBlockage \n", - "[INFO] [1712349616.379666]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712349616.379940]: Ancestors: {SOMA.PhysicalBlockage, DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.380192]: Subclasses: []\n", - "[INFO] [1712349616.380487]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349616.380987]: Instances: []\n", - "[INFO] [1712349616.381251]: Direct Instances: []\n", - "[INFO] [1712349616.381502]: Inverse Restrictions: []\n", - "[INFO] [1712349616.381737]: -------------------\n", - "[INFO] [1712349616.381973]: SOMA.PhysicalExistence \n", - "[INFO] [1712349616.382217]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712349616.382492]: Ancestors: {SOMA.PhysicalState, DUL.Entity, DUL.Event, SOMA.PhysicalExistence, owl.Thing, SOMA.State}\n", - "[INFO] [1712349616.382759]: Subclasses: []\n", - "[INFO] [1712349616.383043]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.383533]: Instances: []\n", - "[INFO] [1712349616.383789]: Direct Instances: []\n", - "[INFO] [1712349616.384033]: Inverse Restrictions: []\n", - "[INFO] [1712349616.384265]: -------------------\n", - "[INFO] [1712349616.384492]: SOMA.PhysicalState \n", - "[INFO] [1712349616.384739]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712349616.384998]: Ancestors: {SOMA.PhysicalState, DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", - "[INFO] [1712349616.385247]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712349616.385540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349616.386053]: Instances: []\n", - "[INFO] [1712349616.386317]: Direct Instances: []\n", - "[INFO] [1712349616.386571]: Inverse Restrictions: []\n", - "[INFO] [1712349616.386803]: -------------------\n", - "[INFO] [1712349616.387039]: SOMA.PhysicsProcess \n", - "[INFO] [1712349616.387297]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712349616.387577]: Ancestors: {DUL.Entity, DUL.Event, SOMA.PhysicsProcess, owl.Thing, DUL.Process}\n", - "[INFO] [1712349616.387843]: Subclasses: []\n", - "[INFO] [1712349616.388139]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349616.388622]: Instances: []\n", - "[INFO] [1712349616.388897]: Direct Instances: []\n", - "[INFO] [1712349616.389156]: Inverse Restrictions: []\n", - "[INFO] [1712349616.389399]: -------------------\n", - "[INFO] [1712349616.389634]: SOMA.PlacingTheory \n", - "[INFO] [1712349616.389871]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712349616.390147]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PlacingTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349616.390395]: Subclasses: []\n", - "[INFO] [1712349616.390687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349616.391194]: Instances: []\n", - "[INFO] [1712349616.391456]: Direct Instances: []\n", - "[INFO] [1712349616.391702]: Inverse Restrictions: []\n", - "[INFO] [1712349616.391938]: -------------------\n", - "[INFO] [1712349616.392172]: SOMA.PlanarJoint \n", - "[INFO] [1712349616.392401]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712349616.392669]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, SOMA.PlanarJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349616.392927]: Subclasses: []\n", - "[INFO] [1712349616.393219]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.393701]: Instances: []\n", - "[INFO] [1712349616.393967]: Direct Instances: []\n", - "[INFO] [1712349616.394219]: Inverse Restrictions: []\n", - "[INFO] [1712349616.394456]: -------------------\n", - "[INFO] [1712349616.394687]: SOMA.PluginRole \n", - "[INFO] [1712349616.394918]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712349616.395178]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, SOMA.PluginRole, DUL.Object, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.395437]: Subclasses: []\n", - "[INFO] [1712349616.395731]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", - "[INFO] [1712349616.396217]: Instances: []\n", - "[INFO] [1712349616.396482]: Direct Instances: []\n", - "[INFO] [1712349616.396800]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712349616.397046]: -------------------\n", - "[INFO] [1712349616.397286]: SOMA.Pot \n", - "[INFO] [1712349616.397519]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712349616.397788]: Ancestors: {SOMA.Crockery, SOMA.Pot, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.398046]: Subclasses: [SOMA.SoupPot]\n", - "[INFO] [1712349616.398330]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.398818]: Instances: []\n", - "[INFO] [1712349616.399065]: Direct Instances: []\n", - "[INFO] [1712349616.399342]: Inverse Restrictions: []\n", - "[INFO] [1712349616.399650]: -------------------\n", - "[INFO] [1712349616.399890]: SOMA.Pourable \n", - "[INFO] [1712349616.400146]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712349616.400412]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Pourable, SOMA.Extrinsic}\n", - "[INFO] [1712349616.400697]: Subclasses: []\n", - "[INFO] [1712349616.401005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.401499]: Instances: []\n", - "[INFO] [1712349616.401753]: Direct Instances: []\n", - "[INFO] [1712349616.402054]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712349616.402309]: -------------------\n", - "[INFO] [1712349616.402547]: SOMA.PouredObject \n", - "[INFO] [1712349616.402779]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349616.403041]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.PouredObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.403280]: Subclasses: []\n", - "[INFO] [1712349616.403561]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.404064]: Instances: []\n", - "[INFO] [1712349616.404328]: Direct Instances: []\n", - "[INFO] [1712349616.404616]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712349616.404869]: -------------------\n", - "[INFO] [1712349616.405126]: SOMA.Pouring \n", - "[INFO] [1712349616.405376]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712349616.405640]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.405897]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712349616.406187]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349616.406706]: Instances: []\n", - "[INFO] [1712349616.406977]: Direct Instances: []\n", - "[INFO] [1712349616.407229]: Inverse Restrictions: []\n", - "[INFO] [1712349616.407489]: -------------------\n", - "[INFO] [1712349616.407727]: SOMA.PouringInto \n", - "[INFO] [1712349616.407969]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712349616.408245]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.PouringInto, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.408492]: Subclasses: []\n", - "[INFO] [1712349616.408780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.409265]: Instances: []\n", - "[INFO] [1712349616.409533]: Direct Instances: []\n", - "[INFO] [1712349616.409799]: Inverse Restrictions: []\n", - "[INFO] [1712349616.410042]: -------------------\n", - "[INFO] [1712349616.410276]: SOMA.PouringOnto \n", - "[INFO] [1712349616.410507]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712349616.410767]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PouringOnto, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.411029]: Subclasses: []\n", - "[INFO] [1712349616.411323]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.411805]: Instances: []\n", - "[INFO] [1712349616.412066]: Direct Instances: []\n", - "[INFO] [1712349616.412322]: Inverse Restrictions: []\n", - "[INFO] [1712349616.412560]: -------------------\n", - "[INFO] [1712349616.412795]: SOMA.Prediction \n", - "[INFO] [1712349616.413032]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712349616.413295]: Ancestors: {SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.413554]: Subclasses: []\n", - "[INFO] [1712349616.413848]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.414333]: Instances: []\n", - "[INFO] [1712349616.414612]: Direct Instances: []\n", - "[INFO] [1712349616.414866]: Inverse Restrictions: []\n", - "[INFO] [1712349616.415105]: -------------------\n", - "[INFO] [1712349616.415340]: SOMA.Prospecting \n", - "[INFO] [1712349616.415570]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349616.415815]: Ancestors: {SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.416106]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712349616.416398]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.416885]: Instances: []\n", - "[INFO] [1712349616.417135]: Direct Instances: []\n", - "[INFO] [1712349616.417398]: Inverse Restrictions: []\n", - "[INFO] [1712349616.417648]: -------------------\n", - "[INFO] [1712349616.417890]: SOMA.Predilection \n", - "[INFO] [1712349616.418892]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712349616.419189]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Predilection, DUL.Relation, DUL.SocialRelation}\n", - "[INFO] [1712349616.419449]: Subclasses: []\n", - "[INFO] [1712349616.419743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.420238]: Instances: []\n", - "[INFO] [1712349616.420495]: Direct Instances: []\n", - "[INFO] [1712349616.420754]: Inverse Restrictions: []\n", - "[INFO] [1712349616.421077]: -------------------\n", - "[INFO] [1712349616.421325]: SOMA.PreferenceOrder \n", - "[INFO] [1712349616.421972]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712349616.422269]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PreferenceOrder, owl.Thing, DUL.Relation, DUL.SocialRelation}\n", - "[INFO] [1712349616.422530]: Subclasses: []\n", - "[INFO] [1712349616.422827]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.orders]\n", - "[INFO] [1712349616.423313]: Instances: []\n", - "[INFO] [1712349616.423572]: Direct Instances: []\n", - "[INFO] [1712349616.423827]: Inverse Restrictions: []\n", - "[INFO] [1712349616.424073]: -------------------\n", - "[INFO] [1712349616.424313]: SOMA.PreferenceRegion \n", - "[INFO] [1712349616.424549]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712349616.424817]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Entity, DUL.SocialObjectAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.425076]: Subclasses: []\n", - "[INFO] [1712349616.425378]: Properties: [rdf-schema.isDefinedBy, DUL.isRegionFor, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.425864]: Instances: []\n", - "[INFO] [1712349616.426114]: Direct Instances: []\n", - "[INFO] [1712349616.426359]: Inverse Restrictions: []\n", - "[INFO] [1712349616.426589]: -------------------\n", - "[INFO] [1712349616.426826]: SOMA.PrismaticJoint \n", - "[INFO] [1712349616.427073]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712349616.427334]: Ancestors: {SOMA.Joint, SOMA.PrismaticJoint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349616.427573]: Subclasses: []\n", - "[INFO] [1712349616.427879]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", - "[INFO] [1712349616.428370]: Instances: []\n", - "[INFO] [1712349616.428625]: Direct Instances: []\n", - "[INFO] [1712349616.428871]: Inverse Restrictions: []\n", - "[INFO] [1712349616.429108]: -------------------\n", - "[INFO] [1712349616.429337]: SOMA.ProcessFlow \n", - "[INFO] [1712349616.429582]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712349616.429845]: Ancestors: {DUL.Description, SOMA.ProcessFlow, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.430085]: Subclasses: []\n", - "[INFO] [1712349616.430371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.definesProcess, rdf-schema.label]\n", - "[INFO] [1712349616.430945]: Instances: []\n", - "[INFO] [1712349616.431314]: Direct Instances: []\n", - "[INFO] [1712349616.431982]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712349616.432278]: -------------------\n", - "[INFO] [1712349616.432545]: SOMA.Progression \n", - "[INFO] [1712349616.432816]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712349616.433661]: Ancestors: {owl.Thing, DUL.Situation, SOMA.Progression, DUL.Entity}\n", - "[INFO] [1712349616.433952]: Subclasses: []\n", - "[INFO] [1712349616.434262]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies]\n", - "[INFO] [1712349616.434763]: Instances: []\n", - "[INFO] [1712349616.435030]: Direct Instances: []\n", - "[INFO] [1712349616.435282]: Inverse Restrictions: []\n", - "[INFO] [1712349616.435522]: -------------------\n", - "[INFO] [1712349616.435764]: SOMA.Protector \n", - "[INFO] [1712349616.436012]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712349616.436287]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, SOMA.Protector, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.436542]: Subclasses: []\n", - "[INFO] [1712349616.436837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.437340]: Instances: []\n", - "[INFO] [1712349616.437609]: Direct Instances: []\n", - "[INFO] [1712349616.437862]: Inverse Restrictions: []\n", - "[INFO] [1712349616.438104]: -------------------\n", - "[INFO] [1712349616.438337]: SOMA.ProximalTheory \n", - "[INFO] [1712349616.438735]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712349616.439123]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProximalTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349616.439487]: Subclasses: []\n", - "[INFO] [1712349616.439800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349616.440293]: Instances: []\n", - "[INFO] [1712349616.440554]: Direct Instances: []\n", - "[INFO] [1712349616.440803]: Inverse Restrictions: []\n", - "[INFO] [1712349616.441042]: -------------------\n", - "[INFO] [1712349616.441302]: SOMA.PushingAway \n", - "[INFO] [1712349616.441546]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712349616.441818]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.PushingAway, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", - "[INFO] [1712349616.442064]: Subclasses: []\n", - "[INFO] [1712349616.442359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.442902]: Instances: []\n", - "[INFO] [1712349616.443179]: Direct Instances: []\n", - "[INFO] [1712349616.443438]: Inverse Restrictions: []\n", - "[INFO] [1712349616.443683]: -------------------\n", - "[INFO] [1712349616.443919]: SOMA.PushingDown \n", - "[INFO] [1712349616.444289]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712349616.444694]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.PushingDown, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", - "[INFO] [1712349616.445010]: Subclasses: []\n", - "[INFO] [1712349616.445310]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.445800]: Instances: []\n", - "[INFO] [1712349616.446079]: Direct Instances: []\n", - "[INFO] [1712349616.446343]: Inverse Restrictions: []\n", - "[INFO] [1712349616.446584]: -------------------\n", - "[INFO] [1712349616.446920]: SOMA.PuttingDown \n", - "[INFO] [1712349616.447176]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349616.447460]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.PuttingDown, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.447722]: Subclasses: []\n", - "[INFO] [1712349616.448015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.448495]: Instances: []\n", - "[INFO] [1712349616.448747]: Direct Instances: []\n", - "[INFO] [1712349616.449021]: Inverse Restrictions: []\n", - "[INFO] [1712349616.449309]: -------------------\n", - "[INFO] [1712349616.449550]: SOMA.QualityTransition \n", - "[INFO] [1712349616.449790]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712349616.450050]: Ancestors: {DUL.Situation, DUL.Entity, owl.Thing, SOMA.QualityTransition, DUL.Transition}\n", - "[INFO] [1712349616.450311]: Subclasses: []\n", - "[INFO] [1712349616.450631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.451123]: Instances: []\n", - "[INFO] [1712349616.451376]: Direct Instances: []\n", - "[INFO] [1712349616.451622]: Inverse Restrictions: []\n", - "[INFO] [1712349616.451855]: -------------------\n", - "[INFO] [1712349616.452100]: SOMA.Query \n", - "[INFO] [1712349616.452343]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712349616.452611]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, DUL.Entity, owl.Thing, SOMA.Query, SOMA.Message, SOMA.Item}\n", - "[INFO] [1712349616.452862]: Subclasses: []\n", - "[INFO] [1712349616.453159]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.453652]: Instances: []\n", - "[INFO] [1712349616.453909]: Direct Instances: []\n", - "[INFO] [1712349616.454190]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712349616.454428]: -------------------\n", - "[INFO] [1712349616.454677]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712349616.454940]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.456878]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", - "[INFO] [1712349616.457178]: Subclasses: []\n", - "[INFO] [1712349616.457494]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.457992]: Instances: []\n", - "[INFO] [1712349616.458260]: Direct Instances: []\n", - "[INFO] [1712349616.458513]: Inverse Restrictions: []\n", - "[INFO] [1712349616.458763]: -------------------\n", - "[INFO] [1712349616.459013]: SOMA.QueryEngine \n", - "[INFO] [1712349616.459257]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349616.459527]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.QueryEngine, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.459774]: Subclasses: []\n", - "[INFO] [1712349616.460063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.460567]: Instances: []\n", - "[INFO] [1712349616.460840]: Direct Instances: []\n", - "[INFO] [1712349616.461098]: Inverse Restrictions: []\n", - "[INFO] [1712349616.461339]: -------------------\n", - "[INFO] [1712349616.461577]: SOMA.RaspberryJamJar \n", - "[INFO] [1712349616.461818]: Super classes: [SOMA.JamJar]\n", - "[INFO] [1712349616.462101]: Ancestors: {DUL.Object, SOMA.RaspberryJamJar, SOMA.JamJar, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Jar, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.462352]: Subclasses: []\n", - "[INFO] [1712349616.462633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.463114]: Instances: []\n", - "[INFO] [1712349616.463393]: Direct Instances: []\n", - "[INFO] [1712349616.463650]: Inverse Restrictions: []\n", - "[INFO] [1712349616.463889]: -------------------\n", - "[INFO] [1712349616.464235]: SOMA.Reaching \n", - "[INFO] [1712349616.464490]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712349616.464767]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, SOMA.Reaching, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712349616.465042]: Subclasses: []\n", - "[INFO] [1712349616.465352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.465868]: Instances: []\n", - "[INFO] [1712349616.466157]: Direct Instances: []\n", - "[INFO] [1712349616.466416]: Inverse Restrictions: []\n", - "[INFO] [1712349616.466654]: -------------------\n", - "[INFO] [1712349616.466895]: SOMA.Retracting \n", - "[INFO] [1712349616.467142]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712349616.467419]: Ancestors: {SOMA.Retracting, SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712349616.467683]: Subclasses: []\n", - "[INFO] [1712349616.467977]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.468470]: Instances: []\n", - "[INFO] [1712349616.468724]: Direct Instances: []\n", - "[INFO] [1712349616.469004]: Inverse Restrictions: []\n", - "[INFO] [1712349616.469257]: -------------------\n", - "[INFO] [1712349616.469501]: SOMA.Reasoner \n", - "[INFO] [1712349616.469759]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349616.470009]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349616.470315]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712349616.470628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.471131]: Instances: []\n", - "[INFO] [1712349616.471391]: Direct Instances: []\n", - "[INFO] [1712349616.471640]: Inverse Restrictions: []\n", - "[INFO] [1712349616.471889]: -------------------\n", - "[INFO] [1712349616.472126]: SOMA.RecipientRole \n", - "[INFO] [1712349616.472357]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712349616.472621]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.RecipientRole, SOMA.BeneficiaryRole, DUL.Role}\n", - "[INFO] [1712349616.472882]: Subclasses: []\n", - "[INFO] [1712349616.473181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.473671]: Instances: []\n", - "[INFO] [1712349616.473925]: Direct Instances: []\n", - "[INFO] [1712349616.474173]: Inverse Restrictions: []\n", - "[INFO] [1712349616.474427]: -------------------\n", - "[INFO] [1712349616.474668]: SOMA.RecordedEpisode \n", - "[INFO] [1712349616.474918]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712349616.475161]: Ancestors: {DUL.Situation, SOMA.Episode, DUL.Entity, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712349616.475402]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712349616.475684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", - "[INFO] [1712349616.476185]: Instances: []\n", - "[INFO] [1712349616.476444]: Direct Instances: []\n", - "[INFO] [1712349616.476693]: Inverse Restrictions: []\n", - "[INFO] [1712349616.476929]: -------------------\n", - "[INFO] [1712349616.477177]: SOMA.RedColor \n", - "[INFO] [1712349616.477418]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712349616.477681]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, SOMA.RedColor, owl.Thing}\n", - "[INFO] [1712349616.477920]: Subclasses: []\n", - "[INFO] [1712349616.478198]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.478694]: Instances: []\n", - "[INFO] [1712349616.478956]: Direct Instances: []\n", - "[INFO] [1712349616.479206]: Inverse Restrictions: []\n", - "[INFO] [1712349616.479441]: -------------------\n", - "[INFO] [1712349616.479672]: SOMA.Refrigerator \n", - "[INFO] [1712349616.479907]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", - "[INFO] [1712349616.480182]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, SOMA.Refrigerator, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.480430]: Subclasses: []\n", - "[INFO] [1712349616.480713]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.481208]: Instances: []\n", - "[INFO] [1712349616.481529]: Direct Instances: []\n", - "[INFO] [1712349616.481798]: Inverse Restrictions: []\n", - "[INFO] [1712349616.482048]: -------------------\n", - "[INFO] [1712349616.482284]: SOMA.Reification \n", - "[INFO] [1712349616.482569]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712349616.482851]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Reification, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.483103]: Subclasses: []\n", - "[INFO] [1712349616.483402]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", - "[INFO] [1712349616.483954]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712349616.484249]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712349616.484510]: Inverse Restrictions: []\n", - "[INFO] [1712349616.484748]: -------------------\n", - "[INFO] [1712349616.484991]: SOMA.RelationalDatabase \n", - "[INFO] [1712349616.485222]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712349616.485487]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, SOMA.RelationalDatabase, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", - "[INFO] [1712349616.485769]: Subclasses: []\n", - "[INFO] [1712349616.486066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.486549]: Instances: []\n", - "[INFO] [1712349616.486818]: Direct Instances: []\n", - "[INFO] [1712349616.487072]: Inverse Restrictions: []\n", - "[INFO] [1712349616.487308]: -------------------\n", - "[INFO] [1712349616.487536]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712349616.487766]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712349616.488034]: Ancestors: {SOMA.RelationalQueryLanguage, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349616.488292]: Subclasses: []\n", - "[INFO] [1712349616.488582]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.489062]: Instances: []\n", - "[INFO] [1712349616.489344]: Direct Instances: []\n", - "[INFO] [1712349616.489596]: Inverse Restrictions: []\n", - "[INFO] [1712349616.489834]: -------------------\n", - "[INFO] [1712349616.490065]: SOMA.RelevantPart \n", - "[INFO] [1712349616.490296]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712349616.490561]: Ancestors: {SOMA.Feature, DUL.Object, DUL.Entity, owl.Thing, SOMA.RelevantPart}\n", - "[INFO] [1712349616.490808]: Subclasses: []\n", - "[INFO] [1712349616.491095]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.491590]: Instances: []\n", - "[INFO] [1712349616.491856]: Direct Instances: []\n", - "[INFO] [1712349616.492108]: Inverse Restrictions: []\n", - "[INFO] [1712349616.492342]: -------------------\n", - "[INFO] [1712349616.492573]: SOMA.Remembering \n", - "[INFO] [1712349616.492820]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712349616.493081]: Ancestors: {SOMA.Remembering, owl.Thing}\n", - "[INFO] [1712349616.493316]: Subclasses: []\n", - "[INFO] [1712349616.493639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.494118]: Instances: []\n", - "[INFO] [1712349616.494389]: Direct Instances: []\n", - "[INFO] [1712349616.494639]: Inverse Restrictions: []\n", - "[INFO] [1712349616.494873]: -------------------\n", - "[INFO] [1712349616.495103]: SOMA.Retrospecting \n", - "[INFO] [1712349616.495337]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712349616.495600]: Ancestors: {owl.Thing, SOMA.Retrospecting, SOMA.InformationAcquisition}\n", - "[INFO] [1712349616.495844]: Subclasses: []\n", - "[INFO] [1712349616.496123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.496598]: Instances: []\n", - "[INFO] [1712349616.496872]: Direct Instances: []\n", - "[INFO] [1712349616.497288]: Inverse Restrictions: []\n", - "[INFO] [1712349616.497656]: -------------------\n", - "[INFO] [1712349616.498020]: SOMA.RemovedObject \n", - "[INFO] [1712349616.498380]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712349616.498775]: Ancestors: {SOMA.Patient, SOMA.ExcludedObject, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.RemovedObject, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.499061]: Subclasses: []\n", - "[INFO] [1712349616.499368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.499872]: Instances: []\n", - "[INFO] [1712349616.500136]: Direct Instances: []\n", - "[INFO] [1712349616.500389]: Inverse Restrictions: []\n", - "[INFO] [1712349616.500633]: -------------------\n", - "[INFO] [1712349616.500896]: SOMA.Replanning \n", - "[INFO] [1712349616.501152]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712349616.501425]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Planning, SOMA.Replanning, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.501672]: Subclasses: []\n", - "[INFO] [1712349616.501965]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.502451]: Instances: []\n", - "[INFO] [1712349616.502727]: Direct Instances: []\n", - "[INFO] [1712349616.502983]: Inverse Restrictions: []\n", - "[INFO] [1712349616.503227]: -------------------\n", - "[INFO] [1712349616.503461]: SOMA.RevoluteJoint \n", - "[INFO] [1712349616.503909]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712349616.504307]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, SOMA.RevoluteJoint, DUL.PhysicalObject}\n", - "[INFO] [1712349616.504669]: Subclasses: []\n", - "[INFO] [1712349616.505031]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", - "[INFO] [1712349616.505545]: Instances: []\n", - "[INFO] [1712349616.505813]: Direct Instances: []\n", - "[INFO] [1712349616.506082]: Inverse Restrictions: []\n", - "[INFO] [1712349616.506328]: -------------------\n", - "[INFO] [1712349616.506568]: SOMA.Surface \n", - "[INFO] [1712349616.506807]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712349616.507068]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", - "[INFO] [1712349616.507322]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712349616.507609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.508106]: Instances: []\n", - "[INFO] [1712349616.508382]: Direct Instances: []\n", - "[INFO] [1712349616.508639]: Inverse Restrictions: []\n", - "[INFO] [1712349616.508965]: -------------------\n", - "[INFO] [1712349616.509259]: SOMA.Rubbing \n", - "[INFO] [1712349616.509529]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712349616.509888]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Rubbing, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.510167]: Subclasses: []\n", - "[INFO] [1712349616.510471]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.510958]: Instances: []\n", - "[INFO] [1712349616.511222]: Direct Instances: []\n", - "[INFO] [1712349616.511471]: Inverse Restrictions: []\n", - "[INFO] [1712349616.511722]: -------------------\n", - "[INFO] [1712349616.511969]: SOMA.SaladBowl \n", - "[INFO] [1712349616.512208]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712349616.512477]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.SaladBowl, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Bowl}\n", - "[INFO] [1712349616.512746]: Subclasses: []\n", - "[INFO] [1712349616.513053]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.513551]: Instances: []\n", - "[INFO] [1712349616.513812]: Direct Instances: []\n", - "[INFO] [1712349616.514071]: Inverse Restrictions: []\n", - "[INFO] [1712349616.514318]: -------------------\n", - "[INFO] [1712349616.514560]: SOMA.SaltShaker \n", - "[INFO] [1712349616.514796]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712349616.515060]: Ancestors: {SOMA.SaltShaker, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Shaker}\n", - "[INFO] [1712349616.515322]: Subclasses: []\n", - "[INFO] [1712349616.515616]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.516133]: Instances: []\n", - "[INFO] [1712349616.516413]: Direct Instances: []\n", - "[INFO] [1712349616.516671]: Inverse Restrictions: []\n", - "[INFO] [1712349616.516921]: -------------------\n", - "[INFO] [1712349616.517163]: SOMA.Scene \n", - "[INFO] [1712349616.517498]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712349616.517799]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Scene}\n", - "[INFO] [1712349616.518065]: Subclasses: []\n", - "[INFO] [1712349616.518357]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.includesEvent, DUL.satisfies]\n", - "[INFO] [1712349616.518857]: Instances: []\n", - "[INFO] [1712349616.519124]: Direct Instances: []\n", - "[INFO] [1712349616.519414]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712349616.519651]: -------------------\n", - "[INFO] [1712349616.520036]: SOMA.SelectedObject \n", - "[INFO] [1712349616.520441]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712349616.520889]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.SelectedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.521167]: Subclasses: []\n", - "[INFO] [1712349616.521457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.521941]: Instances: []\n", - "[INFO] [1712349616.522212]: Direct Instances: []\n", - "[INFO] [1712349616.522515]: Inverse Restrictions: []\n", - "[INFO] [1712349616.522756]: -------------------\n", - "[INFO] [1712349616.523156]: SOMA.Selecting \n", - "[INFO] [1712349616.523517]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712349616.523891]: Ancestors: {SOMA.InformationAcquisition, SOMA.Selecting, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.524234]: Subclasses: []\n", - "[INFO] [1712349616.524611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.525183]: Instances: []\n", - "[INFO] [1712349616.525541]: Direct Instances: []\n", - "[INFO] [1712349616.525881]: Inverse Restrictions: []\n", - "[INFO] [1712349616.526208]: -------------------\n", - "[INFO] [1712349616.526530]: SOMA.SelectingItem \n", - "[INFO] [1712349616.527261]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712349616.527648]: Ancestors: {SOMA.InformationAcquisition, SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.527992]: Subclasses: []\n", - "[INFO] [1712349616.528371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712349616.528943]: Instances: []\n", - "[INFO] [1712349616.529308]: Direct Instances: []\n", - "[INFO] [1712349616.529654]: Inverse Restrictions: []\n", - "[INFO] [1712349616.529982]: -------------------\n", - "[INFO] [1712349616.530310]: SOMA.SelfReflection \n", - "[INFO] [1712349616.530628]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712349616.530979]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.SelfReflection, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.MetacognitiveControlling}\n", - "[INFO] [1712349616.531317]: Subclasses: []\n", - "[INFO] [1712349616.531692]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.532255]: Instances: []\n", - "[INFO] [1712349616.532646]: Direct Instances: []\n", - "[INFO] [1712349616.533019]: Inverse Restrictions: []\n", - "[INFO] [1712349616.533307]: -------------------\n", - "[INFO] [1712349616.533559]: SOMA.Serving \n", - "[INFO] [1712349616.534911]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712349616.535259]: Ancestors: {SOMA.Delivering, SOMA.PhysicalTask, DUL.Task, SOMA.Serving, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.535538]: Subclasses: []\n", - "[INFO] [1712349616.535845]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.536337]: Instances: []\n", - "[INFO] [1712349616.536616]: Direct Instances: []\n", - "[INFO] [1712349616.536879]: Inverse Restrictions: []\n", - "[INFO] [1712349616.537126]: -------------------\n", - "[INFO] [1712349616.537365]: SOMA.SettingGripper \n", - "[INFO] [1712349616.537598]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712349616.537989]: Ancestors: {SOMA.SettingGripper, SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.538328]: Subclasses: []\n", - "[INFO] [1712349616.538702]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.539265]: Instances: []\n", - "[INFO] [1712349616.539616]: Direct Instances: []\n", - "[INFO] [1712349616.539946]: Inverse Restrictions: []\n", - "[INFO] [1712349616.540265]: -------------------\n", - "[INFO] [1712349616.540581]: SOMA.6DPose \n", - "[INFO] [1712349616.540917]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712349616.541286]: Ancestors: {SOMA.6DPose, DUL.SpaceRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.541619]: Subclasses: []\n", - "[INFO] [1712349616.541992]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", - "[INFO] [1712349616.542558]: Instances: []\n", - "[INFO] [1712349616.542904]: Direct Instances: []\n", - "[INFO] [1712349616.543274]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712349616.543599]: -------------------\n", - "[INFO] [1712349616.543919]: SOMA.Sharpness \n", - "[INFO] [1712349616.544233]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349616.544588]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic, SOMA.Sharpness}\n", - "[INFO] [1712349616.544924]: Subclasses: []\n", - "[INFO] [1712349616.545317]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.545895]: Instances: []\n", - "[INFO] [1712349616.546240]: Direct Instances: []\n", - "[INFO] [1712349616.546567]: Inverse Restrictions: []\n", - "[INFO] [1712349616.546885]: -------------------\n", - "[INFO] [1712349616.547196]: SOMA.Simulating \n", - "[INFO] [1712349616.547519]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712349616.547861]: Ancestors: {SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing, SOMA.Simulating, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.548183]: Subclasses: []\n", - "[INFO] [1712349616.548547]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.549140]: Instances: []\n", - "[INFO] [1712349616.549523]: Direct Instances: []\n", - "[INFO] [1712349616.549859]: Inverse Restrictions: []\n", - "[INFO] [1712349616.550177]: -------------------\n", - "[INFO] [1712349616.550496]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712349616.550823]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712349616.551176]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.Simulation_Reasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349616.551502]: Subclasses: []\n", - "[INFO] [1712349616.551867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.552423]: Instances: []\n", - "[INFO] [1712349616.552782]: Direct Instances: []\n", - "[INFO] [1712349616.553122]: Inverse Restrictions: []\n", - "[INFO] [1712349616.553444]: -------------------\n", - "[INFO] [1712349616.553761]: SOMA.Sink \n", - "[INFO] [1712349616.554074]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349616.554423]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, SOMA.Sink, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.554766]: Subclasses: []\n", - "[INFO] [1712349616.555137]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.555916]: Instances: []\n", - "[INFO] [1712349616.556300]: Direct Instances: []\n", - "[INFO] [1712349616.556638]: Inverse Restrictions: []\n", - "[INFO] [1712349616.557038]: -------------------\n", - "[INFO] [1712349616.557395]: SOMA.Size \n", - "[INFO] [1712349616.557704]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349616.558009]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic, SOMA.Size}\n", - "[INFO] [1712349616.558285]: Subclasses: []\n", - "[INFO] [1712349616.558590]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.559085]: Instances: []\n", - "[INFO] [1712349616.559361]: Direct Instances: []\n", - "[INFO] [1712349616.559618]: Inverse Restrictions: []\n", - "[INFO] [1712349616.559864]: -------------------\n", - "[INFO] [1712349616.560101]: SOMA.Slicing \n", - "[INFO] [1712349616.560335]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712349616.560605]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, SOMA.Slicing, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.560886]: Subclasses: []\n", - "[INFO] [1712349616.561181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.561663]: Instances: []\n", - "[INFO] [1712349616.561919]: Direct Instances: []\n", - "[INFO] [1712349616.562163]: Inverse Restrictions: []\n", - "[INFO] [1712349616.562417]: -------------------\n", - "[INFO] [1712349616.562662]: SOMA.Sluggishness \n", - "[INFO] [1712349616.562895]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712349616.563159]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, SOMA.Sluggishness, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.563398]: Subclasses: []\n", - "[INFO] [1712349616.563684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.564173]: Instances: []\n", - "[INFO] [1712349616.564430]: Direct Instances: []\n", - "[INFO] [1712349616.564675]: Inverse Restrictions: []\n", - "[INFO] [1712349616.564925]: -------------------\n", - "[INFO] [1712349616.565170]: SOMA.SocialState \n", - "[INFO] [1712349616.565433]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712349616.565696]: Ancestors: {SOMA.SocialState, DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", - "[INFO] [1712349616.565956]: Subclasses: []\n", - "[INFO] [1712349616.566276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349616.566772]: Instances: []\n", - "[INFO] [1712349616.567032]: Direct Instances: []\n", - "[INFO] [1712349616.567275]: Inverse Restrictions: []\n", - "[INFO] [1712349616.567524]: -------------------\n", - "[INFO] [1712349616.567766]: SOMA.Sofa \n", - "[INFO] [1712349616.568002]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712349616.568263]: Ancestors: {SOMA.Sofa, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.568501]: Subclasses: []\n", - "[INFO] [1712349616.568791]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", - "[INFO] [1712349616.569291]: Instances: []\n", - "[INFO] [1712349616.569556]: Direct Instances: []\n", - "[INFO] [1712349616.569806]: Inverse Restrictions: []\n", - "[INFO] [1712349616.570046]: -------------------\n", - "[INFO] [1712349616.570283]: SOMA.Software_Configuration \n", - "[INFO] [1712349616.570525]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712349616.570816]: Ancestors: {DUL.SocialObject, DUL.Configuration, DUL.Object, DUL.Collection, DUL.Entity, owl.Thing, SOMA.Software_Configuration}\n", - "[INFO] [1712349616.571070]: Subclasses: []\n", - "[INFO] [1712349616.571362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.isDescribedBy]\n", - "[INFO] [1712349616.571846]: Instances: []\n", - "[INFO] [1712349616.572117]: Direct Instances: []\n", - "[INFO] [1712349616.572465]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712349616.572711]: -------------------\n", - "[INFO] [1712349616.572954]: SOMA.SoftwareLibrary \n", - "[INFO] [1712349616.573189]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712349616.573450]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.SoftwareLibrary, SOMA.Software}\n", - "[INFO] [1712349616.573708]: Subclasses: []\n", - "[INFO] [1712349616.574000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.574482]: Instances: []\n", - "[INFO] [1712349616.574752]: Direct Instances: []\n", - "[INFO] [1712349616.575007]: Inverse Restrictions: []\n", - "[INFO] [1712349616.575247]: -------------------\n", - "[INFO] [1712349616.575483]: SOMA.SoupPot \n", - "[INFO] [1712349616.575711]: Super classes: [SOMA.Pot]\n", - "[INFO] [1712349616.575976]: Ancestors: {SOMA.Crockery, SOMA.Pot, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.SoupPot, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.576236]: Subclasses: []\n", - "[INFO] [1712349616.576530]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.577021]: Instances: []\n", - "[INFO] [1712349616.577296]: Direct Instances: []\n", - "[INFO] [1712349616.577550]: Inverse Restrictions: []\n", - "[INFO] [1712349616.577788]: -------------------\n", - "[INFO] [1712349616.578023]: SOMA.SourceMaterialRole \n", - "[INFO] [1712349616.578254]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712349616.578513]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResourceRole, SOMA.SourceMaterialRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.578772]: Subclasses: []\n", - "[INFO] [1712349616.579063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.579546]: Instances: []\n", - "[INFO] [1712349616.579801]: Direct Instances: []\n", - "[INFO] [1712349616.580042]: Inverse Restrictions: []\n", - "[INFO] [1712349616.580284]: -------------------\n", - "[INFO] [1712349616.580527]: SOMA.Spatula \n", - "[INFO] [1712349616.580767]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", - "[INFO] [1712349616.581171]: Ancestors: {SOMA.Tableware, DUL.Object, SOMA.DesignedTool, SOMA.Spatula, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.581470]: Subclasses: []\n", - "[INFO] [1712349616.581795]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.582300]: Instances: []\n", - "[INFO] [1712349616.582616]: Direct Instances: []\n", - "[INFO] [1712349616.582882]: Inverse Restrictions: []\n", - "[INFO] [1712349616.583129]: -------------------\n", - "[INFO] [1712349616.583367]: SOMA.SphereShape \n", - "[INFO] [1712349616.583626]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712349616.583910]: Ancestors: {SOMA.SphereShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349616.584167]: Subclasses: []\n", - "[INFO] [1712349616.584463]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712349616.584955]: Instances: []\n", - "[INFO] [1712349616.585223]: Direct Instances: []\n", - "[INFO] [1712349616.585485]: Inverse Restrictions: []\n", - "[INFO] [1712349616.585729]: -------------------\n", - "[INFO] [1712349616.585970]: SOMA.Spoon \n", - "[INFO] [1712349616.586630]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712349616.586929]: Ancestors: {SOMA.Spoon, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.587191]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", - "[INFO] [1712349616.587483]: Properties: [SOMA.hasPhysicalComponent, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.587973]: Instances: []\n", - "[INFO] [1712349616.588243]: Direct Instances: []\n", - "[INFO] [1712349616.588499]: Inverse Restrictions: []\n", - "[INFO] [1712349616.588738]: -------------------\n", - "[INFO] [1712349616.588980]: SOMA.Standing \n", - "[INFO] [1712349616.589214]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712349616.589497]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.Standing}\n", - "[INFO] [1712349616.589749]: Subclasses: []\n", - "[INFO] [1712349616.590036]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.590508]: Instances: []\n", - "[INFO] [1712349616.590779]: Direct Instances: []\n", - "[INFO] [1712349616.591036]: Inverse Restrictions: []\n", - "[INFO] [1712349616.591278]: -------------------\n", - "[INFO] [1712349616.591513]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712349616.591744]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712349616.592002]: Ancestors: {SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.StaticFrictionAttribute, owl.Thing}\n", - "[INFO] [1712349616.592261]: Subclasses: []\n", - "[INFO] [1712349616.592551]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.593039]: Instances: []\n", - "[INFO] [1712349616.593294]: Direct Instances: []\n", - "[INFO] [1712349616.593542]: Inverse Restrictions: []\n", - "[INFO] [1712349616.593789]: -------------------\n", - "[INFO] [1712349616.594028]: SOMA.Status \n", - "[INFO] [1712349616.594263]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712349616.594521]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, SOMA.Status, owl.Thing}\n", - "[INFO] [1712349616.594773]: Subclasses: []\n", - "[INFO] [1712349616.595058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.595536]: Instances: []\n", - "[INFO] [1712349616.595784]: Direct Instances: []\n", - "[INFO] [1712349616.596047]: Inverse Restrictions: []\n", - "[INFO] [1712349616.596298]: -------------------\n", - "[INFO] [1712349616.596540]: SOMA.StatusFailure \n", - "[INFO] [1712349616.596777]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349616.597034]: Ancestors: {DUL.Region, DUL.Entity, SOMA.StatusFailure, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.597270]: Subclasses: []\n", - "[INFO] [1712349616.597545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.598130]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712349616.598409]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712349616.598664]: Inverse Restrictions: []\n", - "[INFO] [1712349616.598911]: -------------------\n", - "[INFO] [1712349616.599159]: SOMA.StimulusRole \n", - "[INFO] [1712349616.599423]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712349616.599687]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.StimulusRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.599927]: Subclasses: []\n", - "[INFO] [1712349616.600209]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.600702]: Instances: []\n", - "[INFO] [1712349616.600967]: Direct Instances: []\n", - "[INFO] [1712349616.601213]: Inverse Restrictions: []\n", - "[INFO] [1712349616.601451]: -------------------\n", - "[INFO] [1712349616.601681]: SOMA.Stirring \n", - "[INFO] [1712349616.601933]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712349616.602203]: Ancestors: {SOMA.Mixing, DUL.Task, SOMA.Stirring, SOMA.PhysicalTask, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.602447]: Subclasses: []\n", - "[INFO] [1712349616.602734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349616.603224]: Instances: []\n", - "[INFO] [1712349616.603482]: Direct Instances: []\n", - "[INFO] [1712349616.603726]: Inverse Restrictions: []\n", - "[INFO] [1712349616.603959]: -------------------\n", - "[INFO] [1712349616.604190]: SOMA.Storage \n", - "[INFO] [1712349616.604421]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712349616.604694]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Storage, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349616.605027]: Subclasses: []\n", - "[INFO] [1712349616.605406]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.605929]: Instances: []\n", - "[INFO] [1712349616.606215]: Direct Instances: []\n", - "[INFO] [1712349616.606485]: Inverse Restrictions: []\n", - "[INFO] [1712349616.606734]: -------------------\n", - "[INFO] [1712349616.606974]: SOMA.Stove \n", - "[INFO] [1712349616.607220]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", - "[INFO] [1712349616.607494]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Stove}\n", - "[INFO] [1712349616.607739]: Subclasses: []\n", - "[INFO] [1712349616.608021]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.608493]: Instances: []\n", - "[INFO] [1712349616.608761]: Direct Instances: []\n", - "[INFO] [1712349616.609019]: Inverse Restrictions: []\n", - "[INFO] [1712349616.609259]: -------------------\n", - "[INFO] [1712349616.609492]: SOMA.StructuralDesign \n", - "[INFO] [1712349616.609723]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712349616.609985]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.StructuralDesign, owl.Thing}\n", - "[INFO] [1712349616.610243]: Subclasses: []\n", - "[INFO] [1712349616.610537]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.611020]: Instances: []\n", - "[INFO] [1712349616.611289]: Direct Instances: []\n", - "[INFO] [1712349616.611545]: Inverse Restrictions: []\n", - "[INFO] [1712349616.611784]: -------------------\n", - "[INFO] [1712349616.612024]: SOMA.TaskInvocation \n", - "[INFO] [1712349616.612281]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712349616.612567]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.TaskInvocation, DUL.Workflow, DUL.Plan, owl.Thing}\n", - "[INFO] [1712349616.612821]: Subclasses: []\n", - "[INFO] [1712349616.613114]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesTask, rdf-schema.label]\n", - "[INFO] [1712349616.613593]: Instances: []\n", - "[INFO] [1712349616.613864]: Direct Instances: []\n", - "[INFO] [1712349616.614182]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712349616.614424]: -------------------\n", - "[INFO] [1712349616.614663]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712349616.614896]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712349616.615153]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.615406]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712349616.615695]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.616186]: Instances: []\n", - "[INFO] [1712349616.616469]: Direct Instances: []\n", - "[INFO] [1712349616.616727]: Inverse Restrictions: []\n", - "[INFO] [1712349616.616970]: -------------------\n", - "[INFO] [1712349616.617206]: SOMA.Successfulness \n", - "[INFO] [1712349616.617438]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712349616.617700]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, SOMA.Successfulness, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.617954]: Subclasses: []\n", - "[INFO] [1712349616.618251]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.618732]: Instances: []\n", - "[INFO] [1712349616.618980]: Direct Instances: []\n", - "[INFO] [1712349616.619230]: Inverse Restrictions: []\n", - "[INFO] [1712349616.619466]: -------------------\n", - "[INFO] [1712349616.619697]: SOMA.SugarDispenser \n", - "[INFO] [1712349616.619925]: Super classes: [SOMA.Dispenser]\n", - "[INFO] [1712349616.620185]: Ancestors: {SOMA.SugarDispenser, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Dispenser}\n", - "[INFO] [1712349616.620435]: Subclasses: []\n", - "[INFO] [1712349616.620721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.621203]: Instances: []\n", - "[INFO] [1712349616.621474]: Direct Instances: []\n", - "[INFO] [1712349616.621920]: Inverse Restrictions: []\n", - "[INFO] [1712349616.622279]: -------------------\n", - "[INFO] [1712349616.622628]: SOMA.SupportState \n", - "[INFO] [1712349616.623737]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712349616.624144]: Ancestors: {SOMA.SupportState, SOMA.StateType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.FunctionalControl, owl.Thing}\n", - "[INFO] [1712349616.624506]: Subclasses: []\n", - "[INFO] [1712349616.624920]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349616.625509]: Instances: []\n", - "[INFO] [1712349616.625861]: Direct Instances: []\n", - "[INFO] [1712349616.626212]: Inverse Restrictions: []\n", - "[INFO] [1712349616.626556]: -------------------\n", - "[INFO] [1712349616.626889]: SOMA.Supporter \n", - "[INFO] [1712349616.627213]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712349616.627569]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, SOMA.Supporter, DUL.Role}\n", - "[INFO] [1712349616.627924]: Subclasses: []\n", - "[INFO] [1712349616.628307]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.628916]: Instances: []\n", - "[INFO] [1712349616.629339]: Direct Instances: []\n", - "[INFO] [1712349616.629757]: Inverse Restrictions: []\n", - "[INFO] [1712349616.630105]: -------------------\n", - "[INFO] [1712349616.630445]: SOMA.SupportTheory \n", - "[INFO] [1712349616.630779]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712349616.631142]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SupportTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349616.631498]: Subclasses: []\n", - "[INFO] [1712349616.631899]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.632651]: Instances: []\n", - "[INFO] [1712349616.633040]: Direct Instances: []\n", - "[INFO] [1712349616.633388]: Inverse Restrictions: []\n", - "[INFO] [1712349616.633737]: -------------------\n", - "[INFO] [1712349616.634073]: SOMA.SupportedObject \n", - "[INFO] [1712349616.634398]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712349616.634747]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, SOMA.SupportedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.635073]: Subclasses: []\n", - "[INFO] [1712349616.635483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.636059]: Instances: []\n", - "[INFO] [1712349616.636403]: Direct Instances: []\n", - "[INFO] [1712349616.636731]: Inverse Restrictions: []\n", - "[INFO] [1712349616.637145]: -------------------\n", - "[INFO] [1712349616.637465]: SOMA.SymbolicReasoner \n", - "[INFO] [1712349616.637743]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712349616.638049]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.SymbolicReasoner, DUL.Entity, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349616.638334]: Subclasses: []\n", - "[INFO] [1712349616.638654]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.639155]: Instances: []\n", - "[INFO] [1712349616.639418]: Direct Instances: []\n", - "[INFO] [1712349616.639669]: Inverse Restrictions: []\n", - "[INFO] [1712349616.639905]: -------------------\n", - "[INFO] [1712349616.640159]: SOMA.TableFork \n", - "[INFO] [1712349616.640403]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712349616.640676]: Ancestors: {SOMA.Tableware, SOMA.Fork, SOMA.TableFork, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.640929]: Subclasses: []\n", - "[INFO] [1712349616.641284]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.641795]: Instances: []\n", - "[INFO] [1712349616.642064]: Direct Instances: []\n", - "[INFO] [1712349616.642322]: Inverse Restrictions: []\n", - "[INFO] [1712349616.642567]: -------------------\n", - "[INFO] [1712349616.642813]: SOMA.TableKnife \n", - "[INFO] [1712349616.643052]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712349616.643323]: Ancestors: {SOMA.TableKnife, SOMA.Knife, SOMA.CuttingTool, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.KitchenKnife}\n", - "[INFO] [1712349616.643585]: Subclasses: []\n", - "[INFO] [1712349616.643877]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.644358]: Instances: []\n", - "[INFO] [1712349616.644617]: Direct Instances: []\n", - "[INFO] [1712349616.644876]: Inverse Restrictions: []\n", - "[INFO] [1712349616.645130]: -------------------\n", - "[INFO] [1712349616.645373]: SOMA.TableSpoon \n", - "[INFO] [1712349616.645610]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712349616.645875]: Ancestors: {SOMA.Spoon, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, SOMA.TableSpoon, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.646135]: Subclasses: []\n", - "[INFO] [1712349616.646434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.646921]: Instances: []\n", - "[INFO] [1712349616.647175]: Direct Instances: []\n", - "[INFO] [1712349616.647419]: Inverse Restrictions: []\n", - "[INFO] [1712349616.647666]: -------------------\n", - "[INFO] [1712349616.647905]: SOMA.TeaSpoon \n", - "[INFO] [1712349616.648135]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712349616.648393]: Ancestors: {SOMA.Spoon, SOMA.Tableware, DUL.Object, SOMA.TeaSpoon, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.648650]: Subclasses: []\n", - "[INFO] [1712349616.648947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.649426]: Instances: []\n", - "[INFO] [1712349616.649675]: Direct Instances: []\n", - "[INFO] [1712349616.649922]: Inverse Restrictions: []\n", - "[INFO] [1712349616.650167]: -------------------\n", - "[INFO] [1712349616.650401]: SOMA.Tap \n", - "[INFO] [1712349616.650633]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712349616.650896]: Ancestors: {SOMA.FunctionalPart, SOMA.Tap, SOMA.DesignedComponent, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.651157]: Subclasses: []\n", - "[INFO] [1712349616.651448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.651929]: Instances: []\n", - "[INFO] [1712349616.652182]: Direct Instances: []\n", - "[INFO] [1712349616.652422]: Inverse Restrictions: []\n", - "[INFO] [1712349616.652662]: -------------------\n", - "[INFO] [1712349616.652927]: SOMA.Tapping \n", - "[INFO] [1712349616.653249]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712349616.653544]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion, SOMA.Tapping}\n", - "[INFO] [1712349616.653808]: Subclasses: []\n", - "[INFO] [1712349616.654099]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.654588]: Instances: []\n", - "[INFO] [1712349616.654839]: Direct Instances: []\n", - "[INFO] [1712349616.655092]: Inverse Restrictions: []\n", - "[INFO] [1712349616.655333]: -------------------\n", - "[INFO] [1712349616.655569]: SOMA.Taxis \n", - "[INFO] [1712349616.655801]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712349616.656073]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.Taxis}\n", - "[INFO] [1712349616.656316]: Subclasses: []\n", - "[INFO] [1712349616.656598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.657102]: Instances: []\n", - "[INFO] [1712349616.657377]: Direct Instances: []\n", - "[INFO] [1712349616.657630]: Inverse Restrictions: []\n", - "[INFO] [1712349616.657872]: -------------------\n", - "[INFO] [1712349616.658107]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712349616.658362]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712349616.658632]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349616.658888]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712349616.659178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", - "[INFO] [1712349616.659671]: Instances: []\n", - "[INFO] [1712349616.659943]: Direct Instances: []\n", - "[INFO] [1712349616.660203]: Inverse Restrictions: []\n", - "[INFO] [1712349616.660442]: -------------------\n", - "[INFO] [1712349616.660677]: SOMA.Temperature \n", - "[INFO] [1712349616.660953]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712349616.661239]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Temperature, SOMA.Intrinsic}\n", - "[INFO] [1712349616.661494]: Subclasses: []\n", - "[INFO] [1712349616.661786]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.662267]: Instances: []\n", - "[INFO] [1712349616.662534]: Direct Instances: []\n", - "[INFO] [1712349616.663203]: Inverse Restrictions: []\n", - "[INFO] [1712349616.663465]: -------------------\n", - "[INFO] [1712349616.663711]: SOMA.TemperatureRegion \n", - "[INFO] [1712349616.663951]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349616.664212]: Ancestors: {SOMA.TemperatureRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.664475]: Subclasses: []\n", - "[INFO] [1712349616.664771]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.665350]: Instances: []\n", - "[INFO] [1712349616.665637]: Direct Instances: []\n", - "[INFO] [1712349616.665963]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712349616.666217]: -------------------\n", - "[INFO] [1712349616.666461]: SOMA.Tempering \n", - "[INFO] [1712349616.666724]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712349616.666981]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Tempering, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349616.667244]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712349616.667539]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.668024]: Instances: []\n", - "[INFO] [1712349616.668289]: Direct Instances: []\n", - "[INFO] [1712349616.668543]: Inverse Restrictions: []\n", - "[INFO] [1712349616.668785]: -------------------\n", - "[INFO] [1712349616.669132]: SOMA.TemperingByCooling \n", - "[INFO] [1712349616.669398]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712349616.669687]: Ancestors: {SOMA.PhysicalQuality, SOMA.TemperingByCooling, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Tempering, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349616.669947]: Subclasses: []\n", - "[INFO] [1712349616.670273]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.670773]: Instances: []\n", - "[INFO] [1712349616.671040]: Direct Instances: []\n", - "[INFO] [1712349616.671292]: Inverse Restrictions: []\n", - "[INFO] [1712349616.671528]: -------------------\n", - "[INFO] [1712349616.671762]: SOMA.ThinkAloud \n", - "[INFO] [1712349616.672006]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712349616.672269]: Ancestors: {SOMA.ThinkAloud, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing, SOMA.CommunicationReport}\n", - "[INFO] [1712349616.672510]: Subclasses: []\n", - "[INFO] [1712349616.672793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.673286]: Instances: []\n", - "[INFO] [1712349616.673543]: Direct Instances: []\n", - "[INFO] [1712349616.673788]: Inverse Restrictions: []\n", - "[INFO] [1712349616.674020]: -------------------\n", - "[INFO] [1712349616.674249]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712349616.674488]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349616.674754]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, SOMA.ThinkAloudActionTopic, DUL.Role}\n", - "[INFO] [1712349616.674992]: Subclasses: []\n", - "[INFO] [1712349616.675272]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.675760]: Instances: []\n", - "[INFO] [1712349616.676012]: Direct Instances: []\n", - "[INFO] [1712349616.676253]: Inverse Restrictions: []\n", - "[INFO] [1712349616.676484]: -------------------\n", - "[INFO] [1712349616.676709]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712349616.676954]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712349616.677237]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.677482]: Subclasses: []\n", - "[INFO] [1712349616.677764]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.678236]: Instances: []\n", - "[INFO] [1712349616.678500]: Direct Instances: []\n", - "[INFO] [1712349616.678746]: Inverse Restrictions: []\n", - "[INFO] [1712349616.678980]: -------------------\n", - "[INFO] [1712349616.679211]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712349616.679438]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349616.679684]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.679938]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712349616.680226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.680707]: Instances: []\n", - "[INFO] [1712349616.680981]: Direct Instances: []\n", - "[INFO] [1712349616.681327]: Inverse Restrictions: []\n", - "[INFO] [1712349616.681601]: -------------------\n", - "[INFO] [1712349616.682045]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712349616.682400]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349616.682786]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.683131]: Subclasses: []\n", - "[INFO] [1712349616.683516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.684087]: Instances: []\n", - "[INFO] [1712349616.684427]: Direct Instances: []\n", - "[INFO] [1712349616.684770]: Inverse Restrictions: []\n", - "[INFO] [1712349616.685111]: -------------------\n", - "[INFO] [1712349616.685439]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712349616.685755]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349616.686108]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudOpinionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.686448]: Subclasses: []\n", - "[INFO] [1712349616.686823]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.687388]: Instances: []\n", - "[INFO] [1712349616.687735]: Direct Instances: []\n", - "[INFO] [1712349616.688073]: Inverse Restrictions: []\n", - "[INFO] [1712349616.688396]: -------------------\n", - "[INFO] [1712349616.688718]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712349616.689109]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349616.689457]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudPerceptionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.689739]: Subclasses: []\n", - "[INFO] [1712349616.690048]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.690538]: Instances: []\n", - "[INFO] [1712349616.690800]: Direct Instances: []\n", - "[INFO] [1712349616.691052]: Inverse Restrictions: []\n", - "[INFO] [1712349616.691302]: -------------------\n", - "[INFO] [1712349616.691541]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712349616.691778]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349616.692043]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.ThinkAloudPlanTopic, SOMA.CommunicationTopic, DUL.Object, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.692303]: Subclasses: []\n", - "[INFO] [1712349616.692598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.693086]: Instances: []\n", - "[INFO] [1712349616.693345]: Direct Instances: []\n", - "[INFO] [1712349616.693604]: Inverse Restrictions: []\n", - "[INFO] [1712349616.693845]: -------------------\n", - "[INFO] [1712349616.694088]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712349616.694322]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712349616.694584]: Ancestors: {SOMA.ThinkAloudSceneKnowledgeTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.694845]: Subclasses: []\n", - "[INFO] [1712349616.695139]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.695620]: Instances: []\n", - "[INFO] [1712349616.695877]: Direct Instances: []\n", - "[INFO] [1712349616.696133]: Inverse Restrictions: []\n", - "[INFO] [1712349616.696375]: -------------------\n", - "[INFO] [1712349616.696612]: SOMA.Threshold \n", - "[INFO] [1712349616.696851]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712349616.697112]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, owl.Thing, SOMA.Threshold}\n", - "[INFO] [1712349616.697370]: Subclasses: []\n", - "[INFO] [1712349616.697658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.698136]: Instances: []\n", - "[INFO] [1712349616.698384]: Direct Instances: []\n", - "[INFO] [1712349616.698634]: Inverse Restrictions: []\n", - "[INFO] [1712349616.698878]: -------------------\n", - "[INFO] [1712349616.699116]: SOMA.Throwing \n", - "[INFO] [1712349616.699350]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712349616.699611]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Throwing, SOMA.Actuating}\n", - "[INFO] [1712349616.699852]: Subclasses: []\n", - "[INFO] [1712349616.700139]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.700613]: Instances: []\n", - "[INFO] [1712349616.700865]: Direct Instances: []\n", - "[INFO] [1712349616.701105]: Inverse Restrictions: []\n", - "[INFO] [1712349616.701338]: -------------------\n", - "[INFO] [1712349616.701584]: SOMA.TimeRole \n", - "[INFO] [1712349616.701824]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712349616.702088]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.TimeRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.702326]: Subclasses: []\n", - "[INFO] [1712349616.702606]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.703102]: Instances: []\n", - "[INFO] [1712349616.703366]: Direct Instances: []\n", - "[INFO] [1712349616.703615]: Inverse Restrictions: []\n", - "[INFO] [1712349616.703847]: -------------------\n", - "[INFO] [1712349616.704090]: SOMA.Transporting \n", - "[INFO] [1712349616.704334]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712349616.704598]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Transporting, owl.Thing}\n", - "[INFO] [1712349616.704842]: Subclasses: []\n", - "[INFO] [1712349616.705127]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.705626]: Instances: []\n", - "[INFO] [1712349616.705898]: Direct Instances: []\n", - "[INFO] [1712349616.706150]: Inverse Restrictions: []\n", - "[INFO] [1712349616.706385]: -------------------\n", - "[INFO] [1712349616.706620]: SOMA.TrashContainer \n", - "[INFO] [1712349616.706862]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712349616.707131]: Ancestors: {DUL.Object, SOMA.TrashContainer, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.707377]: Subclasses: []\n", - "[INFO] [1712349616.707656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.708151]: Instances: []\n", - "[INFO] [1712349616.708413]: Direct Instances: []\n", - "[INFO] [1712349616.708660]: Inverse Restrictions: []\n", - "[INFO] [1712349616.708899]: -------------------\n", - "[INFO] [1712349616.709135]: SOMA.Triplestore \n", - "[INFO] [1712349616.709368]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712349616.709629]: Ancestors: {SOMA.SoftwareRole, SOMA.GraphDatabase, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.Triplestore, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", - "[INFO] [1712349616.709886]: Subclasses: []\n", - "[INFO] [1712349616.710179]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.710659]: Instances: []\n", - "[INFO] [1712349616.710932]: Direct Instances: []\n", - "[INFO] [1712349616.711189]: Inverse Restrictions: []\n", - "[INFO] [1712349616.711426]: -------------------\n", - "[INFO] [1712349616.711660]: SOMA.Turning \n", - "[INFO] [1712349616.711893]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712349616.712159]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.Turning, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.712414]: Subclasses: []\n", - "[INFO] [1712349616.712699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.713178]: Instances: []\n", - "[INFO] [1712349616.713443]: Direct Instances: []\n", - "[INFO] [1712349616.713695]: Inverse Restrictions: []\n", - "[INFO] [1712349616.713933]: -------------------\n", - "[INFO] [1712349616.714165]: SOMA.UnavailableSoftware \n", - "[INFO] [1712349616.714396]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712349616.714674]: Ancestors: {DUL.Description, SOMA.UnavailableSoftware, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349616.714926]: Subclasses: []\n", - "[INFO] [1712349616.715216]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.715703]: Instances: []\n", - "[INFO] [1712349616.715966]: Direct Instances: []\n", - "[INFO] [1712349616.716214]: Inverse Restrictions: []\n", - "[INFO] [1712349616.716450]: -------------------\n", - "[INFO] [1712349616.716691]: SOMA.Unsuccessfulness \n", - "[INFO] [1712349616.716939]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712349616.717196]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.717445]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712349616.717725]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.718226]: Instances: []\n", - "[INFO] [1712349616.718488]: Direct Instances: []\n", - "[INFO] [1712349616.718742]: Inverse Restrictions: []\n", - "[INFO] [1712349616.718980]: -------------------\n", - "[INFO] [1712349616.719213]: SOMA.VideoData \n", - "[INFO] [1712349616.719443]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712349616.719714]: Ancestors: {DUL.InformationObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.VideoData}\n", - "[INFO] [1712349616.719957]: Subclasses: []\n", - "[INFO] [1712349616.720240]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.720715]: Instances: []\n", - "[INFO] [1712349616.720970]: Direct Instances: []\n", - "[INFO] [1712349616.721223]: Inverse Restrictions: []\n", - "[INFO] [1712349616.721463]: -------------------\n", - "[INFO] [1712349616.721698]: SOMA.Wardrobe \n", - "[INFO] [1712349616.721927]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712349616.722186]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject, SOMA.Wardrobe, SOMA.Cupboard}\n", - "[INFO] [1712349616.722445]: Subclasses: []\n", - "[INFO] [1712349616.722735]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.723215]: Instances: []\n", - "[INFO] [1712349616.723465]: Direct Instances: []\n", - "[INFO] [1712349616.723704]: Inverse Restrictions: []\n", - "[INFO] [1712349616.723948]: -------------------\n", - "[INFO] [1712349616.724184]: SOMA.WaterBottle \n", - "[INFO] [1712349616.724415]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712349616.724670]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Bottle, owl.Thing, SOMA.WaterBottle, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.724930]: Subclasses: []\n", - "[INFO] [1712349616.725216]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.725696]: Instances: []\n", - "[INFO] [1712349616.725966]: Direct Instances: []\n", - "[INFO] [1712349616.726218]: Inverse Restrictions: []\n", - "[INFO] [1712349616.726468]: -------------------\n", - "[INFO] [1712349616.726708]: SOMA.WaterGlass \n", - "[INFO] [1712349616.726934]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712349616.727210]: Ancestors: {SOMA.Crockery, SOMA.Tableware, DUL.Object, SOMA.Glass, SOMA.DesignedTool, SOMA.WaterGlass, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.727467]: Subclasses: []\n", - "[INFO] [1712349616.727755]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.728236]: Instances: []\n", - "[INFO] [1712349616.728490]: Direct Instances: []\n", - "[INFO] [1712349616.728743]: Inverse Restrictions: []\n", - "[INFO] [1712349616.729060]: -------------------\n", - "[INFO] [1712349616.729331]: SOMA.WineBottle \n", - "[INFO] [1712349616.729571]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712349616.729832]: Ancestors: {SOMA.WineBottle, DUL.Object, DUL.Entity, SOMA.Bottle, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.730088]: Subclasses: []\n", - "[INFO] [1712349616.730375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.730854]: Instances: []\n", - "[INFO] [1712349616.731107]: Direct Instances: []\n", - "[INFO] [1712349616.731347]: Inverse Restrictions: []\n", - "[INFO] [1712349616.731587]: -------------------\n", - "[INFO] [1712349616.731828]: SOMA.WineGlass \n", - "[INFO] [1712349616.732063]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712349616.732324]: Ancestors: {SOMA.Crockery, SOMA.WineGlass, SOMA.Tableware, DUL.Object, SOMA.Glass, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.732560]: Subclasses: []\n", - "[INFO] [1712349616.732854]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.733334]: Instances: []\n", - "[INFO] [1712349616.733588]: Direct Instances: []\n", - "[INFO] [1712349616.733826]: Inverse Restrictions: []\n", - "[INFO] [1712349616.734056]: -------------------\n", - "[INFO] [1712349616.734286]: SOMA.3DPosition \n", - "[INFO] [1712349616.734555]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712349616.734824]: Ancestors: {DUL.SpaceRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.3DPosition}\n", - "[INFO] [1712349616.735067]: Subclasses: []\n", - "[INFO] [1712349616.735368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", - "[INFO] [1712349616.735852]: Instances: []\n", - "[INFO] [1712349616.736103]: Direct Instances: []\n", - "[INFO] [1712349616.736339]: Inverse Restrictions: []\n", - "[INFO] [1712349616.736578]: -------------------\n", - "[INFO] [1712349616.736816]: SOMA.Affordance \n", - "[INFO] [1712349616.737063]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712349616.737306]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Affordance, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349616.737564]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712349616.737863]: Properties: [rdf-schema.comment, SOMA.definesTrigger, SOMA.definesBearer, DUL.definesTask, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.738349]: Instances: []\n", - "[INFO] [1712349616.738616]: Direct Instances: []\n", - "[INFO] [1712349616.738992]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712349616.739231]: -------------------\n", - "[INFO] [1712349616.739464]: SOMA.Disposition \n", - "[INFO] [1712349616.739717]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712349616.739976]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349616.740246]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712349616.740537]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712349616.741073]: Instances: []\n", - "[INFO] [1712349616.741347]: Direct Instances: []\n", - "[INFO] [1712349616.741657]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712349616.741904]: -------------------\n", - "[INFO] [1712349616.742138]: SOMA.Setpoint \n", - "[INFO] [1712349616.742373]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712349616.742624]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, SOMA.Setpoint, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.742871]: Subclasses: []\n", - "[INFO] [1712349616.743152]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.743631]: Instances: []\n", - "[INFO] [1712349616.743901]: Direct Instances: []\n", - "[INFO] [1712349616.744156]: Inverse Restrictions: []\n", - "[INFO] [1712349616.744396]: -------------------\n", - "[INFO] [1712349616.744629]: SOMA.Answer \n", - "[INFO] [1712349616.744864]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712349616.745107]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, DUL.Entity, owl.Thing, SOMA.Answer, SOMA.Message, SOMA.Item}\n", - "[INFO] [1712349616.745367]: Subclasses: []\n", - "[INFO] [1712349616.745662]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.746143]: Instances: []\n", - "[INFO] [1712349616.746397]: Direct Instances: []\n", - "[INFO] [1712349616.746680]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712349616.746933]: -------------------\n", - "[INFO] [1712349616.747180]: SOMA.Message \n", - "[INFO] [1712349616.747426]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712349616.747677]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Message, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349616.747923]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712349616.748225]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", - "[INFO] [1712349616.748715]: Instances: []\n", - "[INFO] [1712349616.748971]: Direct Instances: []\n", - "[INFO] [1712349616.749275]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349616.749526]: -------------------\n", - "[INFO] [1712349616.749766]: SOMA.ProcessType \n", - "[INFO] [1712349616.750012]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712349616.750255]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.750510]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712349616.750814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.751378]: Instances: []\n", - "[INFO] [1712349616.751652]: Direct Instances: []\n", - "[INFO] [1712349616.751984]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712349616.752231]: -------------------\n", - "[INFO] [1712349616.752469]: SOMA.OrderedElement \n", - "[INFO] [1712349616.752714]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712349616.752973]: Ancestors: {owl.Thing, SOMA.OrderedElement, SOMA.Singleton}\n", - "[INFO] [1712349616.753220]: Subclasses: []\n", - "[INFO] [1712349616.753518]: Properties: [rdf-schema.isDefinedBy, SOMA.isOrderedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.754016]: Instances: []\n", - "[INFO] [1712349616.754280]: Direct Instances: []\n", - "[INFO] [1712349616.754641]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712349616.754901]: -------------------\n", - "[INFO] [1712349616.755147]: SOMA.System \n", - "[INFO] [1712349616.755386]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712349616.755631]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.System}\n", - "[INFO] [1712349616.755888]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712349616.756179]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.756689]: Instances: []\n", - "[INFO] [1712349616.757279]: Direct Instances: []\n", - "[INFO] [1712349616.757614]: Inverse Restrictions: []\n", - "[INFO] [1712349616.757889]: -------------------\n", - "[INFO] [1712349616.758148]: SOMA.Binding \n", - "[INFO] [1712349616.758430]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712349616.758695]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349616.758956]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712349616.759274]: Properties: [rdf-schema.comment, Inverse(SOMA.hasBinding), SOMA.hasBindingFiller, SOMA.hasBindingRole, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.759779]: Instances: []\n", - "[INFO] [1712349616.760056]: Direct Instances: []\n", - "[INFO] [1712349616.760319]: Inverse Restrictions: []\n", - "[INFO] [1712349616.760566]: -------------------\n", - "[INFO] [1712349616.760809]: SOMA.Joint \n", - "[INFO] [1712349616.761154]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712349616.761434]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349616.761699]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712349616.762034]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasChildLink, SOMA.hasParentLink]\n", - "[INFO] [1712349616.762555]: Instances: []\n", - "[INFO] [1712349616.762832]: Direct Instances: []\n", - "[INFO] [1712349616.763092]: Inverse Restrictions: []\n", - "[INFO] [1712349616.763333]: -------------------\n", - "[INFO] [1712349616.763582]: SOMA.Color \n", - "[INFO] [1712349616.763830]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712349616.764076]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Color, owl.Thing, SOMA.Extrinsic}\n", - "[INFO] [1712349616.764316]: Subclasses: []\n", - "[INFO] [1712349616.764602]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.765097]: Instances: []\n", - "[INFO] [1712349616.765361]: Direct Instances: []\n", - "[INFO] [1712349616.765655]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712349616.765900]: -------------------\n", - "[INFO] [1712349616.766142]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712349616.766391]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349616.766643]: Ancestors: {SOMA.ExecutionStateRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.766886]: Subclasses: []\n", - "[INFO] [1712349616.767190]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.767724]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712349616.768009]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712349616.768268]: Inverse Restrictions: []\n", - "[INFO] [1712349616.768511]: -------------------\n", - "[INFO] [1712349616.768747]: SOMA.Feature \n", - "[INFO] [1712349616.769007]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712349616.769258]: Ancestors: {DUL.Object, owl.Thing, DUL.Entity, SOMA.Feature}\n", - "[INFO] [1712349616.769510]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712349616.770009]: Properties: [SOMA.isFeatureOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.770632]: Instances: []\n", - "[INFO] [1712349616.771009]: Direct Instances: []\n", - "[INFO] [1712349616.771412]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712349616.771782]: -------------------\n", - "[INFO] [1712349616.772140]: SOMA.FrictionAttribute \n", - "[INFO] [1712349616.772494]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712349616.772854]: Ancestors: {SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.773210]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712349616.773603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasFrictionValue, rdf-schema.label]\n", - "[INFO] [1712349616.774211]: Instances: []\n", - "[INFO] [1712349616.774585]: Direct Instances: []\n", - "[INFO] [1712349616.774944]: Inverse Restrictions: []\n", - "[INFO] [1712349616.775288]: -------------------\n", - "[INFO] [1712349616.775634]: SOMA.SituationTransition \n", - "[INFO] [1712349616.775990]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712349616.776343]: Ancestors: {DUL.Situation, SOMA.SituationTransition, DUL.Entity, owl.Thing, DUL.Transition}\n", - "[INFO] [1712349616.776698]: Subclasses: []\n", - "[INFO] [1712349616.777095]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.777683]: Instances: []\n", - "[INFO] [1712349616.778055]: Direct Instances: []\n", - "[INFO] [1712349616.779938]: Inverse Restrictions: []\n", - "[INFO] [1712349616.780320]: -------------------\n", - "[INFO] [1712349616.780674]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712349616.781025]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712349616.781372]: Ancestors: {SOMA.NonmanifestedSituation, owl.Thing, DUL.Situation, DUL.Entity}\n", - "[INFO] [1712349616.781715]: Subclasses: []\n", - "[INFO] [1712349616.782123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.782723]: Instances: []\n", - "[INFO] [1712349616.783091]: Direct Instances: []\n", - "[INFO] [1712349616.784553]: Inverse Restrictions: []\n", - "[INFO] [1712349616.784927]: -------------------\n", - "[INFO] [1712349616.785278]: SOMA.JointLimit \n", - "[INFO] [1712349616.785623]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712349616.785968]: Ancestors: {SOMA.JointLimit, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.786305]: Subclasses: []\n", - "[INFO] [1712349616.786685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.787281]: Instances: []\n", - "[INFO] [1712349616.787645]: Direct Instances: []\n", - "[INFO] [1712349616.788057]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712349616.788398]: -------------------\n", - "[INFO] [1712349616.788742]: SOMA.JointState \n", - "[INFO] [1712349616.789103]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712349616.789449]: Ancestors: {SOMA.JointState, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.789791]: Subclasses: []\n", - "[INFO] [1712349616.790182]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasJointPosition, rdf-schema.isDefinedBy, SOMA.hasJointVelocity]\n", - "[INFO] [1712349616.790785]: Instances: []\n", - "[INFO] [1712349616.791149]: Direct Instances: []\n", - "[INFO] [1712349616.791568]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712349616.791906]: -------------------\n", - "[INFO] [1712349616.792238]: SOMA.Localization \n", - "[INFO] [1712349616.792579]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712349616.792937]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Localization, SOMA.Extrinsic}\n", - "[INFO] [1712349616.793289]: Subclasses: []\n", - "[INFO] [1712349616.793678]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.794254]: Instances: []\n", - "[INFO] [1712349616.794626]: Direct Instances: []\n", - "[INFO] [1712349616.795840]: Inverse Restrictions: []\n", - "[INFO] [1712349616.796195]: -------------------\n", - "[INFO] [1712349616.796546]: SOMA.MassAttribute \n", - "[INFO] [1712349616.796893]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712349616.797238]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.MassAttribute, owl.Thing}\n", - "[INFO] [1712349616.797572]: Subclasses: []\n", - "[INFO] [1712349616.797953]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label]\n", - "[INFO] [1712349616.798555]: Instances: []\n", - "[INFO] [1712349616.798965]: Direct Instances: []\n", - "[INFO] [1712349616.799349]: Inverse Restrictions: []\n", - "[INFO] [1712349616.799697]: -------------------\n", - "[INFO] [1712349616.800029]: SOMA.NetForce \n", - "[INFO] [1712349616.800351]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712349616.800702]: Ancestors: {SOMA.ForceAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.NetForce, owl.Thing}\n", - "[INFO] [1712349616.801167]: Subclasses: []\n", - "[INFO] [1712349616.801605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.802162]: Instances: []\n", - "[INFO] [1712349616.802480]: Direct Instances: []\n", - "[INFO] [1712349616.802761]: Inverse Restrictions: []\n", - "[INFO] [1712349616.803034]: -------------------\n", - "[INFO] [1712349616.803281]: SOMA.Succedence \n", - "[INFO] [1712349616.803565]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712349616.803828]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Succedence, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349616.804079]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712349616.804382]: Properties: [rdf-schema.comment, Inverse(SOMA.hasSuccedence), SOMA.hasSuccessor, SOMA.hasPredecessor, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.804895]: Instances: []\n", - "[INFO] [1712349616.805166]: Direct Instances: []\n", - "[INFO] [1712349616.805424]: Inverse Restrictions: []\n", - "[INFO] [1712349616.805663]: -------------------\n", - "[INFO] [1712349616.805900]: SOMA.Preference \n", - "[INFO] [1712349616.806144]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712349616.806402]: Ancestors: {DUL.Quality, DUL.Entity, SOMA.Preference, SOMA.SocialQuality, owl.Thing}\n", - "[INFO] [1712349616.806654]: Subclasses: []\n", - "[INFO] [1712349616.806944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.807425]: Instances: []\n", - "[INFO] [1712349616.807699]: Direct Instances: []\n", - "[INFO] [1712349616.808077]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712349616.808325]: -------------------\n", - "[INFO] [1712349616.808561]: SOMA.Shape \n", - "[INFO] [1712349616.808808]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712349616.809148]: Ancestors: {SOMA.PhysicalQuality, SOMA.Shape, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712349616.809438]: Subclasses: []\n", - "[INFO] [1712349616.809752]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.810255]: Instances: []\n", - "[INFO] [1712349616.810527]: Direct Instances: []\n", - "[INFO] [1712349616.811648]: Inverse Restrictions: []\n", - "[INFO] [1712349616.811916]: -------------------\n", - "[INFO] [1712349616.812167]: SOMA.ShapeRegion \n", - "[INFO] [1712349616.812430]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712349616.812711]: Ancestors: {DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349616.812998]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712349616.813303]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.813815]: Instances: []\n", - "[INFO] [1712349616.814094]: Direct Instances: []\n", - "[INFO] [1712349616.814912]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712349616.815217]: -------------------\n", - "[INFO] [1712349616.815484]: SOMA.SoftwareInstance \n", - "[INFO] [1712349616.815750]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712349616.816011]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", - "[INFO] [1712349616.816262]: Subclasses: []\n", - "[INFO] [1712349616.816558]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isDesignedBy, DUL.actsFor, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.817079]: Instances: []\n", - "[INFO] [1712349616.817439]: Direct Instances: []\n", - "[INFO] [1712349616.817813]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712349616.818096]: -------------------\n", - "[INFO] [1712349616.818368]: SOMA.StateType \n", - "[INFO] [1712349616.818654]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712349616.818928]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.819205]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712349616.819514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.820035]: Instances: []\n", - "[INFO] [1712349616.820304]: Direct Instances: []\n", - "[INFO] [1712349616.820628]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712349616.820878]: -------------------\n", - "[INFO] [1712349616.821130]: SOMA.PhysicalEffector \n", - "[INFO] [1712349616.821389]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712349616.821646]: Ancestors: {SOMA.FunctionalPart, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector}\n", - "[INFO] [1712349616.821897]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712349616.822189]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, Inverse(DUL.hasPart), rdf-schema.label]\n", - "[INFO] [1712349616.822709]: Instances: []\n", - "[INFO] [1712349616.822972]: Direct Instances: []\n", - "[INFO] [1712349616.823230]: Inverse Restrictions: []\n", - "[INFO] [1712349616.823469]: -------------------\n", - "[INFO] [1712349616.823706]: SOMA.QueryingTask \n", - "[INFO] [1712349616.823961]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712349616.824210]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712349616.824455]: Subclasses: []\n", - "[INFO] [1712349616.824752]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712349616.825380]: Instances: []\n", - "[INFO] [1712349616.825693]: Direct Instances: []\n", - "[INFO] [1712349616.826049]: Inverse Restrictions: []\n", - "[INFO] [1712349616.826311]: -------------------\n", - "[INFO] [1712349616.826560]: SOMA.Order \n", - "[INFO] [1712349616.826817]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712349616.827080]: Ancestors: {SOMA.Order, DUL.FormalEntity, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.827332]: Subclasses: []\n", - "[INFO] [1712349616.827632]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.orders]\n", - "[INFO] [1712349616.828122]: Instances: []\n", - "[INFO] [1712349616.828395]: Direct Instances: []\n", - "[INFO] [1712349616.828753]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712349616.829013]: -------------------\n", - "[INFO] [1712349616.829250]: SOMA.State \n", - "[INFO] [1712349616.829488]: Super classes: [DUL.Event]\n", - "[INFO] [1712349616.829741]: Ancestors: {owl.Thing, DUL.Entity, SOMA.State, DUL.Event}\n", - "[INFO] [1712349616.829994]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712349616.830277]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.830778]: Instances: []\n", - "[INFO] [1712349616.831046]: Direct Instances: []\n", - "[INFO] [1712349616.831539]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712349616.831788]: -------------------\n", - "[INFO] [1712349616.832024]: SOMA.Transient \n", - "[INFO] [1712349616.832268]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712349616.832531]: Ancestors: {SOMA.Transient, owl.Thing, DUL.Object, DUL.Entity}\n", - "[INFO] [1712349616.832817]: Subclasses: []\n", - "[INFO] [1712349616.833120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.transitionsFrom]\n", - "[INFO] [1712349616.833667]: Instances: []\n", - "[INFO] [1712349616.834040]: Direct Instances: []\n", - "[INFO] [1712349616.834316]: Inverse Restrictions: []\n", - "[INFO] [1712349616.834565]: -------------------\n", - "[INFO] [1712349616.834820]: SOMA.ColorRegion \n", - "[INFO] [1712349616.835083]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712349616.835355]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, owl.Thing}\n", - "[INFO] [1712349616.835644]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712349616.835979]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.836525]: Instances: []\n", - "[INFO] [1712349616.836818]: Direct Instances: []\n", - "[INFO] [1712349616.837178]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712349616.837454]: -------------------\n", - "[INFO] [1712349616.837723]: SOMA.ForceAttribute \n", - "[INFO] [1712349616.837998]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712349616.838286]: Ancestors: {SOMA.ForceAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349616.838576]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712349616.838908]: Properties: [SOMA.hasForceValue, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.839452]: Instances: []\n", - "[INFO] [1712349616.839734]: Direct Instances: []\n", - "[INFO] [1712349616.839993]: Inverse Restrictions: []\n", - "[INFO] [1712349616.840237]: -------------------\n", - "[INFO] [1712349616.840489]: SOMA.API_Specification \n", - "[INFO] [1712349616.840727]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712349616.840975]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712349616.841216]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712349616.841498]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.841993]: Instances: []\n", - "[INFO] [1712349616.842253]: Direct Instances: []\n", - "[INFO] [1712349616.842503]: Inverse Restrictions: []\n", - "[INFO] [1712349616.842742]: -------------------\n", - "[INFO] [1712349616.842977]: SOMA.InterfaceSpecification \n", - "[INFO] [1712349616.843208]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712349616.843460]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712349616.843711]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712349616.843997]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.844488]: Instances: []\n", - "[INFO] [1712349616.844757]: Direct Instances: []\n", - "[INFO] [1712349616.845078]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712349616.845325]: -------------------\n", - "[INFO] [1712349616.845562]: SOMA.AbductiveReasoning \n", - "[INFO] [1712349616.845795]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712349616.846045]: Ancestors: {SOMA.InformationAcquisition, SOMA.AbductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.846293]: Subclasses: []\n", - "[INFO] [1712349616.846580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.847059]: Instances: []\n", - "[INFO] [1712349616.847322]: Direct Instances: []\n", - "[INFO] [1712349616.847575]: Inverse Restrictions: []\n", - "[INFO] [1712349616.847815]: -------------------\n", - "[INFO] [1712349616.848047]: SOMA.Reasoning \n", - "[INFO] [1712349616.848274]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349616.848520]: Ancestors: {owl.Thing, SOMA.Reasoning, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712349616.848773]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712349616.849067]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.849626]: Instances: []\n", - "[INFO] [1712349616.849914]: Direct Instances: []\n", - "[INFO] [1712349616.850173]: Inverse Restrictions: []\n", - "[INFO] [1712349616.850409]: -------------------\n", - "[INFO] [1712349616.850646]: SOMA.Accessor \n", - "[INFO] [1712349616.850893]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712349616.851152]: Ancestors: {DUL.SocialObject, SOMA.Accessor, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.851393]: Subclasses: []\n", - "[INFO] [1712349616.851671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.852166]: Instances: []\n", - "[INFO] [1712349616.852425]: Direct Instances: []\n", - "[INFO] [1712349616.852670]: Inverse Restrictions: []\n", - "[INFO] [1712349616.852987]: -------------------\n", - "[INFO] [1712349616.853407]: SOMA.Instrument \n", - "[INFO] [1712349616.853804]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712349616.854194]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.854589]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712349616.854924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.855456]: Instances: []\n", - "[INFO] [1712349616.855722]: Direct Instances: []\n", - "[INFO] [1712349616.856090]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349616.856344]: -------------------\n", - "[INFO] [1712349616.856593]: SOMA.Accident \n", - "[INFO] [1712349616.856850]: Super classes: [DUL.Event]\n", - "[INFO] [1712349616.857100]: Ancestors: {SOMA.Accident, owl.Thing, DUL.Entity, DUL.Event}\n", - "[INFO] [1712349616.857341]: Subclasses: []\n", - "[INFO] [1712349616.857630]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.858119]: Instances: []\n", - "[INFO] [1712349616.858388]: Direct Instances: []\n", - "[INFO] [1712349616.858638]: Inverse Restrictions: []\n", - "[INFO] [1712349616.858880]: -------------------\n", - "[INFO] [1712349616.859115]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712349616.859354]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712349616.859614]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Plan, owl.Thing, SOMA.ActionExecutionPlan}\n", - "[INFO] [1712349616.859861]: Subclasses: []\n", - "[INFO] [1712349616.860146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.860626]: Instances: []\n", - "[INFO] [1712349616.860909]: Direct Instances: []\n", - "[INFO] [1712349616.861171]: Inverse Restrictions: []\n", - "[INFO] [1712349616.861411]: -------------------\n", - "[INFO] [1712349616.861645]: SOMA.Actuating \n", - "[INFO] [1712349616.861875]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349616.862130]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349616.862406]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712349616.862696]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.863220]: Instances: []\n", - "[INFO] [1712349616.863493]: Direct Instances: []\n", - "[INFO] [1712349616.863761]: Inverse Restrictions: []\n", - "[INFO] [1712349616.864002]: -------------------\n", - "[INFO] [1712349616.864239]: SOMA.PhysicalTask \n", - "[INFO] [1712349616.864489]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712349616.864754]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.865035]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712349616.865403]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.865998]: Instances: []\n", - "[INFO] [1712349616.866272]: Direct Instances: []\n", - "[INFO] [1712349616.866597]: Inverse Restrictions: []\n", - "[INFO] [1712349616.866843]: -------------------\n", - "[INFO] [1712349616.867084]: SOMA.AestheticDesign \n", - "[INFO] [1712349616.867326]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712349616.867578]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.AestheticDesign, owl.Thing}\n", - "[INFO] [1712349616.867823]: Subclasses: []\n", - "[INFO] [1712349616.868121]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.868635]: Instances: []\n", - "[INFO] [1712349616.868917]: Direct Instances: []\n", - "[INFO] [1712349616.869175]: Inverse Restrictions: []\n", - "[INFO] [1712349616.869414]: -------------------\n", - "[INFO] [1712349616.869651]: SOMA.AgentRole \n", - "[INFO] [1712349616.869893]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712349616.870142]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.AgentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.870384]: Subclasses: []\n", - "[INFO] [1712349616.870669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.871144]: Instances: []\n", - "[INFO] [1712349616.871414]: Direct Instances: []\n", - "[INFO] [1712349616.871701]: Inverse Restrictions: []\n", - "[INFO] [1712349616.871941]: -------------------\n", - "[INFO] [1712349616.872173]: SOMA.CausativeRole \n", - "[INFO] [1712349616.872406]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349616.872658]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.872927]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712349616.873221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.873710]: Instances: []\n", - "[INFO] [1712349616.873987]: Direct Instances: []\n", - "[INFO] [1712349616.874252]: Inverse Restrictions: []\n", - "[INFO] [1712349616.874486]: -------------------\n", - "[INFO] [1712349616.874726]: SOMA.Agonist \n", - "[INFO] [1712349616.874959]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349616.875200]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Agonist, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.875442]: Subclasses: []\n", - "[INFO] [1712349616.875721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.876216]: Instances: []\n", - "[INFO] [1712349616.876486]: Direct Instances: []\n", - "[INFO] [1712349616.876771]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712349616.877014]: -------------------\n", - "[INFO] [1712349616.877239]: SOMA.Patient \n", - "[INFO] [1712349616.877477]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349616.877721]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.878011]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712349616.878299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.878860]: Instances: []\n", - "[INFO] [1712349616.879133]: Direct Instances: []\n", - "[INFO] [1712349616.879539]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349616.879794]: -------------------\n", - "[INFO] [1712349616.880030]: SOMA.Algorithm \n", - "[INFO] [1712349616.880261]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712349616.880495]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Algorithm, DUL.Plan, owl.Thing}\n", - "[INFO] [1712349616.880730]: Subclasses: []\n", - "[INFO] [1712349616.881021]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.881517]: Instances: []\n", - "[INFO] [1712349616.881789]: Direct Instances: []\n", - "[INFO] [1712349616.882105]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712349616.882339]: -------------------\n", - "[INFO] [1712349616.882572]: SOMA.Alteration \n", - "[INFO] [1712349616.882813]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712349616.883057]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.883310]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712349616.883593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.884094]: Instances: []\n", - "[INFO] [1712349616.884362]: Direct Instances: []\n", - "[INFO] [1712349616.884619]: Inverse Restrictions: []\n", - "[INFO] [1712349616.884860]: -------------------\n", - "[INFO] [1712349616.885091]: SOMA.AlterativeInteraction \n", - "[INFO] [1712349616.885331]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712349616.885576]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.AlterativeInteraction, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.885827]: Subclasses: []\n", - "[INFO] [1712349616.886120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.886612]: Instances: []\n", - "[INFO] [1712349616.886880]: Direct Instances: []\n", - "[INFO] [1712349616.887166]: Inverse Restrictions: []\n", - "[INFO] [1712349616.887395]: -------------------\n", - "[INFO] [1712349616.887629]: SOMA.ForceInteraction \n", - "[INFO] [1712349616.887870]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712349616.888114]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.888382]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712349616.888695]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712349616.889203]: Instances: []\n", - "[INFO] [1712349616.889478]: Direct Instances: []\n", - "[INFO] [1712349616.889733]: Inverse Restrictions: []\n", - "[INFO] [1712349616.889972]: -------------------\n", - "[INFO] [1712349616.890215]: SOMA.PreservativeInteraction \n", - "[INFO] [1712349616.890450]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712349616.890697]: Ancestors: {SOMA.PreservativeInteraction, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ForceInteraction, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349616.890936]: Subclasses: []\n", - "[INFO] [1712349616.891227]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.891717]: Instances: []\n", - "[INFO] [1712349616.891976]: Direct Instances: []\n", - "[INFO] [1712349616.892261]: Inverse Restrictions: []\n", - "[INFO] [1712349616.892498]: -------------------\n", - "[INFO] [1712349616.892730]: SOMA.AlteredObject \n", - "[INFO] [1712349616.892991]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349616.893252]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", - "[INFO] [1712349616.893516]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712349616.893806]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.894296]: Instances: []\n", - "[INFO] [1712349616.894572]: Direct Instances: []\n", - "[INFO] [1712349616.894911]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712349616.895158]: -------------------\n", - "[INFO] [1712349616.895395]: SOMA.Amateurish \n", - "[INFO] [1712349616.895627]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712349616.895884]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.896140]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712349616.896436]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.896930]: Instances: []\n", - "[INFO] [1712349616.897218]: Direct Instances: []\n", - "[INFO] [1712349616.897480]: Inverse Restrictions: []\n", - "[INFO] [1712349616.897722]: -------------------\n", - "[INFO] [1712349616.897958]: SOMA.AnsweringTask \n", - "[INFO] [1712349616.898191]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.898436]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", - "[INFO] [1712349616.898680]: Subclasses: []\n", - "[INFO] [1712349616.898971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712349616.899452]: Instances: []\n", - "[INFO] [1712349616.899705]: Direct Instances: []\n", - "[INFO] [1712349616.899993]: Inverse Restrictions: []\n", - "[INFO] [1712349616.900234]: -------------------\n", - "[INFO] [1712349616.900468]: SOMA.CommandingTask \n", - "[INFO] [1712349616.900705]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712349616.901047]: Ancestors: {SOMA.CommandingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712349616.901305]: Subclasses: []\n", - "[INFO] [1712349616.901604]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.902103]: Instances: []\n", - "[INFO] [1712349616.902365]: Direct Instances: []\n", - "[INFO] [1712349616.902686]: Inverse Restrictions: []\n", - "[INFO] [1712349616.902925]: -------------------\n", - "[INFO] [1712349616.903172]: SOMA.IllocutionaryTask \n", - "[INFO] [1712349616.903428]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712349616.903666]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712349616.903918]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712349616.904208]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.904715]: Instances: []\n", - "[INFO] [1712349616.904983]: Direct Instances: []\n", - "[INFO] [1712349616.905275]: Inverse Restrictions: []\n", - "[INFO] [1712349616.905530]: -------------------\n", - "[INFO] [1712349616.905777]: SOMA.Antagonist \n", - "[INFO] [1712349616.906010]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349616.906255]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Antagonist, DUL.Role}\n", - "[INFO] [1712349616.906495]: Subclasses: []\n", - "[INFO] [1712349616.906791]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.907276]: Instances: []\n", - "[INFO] [1712349616.907540]: Direct Instances: []\n", - "[INFO] [1712349616.907820]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712349616.908056]: -------------------\n", - "[INFO] [1712349616.908302]: SOMA.Appliance \n", - "[INFO] [1712349616.908538]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712349616.908782]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349616.909033]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712349616.909322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.909820]: Instances: []\n", - "[INFO] [1712349616.910078]: Direct Instances: []\n", - "[INFO] [1712349616.910325]: Inverse Restrictions: []\n", - "[INFO] [1712349616.910558]: -------------------\n", - "[INFO] [1712349616.910799]: SOMA.Approaching \n", - "[INFO] [1712349616.911042]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349616.911293]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Approaching, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.911531]: Subclasses: []\n", - "[INFO] [1712349616.911814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.912313]: Instances: []\n", - "[INFO] [1712349616.912581]: Direct Instances: []\n", - "[INFO] [1712349616.912831]: Inverse Restrictions: []\n", - "[INFO] [1712349616.913071]: -------------------\n", - "[INFO] [1712349616.913302]: SOMA.Locomotion \n", - "[INFO] [1712349616.913532]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712349616.913789]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349616.914047]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712349616.914349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.914854]: Instances: []\n", - "[INFO] [1712349616.915116]: Direct Instances: []\n", - "[INFO] [1712349616.915374]: Inverse Restrictions: []\n", - "[INFO] [1712349616.915611]: -------------------\n", - "[INFO] [1712349616.915843]: SOMA.ArchiveFile \n", - "[INFO] [1712349616.916083]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712349616.916334]: Ancestors: {DUL.InformationEntity, SOMA.ArchiveFile, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", - "[INFO] [1712349616.916575]: Subclasses: []\n", - "[INFO] [1712349616.916880]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.917391]: Instances: []\n", - "[INFO] [1712349616.917658]: Direct Instances: []\n", - "[INFO] [1712349616.917907]: Inverse Restrictions: []\n", - "[INFO] [1712349616.918148]: -------------------\n", - "[INFO] [1712349616.918388]: SOMA.ArchiveText \n", - "[INFO] [1712349616.918622]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.918868]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", - "[INFO] [1712349616.919110]: Subclasses: []\n", - "[INFO] [1712349616.919405]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, DUL.expresses]\n", - "[INFO] [1712349616.919889]: Instances: []\n", - "[INFO] [1712349616.920159]: Direct Instances: []\n", - "[INFO] [1712349616.920497]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712349616.920740]: -------------------\n", - "[INFO] [1712349616.920978]: SOMA.Digital_File \n", - "[INFO] [1712349616.921221]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712349616.921481]: Ancestors: {DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", - "[INFO] [1712349616.921733]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712349616.922026]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasNameString, DUL.realizes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349616.922509]: Instances: []\n", - "[INFO] [1712349616.922788]: Direct Instances: []\n", - "[INFO] [1712349616.923880]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712349616.924136]: -------------------\n", - "[INFO] [1712349616.924375]: SOMA.ArchiveFormat \n", - "[INFO] [1712349616.924614]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712349616.924880]: Ancestors: {SOMA.System, DUL.SocialObject, SOMA.ArchiveFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349616.925128]: Subclasses: []\n", - "[INFO] [1712349616.925417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.925896]: Instances: []\n", - "[INFO] [1712349616.926152]: Direct Instances: []\n", - "[INFO] [1712349616.926442]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712349616.926687]: -------------------\n", - "[INFO] [1712349616.926921]: SOMA.File_format \n", - "[INFO] [1712349616.927152]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349616.927392]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712349616.927647]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712349616.927937]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.928430]: Instances: []\n", - "[INFO] [1712349616.928703]: Direct Instances: []\n", - "[INFO] [1712349616.928965]: Inverse Restrictions: []\n", - "[INFO] [1712349616.929211]: -------------------\n", - "[INFO] [1712349616.929448]: SOMA.FileConfiguration \n", - "[INFO] [1712349616.929691]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.929938]: Ancestors: {owl.Thing, SOMA.FileConfiguration}\n", - "[INFO] [1712349616.930179]: Subclasses: []\n", - "[INFO] [1712349616.930465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.930960]: Instances: []\n", - "[INFO] [1712349616.931220]: Direct Instances: []\n", - "[INFO] [1712349616.931520]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712349616.931754]: -------------------\n", - "[INFO] [1712349616.931985]: SOMA.Structured_Text \n", - "[INFO] [1712349616.932219]: Super classes: [owl.Thing]\n", - "[INFO] [1712349616.932470]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", - "[INFO] [1712349616.932717]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712349616.933009]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349616.933515]: Instances: []\n", - "[INFO] [1712349616.933780]: Direct Instances: []\n", - "[INFO] [1712349616.934207]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712349616.934456]: -------------------\n", - "[INFO] [1712349616.934706]: SOMA.AreaSurveying \n", - "[INFO] [1712349616.934943]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712349616.935182]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", - "[INFO] [1712349616.935418]: Subclasses: []\n", - "[INFO] [1712349616.935705]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.936204]: Instances: []\n", - "[INFO] [1712349616.936466]: Direct Instances: []\n", - "[INFO] [1712349616.936716]: Inverse Restrictions: []\n", - "[INFO] [1712349616.936955]: -------------------\n", - "[INFO] [1712349616.937192]: SOMA.Perceiving \n", - "[INFO] [1712349616.937441]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712349616.937684]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712349616.937932]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712349616.938214]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.938723]: Instances: []\n", - "[INFO] [1712349616.938997]: Direct Instances: []\n", - "[INFO] [1712349616.939246]: Inverse Restrictions: []\n", - "[INFO] [1712349616.939483]: -------------------\n", - "[INFO] [1712349616.939726]: SOMA.Arm \n", - "[INFO] [1712349616.939966]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712349616.940219]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.Arm, SOMA.PhysicalEffector, SOMA.Limb}\n", - "[INFO] [1712349616.940456]: Subclasses: []\n", - "[INFO] [1712349616.940735]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.941235]: Instances: []\n", - "[INFO] [1712349616.941500]: Direct Instances: []\n", - "[INFO] [1712349616.941783]: Inverse Restrictions: []\n", - "[INFO] [1712349616.942022]: -------------------\n", - "[INFO] [1712349616.942258]: SOMA.Limb \n", - "[INFO] [1712349616.942500]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712349616.942747]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", - "[INFO] [1712349616.942999]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712349616.943292]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.943794]: Instances: []\n", - "[INFO] [1712349616.944055]: Direct Instances: []\n", - "[INFO] [1712349616.944360]: Inverse Restrictions: []\n", - "[INFO] [1712349616.944599]: -------------------\n", - "[INFO] [1712349616.944838]: SOMA.Arranging \n", - "[INFO] [1712349616.945086]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712349616.945337]: Ancestors: {SOMA.Arranging, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.945582]: Subclasses: []\n", - "[INFO] [1712349616.945865]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.946353]: Instances: []\n", - "[INFO] [1712349616.946612]: Direct Instances: []\n", - "[INFO] [1712349616.946855]: Inverse Restrictions: []\n", - "[INFO] [1712349616.947085]: -------------------\n", - "[INFO] [1712349616.947318]: SOMA.Constructing \n", - "[INFO] [1712349616.947549]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349616.947803]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.948055]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712349616.948351]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.948907]: Instances: []\n", - "[INFO] [1712349616.949389]: Direct Instances: []\n", - "[INFO] [1712349616.949788]: Inverse Restrictions: []\n", - "[INFO] [1712349616.950160]: -------------------\n", - "[INFO] [1712349616.950533]: SOMA.ArtificialAgent \n", - "[INFO] [1712349616.950904]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712349616.951282]: Ancestors: {DUL.Agent, DUL.Object, DUL.Entity, DUL.PhysicalObject, SOMA.ArtificialAgent, DUL.PhysicalAgent, owl.Thing}\n", - "[INFO] [1712349616.951660]: Subclasses: []\n", - "[INFO] [1712349616.951990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.952492]: Instances: []\n", - "[INFO] [1712349616.952754]: Direct Instances: []\n", - "[INFO] [1712349616.953009]: Inverse Restrictions: []\n", - "[INFO] [1712349616.953250]: -------------------\n", - "[INFO] [1712349616.953487]: SOMA.Assembling \n", - "[INFO] [1712349616.953724]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712349616.953983]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Assembling, owl.Thing}\n", - "[INFO] [1712349616.954228]: Subclasses: []\n", - "[INFO] [1712349616.954513]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.954990]: Instances: []\n", - "[INFO] [1712349616.955240]: Direct Instances: []\n", - "[INFO] [1712349616.955491]: Inverse Restrictions: []\n", - "[INFO] [1712349616.955725]: -------------------\n", - "[INFO] [1712349616.955954]: SOMA.AssertionTask \n", - "[INFO] [1712349616.956193]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712349616.956425]: Ancestors: {SOMA.AssertionTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712349616.956670]: Subclasses: []\n", - "[INFO] [1712349616.956960]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.957436]: Instances: []\n", - "[INFO] [1712349616.957695]: Direct Instances: []\n", - "[INFO] [1712349616.957938]: Inverse Restrictions: []\n", - "[INFO] [1712349616.958513]: -------------------\n", - "[INFO] [1712349616.958920]: SOMA.DeclarativeClause \n", - "[INFO] [1712349616.959149]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712349616.959395]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DeclarativeClause, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", - "[INFO] [1712349616.959647]: Subclasses: []\n", - "[INFO] [1712349616.959940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.960422]: Instances: []\n", - "[INFO] [1712349616.960677]: Direct Instances: []\n", - "[INFO] [1712349616.960974]: Inverse Restrictions: []\n", - "[INFO] [1712349616.961215]: -------------------\n", - "[INFO] [1712349616.961449]: SOMA.AssumingArmPose \n", - "[INFO] [1712349616.961681]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712349616.961923]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.AssumingArmPose}\n", - "[INFO] [1712349616.962178]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712349616.962466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.962946]: Instances: []\n", - "[INFO] [1712349616.963203]: Direct Instances: []\n", - "[INFO] [1712349616.963443]: Inverse Restrictions: []\n", - "[INFO] [1712349616.963685]: -------------------\n", - "[INFO] [1712349616.963922]: SOMA.AssumingPose \n", - "[INFO] [1712349616.964151]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349616.964389]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.964632]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712349616.964930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.965430]: Instances: []\n", - "[INFO] [1712349616.965687]: Direct Instances: []\n", - "[INFO] [1712349616.965931]: Inverse Restrictions: []\n", - "[INFO] [1712349616.966175]: -------------------\n", - "[INFO] [1712349616.966412]: SOMA.AttentionShift \n", - "[INFO] [1712349616.966644]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712349616.966891]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.AttentionShift, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349616.967130]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712349616.967419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.967906]: Instances: []\n", - "[INFO] [1712349616.968167]: Direct Instances: []\n", - "[INFO] [1712349616.968412]: Inverse Restrictions: []\n", - "[INFO] [1712349616.968641]: -------------------\n", - "[INFO] [1712349616.968875]: SOMA.MentalTask \n", - "[INFO] [1712349616.969113]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712349616.969364]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349616.969620]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712349616.969908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.970418]: Instances: []\n", - "[INFO] [1712349616.970675]: Direct Instances: []\n", - "[INFO] [1712349616.970955]: Inverse Restrictions: []\n", - "[INFO] [1712349616.971190]: -------------------\n", - "[INFO] [1712349616.971431]: SOMA.AvoidedObject \n", - "[INFO] [1712349616.971664]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349616.971907]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.AvoidedObject, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.972141]: Subclasses: []\n", - "[INFO] [1712349616.972420]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.972917]: Instances: []\n", - "[INFO] [1712349616.973185]: Direct Instances: []\n", - "[INFO] [1712349616.973433]: Inverse Restrictions: []\n", - "[INFO] [1712349616.973667]: -------------------\n", - "[INFO] [1712349616.973899]: SOMA.Avoiding \n", - "[INFO] [1712349616.974138]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712349616.974389]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Avoiding, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.974627]: Subclasses: []\n", - "[INFO] [1712349616.974905]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.975395]: Instances: []\n", - "[INFO] [1712349616.975651]: Direct Instances: []\n", - "[INFO] [1712349616.975891]: Inverse Restrictions: []\n", - "[INFO] [1712349616.976118]: -------------------\n", - "[INFO] [1712349616.976345]: SOMA.Navigating \n", - "[INFO] [1712349616.976577]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349616.976827]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349616.977072]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712349616.977352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.977849]: Instances: []\n", - "[INFO] [1712349616.978107]: Direct Instances: []\n", - "[INFO] [1712349616.978356]: Inverse Restrictions: []\n", - "[INFO] [1712349616.978589]: -------------------\n", - "[INFO] [1712349616.978819]: SOMA.Barrier \n", - "[INFO] [1712349616.979059]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712349616.979308]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.979550]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712349616.979824]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.980318]: Instances: []\n", - "[INFO] [1712349616.980574]: Direct Instances: []\n", - "[INFO] [1712349616.980859]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712349616.981094]: -------------------\n", - "[INFO] [1712349616.981329]: SOMA.Restrictor \n", - "[INFO] [1712349616.981575]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712349616.981825]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.982077]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712349616.982357]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349616.982845]: Instances: []\n", - "[INFO] [1712349616.983115]: Direct Instances: []\n", - "[INFO] [1712349616.983461]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712349616.983705]: -------------------\n", - "[INFO] [1712349616.983937]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712349616.984174]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712349616.984430]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349616.984690]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712349616.985087]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", - "[INFO] [1712349616.985688]: Instances: []\n", - "[INFO] [1712349616.985989]: Direct Instances: []\n", - "[INFO] [1712349616.986267]: Inverse Restrictions: []\n", - "[INFO] [1712349616.986515]: -------------------\n", - "[INFO] [1712349616.986757]: SOMA.BeneficiaryRole \n", - "[INFO] [1712349616.987006]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712349616.987262]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.BeneficiaryRole, DUL.Role}\n", - "[INFO] [1712349616.987511]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712349616.987798]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.988297]: Instances: []\n", - "[INFO] [1712349616.988560]: Direct Instances: []\n", - "[INFO] [1712349616.988814]: Inverse Restrictions: []\n", - "[INFO] [1712349616.989048]: -------------------\n", - "[INFO] [1712349616.989280]: SOMA.GoalRole \n", - "[INFO] [1712349616.989524]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349616.989771]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349616.990018]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712349616.990299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.990804]: Instances: []\n", - "[INFO] [1712349616.991067]: Direct Instances: []\n", - "[INFO] [1712349616.991318]: Inverse Restrictions: []\n", - "[INFO] [1712349616.991551]: -------------------\n", - "[INFO] [1712349616.991785]: SOMA.CounterfactualBinding \n", - "[INFO] [1712349616.992031]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712349616.992278]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.CounterfactualBinding, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349616.992514]: Subclasses: []\n", - "[INFO] [1712349616.992808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.993526]: Instances: []\n", - "[INFO] [1712349616.993912]: Direct Instances: []\n", - "[INFO] [1712349616.994339]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712349616.994685]: -------------------\n", - "[INFO] [1712349616.995022]: SOMA.FactualBinding \n", - "[INFO] [1712349616.995362]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712349616.995711]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.FactualBinding, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349616.996049]: Subclasses: []\n", - "[INFO] [1712349616.996429]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349616.997008]: Instances: []\n", - "[INFO] [1712349616.997374]: Direct Instances: []\n", - "[INFO] [1712349616.997792]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712349616.998129]: -------------------\n", - "[INFO] [1712349616.998458]: SOMA.RoleFillerBinding \n", - "[INFO] [1712349616.998786]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712349616.999124]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, DUL.Entity, SOMA.RoleFillerBinding, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349616.999470]: Subclasses: []\n", - "[INFO] [1712349616.999865]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.000441]: Instances: []\n", - "[INFO] [1712349617.000811]: Direct Instances: []\n", - "[INFO] [1712349617.001190]: Inverse Restrictions: []\n", - "[INFO] [1712349617.001520]: -------------------\n", - "[INFO] [1712349617.001846]: SOMA.RoleRoleBinding \n", - "[INFO] [1712349617.002181]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712349617.002525]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Binding, DUL.Object, SOMA.RoleRoleBinding, DUL.Entity, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349617.002856]: Subclasses: []\n", - "[INFO] [1712349617.003232]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.003814]: Instances: []\n", - "[INFO] [1712349617.004167]: Direct Instances: []\n", - "[INFO] [1712349617.004913]: Inverse Restrictions: []\n", - "[INFO] [1712349617.005306]: -------------------\n", - "[INFO] [1712349617.005658]: SOMA.DesignedComponent \n", - "[INFO] [1712349617.006006]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712349617.006354]: Ancestors: {SOMA.FunctionalPart, SOMA.DesignedComponent, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349617.006716]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712349617.007112]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.007722]: Instances: []\n", - "[INFO] [1712349617.008070]: Direct Instances: []\n", - "[INFO] [1712349617.008419]: Inverse Restrictions: []\n", - "[INFO] [1712349617.008754]: -------------------\n", - "[INFO] [1712349617.009202]: SOMA.Blockage \n", - "[INFO] [1712349617.009568]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712349617.009935]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.010304]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712349617.010726]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.011337]: Instances: []\n", - "[INFO] [1712349617.011626]: Direct Instances: []\n", - "[INFO] [1712349617.011883]: Inverse Restrictions: []\n", - "[INFO] [1712349617.012123]: -------------------\n", - "[INFO] [1712349617.012368]: SOMA.BlockedObject \n", - "[INFO] [1712349617.012606]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.012856]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.013103]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712349617.013384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.013884]: Instances: []\n", - "[INFO] [1712349617.014146]: Direct Instances: []\n", - "[INFO] [1712349617.014433]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712349617.014673]: -------------------\n", - "[INFO] [1712349617.014921]: SOMA.BodyMovement \n", - "[INFO] [1712349617.015190]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712349617.015446]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.015700]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712349617.015985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.016508]: Instances: []\n", - "[INFO] [1712349617.016770]: Direct Instances: []\n", - "[INFO] [1712349617.017114]: Inverse Restrictions: []\n", - "[INFO] [1712349617.017380]: -------------------\n", - "[INFO] [1712349617.017631]: SOMA.Motion \n", - "[INFO] [1712349617.017874]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712349617.018123]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.018382]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712349617.018687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.019230]: Instances: []\n", - "[INFO] [1712349617.019492]: Direct Instances: []\n", - "[INFO] [1712349617.019743]: Inverse Restrictions: []\n", - "[INFO] [1712349617.019993]: -------------------\n", - "[INFO] [1712349617.020236]: SOMA.Boiling \n", - "[INFO] [1712349617.020473]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712349617.020722]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, SOMA.Vaporizing, DUL.Object, DUL.Entity, SOMA.Alteration, owl.Thing, SOMA.ProcessType, SOMA.Boiling}\n", - "[INFO] [1712349617.020977]: Subclasses: []\n", - "[INFO] [1712349617.021261]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.021763]: Instances: []\n", - "[INFO] [1712349617.022030]: Direct Instances: []\n", - "[INFO] [1712349617.022279]: Inverse Restrictions: []\n", - "[INFO] [1712349617.022513]: -------------------\n", - "[INFO] [1712349617.022748]: SOMA.Vaporizing \n", - "[INFO] [1712349617.022990]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712349617.023251]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, SOMA.Vaporizing, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.023504]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712349617.023795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, SOMA.isProcessTypeOf]\n", - "[INFO] [1712349617.024277]: Instances: []\n", - "[INFO] [1712349617.024547]: Direct Instances: []\n", - "[INFO] [1712349617.024815]: Inverse Restrictions: []\n", - "[INFO] [1712349617.025064]: -------------------\n", - "[INFO] [1712349617.025309]: SOMA.DesignedContainer \n", - "[INFO] [1712349617.025548]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712349617.025797]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349617.026071]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", - "[INFO] [1712349617.026371]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.026918]: Instances: []\n", - "[INFO] [1712349617.027189]: Direct Instances: []\n", - "[INFO] [1712349617.027451]: Inverse Restrictions: []\n", - "[INFO] [1712349617.027690]: -------------------\n", - "[INFO] [1712349617.027925]: SOMA.BoxShape \n", - "[INFO] [1712349617.028166]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712349617.028436]: Ancestors: {DUL.Region, DUL.Entity, DUL.Abstract, SOMA.BoxShape, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349617.028683]: Subclasses: []\n", - "[INFO] [1712349617.028980]: Properties: [rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasWidth, SOMA.hasHeight, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349617.029469]: Instances: []\n", - "[INFO] [1712349617.029740]: Direct Instances: []\n", - "[INFO] [1712349617.030020]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712349617.030261]: -------------------\n", - "[INFO] [1712349617.030499]: SOMA.Deposition \n", - "[INFO] [1712349617.030741]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712349617.030996]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.031246]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712349617.031543]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.032032]: Instances: []\n", - "[INFO] [1712349617.032299]: Direct Instances: []\n", - "[INFO] [1712349617.032621]: Inverse Restrictions: []\n", - "[INFO] [1712349617.032863]: -------------------\n", - "[INFO] [1712349617.033098]: SOMA.CanCut \n", - "[INFO] [1712349617.033338]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712349617.033581]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.CanCut, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.033831]: Subclasses: []\n", - "[INFO] [1712349617.034125]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.034602]: Instances: []\n", - "[INFO] [1712349617.034864]: Direct Instances: []\n", - "[INFO] [1712349617.035451]: Inverse Restrictions: []\n", - "[INFO] [1712349617.035800]: -------------------\n", - "[INFO] [1712349617.036150]: SOMA.Variability \n", - "[INFO] [1712349617.036410]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712349617.036679]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.036969]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712349617.037271]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.037770]: Instances: []\n", - "[INFO] [1712349617.038051]: Direct Instances: []\n", - "[INFO] [1712349617.038321]: Inverse Restrictions: []\n", - "[INFO] [1712349617.038557]: -------------------\n", - "[INFO] [1712349617.038788]: SOMA.Cutter \n", - "[INFO] [1712349617.039026]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712349617.039271]: Ancestors: {SOMA.Cutter, SOMA.Tool, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.039511]: Subclasses: []\n", - "[INFO] [1712349617.039797]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.040281]: Instances: []\n", - "[INFO] [1712349617.040538]: Direct Instances: []\n", - "[INFO] [1712349617.040852]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712349617.041089]: -------------------\n", - "[INFO] [1712349617.041316]: SOMA.CutObject \n", - "[INFO] [1712349617.041551]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712349617.041793]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.CutObject, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", - "[INFO] [1712349617.042031]: Subclasses: []\n", - "[INFO] [1712349617.042319]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.042814]: Instances: []\n", - "[INFO] [1712349617.043085]: Direct Instances: []\n", - "[INFO] [1712349617.043410]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712349617.043646]: -------------------\n", - "[INFO] [1712349617.043876]: SOMA.Capability \n", - "[INFO] [1712349617.044135]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712349617.044389]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.044647]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712349617.044939]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712349617.045437]: Instances: []\n", - "[INFO] [1712349617.045696]: Direct Instances: []\n", - "[INFO] [1712349617.045949]: Inverse Restrictions: []\n", - "[INFO] [1712349617.046175]: -------------------\n", - "[INFO] [1712349617.046400]: SOMA.Capacity \n", - "[INFO] [1712349617.046635]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349617.046877]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Capacity, SOMA.Intrinsic}\n", - "[INFO] [1712349617.047119]: Subclasses: []\n", - "[INFO] [1712349617.047400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.047892]: Instances: []\n", - "[INFO] [1712349617.048152]: Direct Instances: []\n", - "[INFO] [1712349617.048450]: Inverse Restrictions: []\n", - "[INFO] [1712349617.048681]: -------------------\n", - "[INFO] [1712349617.049028]: SOMA.Intrinsic \n", - "[INFO] [1712349617.049386]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712349617.049695]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712349617.049995]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712349617.050306]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.050825]: Instances: []\n", - "[INFO] [1712349617.051112]: Direct Instances: []\n", - "[INFO] [1712349617.051392]: Inverse Restrictions: []\n", - "[INFO] [1712349617.051634]: -------------------\n", - "[INFO] [1712349617.051868]: SOMA.Catching \n", - "[INFO] [1712349617.052101]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.052344]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.Catching, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.052600]: Subclasses: []\n", - "[INFO] [1712349617.052912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.053424]: Instances: []\n", - "[INFO] [1712349617.053683]: Direct Instances: []\n", - "[INFO] [1712349617.053932]: Inverse Restrictions: []\n", - "[INFO] [1712349617.054174]: -------------------\n", - "[INFO] [1712349617.054412]: SOMA.PickingUp \n", - "[INFO] [1712349617.054642]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349617.054881]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.PickingUp}\n", - "[INFO] [1712349617.055120]: Subclasses: []\n", - "[INFO] [1712349617.055422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.055911]: Instances: []\n", - "[INFO] [1712349617.056191]: Direct Instances: []\n", - "[INFO] [1712349617.056453]: Inverse Restrictions: []\n", - "[INFO] [1712349617.056691]: -------------------\n", - "[INFO] [1712349617.056930]: SOMA.CausalEventRole \n", - "[INFO] [1712349617.057159]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712349617.057401]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.CausalEventRole, DUL.Role}\n", - "[INFO] [1712349617.057660]: Subclasses: []\n", - "[INFO] [1712349617.057953]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.058434]: Instances: []\n", - "[INFO] [1712349617.058684]: Direct Instances: []\n", - "[INFO] [1712349617.058972]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349617.059224]: -------------------\n", - "[INFO] [1712349617.059464]: SOMA.EventAdjacentRole \n", - "[INFO] [1712349617.059695]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712349617.059931]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.060186]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712349617.060493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.061160]: Instances: []\n", - "[INFO] [1712349617.061449]: Direct Instances: []\n", - "[INFO] [1712349617.061715]: Inverse Restrictions: []\n", - "[INFO] [1712349617.061950]: -------------------\n", - "[INFO] [1712349617.062178]: SOMA.CausedMotionTheory \n", - "[INFO] [1712349617.062419]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712349617.062674]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.CausedMotionTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.062918]: Subclasses: []\n", - "[INFO] [1712349617.063212]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasPart, DUL.defines]\n", - "[INFO] [1712349617.063682]: Instances: []\n", - "[INFO] [1712349617.063947]: Direct Instances: []\n", - "[INFO] [1712349617.064194]: Inverse Restrictions: []\n", - "[INFO] [1712349617.064422]: -------------------\n", - "[INFO] [1712349617.064647]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712349617.064874]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712349617.065109]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.065378]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712349617.065667]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.066225]: Instances: []\n", - "[INFO] [1712349617.066523]: Direct Instances: []\n", - "[INFO] [1712349617.066859]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.StateTransition, SOMA.Scene]\n", - "[INFO] [1712349617.067105]: -------------------\n", - "[INFO] [1712349617.067340]: SOMA.PerformerRole \n", - "[INFO] [1712349617.067574]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712349617.067827]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.068088]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712349617.068385]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.068878]: Instances: []\n", - "[INFO] [1712349617.069154]: Direct Instances: []\n", - "[INFO] [1712349617.069491]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349617.069753]: -------------------\n", - "[INFO] [1712349617.069990]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712349617.070236]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712349617.070497]: Ancestors: {DUL.Description, SOMA.SourcePathGoalTheory, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.070747]: Subclasses: []\n", - "[INFO] [1712349617.071042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.071529]: Instances: []\n", - "[INFO] [1712349617.071809]: Direct Instances: []\n", - "[INFO] [1712349617.072112]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712349617.072371]: -------------------\n", - "[INFO] [1712349617.072608]: SOMA.RoomSurface \n", - "[INFO] [1712349617.072841]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712349617.073189]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, SOMA.RoomSurface}\n", - "[INFO] [1712349617.073488]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712349617.073808]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.074308]: Instances: []\n", - "[INFO] [1712349617.074593]: Direct Instances: []\n", - "[INFO] [1712349617.074859]: Inverse Restrictions: []\n", - "[INFO] [1712349617.075095]: -------------------\n", - "[INFO] [1712349617.075326]: SOMA.Channel \n", - "[INFO] [1712349617.075562]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712349617.075803]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.076054]: Subclasses: []\n", - "[INFO] [1712349617.076382]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", - "[INFO] [1712349617.076880]: Instances: []\n", - "[INFO] [1712349617.077138]: Direct Instances: []\n", - "[INFO] [1712349617.077460]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349617.077703]: -------------------\n", - "[INFO] [1712349617.077938]: SOMA.PathRole \n", - "[INFO] [1712349617.078165]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712349617.078402]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.PathRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.078661]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712349617.078955]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.079443]: Instances: []\n", - "[INFO] [1712349617.079703]: Direct Instances: []\n", - "[INFO] [1712349617.080009]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712349617.080249]: -------------------\n", - "[INFO] [1712349617.080482]: SOMA.CommunicationTask \n", - "[INFO] [1712349617.080731]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712349617.080986]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.081255]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712349617.081564]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712349617.082062]: Instances: []\n", - "[INFO] [1712349617.082335]: Direct Instances: []\n", - "[INFO] [1712349617.082860]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel]\n", - "[INFO] [1712349617.083117]: -------------------\n", - "[INFO] [1712349617.083354]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712349617.083586]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712349617.083817]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.CheckingObjectPresence}\n", - "[INFO] [1712349617.084067]: Subclasses: []\n", - "[INFO] [1712349617.084358]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.084838]: Instances: []\n", - "[INFO] [1712349617.085119]: Direct Instances: []\n", - "[INFO] [1712349617.085376]: Inverse Restrictions: []\n", - "[INFO] [1712349617.085609]: -------------------\n", - "[INFO] [1712349617.085839]: SOMA.ChemicalProcess \n", - "[INFO] [1712349617.086072]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712349617.086328]: Ancestors: {DUL.Entity, DUL.Event, owl.Thing, SOMA.ChemicalProcess, DUL.Process}\n", - "[INFO] [1712349617.086575]: Subclasses: []\n", - "[INFO] [1712349617.086862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.087342]: Instances: []\n", - "[INFO] [1712349617.087618]: Direct Instances: []\n", - "[INFO] [1712349617.087870]: Inverse Restrictions: []\n", - "[INFO] [1712349617.088100]: -------------------\n", - "[INFO] [1712349617.088328]: SOMA.Choice \n", - "[INFO] [1712349617.088553]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712349617.088796]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Choice, SOMA.ResultRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.089058]: Subclasses: []\n", - "[INFO] [1712349617.089349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.089830]: Instances: []\n", - "[INFO] [1712349617.090080]: Direct Instances: []\n", - "[INFO] [1712349617.090334]: Inverse Restrictions: []\n", - "[INFO] [1712349617.090575]: -------------------\n", - "[INFO] [1712349617.090807]: SOMA.ResultRole \n", - "[INFO] [1712349617.091036]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712349617.091271]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResultRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.091532]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712349617.091822]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.092301]: Instances: []\n", - "[INFO] [1712349617.092554]: Direct Instances: []\n", - "[INFO] [1712349617.092808]: Inverse Restrictions: []\n", - "[INFO] [1712349617.093052]: -------------------\n", - "[INFO] [1712349617.093285]: SOMA.CircularCylinder \n", - "[INFO] [1712349617.093522]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712349617.093769]: Ancestors: {SOMA.CircularCylinder, SOMA.CylinderShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349617.094028]: Subclasses: []\n", - "[INFO] [1712349617.094330]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712349617.094812]: Instances: []\n", - "[INFO] [1712349617.095064]: Direct Instances: []\n", - "[INFO] [1712349617.095318]: Inverse Restrictions: []\n", - "[INFO] [1712349617.095551]: -------------------\n", - "[INFO] [1712349617.095778]: SOMA.CylinderShape \n", - "[INFO] [1712349617.096013]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712349617.096250]: Ancestors: {SOMA.CylinderShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349617.096521]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712349617.096836]: Properties: [rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349617.097322]: Instances: []\n", - "[INFO] [1712349617.097598]: Direct Instances: []\n", - "[INFO] [1712349617.097855]: Inverse Restrictions: []\n", - "[INFO] [1712349617.098095]: -------------------\n", - "[INFO] [1712349617.098328]: SOMA.Classifier \n", - "[INFO] [1712349617.098559]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712349617.098805]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.Classifier, SOMA.StatisticalReasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349617.099056]: Subclasses: []\n", - "[INFO] [1712349617.099380]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.099873]: Instances: []\n", - "[INFO] [1712349617.100133]: Direct Instances: []\n", - "[INFO] [1712349617.100389]: Inverse Restrictions: []\n", - "[INFO] [1712349617.100633]: -------------------\n", - "[INFO] [1712349617.100873]: SOMA.StatisticalReasoner \n", - "[INFO] [1712349617.101107]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712349617.101347]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.StatisticalReasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349617.101607]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712349617.101901]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.102391]: Instances: []\n", - "[INFO] [1712349617.102643]: Direct Instances: []\n", - "[INFO] [1712349617.102882]: Inverse Restrictions: []\n", - "[INFO] [1712349617.103131]: -------------------\n", - "[INFO] [1712349617.103379]: SOMA.ClausalObject \n", - "[INFO] [1712349617.103620]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712349617.103864]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", - "[INFO] [1712349617.104122]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712349617.104511]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.105052]: Instances: []\n", - "[INFO] [1712349617.105340]: Direct Instances: []\n", - "[INFO] [1712349617.105604]: Inverse Restrictions: []\n", - "[INFO] [1712349617.105850]: -------------------\n", - "[INFO] [1712349617.106096]: SOMA.Phrase \n", - "[INFO] [1712349617.106340]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712349617.106588]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Phrase}\n", - "[INFO] [1712349617.106836]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712349617.107118]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349617.107626]: Instances: []\n", - "[INFO] [1712349617.107896]: Direct Instances: []\n", - "[INFO] [1712349617.108150]: Inverse Restrictions: []\n", - "[INFO] [1712349617.108386]: -------------------\n", - "[INFO] [1712349617.108619]: SOMA.Clean \n", - "[INFO] [1712349617.108865]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712349617.109121]: Ancestors: {SOMA.Clean, DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.109366]: Subclasses: []\n", - "[INFO] [1712349617.109648]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.110152]: Instances: []\n", - "[INFO] [1712349617.110415]: Direct Instances: []\n", - "[INFO] [1712349617.110733]: Inverse Restrictions: []\n", - "[INFO] [1712349617.110973]: -------------------\n", - "[INFO] [1712349617.111223]: SOMA.CleanlinessRegion \n", - "[INFO] [1712349617.111464]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349617.111709]: Ancestors: {DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.111957]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712349617.112244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.112756]: Instances: []\n", - "[INFO] [1712349617.113027]: Direct Instances: []\n", - "[INFO] [1712349617.113345]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712349617.113590]: -------------------\n", - "[INFO] [1712349617.113827]: SOMA.Cleaning \n", - "[INFO] [1712349617.114072]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712349617.114334]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Cleaning}\n", - "[INFO] [1712349617.114582]: Subclasses: []\n", - "[INFO] [1712349617.114871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349617.115374]: Instances: []\n", - "[INFO] [1712349617.115637]: Direct Instances: []\n", - "[INFO] [1712349617.115915]: Inverse Restrictions: []\n", - "[INFO] [1712349617.116174]: -------------------\n", - "[INFO] [1712349617.116423]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712349617.116665]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349617.116913]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.117169]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712349617.117455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.117974]: Instances: []\n", - "[INFO] [1712349617.118240]: Direct Instances: []\n", - "[INFO] [1712349617.118496]: Inverse Restrictions: []\n", - "[INFO] [1712349617.118739]: -------------------\n", - "[INFO] [1712349617.118973]: SOMA.Purification \n", - "[INFO] [1712349617.119224]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712349617.119491]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Purification, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.119740]: Subclasses: []\n", - "[INFO] [1712349617.120031]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.120517]: Instances: []\n", - "[INFO] [1712349617.120789]: Direct Instances: []\n", - "[INFO] [1712349617.121078]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712349617.121325]: -------------------\n", - "[INFO] [1712349617.121561]: SOMA.Cleanliness \n", - "[INFO] [1712349617.121801]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712349617.122063]: Ancestors: {DUL.Quality, DUL.Entity, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing}\n", - "[INFO] [1712349617.122313]: Subclasses: []\n", - "[INFO] [1712349617.122603]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349617.123091]: Instances: []\n", - "[INFO] [1712349617.123356]: Direct Instances: []\n", - "[INFO] [1712349617.123682]: Inverse Restrictions: []\n", - "[INFO] [1712349617.123927]: -------------------\n", - "[INFO] [1712349617.124160]: SOMA.SocialQuality \n", - "[INFO] [1712349617.124394]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712349617.124647]: Ancestors: {DUL.Quality, SOMA.SocialQuality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.124905]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712349617.125202]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.125692]: Instances: []\n", - "[INFO] [1712349617.125964]: Direct Instances: []\n", - "[INFO] [1712349617.126225]: Inverse Restrictions: []\n", - "[INFO] [1712349617.126460]: -------------------\n", - "[INFO] [1712349617.126696]: SOMA.Client-Server_Specification \n", - "[INFO] [1712349617.126940]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712349617.127200]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, owl.Thing, SOMA.Client-Server_Specification}\n", - "[INFO] [1712349617.127447]: Subclasses: []\n", - "[INFO] [1712349617.127741]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", - "[INFO] [1712349617.128225]: Instances: []\n", - "[INFO] [1712349617.128493]: Direct Instances: []\n", - "[INFO] [1712349617.128811]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712349617.129056]: -------------------\n", - "[INFO] [1712349617.129300]: SOMA.ClientRole \n", - "[INFO] [1712349617.129556]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712349617.129806]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ClientRole, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.130049]: Subclasses: []\n", - "[INFO] [1712349617.130339]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", - "[INFO] [1712349617.130843]: Instances: []\n", - "[INFO] [1712349617.131104]: Direct Instances: []\n", - "[INFO] [1712349617.131406]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712349617.131647]: -------------------\n", - "[INFO] [1712349617.131881]: SOMA.ServerRole \n", - "[INFO] [1712349617.132129]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712349617.132380]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.ServerRole, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.132657]: Subclasses: []\n", - "[INFO] [1712349617.132972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", - "[INFO] [1712349617.133456]: Instances: []\n", - "[INFO] [1712349617.133725]: Direct Instances: []\n", - "[INFO] [1712349617.134036]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712349617.134278]: -------------------\n", - "[INFO] [1712349617.134515]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712349617.134747]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349617.134994]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.135254]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712349617.135551]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.136067]: Instances: []\n", - "[INFO] [1712349617.136344]: Direct Instances: []\n", - "[INFO] [1712349617.136611]: Inverse Restrictions: []\n", - "[INFO] [1712349617.136857]: -------------------\n", - "[INFO] [1712349617.137096]: SOMA.Closing \n", - "[INFO] [1712349617.137331]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.137571]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Closing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.137825]: Subclasses: []\n", - "[INFO] [1712349617.138128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.138609]: Instances: []\n", - "[INFO] [1712349617.138873]: Direct Instances: []\n", - "[INFO] [1712349617.139127]: Inverse Restrictions: []\n", - "[INFO] [1712349617.139361]: -------------------\n", - "[INFO] [1712349617.139596]: SOMA.Delivering \n", - "[INFO] [1712349617.139828]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712349617.140069]: Ancestors: {SOMA.Delivering, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.140333]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712349617.140640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349617.141135]: Instances: []\n", - "[INFO] [1712349617.141407]: Direct Instances: []\n", - "[INFO] [1712349617.141664]: Inverse Restrictions: []\n", - "[INFO] [1712349617.141909]: -------------------\n", - "[INFO] [1712349617.142143]: SOMA.Fetching \n", - "[INFO] [1712349617.142375]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712349617.142614]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAcquiring, SOMA.Fetching, owl.Thing}\n", - "[INFO] [1712349617.142868]: Subclasses: []\n", - "[INFO] [1712349617.143169]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.143651]: Instances: []\n", - "[INFO] [1712349617.143905]: Direct Instances: []\n", - "[INFO] [1712349617.144157]: Inverse Restrictions: []\n", - "[INFO] [1712349617.144400]: -------------------\n", - "[INFO] [1712349617.144639]: SOMA.Lifting \n", - "[INFO] [1712349617.144876]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.145118]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Lifting, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.145371]: Subclasses: []\n", - "[INFO] [1712349617.145674]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.146158]: Instances: []\n", - "[INFO] [1712349617.146424]: Direct Instances: []\n", - "[INFO] [1712349617.146679]: Inverse Restrictions: []\n", - "[INFO] [1712349617.146917]: -------------------\n", - "[INFO] [1712349617.147150]: SOMA.Opening \n", - "[INFO] [1712349617.147374]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.147613]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Opening, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.147865]: Subclasses: []\n", - "[INFO] [1712349617.148162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.148642]: Instances: []\n", - "[INFO] [1712349617.148929]: Direct Instances: []\n", - "[INFO] [1712349617.149209]: Inverse Restrictions: []\n", - "[INFO] [1712349617.149487]: -------------------\n", - "[INFO] [1712349617.149734]: SOMA.Pulling \n", - "[INFO] [1712349617.149970]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.150217]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Pulling, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.150473]: Subclasses: []\n", - "[INFO] [1712349617.150774]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.151259]: Instances: []\n", - "[INFO] [1712349617.151511]: Direct Instances: []\n", - "[INFO] [1712349617.151757]: Inverse Restrictions: []\n", - "[INFO] [1712349617.152007]: -------------------\n", - "[INFO] [1712349617.152246]: SOMA.Pushing \n", - "[INFO] [1712349617.152477]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.152718]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", - "[INFO] [1712349617.152975]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712349617.153286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.153780]: Instances: []\n", - "[INFO] [1712349617.154051]: Direct Instances: []\n", - "[INFO] [1712349617.154319]: Inverse Restrictions: []\n", - "[INFO] [1712349617.154565]: -------------------\n", - "[INFO] [1712349617.154804]: SOMA.Squeezing \n", - "[INFO] [1712349617.155040]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.155285]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Squeezing, SOMA.Actuating}\n", - "[INFO] [1712349617.155543]: Subclasses: []\n", - "[INFO] [1712349617.155836]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.156325]: Instances: []\n", - "[INFO] [1712349617.156601]: Direct Instances: []\n", - "[INFO] [1712349617.156867]: Inverse Restrictions: []\n", - "[INFO] [1712349617.157107]: -------------------\n", - "[INFO] [1712349617.157342]: SOMA.Linkage \n", - "[INFO] [1712349617.157582]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712349617.157841]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Linkage, SOMA.Connectivity, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.158094]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712349617.158386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.158879]: Instances: []\n", - "[INFO] [1712349617.159142]: Direct Instances: []\n", - "[INFO] [1712349617.159865]: Inverse Restrictions: []\n", - "[INFO] [1712349617.160238]: -------------------\n", - "[INFO] [1712349617.160528]: SOMA.Clumsiness \n", - "[INFO] [1712349617.160836]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712349617.161096]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.Clumsiness, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.161370]: Subclasses: []\n", - "[INFO] [1712349617.161683]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.162169]: Instances: []\n", - "[INFO] [1712349617.162445]: Direct Instances: []\n", - "[INFO] [1712349617.162704]: Inverse Restrictions: []\n", - "[INFO] [1712349617.162940]: -------------------\n", - "[INFO] [1712349617.163173]: SOMA.CognitiveAgent \n", - "[INFO] [1712349617.163404]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712349617.163640]: Ancestors: {SOMA.CognitiveAgent, DUL.Agent, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.163893]: Subclasses: []\n", - "[INFO] [1712349617.164191]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.164666]: Instances: []\n", - "[INFO] [1712349617.164941]: Direct Instances: []\n", - "[INFO] [1712349617.165208]: Inverse Restrictions: []\n", - "[INFO] [1712349617.165445]: -------------------\n", - "[INFO] [1712349617.165673]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712349617.165941]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712349617.166194]: Ancestors: {DUL.Agent, DUL.Object, DUL.Entity, SOMA.SubCognitiveAgent, owl.Thing}\n", - "[INFO] [1712349617.166443]: Subclasses: []\n", - "[INFO] [1712349617.166731]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.167204]: Instances: []\n", - "[INFO] [1712349617.167465]: Direct Instances: []\n", - "[INFO] [1712349617.167721]: Inverse Restrictions: []\n", - "[INFO] [1712349617.167956]: -------------------\n", - "[INFO] [1712349617.168183]: SOMA.Collision \n", - "[INFO] [1712349617.168408]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712349617.168642]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Collision, owl.Thing}\n", - "[INFO] [1712349617.168907]: Subclasses: []\n", - "[INFO] [1712349617.169200]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.169698]: Instances: []\n", - "[INFO] [1712349617.169958]: Direct Instances: []\n", - "[INFO] [1712349617.170211]: Inverse Restrictions: []\n", - "[INFO] [1712349617.170454]: -------------------\n", - "[INFO] [1712349617.170691]: SOMA.Extrinsic \n", - "[INFO] [1712349617.170924]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712349617.171174]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Extrinsic}\n", - "[INFO] [1712349617.171427]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712349617.171721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.172264]: Instances: []\n", - "[INFO] [1712349617.172540]: Direct Instances: []\n", - "[INFO] [1712349617.172808]: Inverse Restrictions: []\n", - "[INFO] [1712349617.173057]: -------------------\n", - "[INFO] [1712349617.173299]: SOMA.ImperativeClause \n", - "[INFO] [1712349617.173553]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712349617.173819]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ImperativeClause, owl.Thing, SOMA.ClausalObject, SOMA.Phrase}\n", - "[INFO] [1712349617.174068]: Subclasses: []\n", - "[INFO] [1712349617.174361]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", - "[INFO] [1712349617.174847]: Instances: []\n", - "[INFO] [1712349617.175117]: Direct Instances: []\n", - "[INFO] [1712349617.175411]: Inverse Restrictions: []\n", - "[INFO] [1712349617.175656]: -------------------\n", - "[INFO] [1712349617.175891]: SOMA.CommitedObject \n", - "[INFO] [1712349617.176132]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712349617.176418]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.CommitedObject, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.176665]: Subclasses: []\n", - "[INFO] [1712349617.176954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.177438]: Instances: []\n", - "[INFO] [1712349617.177709]: Direct Instances: []\n", - "[INFO] [1712349617.177969]: Inverse Restrictions: []\n", - "[INFO] [1712349617.178207]: -------------------\n", - "[INFO] [1712349617.178442]: SOMA.ConnectedObject \n", - "[INFO] [1712349617.178673]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.178915]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.179181]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712349617.179477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.179977]: Instances: []\n", - "[INFO] [1712349617.180231]: Direct Instances: []\n", - "[INFO] [1712349617.180582]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712349617.180835]: -------------------\n", - "[INFO] [1712349617.181078]: SOMA.CommunicationAction \n", - "[INFO] [1712349617.181320]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712349617.181563]: Ancestors: {SOMA.CommunicationAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712349617.181799]: Subclasses: []\n", - "[INFO] [1712349617.182112]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349617.182647]: Instances: []\n", - "[INFO] [1712349617.182934]: Direct Instances: []\n", - "[INFO] [1712349617.183244]: Inverse Restrictions: []\n", - "[INFO] [1712349617.183499]: -------------------\n", - "[INFO] [1712349617.183742]: SOMA.LinguisticObject \n", - "[INFO] [1712349617.183984]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712349617.184243]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.184496]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712349617.184790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.185285]: Instances: []\n", - "[INFO] [1712349617.185562]: Direct Instances: []\n", - "[INFO] [1712349617.185860]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712349617.186106]: -------------------\n", - "[INFO] [1712349617.186349]: SOMA.CommunicationReport \n", - "[INFO] [1712349617.186586]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349617.186841]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing, SOMA.CommunicationReport}\n", - "[INFO] [1712349617.187103]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712349617.187393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.187872]: Instances: []\n", - "[INFO] [1712349617.188122]: Direct Instances: []\n", - "[INFO] [1712349617.188378]: Inverse Restrictions: []\n", - "[INFO] [1712349617.188614]: -------------------\n", - "[INFO] [1712349617.188867]: SOMA.Receiver \n", - "[INFO] [1712349617.189109]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712349617.189368]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.Receiver, SOMA.ExperiencerRole, DUL.Role}\n", - "[INFO] [1712349617.189618]: Subclasses: []\n", - "[INFO] [1712349617.189910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", - "[INFO] [1712349617.190393]: Instances: []\n", - "[INFO] [1712349617.190662]: Direct Instances: []\n", - "[INFO] [1712349617.190978]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349617.191228]: -------------------\n", - "[INFO] [1712349617.191465]: SOMA.Sender \n", - "[INFO] [1712349617.191701]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712349617.191962]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, SOMA.Sender, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.192210]: Subclasses: []\n", - "[INFO] [1712349617.192503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasTask, rdf-schema.label]\n", - "[INFO] [1712349617.192997]: Instances: []\n", - "[INFO] [1712349617.193270]: Direct Instances: []\n", - "[INFO] [1712349617.193594]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349617.193841]: -------------------\n", - "[INFO] [1712349617.194079]: SOMA.CommunicationTopic \n", - "[INFO] [1712349617.194327]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712349617.194594]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.194858]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349617.195157]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.195666]: Instances: []\n", - "[INFO] [1712349617.195932]: Direct Instances: []\n", - "[INFO] [1712349617.196193]: Inverse Restrictions: []\n", - "[INFO] [1712349617.196433]: -------------------\n", - "[INFO] [1712349617.196666]: SOMA.ResourceRole \n", - "[INFO] [1712349617.196899]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349617.197140]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.197402]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712349617.197692]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.198229]: Instances: []\n", - "[INFO] [1712349617.198494]: Direct Instances: []\n", - "[INFO] [1712349617.198746]: Inverse Restrictions: []\n", - "[INFO] [1712349617.198989]: -------------------\n", - "[INFO] [1712349617.199258]: SOMA.Composing \n", - "[INFO] [1712349617.199524]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712349617.199788]: Ancestors: {SOMA.Composing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.200038]: Subclasses: []\n", - "[INFO] [1712349617.200325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.200809]: Instances: []\n", - "[INFO] [1712349617.201087]: Direct Instances: []\n", - "[INFO] [1712349617.201380]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712349617.201625]: -------------------\n", - "[INFO] [1712349617.201862]: SOMA.Computer_Language \n", - "[INFO] [1712349617.202096]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712349617.202343]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712349617.202610]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712349617.202901]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.203410]: Instances: []\n", - "[INFO] [1712349617.203680]: Direct Instances: []\n", - "[INFO] [1712349617.203944]: Inverse Restrictions: []\n", - "[INFO] [1712349617.204184]: -------------------\n", - "[INFO] [1712349617.204418]: SOMA.FormalLanguage \n", - "[INFO] [1712349617.204664]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712349617.204924]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712349617.205176]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349617.205465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.205978]: Instances: []\n", - "[INFO] [1712349617.206255]: Direct Instances: []\n", - "[INFO] [1712349617.206572]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712349617.206822]: -------------------\n", - "[INFO] [1712349617.207063]: SOMA.Computer_Program \n", - "[INFO] [1712349617.207302]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.207553]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712349617.207807]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712349617.208098]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, DUL.expresses]\n", - "[INFO] [1712349617.208591]: Instances: []\n", - "[INFO] [1712349617.208867]: Direct Instances: []\n", - "[INFO] [1712349617.209238]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712349617.209488]: -------------------\n", - "[INFO] [1712349617.209728]: SOMA.Programming_Language \n", - "[INFO] [1712349617.209972]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712349617.210227]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Programming_Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712349617.210480]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712349617.210768]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.211254]: Instances: []\n", - "[INFO] [1712349617.211525]: Direct Instances: []\n", - "[INFO] [1712349617.211838]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712349617.212081]: -------------------\n", - "[INFO] [1712349617.212318]: SOMA.Conclusion \n", - "[INFO] [1712349617.212554]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712349617.212806]: Ancestors: {SOMA.Patient, DUL.SocialObject, SOMA.Conclusion, SOMA.EventAdjacentRole, DUL.Concept, DUL.Object, SOMA.Knowledge, DUL.Entity, SOMA.CreatedObject, owl.Thing, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349617.213067]: Subclasses: []\n", - "[INFO] [1712349617.213363]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.213849]: Instances: []\n", - "[INFO] [1712349617.214102]: Direct Instances: []\n", - "[INFO] [1712349617.214409]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349617.214663]: -------------------\n", - "[INFO] [1712349617.214904]: SOMA.CreatedObject \n", - "[INFO] [1712349617.215143]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.215389]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.CreatedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.215646]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712349617.215981]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.216477]: Instances: []\n", - "[INFO] [1712349617.216730]: Direct Instances: []\n", - "[INFO] [1712349617.217021]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712349617.217277]: -------------------\n", - "[INFO] [1712349617.217516]: SOMA.Knowledge \n", - "[INFO] [1712349617.217747]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712349617.217989]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349617.218247]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712349617.218532]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712349617.219037]: Instances: []\n", - "[INFO] [1712349617.219298]: Direct Instances: []\n", - "[INFO] [1712349617.219725]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712349617.219973]: -------------------\n", - "[INFO] [1712349617.220199]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712349617.220448]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712349617.220696]: Ancestors: {DUL.Description, SOMA.ConditionalSuccedence, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Succedence, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349617.220945]: Subclasses: []\n", - "[INFO] [1712349617.221236]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.221733]: Instances: []\n", - "[INFO] [1712349617.222000]: Direct Instances: []\n", - "[INFO] [1712349617.222244]: Inverse Restrictions: []\n", - "[INFO] [1712349617.222476]: -------------------\n", - "[INFO] [1712349617.222703]: SOMA.Configuration \n", - "[INFO] [1712349617.222931]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712349617.223182]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Configuration}\n", - "[INFO] [1712349617.223427]: Subclasses: []\n", - "[INFO] [1712349617.223715]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", - "[INFO] [1712349617.224211]: Instances: []\n", - "[INFO] [1712349617.224475]: Direct Instances: []\n", - "[INFO] [1712349617.224717]: Inverse Restrictions: []\n", - "[INFO] [1712349617.224954]: -------------------\n", - "[INFO] [1712349617.225200]: SOMA.Connectivity \n", - "[INFO] [1712349617.225439]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712349617.225680]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic}\n", - "[INFO] [1712349617.225927]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712349617.226214]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.226712]: Instances: []\n", - "[INFO] [1712349617.226986]: Direct Instances: []\n", - "[INFO] [1712349617.227281]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712349617.227515]: -------------------\n", - "[INFO] [1712349617.227749]: SOMA.ContactState \n", - "[INFO] [1712349617.228000]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712349617.228248]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ContactState, owl.Thing}\n", - "[INFO] [1712349617.228487]: Subclasses: []\n", - "[INFO] [1712349617.228778]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.229275]: Instances: []\n", - "[INFO] [1712349617.229544]: Direct Instances: []\n", - "[INFO] [1712349617.229789]: Inverse Restrictions: []\n", - "[INFO] [1712349617.230019]: -------------------\n", - "[INFO] [1712349617.230242]: SOMA.Container \n", - "[INFO] [1712349617.230481]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712349617.230726]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, SOMA.Container, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.230965]: Subclasses: []\n", - "[INFO] [1712349617.231244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.231739]: Instances: []\n", - "[INFO] [1712349617.232002]: Direct Instances: []\n", - "[INFO] [1712349617.232333]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712349617.232614]: -------------------\n", - "[INFO] [1712349617.232884]: SOMA.Containment \n", - "[INFO] [1712349617.233141]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712349617.233387]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.233643]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712349617.233936]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.234419]: Instances: []\n", - "[INFO] [1712349617.234697]: Direct Instances: []\n", - "[INFO] [1712349617.235090]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712349617.235336]: -------------------\n", - "[INFO] [1712349617.235571]: SOMA.IncludedObject \n", - "[INFO] [1712349617.235802]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.236069]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", - "[INFO] [1712349617.236330]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712349617.236627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.237474]: Instances: []\n", - "[INFO] [1712349617.237787]: Direct Instances: []\n", - "[INFO] [1712349617.238091]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712349617.238333]: -------------------\n", - "[INFO] [1712349617.238569]: SOMA.ContainmentState \n", - "[INFO] [1712349617.238810]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712349617.239069]: Ancestors: {SOMA.StateType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ContainmentState, SOMA.FunctionalControl, owl.Thing}\n", - "[INFO] [1712349617.239318]: Subclasses: []\n", - "[INFO] [1712349617.239609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349617.240106]: Instances: []\n", - "[INFO] [1712349617.240376]: Direct Instances: []\n", - "[INFO] [1712349617.240623]: Inverse Restrictions: []\n", - "[INFO] [1712349617.240863]: -------------------\n", - "[INFO] [1712349617.241094]: SOMA.FunctionalControl \n", - "[INFO] [1712349617.241341]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712349617.241585]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.FunctionalControl, owl.Thing}\n", - "[INFO] [1712349617.241838]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712349617.242149]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349617.242639]: Instances: []\n", - "[INFO] [1712349617.242898]: Direct Instances: []\n", - "[INFO] [1712349617.243160]: Inverse Restrictions: []\n", - "[INFO] [1712349617.243395]: -------------------\n", - "[INFO] [1712349617.243629]: SOMA.ContainmentTheory \n", - "[INFO] [1712349617.243855]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712349617.244093]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.244348]: Subclasses: []\n", - "[INFO] [1712349617.244642]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.245140]: Instances: []\n", - "[INFO] [1712349617.245413]: Direct Instances: []\n", - "[INFO] [1712349617.245670]: Inverse Restrictions: []\n", - "[INFO] [1712349617.245904]: -------------------\n", - "[INFO] [1712349617.246135]: SOMA.ControlTheory \n", - "[INFO] [1712349617.246360]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712349617.246610]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.246870]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712349617.247158]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.247638]: Instances: []\n", - "[INFO] [1712349617.247921]: Direct Instances: []\n", - "[INFO] [1712349617.248184]: Inverse Restrictions: []\n", - "[INFO] [1712349617.248416]: -------------------\n", - "[INFO] [1712349617.248648]: SOMA.ContinuousJoint \n", - "[INFO] [1712349617.248880]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712349617.249121]: Ancestors: {SOMA.Joint, SOMA.ContinuousJoint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.249407]: Subclasses: []\n", - "[INFO] [1712349617.249722]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.250211]: Instances: []\n", - "[INFO] [1712349617.250485]: Direct Instances: []\n", - "[INFO] [1712349617.250743]: Inverse Restrictions: []\n", - "[INFO] [1712349617.250975]: -------------------\n", - "[INFO] [1712349617.251203]: SOMA.HingeJoint \n", - "[INFO] [1712349617.251428]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712349617.251675]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.251934]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712349617.252222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.252730]: Instances: []\n", - "[INFO] [1712349617.253014]: Direct Instances: []\n", - "[INFO] [1712349617.253271]: Inverse Restrictions: []\n", - "[INFO] [1712349617.253505]: -------------------\n", - "[INFO] [1712349617.253732]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712349617.253968]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712349617.254219]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.254476]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712349617.254769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.255257]: Instances: []\n", - "[INFO] [1712349617.255535]: Direct Instances: []\n", - "[INFO] [1712349617.255796]: Inverse Restrictions: []\n", - "[INFO] [1712349617.256032]: -------------------\n", - "[INFO] [1712349617.256266]: SOMA.Cover \n", - "[INFO] [1712349617.256510]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712349617.256785]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role, SOMA.Cover}\n", - "[INFO] [1712349617.257041]: Subclasses: []\n", - "[INFO] [1712349617.257324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.257794]: Instances: []\n", - "[INFO] [1712349617.258064]: Direct Instances: []\n", - "[INFO] [1712349617.258355]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712349617.258589]: -------------------\n", - "[INFO] [1712349617.258824]: SOMA.Coverage \n", - "[INFO] [1712349617.259068]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712349617.259306]: Ancestors: {SOMA.PhysicalQuality, SOMA.Coverage, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.259564]: Subclasses: []\n", - "[INFO] [1712349617.259862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.260355]: Instances: []\n", - "[INFO] [1712349617.260618]: Direct Instances: []\n", - "[INFO] [1712349617.260872]: Inverse Restrictions: []\n", - "[INFO] [1712349617.261111]: -------------------\n", - "[INFO] [1712349617.261346]: SOMA.CoveredObject \n", - "[INFO] [1712349617.261573]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712349617.261810]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.CoveredObject, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.262044]: Subclasses: []\n", - "[INFO] [1712349617.262337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.262818]: Instances: []\n", - "[INFO] [1712349617.263069]: Direct Instances: []\n", - "[INFO] [1712349617.263358]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712349617.263615]: -------------------\n", - "[INFO] [1712349617.263853]: SOMA.CoverageTheory \n", - "[INFO] [1712349617.264084]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712349617.264325]: Ancestors: {DUL.Description, SOMA.CoverageTheory, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.264575]: Subclasses: []\n", - "[INFO] [1712349617.264872]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.265355]: Instances: []\n", - "[INFO] [1712349617.265607]: Direct Instances: []\n", - "[INFO] [1712349617.265864]: Inverse Restrictions: []\n", - "[INFO] [1712349617.266159]: -------------------\n", - "[INFO] [1712349617.266404]: SOMA.CoveringTheory \n", - "[INFO] [1712349617.266646]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712349617.266889]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, SOMA.CoveringTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349617.267142]: Subclasses: []\n", - "[INFO] [1712349617.267442]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.267923]: Instances: []\n", - "[INFO] [1712349617.268181]: Direct Instances: []\n", - "[INFO] [1712349617.268424]: Inverse Restrictions: []\n", - "[INFO] [1712349617.268653]: -------------------\n", - "[INFO] [1712349617.268898]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712349617.269134]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712349617.269381]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349617.269646]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712349617.269952]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.270446]: Instances: []\n", - "[INFO] [1712349617.270692]: Direct Instances: []\n", - "[INFO] [1712349617.270939]: Inverse Restrictions: []\n", - "[INFO] [1712349617.271162]: -------------------\n", - "[INFO] [1712349617.271399]: SOMA.CrackingTheory \n", - "[INFO] [1712349617.271642]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712349617.271881]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.CrackingTheory, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349617.272118]: Subclasses: []\n", - "[INFO] [1712349617.272407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.272913]: Instances: []\n", - "[INFO] [1712349617.273185]: Direct Instances: []\n", - "[INFO] [1712349617.273431]: Inverse Restrictions: []\n", - "[INFO] [1712349617.273661]: -------------------\n", - "[INFO] [1712349617.273888]: SOMA.Creation \n", - "[INFO] [1712349617.274121]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712349617.274372]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Creation, owl.Thing}\n", - "[INFO] [1712349617.274617]: Subclasses: []\n", - "[INFO] [1712349617.274913]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349617.275401]: Instances: []\n", - "[INFO] [1712349617.275665]: Direct Instances: []\n", - "[INFO] [1712349617.275916]: Inverse Restrictions: []\n", - "[INFO] [1712349617.276145]: -------------------\n", - "[INFO] [1712349617.276381]: SOMA.Insertion \n", - "[INFO] [1712349617.276615]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712349617.276862]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, SOMA.Insertion, DUL.Entity, SOMA.Enclosing, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.277115]: Subclasses: []\n", - "[INFO] [1712349617.277408]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.277887]: Instances: []\n", - "[INFO] [1712349617.278161]: Direct Instances: []\n", - "[INFO] [1712349617.278500]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712349617.278736]: -------------------\n", - "[INFO] [1712349617.278967]: SOMA.DesignedFurniture \n", - "[INFO] [1712349617.279194]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712349617.279433]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedFurniture, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349617.279695]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712349617.279985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.280479]: Instances: []\n", - "[INFO] [1712349617.280761]: Direct Instances: []\n", - "[INFO] [1712349617.281034]: Inverse Restrictions: []\n", - "[INFO] [1712349617.281274]: -------------------\n", - "[INFO] [1712349617.281504]: SOMA.Cuttability \n", - "[INFO] [1712349617.281748]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712349617.282212]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Cuttability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.282647]: Subclasses: []\n", - "[INFO] [1712349617.283113]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.283726]: Instances: []\n", - "[INFO] [1712349617.284127]: Direct Instances: []\n", - "[INFO] [1712349617.284506]: Inverse Restrictions: []\n", - "[INFO] [1712349617.284868]: -------------------\n", - "[INFO] [1712349617.285220]: SOMA.Tool \n", - "[INFO] [1712349617.285569]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712349617.285851]: Ancestors: {SOMA.Tool, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.286114]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712349617.286405]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.286885]: Instances: []\n", - "[INFO] [1712349617.287158]: Direct Instances: []\n", - "[INFO] [1712349617.287454]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712349617.287690]: -------------------\n", - "[INFO] [1712349617.287917]: SOMA.Cutting \n", - "[INFO] [1712349617.288142]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712349617.288378]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.288644]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712349617.288940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.289424]: Instances: []\n", - "[INFO] [1712349617.289675]: Direct Instances: []\n", - "[INFO] [1712349617.289926]: Inverse Restrictions: []\n", - "[INFO] [1712349617.290165]: -------------------\n", - "[INFO] [1712349617.290399]: SOMA.DesignedTool \n", - "[INFO] [1712349617.290627]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712349617.290861]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349617.291102]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712349617.291399]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.291945]: Instances: []\n", - "[INFO] [1712349617.292215]: Direct Instances: []\n", - "[INFO] [1712349617.292466]: Inverse Restrictions: []\n", - "[INFO] [1712349617.292706]: -------------------\n", - "[INFO] [1712349617.293062]: SOMA.Shaping \n", - "[INFO] [1712349617.293383]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712349617.293669]: Ancestors: {SOMA.PhysicalQuality, SOMA.Shaping, DUL.Quality, DUL.Entity, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.293941]: Subclasses: []\n", - "[INFO] [1712349617.294255]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.294760]: Instances: []\n", - "[INFO] [1712349617.295052]: Direct Instances: []\n", - "[INFO] [1712349617.295343]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712349617.295584]: -------------------\n", - "[INFO] [1712349617.295820]: SOMA.Database \n", - "[INFO] [1712349617.296051]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349617.296308]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", - "[INFO] [1712349617.296573]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712349617.296867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.297358]: Instances: []\n", - "[INFO] [1712349617.297643]: Direct Instances: []\n", - "[INFO] [1712349617.297910]: Inverse Restrictions: []\n", - "[INFO] [1712349617.298145]: -------------------\n", - "[INFO] [1712349617.298373]: SOMA.SoftwareRole \n", - "[INFO] [1712349617.298604]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712349617.298836]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.299105]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712349617.299453]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.299979]: Instances: []\n", - "[INFO] [1712349617.300260]: Direct Instances: []\n", - "[INFO] [1712349617.300565]: Inverse Restrictions: []\n", - "[INFO] [1712349617.300819]: -------------------\n", - "[INFO] [1712349617.301066]: SOMA.Deciding \n", - "[INFO] [1712349617.301336]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349617.301600]: Ancestors: {owl.Thing, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.301857]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712349617.302145]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.302638]: Instances: []\n", - "[INFO] [1712349617.302929]: Direct Instances: []\n", - "[INFO] [1712349617.303200]: Inverse Restrictions: []\n", - "[INFO] [1712349617.303436]: -------------------\n", - "[INFO] [1712349617.303666]: SOMA.DerivingInformation \n", - "[INFO] [1712349617.303903]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712349617.304137]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.304411]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712349617.304707]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isTaskOfInputRole, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712349617.305233]: Instances: []\n", - "[INFO] [1712349617.305516]: Direct Instances: []\n", - "[INFO] [1712349617.305784]: Inverse Restrictions: []\n", - "[INFO] [1712349617.306020]: -------------------\n", - "[INFO] [1712349617.306252]: SOMA.DeductiveReasoning \n", - "[INFO] [1712349617.306475]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712349617.306711]: Ancestors: {SOMA.InformationAcquisition, SOMA.DeductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.306958]: Subclasses: []\n", - "[INFO] [1712349617.307247]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.307715]: Instances: []\n", - "[INFO] [1712349617.307965]: Direct Instances: []\n", - "[INFO] [1712349617.308209]: Inverse Restrictions: []\n", - "[INFO] [1712349617.308450]: -------------------\n", - "[INFO] [1712349617.308686]: SOMA.Deformation \n", - "[INFO] [1712349617.308923]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712349617.309162]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.Deformation, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.309410]: Subclasses: []\n", - "[INFO] [1712349617.309710]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf]\n", - "[INFO] [1712349617.310193]: Instances: []\n", - "[INFO] [1712349617.310458]: Direct Instances: []\n", - "[INFO] [1712349617.310706]: Inverse Restrictions: []\n", - "[INFO] [1712349617.310935]: -------------------\n", - "[INFO] [1712349617.311163]: SOMA.ShapedObject \n", - "[INFO] [1712349617.311413]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712349617.311660]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ShapedObject, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", - "[INFO] [1712349617.311897]: Subclasses: []\n", - "[INFO] [1712349617.312182]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.312678]: Instances: []\n", - "[INFO] [1712349617.312940]: Direct Instances: []\n", - "[INFO] [1712349617.313256]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712349617.313494]: -------------------\n", - "[INFO] [1712349617.313722]: SOMA.FluidFlow \n", - "[INFO] [1712349617.313954]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712349617.314205]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.FluidFlow, owl.Thing}\n", - "[INFO] [1712349617.314447]: Subclasses: []\n", - "[INFO] [1712349617.314736]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349617.315236]: Instances: []\n", - "[INFO] [1712349617.315508]: Direct Instances: []\n", - "[INFO] [1712349617.315769]: Inverse Restrictions: []\n", - "[INFO] [1712349617.316048]: -------------------\n", - "[INFO] [1712349617.316290]: SOMA.Shifting \n", - "[INFO] [1712349617.316542]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712349617.316789]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Shifting, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.317037]: Subclasses: []\n", - "[INFO] [1712349617.317325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.317828]: Instances: []\n", - "[INFO] [1712349617.318100]: Direct Instances: []\n", - "[INFO] [1712349617.318417]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712349617.318649]: -------------------\n", - "[INFO] [1712349617.318882]: SOMA.DependentPlace \n", - "[INFO] [1712349617.319121]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712349617.319363]: Ancestors: {SOMA.Feature, DUL.Object, SOMA.DependentPlace, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.319604]: Subclasses: []\n", - "[INFO] [1712349617.319888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.320405]: Instances: []\n", - "[INFO] [1712349617.320677]: Direct Instances: []\n", - "[INFO] [1712349617.320941]: Inverse Restrictions: []\n", - "[INFO] [1712349617.321182]: -------------------\n", - "[INFO] [1712349617.321413]: SOMA.Deposit \n", - "[INFO] [1712349617.321640]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712349617.321873]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.ResourceRole, SOMA.Deposit, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.322105]: Subclasses: []\n", - "[INFO] [1712349617.322392]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.322871]: Instances: []\n", - "[INFO] [1712349617.323126]: Direct Instances: []\n", - "[INFO] [1712349617.323406]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712349617.323655]: -------------------\n", - "[INFO] [1712349617.323889]: SOMA.DepositedObject \n", - "[INFO] [1712349617.324117]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.324352]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.DepositedObject, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.324594]: Subclasses: []\n", - "[INFO] [1712349617.324890]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.325381]: Instances: []\n", - "[INFO] [1712349617.325630]: Direct Instances: []\n", - "[INFO] [1712349617.325916]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712349617.326164]: -------------------\n", - "[INFO] [1712349617.326403]: SOMA.InformationAcquisition \n", - "[INFO] [1712349617.326635]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.326865]: Ancestors: {owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712349617.327122]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712349617.327424]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712349617.327955]: Instances: []\n", - "[INFO] [1712349617.328226]: Direct Instances: []\n", - "[INFO] [1712349617.328528]: Inverse Restrictions: []\n", - "[INFO] [1712349617.328762]: -------------------\n", - "[INFO] [1712349617.329001]: SOMA.Premise \n", - "[INFO] [1712349617.329233]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712349617.329473]: Ancestors: {SOMA.Premise, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, SOMA.Item}\n", - "[INFO] [1712349617.329727]: Subclasses: []\n", - "[INFO] [1712349617.330017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.330496]: Instances: []\n", - "[INFO] [1712349617.330744]: Direct Instances: []\n", - "[INFO] [1712349617.331041]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349617.331294]: -------------------\n", - "[INFO] [1712349617.331536]: SOMA.FunctionalPart \n", - "[INFO] [1712349617.331778]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712349617.332016]: Ancestors: {SOMA.FunctionalPart, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.332267]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712349617.332568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.333130]: Instances: []\n", - "[INFO] [1712349617.333417]: Direct Instances: []\n", - "[INFO] [1712349617.333687]: Inverse Restrictions: []\n", - "[INFO] [1712349617.333921]: -------------------\n", - "[INFO] [1712349617.334152]: SOMA.Graspability \n", - "[INFO] [1712349617.334378]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712349617.334613]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Graspability, SOMA.Extrinsic}\n", - "[INFO] [1712349617.334864]: Subclasses: []\n", - "[INFO] [1712349617.335155]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.335635]: Instances: []\n", - "[INFO] [1712349617.335888]: Direct Instances: []\n", - "[INFO] [1712349617.336161]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712349617.336418]: -------------------\n", - "[INFO] [1712349617.336662]: SOMA.Destination \n", - "[INFO] [1712349617.337012]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712349617.337328]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Role}\n", - "[INFO] [1712349617.337612]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712349617.337929]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.338440]: Instances: []\n", - "[INFO] [1712349617.338717]: Direct Instances: []\n", - "[INFO] [1712349617.339045]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712349617.339296]: -------------------\n", - "[INFO] [1712349617.339545]: SOMA.Location \n", - "[INFO] [1712349617.339785]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712349617.340029]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Location, DUL.Role}\n", - "[INFO] [1712349617.340286]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712349617.340578]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.341086]: Instances: []\n", - "[INFO] [1712349617.341362]: Direct Instances: []\n", - "[INFO] [1712349617.341622]: Inverse Restrictions: []\n", - "[INFO] [1712349617.341853]: -------------------\n", - "[INFO] [1712349617.342084]: SOMA.DestroyedObject \n", - "[INFO] [1712349617.342325]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.342569]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.DestroyedObject, DUL.Role}\n", - "[INFO] [1712349617.342808]: Subclasses: []\n", - "[INFO] [1712349617.343092]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.343564]: Instances: []\n", - "[INFO] [1712349617.343832]: Direct Instances: []\n", - "[INFO] [1712349617.344130]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712349617.344370]: -------------------\n", - "[INFO] [1712349617.344602]: SOMA.Destruction \n", - "[INFO] [1712349617.344837]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712349617.345099]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.Destruction, owl.Thing}\n", - "[INFO] [1712349617.345368]: Subclasses: []\n", - "[INFO] [1712349617.345674]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349617.346156]: Instances: []\n", - "[INFO] [1712349617.346413]: Direct Instances: []\n", - "[INFO] [1712349617.346653]: Inverse Restrictions: []\n", - "[INFO] [1712349617.346889]: -------------------\n", - "[INFO] [1712349617.347127]: SOMA.DetectedObject \n", - "[INFO] [1712349617.347364]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.347606]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.DetectedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.347844]: Subclasses: []\n", - "[INFO] [1712349617.348144]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.348634]: Instances: []\n", - "[INFO] [1712349617.348900]: Direct Instances: []\n", - "[INFO] [1712349617.349145]: Inverse Restrictions: []\n", - "[INFO] [1712349617.349437]: -------------------\n", - "[INFO] [1712349617.349687]: SOMA.DeviceState \n", - "[INFO] [1712349617.349921]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349617.350161]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.DeviceState, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712349617.350412]: Subclasses: []\n", - "[INFO] [1712349617.350725]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.351201]: Instances: []\n", - "[INFO] [1712349617.351451]: Direct Instances: []\n", - "[INFO] [1712349617.351702]: Inverse Restrictions: []\n", - "[INFO] [1712349617.351940]: -------------------\n", - "[INFO] [1712349617.352177]: SOMA.DeviceStateRange \n", - "[INFO] [1712349617.352410]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349617.352644]: Ancestors: {SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.352907]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712349617.353222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.353717]: Instances: []\n", - "[INFO] [1712349617.354007]: Direct Instances: []\n", - "[INFO] [1712349617.354272]: Inverse Restrictions: []\n", - "[INFO] [1712349617.354514]: -------------------\n", - "[INFO] [1712349617.354750]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712349617.354980]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712349617.355238]: Ancestors: {SOMA.DeviceTurnedOff, SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.355480]: Subclasses: []\n", - "[INFO] [1712349617.355763]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.356268]: Instances: []\n", - "[INFO] [1712349617.356539]: Direct Instances: []\n", - "[INFO] [1712349617.356825]: Inverse Restrictions: []\n", - "[INFO] [1712349617.357067]: -------------------\n", - "[INFO] [1712349617.357305]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712349617.357550]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712349617.357797]: Ancestors: {SOMA.DeviceStateRange, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOn}\n", - "[INFO] [1712349617.358040]: Subclasses: []\n", - "[INFO] [1712349617.358322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.358820]: Instances: []\n", - "[INFO] [1712349617.359094]: Direct Instances: []\n", - "[INFO] [1712349617.359385]: Inverse Restrictions: []\n", - "[INFO] [1712349617.359626]: -------------------\n", - "[INFO] [1712349617.359862]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712349617.360107]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712349617.360356]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.360600]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712349617.361360]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.361922]: Instances: []\n", - "[INFO] [1712349617.362212]: Direct Instances: []\n", - "[INFO] [1712349617.362480]: Inverse Restrictions: []\n", - "[INFO] [1712349617.362717]: -------------------\n", - "[INFO] [1712349617.362951]: SOMA.Dicing \n", - "[INFO] [1712349617.363175]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712349617.363430]: Ancestors: {SOMA.PhysicalTask, SOMA.ModifyingPhysicalObject, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing, SOMA.Dicing}\n", - "[INFO] [1712349617.363675]: Subclasses: []\n", - "[INFO] [1712349617.363962]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.364438]: Instances: []\n", - "[INFO] [1712349617.364707]: Direct Instances: []\n", - "[INFO] [1712349617.364972]: Inverse Restrictions: []\n", - "[INFO] [1712349617.365206]: -------------------\n", - "[INFO] [1712349617.365433]: SOMA.DirectedMotion \n", - "[INFO] [1712349617.365667]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712349617.365922]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.366205]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712349617.366507]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.367025]: Instances: []\n", - "[INFO] [1712349617.367302]: Direct Instances: []\n", - "[INFO] [1712349617.367564]: Inverse Restrictions: []\n", - "[INFO] [1712349617.367806]: -------------------\n", - "[INFO] [1712349617.368037]: SOMA.UndirectedMotion \n", - "[INFO] [1712349617.368292]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712349617.368544]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.UndirectedMotion, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.368792]: Subclasses: []\n", - "[INFO] [1712349617.369105]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.369602]: Instances: []\n", - "[INFO] [1712349617.369887]: Direct Instances: []\n", - "[INFO] [1712349617.370155]: Inverse Restrictions: []\n", - "[INFO] [1712349617.370408]: -------------------\n", - "[INFO] [1712349617.370649]: SOMA.Dirty \n", - "[INFO] [1712349617.370885]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712349617.371126]: Ancestors: {SOMA.Dirty, DUL.Region, DUL.Entity, SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.371385]: Subclasses: []\n", - "[INFO] [1712349617.371681]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.372164]: Instances: []\n", - "[INFO] [1712349617.372416]: Direct Instances: []\n", - "[INFO] [1712349617.372670]: Inverse Restrictions: []\n", - "[INFO] [1712349617.372916]: -------------------\n", - "[INFO] [1712349617.373156]: SOMA.Discourse \n", - "[INFO] [1712349617.373393]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712349617.373648]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, SOMA.Discourse, owl.Thing}\n", - "[INFO] [1712349617.373883]: Subclasses: []\n", - "[INFO] [1712349617.374172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.374671]: Instances: []\n", - "[INFO] [1712349617.374930]: Direct Instances: []\n", - "[INFO] [1712349617.375186]: Inverse Restrictions: []\n", - "[INFO] [1712349617.375424]: -------------------\n", - "[INFO] [1712349617.375654]: SOMA.Distancing \n", - "[INFO] [1712349617.375883]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712349617.376124]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Navigating, DUL.Entity, SOMA.Distancing, owl.Thing}\n", - "[INFO] [1712349617.376411]: Subclasses: []\n", - "[INFO] [1712349617.376702]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.377198]: Instances: []\n", - "[INFO] [1712349617.377477]: Direct Instances: []\n", - "[INFO] [1712349617.377733]: Inverse Restrictions: []\n", - "[INFO] [1712349617.377969]: -------------------\n", - "[INFO] [1712349617.378206]: SOMA.Dreaming \n", - "[INFO] [1712349617.378437]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349617.378683]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.378931]: Subclasses: []\n", - "[INFO] [1712349617.379225]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.379707]: Instances: []\n", - "[INFO] [1712349617.379977]: Direct Instances: []\n", - "[INFO] [1712349617.380233]: Inverse Restrictions: []\n", - "[INFO] [1712349617.380472]: -------------------\n", - "[INFO] [1712349617.380706]: SOMA.Driving \n", - "[INFO] [1712349617.380942]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349617.381195]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion, SOMA.Driving}\n", - "[INFO] [1712349617.381446]: Subclasses: []\n", - "[INFO] [1712349617.381745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.382228]: Instances: []\n", - "[INFO] [1712349617.382503]: Direct Instances: []\n", - "[INFO] [1712349617.382777]: Inverse Restrictions: []\n", - "[INFO] [1712349617.383020]: -------------------\n", - "[INFO] [1712349617.383260]: SOMA.Flying \n", - "[INFO] [1712349617.383493]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349617.383738]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.Flying, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.383996]: Subclasses: []\n", - "[INFO] [1712349617.384312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.384799]: Instances: []\n", - "[INFO] [1712349617.385056]: Direct Instances: []\n", - "[INFO] [1712349617.385324]: Inverse Restrictions: []\n", - "[INFO] [1712349617.385580]: -------------------\n", - "[INFO] [1712349617.385819]: SOMA.Swimming \n", - "[INFO] [1712349617.386054]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349617.386305]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Swimming, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.386559]: Subclasses: []\n", - "[INFO] [1712349617.386858]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.387349]: Instances: []\n", - "[INFO] [1712349617.387610]: Direct Instances: []\n", - "[INFO] [1712349617.387868]: Inverse Restrictions: []\n", - "[INFO] [1712349617.388109]: -------------------\n", - "[INFO] [1712349617.388344]: SOMA.Walking \n", - "[INFO] [1712349617.388584]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349617.388834]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Walking, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.389102]: Subclasses: []\n", - "[INFO] [1712349617.389400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.389888]: Instances: []\n", - "[INFO] [1712349617.390164]: Direct Instances: []\n", - "[INFO] [1712349617.390422]: Inverse Restrictions: []\n", - "[INFO] [1712349617.390669]: -------------------\n", - "[INFO] [1712349617.390920]: SOMA.Dropping \n", - "[INFO] [1712349617.391160]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.391408]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Dropping, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.391648]: Subclasses: []\n", - "[INFO] [1712349617.391942]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.392438]: Instances: []\n", - "[INFO] [1712349617.392710]: Direct Instances: []\n", - "[INFO] [1712349617.392966]: Inverse Restrictions: []\n", - "[INFO] [1712349617.393204]: -------------------\n", - "[INFO] [1712349617.393440]: SOMA.Placing \n", - "[INFO] [1712349617.393673]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349617.393929]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Placing, owl.Thing}\n", - "[INFO] [1712349617.394173]: Subclasses: []\n", - "[INFO] [1712349617.394458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.394932]: Instances: []\n", - "[INFO] [1712349617.395205]: Direct Instances: []\n", - "[INFO] [1712349617.395461]: Inverse Restrictions: []\n", - "[INFO] [1712349617.395701]: -------------------\n", - "[INFO] [1712349617.395939]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712349617.396183]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712349617.396446]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ESTSchemaTheory, DUL.Entity, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.396694]: Subclasses: []\n", - "[INFO] [1712349617.396999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.397505]: Instances: []\n", - "[INFO] [1712349617.397774]: Direct Instances: []\n", - "[INFO] [1712349617.398026]: Inverse Restrictions: []\n", - "[INFO] [1712349617.398266]: -------------------\n", - "[INFO] [1712349617.398499]: SOMA.ExistingObjectRole \n", - "[INFO] [1712349617.398736]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349617.398990]: Ancestors: {SOMA.ExistingObjectRole, DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.399237]: Subclasses: []\n", - "[INFO] [1712349617.399542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.400024]: Instances: []\n", - "[INFO] [1712349617.400290]: Direct Instances: []\n", - "[INFO] [1712349617.400584]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712349617.400832]: -------------------\n", - "[INFO] [1712349617.401180]: SOMA.Effort \n", - "[INFO] [1712349617.401450]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712349617.401823]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, owl.Thing, SOMA.Effort}\n", - "[INFO] [1712349617.402104]: Subclasses: []\n", - "[INFO] [1712349617.402404]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.402887]: Instances: []\n", - "[INFO] [1712349617.403270]: Direct Instances: []\n", - "[INFO] [1712349617.403557]: Inverse Restrictions: []\n", - "[INFO] [1712349617.403916]: -------------------\n", - "[INFO] [1712349617.404185]: SOMA.EnclosedObject \n", - "[INFO] [1712349617.404429]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712349617.404686]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", - "[INFO] [1712349617.404950]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712349617.405240]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.405729]: Instances: []\n", - "[INFO] [1712349617.406014]: Direct Instances: []\n", - "[INFO] [1712349617.406326]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712349617.406579]: -------------------\n", - "[INFO] [1712349617.406822]: SOMA.Enclosing \n", - "[INFO] [1712349617.407160]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712349617.407453]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Enclosing, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.407733]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712349617.408039]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.408535]: Instances: []\n", - "[INFO] [1712349617.408810]: Direct Instances: []\n", - "[INFO] [1712349617.409087]: Inverse Restrictions: []\n", - "[INFO] [1712349617.409342]: -------------------\n", - "[INFO] [1712349617.409582]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712349617.409908]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349617.410205]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712349617.410478]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712349617.410767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.411252]: Instances: []\n", - "[INFO] [1712349617.411523]: Direct Instances: []\n", - "[INFO] [1712349617.411792]: Inverse Restrictions: []\n", - "[INFO] [1712349617.412037]: -------------------\n", - "[INFO] [1712349617.412465]: SOMA.Manipulating \n", - "[INFO] [1712349617.412820]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712349617.413198]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.413572]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712349617.413888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.414398]: Instances: []\n", - "[INFO] [1712349617.414675]: Direct Instances: []\n", - "[INFO] [1712349617.414938]: Inverse Restrictions: []\n", - "[INFO] [1712349617.415183]: -------------------\n", - "[INFO] [1712349617.415431]: SOMA.Episode \n", - "[INFO] [1712349617.415670]: Super classes: [DUL.Situation]\n", - "[INFO] [1712349617.415909]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Episode}\n", - "[INFO] [1712349617.416320]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712349617.416713]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.417341]: Instances: []\n", - "[INFO] [1712349617.417671]: Direct Instances: []\n", - "[INFO] [1712349617.417963]: Inverse Restrictions: []\n", - "[INFO] [1712349617.418226]: -------------------\n", - "[INFO] [1712349617.418478]: SOMA.ExcludedObject \n", - "[INFO] [1712349617.418732]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.418996]: Ancestors: {SOMA.Patient, SOMA.ExcludedObject, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.419250]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712349617.419542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.420023]: Instances: []\n", - "[INFO] [1712349617.420291]: Direct Instances: []\n", - "[INFO] [1712349617.420595]: Inverse Restrictions: []\n", - "[INFO] [1712349617.420842]: -------------------\n", - "[INFO] [1712349617.421086]: SOMA.ExecutableFile \n", - "[INFO] [1712349617.421321]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.421572]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", - "[INFO] [1712349617.421823]: Subclasses: []\n", - "[INFO] [1712349617.422117]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.422597]: Instances: []\n", - "[INFO] [1712349617.422865]: Direct Instances: []\n", - "[INFO] [1712349617.423172]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712349617.423413]: -------------------\n", - "[INFO] [1712349617.423650]: SOMA.Executable_Code \n", - "[INFO] [1712349617.423887]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712349617.424115]: Ancestors: {owl.Thing, SOMA.Computer_Program, SOMA.Executable_Code}\n", - "[INFO] [1712349617.424365]: Subclasses: []\n", - "[INFO] [1712349617.424668]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.425181]: Instances: []\n", - "[INFO] [1712349617.425534]: Direct Instances: []\n", - "[INFO] [1712349617.425929]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712349617.426197]: -------------------\n", - "[INFO] [1712349617.426440]: SOMA.ExecutableFormat \n", - "[INFO] [1712349617.426687]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712349617.426941]: Ancestors: {SOMA.System, DUL.SocialObject, SOMA.ExecutableFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349617.427186]: Subclasses: []\n", - "[INFO] [1712349617.427469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.427962]: Instances: []\n", - "[INFO] [1712349617.428221]: Direct Instances: []\n", - "[INFO] [1712349617.428523]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712349617.428761]: -------------------\n", - "[INFO] [1712349617.429000]: SOMA.SchematicTheory \n", - "[INFO] [1712349617.429245]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712349617.429489]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.429739]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712349617.430021]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.430524]: Instances: []\n", - "[INFO] [1712349617.430791]: Direct Instances: []\n", - "[INFO] [1712349617.431047]: Inverse Restrictions: []\n", - "[INFO] [1712349617.431288]: -------------------\n", - "[INFO] [1712349617.431526]: SOMA.ExecutableSoftware \n", - "[INFO] [1712349617.431760]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.431995]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", - "[INFO] [1712349617.432243]: Subclasses: []\n", - "[INFO] [1712349617.432534]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasMember, rdf-schema.label]\n", - "[INFO] [1712349617.433014]: Instances: []\n", - "[INFO] [1712349617.433272]: Direct Instances: []\n", - "[INFO] [1712349617.433524]: Inverse Restrictions: []\n", - "[INFO] [1712349617.433769]: -------------------\n", - "[INFO] [1712349617.434016]: SOMA.Software \n", - "[INFO] [1712349617.434271]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712349617.434519]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.Software}\n", - "[INFO] [1712349617.434942]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712349617.435341]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.describes]\n", - "[INFO] [1712349617.435927]: Instances: []\n", - "[INFO] [1712349617.436288]: Direct Instances: []\n", - "[INFO] [1712349617.436844]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349617.437195]: -------------------\n", - "[INFO] [1712349617.437530]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712349617.437858]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712349617.438188]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.438549]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712349617.439090]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.439706]: Instances: []\n", - "[INFO] [1712349617.440062]: Direct Instances: []\n", - "[INFO] [1712349617.440353]: Inverse Restrictions: []\n", - "[INFO] [1712349617.440601]: -------------------\n", - "[INFO] [1712349617.440973]: SOMA.ExperiencerRole \n", - "[INFO] [1712349617.441300]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712349617.441642]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.PerformerRole, SOMA.CausativeRole, DUL.Entity, owl.Thing, SOMA.ExperiencerRole, DUL.Role}\n", - "[INFO] [1712349617.441994]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712349617.442377]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.442950]: Instances: []\n", - "[INFO] [1712349617.443293]: Direct Instances: []\n", - "[INFO] [1712349617.443661]: Inverse Restrictions: []\n", - "[INFO] [1712349617.443997]: -------------------\n", - "[INFO] [1712349617.444324]: SOMA.ExtractedObject \n", - "[INFO] [1712349617.444648]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.445018]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ExtractedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.445320]: Subclasses: []\n", - "[INFO] [1712349617.445629]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.446135]: Instances: []\n", - "[INFO] [1712349617.446405]: Direct Instances: []\n", - "[INFO] [1712349617.446660]: Inverse Restrictions: []\n", - "[INFO] [1712349617.446902]: -------------------\n", - "[INFO] [1712349617.447134]: SOMA.PhysicalQuality \n", - "[INFO] [1712349617.447382]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712349617.447639]: Ancestors: {DUL.Quality, SOMA.PhysicalQuality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.447897]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712349617.448191]: Properties: [rdf-schema.isDefinedBy, DUL.isQualityOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.448766]: Instances: []\n", - "[INFO] [1712349617.449112]: Direct Instances: []\n", - "[INFO] [1712349617.449398]: Inverse Restrictions: []\n", - "[INFO] [1712349617.449662]: -------------------\n", - "[INFO] [1712349617.449918]: SOMA.FailedAttempt \n", - "[INFO] [1712349617.450176]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712349617.450438]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis, SOMA.FailedAttempt}\n", - "[INFO] [1712349617.450697]: Subclasses: []\n", - "[INFO] [1712349617.450999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.451496]: Instances: []\n", - "[INFO] [1712349617.451759]: Direct Instances: []\n", - "[INFO] [1712349617.452004]: Inverse Restrictions: []\n", - "[INFO] [1712349617.452244]: -------------------\n", - "[INFO] [1712349617.452489]: SOMA.FaultySoftware \n", - "[INFO] [1712349617.452727]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712349617.452979]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349617.453220]: Subclasses: []\n", - "[INFO] [1712349617.453524]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.454017]: Instances: []\n", - "[INFO] [1712349617.454291]: Direct Instances: []\n", - "[INFO] [1712349617.454547]: Inverse Restrictions: []\n", - "[INFO] [1712349617.454796]: -------------------\n", - "[INFO] [1712349617.455035]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712349617.455271]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712349617.455517]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349617.455786]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712349617.456082]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.456570]: Instances: []\n", - "[INFO] [1712349617.456835]: Direct Instances: []\n", - "[INFO] [1712349617.457095]: Inverse Restrictions: []\n", - "[INFO] [1712349617.457347]: -------------------\n", - "[INFO] [1712349617.457588]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712349617.457823]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712349617.458075]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAcquiring, owl.Thing}\n", - "[INFO] [1712349617.458340]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712349617.458640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.459129]: Instances: []\n", - "[INFO] [1712349617.459388]: Direct Instances: []\n", - "[INFO] [1712349617.459648]: Inverse Restrictions: []\n", - "[INFO] [1712349617.459890]: -------------------\n", - "[INFO] [1712349617.460128]: SOMA.Finger \n", - "[INFO] [1712349617.460371]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712349617.460636]: Ancestors: {SOMA.FunctionalPart, SOMA.Finger, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", - "[INFO] [1712349617.460890]: Subclasses: []\n", - "[INFO] [1712349617.461181]: Properties: [rdf-schema.isDefinedBy, DUL.isPartOf, rdf-schema.comment]\n", - "[INFO] [1712349617.461683]: Instances: []\n", - "[INFO] [1712349617.461954]: Direct Instances: []\n", - "[INFO] [1712349617.462206]: Inverse Restrictions: []\n", - "[INFO] [1712349617.462441]: -------------------\n", - "[INFO] [1712349617.462687]: SOMA.Hand \n", - "[INFO] [1712349617.462924]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712349617.463175]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.Hand, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", - "[INFO] [1712349617.463416]: Subclasses: []\n", - "[INFO] [1712349617.463705]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.464211]: Instances: []\n", - "[INFO] [1712349617.464492]: Direct Instances: []\n", - "[INFO] [1712349617.464793]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712349617.465041]: -------------------\n", - "[INFO] [1712349617.465282]: SOMA.FixedJoint \n", - "[INFO] [1712349617.465522]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712349617.465784]: Ancestors: {SOMA.Joint, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, SOMA.FixedJoint, DUL.PhysicalObject}\n", - "[INFO] [1712349617.466038]: Subclasses: []\n", - "[INFO] [1712349617.466349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.466830]: Instances: []\n", - "[INFO] [1712349617.467105]: Direct Instances: []\n", - "[INFO] [1712349617.467397]: Inverse Restrictions: []\n", - "[INFO] [1712349617.467641]: -------------------\n", - "[INFO] [1712349617.467886]: SOMA.MovableJoint \n", - "[INFO] [1712349617.468145]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712349617.468404]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.468670]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712349617.468980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasJointState, rdf-schema.label]\n", - "[INFO] [1712349617.469502]: Instances: []\n", - "[INFO] [1712349617.469767]: Direct Instances: []\n", - "[INFO] [1712349617.470067]: Inverse Restrictions: []\n", - "[INFO] [1712349617.470309]: -------------------\n", - "[INFO] [1712349617.470546]: SOMA.Flipping \n", - "[INFO] [1712349617.470798]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712349617.471060]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Flipping, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.471305]: Subclasses: []\n", - "[INFO] [1712349617.471596]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349617.472097]: Instances: []\n", - "[INFO] [1712349617.472367]: Direct Instances: []\n", - "[INFO] [1712349617.472618]: Inverse Restrictions: []\n", - "[INFO] [1712349617.472860]: -------------------\n", - "[INFO] [1712349617.473118]: SOMA.FloatingJoint \n", - "[INFO] [1712349617.473376]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712349617.473631]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, SOMA.FloatingJoint, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.473873]: Subclasses: []\n", - "[INFO] [1712349617.474158]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.474662]: Instances: []\n", - "[INFO] [1712349617.474929]: Direct Instances: []\n", - "[INFO] [1712349617.475186]: Inverse Restrictions: []\n", - "[INFO] [1712349617.475428]: -------------------\n", - "[INFO] [1712349617.475667]: SOMA.Fluid \n", - "[INFO] [1712349617.475904]: Super classes: [DUL.Substance]\n", - "[INFO] [1712349617.476165]: Ancestors: {SOMA.Fluid, DUL.Substance, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.476428]: Subclasses: []\n", - "[INFO] [1712349617.476720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.477298]: Instances: []\n", - "[INFO] [1712349617.477638]: Direct Instances: []\n", - "[INFO] [1712349617.477924]: Inverse Restrictions: []\n", - "[INFO] [1712349617.478175]: -------------------\n", - "[INFO] [1712349617.478574]: SOMA.MovedObject \n", - "[INFO] [1712349617.478916]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712349617.479287]: Ancestors: {SOMA.MovedObject, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.AlteredObject}\n", - "[INFO] [1712349617.479633]: Subclasses: []\n", - "[INFO] [1712349617.480018]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.480589]: Instances: []\n", - "[INFO] [1712349617.480970]: Direct Instances: []\n", - "[INFO] [1712349617.481470]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712349617.481810]: -------------------\n", - "[INFO] [1712349617.482137]: SOMA.Focusing \n", - "[INFO] [1712349617.482457]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712349617.482797]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.AttentionShift, SOMA.MentalTask, owl.Thing, SOMA.Focusing}\n", - "[INFO] [1712349617.483130]: Subclasses: []\n", - "[INFO] [1712349617.483503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.484074]: Instances: []\n", - "[INFO] [1712349617.484448]: Direct Instances: []\n", - "[INFO] [1712349617.484802]: Inverse Restrictions: []\n", - "[INFO] [1712349617.485077]: -------------------\n", - "[INFO] [1712349617.485323]: SOMA.Foolishness \n", - "[INFO] [1712349617.485562]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712349617.485815]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, SOMA.Foolishness, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.486236]: Subclasses: []\n", - "[INFO] [1712349617.486621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.487198]: Instances: []\n", - "[INFO] [1712349617.487561]: Direct Instances: []\n", - "[INFO] [1712349617.487902]: Inverse Restrictions: []\n", - "[INFO] [1712349617.488227]: -------------------\n", - "[INFO] [1712349617.488552]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712349617.488874]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712349617.489221]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.ForgettingIncorrectInformation, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349617.489548]: Subclasses: []\n", - "[INFO] [1712349617.489927]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.490514]: Instances: []\n", - "[INFO] [1712349617.490866]: Direct Instances: []\n", - "[INFO] [1712349617.491200]: Inverse Restrictions: []\n", - "[INFO] [1712349617.491518]: -------------------\n", - "[INFO] [1712349617.491834]: SOMA.InformationDismissal \n", - "[INFO] [1712349617.492170]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712349617.492504]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349617.492840]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712349617.493223]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label]\n", - "[INFO] [1712349617.493812]: Instances: []\n", - "[INFO] [1712349617.494168]: Direct Instances: []\n", - "[INFO] [1712349617.494503]: Inverse Restrictions: []\n", - "[INFO] [1712349617.494826]: -------------------\n", - "[INFO] [1712349617.495144]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712349617.495462]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712349617.495851]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.InformationDismissal, SOMA.MentalTask, owl.Thing}\n", - "[INFO] [1712349617.496209]: Subclasses: []\n", - "[INFO] [1712349617.496610]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.497292]: Instances: []\n", - "[INFO] [1712349617.497671]: Direct Instances: []\n", - "[INFO] [1712349617.497989]: Inverse Restrictions: []\n", - "[INFO] [1712349617.498261]: -------------------\n", - "[INFO] [1712349617.498516]: SOMA.Language \n", - "[INFO] [1712349617.498767]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712349617.499020]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712349617.499269]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712349617.499573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.500094]: Instances: []\n", - "[INFO] [1712349617.500366]: Direct Instances: []\n", - "[INFO] [1712349617.500680]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712349617.500929]: -------------------\n", - "[INFO] [1712349617.501163]: SOMA.Item \n", - "[INFO] [1712349617.501399]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.501648]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349617.501913]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712349617.502201]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.502705]: Instances: []\n", - "[INFO] [1712349617.502972]: Direct Instances: []\n", - "[INFO] [1712349617.503313]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712349617.503555]: -------------------\n", - "[INFO] [1712349617.503791]: SOMA.FunctionalDesign \n", - "[INFO] [1712349617.504022]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712349617.504272]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.FunctionalDesign}\n", - "[INFO] [1712349617.504513]: Subclasses: []\n", - "[INFO] [1712349617.504799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.505276]: Instances: []\n", - "[INFO] [1712349617.505544]: Direct Instances: []\n", - "[INFO] [1712349617.505795]: Inverse Restrictions: []\n", - "[INFO] [1712349617.506034]: -------------------\n", - "[INFO] [1712349617.506270]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712349617.506499]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712349617.506730]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis}\n", - "[INFO] [1712349617.506986]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712349617.507273]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.507761]: Instances: []\n", - "[INFO] [1712349617.508029]: Direct Instances: []\n", - "[INFO] [1712349617.508279]: Inverse Restrictions: []\n", - "[INFO] [1712349617.508515]: -------------------\n", - "[INFO] [1712349617.508746]: SOMA.LocatumRole \n", - "[INFO] [1712349617.508981]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349617.509238]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, SOMA.LocatumRole, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.509479]: Subclasses: []\n", - "[INFO] [1712349617.509763]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.510257]: Instances: []\n", - "[INFO] [1712349617.510518]: Direct Instances: []\n", - "[INFO] [1712349617.510829]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712349617.511067]: -------------------\n", - "[INFO] [1712349617.511296]: SOMA.RelatumRole \n", - "[INFO] [1712349617.511546]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349617.511795]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, SOMA.RelatumRole, DUL.Entity, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.512037]: Subclasses: []\n", - "[INFO] [1712349617.512325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.512821]: Instances: []\n", - "[INFO] [1712349617.513081]: Direct Instances: []\n", - "[INFO] [1712349617.513390]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712349617.513628]: -------------------\n", - "[INFO] [1712349617.513860]: SOMA.GetTaskParameter \n", - "[INFO] [1712349617.514105]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712349617.514351]: Ancestors: {SOMA.InformationAcquisition, SOMA.GetTaskParameter, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.514594]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712349617.514880]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.515375]: Instances: []\n", - "[INFO] [1712349617.515634]: Direct Instances: []\n", - "[INFO] [1712349617.515878]: Inverse Restrictions: []\n", - "[INFO] [1712349617.516123]: -------------------\n", - "[INFO] [1712349617.516362]: SOMA.Planning \n", - "[INFO] [1712349617.516603]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712349617.516846]: Ancestors: {SOMA.InformationAcquisition, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.517095]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712349617.517381]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isTaskOf]\n", - "[INFO] [1712349617.517891]: Instances: []\n", - "[INFO] [1712349617.518153]: Direct Instances: []\n", - "[INFO] [1712349617.518406]: Inverse Restrictions: []\n", - "[INFO] [1712349617.518642]: -------------------\n", - "[INFO] [1712349617.518874]: SOMA.GraphDatabase \n", - "[INFO] [1712349617.519110]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712349617.519360]: Ancestors: {SOMA.SoftwareRole, SOMA.GraphDatabase, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", - "[INFO] [1712349617.519605]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712349617.519919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.520405]: Instances: []\n", - "[INFO] [1712349617.520679]: Direct Instances: []\n", - "[INFO] [1712349617.520948]: Inverse Restrictions: []\n", - "[INFO] [1712349617.521192]: -------------------\n", - "[INFO] [1712349617.521429]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712349617.521664]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712349617.521922]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.GraphQueryLanguage, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349617.522170]: Subclasses: []\n", - "[INFO] [1712349617.522454]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.522923]: Instances: []\n", - "[INFO] [1712349617.523195]: Direct Instances: []\n", - "[INFO] [1712349617.523437]: Inverse Restrictions: []\n", - "[INFO] [1712349617.523665]: -------------------\n", - "[INFO] [1712349617.523892]: SOMA.QueryLanguage \n", - "[INFO] [1712349617.524114]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349617.524345]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712349617.524606]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712349617.524901]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.525380]: Instances: []\n", - "[INFO] [1712349617.525624]: Direct Instances: []\n", - "[INFO] [1712349617.526106]: Inverse Restrictions: []\n", - "[INFO] [1712349617.526515]: -------------------\n", - "[INFO] [1712349617.526912]: SOMA.GraspTransfer \n", - "[INFO] [1712349617.527309]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712349617.527730]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.GraspTransfer, DUL.Entity, SOMA.Grasping, owl.Thing}\n", - "[INFO] [1712349617.528101]: Subclasses: []\n", - "[INFO] [1712349617.528495]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.529077]: Instances: []\n", - "[INFO] [1712349617.529452]: Direct Instances: []\n", - "[INFO] [1712349617.529804]: Inverse Restrictions: []\n", - "[INFO] [1712349617.530133]: -------------------\n", - "[INFO] [1712349617.530454]: SOMA.Grasping \n", - "[INFO] [1712349617.530773]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349617.531113]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Grasping, owl.Thing}\n", - "[INFO] [1712349617.531458]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712349617.531837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.532424]: Instances: []\n", - "[INFO] [1712349617.532789]: Direct Instances: []\n", - "[INFO] [1712349617.533223]: Inverse Restrictions: []\n", - "[INFO] [1712349617.533580]: -------------------\n", - "[INFO] [1712349617.533920]: SOMA.Releasing \n", - "[INFO] [1712349617.534241]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349617.534512]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Releasing, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.534775]: Subclasses: []\n", - "[INFO] [1712349617.535072]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.535578]: Instances: []\n", - "[INFO] [1712349617.535857]: Direct Instances: []\n", - "[INFO] [1712349617.536124]: Inverse Restrictions: []\n", - "[INFO] [1712349617.536359]: -------------------\n", - "[INFO] [1712349617.536590]: SOMA.GraspingMotion \n", - "[INFO] [1712349617.536823]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712349617.537083]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.537345]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712349617.537652]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.538143]: Instances: []\n", - "[INFO] [1712349617.538416]: Direct Instances: []\n", - "[INFO] [1712349617.538712]: Inverse Restrictions: []\n", - "[INFO] [1712349617.538958]: -------------------\n", - "[INFO] [1712349617.539201]: SOMA.IntermediateGrasp \n", - "[INFO] [1712349617.539439]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712349617.539691]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion, SOMA.IntermediateGrasp}\n", - "[INFO] [1712349617.539945]: Subclasses: []\n", - "[INFO] [1712349617.540252]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.540736]: Instances: []\n", - "[INFO] [1712349617.541018]: Direct Instances: []\n", - "[INFO] [1712349617.541308]: Inverse Restrictions: []\n", - "[INFO] [1712349617.541552]: -------------------\n", - "[INFO] [1712349617.541788]: SOMA.PowerGrasp \n", - "[INFO] [1712349617.542028]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712349617.542285]: Ancestors: {SOMA.GraspingMotion, DUL.SocialObject, SOMA.PowerGrasp, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.542540]: Subclasses: []\n", - "[INFO] [1712349617.542842]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.543324]: Instances: []\n", - "[INFO] [1712349617.543590]: Direct Instances: []\n", - "[INFO] [1712349617.543880]: Inverse Restrictions: []\n", - "[INFO] [1712349617.544120]: -------------------\n", - "[INFO] [1712349617.544352]: SOMA.PrecisionGrasp \n", - "[INFO] [1712349617.544581]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712349617.544846]: Ancestors: {SOMA.PrecisionGrasp, SOMA.GraspingMotion, DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.545096]: Subclasses: []\n", - "[INFO] [1712349617.545383]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.545859]: Instances: []\n", - "[INFO] [1712349617.546131]: Direct Instances: []\n", - "[INFO] [1712349617.546427]: Inverse Restrictions: []\n", - "[INFO] [1712349617.546671]: -------------------\n", - "[INFO] [1712349617.546912]: SOMA.PrehensileMotion \n", - "[INFO] [1712349617.547160]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712349617.547408]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.547669]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712349617.547974]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349617.548466]: Instances: []\n", - "[INFO] [1712349617.548733]: Direct Instances: []\n", - "[INFO] [1712349617.549095]: Inverse Restrictions: []\n", - "[INFO] [1712349617.549507]: -------------------\n", - "[INFO] [1712349617.549861]: SOMA.ReleasingMotion \n", - "[INFO] [1712349617.550209]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712349617.550577]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.PrehensileMotion, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.ReleasingMotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.550910]: Subclasses: []\n", - "[INFO] [1712349617.551324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.551929]: Instances: []\n", - "[INFO] [1712349617.552278]: Direct Instances: []\n", - "[INFO] [1712349617.552594]: Inverse Restrictions: []\n", - "[INFO] [1712349617.552849]: -------------------\n", - "[INFO] [1712349617.553087]: SOMA.GreenColor \n", - "[INFO] [1712349617.553324]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712349617.553565]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, SOMA.GreenColor, owl.Thing}\n", - "[INFO] [1712349617.553816]: Subclasses: []\n", - "[INFO] [1712349617.554108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.554585]: Instances: []\n", - "[INFO] [1712349617.554836]: Direct Instances: []\n", - "[INFO] [1712349617.555087]: Inverse Restrictions: []\n", - "[INFO] [1712349617.555326]: -------------------\n", - "[INFO] [1712349617.555561]: SOMA.Gripper \n", - "[INFO] [1712349617.555792]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712349617.556038]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, SOMA.Gripper, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", - "[INFO] [1712349617.556299]: Subclasses: []\n", - "[INFO] [1712349617.556589]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.557074]: Instances: []\n", - "[INFO] [1712349617.557330]: Direct Instances: []\n", - "[INFO] [1712349617.557583]: Inverse Restrictions: []\n", - "[INFO] [1712349617.557820]: -------------------\n", - "[INFO] [1712349617.558050]: SOMA.PrehensileEffector \n", - "[INFO] [1712349617.558274]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712349617.558517]: Ancestors: {SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.PrehensileEffector}\n", - "[INFO] [1712349617.558778]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712349617.559069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.559551]: Instances: []\n", - "[INFO] [1712349617.559821]: Direct Instances: []\n", - "[INFO] [1712349617.560132]: Inverse Restrictions: []\n", - "[INFO] [1712349617.560373]: -------------------\n", - "[INFO] [1712349617.560608]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712349617.560862]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712349617.561122]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.HardwareDiagnosis, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349617.561371]: Subclasses: []\n", - "[INFO] [1712349617.561656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.562136]: Instances: []\n", - "[INFO] [1712349617.562406]: Direct Instances: []\n", - "[INFO] [1712349617.563046]: Inverse Restrictions: []\n", - "[INFO] [1712349617.563351]: -------------------\n", - "[INFO] [1712349617.563596]: SOMA.HasQualityRegion \n", - "[INFO] [1712349617.563846]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712349617.564105]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.HasQualityRegion, DUL.Object, DUL.Entity, owl.Thing, DUL.Relation}\n", - "[INFO] [1712349617.564377]: Subclasses: []\n", - "[INFO] [1712349617.564692]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasRegion, rdf-schema.isDefinedBy, DUL.hasQuality]\n", - "[INFO] [1712349617.565200]: Instances: []\n", - "[INFO] [1712349617.565468]: Direct Instances: []\n", - "[INFO] [1712349617.565711]: Inverse Restrictions: []\n", - "[INFO] [1712349617.565954]: -------------------\n", - "[INFO] [1712349617.566221]: SOMA.Head \n", - "[INFO] [1712349617.566459]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712349617.566699]: Ancestors: {SOMA.FunctionalPart, SOMA.Head, DUL.Object, DUL.PhysicalBody, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.566936]: Subclasses: []\n", - "[INFO] [1712349617.567217]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.567715]: Instances: []\n", - "[INFO] [1712349617.567982]: Direct Instances: []\n", - "[INFO] [1712349617.568237]: Inverse Restrictions: []\n", - "[INFO] [1712349617.568480]: -------------------\n", - "[INFO] [1712349617.568707]: SOMA.HeadMovement \n", - "[INFO] [1712349617.568940]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712349617.569197]: Ancestors: {SOMA.BodyMovement, SOMA.HeadMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.569453]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712349617.569740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.570240]: Instances: []\n", - "[INFO] [1712349617.570507]: Direct Instances: []\n", - "[INFO] [1712349617.570762]: Inverse Restrictions: []\n", - "[INFO] [1712349617.570992]: -------------------\n", - "[INFO] [1712349617.571220]: SOMA.HeadTurning \n", - "[INFO] [1712349617.571458]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712349617.571719]: Ancestors: {SOMA.BodyMovement, SOMA.HeadMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.HeadTurning}\n", - "[INFO] [1712349617.571963]: Subclasses: []\n", - "[INFO] [1712349617.572251]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.572736]: Instances: []\n", - "[INFO] [1712349617.573015]: Direct Instances: []\n", - "[INFO] [1712349617.573275]: Inverse Restrictions: []\n", - "[INFO] [1712349617.573506]: -------------------\n", - "[INFO] [1712349617.573733]: SOMA.Holding \n", - "[INFO] [1712349617.573958]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349617.574196]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Holding}\n", - "[INFO] [1712349617.574446]: Subclasses: []\n", - "[INFO] [1712349617.574734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.575208]: Instances: []\n", - "[INFO] [1712349617.575483]: Direct Instances: []\n", - "[INFO] [1712349617.575739]: Inverse Restrictions: []\n", - "[INFO] [1712349617.575971]: -------------------\n", - "[INFO] [1712349617.576201]: SOMA.HostRole \n", - "[INFO] [1712349617.576436]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712349617.576690]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.HostRole, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.576947]: Subclasses: []\n", - "[INFO] [1712349617.577240]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", - "[INFO] [1712349617.577719]: Instances: []\n", - "[INFO] [1712349617.577991]: Direct Instances: []\n", - "[INFO] [1712349617.578303]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712349617.578544]: -------------------\n", - "[INFO] [1712349617.578775]: SOMA.PluginSpecification \n", - "[INFO] [1712349617.579016]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712349617.579271]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Design, DUL.Entity, SOMA.InterfaceSpecification, SOMA.PluginSpecification, owl.Thing}\n", - "[INFO] [1712349617.579519]: Subclasses: []\n", - "[INFO] [1712349617.579812]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", - "[INFO] [1712349617.580294]: Instances: []\n", - "[INFO] [1712349617.580560]: Direct Instances: []\n", - "[INFO] [1712349617.580888]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712349617.581127]: -------------------\n", - "[INFO] [1712349617.581363]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712349617.581594]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712349617.581851]: Ancestors: {SOMA.System, SOMA.Human-readable_Programming_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Programming_Language, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349617.582093]: Subclasses: []\n", - "[INFO] [1712349617.582381]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.582871]: Instances: []\n", - "[INFO] [1712349617.583197]: Direct Instances: []\n", - "[INFO] [1712349617.583527]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712349617.583769]: -------------------\n", - "[INFO] [1712349617.584012]: SOMA.Source_Code \n", - "[INFO] [1712349617.584244]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712349617.584497]: Ancestors: {SOMA.Source_Code, owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712349617.584750]: Subclasses: []\n", - "[INFO] [1712349617.585064]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.585555]: Instances: []\n", - "[INFO] [1712349617.585810]: Direct Instances: []\n", - "[INFO] [1712349617.586099]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712349617.586342]: -------------------\n", - "[INFO] [1712349617.586573]: SOMA.HumanActivityRecording \n", - "[INFO] [1712349617.586801]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712349617.587037]: Ancestors: {DUL.Situation, SOMA.Episode, DUL.Entity, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712349617.587273]: Subclasses: []\n", - "[INFO] [1712349617.587568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.588047]: Instances: []\n", - "[INFO] [1712349617.588299]: Direct Instances: []\n", - "[INFO] [1712349617.588537]: Inverse Restrictions: []\n", - "[INFO] [1712349617.588763]: -------------------\n", - "[INFO] [1712349617.589009]: SOMA.Imagining \n", - "[INFO] [1712349617.589239]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712349617.589469]: Ancestors: {SOMA.Imagining, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712349617.589704]: Subclasses: []\n", - "[INFO] [1712349617.589983]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.590480]: Instances: []\n", - "[INFO] [1712349617.590749]: Direct Instances: []\n", - "[INFO] [1712349617.590989]: Inverse Restrictions: []\n", - "[INFO] [1712349617.591223]: -------------------\n", - "[INFO] [1712349617.591459]: SOMA.Impediment \n", - "[INFO] [1712349617.591704]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712349617.591955]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Impediment, DUL.Entity, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.592197]: Subclasses: []\n", - "[INFO] [1712349617.592486]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.592994]: Instances: []\n", - "[INFO] [1712349617.593267]: Direct Instances: []\n", - "[INFO] [1712349617.593520]: Inverse Restrictions: []\n", - "[INFO] [1712349617.593753]: -------------------\n", - "[INFO] [1712349617.593980]: SOMA.Obstacle \n", - "[INFO] [1712349617.594209]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712349617.594462]: Ancestors: {DUL.SocialObject, SOMA.Obstacle, SOMA.EventAdjacentRole, DUL.Concept, DUL.Object, SOMA.Instrument, SOMA.Barrier, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.594710]: Subclasses: []\n", - "[INFO] [1712349617.594996]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.595473]: Instances: []\n", - "[INFO] [1712349617.595742]: Direct Instances: []\n", - "[INFO] [1712349617.596041]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712349617.596276]: -------------------\n", - "[INFO] [1712349617.596508]: SOMA.RestrictedObject \n", - "[INFO] [1712349617.596735]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712349617.596988]: Ancestors: {SOMA.RestrictedObject, SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.BlockedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.597238]: Subclasses: []\n", - "[INFO] [1712349617.597530]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.598025]: Instances: []\n", - "[INFO] [1712349617.598303]: Direct Instances: []\n", - "[INFO] [1712349617.598595]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712349617.598831]: -------------------\n", - "[INFO] [1712349617.599056]: SOMA.StateTransition \n", - "[INFO] [1712349617.599311]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712349617.599592]: Ancestors: {DUL.Situation, DUL.Entity, owl.Thing, SOMA.StateTransition, DUL.Transition}\n", - "[INFO] [1712349617.599838]: Subclasses: []\n", - "[INFO] [1712349617.600132]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasInitialScene, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349617.600615]: Instances: []\n", - "[INFO] [1712349617.600895]: Direct Instances: []\n", - "[INFO] [1712349617.601221]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712349617.601463]: -------------------\n", - "[INFO] [1712349617.601694]: SOMA.Inability \n", - "[INFO] [1712349617.601920]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712349617.602160]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Inability, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.602412]: Subclasses: []\n", - "[INFO] [1712349617.602700]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.603181]: Instances: []\n", - "[INFO] [1712349617.603430]: Direct Instances: []\n", - "[INFO] [1712349617.603673]: Inverse Restrictions: []\n", - "[INFO] [1712349617.603913]: -------------------\n", - "[INFO] [1712349617.604143]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712349617.604384]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712349617.604630]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.IncompatibleSoftware, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349617.604873]: Subclasses: []\n", - "[INFO] [1712349617.605171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.605659]: Instances: []\n", - "[INFO] [1712349617.605922]: Direct Instances: []\n", - "[INFO] [1712349617.606177]: Inverse Restrictions: []\n", - "[INFO] [1712349617.606422]: -------------------\n", - "[INFO] [1712349617.606660]: SOMA.InductiveReasoning \n", - "[INFO] [1712349617.606897]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712349617.607143]: Ancestors: {SOMA.InformationAcquisition, SOMA.InductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.607381]: Subclasses: []\n", - "[INFO] [1712349617.607663]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.608160]: Instances: []\n", - "[INFO] [1712349617.608422]: Direct Instances: []\n", - "[INFO] [1712349617.608667]: Inverse Restrictions: []\n", - "[INFO] [1712349617.608908]: -------------------\n", - "[INFO] [1712349617.609143]: SOMA.Infeasibility \n", - "[INFO] [1712349617.609369]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712349617.609618]: Ancestors: {DUL.Description, SOMA.Infeasibility, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.609866]: Subclasses: []\n", - "[INFO] [1712349617.610152]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.610628]: Instances: []\n", - "[INFO] [1712349617.610895]: Direct Instances: []\n", - "[INFO] [1712349617.611148]: Inverse Restrictions: []\n", - "[INFO] [1712349617.611383]: -------------------\n", - "[INFO] [1712349617.611614]: SOMA.InferenceRules \n", - "[INFO] [1712349617.611840]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712349617.612077]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, SOMA.Knowledge, DUL.Entity, owl.Thing, SOMA.Item, SOMA.InferenceRules}\n", - "[INFO] [1712349617.612329]: Subclasses: []\n", - "[INFO] [1712349617.612619]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.613106]: Instances: []\n", - "[INFO] [1712349617.613383]: Direct Instances: []\n", - "[INFO] [1712349617.613640]: Inverse Restrictions: []\n", - "[INFO] [1712349617.613870]: -------------------\n", - "[INFO] [1712349617.614096]: SOMA.InformationRetrieval \n", - "[INFO] [1712349617.614326]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712349617.614569]: Ancestors: {owl.Thing, SOMA.InformationRetrieval, SOMA.InformationAcquisition}\n", - "[INFO] [1712349617.614813]: Subclasses: []\n", - "[INFO] [1712349617.615101]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712349617.615592]: Instances: []\n", - "[INFO] [1712349617.615865]: Direct Instances: []\n", - "[INFO] [1712349617.616170]: Inverse Restrictions: []\n", - "[INFO] [1712349617.616414]: -------------------\n", - "[INFO] [1712349617.616650]: SOMA.InformationStorage \n", - "[INFO] [1712349617.616890]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712349617.617139]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", - "[INFO] [1712349617.617395]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712349617.617687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label]\n", - "[INFO] [1712349617.618170]: Instances: []\n", - "[INFO] [1712349617.618445]: Direct Instances: []\n", - "[INFO] [1712349617.618709]: Inverse Restrictions: []\n", - "[INFO] [1712349617.618941]: -------------------\n", - "[INFO] [1712349617.619169]: SOMA.StoredObject \n", - "[INFO] [1712349617.619395]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712349617.619634]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.StoredObject, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", - "[INFO] [1712349617.619895]: Subclasses: []\n", - "[INFO] [1712349617.620188]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.620676]: Instances: []\n", - "[INFO] [1712349617.620950]: Direct Instances: []\n", - "[INFO] [1712349617.621300]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712349617.621546]: -------------------\n", - "[INFO] [1712349617.621780]: SOMA.InsertedObject \n", - "[INFO] [1712349617.622011]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712349617.622252]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.InsertedObject, DUL.Entity, SOMA.EnclosedObject, owl.Thing, SOMA.IncludedObject, DUL.Role}\n", - "[INFO] [1712349617.622501]: Subclasses: []\n", - "[INFO] [1712349617.622804]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.623282]: Instances: []\n", - "[INFO] [1712349617.623532]: Direct Instances: []\n", - "[INFO] [1712349617.623834]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712349617.624076]: -------------------\n", - "[INFO] [1712349617.624309]: SOMA.Instructions \n", - "[INFO] [1712349617.624537]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712349617.624781]: Ancestors: {SOMA.Patient, DUL.SocialObject, SOMA.Instructions, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Item}\n", - "[INFO] [1712349617.625039]: Subclasses: []\n", - "[INFO] [1712349617.625342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.625822]: Instances: []\n", - "[INFO] [1712349617.626077]: Direct Instances: []\n", - "[INFO] [1712349617.626313]: Inverse Restrictions: []\n", - "[INFO] [1712349617.626552]: -------------------\n", - "[INFO] [1712349617.626785]: SOMA.Interpreting \n", - "[INFO] [1712349617.627011]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349617.627241]: Ancestors: {SOMA.Interpreting, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.627484]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712349617.627767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.628270]: Instances: []\n", - "[INFO] [1712349617.628536]: Direct Instances: []\n", - "[INFO] [1712349617.628800]: Inverse Restrictions: []\n", - "[INFO] [1712349617.629056]: -------------------\n", - "[INFO] [1712349617.629307]: SOMA.InterrogativeClause \n", - "[INFO] [1712349617.629544]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712349617.629791]: Ancestors: {DUL.InformationObject, SOMA.LinguisticObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ClausalObject, SOMA.InterrogativeClause, SOMA.Phrase}\n", - "[INFO] [1712349617.630031]: Subclasses: []\n", - "[INFO] [1712349617.630329]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.630809]: Instances: []\n", - "[INFO] [1712349617.631062]: Direct Instances: []\n", - "[INFO] [1712349617.631354]: Inverse Restrictions: []\n", - "[INFO] [1712349617.631599]: -------------------\n", - "[INFO] [1712349617.631836]: SOMA.Introspecting \n", - "[INFO] [1712349617.632066]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712349617.632299]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Introspecting}\n", - "[INFO] [1712349617.632538]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712349617.632849]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.633349]: Instances: []\n", - "[INFO] [1712349617.633609]: Direct Instances: []\n", - "[INFO] [1712349617.633867]: Inverse Restrictions: []\n", - "[INFO] [1712349617.634111]: -------------------\n", - "[INFO] [1712349617.634348]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712349617.634577]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712349617.634811]: Ancestors: {SOMA.KineticFrictionAttribute, SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.635042]: Subclasses: []\n", - "[INFO] [1712349617.635324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.635818]: Instances: []\n", - "[INFO] [1712349617.636078]: Direct Instances: []\n", - "[INFO] [1712349617.636316]: Inverse Restrictions: []\n", - "[INFO] [1712349617.636545]: -------------------\n", - "[INFO] [1712349617.636779]: SOMA.KinoDynamicData \n", - "[INFO] [1712349617.637023]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349617.637266]: Ancestors: {DUL.InformationObject, SOMA.KinoDynamicData, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.637504]: Subclasses: []\n", - "[INFO] [1712349617.637788]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.638287]: Instances: []\n", - "[INFO] [1712349617.638554]: Direct Instances: []\n", - "[INFO] [1712349617.638800]: Inverse Restrictions: []\n", - "[INFO] [1712349617.639029]: -------------------\n", - "[INFO] [1712349617.639258]: SOMA.Room \n", - "[INFO] [1712349617.639497]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712349617.639739]: Ancestors: {SOMA.Room, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", - "[INFO] [1712349617.639984]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712349617.640263]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.640883]: Instances: []\n", - "[INFO] [1712349617.641202]: Direct Instances: []\n", - "[INFO] [1712349617.641490]: Inverse Restrictions: []\n", - "[INFO] [1712349617.641747]: -------------------\n", - "[INFO] [1712349617.641992]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712349617.642230]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349617.642478]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.KnowledgeRepresentationLanguage, SOMA.Language}\n", - "[INFO] [1712349617.642758]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712349617.643061]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.643546]: Instances: []\n", - "[INFO] [1712349617.643804]: Direct Instances: []\n", - "[INFO] [1712349617.644055]: Inverse Restrictions: []\n", - "[INFO] [1712349617.644293]: -------------------\n", - "[INFO] [1712349617.644529]: SOMA.Labeling \n", - "[INFO] [1712349617.644758]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712349617.644998]: Ancestors: {SOMA.Interpreting, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.645250]: Subclasses: []\n", - "[INFO] [1712349617.645541]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.646032]: Instances: []\n", - "[INFO] [1712349617.646297]: Direct Instances: []\n", - "[INFO] [1712349617.646546]: Inverse Restrictions: []\n", - "[INFO] [1712349617.646775]: -------------------\n", - "[INFO] [1712349617.647002]: SOMA.Text \n", - "[INFO] [1712349617.647239]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.647473]: Ancestors: {owl.Thing, SOMA.Text}\n", - "[INFO] [1712349617.647708]: Subclasses: []\n", - "[INFO] [1712349617.647998]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.648504]: Instances: []\n", - "[INFO] [1712349617.648778]: Direct Instances: []\n", - "[INFO] [1712349617.649136]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712349617.649411]: -------------------\n", - "[INFO] [1712349617.649654]: SOMA.Leaning \n", - "[INFO] [1712349617.649889]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712349617.650143]: Ancestors: {SOMA.Leaning, SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.650384]: Subclasses: []\n", - "[INFO] [1712349617.650686]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.651159]: Instances: []\n", - "[INFO] [1712349617.651419]: Direct Instances: []\n", - "[INFO] [1712349617.651674]: Inverse Restrictions: []\n", - "[INFO] [1712349617.651917]: -------------------\n", - "[INFO] [1712349617.652150]: SOMA.PosturalMoving \n", - "[INFO] [1712349617.652384]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712349617.652880]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.653334]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712349617.653815]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.654475]: Instances: []\n", - "[INFO] [1712349617.654898]: Direct Instances: []\n", - "[INFO] [1712349617.655318]: Inverse Restrictions: []\n", - "[INFO] [1712349617.655752]: -------------------\n", - "[INFO] [1712349617.656108]: SOMA.Learning \n", - "[INFO] [1712349617.656454]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712349617.656802]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.Learning, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", - "[INFO] [1712349617.657238]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712349617.657633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.658243]: Instances: []\n", - "[INFO] [1712349617.658607]: Direct Instances: []\n", - "[INFO] [1712349617.658953]: Inverse Restrictions: []\n", - "[INFO] [1712349617.659289]: -------------------\n", - "[INFO] [1712349617.659623]: SOMA.Leg \n", - "[INFO] [1712349617.659962]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712349617.660302]: Ancestors: {SOMA.FunctionalPart, SOMA.Leg, DUL.PhysicalBody, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.PhysicalEffector, SOMA.Limb}\n", - "[INFO] [1712349617.660636]: Subclasses: []\n", - "[INFO] [1712349617.661015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.661594]: Instances: []\n", - "[INFO] [1712349617.661956]: Direct Instances: []\n", - "[INFO] [1712349617.662352]: Inverse Restrictions: []\n", - "[INFO] [1712349617.662684]: -------------------\n", - "[INFO] [1712349617.663021]: SOMA.LimbMotion \n", - "[INFO] [1712349617.663364]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712349617.663717]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.LimbMotion, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.664067]: Subclasses: []\n", - "[INFO] [1712349617.664459]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label]\n", - "[INFO] [1712349617.665047]: Instances: []\n", - "[INFO] [1712349617.665409]: Direct Instances: []\n", - "[INFO] [1712349617.665752]: Inverse Restrictions: []\n", - "[INFO] [1712349617.666081]: -------------------\n", - "[INFO] [1712349617.666407]: SOMA.LinkedObject \n", - "[INFO] [1712349617.666737]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712349617.667074]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, SOMA.LinkedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.667399]: Subclasses: []\n", - "[INFO] [1712349617.667766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.668341]: Instances: []\n", - "[INFO] [1712349617.668690]: Direct Instances: []\n", - "[INFO] [1712349617.669270]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712349617.669691]: -------------------\n", - "[INFO] [1712349617.670011]: SOMA.LinkageState \n", - "[INFO] [1712349617.670392]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712349617.670770]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.LinkageState, owl.Thing}\n", - "[INFO] [1712349617.671058]: Subclasses: []\n", - "[INFO] [1712349617.671375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349617.671882]: Instances: []\n", - "[INFO] [1712349617.672145]: Direct Instances: []\n", - "[INFO] [1712349617.672398]: Inverse Restrictions: []\n", - "[INFO] [1712349617.672637]: -------------------\n", - "[INFO] [1712349617.672892]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712349617.673151]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712349617.673406]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.673658]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712349617.673949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.674467]: Instances: []\n", - "[INFO] [1712349617.674732]: Direct Instances: []\n", - "[INFO] [1712349617.674984]: Inverse Restrictions: []\n", - "[INFO] [1712349617.675223]: -------------------\n", - "[INFO] [1712349617.675459]: SOMA.SpatialRelationRole \n", - "[INFO] [1712349617.675710]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712349617.675964]: Ancestors: {DUL.SocialObject, SOMA.RelationAdjacentRole, DUL.Concept, DUL.Object, DUL.Entity, SOMA.SpatialRelationRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.676214]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712349617.676502]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.677012]: Instances: []\n", - "[INFO] [1712349617.677281]: Direct Instances: []\n", - "[INFO] [1712349617.677540]: Inverse Restrictions: []\n", - "[INFO] [1712349617.677780]: -------------------\n", - "[INFO] [1712349617.678028]: SOMA.LocutionaryAction \n", - "[INFO] [1712349617.678269]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.678504]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", - "[INFO] [1712349617.678743]: Subclasses: []\n", - "[INFO] [1712349617.679036]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349617.679539]: Instances: []\n", - "[INFO] [1712349617.679804]: Direct Instances: []\n", - "[INFO] [1712349617.680056]: Inverse Restrictions: []\n", - "[INFO] [1712349617.680292]: -------------------\n", - "[INFO] [1712349617.680522]: SOMA.LookingAt \n", - "[INFO] [1712349617.680763]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349617.681024]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.LookingAt, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.681269]: Subclasses: []\n", - "[INFO] [1712349617.681555]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.682036]: Instances: []\n", - "[INFO] [1712349617.682307]: Direct Instances: []\n", - "[INFO] [1712349617.682558]: Inverse Restrictions: []\n", - "[INFO] [1712349617.682793]: -------------------\n", - "[INFO] [1712349617.683025]: SOMA.LookingFor \n", - "[INFO] [1712349617.683254]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712349617.683497]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.LookingFor}\n", - "[INFO] [1712349617.683754]: Subclasses: []\n", - "[INFO] [1712349617.684044]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.684524]: Instances: []\n", - "[INFO] [1712349617.684782]: Direct Instances: []\n", - "[INFO] [1712349617.685035]: Inverse Restrictions: []\n", - "[INFO] [1712349617.685280]: -------------------\n", - "[INFO] [1712349617.685518]: SOMA.Lowering \n", - "[INFO] [1712349617.685751]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.685993]: Ancestors: {SOMA.Lowering, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.686249]: Subclasses: []\n", - "[INFO] [1712349617.686540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.687021]: Instances: []\n", - "[INFO] [1712349617.687275]: Direct Instances: []\n", - "[INFO] [1712349617.687519]: Inverse Restrictions: []\n", - "[INFO] [1712349617.687768]: -------------------\n", - "[INFO] [1712349617.688006]: SOMA.PhysicalAction \n", - "[INFO] [1712349617.688241]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712349617.688482]: Ancestors: {DUL.Entity, DUL.Event, DUL.Action, owl.Thing, SOMA.PhysicalAction}\n", - "[INFO] [1712349617.688715]: Subclasses: []\n", - "[INFO] [1712349617.689010]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.689502]: Instances: []\n", - "[INFO] [1712349617.689776]: Direct Instances: []\n", - "[INFO] [1712349617.690072]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349617.690321]: -------------------\n", - "[INFO] [1712349617.690559]: SOMA.Markup_Language \n", - "[INFO] [1712349617.690789]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712349617.691031]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.Markup_Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712349617.691286]: Subclasses: []\n", - "[INFO] [1712349617.691580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.692058]: Instances: []\n", - "[INFO] [1712349617.692326]: Direct Instances: []\n", - "[INFO] [1712349617.692577]: Inverse Restrictions: []\n", - "[INFO] [1712349617.692838]: -------------------\n", - "[INFO] [1712349617.693215]: SOMA.Masterful \n", - "[INFO] [1712349617.693510]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712349617.693788]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.Masterful, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.694048]: Subclasses: []\n", - "[INFO] [1712349617.694338]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.694841]: Instances: []\n", - "[INFO] [1712349617.695103]: Direct Instances: []\n", - "[INFO] [1712349617.695356]: Inverse Restrictions: []\n", - "[INFO] [1712349617.695594]: -------------------\n", - "[INFO] [1712349617.695841]: SOMA.Material \n", - "[INFO] [1712349617.696079]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349617.696324]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Material, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712349617.696563]: Subclasses: []\n", - "[INFO] [1712349617.696846]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.697353]: Instances: []\n", - "[INFO] [1712349617.697619]: Direct Instances: []\n", - "[INFO] [1712349617.697871]: Inverse Restrictions: []\n", - "[INFO] [1712349617.698108]: -------------------\n", - "[INFO] [1712349617.698343]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712349617.698584]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712349617.698838]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.MedicalDiagnosis, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis}\n", - "[INFO] [1712349617.699084]: Subclasses: []\n", - "[INFO] [1712349617.699424]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", - "[INFO] [1712349617.699920]: Instances: []\n", - "[INFO] [1712349617.700197]: Direct Instances: []\n", - "[INFO] [1712349617.700451]: Inverse Restrictions: []\n", - "[INFO] [1712349617.700685]: -------------------\n", - "[INFO] [1712349617.700924]: SOMA.Memorizing \n", - "[INFO] [1712349617.701153]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712349617.701396]: Ancestors: {DUL.Task, DUL.SocialObject, SOMA.Learning, SOMA.Memorizing, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.MentalTask, SOMA.InformationStorage, owl.Thing}\n", - "[INFO] [1712349617.701649]: Subclasses: []\n", - "[INFO] [1712349617.701944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.702427]: Instances: []\n", - "[INFO] [1712349617.702692]: Direct Instances: []\n", - "[INFO] [1712349617.703007]: Inverse Restrictions: []\n", - "[INFO] [1712349617.703281]: -------------------\n", - "[INFO] [1712349617.703536]: SOMA.MentalAction \n", - "[INFO] [1712349617.703782]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712349617.704021]: Ancestors: {SOMA.MentalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712349617.704274]: Subclasses: []\n", - "[INFO] [1712349617.704568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.705054]: Instances: []\n", - "[INFO] [1712349617.705305]: Direct Instances: []\n", - "[INFO] [1712349617.705587]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712349617.705843]: -------------------\n", - "[INFO] [1712349617.706092]: SOMA.MeshShape \n", - "[INFO] [1712349617.706342]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712349617.706586]: Ancestors: {DUL.Region, DUL.Entity, SOMA.MeshShape, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349617.706822]: Subclasses: []\n", - "[INFO] [1712349617.707112]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasFilePath, rdf-schema.label]\n", - "[INFO] [1712349617.707600]: Instances: []\n", - "[INFO] [1712349617.707851]: Direct Instances: []\n", - "[INFO] [1712349617.708096]: Inverse Restrictions: []\n", - "[INFO] [1712349617.708341]: -------------------\n", - "[INFO] [1712349617.708580]: SOMA.MeshShapeData \n", - "[INFO] [1712349617.708821]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712349617.709064]: Ancestors: {DUL.InformationObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.MeshShapeData}\n", - "[INFO] [1712349617.709314]: Subclasses: []\n", - "[INFO] [1712349617.709605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.710088]: Instances: []\n", - "[INFO] [1712349617.710352]: Direct Instances: []\n", - "[INFO] [1712349617.710601]: Inverse Restrictions: []\n", - "[INFO] [1712349617.710833]: -------------------\n", - "[INFO] [1712349617.711067]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712349617.711298]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712349617.711559]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.MetaCognitionEvaluationTopic, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.711807]: Subclasses: []\n", - "[INFO] [1712349617.712091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.712566]: Instances: []\n", - "[INFO] [1712349617.712817]: Direct Instances: []\n", - "[INFO] [1712349617.713074]: Inverse Restrictions: []\n", - "[INFO] [1712349617.713315]: -------------------\n", - "[INFO] [1712349617.713551]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712349617.713777]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349617.714017]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.714279]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712349617.714570]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.715057]: Instances: []\n", - "[INFO] [1712349617.715332]: Direct Instances: []\n", - "[INFO] [1712349617.715593]: Inverse Restrictions: []\n", - "[INFO] [1712349617.715832]: -------------------\n", - "[INFO] [1712349617.716064]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712349617.716291]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712349617.716547]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.716793]: Subclasses: []\n", - "[INFO] [1712349617.717084]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.717572]: Instances: []\n", - "[INFO] [1712349617.717828]: Direct Instances: []\n", - "[INFO] [1712349617.718071]: Inverse Restrictions: []\n", - "[INFO] [1712349617.718302]: -------------------\n", - "[INFO] [1712349617.718531]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712349617.718762]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712349617.719017]: Ancestors: {SOMA.MetaCognitionPlanningTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.719262]: Subclasses: []\n", - "[INFO] [1712349617.719544]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.720040]: Instances: []\n", - "[INFO] [1712349617.720311]: Direct Instances: []\n", - "[INFO] [1712349617.720562]: Inverse Restrictions: []\n", - "[INFO] [1712349617.720802]: -------------------\n", - "[INFO] [1712349617.721037]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712349617.721282]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712349617.721536]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.721797]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712349617.722087]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.722604]: Instances: []\n", - "[INFO] [1712349617.722867]: Direct Instances: []\n", - "[INFO] [1712349617.723126]: Inverse Restrictions: []\n", - "[INFO] [1712349617.723363]: -------------------\n", - "[INFO] [1712349617.723596]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712349617.723828]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712349617.724083]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.MetacognitiveControlling}\n", - "[INFO] [1712349617.724333]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712349617.724615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.725103]: Instances: []\n", - "[INFO] [1712349617.725375]: Direct Instances: []\n", - "[INFO] [1712349617.725638]: Inverse Restrictions: []\n", - "[INFO] [1712349617.725881]: -------------------\n", - "[INFO] [1712349617.726117]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712349617.726346]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712349617.726598]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting}\n", - "[INFO] [1712349617.726842]: Subclasses: []\n", - "[INFO] [1712349617.727129]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.727609]: Instances: []\n", - "[INFO] [1712349617.727880]: Direct Instances: []\n", - "[INFO] [1712349617.728132]: Inverse Restrictions: []\n", - "[INFO] [1712349617.728371]: -------------------\n", - "[INFO] [1712349617.728607]: SOMA.Mixing \n", - "[INFO] [1712349617.728846]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712349617.729107]: Ancestors: {SOMA.Mixing, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.729358]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712349617.729641]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.730119]: Instances: []\n", - "[INFO] [1712349617.730386]: Direct Instances: []\n", - "[INFO] [1712349617.730641]: Inverse Restrictions: []\n", - "[INFO] [1712349617.730876]: -------------------\n", - "[INFO] [1712349617.731107]: SOMA.MixingTheory \n", - "[INFO] [1712349617.731349]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712349617.731610]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.MixingTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349617.731857]: Subclasses: []\n", - "[INFO] [1712349617.732146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.732623]: Instances: []\n", - "[INFO] [1712349617.732890]: Direct Instances: []\n", - "[INFO] [1712349617.733146]: Inverse Restrictions: []\n", - "[INFO] [1712349617.733382]: -------------------\n", - "[INFO] [1712349617.733615]: SOMA.MonitoringJointState \n", - "[INFO] [1712349617.733844]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712349617.734087]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MonitoringJointState, SOMA.Proprioceiving, owl.Thing}\n", - "[INFO] [1712349617.734338]: Subclasses: []\n", - "[INFO] [1712349617.734627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.735110]: Instances: []\n", - "[INFO] [1712349617.735378]: Direct Instances: []\n", - "[INFO] [1712349617.735633]: Inverse Restrictions: []\n", - "[INFO] [1712349617.735873]: -------------------\n", - "[INFO] [1712349617.736107]: SOMA.Proprioceiving \n", - "[INFO] [1712349617.736333]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712349617.736581]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Proprioceiving, owl.Thing}\n", - "[INFO] [1712349617.736839]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712349617.737125]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.737608]: Instances: []\n", - "[INFO] [1712349617.737873]: Direct Instances: []\n", - "[INFO] [1712349617.738129]: Inverse Restrictions: []\n", - "[INFO] [1712349617.738365]: -------------------\n", - "[INFO] [1712349617.738595]: SOMA.MovingAway \n", - "[INFO] [1712349617.738824]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712349617.739082]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MovingAway, owl.Thing, SOMA.ProcessType, SOMA.Locomotion, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.739329]: Subclasses: []\n", - "[INFO] [1712349617.739614]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.740112]: Instances: []\n", - "[INFO] [1712349617.740371]: Direct Instances: []\n", - "[INFO] [1712349617.740617]: Inverse Restrictions: []\n", - "[INFO] [1712349617.740860]: -------------------\n", - "[INFO] [1712349617.741094]: SOMA.MovingTo \n", - "[INFO] [1712349617.741324]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712349617.741581]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.MovingTo, DUL.Object, SOMA.Navigating, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.741825]: Subclasses: []\n", - "[INFO] [1712349617.742104]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.742583]: Instances: []\n", - "[INFO] [1712349617.742845]: Direct Instances: []\n", - "[INFO] [1712349617.743097]: Inverse Restrictions: []\n", - "[INFO] [1712349617.743332]: -------------------\n", - "[INFO] [1712349617.743565]: SOMA.Natural_Language \n", - "[INFO] [1712349617.743810]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712349617.744069]: Ancestors: {SOMA.Natural_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712349617.744317]: Subclasses: []\n", - "[INFO] [1712349617.744603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.745087]: Instances: []\n", - "[INFO] [1712349617.745356]: Direct Instances: []\n", - "[INFO] [1712349617.745668]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712349617.745913]: -------------------\n", - "[INFO] [1712349617.746154]: SOMA.Natural_Language_Text \n", - "[INFO] [1712349617.746386]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.746631]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", - "[INFO] [1712349617.746871]: Subclasses: []\n", - "[INFO] [1712349617.747161]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.747636]: Instances: []\n", - "[INFO] [1712349617.747903]: Direct Instances: []\n", - "[INFO] [1712349617.748193]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712349617.748433]: -------------------\n", - "[INFO] [1712349617.748667]: SOMA.Ontology \n", - "[INFO] [1712349617.748988]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712349617.749361]: Ancestors: {owl.Thing, SOMA.Ontology, SOMA.Structured_Text}\n", - "[INFO] [1712349617.749665]: Subclasses: []\n", - "[INFO] [1712349617.750003]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349617.750536]: Instances: []\n", - "[INFO] [1712349617.750816]: Direct Instances: []\n", - "[INFO] [1712349617.751118]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712349617.751370]: -------------------\n", - "[INFO] [1712349617.751612]: SOMA.Ontology_Language \n", - "[INFO] [1712349617.751858]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712349617.752123]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Ontology_Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.KnowledgeRepresentationLanguage, SOMA.Language}\n", - "[INFO] [1712349617.752372]: Subclasses: []\n", - "[INFO] [1712349617.752669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.753157]: Instances: []\n", - "[INFO] [1712349617.753476]: Direct Instances: []\n", - "[INFO] [1712349617.753813]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712349617.754071]: -------------------\n", - "[INFO] [1712349617.754318]: SOMA.Option \n", - "[INFO] [1712349617.754563]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712349617.754821]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Option, DUL.Entity, SOMA.ResourceRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.755066]: Subclasses: []\n", - "[INFO] [1712349617.755351]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.755843]: Instances: []\n", - "[INFO] [1712349617.756104]: Direct Instances: []\n", - "[INFO] [1712349617.756352]: Inverse Restrictions: []\n", - "[INFO] [1712349617.756587]: -------------------\n", - "[INFO] [1712349617.756835]: SOMA.Singleton \n", - "[INFO] [1712349617.757094]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.757341]: Ancestors: {owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712349617.757586]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712349617.757869]: Properties: [rdf-schema.isDefinedBy, SOMA.encapsulates, rdf-schema.comment]\n", - "[INFO] [1712349617.758376]: Instances: []\n", - "[INFO] [1712349617.758639]: Direct Instances: []\n", - "[INFO] [1712349617.758889]: Inverse Restrictions: []\n", - "[INFO] [1712349617.759125]: -------------------\n", - "[INFO] [1712349617.759368]: SOMA.Orienting \n", - "[INFO] [1712349617.759612]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712349617.759860]: Ancestors: {SOMA.Orienting, SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Positioning, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.760100]: Subclasses: []\n", - "[INFO] [1712349617.760381]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.760880]: Instances: []\n", - "[INFO] [1712349617.761142]: Direct Instances: []\n", - "[INFO] [1712349617.761475]: Inverse Restrictions: []\n", - "[INFO] [1712349617.761715]: -------------------\n", - "[INFO] [1712349617.761943]: SOMA.Positioning \n", - "[INFO] [1712349617.762175]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712349617.762435]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, SOMA.Positioning, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.762681]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712349617.762961]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.763446]: Instances: []\n", - "[INFO] [1712349617.763712]: Direct Instances: []\n", - "[INFO] [1712349617.763967]: Inverse Restrictions: []\n", - "[INFO] [1712349617.764403]: -------------------\n", - "[INFO] [1712349617.764708]: SOMA.Origin \n", - "[INFO] [1712349617.764987]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712349617.765269]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.Location, SOMA.Origin, DUL.Role}\n", - "[INFO] [1712349617.765527]: Subclasses: []\n", - "[INFO] [1712349617.765869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.766454]: Instances: []\n", - "[INFO] [1712349617.766739]: Direct Instances: []\n", - "[INFO] [1712349617.767044]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712349617.767287]: -------------------\n", - "[INFO] [1712349617.767521]: SOMA.ParkingArms \n", - "[INFO] [1712349617.767782]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712349617.768050]: Ancestors: {SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.ParkingArms, DUL.Object, DUL.Entity, owl.Thing, SOMA.AssumingArmPose}\n", - "[INFO] [1712349617.768308]: Subclasses: []\n", - "[INFO] [1712349617.768605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.769092]: Instances: []\n", - "[INFO] [1712349617.769360]: Direct Instances: []\n", - "[INFO] [1712349617.769623]: Inverse Restrictions: []\n", - "[INFO] [1712349617.769860]: -------------------\n", - "[INFO] [1712349617.770090]: SOMA.PhaseTransition \n", - "[INFO] [1712349617.770331]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712349617.770567]: Ancestors: {DUL.SocialObject, SOMA.PhaseTransition, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Alteration, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349617.770848]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712349617.771150]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.771647]: Instances: []\n", - "[INFO] [1712349617.771904]: Direct Instances: []\n", - "[INFO] [1712349617.772156]: Inverse Restrictions: []\n", - "[INFO] [1712349617.772397]: -------------------\n", - "[INFO] [1712349617.772634]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712349617.772883]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712349617.773128]: Ancestors: {DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PhysicalAccessibility, owl.Thing}\n", - "[INFO] [1712349617.773368]: Subclasses: []\n", - "[INFO] [1712349617.773673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349617.774162]: Instances: []\n", - "[INFO] [1712349617.774416]: Direct Instances: []\n", - "[INFO] [1712349617.774660]: Inverse Restrictions: []\n", - "[INFO] [1712349617.774885]: -------------------\n", - "[INFO] [1712349617.775111]: SOMA.PhysicalBlockage \n", - "[INFO] [1712349617.775355]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712349617.775599]: Ancestors: {SOMA.PhysicalBlockage, DUL.SocialObject, SOMA.StateType, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.775836]: Subclasses: []\n", - "[INFO] [1712349617.776144]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349617.776656]: Instances: []\n", - "[INFO] [1712349617.776927]: Direct Instances: []\n", - "[INFO] [1712349617.777177]: Inverse Restrictions: []\n", - "[INFO] [1712349617.777416]: -------------------\n", - "[INFO] [1712349617.777647]: SOMA.PhysicalExistence \n", - "[INFO] [1712349617.777885]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712349617.778130]: Ancestors: {SOMA.PhysicalState, DUL.Entity, DUL.Event, SOMA.PhysicalExistence, owl.Thing, SOMA.State}\n", - "[INFO] [1712349617.778371]: Subclasses: []\n", - "[INFO] [1712349617.778657]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.779151]: Instances: []\n", - "[INFO] [1712349617.779422]: Direct Instances: []\n", - "[INFO] [1712349617.779672]: Inverse Restrictions: []\n", - "[INFO] [1712349617.779900]: -------------------\n", - "[INFO] [1712349617.780124]: SOMA.PhysicalState \n", - "[INFO] [1712349617.780352]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712349617.780599]: Ancestors: {SOMA.PhysicalState, DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", - "[INFO] [1712349617.780856]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712349617.781148]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349617.781632]: Instances: []\n", - "[INFO] [1712349617.781912]: Direct Instances: []\n", - "[INFO] [1712349617.782177]: Inverse Restrictions: []\n", - "[INFO] [1712349617.782413]: -------------------\n", - "[INFO] [1712349617.782682]: SOMA.PhysicsProcess \n", - "[INFO] [1712349617.782936]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712349617.783196]: Ancestors: {DUL.Entity, DUL.Event, SOMA.PhysicsProcess, owl.Thing, DUL.Process}\n", - "[INFO] [1712349617.783448]: Subclasses: []\n", - "[INFO] [1712349617.783745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349617.784230]: Instances: []\n", - "[INFO] [1712349617.784507]: Direct Instances: []\n", - "[INFO] [1712349617.784765]: Inverse Restrictions: []\n", - "[INFO] [1712349617.785005]: -------------------\n", - "[INFO] [1712349617.785235]: SOMA.PlacingTheory \n", - "[INFO] [1712349617.785470]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712349617.785718]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PlacingTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712349617.785969]: Subclasses: []\n", - "[INFO] [1712349617.786278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.786787]: Instances: []\n", - "[INFO] [1712349617.787053]: Direct Instances: []\n", - "[INFO] [1712349617.787302]: Inverse Restrictions: []\n", - "[INFO] [1712349617.787534]: -------------------\n", - "[INFO] [1712349617.787782]: SOMA.PlanarJoint \n", - "[INFO] [1712349617.788026]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712349617.788280]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, SOMA.PlanarJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.788523]: Subclasses: []\n", - "[INFO] [1712349617.788830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.789341]: Instances: []\n", - "[INFO] [1712349617.789619]: Direct Instances: []\n", - "[INFO] [1712349617.789867]: Inverse Restrictions: []\n", - "[INFO] [1712349617.790101]: -------------------\n", - "[INFO] [1712349617.790329]: SOMA.PluginRole \n", - "[INFO] [1712349617.790560]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712349617.790812]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, SOMA.PluginRole, DUL.Object, DUL.Entity, SOMA.InterfaceComponentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.791053]: Subclasses: []\n", - "[INFO] [1712349617.791342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn]\n", - "[INFO] [1712349617.791814]: Instances: []\n", - "[INFO] [1712349617.792086]: Direct Instances: []\n", - "[INFO] [1712349617.792405]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712349617.792643]: -------------------\n", - "[INFO] [1712349617.792876]: SOMA.Pourable \n", - "[INFO] [1712349617.793112]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712349617.793352]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Disposition, SOMA.Pourable, SOMA.Extrinsic}\n", - "[INFO] [1712349617.793605]: Subclasses: []\n", - "[INFO] [1712349617.793898]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.794384]: Instances: []\n", - "[INFO] [1712349617.794656]: Direct Instances: []\n", - "[INFO] [1712349617.794953]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712349617.795190]: -------------------\n", - "[INFO] [1712349617.795420]: SOMA.PouredObject \n", - "[INFO] [1712349617.795647]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712349617.795884]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.PouredObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.796140]: Subclasses: []\n", - "[INFO] [1712349617.796431]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.796913]: Instances: []\n", - "[INFO] [1712349617.797167]: Direct Instances: []\n", - "[INFO] [1712349617.797465]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712349617.797703]: -------------------\n", - "[INFO] [1712349617.797930]: SOMA.Pouring \n", - "[INFO] [1712349617.798160]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712349617.798395]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.798659]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712349617.798951]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349617.799471]: Instances: []\n", - "[INFO] [1712349617.799769]: Direct Instances: []\n", - "[INFO] [1712349617.800044]: Inverse Restrictions: []\n", - "[INFO] [1712349617.800285]: -------------------\n", - "[INFO] [1712349617.800523]: SOMA.PouringInto \n", - "[INFO] [1712349617.800756]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712349617.801026]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.PouringInto, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.801291]: Subclasses: []\n", - "[INFO] [1712349617.801601]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.802094]: Instances: []\n", - "[INFO] [1712349617.802356]: Direct Instances: []\n", - "[INFO] [1712349617.802632]: Inverse Restrictions: []\n", - "[INFO] [1712349617.802889]: -------------------\n", - "[INFO] [1712349617.803129]: SOMA.PouringOnto \n", - "[INFO] [1712349617.803364]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712349617.803601]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.PouringOnto, SOMA.Pouring, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.803836]: Subclasses: []\n", - "[INFO] [1712349617.804128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.804605]: Instances: []\n", - "[INFO] [1712349617.804865]: Direct Instances: []\n", - "[INFO] [1712349617.805100]: Inverse Restrictions: []\n", - "[INFO] [1712349617.805324]: -------------------\n", - "[INFO] [1712349617.805560]: SOMA.Prediction \n", - "[INFO] [1712349617.805789]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712349617.806027]: Ancestors: {SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.806262]: Subclasses: []\n", - "[INFO] [1712349617.806565]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.807040]: Instances: []\n", - "[INFO] [1712349617.807290]: Direct Instances: []\n", - "[INFO] [1712349617.807523]: Inverse Restrictions: []\n", - "[INFO] [1712349617.807762]: -------------------\n", - "[INFO] [1712349617.807995]: SOMA.Prospecting \n", - "[INFO] [1712349617.808224]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712349617.808455]: Ancestors: {SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.808703]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712349617.809111]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.809678]: Instances: []\n", - "[INFO] [1712349617.809966]: Direct Instances: []\n", - "[INFO] [1712349617.810246]: Inverse Restrictions: []\n", - "[INFO] [1712349617.810501]: -------------------\n", - "[INFO] [1712349617.810740]: SOMA.Predilection \n", - "[INFO] [1712349617.810999]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712349617.811260]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.Predilection, DUL.Relation, DUL.SocialRelation}\n", - "[INFO] [1712349617.811508]: Subclasses: []\n", - "[INFO] [1712349617.811799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.812272]: Instances: []\n", - "[INFO] [1712349617.812545]: Direct Instances: []\n", - "[INFO] [1712349617.812804]: Inverse Restrictions: []\n", - "[INFO] [1712349617.813048]: -------------------\n", - "[INFO] [1712349617.813279]: SOMA.PreferenceOrder \n", - "[INFO] [1712349617.813521]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712349617.813772]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PreferenceOrder, owl.Thing, DUL.Relation, DUL.SocialRelation}\n", - "[INFO] [1712349617.814015]: Subclasses: []\n", - "[INFO] [1712349617.814304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.orders]\n", - "[INFO] [1712349617.814782]: Instances: []\n", - "[INFO] [1712349617.815056]: Direct Instances: []\n", - "[INFO] [1712349617.815300]: Inverse Restrictions: []\n", - "[INFO] [1712349617.815536]: -------------------\n", - "[INFO] [1712349617.815764]: SOMA.PreferenceRegion \n", - "[INFO] [1712349617.816027]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712349617.816268]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Entity, DUL.SocialObjectAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.816525]: Subclasses: []\n", - "[INFO] [1712349617.816822]: Properties: [rdf-schema.isDefinedBy, DUL.isRegionFor, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.817306]: Instances: []\n", - "[INFO] [1712349617.817556]: Direct Instances: []\n", - "[INFO] [1712349617.817800]: Inverse Restrictions: []\n", - "[INFO] [1712349617.818039]: -------------------\n", - "[INFO] [1712349617.818271]: SOMA.PrismaticJoint \n", - "[INFO] [1712349617.818503]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712349617.818740]: Ancestors: {SOMA.Joint, SOMA.PrismaticJoint, DUL.PhysicalBody, DUL.Object, DUL.Entity, SOMA.MovableJoint, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712349617.818969]: Subclasses: []\n", - "[INFO] [1712349617.819259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", - "[INFO] [1712349617.819741]: Instances: []\n", - "[INFO] [1712349617.820003]: Direct Instances: []\n", - "[INFO] [1712349617.820251]: Inverse Restrictions: []\n", - "[INFO] [1712349617.820475]: -------------------\n", - "[INFO] [1712349617.820702]: SOMA.ProcessFlow \n", - "[INFO] [1712349617.820951]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712349617.821195]: Ancestors: {DUL.Description, SOMA.ProcessFlow, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.821434]: Subclasses: []\n", - "[INFO] [1712349617.821718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.definesProcess, rdf-schema.label]\n", - "[INFO] [1712349617.822215]: Instances: []\n", - "[INFO] [1712349617.822474]: Direct Instances: []\n", - "[INFO] [1712349617.822762]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712349617.823011]: -------------------\n", - "[INFO] [1712349617.823244]: SOMA.Progression \n", - "[INFO] [1712349617.823488]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712349617.823729]: Ancestors: {owl.Thing, DUL.Situation, SOMA.Progression, DUL.Entity}\n", - "[INFO] [1712349617.823967]: Subclasses: []\n", - "[INFO] [1712349617.824264]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies]\n", - "[INFO] [1712349617.824761]: Instances: []\n", - "[INFO] [1712349617.825045]: Direct Instances: []\n", - "[INFO] [1712349617.825293]: Inverse Restrictions: []\n", - "[INFO] [1712349617.825526]: -------------------\n", - "[INFO] [1712349617.825752]: SOMA.Protector \n", - "[INFO] [1712349617.825978]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712349617.826230]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, SOMA.Protector, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.826472]: Subclasses: []\n", - "[INFO] [1712349617.826751]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.827227]: Instances: []\n", - "[INFO] [1712349617.827497]: Direct Instances: []\n", - "[INFO] [1712349617.827745]: Inverse Restrictions: []\n", - "[INFO] [1712349617.827974]: -------------------\n", - "[INFO] [1712349617.828198]: SOMA.ProximalTheory \n", - "[INFO] [1712349617.828428]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712349617.828671]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.ProximalTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.828925]: Subclasses: []\n", - "[INFO] [1712349617.829219]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.defines]\n", - "[INFO] [1712349617.829695]: Instances: []\n", - "[INFO] [1712349617.829963]: Direct Instances: []\n", - "[INFO] [1712349617.830213]: Inverse Restrictions: []\n", - "[INFO] [1712349617.830449]: -------------------\n", - "[INFO] [1712349617.830682]: SOMA.PushingAway \n", - "[INFO] [1712349617.830916]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712349617.831156]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, SOMA.PushingAway, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", - "[INFO] [1712349617.831407]: Subclasses: []\n", - "[INFO] [1712349617.831708]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.832187]: Instances: []\n", - "[INFO] [1712349617.832461]: Direct Instances: []\n", - "[INFO] [1712349617.832739]: Inverse Restrictions: []\n", - "[INFO] [1712349617.832986]: -------------------\n", - "[INFO] [1712349617.833217]: SOMA.PushingDown \n", - "[INFO] [1712349617.833443]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712349617.833694]: Ancestors: {SOMA.PhysicalTask, DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.PushingDown, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating, SOMA.Pushing}\n", - "[INFO] [1712349617.833936]: Subclasses: []\n", - "[INFO] [1712349617.834222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.834721]: Instances: []\n", - "[INFO] [1712349617.834981]: Direct Instances: []\n", - "[INFO] [1712349617.835233]: Inverse Restrictions: []\n", - "[INFO] [1712349617.835462]: -------------------\n", - "[INFO] [1712349617.835696]: SOMA.PuttingDown \n", - "[INFO] [1712349617.835932]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712349617.836193]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.PuttingDown, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.836436]: Subclasses: []\n", - "[INFO] [1712349617.836723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.837233]: Instances: []\n", - "[INFO] [1712349617.837492]: Direct Instances: []\n", - "[INFO] [1712349617.837738]: Inverse Restrictions: []\n", - "[INFO] [1712349617.837968]: -------------------\n", - "[INFO] [1712349617.838199]: SOMA.QualityTransition \n", - "[INFO] [1712349617.838438]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712349617.838676]: Ancestors: {DUL.Situation, DUL.Entity, owl.Thing, SOMA.QualityTransition, DUL.Transition}\n", - "[INFO] [1712349617.838913]: Subclasses: []\n", - "[INFO] [1712349617.839195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.839685]: Instances: []\n", - "[INFO] [1712349617.839940]: Direct Instances: []\n", - "[INFO] [1712349617.840186]: Inverse Restrictions: []\n", - "[INFO] [1712349617.840413]: -------------------\n", - "[INFO] [1712349617.840637]: SOMA.Query \n", - "[INFO] [1712349617.840878]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712349617.841136]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Role, DUL.Object, DUL.Entity, owl.Thing, SOMA.Query, SOMA.Message, SOMA.Item}\n", - "[INFO] [1712349617.841379]: Subclasses: []\n", - "[INFO] [1712349617.841663]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.842182]: Instances: []\n", - "[INFO] [1712349617.842645]: Direct Instances: []\n", - "[INFO] [1712349617.843095]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712349617.843487]: -------------------\n", - "[INFO] [1712349617.843841]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712349617.844188]: Super classes: [owl.Thing]\n", - "[INFO] [1712349617.844543]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", - "[INFO] [1712349617.844835]: Subclasses: []\n", - "[INFO] [1712349617.845278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.845885]: Instances: []\n", - "[INFO] [1712349617.846300]: Direct Instances: []\n", - "[INFO] [1712349617.846570]: Inverse Restrictions: []\n", - "[INFO] [1712349617.846824]: -------------------\n", - "[INFO] [1712349617.847066]: SOMA.QueryEngine \n", - "[INFO] [1712349617.847298]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349617.847538]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.QueryEngine, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.847771]: Subclasses: []\n", - "[INFO] [1712349617.848063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.848542]: Instances: []\n", - "[INFO] [1712349617.848794]: Direct Instances: []\n", - "[INFO] [1712349617.849039]: Inverse Restrictions: []\n", - "[INFO] [1712349617.849267]: -------------------\n", - "[INFO] [1712349617.849510]: SOMA.Reaching \n", - "[INFO] [1712349617.849746]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712349617.849991]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, SOMA.Reaching, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712349617.850228]: Subclasses: []\n", - "[INFO] [1712349617.850528]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.851015]: Instances: []\n", - "[INFO] [1712349617.851265]: Direct Instances: []\n", - "[INFO] [1712349617.851510]: Inverse Restrictions: []\n", - "[INFO] [1712349617.851753]: -------------------\n", - "[INFO] [1712349617.851990]: SOMA.Retracting \n", - "[INFO] [1712349617.852221]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712349617.852459]: Ancestors: {SOMA.Retracting, SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712349617.852715]: Subclasses: []\n", - "[INFO] [1712349617.853014]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.853501]: Instances: []\n", - "[INFO] [1712349617.853753]: Direct Instances: []\n", - "[INFO] [1712349617.854008]: Inverse Restrictions: []\n", - "[INFO] [1712349617.854254]: -------------------\n", - "[INFO] [1712349617.854485]: SOMA.Reasoner \n", - "[INFO] [1712349617.854714]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712349617.854966]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349617.855219]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712349617.855503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.856002]: Instances: []\n", - "[INFO] [1712349617.856271]: Direct Instances: []\n", - "[INFO] [1712349617.856527]: Inverse Restrictions: []\n", - "[INFO] [1712349617.856763]: -------------------\n", - "[INFO] [1712349617.857002]: SOMA.RecipientRole \n", - "[INFO] [1712349617.857231]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712349617.857485]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, owl.Thing, SOMA.RecipientRole, SOMA.BeneficiaryRole, DUL.Role}\n", - "[INFO] [1712349617.857730]: Subclasses: []\n", - "[INFO] [1712349617.858010]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.858480]: Instances: []\n", - "[INFO] [1712349617.858743]: Direct Instances: []\n", - "[INFO] [1712349617.858995]: Inverse Restrictions: []\n", - "[INFO] [1712349617.859229]: -------------------\n", - "[INFO] [1712349617.859460]: SOMA.RecordedEpisode \n", - "[INFO] [1712349617.859699]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712349617.859935]: Ancestors: {DUL.Situation, SOMA.Episode, DUL.Entity, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712349617.860186]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712349617.860474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", - "[INFO] [1712349617.860971]: Instances: []\n", - "[INFO] [1712349617.861223]: Direct Instances: []\n", - "[INFO] [1712349617.861471]: Inverse Restrictions: []\n", - "[INFO] [1712349617.861717]: -------------------\n", - "[INFO] [1712349617.861954]: SOMA.RedColor \n", - "[INFO] [1712349617.862184]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712349617.862426]: Ancestors: {DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.ColorRegion, SOMA.RedColor, owl.Thing}\n", - "[INFO] [1712349617.862660]: Subclasses: []\n", - "[INFO] [1712349617.862943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.863437]: Instances: []\n", - "[INFO] [1712349617.863704]: Direct Instances: []\n", - "[INFO] [1712349617.863948]: Inverse Restrictions: []\n", - "[INFO] [1712349617.864185]: -------------------\n", - "[INFO] [1712349617.864424]: SOMA.Reification \n", - "[INFO] [1712349617.864671]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712349617.864915]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Reification, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.865149]: Subclasses: []\n", - "[INFO] [1712349617.865427]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", - "[INFO] [1712349617.865924]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712349617.866187]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712349617.866435]: Inverse Restrictions: []\n", - "[INFO] [1712349617.866668]: -------------------\n", - "[INFO] [1712349617.866902]: SOMA.RelationalDatabase \n", - "[INFO] [1712349617.867145]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712349617.867393]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, SOMA.RelationalDatabase, DUL.Object, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", - "[INFO] [1712349617.867628]: Subclasses: []\n", - "[INFO] [1712349617.867902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.868393]: Instances: []\n", - "[INFO] [1712349617.868652]: Direct Instances: []\n", - "[INFO] [1712349617.868902]: Inverse Restrictions: []\n", - "[INFO] [1712349617.869147]: -------------------\n", - "[INFO] [1712349617.869400]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712349617.869644]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712349617.869890]: Ancestors: {SOMA.RelationalQueryLanguage, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing, SOMA.Language}\n", - "[INFO] [1712349617.870128]: Subclasses: []\n", - "[INFO] [1712349617.870424]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.870939]: Instances: []\n", - "[INFO] [1712349617.871199]: Direct Instances: []\n", - "[INFO] [1712349617.871444]: Inverse Restrictions: []\n", - "[INFO] [1712349617.871675]: -------------------\n", - "[INFO] [1712349617.871916]: SOMA.RelevantPart \n", - "[INFO] [1712349617.872148]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712349617.872389]: Ancestors: {SOMA.Feature, DUL.Object, DUL.Entity, owl.Thing, SOMA.RelevantPart}\n", - "[INFO] [1712349617.872639]: Subclasses: []\n", - "[INFO] [1712349617.872933]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.873423]: Instances: []\n", - "[INFO] [1712349617.873692]: Direct Instances: []\n", - "[INFO] [1712349617.873943]: Inverse Restrictions: []\n", - "[INFO] [1712349617.874178]: -------------------\n", - "[INFO] [1712349617.874408]: SOMA.Remembering \n", - "[INFO] [1712349617.874637]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712349617.874880]: Ancestors: {SOMA.Remembering, owl.Thing}\n", - "[INFO] [1712349617.875118]: Subclasses: []\n", - "[INFO] [1712349617.875399]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.875895]: Instances: []\n", - "[INFO] [1712349617.876152]: Direct Instances: []\n", - "[INFO] [1712349617.876395]: Inverse Restrictions: []\n", - "[INFO] [1712349617.876708]: -------------------\n", - "[INFO] [1712349617.876959]: SOMA.Retrospecting \n", - "[INFO] [1712349617.877205]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712349617.877453]: Ancestors: {owl.Thing, SOMA.Retrospecting, SOMA.InformationAcquisition}\n", - "[INFO] [1712349617.877690]: Subclasses: []\n", - "[INFO] [1712349617.877977]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.878473]: Instances: []\n", - "[INFO] [1712349617.878734]: Direct Instances: []\n", - "[INFO] [1712349617.879025]: Inverse Restrictions: []\n", - "[INFO] [1712349617.879263]: -------------------\n", - "[INFO] [1712349617.879491]: SOMA.RemovedObject \n", - "[INFO] [1712349617.879721]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712349617.879973]: Ancestors: {SOMA.Patient, SOMA.ExcludedObject, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.RemovedObject, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.880214]: Subclasses: []\n", - "[INFO] [1712349617.880499]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.880996]: Instances: []\n", - "[INFO] [1712349617.881253]: Direct Instances: []\n", - "[INFO] [1712349617.881503]: Inverse Restrictions: []\n", - "[INFO] [1712349617.881767]: -------------------\n", - "[INFO] [1712349617.882015]: SOMA.Replanning \n", - "[INFO] [1712349617.882262]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712349617.882510]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Planning, SOMA.Replanning, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.882751]: Subclasses: []\n", - "[INFO] [1712349617.883029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.883526]: Instances: []\n", - "[INFO] [1712349617.883788]: Direct Instances: []\n", - "[INFO] [1712349617.884034]: Inverse Restrictions: []\n", - "[INFO] [1712349617.884271]: -------------------\n", - "[INFO] [1712349617.884504]: SOMA.RevoluteJoint \n", - "[INFO] [1712349617.884753]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712349617.885017]: Ancestors: {SOMA.Joint, DUL.PhysicalBody, DUL.Object, SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, owl.Thing, SOMA.RevoluteJoint, DUL.PhysicalObject}\n", - "[INFO] [1712349617.885258]: Subclasses: []\n", - "[INFO] [1712349617.885552]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", - "[INFO] [1712349617.886050]: Instances: []\n", - "[INFO] [1712349617.886321]: Direct Instances: []\n", - "[INFO] [1712349617.886573]: Inverse Restrictions: []\n", - "[INFO] [1712349617.886809]: -------------------\n", - "[INFO] [1712349617.887041]: SOMA.Surface \n", - "[INFO] [1712349617.887281]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712349617.887527]: Ancestors: {SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject}\n", - "[INFO] [1712349617.887773]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712349617.888051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.888556]: Instances: []\n", - "[INFO] [1712349617.888821]: Direct Instances: []\n", - "[INFO] [1712349617.889067]: Inverse Restrictions: []\n", - "[INFO] [1712349617.889300]: -------------------\n", - "[INFO] [1712349617.889535]: SOMA.Rubbing \n", - "[INFO] [1712349617.889784]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712349617.890031]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Rubbing, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion}\n", - "[INFO] [1712349617.890271]: Subclasses: []\n", - "[INFO] [1712349617.890548]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.891041]: Instances: []\n", - "[INFO] [1712349617.891300]: Direct Instances: []\n", - "[INFO] [1712349617.891545]: Inverse Restrictions: []\n", - "[INFO] [1712349617.891776]: -------------------\n", - "[INFO] [1712349617.892018]: SOMA.Scene \n", - "[INFO] [1712349617.892260]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712349617.892495]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Scene}\n", - "[INFO] [1712349617.892726]: Subclasses: []\n", - "[INFO] [1712349617.893025]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.includesEvent, DUL.satisfies]\n", - "[INFO] [1712349617.893507]: Instances: []\n", - "[INFO] [1712349617.893764]: Direct Instances: []\n", - "[INFO] [1712349617.894051]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712349617.894313]: -------------------\n", - "[INFO] [1712349617.894559]: SOMA.SelectedObject \n", - "[INFO] [1712349617.894796]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712349617.895035]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.SelectedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.895270]: Subclasses: []\n", - "[INFO] [1712349617.895562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.896051]: Instances: []\n", - "[INFO] [1712349617.896299]: Direct Instances: []\n", - "[INFO] [1712349617.896588]: Inverse Restrictions: []\n", - "[INFO] [1712349617.896843]: -------------------\n", - "[INFO] [1712349617.897109]: SOMA.Selecting \n", - "[INFO] [1712349617.897380]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712349617.897627]: Ancestors: {SOMA.InformationAcquisition, SOMA.Selecting, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.897862]: Subclasses: []\n", - "[INFO] [1712349617.898144]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.898644]: Instances: []\n", - "[INFO] [1712349617.898902]: Direct Instances: []\n", - "[INFO] [1712349617.899145]: Inverse Restrictions: []\n", - "[INFO] [1712349617.899388]: -------------------\n", - "[INFO] [1712349617.899633]: SOMA.SelectingItem \n", - "[INFO] [1712349617.899893]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712349617.900138]: Ancestors: {SOMA.InformationAcquisition, SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Planning, owl.Thing, SOMA.Deciding, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.900389]: Subclasses: []\n", - "[INFO] [1712349617.900683]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712349617.901188]: Instances: []\n", - "[INFO] [1712349617.901462]: Direct Instances: []\n", - "[INFO] [1712349617.901711]: Inverse Restrictions: []\n", - "[INFO] [1712349617.901946]: -------------------\n", - "[INFO] [1712349617.902179]: SOMA.SelfReflection \n", - "[INFO] [1712349617.902419]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712349617.902673]: Ancestors: {DUL.Task, DUL.SocialObject, DUL.Concept, SOMA.SelfReflection, DUL.EventType, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.MetacognitiveControlling}\n", - "[INFO] [1712349617.902913]: Subclasses: []\n", - "[INFO] [1712349617.903196]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.903690]: Instances: []\n", - "[INFO] [1712349617.903962]: Direct Instances: []\n", - "[INFO] [1712349617.904221]: Inverse Restrictions: []\n", - "[INFO] [1712349617.904461]: -------------------\n", - "[INFO] [1712349617.904692]: SOMA.Serving \n", - "[INFO] [1712349617.904955]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712349617.905242]: Ancestors: {SOMA.Delivering, SOMA.PhysicalTask, DUL.Task, SOMA.Serving, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712349617.905491]: Subclasses: []\n", - "[INFO] [1712349617.905786]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.906281]: Instances: []\n", - "[INFO] [1712349617.906554]: Direct Instances: []\n", - "[INFO] [1712349617.906805]: Inverse Restrictions: []\n", - "[INFO] [1712349617.907040]: -------------------\n", - "[INFO] [1712349617.907290]: SOMA.SettingGripper \n", - "[INFO] [1712349617.907530]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712349617.907785]: Ancestors: {SOMA.SettingGripper, SOMA.AssumingPose, DUL.Task, SOMA.PhysicalTask, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.908023]: Subclasses: []\n", - "[INFO] [1712349617.908303]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.908794]: Instances: []\n", - "[INFO] [1712349617.909055]: Direct Instances: []\n", - "[INFO] [1712349617.909301]: Inverse Restrictions: []\n", - "[INFO] [1712349617.909535]: -------------------\n", - "[INFO] [1712349617.909771]: SOMA.6DPose \n", - "[INFO] [1712349617.910003]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712349617.910258]: Ancestors: {SOMA.6DPose, DUL.SpaceRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.910503]: Subclasses: []\n", - "[INFO] [1712349617.910790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", - "[INFO] [1712349617.911264]: Instances: []\n", - "[INFO] [1712349617.911534]: Direct Instances: []\n", - "[INFO] [1712349617.911825]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712349617.912068]: -------------------\n", - "[INFO] [1712349617.912306]: SOMA.Sharpness \n", - "[INFO] [1712349617.912536]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349617.912778]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic, SOMA.Sharpness}\n", - "[INFO] [1712349617.913032]: Subclasses: []\n", - "[INFO] [1712349617.913328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.913807]: Instances: []\n", - "[INFO] [1712349617.914057]: Direct Instances: []\n", - "[INFO] [1712349617.914309]: Inverse Restrictions: []\n", - "[INFO] [1712349617.914544]: -------------------\n", - "[INFO] [1712349617.914781]: SOMA.Simulating \n", - "[INFO] [1712349617.915007]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712349617.915244]: Ancestors: {SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing, SOMA.Simulating, SOMA.DerivingInformation}\n", - "[INFO] [1712349617.915493]: Subclasses: []\n", - "[INFO] [1712349617.915776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.916249]: Instances: []\n", - "[INFO] [1712349617.916515]: Direct Instances: []\n", - "[INFO] [1712349617.916763]: Inverse Restrictions: []\n", - "[INFO] [1712349617.917006]: -------------------\n", - "[INFO] [1712349617.917239]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712349617.917470]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712349617.917721]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Entity, SOMA.Simulation_Reasoner, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349617.917968]: Subclasses: []\n", - "[INFO] [1712349617.918255]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.918731]: Instances: []\n", - "[INFO] [1712349617.919001]: Direct Instances: []\n", - "[INFO] [1712349617.919254]: Inverse Restrictions: []\n", - "[INFO] [1712349617.919491]: -------------------\n", - "[INFO] [1712349617.919730]: SOMA.Size \n", - "[INFO] [1712349617.919961]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712349617.920212]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Intrinsic, SOMA.Size}\n", - "[INFO] [1712349617.920452]: Subclasses: []\n", - "[INFO] [1712349617.920733]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.921233]: Instances: []\n", - "[INFO] [1712349617.921499]: Direct Instances: []\n", - "[INFO] [1712349617.921743]: Inverse Restrictions: []\n", - "[INFO] [1712349617.921976]: -------------------\n", - "[INFO] [1712349617.922209]: SOMA.Slicing \n", - "[INFO] [1712349617.922451]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712349617.922703]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, SOMA.Slicing, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.Cutting, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.922950]: Subclasses: []\n", - "[INFO] [1712349617.923231]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.923726]: Instances: []\n", - "[INFO] [1712349617.923995]: Direct Instances: []\n", - "[INFO] [1712349617.924242]: Inverse Restrictions: []\n", - "[INFO] [1712349617.924476]: -------------------\n", - "[INFO] [1712349617.924707]: SOMA.Sluggishness \n", - "[INFO] [1712349617.925104]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712349617.925488]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.Amateurish, SOMA.Sluggishness, DUL.Entity, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.925865]: Subclasses: []\n", - "[INFO] [1712349617.926280]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.926882]: Instances: []\n", - "[INFO] [1712349617.927171]: Direct Instances: []\n", - "[INFO] [1712349617.927435]: Inverse Restrictions: []\n", - "[INFO] [1712349617.927680]: -------------------\n", - "[INFO] [1712349617.927921]: SOMA.SocialState \n", - "[INFO] [1712349617.928164]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712349617.928409]: Ancestors: {SOMA.SocialState, DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", - "[INFO] [1712349617.928662]: Subclasses: []\n", - "[INFO] [1712349617.928965]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712349617.929462]: Instances: []\n", - "[INFO] [1712349617.929735]: Direct Instances: []\n", - "[INFO] [1712349617.929988]: Inverse Restrictions: []\n", - "[INFO] [1712349617.930224]: -------------------\n", - "[INFO] [1712349617.930455]: SOMA.Software_Configuration \n", - "[INFO] [1712349617.930703]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712349617.930951]: Ancestors: {DUL.SocialObject, DUL.Configuration, DUL.Object, DUL.Collection, DUL.Entity, owl.Thing, SOMA.Software_Configuration}\n", - "[INFO] [1712349617.931185]: Subclasses: []\n", - "[INFO] [1712349617.931469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.isDescribedBy]\n", - "[INFO] [1712349617.931960]: Instances: []\n", - "[INFO] [1712349617.932219]: Direct Instances: []\n", - "[INFO] [1712349617.932556]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712349617.932796]: -------------------\n", - "[INFO] [1712349617.933036]: SOMA.SoftwareLibrary \n", - "[INFO] [1712349617.933279]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712349617.933528]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, owl.Thing, SOMA.SoftwareLibrary, SOMA.Software}\n", - "[INFO] [1712349617.933765]: Subclasses: []\n", - "[INFO] [1712349617.934044]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712349617.934522]: Instances: []\n", - "[INFO] [1712349617.934801]: Direct Instances: []\n", - "[INFO] [1712349617.935056]: Inverse Restrictions: []\n", - "[INFO] [1712349617.935296]: -------------------\n", - "[INFO] [1712349617.935533]: SOMA.SourceMaterialRole \n", - "[INFO] [1712349617.935771]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712349617.936016]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.ResourceRole, SOMA.SourceMaterialRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.936269]: Subclasses: []\n", - "[INFO] [1712349617.936563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.937042]: Instances: []\n", - "[INFO] [1712349617.937322]: Direct Instances: []\n", - "[INFO] [1712349617.937573]: Inverse Restrictions: []\n", - "[INFO] [1712349617.937812]: -------------------\n", - "[INFO] [1712349617.938046]: SOMA.SphereShape \n", - "[INFO] [1712349617.938290]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712349617.938533]: Ancestors: {SOMA.SphereShape, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.ShapeRegion}\n", - "[INFO] [1712349617.938772]: Subclasses: []\n", - "[INFO] [1712349617.939066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712349617.939568]: Instances: []\n", - "[INFO] [1712349617.939830]: Direct Instances: []\n", - "[INFO] [1712349617.940077]: Inverse Restrictions: []\n", - "[INFO] [1712349617.940309]: -------------------\n", - "[INFO] [1712349617.940541]: SOMA.Standing \n", - "[INFO] [1712349617.940777]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712349617.941037]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.Standing}\n", - "[INFO] [1712349617.941281]: Subclasses: []\n", - "[INFO] [1712349617.941562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.942035]: Instances: []\n", - "[INFO] [1712349617.942303]: Direct Instances: []\n", - "[INFO] [1712349617.942550]: Inverse Restrictions: []\n", - "[INFO] [1712349617.942783]: -------------------\n", - "[INFO] [1712349617.943014]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712349617.943253]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712349617.943501]: Ancestors: {SOMA.FrictionAttribute, DUL.Region, DUL.Entity, DUL.PhysicalAttribute, DUL.Abstract, SOMA.StaticFrictionAttribute, owl.Thing}\n", - "[INFO] [1712349617.943743]: Subclasses: []\n", - "[INFO] [1712349617.944028]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.944515]: Instances: []\n", - "[INFO] [1712349617.944783]: Direct Instances: []\n", - "[INFO] [1712349617.945036]: Inverse Restrictions: []\n", - "[INFO] [1712349617.945271]: -------------------\n", - "[INFO] [1712349617.945508]: SOMA.Status \n", - "[INFO] [1712349617.945752]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712349617.945997]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, SOMA.Status, owl.Thing}\n", - "[INFO] [1712349617.946234]: Subclasses: []\n", - "[INFO] [1712349617.946514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.947008]: Instances: []\n", - "[INFO] [1712349617.947269]: Direct Instances: []\n", - "[INFO] [1712349617.947539]: Inverse Restrictions: []\n", - "[INFO] [1712349617.947776]: -------------------\n", - "[INFO] [1712349617.948012]: SOMA.StatusFailure \n", - "[INFO] [1712349617.948253]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349617.948498]: Ancestors: {DUL.Region, DUL.Entity, SOMA.StatusFailure, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.948735]: Subclasses: []\n", - "[INFO] [1712349617.949020]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.949533]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712349617.949804]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712349617.950069]: Inverse Restrictions: []\n", - "[INFO] [1712349617.950303]: -------------------\n", - "[INFO] [1712349617.950531]: SOMA.StimulusRole \n", - "[INFO] [1712349617.950757]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712349617.951019]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.StimulusRole, DUL.Object, SOMA.CausativeRole, DUL.Entity, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.951268]: Subclasses: []\n", - "[INFO] [1712349617.951565]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.952046]: Instances: []\n", - "[INFO] [1712349617.952298]: Direct Instances: []\n", - "[INFO] [1712349617.952538]: Inverse Restrictions: []\n", - "[INFO] [1712349617.952766]: -------------------\n", - "[INFO] [1712349617.953002]: SOMA.Stirring \n", - "[INFO] [1712349617.953262]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712349617.953523]: Ancestors: {SOMA.Mixing, DUL.Task, SOMA.Stirring, SOMA.PhysicalTask, SOMA.Constructing, DUL.Concept, DUL.EventType, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712349617.953766]: Subclasses: []\n", - "[INFO] [1712349617.954049]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712349617.954537]: Instances: []\n", - "[INFO] [1712349617.954802]: Direct Instances: []\n", - "[INFO] [1712349617.955047]: Inverse Restrictions: []\n", - "[INFO] [1712349617.955280]: -------------------\n", - "[INFO] [1712349617.955512]: SOMA.Storage \n", - "[INFO] [1712349617.955754]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712349617.955999]: Ancestors: {SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Storage, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.956235]: Subclasses: []\n", - "[INFO] [1712349617.956516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.957047]: Instances: []\n", - "[INFO] [1712349617.957385]: Direct Instances: []\n", - "[INFO] [1712349617.957741]: Inverse Restrictions: []\n", - "[INFO] [1712349617.958022]: -------------------\n", - "[INFO] [1712349617.958284]: SOMA.StructuralDesign \n", - "[INFO] [1712349617.958534]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712349617.958790]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Design, DUL.Entity, SOMA.StructuralDesign, owl.Thing}\n", - "[INFO] [1712349617.959056]: Subclasses: []\n", - "[INFO] [1712349617.959358]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.959844]: Instances: []\n", - "[INFO] [1712349617.960101]: Direct Instances: []\n", - "[INFO] [1712349617.960355]: Inverse Restrictions: []\n", - "[INFO] [1712349617.960603]: -------------------\n", - "[INFO] [1712349617.960846]: SOMA.TaskInvocation \n", - "[INFO] [1712349617.961092]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712349617.961332]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.TaskInvocation, DUL.Workflow, DUL.Plan, owl.Thing}\n", - "[INFO] [1712349617.961576]: Subclasses: []\n", - "[INFO] [1712349617.961880]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesTask, rdf-schema.label]\n", - "[INFO] [1712349617.962364]: Instances: []\n", - "[INFO] [1712349617.962617]: Direct Instances: []\n", - "[INFO] [1712349617.962921]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712349617.963174]: -------------------\n", - "[INFO] [1712349617.963415]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712349617.963646]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712349617.963889]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.964129]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712349617.964423]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.964915]: Instances: []\n", - "[INFO] [1712349617.965170]: Direct Instances: []\n", - "[INFO] [1712349617.965416]: Inverse Restrictions: []\n", - "[INFO] [1712349617.966004]: -------------------\n", - "[INFO] [1712349617.966407]: SOMA.Successfulness \n", - "[INFO] [1712349617.966764]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712349617.967118]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, SOMA.Successfulness, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349617.967473]: Subclasses: []\n", - "[INFO] [1712349617.967882]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.968471]: Instances: []\n", - "[INFO] [1712349617.968836]: Direct Instances: []\n", - "[INFO] [1712349617.969184]: Inverse Restrictions: []\n", - "[INFO] [1712349617.969521]: -------------------\n", - "[INFO] [1712349617.969877]: SOMA.SupportState \n", - "[INFO] [1712349617.970234]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712349617.970582]: Ancestors: {SOMA.SupportState, SOMA.StateType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.FunctionalControl, owl.Thing}\n", - "[INFO] [1712349617.970919]: Subclasses: []\n", - "[INFO] [1712349617.971300]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isStateTypeOf]\n", - "[INFO] [1712349617.971893]: Instances: []\n", - "[INFO] [1712349617.972268]: Direct Instances: []\n", - "[INFO] [1712349617.972615]: Inverse Restrictions: []\n", - "[INFO] [1712349617.972954]: -------------------\n", - "[INFO] [1712349617.973279]: SOMA.Supporter \n", - "[INFO] [1712349617.973608]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712349617.973959]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Entity, SOMA.Restrictor, SOMA.ResourceRole, owl.Thing, SOMA.Supporter, DUL.Role}\n", - "[INFO] [1712349617.974295]: Subclasses: []\n", - "[INFO] [1712349617.974669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.975257]: Instances: []\n", - "[INFO] [1712349617.975611]: Direct Instances: []\n", - "[INFO] [1712349617.976029]: Inverse Restrictions: []\n", - "[INFO] [1712349617.976364]: -------------------\n", - "[INFO] [1712349617.976701]: SOMA.SupportTheory \n", - "[INFO] [1712349617.977032]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712349617.977381]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, SOMA.ControlTheory, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.ImageSchemaTheory, SOMA.SupportTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712349617.977707]: Subclasses: []\n", - "[INFO] [1712349617.978090]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.978660]: Instances: []\n", - "[INFO] [1712349617.979002]: Direct Instances: []\n", - "[INFO] [1712349617.979332]: Inverse Restrictions: []\n", - "[INFO] [1712349617.979649]: -------------------\n", - "[INFO] [1712349617.979984]: SOMA.SupportedObject \n", - "[INFO] [1712349617.980311]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712349617.980643]: Ancestors: {SOMA.Patient, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.ConnectedObject, DUL.Entity, SOMA.SupportedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712349617.981053]: Subclasses: []\n", - "[INFO] [1712349617.981434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.981956]: Instances: []\n", - "[INFO] [1712349617.982235]: Direct Instances: []\n", - "[INFO] [1712349617.982510]: Inverse Restrictions: []\n", - "[INFO] [1712349617.982777]: -------------------\n", - "[INFO] [1712349617.983032]: SOMA.SymbolicReasoner \n", - "[INFO] [1712349617.983273]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712349617.983524]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.SymbolicReasoner, DUL.Entity, owl.Thing, SOMA.Reasoner, DUL.Role}\n", - "[INFO] [1712349617.983764]: Subclasses: []\n", - "[INFO] [1712349617.984064]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.984551]: Instances: []\n", - "[INFO] [1712349617.984831]: Direct Instances: []\n", - "[INFO] [1712349617.985090]: Inverse Restrictions: []\n", - "[INFO] [1712349617.985343]: -------------------\n", - "[INFO] [1712349617.985585]: SOMA.Tapping \n", - "[INFO] [1712349617.985821]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712349617.986068]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.DirectedMotion, SOMA.Tapping}\n", - "[INFO] [1712349617.986336]: Subclasses: []\n", - "[INFO] [1712349617.986632]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.987117]: Instances: []\n", - "[INFO] [1712349617.987371]: Direct Instances: []\n", - "[INFO] [1712349617.987613]: Inverse Restrictions: []\n", - "[INFO] [1712349617.987844]: -------------------\n", - "[INFO] [1712349617.988076]: SOMA.Taxis \n", - "[INFO] [1712349617.988316]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712349617.988568]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing, SOMA.Taxis}\n", - "[INFO] [1712349617.988807]: Subclasses: []\n", - "[INFO] [1712349617.989088]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.989568]: Instances: []\n", - "[INFO] [1712349617.989841]: Direct Instances: []\n", - "[INFO] [1712349617.990092]: Inverse Restrictions: []\n", - "[INFO] [1712349617.990328]: -------------------\n", - "[INFO] [1712349617.990561]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712349617.990796]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712349617.991041]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349617.991298]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712349617.991593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.hasConstituent]\n", - "[INFO] [1712349617.992102]: Instances: []\n", - "[INFO] [1712349617.992383]: Direct Instances: []\n", - "[INFO] [1712349617.992641]: Inverse Restrictions: []\n", - "[INFO] [1712349617.992884]: -------------------\n", - "[INFO] [1712349617.993124]: SOMA.Temperature \n", - "[INFO] [1712349617.993365]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712349617.993637]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Temperature, SOMA.Intrinsic}\n", - "[INFO] [1712349617.993886]: Subclasses: []\n", - "[INFO] [1712349617.994179]: Properties: [DUL.hasRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349617.994664]: Instances: []\n", - "[INFO] [1712349617.994932]: Direct Instances: []\n", - "[INFO] [1712349617.995229]: Inverse Restrictions: []\n", - "[INFO] [1712349617.995473]: -------------------\n", - "[INFO] [1712349617.995708]: SOMA.TemperatureRegion \n", - "[INFO] [1712349617.995938]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712349617.996180]: Ancestors: {SOMA.TemperatureRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712349617.996430]: Subclasses: []\n", - "[INFO] [1712349617.996718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349617.997303]: Instances: []\n", - "[INFO] [1712349617.997555]: Direct Instances: []\n", - "[INFO] [1712349617.997861]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712349617.998112]: -------------------\n", - "[INFO] [1712349617.998358]: SOMA.Tempering \n", - "[INFO] [1712349617.998601]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712349617.998849]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Variability, SOMA.Tempering, owl.Thing, SOMA.Disposition, SOMA.Extrinsic}\n", - "[INFO] [1712349617.999107]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712349617.999442]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349617.999942]: Instances: []\n", - "[INFO] [1712349618.000197]: Direct Instances: []\n", - "[INFO] [1712349618.000453]: Inverse Restrictions: []\n", - "[INFO] [1712349618.000695]: -------------------\n", - "[INFO] [1712349618.000944]: SOMA.ThinkAloud \n", - "[INFO] [1712349618.001184]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712349618.001430]: Ancestors: {SOMA.ThinkAloud, DUL.Task, DUL.SocialObject, DUL.Concept, DUL.EventType, SOMA.CommunicationTask, DUL.Object, DUL.Entity, owl.Thing, SOMA.CommunicationReport}\n", - "[INFO] [1712349618.001683]: Subclasses: []\n", - "[INFO] [1712349618.001972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.002454]: Instances: []\n", - "[INFO] [1712349618.002723]: Direct Instances: []\n", - "[INFO] [1712349618.002975]: Inverse Restrictions: []\n", - "[INFO] [1712349618.003212]: -------------------\n", - "[INFO] [1712349618.003445]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712349618.003679]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349618.003926]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, SOMA.ThinkAloudActionTopic, DUL.Role}\n", - "[INFO] [1712349618.004180]: Subclasses: []\n", - "[INFO] [1712349618.004468]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.004975]: Instances: []\n", - "[INFO] [1712349618.005353]: Direct Instances: []\n", - "[INFO] [1712349618.005651]: Inverse Restrictions: []\n", - "[INFO] [1712349618.005913]: -------------------\n", - "[INFO] [1712349618.006168]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712349618.006408]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712349618.006661]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349618.006919]: Subclasses: []\n", - "[INFO] [1712349618.007214]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.007700]: Instances: []\n", - "[INFO] [1712349618.007954]: Direct Instances: []\n", - "[INFO] [1712349618.008204]: Inverse Restrictions: []\n", - "[INFO] [1712349618.008453]: -------------------\n", - "[INFO] [1712349618.008693]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712349618.008932]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349618.009179]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349618.009437]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712349618.009728]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.010225]: Instances: []\n", - "[INFO] [1712349618.010504]: Direct Instances: []\n", - "[INFO] [1712349618.010763]: Inverse Restrictions: []\n", - "[INFO] [1712349618.011008]: -------------------\n", - "[INFO] [1712349618.011245]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712349618.011480]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349618.011732]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349618.011971]: Subclasses: []\n", - "[INFO] [1712349618.012265]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.012747]: Instances: []\n", - "[INFO] [1712349618.013006]: Direct Instances: []\n", - "[INFO] [1712349618.013252]: Inverse Restrictions: []\n", - "[INFO] [1712349618.013481]: -------------------\n", - "[INFO] [1712349618.013709]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712349618.013943]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349618.014186]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudOpinionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349618.014428]: Subclasses: []\n", - "[INFO] [1712349618.014712]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.015203]: Instances: []\n", - "[INFO] [1712349618.015471]: Direct Instances: []\n", - "[INFO] [1712349618.015716]: Inverse Restrictions: []\n", - "[INFO] [1712349618.015982]: -------------------\n", - "[INFO] [1712349618.016215]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712349618.016443]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349618.016693]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ThinkAloudPerceptionTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349618.016940]: Subclasses: []\n", - "[INFO] [1712349618.017225]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.017702]: Instances: []\n", - "[INFO] [1712349618.017982]: Direct Instances: []\n", - "[INFO] [1712349618.018253]: Inverse Restrictions: []\n", - "[INFO] [1712349618.018493]: -------------------\n", - "[INFO] [1712349618.018726]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712349618.018951]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712349618.019202]: Ancestors: {DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, SOMA.ThinkAloudPlanTopic, SOMA.CommunicationTopic, DUL.Object, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349618.019444]: Subclasses: []\n", - "[INFO] [1712349618.019729]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.020212]: Instances: []\n", - "[INFO] [1712349618.020480]: Direct Instances: []\n", - "[INFO] [1712349618.020731]: Inverse Restrictions: []\n", - "[INFO] [1712349618.020972]: -------------------\n", - "[INFO] [1712349618.021205]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712349618.021436]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712349618.021680]: Ancestors: {SOMA.ThinkAloudSceneKnowledgeTopic, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, SOMA.CommunicationTopic, DUL.Entity, SOMA.ResourceRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role}\n", - "[INFO] [1712349618.021935]: Subclasses: []\n", - "[INFO] [1712349618.022225]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.022702]: Instances: []\n", - "[INFO] [1712349618.022963]: Direct Instances: []\n", - "[INFO] [1712349618.023205]: Inverse Restrictions: []\n", - "[INFO] [1712349618.023452]: -------------------\n", - "[INFO] [1712349618.023689]: SOMA.Threshold \n", - "[INFO] [1712349618.023923]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712349618.024163]: Ancestors: {DUL.SocialObject, DUL.Concept, DUL.Object, DUL.Parameter, DUL.Entity, owl.Thing, SOMA.Threshold}\n", - "[INFO] [1712349618.024404]: Subclasses: []\n", - "[INFO] [1712349618.024693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349618.025191]: Instances: []\n", - "[INFO] [1712349618.025452]: Direct Instances: []\n", - "[INFO] [1712349618.025692]: Inverse Restrictions: []\n", - "[INFO] [1712349618.025935]: -------------------\n", - "[INFO] [1712349618.026174]: SOMA.Throwing \n", - "[INFO] [1712349618.026411]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712349618.026657]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.Manipulating, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, owl.Thing, SOMA.Throwing, SOMA.Actuating}\n", - "[INFO] [1712349618.026897]: Subclasses: []\n", - "[INFO] [1712349618.027178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349618.027662]: Instances: []\n", - "[INFO] [1712349618.027918]: Direct Instances: []\n", - "[INFO] [1712349618.028159]: Inverse Restrictions: []\n", - "[INFO] [1712349618.028389]: -------------------\n", - "[INFO] [1712349618.028622]: SOMA.TimeRole \n", - "[INFO] [1712349618.028870]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712349618.029124]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.TimeRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712349618.029367]: Subclasses: []\n", - "[INFO] [1712349618.029649]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.030141]: Instances: []\n", - "[INFO] [1712349618.030404]: Direct Instances: []\n", - "[INFO] [1712349618.030650]: Inverse Restrictions: []\n", - "[INFO] [1712349618.030885]: -------------------\n", - "[INFO] [1712349618.031116]: SOMA.Transporting \n", - "[INFO] [1712349618.031359]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712349618.031608]: Ancestors: {SOMA.PhysicalTask, DUL.Task, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, DUL.Entity, SOMA.Transporting, owl.Thing}\n", - "[INFO] [1712349618.031845]: Subclasses: []\n", - "[INFO] [1712349618.032123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349618.032641]: Instances: []\n", - "[INFO] [1712349618.032915]: Direct Instances: []\n", - "[INFO] [1712349618.033165]: Inverse Restrictions: []\n", - "[INFO] [1712349618.033398]: -------------------\n", - "[INFO] [1712349618.033630]: SOMA.Triplestore \n", - "[INFO] [1712349618.033865]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712349618.034123]: Ancestors: {SOMA.SoftwareRole, SOMA.GraphDatabase, DUL.SocialObject, DUL.Concept, DUL.Object, SOMA.Triplestore, DUL.Entity, owl.Thing, DUL.Role, SOMA.Database}\n", - "[INFO] [1712349618.034378]: Subclasses: []\n", - "[INFO] [1712349618.034666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.035138]: Instances: []\n", - "[INFO] [1712349618.035412]: Direct Instances: []\n", - "[INFO] [1712349618.035664]: Inverse Restrictions: []\n", - "[INFO] [1712349618.035905]: -------------------\n", - "[INFO] [1712349618.036140]: SOMA.Turning \n", - "[INFO] [1712349618.036371]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712349618.036615]: Ancestors: {SOMA.BodyMovement, DUL.SocialObject, SOMA.Turning, SOMA.PosturalMoving, SOMA.Motion, DUL.EventType, DUL.Concept, DUL.Object, DUL.Entity, SOMA.ProcessType, owl.Thing}\n", - "[INFO] [1712349618.036871]: Subclasses: []\n", - "[INFO] [1712349618.037162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349618.037641]: Instances: []\n", - "[INFO] [1712349618.037906]: Direct Instances: []\n", - "[INFO] [1712349618.038156]: Inverse Restrictions: []\n", - "[INFO] [1712349618.038393]: -------------------\n", - "[INFO] [1712349618.038627]: SOMA.UnavailableSoftware \n", - "[INFO] [1712349618.038854]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712349618.039097]: Ancestors: {DUL.Description, SOMA.UnavailableSoftware, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SoftwareDiagnosis, owl.Thing, SOMA.FunctionalDiagnosis, SOMA.TechnicalDiagnosis}\n", - "[INFO] [1712349618.039348]: Subclasses: []\n", - "[INFO] [1712349618.039638]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.040114]: Instances: []\n", - "[INFO] [1712349618.040390]: Direct Instances: []\n", - "[INFO] [1712349618.040645]: Inverse Restrictions: []\n", - "[INFO] [1712349618.040890]: -------------------\n", - "[INFO] [1712349618.041126]: SOMA.Unsuccessfulness \n", - "[INFO] [1712349618.041359]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712349618.041613]: Ancestors: {DUL.Description, SOMA.Unsuccessfulness, DUL.SocialObject, DUL.Object, SOMA.SuccessDiagnosis, DUL.Entity, SOMA.BehavioralDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712349618.041863]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712349618.042142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712349618.042619]: Instances: []\n", - "[INFO] [1712349618.042882]: Direct Instances: []\n", - "[INFO] [1712349618.043131]: Inverse Restrictions: []\n", - "[INFO] [1712349618.043707]: -------------------\n", - "[INFO] [1712349618.044090]: SOMA.VideoData \n", - "[INFO] [1712349618.044429]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712349618.044693]: Ancestors: {DUL.InformationObject, DUL.InformationEntity, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.VideoData}\n", - "[INFO] [1712349618.045140]: Subclasses: []\n", - "[INFO] [1712349618.045656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712349618.046460]: Instances: []\n", - "[INFO] [1712349618.046862]: Direct Instances: []\n", - "[INFO] [1712349618.047250]: Inverse Restrictions: []\n", - "[INFO] [1712349618.047618]: -------------------\n", - "[INFO] [1712349618.047994]: SOMA.3DPosition \n", - "[INFO] [1712349618.048376]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712349618.048761]: Ancestors: {DUL.SpaceRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.3DPosition}\n", - "[INFO] [1712349618.049148]: Subclasses: []\n", - "[INFO] [1712349618.049616]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", - "[INFO] [1712349618.050390]: Instances: []\n", - "[INFO] [1712349618.050772]: Direct Instances: []\n", - "[INFO] [1712349618.051147]: Inverse Restrictions: []\n" + "[INFO] [1712351063.668618]: -------------------\n", + "[INFO] [1712351063.669359]: SOMA.DesignedContainer \n", + "[INFO] [1712351063.669846]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712351063.670336]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351063.670768]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", + "[INFO] [1712351063.671287]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351063.728921]: Instances: []\n", + "[INFO] [1712351063.729543]: Direct Instances: []\n", + "[INFO] [1712351063.729891]: Inverse Restrictions: []\n", + "[INFO] [1712351063.731131]: -------------------\n", + "[INFO] [1712351063.731443]: DUL.PhysicalObject \n", + "[INFO] [1712351063.731735]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351063.732010]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351063.732282]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712351063.732605]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.733387]: Instances: []\n", + "[INFO] [1712351063.733684]: Direct Instances: []\n", + "[INFO] [1712351063.739314]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", + "[INFO] [1712351063.739664]: -------------------\n", + "[INFO] [1712351063.739948]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712351063.740220]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351063.740555]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.740839]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712351063.741157]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.741678]: Instances: []\n", + "[INFO] [1712351063.741961]: Direct Instances: []\n", + "[INFO] [1712351063.742238]: Inverse Restrictions: []\n", + "[INFO] [1712351063.742494]: -------------------\n", + "[INFO] [1712351063.742743]: DUL.PhysicalObject \n", + "[INFO] [1712351063.742995]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351063.743265]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351063.743530]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712351063.743844]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.744590]: Instances: []\n", + "[INFO] [1712351063.745121]: Direct Instances: []\n", + "[INFO] [1712351063.747999]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", + "[INFO] [1712351063.748448]: -------------------\n", + "[INFO] [1712351063.748850]: DUL.PhysicalObject \n", + "[INFO] [1712351063.749239]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351063.749620]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351063.750034]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712351063.750493]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.751352]: Instances: []\n", + "[INFO] [1712351063.751665]: Direct Instances: []\n", + "[INFO] [1712351063.754160]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", + "[INFO] [1712351063.754483]: -------------------\n", + "[INFO] [1712351063.754753]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712351063.755005]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351063.755263]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.755533]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712351063.755852]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.756375]: Instances: []\n", + "[INFO] [1712351063.756642]: Direct Instances: []\n", + "[INFO] [1712351063.756910]: Inverse Restrictions: []\n", + "[INFO] [1712351063.757952]: -------------------\n", + "[INFO] [1712351063.758250]: SOMA.Affordance \n", + "[INFO] [1712351063.758562]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712351063.758862]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Affordance, DUL.Relation}\n", + "[INFO] [1712351063.759125]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712351063.759431]: Properties: [rdf-schema.comment, SOMA.definesTrigger, SOMA.definesBearer, DUL.definesTask, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351063.759957]: Instances: []\n", + "[INFO] [1712351063.760233]: Direct Instances: []\n", + "[INFO] [1712351063.761370]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712351063.761662]: -------------------\n", + "[INFO] [1712351063.761920]: SOMA.Disposition \n", + "[INFO] [1712351063.763629]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712351063.763967]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351063.764284]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712351063.764611]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.765186]: Instances: []\n", + "[INFO] [1712351063.765463]: Direct Instances: []\n", + "[INFO] [1712351063.765792]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712351063.766050]: -------------------\n", + "[INFO] [1712351063.766296]: SOMA.Setpoint \n", + "[INFO] [1712351063.766538]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712351063.766808]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Setpoint}\n", + "[INFO] [1712351063.767073]: Subclasses: []\n", + "[INFO] [1712351063.767370]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.767867]: Instances: []\n", + "[INFO] [1712351063.768153]: Direct Instances: []\n", + "[INFO] [1712351063.768410]: Inverse Restrictions: []\n", + "[INFO] [1712351063.768659]: -------------------\n", + "[INFO] [1712351063.768998]: SOMA.Answer \n", + "[INFO] [1712351063.769356]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712351063.769714]: Ancestors: {SOMA.Answer, DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.769999]: Subclasses: []\n", + "[INFO] [1712351063.770332]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.770841]: Instances: []\n", + "[INFO] [1712351063.771113]: Direct Instances: []\n", + "[INFO] [1712351063.771785]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712351063.772045]: -------------------\n", + "[INFO] [1712351063.772302]: SOMA.Message \n", + "[INFO] [1712351063.772582]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712351063.772855]: Ancestors: {DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.773116]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712351063.773421]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.773942]: Instances: []\n", + "[INFO] [1712351063.774222]: Direct Instances: []\n", + "[INFO] [1712351063.776003]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351063.776294]: -------------------\n", + "[INFO] [1712351063.776559]: SOMA.ProcessType \n", + "[INFO] [1712351063.776861]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712351063.777149]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.777426]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712351063.777750]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.778324]: Instances: []\n", + "[INFO] [1712351063.778605]: Direct Instances: []\n", + "[INFO] [1712351063.778950]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712351063.779219]: -------------------\n", + "[INFO] [1712351063.779474]: SOMA.OrderedElement \n", + "[INFO] [1712351063.779761]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712351063.781106]: Ancestors: {SOMA.OrderedElement, owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712351063.781415]: Subclasses: []\n", + "[INFO] [1712351063.781733]: Properties: [rdf-schema.label, SOMA.isOrderedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.782237]: Instances: []\n", + "[INFO] [1712351063.782514]: Direct Instances: []\n", + "[INFO] [1712351063.782926]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712351063.783189]: -------------------\n", + "[INFO] [1712351063.783441]: SOMA.System \n", + "[INFO] [1712351063.783683]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712351063.783973]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351063.784259]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712351063.784566]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.785098]: Instances: []\n", + "[INFO] [1712351063.785387]: Direct Instances: []\n", + "[INFO] [1712351063.785657]: Inverse Restrictions: []\n", + "[INFO] [1712351063.785909]: -------------------\n", + "[INFO] [1712351063.786157]: SOMA.Binding \n", + "[INFO] [1712351063.786869]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712351063.787190]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351063.787474]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712351063.787793]: Properties: [rdf-schema.comment, Inverse(SOMA.hasBinding), SOMA.hasBindingFiller, SOMA.hasBindingRole, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351063.788303]: Instances: []\n", + "[INFO] [1712351063.788588]: Direct Instances: []\n", + "[INFO] [1712351063.788867]: Inverse Restrictions: []\n", + "[INFO] [1712351063.789134]: -------------------\n", + "[INFO] [1712351063.789388]: SOMA.Joint \n", + "[INFO] [1712351063.789666]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712351063.790589]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351063.790898]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712351063.791228]: Properties: [SOMA.hasChildLink, SOMA.hasParentLink, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.791758]: Instances: []\n", + "[INFO] [1712351063.792055]: Direct Instances: []\n", + "[INFO] [1712351063.792329]: Inverse Restrictions: []\n", + "[INFO] [1712351063.792578]: -------------------\n", + "[INFO] [1712351063.792834]: SOMA.Color \n", + "[INFO] [1712351063.793222]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712351063.793538]: Ancestors: {SOMA.Extrinsic, SOMA.Color, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351063.793812]: Subclasses: []\n", + "[INFO] [1712351063.794128]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351063.794625]: Instances: []\n", + "[INFO] [1712351063.794906]: Direct Instances: []\n", + "[INFO] [1712351063.795219]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712351063.795471]: -------------------\n", + "[INFO] [1712351063.795720]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712351063.795962]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351063.797053]: Ancestors: {SOMA.ExecutionStateRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351063.797430]: Subclasses: []\n", + "[INFO] [1712351063.797800]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.798345]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712351063.798642]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712351063.798916]: Inverse Restrictions: []\n", + "[INFO] [1712351063.799181]: -------------------\n", + "[INFO] [1712351063.799440]: SOMA.Feature \n", + "[INFO] [1712351063.799725]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712351063.800000]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing}\n", + "[INFO] [1712351063.800260]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712351063.800585]: Properties: [SOMA.isFeatureOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.801548]: Instances: []\n", + "[INFO] [1712351063.802005]: Direct Instances: []\n", + "[INFO] [1712351063.802525]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712351063.802913]: -------------------\n", + "[INFO] [1712351063.803297]: SOMA.FrictionAttribute \n", + "[INFO] [1712351063.803726]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712351063.804179]: Ancestors: {DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", + "[INFO] [1712351063.804581]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712351063.805037]: Properties: [SOMA.hasFrictionValue, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.805597]: Instances: []\n", + "[INFO] [1712351063.805915]: Direct Instances: []\n", + "[INFO] [1712351063.806206]: Inverse Restrictions: []\n", + "[INFO] [1712351063.806473]: -------------------\n", + "[INFO] [1712351063.806725]: SOMA.SituationTransition \n", + "[INFO] [1712351063.806973]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712351063.807263]: Ancestors: {DUL.Transition, DUL.Entity, SOMA.SituationTransition, DUL.Situation, owl.Thing}\n", + "[INFO] [1712351063.807543]: Subclasses: []\n", + "[INFO] [1712351063.807856]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.808361]: Instances: []\n", + "[INFO] [1712351063.808631]: Direct Instances: []\n", + "[INFO] [1712351063.810411]: Inverse Restrictions: []\n", + "[INFO] [1712351063.810702]: -------------------\n", + "[INFO] [1712351063.810962]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712351063.811216]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712351063.812536]: Ancestors: {owl.Thing, DUL.Entity, DUL.Situation, SOMA.NonmanifestedSituation}\n", + "[INFO] [1712351063.812861]: Subclasses: []\n", + "[INFO] [1712351063.813224]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.813797]: Instances: []\n", + "[INFO] [1712351063.814107]: Direct Instances: []\n", + "[INFO] [1712351063.815917]: Inverse Restrictions: []\n", + "[INFO] [1712351063.816280]: -------------------\n", + "[INFO] [1712351063.816647]: SOMA.JointLimit \n", + "[INFO] [1712351063.817028]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712351063.817474]: Ancestors: {SOMA.JointLimit, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351063.817885]: Subclasses: []\n", + "[INFO] [1712351063.818328]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.819026]: Instances: []\n", + "[INFO] [1712351063.819418]: Direct Instances: []\n", + "[INFO] [1712351063.819885]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712351063.820230]: -------------------\n", + "[INFO] [1712351063.820548]: SOMA.JointState \n", + "[INFO] [1712351063.820919]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712351063.821293]: Ancestors: {SOMA.JointState, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351063.821617]: Subclasses: []\n", + "[INFO] [1712351063.821988]: Properties: [SOMA.hasJointPosition, rdf-schema.label, rdf-schema.comment, SOMA.hasJointVelocity, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351063.822581]: Instances: []\n", + "[INFO] [1712351063.822908]: Direct Instances: []\n", + "[INFO] [1712351063.823296]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712351063.823579]: -------------------\n", + "[INFO] [1712351063.823839]: SOMA.Localization \n", + "[INFO] [1712351063.824122]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712351063.824422]: Ancestors: {SOMA.Extrinsic, SOMA.Localization, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351063.824685]: Subclasses: []\n", + "[INFO] [1712351063.825000]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351063.825497]: Instances: []\n", + "[INFO] [1712351063.825776]: Direct Instances: []\n", + "[INFO] [1712351063.827960]: Inverse Restrictions: []\n", + "[INFO] [1712351063.828228]: -------------------\n", + "[INFO] [1712351063.828490]: SOMA.MassAttribute \n", + "[INFO] [1712351063.828770]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712351063.829062]: Ancestors: {SOMA.MassAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351063.829322]: Subclasses: []\n", + "[INFO] [1712351063.829624]: Properties: [rdf-schema.label, SOMA.hasMassValue, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.830138]: Instances: []\n", + "[INFO] [1712351063.830410]: Direct Instances: []\n", + "[INFO] [1712351063.830669]: Inverse Restrictions: []\n", + "[INFO] [1712351063.830923]: -------------------\n", + "[INFO] [1712351063.831163]: SOMA.NetForce \n", + "[INFO] [1712351063.831404]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712351063.831699]: Ancestors: {SOMA.ForceAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing, SOMA.NetForce}\n", + "[INFO] [1712351063.831961]: Subclasses: []\n", + "[INFO] [1712351063.832257]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.832749]: Instances: []\n", + "[INFO] [1712351063.833032]: Direct Instances: []\n", + "[INFO] [1712351063.833297]: Inverse Restrictions: []\n", + "[INFO] [1712351063.833546]: -------------------\n", + "[INFO] [1712351063.833789]: SOMA.Succedence \n", + "[INFO] [1712351063.834077]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712351063.834374]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Succedence, DUL.Relation}\n", + "[INFO] [1712351063.834646]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712351063.834961]: Properties: [SOMA.hasSuccessor, rdf-schema.comment, SOMA.hasPredecessor, Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy]\n", + "[INFO] [1712351063.835462]: Instances: []\n", + "[INFO] [1712351063.835747]: Direct Instances: []\n", + "[INFO] [1712351063.836017]: Inverse Restrictions: []\n", + "[INFO] [1712351063.836267]: -------------------\n", + "[INFO] [1712351063.836514]: SOMA.Preference \n", + "[INFO] [1712351063.836774]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712351063.837097]: Ancestors: {SOMA.SocialQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Preference}\n", + "[INFO] [1712351063.837367]: Subclasses: []\n", + "[INFO] [1712351063.837672]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.838160]: Instances: []\n", + "[INFO] [1712351063.838443]: Direct Instances: []\n", + "[INFO] [1712351063.839556]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712351063.839828]: -------------------\n", + "[INFO] [1712351063.840096]: SOMA.Shape \n", + "[INFO] [1712351063.840380]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712351063.840669]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Shape, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351063.840961]: Subclasses: []\n", + "[INFO] [1712351063.841343]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351063.841891]: Instances: []\n", + "[INFO] [1712351063.842200]: Direct Instances: []\n", + "[INFO] [1712351063.844412]: Inverse Restrictions: []\n", + "[INFO] [1712351063.844701]: -------------------\n", + "[INFO] [1712351063.844981]: SOMA.ShapeRegion \n", + "[INFO] [1712351063.845262]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712351063.845546]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351063.845841]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712351063.846159]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.846696]: Instances: []\n", + "[INFO] [1712351063.847023]: Direct Instances: []\n", + "[INFO] [1712351063.847772]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712351063.848045]: -------------------\n", + "[INFO] [1712351063.848298]: SOMA.SoftwareInstance \n", + "[INFO] [1712351063.848956]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712351063.849329]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", + "[INFO] [1712351063.849628]: Subclasses: []\n", + "[INFO] [1712351063.849952]: Properties: [rdf-schema.label, SOMA.isDesignedBy, rdf-schema.comment, DUL.actsFor, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351063.850456]: Instances: []\n", + "[INFO] [1712351063.850818]: Direct Instances: []\n", + "[INFO] [1712351063.851571]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712351063.851878]: -------------------\n", + "[INFO] [1712351063.852154]: SOMA.StateType \n", + "[INFO] [1712351063.852445]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712351063.852730]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.853112]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712351063.853452]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.853978]: Instances: []\n", + "[INFO] [1712351063.854253]: Direct Instances: []\n", + "[INFO] [1712351063.854599]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712351063.854872]: -------------------\n", + "[INFO] [1712351063.855134]: SOMA.PhysicalEffector \n", + "[INFO] [1712351063.855404]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712351063.855695]: Ancestors: {SOMA.PhysicalEffector, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351063.855966]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712351063.856282]: Properties: [rdf-schema.label, Inverse(DUL.hasPart), rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.856805]: Instances: []\n", + "[INFO] [1712351063.857090]: Direct Instances: []\n", + "[INFO] [1712351063.857362]: Inverse Restrictions: []\n", + "[INFO] [1712351063.857611]: -------------------\n", + "[INFO] [1712351063.857866]: SOMA.QueryingTask \n", + "[INFO] [1712351063.858527]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712351063.858816]: Ancestors: {SOMA.QueryingTask, owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712351063.859072]: Subclasses: []\n", + "[INFO] [1712351063.859368]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.859874]: Instances: []\n", + "[INFO] [1712351063.860148]: Direct Instances: []\n", + "[INFO] [1712351063.861571]: Inverse Restrictions: []\n", + "[INFO] [1712351063.861851]: -------------------\n", + "[INFO] [1712351063.862110]: SOMA.Order \n", + "[INFO] [1712351063.862374]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712351063.862659]: Ancestors: {DUL.FormalEntity, SOMA.Order, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351063.862913]: Subclasses: []\n", + "[INFO] [1712351063.863214]: Properties: [rdf-schema.label, SOMA.orders, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351063.863729]: Instances: []\n", + "[INFO] [1712351063.864004]: Direct Instances: []\n", + "[INFO] [1712351063.864365]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712351063.864616]: -------------------\n", + "[INFO] [1712351063.864927]: SOMA.State \n", + "[INFO] [1712351063.865227]: Super classes: [DUL.Event]\n", + "[INFO] [1712351063.865529]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing}\n", + "[INFO] [1712351063.865811]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712351063.866117]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.866618]: Instances: []\n", + "[INFO] [1712351063.866904]: Direct Instances: []\n", + "[INFO] [1712351063.867437]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712351063.867699]: -------------------\n", + "[INFO] [1712351063.867948]: SOMA.Transient \n", + "[INFO] [1712351063.868213]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712351063.868499]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, SOMA.Transient}\n", + "[INFO] [1712351063.868758]: Subclasses: []\n", + "[INFO] [1712351063.869064]: Properties: [SOMA.transitionsFrom, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.869899]: Instances: []\n", + "[INFO] [1712351063.870213]: Direct Instances: []\n", + "[INFO] [1712351063.870484]: Inverse Restrictions: []\n", + "[INFO] [1712351063.870759]: -------------------\n", + "[INFO] [1712351063.871019]: SOMA.ColorRegion \n", + "[INFO] [1712351063.871281]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712351063.871562]: Ancestors: {SOMA.ColorRegion, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351063.871860]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712351063.872188]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.872696]: Instances: []\n", + "[INFO] [1712351063.872980]: Direct Instances: []\n", + "[INFO] [1712351063.873328]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712351063.873594]: -------------------\n", + "[INFO] [1712351063.873847]: SOMA.ForceAttribute \n", + "[INFO] [1712351063.874201]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712351063.874491]: Ancestors: {SOMA.ForceAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351063.874768]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712351063.875085]: Properties: [rdf-schema.label, SOMA.hasForceValue, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.875585]: Instances: []\n", + "[INFO] [1712351063.875859]: Direct Instances: []\n", + "[INFO] [1712351063.876130]: Inverse Restrictions: []\n", + "[INFO] [1712351063.876382]: -------------------\n", + "[INFO] [1712351063.876628]: SOMA.API_Specification \n", + "[INFO] [1712351063.876883]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712351063.877175]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification}\n", + "[INFO] [1712351063.877461]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712351063.877784]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.878291]: Instances: []\n", + "[INFO] [1712351063.878560]: Direct Instances: []\n", + "[INFO] [1712351063.878839]: Inverse Restrictions: []\n", + "[INFO] [1712351063.879099]: -------------------\n", + "[INFO] [1712351063.879348]: SOMA.InterfaceSpecification \n", + "[INFO] [1712351063.879602]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712351063.879895]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.InterfaceSpecification}\n", + "[INFO] [1712351063.880179]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712351063.880492]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.881000]: Instances: []\n", + "[INFO] [1712351063.881287]: Direct Instances: []\n", + "[INFO] [1712351063.882366]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712351063.882650]: -------------------\n", + "[INFO] [1712351063.882909]: SOMA.AbductiveReasoning \n", + "[INFO] [1712351063.883171]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712351063.884432]: Ancestors: {SOMA.AbductiveReasoning, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351063.884737]: Subclasses: []\n", + "[INFO] [1712351063.885073]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.885591]: Instances: []\n", + "[INFO] [1712351063.885866]: Direct Instances: []\n", + "[INFO] [1712351063.886126]: Inverse Restrictions: []\n", + "[INFO] [1712351063.886374]: -------------------\n", + "[INFO] [1712351063.886617]: SOMA.Reasoning \n", + "[INFO] [1712351063.886884]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351063.887147]: Ancestors: {SOMA.Reasoning, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712351063.887420]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712351063.887723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.888235]: Instances: []\n", + "[INFO] [1712351063.888512]: Direct Instances: []\n", + "[INFO] [1712351063.888781]: Inverse Restrictions: []\n", + "[INFO] [1712351063.889035]: -------------------\n", + "[INFO] [1712351063.889282]: SOMA.Accessor \n", + "[INFO] [1712351063.889527]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712351063.889833]: Ancestors: {SOMA.Accessor, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.890100]: Subclasses: []\n", + "[INFO] [1712351063.890405]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.890900]: Instances: []\n", + "[INFO] [1712351063.891191]: Direct Instances: []\n", + "[INFO] [1712351063.891476]: Inverse Restrictions: []\n", + "[INFO] [1712351063.891744]: -------------------\n", + "[INFO] [1712351063.891994]: SOMA.Instrument \n", + "[INFO] [1712351063.892245]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712351063.892524]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.892815]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712351063.893134]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.893657]: Instances: []\n", + "[INFO] [1712351063.893946]: Direct Instances: []\n", + "[INFO] [1712351063.894369]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351063.894649]: -------------------\n", + "[INFO] [1712351063.894916]: SOMA.Accident \n", + "[INFO] [1712351063.895175]: Super classes: [DUL.Event]\n", + "[INFO] [1712351063.895447]: Ancestors: {DUL.Entity, DUL.Event, SOMA.Accident, owl.Thing}\n", + "[INFO] [1712351063.895705]: Subclasses: []\n", + "[INFO] [1712351063.896015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.896591]: Instances: []\n", + "[INFO] [1712351063.896886]: Direct Instances: []\n", + "[INFO] [1712351063.897162]: Inverse Restrictions: []\n", + "[INFO] [1712351063.897418]: -------------------\n", + "[INFO] [1712351063.897665]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712351063.898121]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712351063.898423]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ActionExecutionPlan, owl.Thing, DUL.Plan}\n", + "[INFO] [1712351063.898687]: Subclasses: []\n", + "[INFO] [1712351063.898990]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.899505]: Instances: []\n", + "[INFO] [1712351063.899794]: Direct Instances: []\n", + "[INFO] [1712351063.900061]: Inverse Restrictions: []\n", + "[INFO] [1712351063.900317]: -------------------\n", + "[INFO] [1712351063.900565]: SOMA.Actuating \n", + "[INFO] [1712351063.900823]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351063.901119]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.901421]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712351063.901735]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.902274]: Instances: []\n", + "[INFO] [1712351063.902565]: Direct Instances: []\n", + "[INFO] [1712351063.902846]: Inverse Restrictions: []\n", + "[INFO] [1712351063.903110]: -------------------\n", + "[INFO] [1712351063.903365]: SOMA.PhysicalTask \n", + "[INFO] [1712351063.904741]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712351063.905068]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.905371]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712351063.905692]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.906309]: Instances: []\n", + "[INFO] [1712351063.906605]: Direct Instances: []\n", + "[INFO] [1712351063.906959]: Inverse Restrictions: []\n", + "[INFO] [1712351063.907237]: -------------------\n", + "[INFO] [1712351063.907499]: SOMA.AestheticDesign \n", + "[INFO] [1712351063.907757]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712351063.908035]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.AestheticDesign}\n", + "[INFO] [1712351063.908292]: Subclasses: []\n", + "[INFO] [1712351063.908589]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.909105]: Instances: []\n", + "[INFO] [1712351063.909388]: Direct Instances: []\n", + "[INFO] [1712351063.909660]: Inverse Restrictions: []\n", + "[INFO] [1712351063.909914]: -------------------\n", + "[INFO] [1712351063.910163]: SOMA.AffordsBeingSitOn \n", + "[INFO] [1712351063.911065]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", + "[INFO] [1712351063.911360]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Affordance, DUL.Relation, SOMA.AffordsBeingSitOn}\n", + "[INFO] [1712351063.911628]: Subclasses: []\n", + "[INFO] [1712351063.911933]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.912443]: Instances: []\n", + "[INFO] [1712351063.912723]: Direct Instances: []\n", + "[INFO] [1712351063.913182]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", + "[INFO] [1712351063.913604]: -------------------\n", + "[INFO] [1712351063.913918]: SOMA.CanBeSatOn \n", + "[INFO] [1712351063.914199]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", + "[INFO] [1712351063.914505]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.CanBeSatOn, SOMA.Deposition, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351063.914849]: Subclasses: []\n", + "[INFO] [1712351063.915215]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.915740]: Instances: []\n", + "[INFO] [1712351063.916022]: Direct Instances: []\n", + "[INFO] [1712351063.916581]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712351063.916867]: -------------------\n", + "[INFO] [1712351063.917150]: SOMA.SittingDestination \n", + "[INFO] [1712351063.917434]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", + "[INFO] [1712351063.917752]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, SOMA.SittingDestination, DUL.Object, SOMA.Destination, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.918020]: Subclasses: []\n", + "[INFO] [1712351063.918325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.918838]: Instances: []\n", + "[INFO] [1712351063.919122]: Direct Instances: []\n", + "[INFO] [1712351063.919430]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712351063.919691]: -------------------\n", + "[INFO] [1712351063.919948]: SOMA.CanSit \n", + "[INFO] [1712351063.920214]: Super classes: [SOMA.Capability]\n", + "[INFO] [1712351063.920585]: Ancestors: {SOMA.CanSit, SOMA.Extrinsic, SOMA.Capability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351063.921040]: Subclasses: []\n", + "[INFO] [1712351063.921520]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.922195]: Instances: []\n", + "[INFO] [1712351063.922654]: Direct Instances: []\n", + "[INFO] [1712351063.923140]: Inverse Restrictions: []\n", + "[INFO] [1712351063.923573]: -------------------\n", + "[INFO] [1712351063.924000]: SOMA.AgentRole \n", + "[INFO] [1712351063.924392]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712351063.924816]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.AgentRole, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351063.925194]: Subclasses: []\n", + "[INFO] [1712351063.925606]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.926206]: Instances: []\n", + "[INFO] [1712351063.926590]: Direct Instances: []\n", + "[INFO] [1712351063.926982]: Inverse Restrictions: []\n", + "[INFO] [1712351063.927332]: -------------------\n", + "[INFO] [1712351063.927679]: SOMA.Sitting \n", + "[INFO] [1712351063.928018]: Super classes: [SOMA.AssumingPose]\n", + "[INFO] [1712351063.928405]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.Sitting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.928780]: Subclasses: []\n", + "[INFO] [1712351063.929181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.929775]: Instances: []\n", + "[INFO] [1712351063.930131]: Direct Instances: []\n", + "[INFO] [1712351063.930512]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712351063.930875]: -------------------\n", + "[INFO] [1712351063.931234]: SOMA.CausativeRole \n", + "[INFO] [1712351063.931595]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351063.931980]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351063.932382]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712351063.932864]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.933620]: Instances: []\n", + "[INFO] [1712351063.934092]: Direct Instances: []\n", + "[INFO] [1712351063.934543]: Inverse Restrictions: []\n", + "[INFO] [1712351063.934973]: -------------------\n", + "[INFO] [1712351063.935384]: SOMA.Agonist \n", + "[INFO] [1712351063.935800]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351063.936262]: Ancestors: {DUL.SocialObject, SOMA.Agonist, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.936692]: Subclasses: []\n", + "[INFO] [1712351063.937172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.937883]: Instances: []\n", + "[INFO] [1712351063.938323]: Direct Instances: []\n", + "[INFO] [1712351063.938786]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712351063.939200]: -------------------\n", + "[INFO] [1712351063.939599]: SOMA.Patient \n", + "[INFO] [1712351063.940007]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351063.940427]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.940923]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712351063.941454]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.942202]: Instances: []\n", + "[INFO] [1712351063.942632]: Direct Instances: []\n", + "[INFO] [1712351063.943271]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351063.943708]: -------------------\n", + "[INFO] [1712351063.944136]: SOMA.Algorithm \n", + "[INFO] [1712351063.944597]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712351063.945138]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Algorithm, DUL.Object, DUL.Entity, owl.Thing, DUL.Plan}\n", + "[INFO] [1712351063.945575]: Subclasses: []\n", + "[INFO] [1712351063.946043]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.946882]: Instances: []\n", + "[INFO] [1712351063.947343]: Direct Instances: []\n", + "[INFO] [1712351063.949078]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712351063.949739]: -------------------\n", + "[INFO] [1712351063.950279]: SOMA.Alteration \n", + "[INFO] [1712351063.950663]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712351063.951052]: Ancestors: {SOMA.Alteration, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.951432]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712351063.951866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.952540]: Instances: []\n", + "[INFO] [1712351063.952893]: Direct Instances: []\n", + "[INFO] [1712351063.953225]: Inverse Restrictions: []\n", + "[INFO] [1712351063.953554]: -------------------\n", + "[INFO] [1712351063.953859]: SOMA.AlterativeInteraction \n", + "[INFO] [1712351063.954159]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712351063.955177]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.AlterativeInteraction, DUL.EventType, SOMA.ForceInteraction}\n", + "[INFO] [1712351063.955517]: Subclasses: []\n", + "[INFO] [1712351063.955876]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.956405]: Instances: []\n", + "[INFO] [1712351063.956677]: Direct Instances: []\n", + "[INFO] [1712351063.956980]: Inverse Restrictions: []\n", + "[INFO] [1712351063.957230]: -------------------\n", + "[INFO] [1712351063.957477]: SOMA.ForceInteraction \n", + "[INFO] [1712351063.957746]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712351063.958025]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, SOMA.ForceInteraction}\n", + "[INFO] [1712351063.958293]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712351063.958624]: Properties: [rdf-schema.label, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712351063.959128]: Instances: []\n", + "[INFO] [1712351063.959404]: Direct Instances: []\n", + "[INFO] [1712351063.959665]: Inverse Restrictions: []\n", + "[INFO] [1712351063.959925]: -------------------\n", + "[INFO] [1712351063.960167]: SOMA.PreservativeInteraction \n", + "[INFO] [1712351063.960406]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712351063.960676]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.PreservativeInteraction, DUL.Concept, DUL.EventType, SOMA.ForceInteraction}\n", + "[INFO] [1712351063.960956]: Subclasses: []\n", + "[INFO] [1712351063.961262]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.961762]: Instances: []\n", + "[INFO] [1712351063.962049]: Direct Instances: []\n", + "[INFO] [1712351063.962348]: Inverse Restrictions: []\n", + "[INFO] [1712351063.962602]: -------------------\n", + "[INFO] [1712351063.962853]: SOMA.AlteredObject \n", + "[INFO] [1712351063.963113]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351063.963382]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.963655]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712351063.963953]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.964477]: Instances: []\n", + "[INFO] [1712351063.964757]: Direct Instances: []\n", + "[INFO] [1712351063.965508]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712351063.965788]: -------------------\n", + "[INFO] [1712351063.966042]: SOMA.Amateurish \n", + "[INFO] [1712351063.966300]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712351063.966597]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351063.966862]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712351063.967165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.967672]: Instances: []\n", + "[INFO] [1712351063.967953]: Direct Instances: []\n", + "[INFO] [1712351063.968213]: Inverse Restrictions: []\n", + "[INFO] [1712351063.968453]: -------------------\n", + "[INFO] [1712351063.968686]: SOMA.AnsweringTask \n", + "[INFO] [1712351063.968929]: Super classes: [owl.Thing]\n", + "[INFO] [1712351063.971402]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", + "[INFO] [1712351063.971702]: Subclasses: []\n", + "[INFO] [1712351063.972039]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.972556]: Instances: []\n", + "[INFO] [1712351063.972844]: Direct Instances: []\n", + "[INFO] [1712351063.973151]: Inverse Restrictions: []\n", + "[INFO] [1712351063.973411]: -------------------\n", + "[INFO] [1712351063.973667]: SOMA.CommandingTask \n", + "[INFO] [1712351063.974317]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712351063.974613]: Ancestors: {SOMA.CommandingTask, owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712351063.974877]: Subclasses: []\n", + "[INFO] [1712351063.975184]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.975696]: Instances: []\n", + "[INFO] [1712351063.975980]: Direct Instances: []\n", + "[INFO] [1712351063.976321]: Inverse Restrictions: []\n", + "[INFO] [1712351063.976570]: -------------------\n", + "[INFO] [1712351063.976818]: SOMA.IllocutionaryTask \n", + "[INFO] [1712351063.978206]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712351063.978488]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712351063.978758]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712351063.979069]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.979609]: Instances: []\n", + "[INFO] [1712351063.979968]: Direct Instances: []\n", + "[INFO] [1712351063.980285]: Inverse Restrictions: []\n", + "[INFO] [1712351063.980539]: -------------------\n", + "[INFO] [1712351063.980793]: SOMA.Antagonist \n", + "[INFO] [1712351063.981041]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351063.981328]: Ancestors: {DUL.SocialObject, SOMA.Antagonist, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351063.981593]: Subclasses: []\n", + "[INFO] [1712351063.981888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.982378]: Instances: []\n", + "[INFO] [1712351063.982673]: Direct Instances: []\n", + "[INFO] [1712351063.983006]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712351063.983268]: -------------------\n", + "[INFO] [1712351063.983523]: SOMA.Appliance \n", + "[INFO] [1712351063.983806]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712351063.984096]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351063.984392]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712351063.984746]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.985271]: Instances: []\n", + "[INFO] [1712351063.985569]: Direct Instances: []\n", + "[INFO] [1712351063.985844]: Inverse Restrictions: []\n", + "[INFO] [1712351063.986100]: -------------------\n", + "[INFO] [1712351063.986353]: SOMA.Approaching \n", + "[INFO] [1712351063.986617]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351063.986933]: Ancestors: {SOMA.Approaching, DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.987200]: Subclasses: []\n", + "[INFO] [1712351063.987509]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.988027]: Instances: []\n", + "[INFO] [1712351063.988308]: Direct Instances: []\n", + "[INFO] [1712351063.988576]: Inverse Restrictions: []\n", + "[INFO] [1712351063.988833]: -------------------\n", + "[INFO] [1712351063.989079]: SOMA.Locomotion \n", + "[INFO] [1712351063.989330]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712351063.989606]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351063.989883]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712351063.990197]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.990713]: Instances: []\n", + "[INFO] [1712351063.990999]: Direct Instances: []\n", + "[INFO] [1712351063.991315]: Inverse Restrictions: []\n", + "[INFO] [1712351063.991588]: -------------------\n", + "[INFO] [1712351063.991844]: SOMA.ArchiveFile \n", + "[INFO] [1712351063.992094]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712351063.993342]: Ancestors: {SOMA.ArchiveFile, DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", + "[INFO] [1712351063.993654]: Subclasses: []\n", + "[INFO] [1712351063.993988]: Properties: [rdf-schema.label, DUL.realizes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351063.994496]: Instances: []\n", + "[INFO] [1712351063.994771]: Direct Instances: []\n", + "[INFO] [1712351063.995047]: Inverse Restrictions: []\n", + "[INFO] [1712351063.995317]: -------------------\n", + "[INFO] [1712351063.995572]: SOMA.ArchiveText \n", + "[INFO] [1712351063.995825]: Super classes: [owl.Thing]\n", + "[INFO] [1712351063.997656]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", + "[INFO] [1712351063.998003]: Subclasses: []\n", + "[INFO] [1712351063.998340]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.expresses, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351063.998865]: Instances: []\n", + "[INFO] [1712351063.999153]: Direct Instances: []\n", + "[INFO] [1712351063.999523]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712351063.999789]: -------------------\n", + "[INFO] [1712351064.000053]: SOMA.Digital_File \n", + "[INFO] [1712351064.000333]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712351064.000618]: Ancestors: {DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", + "[INFO] [1712351064.000903]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712351064.001323]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.realizes, SOMA.hasNameString, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.001871]: Instances: []\n", + "[INFO] [1712351064.002156]: Direct Instances: []\n", + "[INFO] [1712351064.004721]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712351064.005082]: -------------------\n", + "[INFO] [1712351064.005359]: SOMA.ArchiveFormat \n", + "[INFO] [1712351064.005628]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712351064.005949]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.ArchiveFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.006216]: Subclasses: []\n", + "[INFO] [1712351064.006531]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.007060]: Instances: []\n", + "[INFO] [1712351064.007347]: Direct Instances: []\n", + "[INFO] [1712351064.007650]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712351064.007913]: -------------------\n", + "[INFO] [1712351064.008164]: SOMA.File_format \n", + "[INFO] [1712351064.008427]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351064.008694]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.008965]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712351064.009272]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.009785]: Instances: []\n", + "[INFO] [1712351064.010077]: Direct Instances: []\n", + "[INFO] [1712351064.010351]: Inverse Restrictions: []\n", + "[INFO] [1712351064.010605]: -------------------\n", + "[INFO] [1712351064.010855]: SOMA.FileConfiguration \n", + "[INFO] [1712351064.011102]: Super classes: [owl.Thing]\n", + "[INFO] [1712351064.012308]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", + "[INFO] [1712351064.012631]: Subclasses: []\n", + "[INFO] [1712351064.012973]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.013514]: Instances: []\n", + "[INFO] [1712351064.013812]: Direct Instances: []\n", + "[INFO] [1712351064.014141]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712351064.014405]: -------------------\n", + "[INFO] [1712351064.014656]: SOMA.Structured_Text \n", + "[INFO] [1712351064.014906]: Super classes: [owl.Thing]\n", + "[INFO] [1712351064.016129]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", + "[INFO] [1712351064.016458]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712351064.016794]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.017315]: Instances: []\n", + "[INFO] [1712351064.017595]: Direct Instances: []\n", + "[INFO] [1712351064.020218]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712351064.020509]: -------------------\n", + "[INFO] [1712351064.020778]: SOMA.AreaSurveying \n", + "[INFO] [1712351064.021053]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712351064.021344]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", + "[INFO] [1712351064.021610]: Subclasses: []\n", + "[INFO] [1712351064.021915]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.022410]: Instances: []\n", + "[INFO] [1712351064.022697]: Direct Instances: []\n", + "[INFO] [1712351064.022971]: Inverse Restrictions: []\n", + "[INFO] [1712351064.023234]: -------------------\n", + "[INFO] [1712351064.023490]: SOMA.Perceiving \n", + "[INFO] [1712351064.023747]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712351064.024006]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712351064.024283]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712351064.024595]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.025110]: Instances: []\n", + "[INFO] [1712351064.025413]: Direct Instances: []\n", + "[INFO] [1712351064.025692]: Inverse Restrictions: []\n", + "[INFO] [1712351064.025950]: -------------------\n", + "[INFO] [1712351064.026203]: SOMA.Arm \n", + "[INFO] [1712351064.026452]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712351064.027333]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Arm, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712351064.027629]: Subclasses: []\n", + "[INFO] [1712351064.027944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.028470]: Instances: []\n", + "[INFO] [1712351064.028749]: Direct Instances: []\n", + "[INFO] [1712351064.029058]: Inverse Restrictions: []\n", + "[INFO] [1712351064.029334]: -------------------\n", + "[INFO] [1712351064.029619]: SOMA.Limb \n", + "[INFO] [1712351064.029914]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712351064.030189]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712351064.030458]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712351064.030790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.031320]: Instances: []\n", + "[INFO] [1712351064.031598]: Direct Instances: []\n", + "[INFO] [1712351064.032287]: Inverse Restrictions: []\n", + "[INFO] [1712351064.032574]: -------------------\n", + "[INFO] [1712351064.032847]: SOMA.Armchair \n", + "[INFO] [1712351064.033105]: Super classes: [SOMA.DesignedChair]\n", + "[INFO] [1712351064.033406]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Armchair, SOMA.DesignedFurniture, SOMA.DesignedChair, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.033674]: Subclasses: []\n", + "[INFO] [1712351064.033990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.034491]: Instances: []\n", + "[INFO] [1712351064.034773]: Direct Instances: []\n", + "[INFO] [1712351064.035031]: Inverse Restrictions: []\n", + "[INFO] [1712351064.035295]: -------------------\n", + "[INFO] [1712351064.035549]: SOMA.DesignedChair \n", + "[INFO] [1712351064.035799]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712351064.036053]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, SOMA.DesignedChair, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.036316]: Subclasses: [SOMA.Armchair]\n", + "[INFO] [1712351064.036638]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.037152]: Instances: []\n", + "[INFO] [1712351064.037427]: Direct Instances: []\n", + "[INFO] [1712351064.037689]: Inverse Restrictions: []\n", + "[INFO] [1712351064.037942]: -------------------\n", + "[INFO] [1712351064.038205]: SOMA.Arranging \n", + "[INFO] [1712351064.038460]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712351064.038751]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Arranging, owl.Thing}\n", + "[INFO] [1712351064.039017]: Subclasses: []\n", + "[INFO] [1712351064.039318]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.039835]: Instances: []\n", + "[INFO] [1712351064.040118]: Direct Instances: []\n", + "[INFO] [1712351064.040387]: Inverse Restrictions: []\n", + "[INFO] [1712351064.040640]: -------------------\n", + "[INFO] [1712351064.040896]: SOMA.Constructing \n", + "[INFO] [1712351064.041193]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351064.041479]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.041753]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712351064.042068]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.042593]: Instances: []\n", + "[INFO] [1712351064.042871]: Direct Instances: []\n", + "[INFO] [1712351064.043140]: Inverse Restrictions: []\n", + "[INFO] [1712351064.043399]: -------------------\n", + "[INFO] [1712351064.043649]: SOMA.ArtificialAgent \n", + "[INFO] [1712351064.043899]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712351064.044201]: Ancestors: {DUL.Object, DUL.Entity, SOMA.ArtificialAgent, DUL.Agent, DUL.PhysicalAgent, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.044474]: Subclasses: []\n", + "[INFO] [1712351064.044787]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.045296]: Instances: []\n", + "[INFO] [1712351064.045590]: Direct Instances: []\n", + "[INFO] [1712351064.045863]: Inverse Restrictions: []\n", + "[INFO] [1712351064.046119]: -------------------\n", + "[INFO] [1712351064.046408]: SOMA.Assembling \n", + "[INFO] [1712351064.046672]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712351064.046963]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.Assembling, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.047266]: Subclasses: []\n", + "[INFO] [1712351064.047589]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.048083]: Instances: []\n", + "[INFO] [1712351064.048347]: Direct Instances: []\n", + "[INFO] [1712351064.048601]: Inverse Restrictions: []\n", + "[INFO] [1712351064.048858]: -------------------\n", + "[INFO] [1712351064.049123]: SOMA.AssertionTask \n", + "[INFO] [1712351064.049771]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712351064.050059]: Ancestors: {SOMA.AssertionTask, owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712351064.050319]: Subclasses: []\n", + "[INFO] [1712351064.050626]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.051137]: Instances: []\n", + "[INFO] [1712351064.051410]: Direct Instances: []\n", + "[INFO] [1712351064.051672]: Inverse Restrictions: []\n", + "[INFO] [1712351064.051925]: -------------------\n", + "[INFO] [1712351064.052183]: SOMA.DeclarativeClause \n", + "[INFO] [1712351064.052446]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712351064.052754]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing, SOMA.DeclarativeClause}\n", + "[INFO] [1712351064.053027]: Subclasses: []\n", + "[INFO] [1712351064.053341]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.053864]: Instances: []\n", + "[INFO] [1712351064.054149]: Direct Instances: []\n", + "[INFO] [1712351064.054456]: Inverse Restrictions: []\n", + "[INFO] [1712351064.054723]: -------------------\n", + "[INFO] [1712351064.054981]: SOMA.AssumingArmPose \n", + "[INFO] [1712351064.055242]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712351064.055525]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.AssumingArmPose, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.055790]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712351064.056104]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.056614]: Instances: []\n", + "[INFO] [1712351064.056894]: Direct Instances: []\n", + "[INFO] [1712351064.057167]: Inverse Restrictions: []\n", + "[INFO] [1712351064.057420]: -------------------\n", + "[INFO] [1712351064.057683]: SOMA.AssumingPose \n", + "[INFO] [1712351064.057940]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351064.058209]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.058479]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712351064.058781]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.059307]: Instances: []\n", + "[INFO] [1712351064.059592]: Direct Instances: []\n", + "[INFO] [1712351064.059865]: Inverse Restrictions: []\n", + "[INFO] [1712351064.060120]: -------------------\n", + "[INFO] [1712351064.060371]: SOMA.AttentionShift \n", + "[INFO] [1712351064.060637]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712351064.060957]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AttentionShift, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.061231]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712351064.061551]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.062070]: Instances: []\n", + "[INFO] [1712351064.062366]: Direct Instances: []\n", + "[INFO] [1712351064.062651]: Inverse Restrictions: []\n", + "[INFO] [1712351064.062906]: -------------------\n", + "[INFO] [1712351064.063175]: SOMA.MentalTask \n", + "[INFO] [1712351064.063450]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712351064.063736]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.064019]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712351064.064335]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.064861]: Instances: []\n", + "[INFO] [1712351064.065168]: Direct Instances: []\n", + "[INFO] [1712351064.065489]: Inverse Restrictions: []\n", + "[INFO] [1712351064.065751]: -------------------\n", + "[INFO] [1712351064.066006]: SOMA.AvoidedObject \n", + "[INFO] [1712351064.066269]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.066580]: Ancestors: {DUL.SocialObject, SOMA.AvoidedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.066853]: Subclasses: []\n", + "[INFO] [1712351064.067167]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.067681]: Instances: []\n", + "[INFO] [1712351064.067962]: Direct Instances: []\n", + "[INFO] [1712351064.068225]: Inverse Restrictions: []\n", + "[INFO] [1712351064.068483]: -------------------\n", + "[INFO] [1712351064.068735]: SOMA.Avoiding \n", + "[INFO] [1712351064.068998]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712351064.069293]: Ancestors: {SOMA.Avoiding, DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.069560]: Subclasses: []\n", + "[INFO] [1712351064.069866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.070360]: Instances: []\n", + "[INFO] [1712351064.070645]: Direct Instances: []\n", + "[INFO] [1712351064.070915]: Inverse Restrictions: []\n", + "[INFO] [1712351064.071325]: -------------------\n", + "[INFO] [1712351064.071675]: SOMA.Navigating \n", + "[INFO] [1712351064.071941]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351064.072209]: Ancestors: {DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.072505]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712351064.072823]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.073335]: Instances: []\n", + "[INFO] [1712351064.073606]: Direct Instances: []\n", + "[INFO] [1712351064.073877]: Inverse Restrictions: []\n", + "[INFO] [1712351064.074140]: -------------------\n", + "[INFO] [1712351064.074395]: SOMA.BakedGood \n", + "[INFO] [1712351064.074648]: Super classes: [SOMA.Dish]\n", + "[INFO] [1712351064.074933]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Dish, SOMA.BakedGood, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.075196]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", + "[INFO] [1712351064.075511]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.076021]: Instances: []\n", + "[INFO] [1712351064.076308]: Direct Instances: []\n", + "[INFO] [1712351064.076585]: Inverse Restrictions: []\n", + "[INFO] [1712351064.076859]: -------------------\n", + "[INFO] [1712351064.077134]: SOMA.Dish \n", + "[INFO] [1712351064.077398]: Super classes: [DUL.DesignedArtifact]\n", + "[INFO] [1712351064.077670]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Dish, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.077947]: Subclasses: [SOMA.BakedGood]\n", + "[INFO] [1712351064.078263]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.078760]: Instances: []\n", + "[INFO] [1712351064.079054]: Direct Instances: []\n", + "[INFO] [1712351064.079327]: Inverse Restrictions: []\n", + "[INFO] [1712351064.079584]: -------------------\n", + "[INFO] [1712351064.079860]: SOMA.Barrier \n", + "[INFO] [1712351064.080117]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712351064.080415]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.080701]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712351064.081141]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.081718]: Instances: []\n", + "[INFO] [1712351064.082034]: Direct Instances: []\n", + "[INFO] [1712351064.082381]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712351064.082673]: -------------------\n", + "[INFO] [1712351064.082953]: SOMA.Restrictor \n", + "[INFO] [1712351064.083245]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712351064.083518]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.083789]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712351064.084092]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.084664]: Instances: []\n", + "[INFO] [1712351064.084975]: Direct Instances: []\n", + "[INFO] [1712351064.085372]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712351064.085646]: -------------------\n", + "[INFO] [1712351064.085918]: SOMA.BedsideTable \n", + "[INFO] [1712351064.086176]: Super classes: [SOMA.Table]\n", + "[INFO] [1712351064.086466]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.BedsideTable, SOMA.DesignedFurniture, SOMA.Table, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.086729]: Subclasses: []\n", + "[INFO] [1712351064.087026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.087540]: Instances: []\n", + "[INFO] [1712351064.087816]: Direct Instances: []\n", + "[INFO] [1712351064.088085]: Inverse Restrictions: []\n", + "[INFO] [1712351064.088337]: -------------------\n", + "[INFO] [1712351064.088584]: SOMA.Table \n", + "[INFO] [1712351064.088837]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712351064.089105]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, SOMA.Table, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.089376]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", + "[INFO] [1712351064.089673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.090191]: Instances: []\n", + "[INFO] [1712351064.090460]: Direct Instances: []\n", + "[INFO] [1712351064.090722]: Inverse Restrictions: []\n", + "[INFO] [1712351064.090982]: -------------------\n", + "[INFO] [1712351064.091245]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712351064.091513]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712351064.091775]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.092033]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712351064.092330]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.092876]: Instances: []\n", + "[INFO] [1712351064.093160]: Direct Instances: []\n", + "[INFO] [1712351064.093429]: Inverse Restrictions: []\n", + "[INFO] [1712351064.093682]: -------------------\n", + "[INFO] [1712351064.093932]: SOMA.BeneficiaryRole \n", + "[INFO] [1712351064.094179]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712351064.094482]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, owl.Thing}\n", + "[INFO] [1712351064.094754]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712351064.095056]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.095545]: Instances: []\n", + "[INFO] [1712351064.095831]: Direct Instances: []\n", + "[INFO] [1712351064.096098]: Inverse Restrictions: []\n", + "[INFO] [1712351064.096339]: -------------------\n", + "[INFO] [1712351064.096592]: SOMA.GoalRole \n", + "[INFO] [1712351064.096842]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351064.097095]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.097371]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712351064.097685]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.098227]: Instances: []\n", + "[INFO] [1712351064.098506]: Direct Instances: []\n", + "[INFO] [1712351064.098785]: Inverse Restrictions: []\n", + "[INFO] [1712351064.099041]: -------------------\n", + "[INFO] [1712351064.099287]: SOMA.CounterfactualBinding \n", + "[INFO] [1712351064.099527]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712351064.099793]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, SOMA.CounterfactualBinding, DUL.Relation}\n", + "[INFO] [1712351064.100060]: Subclasses: []\n", + "[INFO] [1712351064.100371]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.100863]: Instances: []\n", + "[INFO] [1712351064.101126]: Direct Instances: []\n", + "[INFO] [1712351064.101454]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712351064.101724]: -------------------\n", + "[INFO] [1712351064.101980]: SOMA.FactualBinding \n", + "[INFO] [1712351064.102228]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712351064.102497]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, SOMA.FactualBinding, DUL.Relation}\n", + "[INFO] [1712351064.102744]: Subclasses: []\n", + "[INFO] [1712351064.103047]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.103544]: Instances: []\n", + "[INFO] [1712351064.103804]: Direct Instances: []\n", + "[INFO] [1712351064.104143]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712351064.104411]: -------------------\n", + "[INFO] [1712351064.104661]: SOMA.RoleFillerBinding \n", + "[INFO] [1712351064.104933]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712351064.105211]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, SOMA.RoleFillerBinding, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351064.105465]: Subclasses: []\n", + "[INFO] [1712351064.105787]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.106278]: Instances: []\n", + "[INFO] [1712351064.106547]: Direct Instances: []\n", + "[INFO] [1712351064.106849]: Inverse Restrictions: []\n", + "[INFO] [1712351064.107101]: -------------------\n", + "[INFO] [1712351064.107343]: SOMA.RoleRoleBinding \n", + "[INFO] [1712351064.107991]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712351064.108299]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.RoleRoleBinding, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351064.108570]: Subclasses: []\n", + "[INFO] [1712351064.108920]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.109535]: Instances: []\n", + "[INFO] [1712351064.109858]: Direct Instances: []\n", + "[INFO] [1712351064.110189]: Inverse Restrictions: []\n", + "[INFO] [1712351064.110467]: -------------------\n", + "[INFO] [1712351064.110736]: SOMA.Blade \n", + "[INFO] [1712351064.110994]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.111288]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Blade, DUL.PhysicalObject}\n", + "[INFO] [1712351064.111542]: Subclasses: []\n", + "[INFO] [1712351064.111835]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.112322]: Instances: []\n", + "[INFO] [1712351064.112606]: Direct Instances: []\n", + "[INFO] [1712351064.112903]: Inverse Restrictions: [SOMA.Knife]\n", + "[INFO] [1712351064.113178]: -------------------\n", + "[INFO] [1712351064.113426]: SOMA.DesignedComponent \n", + "[INFO] [1712351064.113688]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712351064.113961]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.114247]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712351064.114554]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.115071]: Instances: []\n", + "[INFO] [1712351064.115341]: Direct Instances: []\n", + "[INFO] [1712351064.115601]: Inverse Restrictions: []\n", + "[INFO] [1712351064.115845]: -------------------\n", + "[INFO] [1712351064.116083]: SOMA.Blockage \n", + "[INFO] [1712351064.116357]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712351064.116632]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.116894]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712351064.117193]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.117701]: Instances: []\n", + "[INFO] [1712351064.117969]: Direct Instances: []\n", + "[INFO] [1712351064.118223]: Inverse Restrictions: []\n", + "[INFO] [1712351064.118470]: -------------------\n", + "[INFO] [1712351064.118712]: SOMA.BlockedObject \n", + "[INFO] [1712351064.118946]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.119227]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, SOMA.BlockedObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.119490]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712351064.119785]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.120289]: Instances: []\n", + "[INFO] [1712351064.120553]: Direct Instances: []\n", + "[INFO] [1712351064.120936]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712351064.121214]: -------------------\n", + "[INFO] [1712351064.121466]: SOMA.BodyMovement \n", + "[INFO] [1712351064.122508]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712351064.122826]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, DUL.Concept, SOMA.ProcessType, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.123110]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712351064.123419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.123951]: Instances: []\n", + "[INFO] [1712351064.124228]: Direct Instances: []\n", + "[INFO] [1712351064.124495]: Inverse Restrictions: []\n", + "[INFO] [1712351064.124741]: -------------------\n", + "[INFO] [1712351064.124990]: SOMA.Motion \n", + "[INFO] [1712351064.125233]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712351064.125481]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.125754]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712351064.126053]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.126605]: Instances: []\n", + "[INFO] [1712351064.126868]: Direct Instances: []\n", + "[INFO] [1712351064.127133]: Inverse Restrictions: []\n", + "[INFO] [1712351064.127377]: -------------------\n", + "[INFO] [1712351064.127634]: SOMA.Boiling \n", + "[INFO] [1712351064.127878]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712351064.128160]: Ancestors: {SOMA.Alteration, SOMA.Vaporizing, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Boiling, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.128414]: Subclasses: []\n", + "[INFO] [1712351064.128709]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.129210]: Instances: []\n", + "[INFO] [1712351064.129473]: Direct Instances: []\n", + "[INFO] [1712351064.129771]: Inverse Restrictions: []\n", + "[INFO] [1712351064.130010]: -------------------\n", + "[INFO] [1712351064.130254]: SOMA.Vaporizing \n", + "[INFO] [1712351064.130921]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712351064.131198]: Ancestors: {SOMA.Alteration, SOMA.Vaporizing, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.131459]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712351064.131782]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment]\n", + "[INFO] [1712351064.132302]: Instances: []\n", + "[INFO] [1712351064.132570]: Direct Instances: []\n", + "[INFO] [1712351064.132829]: Inverse Restrictions: []\n", + "[INFO] [1712351064.133073]: -------------------\n", + "[INFO] [1712351064.133312]: SOMA.Bottle \n", + "[INFO] [1712351064.133559]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712351064.133826]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bottle, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.134078]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", + "[INFO] [1712351064.134368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.134865]: Instances: []\n", + "[INFO] [1712351064.135131]: Direct Instances: []\n", + "[INFO] [1712351064.135399]: Inverse Restrictions: []\n", + "[INFO] [1712351064.135650]: -------------------\n", + "[INFO] [1712351064.135890]: SOMA.DesignedContainer \n", + "[INFO] [1712351064.136134]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712351064.136374]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.136647]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", + "[INFO] [1712351064.136959]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.137509]: Instances: []\n", + "[INFO] [1712351064.137791]: Direct Instances: []\n", + "[INFO] [1712351064.138058]: Inverse Restrictions: []\n", + "[INFO] [1712351064.138303]: -------------------\n", + "[INFO] [1712351064.138537]: SOMA.Bowl \n", + "[INFO] [1712351064.138773]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712351064.139059]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Bowl, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351064.139330]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", + "[INFO] [1712351064.139624]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.140115]: Instances: []\n", + "[INFO] [1712351064.140417]: Direct Instances: []\n", + "[INFO] [1712351064.140705]: Inverse Restrictions: [SOMA.Spoon]\n", + "[INFO] [1712351064.141042]: -------------------\n", + "[INFO] [1712351064.141359]: SOMA.Crockery \n", + "[INFO] [1712351064.142270]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712351064.142563]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.Crockery, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.142840]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", + "[INFO] [1712351064.143142]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.143677]: Instances: []\n", + "[INFO] [1712351064.143948]: Direct Instances: []\n", + "[INFO] [1712351064.144204]: Inverse Restrictions: []\n", + "[INFO] [1712351064.144444]: -------------------\n", + "[INFO] [1712351064.144682]: SOMA.Box \n", + "[INFO] [1712351064.144949]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", + "[INFO] [1712351064.145225]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Box, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.145478]: Subclasses: [SOMA.CerealBox]\n", + "[INFO] [1712351064.145769]: Properties: [SOMA.hasShapeRegion, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.146268]: Instances: []\n", + "[INFO] [1712351064.146555]: Direct Instances: []\n", + "[INFO] [1712351064.146820]: Inverse Restrictions: []\n", + "[INFO] [1712351064.147063]: -------------------\n", + "[INFO] [1712351064.147300]: SOMA.BoxShape \n", + "[INFO] [1712351064.147587]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712351064.147887]: Ancestors: {SOMA.BoxShape, SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351064.148145]: Subclasses: []\n", + "[INFO] [1712351064.148448]: Properties: [rdf-schema.comment, SOMA.hasHeight, rdf-schema.label, SOMA.hasWidth, SOMA.hasLength, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.148939]: Instances: []\n", + "[INFO] [1712351064.149216]: Direct Instances: []\n", + "[INFO] [1712351064.149503]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712351064.149803]: -------------------\n", + "[INFO] [1712351064.150080]: SOMA.Bread \n", + "[INFO] [1712351064.150342]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712351064.150631]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Bread, DUL.Object, DUL.Entity, DUL.PhysicalObject, SOMA.BakedGood, owl.Thing, SOMA.Dish}\n", + "[INFO] [1712351064.151099]: Subclasses: []\n", + "[INFO] [1712351064.151433]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.151951]: Instances: []\n", + "[INFO] [1712351064.152240]: Direct Instances: []\n", + "[INFO] [1712351064.152505]: Inverse Restrictions: []\n", + "[INFO] [1712351064.152756]: -------------------\n", + "[INFO] [1712351064.153014]: SOMA.BreadKnife \n", + "[INFO] [1712351064.153272]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712351064.153580]: Ancestors: {DUL.DesignedArtifact, SOMA.BreadKnife, DUL.PhysicalArtifact, SOMA.KitchenKnife, SOMA.DesignedTool, SOMA.Knife, DUL.Object, SOMA.CuttingTool, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.153845]: Subclasses: []\n", + "[INFO] [1712351064.154142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.154635]: Instances: []\n", + "[INFO] [1712351064.154922]: Direct Instances: []\n", + "[INFO] [1712351064.155189]: Inverse Restrictions: []\n", + "[INFO] [1712351064.155450]: -------------------\n", + "[INFO] [1712351064.155695]: SOMA.KitchenKnife \n", + "[INFO] [1712351064.155937]: Super classes: [SOMA.Knife]\n", + "[INFO] [1712351064.156199]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.KitchenKnife, SOMA.DesignedTool, SOMA.Knife, DUL.Object, SOMA.CuttingTool, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.156467]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", + "[INFO] [1712351064.156767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.157269]: Instances: []\n", + "[INFO] [1712351064.157551]: Direct Instances: []\n", + "[INFO] [1712351064.157822]: Inverse Restrictions: []\n", + "[INFO] [1712351064.158073]: -------------------\n", + "[INFO] [1712351064.158320]: SOMA.BreakfastPlate \n", + "[INFO] [1712351064.158561]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712351064.158844]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, owl.Thing, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.BreakfastPlate, SOMA.Plate, SOMA.Crockery}\n", + "[INFO] [1712351064.159118]: Subclasses: []\n", + "[INFO] [1712351064.159421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.159917]: Instances: []\n", + "[INFO] [1712351064.160191]: Direct Instances: []\n", + "[INFO] [1712351064.160454]: Inverse Restrictions: []\n", + "[INFO] [1712351064.160700]: -------------------\n", + "[INFO] [1712351064.160947]: SOMA.Plate \n", + "[INFO] [1712351064.161190]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712351064.161450]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, owl.Thing, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Plate, SOMA.Crockery}\n", + "[INFO] [1712351064.161715]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", + "[INFO] [1712351064.162021]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.162530]: Instances: []\n", + "[INFO] [1712351064.162824]: Direct Instances: []\n", + "[INFO] [1712351064.163120]: Inverse Restrictions: []\n", + "[INFO] [1712351064.163398]: -------------------\n", + "[INFO] [1712351064.163666]: SOMA.Building \n", + "[INFO] [1712351064.163931]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712351064.164239]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Building, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.164532]: Subclasses: []\n", + "[INFO] [1712351064.164882]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.165522]: Instances: []\n", + "[INFO] [1712351064.165849]: Direct Instances: []\n", + "[INFO] [1712351064.166145]: Inverse Restrictions: []\n", + "[INFO] [1712351064.166416]: -------------------\n", + "[INFO] [1712351064.166674]: SOMA.Deposition \n", + "[INFO] [1712351064.166962]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712351064.167254]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.167527]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712351064.167834]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.168344]: Instances: []\n", + "[INFO] [1712351064.168608]: Direct Instances: []\n", + "[INFO] [1712351064.169314]: Inverse Restrictions: []\n", + "[INFO] [1712351064.169575]: -------------------\n", + "[INFO] [1712351064.169828]: SOMA.CanCut \n", + "[INFO] [1712351064.170096]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712351064.170384]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.170649]: Subclasses: []\n", + "[INFO] [1712351064.170954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.171446]: Instances: []\n", + "[INFO] [1712351064.171704]: Direct Instances: []\n", + "[INFO] [1712351064.171952]: Inverse Restrictions: []\n", + "[INFO] [1712351064.172208]: -------------------\n", + "[INFO] [1712351064.172451]: SOMA.Variability \n", + "[INFO] [1712351064.172722]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712351064.173010]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.173286]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712351064.173589]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.174103]: Instances: []\n", + "[INFO] [1712351064.174378]: Direct Instances: []\n", + "[INFO] [1712351064.174642]: Inverse Restrictions: []\n", + "[INFO] [1712351064.174885]: -------------------\n", + "[INFO] [1712351064.175153]: SOMA.Cutter \n", + "[INFO] [1712351064.175411]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712351064.175700]: Ancestors: {SOMA.Tool, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.Cutter, owl.Thing}\n", + "[INFO] [1712351064.175950]: Subclasses: []\n", + "[INFO] [1712351064.176239]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.176733]: Instances: []\n", + "[INFO] [1712351064.177015]: Direct Instances: []\n", + "[INFO] [1712351064.177353]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712351064.177626]: -------------------\n", + "[INFO] [1712351064.177889]: SOMA.CutObject \n", + "[INFO] [1712351064.178169]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712351064.178474]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, DUL.Concept, SOMA.CutObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.178748]: Subclasses: []\n", + "[INFO] [1712351064.179083]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.179718]: Instances: []\n", + "[INFO] [1712351064.180082]: Direct Instances: []\n", + "[INFO] [1712351064.180461]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712351064.180741]: -------------------\n", + "[INFO] [1712351064.181018]: SOMA.Capability \n", + "[INFO] [1712351064.182736]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712351064.183047]: Ancestors: {SOMA.Extrinsic, SOMA.Capability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.183330]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712351064.183650]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.184157]: Instances: []\n", + "[INFO] [1712351064.184437]: Direct Instances: []\n", + "[INFO] [1712351064.184694]: Inverse Restrictions: []\n", + "[INFO] [1712351064.184962]: -------------------\n", + "[INFO] [1712351064.185231]: SOMA.Capacity \n", + "[INFO] [1712351064.185509]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351064.185810]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Capacity, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351064.186069]: Subclasses: []\n", + "[INFO] [1712351064.186367]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.186858]: Instances: []\n", + "[INFO] [1712351064.187124]: Direct Instances: []\n", + "[INFO] [1712351064.187795]: Inverse Restrictions: []\n", + "[INFO] [1712351064.188068]: -------------------\n", + "[INFO] [1712351064.188320]: SOMA.Intrinsic \n", + "[INFO] [1712351064.188562]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712351064.188818]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351064.189095]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712351064.189407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.189924]: Instances: []\n", + "[INFO] [1712351064.190190]: Direct Instances: []\n", + "[INFO] [1712351064.190453]: Inverse Restrictions: []\n", + "[INFO] [1712351064.190692]: -------------------\n", + "[INFO] [1712351064.190928]: SOMA.Carafe \n", + "[INFO] [1712351064.191179]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712351064.191450]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Carafe, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.191705]: Subclasses: [SOMA.CoffeeCarafe]\n", + "[INFO] [1712351064.191990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.192493]: Instances: []\n", + "[INFO] [1712351064.192755]: Direct Instances: []\n", + "[INFO] [1712351064.193019]: Inverse Restrictions: []\n", + "[INFO] [1712351064.193258]: -------------------\n", + "[INFO] [1712351064.193494]: SOMA.Catching \n", + "[INFO] [1712351064.193729]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.194005]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.Catching, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.194255]: Subclasses: []\n", + "[INFO] [1712351064.194556]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.195060]: Instances: []\n", + "[INFO] [1712351064.195332]: Direct Instances: []\n", + "[INFO] [1712351064.195595]: Inverse Restrictions: []\n", + "[INFO] [1712351064.195837]: -------------------\n", + "[INFO] [1712351064.196076]: SOMA.PickingUp \n", + "[INFO] [1712351064.196342]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351064.196644]: Ancestors: {SOMA.PickingUp, DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.196901]: Subclasses: []\n", + "[INFO] [1712351064.197197]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.197705]: Instances: []\n", + "[INFO] [1712351064.197998]: Direct Instances: []\n", + "[INFO] [1712351064.198266]: Inverse Restrictions: []\n", + "[INFO] [1712351064.198515]: -------------------\n", + "[INFO] [1712351064.198761]: SOMA.CausalEventRole \n", + "[INFO] [1712351064.199016]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712351064.199291]: Ancestors: {SOMA.CausalEventRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351064.199545]: Subclasses: []\n", + "[INFO] [1712351064.199837]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.200338]: Instances: []\n", + "[INFO] [1712351064.200601]: Direct Instances: []\n", + "[INFO] [1712351064.200913]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351064.201166]: -------------------\n", + "[INFO] [1712351064.201406]: SOMA.EventAdjacentRole \n", + "[INFO] [1712351064.201658]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712351064.201915]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.202178]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712351064.202476]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.203147]: Instances: []\n", + "[INFO] [1712351064.203414]: Direct Instances: []\n", + "[INFO] [1712351064.203673]: Inverse Restrictions: []\n", + "[INFO] [1712351064.203920]: -------------------\n", + "[INFO] [1712351064.204165]: SOMA.CausedMotionTheory \n", + "[INFO] [1712351064.204444]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712351064.204742]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CausedMotionTheory, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.205000]: Subclasses: []\n", + "[INFO] [1712351064.205300]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.hasPart, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.205804]: Instances: []\n", + "[INFO] [1712351064.206070]: Direct Instances: []\n", + "[INFO] [1712351064.206320]: Inverse Restrictions: []\n", + "[INFO] [1712351064.206566]: -------------------\n", + "[INFO] [1712351064.206808]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712351064.207057]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712351064.207307]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.207568]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712351064.207863]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.208381]: Instances: []\n", + "[INFO] [1712351064.208647]: Direct Instances: []\n", + "[INFO] [1712351064.208990]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.StateTransition, SOMA.Scene]\n", + "[INFO] [1712351064.209246]: -------------------\n", + "[INFO] [1712351064.209505]: SOMA.PerformerRole \n", + "[INFO] [1712351064.209773]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712351064.210050]: Ancestors: {DUL.SocialObject, SOMA.PerformerRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351064.210309]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712351064.210619]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.211130]: Instances: []\n", + "[INFO] [1712351064.211394]: Direct Instances: []\n", + "[INFO] [1712351064.211798]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351064.212081]: -------------------\n", + "[INFO] [1712351064.212342]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712351064.212631]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712351064.212917]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.SourcePathGoalTheory, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.213199]: Subclasses: []\n", + "[INFO] [1712351064.213517]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351064.214015]: Instances: []\n", + "[INFO] [1712351064.214290]: Direct Instances: []\n", + "[INFO] [1712351064.214581]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351064.214827]: -------------------\n", + "[INFO] [1712351064.215071]: SOMA.Ceiling \n", + "[INFO] [1712351064.215321]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712351064.215610]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, SOMA.Ceiling, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.215884]: Subclasses: []\n", + "[INFO] [1712351064.216187]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.216694]: Instances: []\n", + "[INFO] [1712351064.217094]: Direct Instances: []\n", + "[INFO] [1712351064.217436]: Inverse Restrictions: []\n", + "[INFO] [1712351064.217721]: -------------------\n", + "[INFO] [1712351064.217986]: SOMA.RoomSurface \n", + "[INFO] [1712351064.218240]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712351064.218505]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.218768]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712351064.219083]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.219589]: Instances: []\n", + "[INFO] [1712351064.219851]: Direct Instances: []\n", + "[INFO] [1712351064.220105]: Inverse Restrictions: []\n", + "[INFO] [1712351064.220345]: -------------------\n", + "[INFO] [1712351064.220597]: SOMA.Floor \n", + "[INFO] [1712351064.220845]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712351064.221114]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, SOMA.Floor, DUL.Entity, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.221362]: Subclasses: []\n", + "[INFO] [1712351064.221656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.222152]: Instances: []\n", + "[INFO] [1712351064.222416]: Direct Instances: []\n", + "[INFO] [1712351064.222670]: Inverse Restrictions: []\n", + "[INFO] [1712351064.222913]: -------------------\n", + "[INFO] [1712351064.223150]: SOMA.Wall \n", + "[INFO] [1712351064.223397]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712351064.223667]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, SOMA.Wall, DUL.Object, DUL.Entity, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.223919]: Subclasses: []\n", + "[INFO] [1712351064.224205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.224701]: Instances: []\n", + "[INFO] [1712351064.224966]: Direct Instances: []\n", + "[INFO] [1712351064.225216]: Inverse Restrictions: []\n", + "[INFO] [1712351064.225449]: -------------------\n", + "[INFO] [1712351064.225682]: SOMA.CeramicCooktop \n", + "[INFO] [1712351064.225919]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712351064.226210]: Ancestors: {SOMA.ElectricCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, SOMA.CeramicCooktop, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.226463]: Subclasses: []\n", + "[INFO] [1712351064.226746]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.227234]: Instances: []\n", + "[INFO] [1712351064.227498]: Direct Instances: []\n", + "[INFO] [1712351064.227747]: Inverse Restrictions: []\n", + "[INFO] [1712351064.227984]: -------------------\n", + "[INFO] [1712351064.228229]: SOMA.ElectricCooktop \n", + "[INFO] [1712351064.228472]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712351064.228728]: Ancestors: {SOMA.ElectricCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.228981]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", + "[INFO] [1712351064.229265]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.229802]: Instances: []\n", + "[INFO] [1712351064.230084]: Direct Instances: []\n", + "[INFO] [1712351064.230345]: Inverse Restrictions: []\n", + "[INFO] [1712351064.230591]: -------------------\n", + "[INFO] [1712351064.230831]: SOMA.CerealBox \n", + "[INFO] [1712351064.231074]: Super classes: [SOMA.Box]\n", + "[INFO] [1712351064.231347]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Box, SOMA.CerealBox, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.231595]: Subclasses: []\n", + "[INFO] [1712351064.231886]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.232385]: Instances: []\n", + "[INFO] [1712351064.232655]: Direct Instances: []\n", + "[INFO] [1712351064.232917]: Inverse Restrictions: []\n", + "[INFO] [1712351064.233158]: -------------------\n", + "[INFO] [1712351064.233398]: SOMA.Channel \n", + "[INFO] [1712351064.233669]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712351064.233953]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, SOMA.Channel, DUL.Entity, SOMA.PathRole, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.234201]: Subclasses: []\n", + "[INFO] [1712351064.234497]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.234997]: Instances: []\n", + "[INFO] [1712351064.235262]: Direct Instances: []\n", + "[INFO] [1712351064.235568]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351064.235816]: -------------------\n", + "[INFO] [1712351064.236055]: SOMA.PathRole \n", + "[INFO] [1712351064.236300]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712351064.236555]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PathRole, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.236806]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712351064.237098]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.237597]: Instances: []\n", + "[INFO] [1712351064.237859]: Direct Instances: []\n", + "[INFO] [1712351064.238147]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712351064.238388]: -------------------\n", + "[INFO] [1712351064.238623]: SOMA.CommunicationTask \n", + "[INFO] [1712351064.239650]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712351064.239950]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.240216]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712351064.240520]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.241046]: Instances: []\n", + "[INFO] [1712351064.241416]: Direct Instances: []\n", + "[INFO] [1712351064.242310]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel]\n", + "[INFO] [1712351064.242589]: -------------------\n", + "[INFO] [1712351064.242854]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712351064.243114]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712351064.243394]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", + "[INFO] [1712351064.243649]: Subclasses: []\n", + "[INFO] [1712351064.243947]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.244442]: Instances: []\n", + "[INFO] [1712351064.244715]: Direct Instances: []\n", + "[INFO] [1712351064.244975]: Inverse Restrictions: []\n", + "[INFO] [1712351064.245219]: -------------------\n", + "[INFO] [1712351064.245455]: SOMA.ChemicalProcess \n", + "[INFO] [1712351064.245693]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712351064.245961]: Ancestors: {DUL.Entity, SOMA.ChemicalProcess, DUL.Event, owl.Thing, DUL.Process}\n", + "[INFO] [1712351064.246223]: Subclasses: []\n", + "[INFO] [1712351064.246525]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.247013]: Instances: []\n", + "[INFO] [1712351064.247281]: Direct Instances: []\n", + "[INFO] [1712351064.247540]: Inverse Restrictions: []\n", + "[INFO] [1712351064.247783]: -------------------\n", + "[INFO] [1712351064.248022]: SOMA.Choice \n", + "[INFO] [1712351064.248257]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712351064.248529]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.Choice, DUL.Entity, DUL.Concept, SOMA.ResultRole, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.248790]: Subclasses: []\n", + "[INFO] [1712351064.249090]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.249569]: Instances: []\n", + "[INFO] [1712351064.249822]: Direct Instances: []\n", + "[INFO] [1712351064.250065]: Inverse Restrictions: []\n", + "[INFO] [1712351064.250294]: -------------------\n", + "[INFO] [1712351064.250536]: SOMA.ResultRole \n", + "[INFO] [1712351064.250774]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712351064.251020]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.ResultRole, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.251270]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712351064.251574]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.252070]: Instances: []\n", + "[INFO] [1712351064.252324]: Direct Instances: []\n", + "[INFO] [1712351064.252577]: Inverse Restrictions: []\n", + "[INFO] [1712351064.252830]: -------------------\n", + "[INFO] [1712351064.253070]: SOMA.CircularCylinder \n", + "[INFO] [1712351064.253328]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712351064.253605]: Ancestors: {SOMA.CircularCylinder, SOMA.CylinderShape, SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351064.253853]: Subclasses: []\n", + "[INFO] [1712351064.254152]: Properties: [rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.254642]: Instances: []\n", + "[INFO] [1712351064.254896]: Direct Instances: []\n", + "[INFO] [1712351064.255139]: Inverse Restrictions: []\n", + "[INFO] [1712351064.255384]: -------------------\n", + "[INFO] [1712351064.255622]: SOMA.CylinderShape \n", + "[INFO] [1712351064.255885]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712351064.256132]: Ancestors: {SOMA.CylinderShape, SOMA.ShapeRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351064.256392]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712351064.256692]: Properties: [rdf-schema.label, rdf-schema.comment, SOMA.hasRadius, SOMA.hasLength, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.257189]: Instances: []\n", + "[INFO] [1712351064.257453]: Direct Instances: []\n", + "[INFO] [1712351064.257718]: Inverse Restrictions: []\n", + "[INFO] [1712351064.257961]: -------------------\n", + "[INFO] [1712351064.258196]: SOMA.Classifier \n", + "[INFO] [1712351064.258430]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712351064.258718]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, SOMA.Classifier, DUL.Entity, DUL.Concept, SOMA.StatisticalReasoner, DUL.Role, SOMA.Reasoner, owl.Thing}\n", + "[INFO] [1712351064.258975]: Subclasses: []\n", + "[INFO] [1712351064.259267]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351064.259742]: Instances: []\n", + "[INFO] [1712351064.260005]: Direct Instances: []\n", + "[INFO] [1712351064.260249]: Inverse Restrictions: []\n", + "[INFO] [1712351064.260497]: -------------------\n", + "[INFO] [1712351064.260734]: SOMA.StatisticalReasoner \n", + "[INFO] [1712351064.260982]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712351064.261239]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.StatisticalReasoner, DUL.Role, SOMA.Reasoner, owl.Thing}\n", + "[INFO] [1712351064.261490]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712351064.261776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351064.262260]: Instances: []\n", + "[INFO] [1712351064.262528]: Direct Instances: []\n", + "[INFO] [1712351064.262783]: Inverse Restrictions: []\n", + "[INFO] [1712351064.263064]: -------------------\n", + "[INFO] [1712351064.263308]: SOMA.ClausalObject \n", + "[INFO] [1712351064.263545]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712351064.263804]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.264062]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712351064.264353]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.264847]: Instances: []\n", + "[INFO] [1712351064.265127]: Direct Instances: []\n", + "[INFO] [1712351064.265392]: Inverse Restrictions: []\n", + "[INFO] [1712351064.265644]: -------------------\n", + "[INFO] [1712351064.265883]: SOMA.Phrase \n", + "[INFO] [1712351064.266123]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712351064.266367]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.266640]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712351064.266937]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.267447]: Instances: []\n", + "[INFO] [1712351064.267699]: Direct Instances: []\n", + "[INFO] [1712351064.267954]: Inverse Restrictions: []\n", + "[INFO] [1712351064.268190]: -------------------\n", + "[INFO] [1712351064.268422]: SOMA.Clean \n", + "[INFO] [1712351064.268664]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712351064.268963]: Ancestors: {SOMA.Clean, SOMA.CleanlinessRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351064.269315]: Subclasses: []\n", + "[INFO] [1712351064.269650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.270157]: Instances: []\n", + "[INFO] [1712351064.270437]: Direct Instances: []\n", + "[INFO] [1712351064.271145]: Inverse Restrictions: []\n", + "[INFO] [1712351064.271413]: -------------------\n", + "[INFO] [1712351064.271664]: SOMA.CleanlinessRegion \n", + "[INFO] [1712351064.271905]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351064.272150]: Ancestors: {SOMA.CleanlinessRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351064.272642]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712351064.273055]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.273566]: Instances: []\n", + "[INFO] [1712351064.273829]: Direct Instances: []\n", + "[INFO] [1712351064.274161]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712351064.274416]: -------------------\n", + "[INFO] [1712351064.274671]: SOMA.Cleaning \n", + "[INFO] [1712351064.274945]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712351064.275227]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Cleaning}\n", + "[INFO] [1712351064.275475]: Subclasses: []\n", + "[INFO] [1712351064.275769]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.276268]: Instances: []\n", + "[INFO] [1712351064.276536]: Direct Instances: []\n", + "[INFO] [1712351064.276794]: Inverse Restrictions: []\n", + "[INFO] [1712351064.277036]: -------------------\n", + "[INFO] [1712351064.277271]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712351064.277508]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351064.277760]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.278015]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712351064.278299]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.278810]: Instances: []\n", + "[INFO] [1712351064.279076]: Direct Instances: []\n", + "[INFO] [1712351064.279334]: Inverse Restrictions: []\n", + "[INFO] [1712351064.279572]: -------------------\n", + "[INFO] [1712351064.279841]: SOMA.Purification \n", + "[INFO] [1712351064.280858]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712351064.281162]: Ancestors: {SOMA.Extrinsic, SOMA.Purification, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.281426]: Subclasses: []\n", + "[INFO] [1712351064.281724]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.282229]: Instances: []\n", + "[INFO] [1712351064.282502]: Direct Instances: []\n", + "[INFO] [1712351064.282795]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712351064.283061]: -------------------\n", + "[INFO] [1712351064.283302]: SOMA.Cleanliness \n", + "[INFO] [1712351064.283547]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712351064.283819]: Ancestors: {SOMA.SocialQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Cleanliness}\n", + "[INFO] [1712351064.284070]: Subclasses: []\n", + "[INFO] [1712351064.284360]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351064.284878]: Instances: []\n", + "[INFO] [1712351064.285180]: Direct Instances: []\n", + "[INFO] [1712351064.285522]: Inverse Restrictions: []\n", + "[INFO] [1712351064.285775]: -------------------\n", + "[INFO] [1712351064.286016]: SOMA.SocialQuality \n", + "[INFO] [1712351064.286254]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712351064.286499]: Ancestors: {DUL.Entity, SOMA.SocialQuality, owl.Thing, DUL.Quality}\n", + "[INFO] [1712351064.286766]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712351064.287070]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.287565]: Instances: []\n", + "[INFO] [1712351064.287827]: Direct Instances: []\n", + "[INFO] [1712351064.288077]: Inverse Restrictions: []\n", + "[INFO] [1712351064.288324]: -------------------\n", + "[INFO] [1712351064.288571]: SOMA.Client-Server_Specification \n", + "[INFO] [1712351064.289595]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712351064.289908]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Client-Server_Specification, SOMA.InterfaceSpecification}\n", + "[INFO] [1712351064.290171]: Subclasses: []\n", + "[INFO] [1712351064.290473]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole, rdf-schema.comment]\n", + "[INFO] [1712351064.290979]: Instances: []\n", + "[INFO] [1712351064.291254]: Direct Instances: []\n", + "[INFO] [1712351064.291595]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712351064.291848]: -------------------\n", + "[INFO] [1712351064.292094]: SOMA.ClientRole \n", + "[INFO] [1712351064.292347]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712351064.293612]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.ClientRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351064.294012]: Subclasses: []\n", + "[INFO] [1712351064.294365]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", + "[INFO] [1712351064.294887]: Instances: []\n", + "[INFO] [1712351064.295188]: Direct Instances: []\n", + "[INFO] [1712351064.295602]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712351064.295898]: -------------------\n", + "[INFO] [1712351064.296162]: SOMA.ServerRole \n", + "[INFO] [1712351064.296458]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712351064.296740]: Ancestors: {SOMA.SoftwareRole, SOMA.ServerRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351064.296997]: Subclasses: []\n", + "[INFO] [1712351064.297306]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", + "[INFO] [1712351064.297826]: Instances: []\n", + "[INFO] [1712351064.298109]: Direct Instances: []\n", + "[INFO] [1712351064.298426]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712351064.298681]: -------------------\n", + "[INFO] [1712351064.298920]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712351064.299168]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351064.299436]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351064.299697]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712351064.300002]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351064.300500]: Instances: []\n", + "[INFO] [1712351064.300784]: Direct Instances: []\n", + "[INFO] [1712351064.301052]: Inverse Restrictions: []\n", + "[INFO] [1712351064.301296]: -------------------\n", + "[INFO] [1712351064.301542]: SOMA.Closing \n", + "[INFO] [1712351064.301787]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.302066]: Ancestors: {SOMA.Closing, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.302329]: Subclasses: []\n", + "[INFO] [1712351064.302639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.303133]: Instances: []\n", + "[INFO] [1712351064.303398]: Direct Instances: []\n", + "[INFO] [1712351064.303664]: Inverse Restrictions: []\n", + "[INFO] [1712351064.303907]: -------------------\n", + "[INFO] [1712351064.304149]: SOMA.Delivering \n", + "[INFO] [1712351064.304408]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712351064.304681]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Delivering, owl.Thing}\n", + "[INFO] [1712351064.304978]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712351064.305307]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.305811]: Instances: []\n", + "[INFO] [1712351064.306076]: Direct Instances: []\n", + "[INFO] [1712351064.306342]: Inverse Restrictions: []\n", + "[INFO] [1712351064.306592]: -------------------\n", + "[INFO] [1712351064.306835]: SOMA.Fetching \n", + "[INFO] [1712351064.307068]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712351064.307346]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, SOMA.Fetching, DUL.Task, SOMA.PhysicalAcquiring, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.307611]: Subclasses: []\n", + "[INFO] [1712351064.307918]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.308409]: Instances: []\n", + "[INFO] [1712351064.308666]: Direct Instances: []\n", + "[INFO] [1712351064.308923]: Inverse Restrictions: []\n", + "[INFO] [1712351064.309180]: -------------------\n", + "[INFO] [1712351064.309426]: SOMA.Lifting \n", + "[INFO] [1712351064.309667]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.309931]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.Lifting, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.310185]: Subclasses: []\n", + "[INFO] [1712351064.310493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.310983]: Instances: []\n", + "[INFO] [1712351064.311251]: Direct Instances: []\n", + "[INFO] [1712351064.311517]: Inverse Restrictions: []\n", + "[INFO] [1712351064.311763]: -------------------\n", + "[INFO] [1712351064.311999]: SOMA.Opening \n", + "[INFO] [1712351064.312232]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.312498]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, SOMA.Opening, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.312761]: Subclasses: []\n", + "[INFO] [1712351064.313138]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.313636]: Instances: []\n", + "[INFO] [1712351064.313901]: Direct Instances: []\n", + "[INFO] [1712351064.314159]: Inverse Restrictions: []\n", + "[INFO] [1712351064.314420]: -------------------\n", + "[INFO] [1712351064.314665]: SOMA.Pulling \n", + "[INFO] [1712351064.314907]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.315181]: Ancestors: {DUL.SocialObject, SOMA.Actuating, SOMA.Pulling, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.315432]: Subclasses: []\n", + "[INFO] [1712351064.315740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.316226]: Instances: []\n", + "[INFO] [1712351064.316487]: Direct Instances: []\n", + "[INFO] [1712351064.316740]: Inverse Restrictions: []\n", + "[INFO] [1712351064.316991]: -------------------\n", + "[INFO] [1712351064.317238]: SOMA.Pushing \n", + "[INFO] [1712351064.317477]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.317742]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.317990]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712351064.318292]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.318788]: Instances: []\n", + "[INFO] [1712351064.319047]: Direct Instances: []\n", + "[INFO] [1712351064.319315]: Inverse Restrictions: []\n", + "[INFO] [1712351064.319564]: -------------------\n", + "[INFO] [1712351064.319803]: SOMA.Squeezing \n", + "[INFO] [1712351064.320041]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.320312]: Ancestors: {SOMA.Squeezing, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.320563]: Subclasses: []\n", + "[INFO] [1712351064.320853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.321346]: Instances: []\n", + "[INFO] [1712351064.321609]: Direct Instances: []\n", + "[INFO] [1712351064.321869]: Inverse Restrictions: []\n", + "[INFO] [1712351064.322108]: -------------------\n", + "[INFO] [1712351064.322344]: SOMA.ClosingDisposition \n", + "[INFO] [1712351064.322579]: Super classes: [SOMA.Linkage]\n", + "[INFO] [1712351064.322872]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.ClosingDisposition, SOMA.Linkage, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", + "[INFO] [1712351064.323130]: Subclasses: []\n", + "[INFO] [1712351064.323423]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.323918]: Instances: []\n", + "[INFO] [1712351064.324184]: Direct Instances: []\n", + "[INFO] [1712351064.324442]: Inverse Restrictions: []\n", + "[INFO] [1712351064.324681]: -------------------\n", + "[INFO] [1712351064.325037]: SOMA.Linkage \n", + "[INFO] [1712351064.325415]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712351064.325728]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Linkage, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", + "[INFO] [1712351064.326015]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712351064.326340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.326847]: Instances: []\n", + "[INFO] [1712351064.327118]: Direct Instances: []\n", + "[INFO] [1712351064.327374]: Inverse Restrictions: []\n", + "[INFO] [1712351064.327619]: -------------------\n", + "[INFO] [1712351064.327868]: SOMA.Clumsiness \n", + "[INFO] [1712351064.328112]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712351064.328382]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Clumsiness, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351064.328629]: Subclasses: []\n", + "[INFO] [1712351064.328927]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.329440]: Instances: []\n", + "[INFO] [1712351064.329715]: Direct Instances: []\n", + "[INFO] [1712351064.329980]: Inverse Restrictions: []\n", + "[INFO] [1712351064.330223]: -------------------\n", + "[INFO] [1712351064.330467]: SOMA.CoffeeCarafe \n", + "[INFO] [1712351064.330702]: Super classes: [SOMA.Carafe]\n", + "[INFO] [1712351064.330995]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Carafe, SOMA.CoffeeCarafe, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.331250]: Subclasses: []\n", + "[INFO] [1712351064.331538]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.332017]: Instances: []\n", + "[INFO] [1712351064.332294]: Direct Instances: []\n", + "[INFO] [1712351064.332552]: Inverse Restrictions: []\n", + "[INFO] [1712351064.332796]: -------------------\n", + "[INFO] [1712351064.333035]: SOMA.CoffeeTable \n", + "[INFO] [1712351064.333269]: Super classes: [SOMA.Table]\n", + "[INFO] [1712351064.333542]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, SOMA.CoffeeTable, SOMA.Table, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.333792]: Subclasses: []\n", + "[INFO] [1712351064.334075]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.334560]: Instances: []\n", + "[INFO] [1712351064.334827]: Direct Instances: []\n", + "[INFO] [1712351064.335079]: Inverse Restrictions: []\n", + "[INFO] [1712351064.335322]: -------------------\n", + "[INFO] [1712351064.335556]: SOMA.CognitiveAgent \n", + "[INFO] [1712351064.335784]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712351064.336044]: Ancestors: {SOMA.CognitiveAgent, DUL.Object, DUL.Entity, DUL.Agent, owl.Thing}\n", + "[INFO] [1712351064.336300]: Subclasses: []\n", + "[INFO] [1712351064.336602]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.337114]: Instances: []\n", + "[INFO] [1712351064.337374]: Direct Instances: []\n", + "[INFO] [1712351064.337637]: Inverse Restrictions: []\n", + "[INFO] [1712351064.337881]: -------------------\n", + "[INFO] [1712351064.338117]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712351064.338351]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712351064.338606]: Ancestors: {SOMA.SubCognitiveAgent, DUL.Object, DUL.Entity, DUL.Agent, owl.Thing}\n", + "[INFO] [1712351064.338863]: Subclasses: []\n", + "[INFO] [1712351064.339155]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.339639]: Instances: []\n", + "[INFO] [1712351064.339889]: Direct Instances: []\n", + "[INFO] [1712351064.340153]: Inverse Restrictions: []\n", + "[INFO] [1712351064.340394]: -------------------\n", + "[INFO] [1712351064.340628]: SOMA.CoilCooktop \n", + "[INFO] [1712351064.340865]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712351064.341130]: Ancestors: {SOMA.ElectricCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.CoilCooktop, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.341390]: Subclasses: []\n", + "[INFO] [1712351064.341682]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.342164]: Instances: []\n", + "[INFO] [1712351064.342414]: Direct Instances: []\n", + "[INFO] [1712351064.342659]: Inverse Restrictions: []\n", + "[INFO] [1712351064.342907]: -------------------\n", + "[INFO] [1712351064.343145]: SOMA.Collision \n", + "[INFO] [1712351064.343380]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712351064.343635]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Collision, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.343876]: Subclasses: []\n", + "[INFO] [1712351064.344176]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.344665]: Instances: []\n", + "[INFO] [1712351064.344936]: Direct Instances: []\n", + "[INFO] [1712351064.345199]: Inverse Restrictions: []\n", + "[INFO] [1712351064.345437]: -------------------\n", + "[INFO] [1712351064.345678]: SOMA.Extrinsic \n", + "[INFO] [1712351064.345923]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712351064.346183]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.346505]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712351064.346809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.347375]: Instances: []\n", + "[INFO] [1712351064.347643]: Direct Instances: []\n", + "[INFO] [1712351064.347899]: Inverse Restrictions: []\n", + "[INFO] [1712351064.348139]: -------------------\n", + "[INFO] [1712351064.348389]: SOMA.ImperativeClause \n", + "[INFO] [1712351064.348667]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712351064.348951]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, SOMA.ImperativeClause, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.349208]: Subclasses: []\n", + "[INFO] [1712351064.349504]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.expresses]\n", + "[INFO] [1712351064.350007]: Instances: []\n", + "[INFO] [1712351064.350274]: Direct Instances: []\n", + "[INFO] [1712351064.350565]: Inverse Restrictions: []\n", + "[INFO] [1712351064.350810]: -------------------\n", + "[INFO] [1712351064.351062]: SOMA.CommitedObject \n", + "[INFO] [1712351064.351303]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712351064.351576]: Ancestors: {SOMA.CommitedObject, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.351820]: Subclasses: []\n", + "[INFO] [1712351064.352402]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.352939]: Instances: []\n", + "[INFO] [1712351064.353280]: Direct Instances: []\n", + "[INFO] [1712351064.353556]: Inverse Restrictions: []\n", + "[INFO] [1712351064.353812]: -------------------\n", + "[INFO] [1712351064.354065]: SOMA.ConnectedObject \n", + "[INFO] [1712351064.354310]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.354577]: Ancestors: {DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.354848]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712351064.355146]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.355660]: Instances: []\n", + "[INFO] [1712351064.355933]: Direct Instances: []\n", + "[INFO] [1712351064.356307]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712351064.356565]: -------------------\n", + "[INFO] [1712351064.356818]: SOMA.CommunicationAction \n", + "[INFO] [1712351064.357088]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712351064.357382]: Ancestors: {SOMA.CommunicationAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712351064.357638]: Subclasses: []\n", + "[INFO] [1712351064.357936]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.358437]: Instances: []\n", + "[INFO] [1712351064.358711]: Direct Instances: []\n", + "[INFO] [1712351064.359726]: Inverse Restrictions: []\n", + "[INFO] [1712351064.359991]: -------------------\n", + "[INFO] [1712351064.360260]: SOMA.LinguisticObject \n", + "[INFO] [1712351064.360510]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712351064.360780]: Ancestors: {DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.361074]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712351064.361390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351064.361918]: Instances: []\n", + "[INFO] [1712351064.362195]: Direct Instances: []\n", + "[INFO] [1712351064.362492]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712351064.362741]: -------------------\n", + "[INFO] [1712351064.362982]: SOMA.CommunicationReport \n", + "[INFO] [1712351064.363240]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351064.363520]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, owl.Thing, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.CommunicationReport}\n", + "[INFO] [1712351064.363776]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712351064.364068]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.364572]: Instances: []\n", + "[INFO] [1712351064.364846]: Direct Instances: []\n", + "[INFO] [1712351064.365105]: Inverse Restrictions: []\n", + "[INFO] [1712351064.365352]: -------------------\n", + "[INFO] [1712351064.365608]: SOMA.Receiver \n", + "[INFO] [1712351064.365868]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712351064.366157]: Ancestors: {DUL.SocialObject, SOMA.EventAdjacentRole, SOMA.PerformerRole, DUL.Object, DUL.Entity, SOMA.Receiver, DUL.Concept, DUL.Role, SOMA.ExperiencerRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351064.366425]: Subclasses: []\n", + "[INFO] [1712351064.366733]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.367224]: Instances: []\n", + "[INFO] [1712351064.367482]: Direct Instances: []\n", + "[INFO] [1712351064.367794]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351064.368062]: -------------------\n", + "[INFO] [1712351064.368314]: SOMA.Sender \n", + "[INFO] [1712351064.368564]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712351064.368845]: Ancestors: {DUL.SocialObject, SOMA.PerformerRole, DUL.Object, SOMA.Sender, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351064.369102]: Subclasses: []\n", + "[INFO] [1712351064.369419]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.369920]: Instances: []\n", + "[INFO] [1712351064.370190]: Direct Instances: []\n", + "[INFO] [1712351064.370510]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351064.370766]: -------------------\n", + "[INFO] [1712351064.371018]: SOMA.CommunicationTopic \n", + "[INFO] [1712351064.372032]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712351064.372328]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.372605]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351064.372919]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.373439]: Instances: []\n", + "[INFO] [1712351064.373701]: Direct Instances: []\n", + "[INFO] [1712351064.373961]: Inverse Restrictions: []\n", + "[INFO] [1712351064.374215]: -------------------\n", + "[INFO] [1712351064.374471]: SOMA.ResourceRole \n", + "[INFO] [1712351064.374714]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351064.374967]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.375225]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712351064.375531]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.376083]: Instances: []\n", + "[INFO] [1712351064.376352]: Direct Instances: []\n", + "[INFO] [1712351064.376609]: Inverse Restrictions: []\n", + "[INFO] [1712351064.376868]: -------------------\n", + "[INFO] [1712351064.377121]: SOMA.Compartment \n", + "[INFO] [1712351064.377368]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.377640]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.377901]: Subclasses: [SOMA.FreezerCompartment]\n", + "[INFO] [1712351064.378206]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.378714]: Instances: []\n", + "[INFO] [1712351064.378977]: Direct Instances: []\n", + "[INFO] [1712351064.379227]: Inverse Restrictions: []\n", + "[INFO] [1712351064.379478]: -------------------\n", + "[INFO] [1712351064.379725]: SOMA.Composing \n", + "[INFO] [1712351064.380012]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712351064.380300]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing, SOMA.Composing}\n", + "[INFO] [1712351064.380558]: Subclasses: []\n", + "[INFO] [1712351064.380860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.381369]: Instances: []\n", + "[INFO] [1712351064.381642]: Direct Instances: []\n", + "[INFO] [1712351064.381951]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712351064.382207]: -------------------\n", + "[INFO] [1712351064.382453]: SOMA.Computer_Language \n", + "[INFO] [1712351064.382699]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712351064.382957]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.383230]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712351064.383532]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.384043]: Instances: []\n", + "[INFO] [1712351064.384324]: Direct Instances: []\n", + "[INFO] [1712351064.384646]: Inverse Restrictions: []\n", + "[INFO] [1712351064.385250]: -------------------\n", + "[INFO] [1712351064.385698]: SOMA.FormalLanguage \n", + "[INFO] [1712351064.386135]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712351064.386570]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.387012]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351064.387497]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.388201]: Instances: []\n", + "[INFO] [1712351064.388655]: Direct Instances: []\n", + "[INFO] [1712351064.389094]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712351064.389453]: -------------------\n", + "[INFO] [1712351064.389871]: SOMA.Computer_Program \n", + "[INFO] [1712351064.390242]: Super classes: [owl.Thing]\n", + "[INFO] [1712351064.392476]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", + "[INFO] [1712351064.392875]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712351064.393292]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.expresses, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.393894]: Instances: []\n", + "[INFO] [1712351064.394248]: Direct Instances: []\n", + "[INFO] [1712351064.396147]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712351064.396567]: -------------------\n", + "[INFO] [1712351064.396924]: SOMA.Programming_Language \n", + "[INFO] [1712351064.397238]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712351064.397571]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Programming_Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.397875]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712351064.398199]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.398707]: Instances: []\n", + "[INFO] [1712351064.398985]: Direct Instances: []\n", + "[INFO] [1712351064.399297]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712351064.399557]: -------------------\n", + "[INFO] [1712351064.399807]: SOMA.Conclusion \n", + "[INFO] [1712351064.400051]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712351064.400336]: Ancestors: {SOMA.Conclusion, DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, SOMA.CreatedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.400589]: Subclasses: []\n", + "[INFO] [1712351064.400894]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.401386]: Instances: []\n", + "[INFO] [1712351064.401649]: Direct Instances: []\n", + "[INFO] [1712351064.402691]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351064.402980]: -------------------\n", + "[INFO] [1712351064.403234]: SOMA.CreatedObject \n", + "[INFO] [1712351064.403485]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.403742]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.CreatedObject, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.403993]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712351064.404297]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.404795]: Instances: []\n", + "[INFO] [1712351064.405072]: Direct Instances: []\n", + "[INFO] [1712351064.405451]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712351064.405709]: -------------------\n", + "[INFO] [1712351064.405958]: SOMA.Knowledge \n", + "[INFO] [1712351064.406209]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712351064.406462]: Ancestors: {DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.406720]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712351064.407007]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.407529]: Instances: []\n", + "[INFO] [1712351064.407799]: Direct Instances: []\n", + "[INFO] [1712351064.408966]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712351064.409327]: -------------------\n", + "[INFO] [1712351064.409606]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712351064.409868]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712351064.410156]: Ancestors: {SOMA.ConditionalSuccedence, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Succedence, DUL.Relation}\n", + "[INFO] [1712351064.410415]: Subclasses: []\n", + "[INFO] [1712351064.410712]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.411214]: Instances: []\n", + "[INFO] [1712351064.411484]: Direct Instances: []\n", + "[INFO] [1712351064.411763]: Inverse Restrictions: []\n", + "[INFO] [1712351064.412020]: -------------------\n", + "[INFO] [1712351064.412262]: SOMA.Configuration \n", + "[INFO] [1712351064.412508]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712351064.412782]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Configuration, owl.Thing}\n", + "[INFO] [1712351064.413101]: Subclasses: []\n", + "[INFO] [1712351064.413413]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.413901]: Instances: []\n", + "[INFO] [1712351064.414176]: Direct Instances: []\n", + "[INFO] [1712351064.414448]: Inverse Restrictions: []\n", + "[INFO] [1712351064.414693]: -------------------\n", + "[INFO] [1712351064.414932]: SOMA.Connectivity \n", + "[INFO] [1712351064.415176]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712351064.415425]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", + "[INFO] [1712351064.415686]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712351064.415986]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.416477]: Instances: []\n", + "[INFO] [1712351064.416730]: Direct Instances: []\n", + "[INFO] [1712351064.417121]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712351064.417418]: -------------------\n", + "[INFO] [1712351064.417684]: SOMA.ContactState \n", + "[INFO] [1712351064.417967]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712351064.418244]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, SOMA.ContactState, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.418494]: Subclasses: []\n", + "[INFO] [1712351064.418788]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.419292]: Instances: []\n", + "[INFO] [1712351064.419557]: Direct Instances: []\n", + "[INFO] [1712351064.419812]: Inverse Restrictions: []\n", + "[INFO] [1712351064.420049]: -------------------\n", + "[INFO] [1712351064.420286]: SOMA.Container \n", + "[INFO] [1712351064.420523]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712351064.420808]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, SOMA.Container, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.421063]: Subclasses: []\n", + "[INFO] [1712351064.421355]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.421842]: Instances: []\n", + "[INFO] [1712351064.422112]: Direct Instances: []\n", + "[INFO] [1712351064.422826]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712351064.423082]: -------------------\n", + "[INFO] [1712351064.423321]: SOMA.Containment \n", + "[INFO] [1712351064.423598]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712351064.423887]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Containment, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.424150]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712351064.424446]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.424983]: Instances: []\n", + "[INFO] [1712351064.425281]: Direct Instances: []\n", + "[INFO] [1712351064.425698]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712351064.425965]: -------------------\n", + "[INFO] [1712351064.426215]: SOMA.IncludedObject \n", + "[INFO] [1712351064.426463]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.426731]: Ancestors: {DUL.SocialObject, SOMA.IncludedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.427001]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712351064.427301]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.427795]: Instances: []\n", + "[INFO] [1712351064.428056]: Direct Instances: []\n", + "[INFO] [1712351064.428356]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712351064.428607]: -------------------\n", + "[INFO] [1712351064.428854]: SOMA.ContainmentState \n", + "[INFO] [1712351064.429875]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712351064.430203]: Ancestors: {SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, SOMA.ContainmentState, DUL.Concept, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.430466]: Subclasses: []\n", + "[INFO] [1712351064.430766]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.431260]: Instances: []\n", + "[INFO] [1712351064.431526]: Direct Instances: []\n", + "[INFO] [1712351064.431777]: Inverse Restrictions: []\n", + "[INFO] [1712351064.432016]: -------------------\n", + "[INFO] [1712351064.432252]: SOMA.FunctionalControl \n", + "[INFO] [1712351064.432511]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712351064.432786]: Ancestors: {SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.433064]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712351064.433371]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.433866]: Instances: []\n", + "[INFO] [1712351064.434130]: Direct Instances: []\n", + "[INFO] [1712351064.434393]: Inverse Restrictions: []\n", + "[INFO] [1712351064.434640]: -------------------\n", + "[INFO] [1712351064.434881]: SOMA.ContainmentTheory \n", + "[INFO] [1712351064.435112]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712351064.435393]: Ancestors: {SOMA.ContainmentTheory, DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.435659]: Subclasses: []\n", + "[INFO] [1712351064.435956]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.436444]: Instances: []\n", + "[INFO] [1712351064.436713]: Direct Instances: []\n", + "[INFO] [1712351064.436967]: Inverse Restrictions: []\n", + "[INFO] [1712351064.437208]: -------------------\n", + "[INFO] [1712351064.437443]: SOMA.ControlTheory \n", + "[INFO] [1712351064.437676]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712351064.437921]: Ancestors: {DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.438184]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712351064.438479]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.438974]: Instances: []\n", + "[INFO] [1712351064.439226]: Direct Instances: []\n", + "[INFO] [1712351064.439473]: Inverse Restrictions: []\n", + "[INFO] [1712351064.439712]: -------------------\n", + "[INFO] [1712351064.439956]: SOMA.ContinuousJoint \n", + "[INFO] [1712351064.440198]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712351064.440479]: Ancestors: {SOMA.MovableJoint, DUL.Object, SOMA.ContinuousJoint, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.440749]: Subclasses: []\n", + "[INFO] [1712351064.441139]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.441659]: Instances: []\n", + "[INFO] [1712351064.441942]: Direct Instances: []\n", + "[INFO] [1712351064.442204]: Inverse Restrictions: []\n", + "[INFO] [1712351064.442444]: -------------------\n", + "[INFO] [1712351064.442681]: SOMA.HingeJoint \n", + "[INFO] [1712351064.442909]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712351064.443151]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.443416]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712351064.443708]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.444197]: Instances: []\n", + "[INFO] [1712351064.444478]: Direct Instances: []\n", + "[INFO] [1712351064.444745]: Inverse Restrictions: []\n", + "[INFO] [1712351064.445068]: -------------------\n", + "[INFO] [1712351064.445358]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712351064.445652]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712351064.445924]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.446186]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712351064.446524]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351064.447063]: Instances: []\n", + "[INFO] [1712351064.447358]: Direct Instances: []\n", + "[INFO] [1712351064.447623]: Inverse Restrictions: []\n", + "[INFO] [1712351064.447867]: -------------------\n", + "[INFO] [1712351064.448117]: SOMA.Cooktop \n", + "[INFO] [1712351064.448359]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.448629]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.448907]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", + "[INFO] [1712351064.449205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.449698]: Instances: []\n", + "[INFO] [1712351064.449972]: Direct Instances: []\n", + "[INFO] [1712351064.450231]: Inverse Restrictions: []\n", + "[INFO] [1712351064.450471]: -------------------\n", + "[INFO] [1712351064.450712]: SOMA.Countertop \n", + "[INFO] [1712351064.450957]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.451225]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, SOMA.Countertop, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.451472]: Subclasses: []\n", + "[INFO] [1712351064.451756]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.452238]: Instances: []\n", + "[INFO] [1712351064.452508]: Direct Instances: []\n", + "[INFO] [1712351064.452760]: Inverse Restrictions: []\n", + "[INFO] [1712351064.453009]: -------------------\n", + "[INFO] [1712351064.453249]: SOMA.Cover \n", + "[INFO] [1712351064.453487]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712351064.453763]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, SOMA.Cover, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.454013]: Subclasses: []\n", + "[INFO] [1712351064.454301]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.454777]: Instances: []\n", + "[INFO] [1712351064.455047]: Direct Instances: []\n", + "[INFO] [1712351064.455351]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712351064.455602]: -------------------\n", + "[INFO] [1712351064.455841]: SOMA.Coverage \n", + "[INFO] [1712351064.456100]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712351064.456387]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Coverage, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.456640]: Subclasses: []\n", + "[INFO] [1712351064.456941]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.457428]: Instances: []\n", + "[INFO] [1712351064.457701]: Direct Instances: []\n", + "[INFO] [1712351064.457957]: Inverse Restrictions: []\n", + "[INFO] [1712351064.458199]: -------------------\n", + "[INFO] [1712351064.458436]: SOMA.CoveredObject \n", + "[INFO] [1712351064.458688]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712351064.458956]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.BlockedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CoveredObject, owl.Thing}\n", + "[INFO] [1712351064.459214]: Subclasses: []\n", + "[INFO] [1712351064.459509]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.459995]: Instances: []\n", + "[INFO] [1712351064.460250]: Direct Instances: []\n", + "[INFO] [1712351064.460540]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712351064.460803]: -------------------\n", + "[INFO] [1712351064.461053]: SOMA.CoverageTheory \n", + "[INFO] [1712351064.461296]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712351064.461562]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, SOMA.CoverageTheory, DUL.Theory}\n", + "[INFO] [1712351064.461806]: Subclasses: []\n", + "[INFO] [1712351064.462107]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.462601]: Instances: []\n", + "[INFO] [1712351064.462877]: Direct Instances: []\n", + "[INFO] [1712351064.463147]: Inverse Restrictions: []\n", + "[INFO] [1712351064.463393]: -------------------\n", + "[INFO] [1712351064.463635]: SOMA.CoveringTheory \n", + "[INFO] [1712351064.463877]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712351064.464148]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CoveringTheory, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.464412]: Subclasses: []\n", + "[INFO] [1712351064.464715]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351064.465206]: Instances: []\n", + "[INFO] [1712351064.465481]: Direct Instances: []\n", + "[INFO] [1712351064.465739]: Inverse Restrictions: []\n", + "[INFO] [1712351064.465978]: -------------------\n", + "[INFO] [1712351064.466217]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712351064.466461]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712351064.466706]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.466971]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712351064.467268]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351064.467760]: Instances: []\n", + "[INFO] [1712351064.468035]: Direct Instances: []\n", + "[INFO] [1712351064.468291]: Inverse Restrictions: []\n", + "[INFO] [1712351064.468531]: -------------------\n", + "[INFO] [1712351064.468769]: SOMA.CrackingTheory \n", + "[INFO] [1712351064.469018]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712351064.469294]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CrackingTheory, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.469544]: Subclasses: []\n", + "[INFO] [1712351064.469838]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351064.470323]: Instances: []\n", + "[INFO] [1712351064.470591]: Direct Instances: []\n", + "[INFO] [1712351064.470848]: Inverse Restrictions: []\n", + "[INFO] [1712351064.471087]: -------------------\n", + "[INFO] [1712351064.471323]: SOMA.Creation \n", + "[INFO] [1712351064.471561]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712351064.471834]: Ancestors: {DUL.SocialObject, SOMA.Creation, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.472086]: Subclasses: []\n", + "[INFO] [1712351064.472377]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.472858]: Instances: []\n", + "[INFO] [1712351064.473133]: Direct Instances: []\n", + "[INFO] [1712351064.473397]: Inverse Restrictions: []\n", + "[INFO] [1712351064.473852]: -------------------\n", + "[INFO] [1712351064.474164]: SOMA.Tableware \n", + "[INFO] [1712351064.474424]: Super classes: [SOMA.DesignedTool]\n", + "[INFO] [1712351064.474699]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.474964]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", + "[INFO] [1712351064.475260]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.475797]: Instances: []\n", + "[INFO] [1712351064.476117]: Direct Instances: []\n", + "[INFO] [1712351064.476394]: Inverse Restrictions: []\n", + "[INFO] [1712351064.476645]: -------------------\n", + "[INFO] [1712351064.476896]: SOMA.Insertion \n", + "[INFO] [1712351064.477184]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712351064.477489]: Ancestors: {SOMA.Extrinsic, SOMA.Insertion, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.477760]: Subclasses: []\n", + "[INFO] [1712351064.478068]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.478572]: Instances: []\n", + "[INFO] [1712351064.478848]: Direct Instances: []\n", + "[INFO] [1712351064.479387]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712351064.479654]: -------------------\n", + "[INFO] [1712351064.479918]: SOMA.Cup \n", + "[INFO] [1712351064.480181]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712351064.480460]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Cup, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351064.480708]: Subclasses: []\n", + "[INFO] [1712351064.481133]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.481707]: Instances: []\n", + "[INFO] [1712351064.482014]: Direct Instances: []\n", + "[INFO] [1712351064.482292]: Inverse Restrictions: []\n", + "[INFO] [1712351064.482550]: -------------------\n", + "[INFO] [1712351064.482803]: SOMA.DesignedHandle \n", + "[INFO] [1712351064.483083]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", + "[INFO] [1712351064.483376]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.DesignedHandle, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.483637]: Subclasses: []\n", + "[INFO] [1712351064.483937]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.484441]: Instances: []\n", + "[INFO] [1712351064.484719]: Direct Instances: []\n", + "[INFO] [1712351064.485085]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", + "[INFO] [1712351064.485350]: -------------------\n", + "[INFO] [1712351064.485627]: SOMA.Cupboard \n", + "[INFO] [1712351064.485910]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", + "[INFO] [1712351064.486200]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, SOMA.Cupboard, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.486468]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", + "[INFO] [1712351064.486774]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.487284]: Instances: []\n", + "[INFO] [1712351064.487561]: Direct Instances: []\n", + "[INFO] [1712351064.487833]: Inverse Restrictions: []\n", + "[INFO] [1712351064.488079]: -------------------\n", + "[INFO] [1712351064.488326]: SOMA.DesignedFurniture \n", + "[INFO] [1712351064.488569]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712351064.488842]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.489120]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712351064.489426]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.489938]: Instances: []\n", + "[INFO] [1712351064.490222]: Direct Instances: []\n", + "[INFO] [1712351064.490494]: Inverse Restrictions: []\n", + "[INFO] [1712351064.490746]: -------------------\n", + "[INFO] [1712351064.490993]: SOMA.Rack \n", + "[INFO] [1712351064.491236]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.491509]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, SOMA.Rack, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.491781]: Subclasses: []\n", + "[INFO] [1712351064.492086]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.492580]: Instances: []\n", + "[INFO] [1712351064.492859]: Direct Instances: []\n", + "[INFO] [1712351064.493141]: Inverse Restrictions: [SOMA.Cupboard]\n", + "[INFO] [1712351064.493409]: -------------------\n", + "[INFO] [1712351064.493665]: SOMA.Cutlery \n", + "[INFO] [1712351064.493912]: Super classes: [SOMA.Tableware]\n", + "[INFO] [1712351064.494184]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.494444]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", + "[INFO] [1712351064.494733]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.495252]: Instances: []\n", + "[INFO] [1712351064.495522]: Direct Instances: []\n", + "[INFO] [1712351064.495786]: Inverse Restrictions: []\n", + "[INFO] [1712351064.496043]: -------------------\n", + "[INFO] [1712351064.496312]: SOMA.Cuttability \n", + "[INFO] [1712351064.496622]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712351064.496923]: Ancestors: {SOMA.Extrinsic, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.497196]: Subclasses: []\n", + "[INFO] [1712351064.497528]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.498049]: Instances: []\n", + "[INFO] [1712351064.498328]: Direct Instances: []\n", + "[INFO] [1712351064.498594]: Inverse Restrictions: []\n", + "[INFO] [1712351064.498844]: -------------------\n", + "[INFO] [1712351064.499094]: SOMA.Tool \n", + "[INFO] [1712351064.499352]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712351064.499627]: Ancestors: {SOMA.Tool, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.499893]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712351064.500196]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.500695]: Instances: []\n", + "[INFO] [1712351064.500990]: Direct Instances: []\n", + "[INFO] [1712351064.501298]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712351064.501546]: -------------------\n", + "[INFO] [1712351064.501793]: SOMA.Cutting \n", + "[INFO] [1712351064.502031]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712351064.502317]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", + "[INFO] [1712351064.502587]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712351064.502886]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.503381]: Instances: []\n", + "[INFO] [1712351064.503662]: Direct Instances: []\n", + "[INFO] [1712351064.503926]: Inverse Restrictions: []\n", + "[INFO] [1712351064.504169]: -------------------\n", + "[INFO] [1712351064.504413]: SOMA.CuttingTool \n", + "[INFO] [1712351064.504669]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", + "[INFO] [1712351064.504930]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.CuttingTool, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.505199]: Subclasses: [SOMA.Knife]\n", + "[INFO] [1712351064.505499]: Properties: [SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.505996]: Instances: []\n", + "[INFO] [1712351064.506259]: Direct Instances: []\n", + "[INFO] [1712351064.506512]: Inverse Restrictions: []\n", + "[INFO] [1712351064.506768]: -------------------\n", + "[INFO] [1712351064.507017]: SOMA.DesignedTool \n", + "[INFO] [1712351064.507260]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712351064.507506]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.507758]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712351064.508053]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.508611]: Instances: []\n", + "[INFO] [1712351064.508890]: Direct Instances: []\n", + "[INFO] [1712351064.509154]: Inverse Restrictions: []\n", + "[INFO] [1712351064.509402]: -------------------\n", + "[INFO] [1712351064.509647]: SOMA.Shaping \n", + "[INFO] [1712351064.509939]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712351064.510228]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Shaping, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.510490]: Subclasses: []\n", + "[INFO] [1712351064.510793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.511302]: Instances: []\n", + "[INFO] [1712351064.511574]: Direct Instances: []\n", + "[INFO] [1712351064.511859]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712351064.512111]: -------------------\n", + "[INFO] [1712351064.512356]: SOMA.Database \n", + "[INFO] [1712351064.512592]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351064.512881]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, DUL.Role, owl.Thing}\n", + "[INFO] [1712351064.513187]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712351064.513495]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.513994]: Instances: []\n", + "[INFO] [1712351064.514290]: Direct Instances: []\n", + "[INFO] [1712351064.514571]: Inverse Restrictions: []\n", + "[INFO] [1712351064.514825]: -------------------\n", + "[INFO] [1712351064.515078]: SOMA.SoftwareRole \n", + "[INFO] [1712351064.515346]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712351064.515612]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, owl.Thing}\n", + "[INFO] [1712351064.515890]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712351064.516201]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.516748]: Instances: []\n", + "[INFO] [1712351064.517038]: Direct Instances: []\n", + "[INFO] [1712351064.517354]: Inverse Restrictions: []\n", + "[INFO] [1712351064.517603]: -------------------\n", + "[INFO] [1712351064.517853]: SOMA.Deciding \n", + "[INFO] [1712351064.518113]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351064.518393]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding}\n", + "[INFO] [1712351064.518674]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712351064.518970]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351064.519478]: Instances: []\n", + "[INFO] [1712351064.519743]: Direct Instances: []\n", + "[INFO] [1712351064.519997]: Inverse Restrictions: []\n", + "[INFO] [1712351064.520241]: -------------------\n", + "[INFO] [1712351064.520477]: SOMA.DerivingInformation \n", + "[INFO] [1712351064.520732]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712351064.520993]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712351064.521256]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712351064.521551]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712351064.522082]: Instances: []\n", + "[INFO] [1712351064.522351]: Direct Instances: []\n", + "[INFO] [1712351064.522605]: Inverse Restrictions: []\n", + "[INFO] [1712351064.522848]: -------------------\n", + "[INFO] [1712351064.523102]: SOMA.DeductiveReasoning \n", + "[INFO] [1712351064.523347]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712351064.523611]: Ancestors: {SOMA.Reasoning, SOMA.DeductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351064.523857]: Subclasses: []\n", + "[INFO] [1712351064.524142]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.524631]: Instances: []\n", + "[INFO] [1712351064.524903]: Direct Instances: []\n", + "[INFO] [1712351064.525159]: Inverse Restrictions: []\n", + "[INFO] [1712351064.525395]: -------------------\n", + "[INFO] [1712351064.525635]: SOMA.Deformation \n", + "[INFO] [1712351064.525900]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712351064.526180]: Ancestors: {SOMA.Alteration, SOMA.Deformation, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.526431]: Subclasses: []\n", + "[INFO] [1712351064.526730]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.527214]: Instances: []\n", + "[INFO] [1712351064.527486]: Direct Instances: []\n", + "[INFO] [1712351064.527748]: Inverse Restrictions: []\n", + "[INFO] [1712351064.528002]: -------------------\n", + "[INFO] [1712351064.528252]: SOMA.ShapedObject \n", + "[INFO] [1712351064.528535]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712351064.528826]: Ancestors: {SOMA.ShapedObject, DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.529106]: Subclasses: []\n", + "[INFO] [1712351064.529421]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment]\n", + "[INFO] [1712351064.529962]: Instances: []\n", + "[INFO] [1712351064.530232]: Direct Instances: []\n", + "[INFO] [1712351064.530558]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712351064.530811]: -------------------\n", + "[INFO] [1712351064.531067]: SOMA.FluidFlow \n", + "[INFO] [1712351064.531332]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712351064.531609]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.FluidFlow, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.531871]: Subclasses: []\n", + "[INFO] [1712351064.532175]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.532666]: Instances: []\n", + "[INFO] [1712351064.532921]: Direct Instances: []\n", + "[INFO] [1712351064.533171]: Inverse Restrictions: []\n", + "[INFO] [1712351064.533411]: -------------------\n", + "[INFO] [1712351064.533661]: SOMA.Shifting \n", + "[INFO] [1712351064.533933]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712351064.534217]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, SOMA.Shifting, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.534474]: Subclasses: []\n", + "[INFO] [1712351064.534769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.535262]: Instances: []\n", + "[INFO] [1712351064.535532]: Direct Instances: []\n", + "[INFO] [1712351064.535864]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712351064.536112]: -------------------\n", + "[INFO] [1712351064.536345]: SOMA.DependentPlace \n", + "[INFO] [1712351064.536579]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712351064.536853]: Ancestors: {SOMA.Feature, SOMA.DependentPlace, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.537105]: Subclasses: []\n", + "[INFO] [1712351064.537394]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.537878]: Instances: []\n", + "[INFO] [1712351064.538148]: Direct Instances: []\n", + "[INFO] [1712351064.538397]: Inverse Restrictions: []\n", + "[INFO] [1712351064.538635]: -------------------\n", + "[INFO] [1712351064.538866]: SOMA.Deposit \n", + "[INFO] [1712351064.539097]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712351064.539372]: Ancestors: {SOMA.Instrument, SOMA.Deposit, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.539625]: Subclasses: []\n", + "[INFO] [1712351064.539915]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.540393]: Instances: []\n", + "[INFO] [1712351064.540666]: Direct Instances: []\n", + "[INFO] [1712351064.540966]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712351064.541216]: -------------------\n", + "[INFO] [1712351064.541457]: SOMA.DepositedObject \n", + "[INFO] [1712351064.541690]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.541965]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.DepositedObject}\n", + "[INFO] [1712351064.542217]: Subclasses: []\n", + "[INFO] [1712351064.542506]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.542988]: Instances: []\n", + "[INFO] [1712351064.543259]: Direct Instances: []\n", + "[INFO] [1712351064.543553]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712351064.543801]: -------------------\n", + "[INFO] [1712351064.544041]: SOMA.InformationAcquisition \n", + "[INFO] [1712351064.544278]: Super classes: [owl.Thing]\n", + "[INFO] [1712351064.544518]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351064.544788]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712351064.545090]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.545622]: Instances: []\n", + "[INFO] [1712351064.545895]: Direct Instances: []\n", + "[INFO] [1712351064.546193]: Inverse Restrictions: []\n", + "[INFO] [1712351064.546457]: -------------------\n", + "[INFO] [1712351064.546698]: SOMA.Premise \n", + "[INFO] [1712351064.546932]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712351064.547210]: Ancestors: {DUL.SocialObject, SOMA.Premise, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.547467]: Subclasses: []\n", + "[INFO] [1712351064.547759]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.548237]: Instances: []\n", + "[INFO] [1712351064.548487]: Direct Instances: []\n", + "[INFO] [1712351064.548780]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351064.549037]: -------------------\n", + "[INFO] [1712351064.549285]: SOMA.FunctionalPart \n", + "[INFO] [1712351064.549938]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712351064.550216]: Ancestors: {DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.550487]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712351064.550783]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.551326]: Instances: []\n", + "[INFO] [1712351064.551601]: Direct Instances: []\n", + "[INFO] [1712351064.551866]: Inverse Restrictions: []\n", + "[INFO] [1712351064.552112]: -------------------\n", + "[INFO] [1712351064.552352]: SOMA.Graspability \n", + "[INFO] [1712351064.552585]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712351064.552852]: Ancestors: {SOMA.Extrinsic, SOMA.Graspability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.553118]: Subclasses: []\n", + "[INFO] [1712351064.553693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.554378]: Instances: []\n", + "[INFO] [1712351064.554770]: Direct Instances: []\n", + "[INFO] [1712351064.555181]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712351064.555567]: -------------------\n", + "[INFO] [1712351064.555951]: SOMA.DesignedSpade \n", + "[INFO] [1712351064.556313]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.556704]: Ancestors: {SOMA.DesignedSpade, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.556994]: Subclasses: []\n", + "[INFO] [1712351064.557419]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.557935]: Instances: []\n", + "[INFO] [1712351064.558222]: Direct Instances: []\n", + "[INFO] [1712351064.558511]: Inverse Restrictions: [SOMA.Spatula]\n", + "[INFO] [1712351064.558760]: -------------------\n", + "[INFO] [1712351064.558999]: SOMA.DessertFork \n", + "[INFO] [1712351064.559232]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712351064.559510]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DessertFork, SOMA.Fork, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.559773]: Subclasses: []\n", + "[INFO] [1712351064.560065]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.560564]: Instances: []\n", + "[INFO] [1712351064.560830]: Direct Instances: []\n", + "[INFO] [1712351064.561079]: Inverse Restrictions: []\n", + "[INFO] [1712351064.561327]: -------------------\n", + "[INFO] [1712351064.561569]: SOMA.Fork \n", + "[INFO] [1712351064.561812]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712351064.562073]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.Fork, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.562321]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", + "[INFO] [1712351064.562606]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.563127]: Instances: []\n", + "[INFO] [1712351064.563404]: Direct Instances: []\n", + "[INFO] [1712351064.563661]: Inverse Restrictions: []\n", + "[INFO] [1712351064.563902]: -------------------\n", + "[INFO] [1712351064.564139]: SOMA.Destination \n", + "[INFO] [1712351064.564376]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712351064.564636]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, SOMA.Destination, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.564895]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712351064.565187]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.565694]: Instances: []\n", + "[INFO] [1712351064.565983]: Direct Instances: []\n", + "[INFO] [1712351064.566323]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712351064.566577]: -------------------\n", + "[INFO] [1712351064.566815]: SOMA.Location \n", + "[INFO] [1712351064.567064]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712351064.567321]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.567581]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712351064.567874]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.568375]: Instances: []\n", + "[INFO] [1712351064.568639]: Direct Instances: []\n", + "[INFO] [1712351064.568900]: Inverse Restrictions: []\n", + "[INFO] [1712351064.569141]: -------------------\n", + "[INFO] [1712351064.569376]: SOMA.DestroyedObject \n", + "[INFO] [1712351064.569606]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.569883]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DestroyedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.570134]: Subclasses: []\n", + "[INFO] [1712351064.570424]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.570906]: Instances: []\n", + "[INFO] [1712351064.571171]: Direct Instances: []\n", + "[INFO] [1712351064.571470]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712351064.571717]: -------------------\n", + "[INFO] [1712351064.571954]: SOMA.Destruction \n", + "[INFO] [1712351064.572192]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712351064.572461]: Ancestors: {DUL.SocialObject, SOMA.Destruction, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.572711]: Subclasses: []\n", + "[INFO] [1712351064.573006]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.573492]: Instances: []\n", + "[INFO] [1712351064.573756]: Direct Instances: []\n", + "[INFO] [1712351064.574011]: Inverse Restrictions: []\n", + "[INFO] [1712351064.574252]: -------------------\n", + "[INFO] [1712351064.574488]: SOMA.DetectedObject \n", + "[INFO] [1712351064.574727]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.574993]: Ancestors: {SOMA.DetectedObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.575256]: Subclasses: []\n", + "[INFO] [1712351064.575554]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.576059]: Instances: []\n", + "[INFO] [1712351064.576330]: Direct Instances: []\n", + "[INFO] [1712351064.576581]: Inverse Restrictions: []\n", + "[INFO] [1712351064.576820]: -------------------\n", + "[INFO] [1712351064.577059]: SOMA.DeviceState \n", + "[INFO] [1712351064.577293]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351064.577563]: Ancestors: {SOMA.DeviceState, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351064.577819]: Subclasses: []\n", + "[INFO] [1712351064.578107]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.578580]: Instances: []\n", + "[INFO] [1712351064.578830]: Direct Instances: []\n", + "[INFO] [1712351064.579083]: Inverse Restrictions: []\n", + "[INFO] [1712351064.579324]: -------------------\n", + "[INFO] [1712351064.579560]: SOMA.DeviceStateRange \n", + "[INFO] [1712351064.579798]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351064.580649]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", + "[INFO] [1712351064.580928]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712351064.581236]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.581724]: Instances: []\n", + "[INFO] [1712351064.582004]: Direct Instances: []\n", + "[INFO] [1712351064.582268]: Inverse Restrictions: []\n", + "[INFO] [1712351064.582511]: -------------------\n", + "[INFO] [1712351064.582750]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712351064.582987]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712351064.583282]: Ancestors: {SOMA.DeviceTurnedOff, DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", + "[INFO] [1712351064.583537]: Subclasses: []\n", + "[INFO] [1712351064.583827]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.584311]: Instances: []\n", + "[INFO] [1712351064.584591]: Direct Instances: []\n", + "[INFO] [1712351064.584895]: Inverse Restrictions: []\n", + "[INFO] [1712351064.585152]: -------------------\n", + "[INFO] [1712351064.585397]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712351064.585633]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712351064.585899]: Ancestors: {SOMA.DeviceTurnedOn, DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", + "[INFO] [1712351064.586150]: Subclasses: []\n", + "[INFO] [1712351064.586443]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.586941]: Instances: []\n", + "[INFO] [1712351064.587206]: Direct Instances: []\n", + "[INFO] [1712351064.587498]: Inverse Restrictions: []\n", + "[INFO] [1712351064.587768]: -------------------\n", + "[INFO] [1712351064.588009]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712351064.588247]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712351064.588498]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351064.588761]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712351064.589060]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.589555]: Instances: []\n", + "[INFO] [1712351064.589835]: Direct Instances: []\n", + "[INFO] [1712351064.590099]: Inverse Restrictions: []\n", + "[INFO] [1712351064.590342]: -------------------\n", + "[INFO] [1712351064.590577]: SOMA.Dicing \n", + "[INFO] [1712351064.590812]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712351064.591078]: Ancestors: {SOMA.ModifyingPhysicalObject, SOMA.Dicing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", + "[INFO] [1712351064.591341]: Subclasses: []\n", + "[INFO] [1712351064.591635]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.592121]: Instances: []\n", + "[INFO] [1712351064.592373]: Direct Instances: []\n", + "[INFO] [1712351064.592613]: Inverse Restrictions: []\n", + "[INFO] [1712351064.592859]: -------------------\n", + "[INFO] [1712351064.593105]: SOMA.DinnerPlate \n", + "[INFO] [1712351064.593344]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712351064.593608]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, owl.Thing, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.DinnerPlate, SOMA.Plate, SOMA.Crockery}\n", + "[INFO] [1712351064.593854]: Subclasses: []\n", + "[INFO] [1712351064.594159]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.594646]: Instances: []\n", + "[INFO] [1712351064.594913]: Direct Instances: []\n", + "[INFO] [1712351064.595169]: Inverse Restrictions: []\n", + "[INFO] [1712351064.595409]: -------------------\n", + "[INFO] [1712351064.595645]: SOMA.DirectedMotion \n", + "[INFO] [1712351064.595875]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712351064.596119]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.596426]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712351064.596749]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.597279]: Instances: []\n", + "[INFO] [1712351064.597558]: Direct Instances: []\n", + "[INFO] [1712351064.597830]: Inverse Restrictions: []\n", + "[INFO] [1712351064.598073]: -------------------\n", + "[INFO] [1712351064.598313]: SOMA.UndirectedMotion \n", + "[INFO] [1712351064.598548]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712351064.598813]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.UndirectedMotion, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.599076]: Subclasses: []\n", + "[INFO] [1712351064.599371]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.599857]: Instances: []\n", + "[INFO] [1712351064.600115]: Direct Instances: []\n", + "[INFO] [1712351064.600363]: Inverse Restrictions: []\n", + "[INFO] [1712351064.600599]: -------------------\n", + "[INFO] [1712351064.600842]: SOMA.Dirty \n", + "[INFO] [1712351064.601078]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712351064.601335]: Ancestors: {SOMA.CleanlinessRegion, SOMA.Dirty, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351064.601576]: Subclasses: []\n", + "[INFO] [1712351064.601871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.602353]: Instances: []\n", + "[INFO] [1712351064.602604]: Direct Instances: []\n", + "[INFO] [1712351064.602841]: Inverse Restrictions: []\n", + "[INFO] [1712351064.603080]: -------------------\n", + "[INFO] [1712351064.603316]: SOMA.Discourse \n", + "[INFO] [1712351064.603547]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351064.603803]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, SOMA.Discourse, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.604071]: Subclasses: []\n", + "[INFO] [1712351064.604366]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.604853]: Instances: []\n", + "[INFO] [1712351064.605123]: Direct Instances: []\n", + "[INFO] [1712351064.605379]: Inverse Restrictions: []\n", + "[INFO] [1712351064.605616]: -------------------\n", + "[INFO] [1712351064.605846]: SOMA.Dishwasher \n", + "[INFO] [1712351064.606077]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", + "[INFO] [1712351064.606336]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Appliance, SOMA.Dishwasher, DUL.PhysicalObject}\n", + "[INFO] [1712351064.606592]: Subclasses: []\n", + "[INFO] [1712351064.606886]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.607366]: Instances: []\n", + "[INFO] [1712351064.607619]: Direct Instances: []\n", + "[INFO] [1712351064.607865]: Inverse Restrictions: []\n", + "[INFO] [1712351064.608107]: -------------------\n", + "[INFO] [1712351064.608343]: SOMA.DishwasherTab \n", + "[INFO] [1712351064.608572]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712351064.608854]: Ancestors: {DUL.DesignedArtifact, DUL.Substance, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DishwasherTab, DUL.DesignedSubstance, DUL.PhysicalBody, DUL.FunctionalSubstance, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.609128]: Subclasses: []\n", + "[INFO] [1712351064.609421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.609901]: Instances: []\n", + "[INFO] [1712351064.610172]: Direct Instances: []\n", + "[INFO] [1712351064.610435]: Inverse Restrictions: []\n", + "[INFO] [1712351064.610672]: -------------------\n", + "[INFO] [1712351064.610903]: SOMA.Dispenser \n", + "[INFO] [1712351064.611131]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712351064.611397]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Dispenser, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.611644]: Subclasses: [SOMA.SugarDispenser]\n", + "[INFO] [1712351064.611926]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.612405]: Instances: []\n", + "[INFO] [1712351064.612669]: Direct Instances: []\n", + "[INFO] [1712351064.613032]: Inverse Restrictions: []\n", + "[INFO] [1712351064.613379]: -------------------\n", + "[INFO] [1712351064.613659]: SOMA.Distancing \n", + "[INFO] [1712351064.613925]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712351064.614212]: Ancestors: {DUL.SocialObject, SOMA.Distancing, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.614471]: Subclasses: []\n", + "[INFO] [1712351064.614773]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.615274]: Instances: []\n", + "[INFO] [1712351064.615542]: Direct Instances: []\n", + "[INFO] [1712351064.615808]: Inverse Restrictions: []\n", + "[INFO] [1712351064.616047]: -------------------\n", + "[INFO] [1712351064.616297]: SOMA.Door \n", + "[INFO] [1712351064.616542]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.616815]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Door, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.617064]: Subclasses: []\n", + "[INFO] [1712351064.617345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.617849]: Instances: []\n", + "[INFO] [1712351064.618115]: Direct Instances: []\n", + "[INFO] [1712351064.618400]: Inverse Restrictions: [SOMA.Refrigerator]\n", + "[INFO] [1712351064.618646]: -------------------\n", + "[INFO] [1712351064.618884]: SOMA.Drawer \n", + "[INFO] [1712351064.619117]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", + "[INFO] [1712351064.619391]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalBody, owl.Thing, SOMA.Drawer, DUL.PhysicalObject}\n", + "[INFO] [1712351064.619640]: Subclasses: []\n", + "[INFO] [1712351064.619921]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.620409]: Instances: []\n", + "[INFO] [1712351064.620676]: Direct Instances: []\n", + "[INFO] [1712351064.620929]: Inverse Restrictions: []\n", + "[INFO] [1712351064.621165]: -------------------\n", + "[INFO] [1712351064.621399]: SOMA.Dreaming \n", + "[INFO] [1712351064.621643]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351064.621903]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", + "[INFO] [1712351064.622144]: Subclasses: []\n", + "[INFO] [1712351064.622422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.622918]: Instances: []\n", + "[INFO] [1712351064.623178]: Direct Instances: []\n", + "[INFO] [1712351064.623437]: Inverse Restrictions: []\n", + "[INFO] [1712351064.623672]: -------------------\n", + "[INFO] [1712351064.623906]: SOMA.Driving \n", + "[INFO] [1712351064.624152]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351064.624424]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, SOMA.BodyMovement, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing, SOMA.Driving}\n", + "[INFO] [1712351064.624669]: Subclasses: []\n", + "[INFO] [1712351064.624969]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.625501]: Instances: []\n", + "[INFO] [1712351064.625777]: Direct Instances: []\n", + "[INFO] [1712351064.626032]: Inverse Restrictions: []\n", + "[INFO] [1712351064.626272]: -------------------\n", + "[INFO] [1712351064.626511]: SOMA.Flying \n", + "[INFO] [1712351064.626745]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351064.627019]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.Flying, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.627268]: Subclasses: []\n", + "[INFO] [1712351064.627573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.628062]: Instances: []\n", + "[INFO] [1712351064.628340]: Direct Instances: []\n", + "[INFO] [1712351064.628609]: Inverse Restrictions: []\n", + "[INFO] [1712351064.628859]: -------------------\n", + "[INFO] [1712351064.629108]: SOMA.Swimming \n", + "[INFO] [1712351064.629348]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351064.629620]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, SOMA.Swimming, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.629883]: Subclasses: []\n", + "[INFO] [1712351064.630185]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.630687]: Instances: []\n", + "[INFO] [1712351064.630954]: Direct Instances: []\n", + "[INFO] [1712351064.631216]: Inverse Restrictions: []\n", + "[INFO] [1712351064.631472]: -------------------\n", + "[INFO] [1712351064.631713]: SOMA.Walking \n", + "[INFO] [1712351064.631962]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351064.632243]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, SOMA.Walking, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.632498]: Subclasses: []\n", + "[INFO] [1712351064.632790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.633283]: Instances: []\n", + "[INFO] [1712351064.633565]: Direct Instances: []\n", + "[INFO] [1712351064.633824]: Inverse Restrictions: []\n", + "[INFO] [1712351064.634068]: -------------------\n", + "[INFO] [1712351064.634307]: SOMA.Dropping \n", + "[INFO] [1712351064.634545]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.634819]: Ancestors: {DUL.SocialObject, SOMA.Dropping, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.635068]: Subclasses: []\n", + "[INFO] [1712351064.635364]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.635861]: Instances: []\n", + "[INFO] [1712351064.636132]: Direct Instances: []\n", + "[INFO] [1712351064.636384]: Inverse Restrictions: []\n", + "[INFO] [1712351064.636626]: -------------------\n", + "[INFO] [1712351064.636869]: SOMA.Placing \n", + "[INFO] [1712351064.637173]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351064.637468]: Ancestors: {SOMA.Placing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.637728]: Subclasses: []\n", + "[INFO] [1712351064.638021]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.638501]: Instances: []\n", + "[INFO] [1712351064.638775]: Direct Instances: []\n", + "[INFO] [1712351064.639030]: Inverse Restrictions: []\n", + "[INFO] [1712351064.639272]: -------------------\n", + "[INFO] [1712351064.639508]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712351064.639780]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712351064.640067]: Ancestors: {SOMA.ESTSchemaTheory, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.640323]: Subclasses: []\n", + "[INFO] [1712351064.640622]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351064.641108]: Instances: []\n", + "[INFO] [1712351064.641380]: Direct Instances: []\n", + "[INFO] [1712351064.641713]: Inverse Restrictions: []\n", + "[INFO] [1712351064.642188]: -------------------\n", + "[INFO] [1712351064.642571]: SOMA.ExistingObjectRole \n", + "[INFO] [1712351064.642944]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351064.643343]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.ExistingObjectRole, owl.Thing}\n", + "[INFO] [1712351064.643718]: Subclasses: []\n", + "[INFO] [1712351064.644126]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.644717]: Instances: []\n", + "[INFO] [1712351064.645066]: Direct Instances: []\n", + "[INFO] [1712351064.645395]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712351064.645674]: -------------------\n", + "[INFO] [1712351064.645937]: SOMA.Effort \n", + "[INFO] [1712351064.646186]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712351064.646462]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Effort, owl.Thing}\n", + "[INFO] [1712351064.646715]: Subclasses: []\n", + "[INFO] [1712351064.647010]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.647502]: Instances: []\n", + "[INFO] [1712351064.647764]: Direct Instances: []\n", + "[INFO] [1712351064.648011]: Inverse Restrictions: []\n", + "[INFO] [1712351064.648249]: -------------------\n", + "[INFO] [1712351064.648481]: SOMA.EnclosedObject \n", + "[INFO] [1712351064.648727]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712351064.649002]: Ancestors: {DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.649259]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712351064.649546]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.650041]: Instances: []\n", + "[INFO] [1712351064.650303]: Direct Instances: []\n", + "[INFO] [1712351064.650605]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712351064.650850]: -------------------\n", + "[INFO] [1712351064.651082]: SOMA.Enclosing \n", + "[INFO] [1712351064.651337]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712351064.651591]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.651842]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712351064.652131]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.652631]: Instances: []\n", + "[INFO] [1712351064.652898]: Direct Instances: []\n", + "[INFO] [1712351064.653152]: Inverse Restrictions: []\n", + "[INFO] [1712351064.653389]: -------------------\n", + "[INFO] [1712351064.653622]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712351064.653875]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351064.654148]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.654411]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712351064.654700]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.655180]: Instances: []\n", + "[INFO] [1712351064.655455]: Direct Instances: []\n", + "[INFO] [1712351064.655715]: Inverse Restrictions: []\n", + "[INFO] [1712351064.655954]: -------------------\n", + "[INFO] [1712351064.656188]: SOMA.Manipulating \n", + "[INFO] [1712351064.656443]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712351064.656710]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.656984]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712351064.657275]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.657774]: Instances: []\n", + "[INFO] [1712351064.658047]: Direct Instances: []\n", + "[INFO] [1712351064.658307]: Inverse Restrictions: []\n", + "[INFO] [1712351064.658543]: -------------------\n", + "[INFO] [1712351064.658784]: SOMA.Episode \n", + "[INFO] [1712351064.659015]: Super classes: [DUL.Situation]\n", + "[INFO] [1712351064.659282]: Ancestors: {owl.Thing, SOMA.Episode, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712351064.659540]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712351064.659825]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.660306]: Instances: []\n", + "[INFO] [1712351064.660576]: Direct Instances: []\n", + "[INFO] [1712351064.660841]: Inverse Restrictions: []\n", + "[INFO] [1712351064.661081]: -------------------\n", + "[INFO] [1712351064.661339]: SOMA.ExcludedObject \n", + "[INFO] [1712351064.661752]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.662131]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, SOMA.ExcludedObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.662485]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712351064.662871]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.663472]: Instances: []\n", + "[INFO] [1712351064.663837]: Direct Instances: []\n", + "[INFO] [1712351064.664524]: Inverse Restrictions: []\n", + "[INFO] [1712351064.664912]: -------------------\n", + "[INFO] [1712351064.665268]: SOMA.ExecutableFile \n", + "[INFO] [1712351064.665607]: Super classes: [owl.Thing]\n", + "[INFO] [1712351064.666925]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", + "[INFO] [1712351064.667304]: Subclasses: []\n", + "[INFO] [1712351064.667713]: Properties: [rdf-schema.label, DUL.realizes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.668299]: Instances: []\n", + "[INFO] [1712351064.668651]: Direct Instances: []\n", + "[INFO] [1712351064.669776]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712351064.670076]: -------------------\n", + "[INFO] [1712351064.670336]: SOMA.Executable_Code \n", + "[INFO] [1712351064.670579]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712351064.671780]: Ancestors: {SOMA.Executable_Code, SOMA.Computer_Program, owl.Thing}\n", + "[INFO] [1712351064.672065]: Subclasses: []\n", + "[INFO] [1712351064.672383]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.672876]: Instances: []\n", + "[INFO] [1712351064.673142]: Direct Instances: []\n", + "[INFO] [1712351064.673490]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712351064.673755]: -------------------\n", + "[INFO] [1712351064.674001]: SOMA.ExecutableFormat \n", + "[INFO] [1712351064.674240]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712351064.674508]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.ExecutableFormat, owl.Thing}\n", + "[INFO] [1712351064.674771]: Subclasses: []\n", + "[INFO] [1712351064.675368]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.675967]: Instances: []\n", + "[INFO] [1712351064.676266]: Direct Instances: []\n", + "[INFO] [1712351064.676597]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712351064.676869]: -------------------\n", + "[INFO] [1712351064.677176]: SOMA.SchematicTheory \n", + "[INFO] [1712351064.677457]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712351064.677724]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351064.678000]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712351064.678539]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.679492]: Instances: []\n", + "[INFO] [1712351064.679967]: Direct Instances: []\n", + "[INFO] [1712351064.680423]: Inverse Restrictions: []\n", + "[INFO] [1712351064.680812]: -------------------\n", + "[INFO] [1712351064.681192]: SOMA.ExecutableSoftware \n", + "[INFO] [1712351064.681559]: Super classes: [owl.Thing]\n", + "[INFO] [1712351064.682443]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", + "[INFO] [1712351064.682819]: Subclasses: []\n", + "[INFO] [1712351064.683292]: Properties: [rdf-schema.label, DUL.hasMember, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.684078]: Instances: []\n", + "[INFO] [1712351064.684458]: Direct Instances: []\n", + "[INFO] [1712351064.684837]: Inverse Restrictions: []\n", + "[INFO] [1712351064.685197]: -------------------\n", + "[INFO] [1712351064.685558]: SOMA.Software \n", + "[INFO] [1712351064.685983]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712351064.686504]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Software, owl.Thing}\n", + "[INFO] [1712351064.687020]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712351064.687528]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351064.688432]: Instances: []\n", + "[INFO] [1712351064.688965]: Direct Instances: []\n", + "[INFO] [1712351064.689529]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351064.689921]: -------------------\n", + "[INFO] [1712351064.690214]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712351064.690486]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712351064.690747]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.691012]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712351064.691312]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.691831]: Instances: []\n", + "[INFO] [1712351064.692100]: Direct Instances: []\n", + "[INFO] [1712351064.692355]: Inverse Restrictions: []\n", + "[INFO] [1712351064.692590]: -------------------\n", + "[INFO] [1712351064.692850]: SOMA.ExperiencerRole \n", + "[INFO] [1712351064.693111]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712351064.693373]: Ancestors: {DUL.SocialObject, SOMA.EventAdjacentRole, SOMA.PerformerRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.ExperiencerRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351064.693634]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712351064.693927]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.694453]: Instances: []\n", + "[INFO] [1712351064.694736]: Direct Instances: []\n", + "[INFO] [1712351064.694992]: Inverse Restrictions: []\n", + "[INFO] [1712351064.695331]: -------------------\n", + "[INFO] [1712351064.695601]: SOMA.ExtractedObject \n", + "[INFO] [1712351064.695860]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.696141]: Ancestors: {SOMA.ExtractedObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.696390]: Subclasses: []\n", + "[INFO] [1712351064.696676]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.697203]: Instances: []\n", + "[INFO] [1712351064.697477]: Direct Instances: []\n", + "[INFO] [1712351064.697733]: Inverse Restrictions: []\n", + "[INFO] [1712351064.697973]: -------------------\n", + "[INFO] [1712351064.698215]: SOMA.PhysicalQuality \n", + "[INFO] [1712351064.698458]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712351064.698700]: Ancestors: {DUL.Entity, owl.Thing, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712351064.698943]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712351064.699227]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf]\n", + "[INFO] [1712351064.699799]: Instances: []\n", + "[INFO] [1712351064.700063]: Direct Instances: []\n", + "[INFO] [1712351064.700317]: Inverse Restrictions: []\n", + "[INFO] [1712351064.700560]: -------------------\n", + "[INFO] [1712351064.700797]: SOMA.FailedAttempt \n", + "[INFO] [1712351064.701043]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712351064.701327]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.FailedAttempt, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351064.701598]: Subclasses: []\n", + "[INFO] [1712351064.701889]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.702391]: Instances: []\n", + "[INFO] [1712351064.702655]: Direct Instances: []\n", + "[INFO] [1712351064.702900]: Inverse Restrictions: []\n", + "[INFO] [1712351064.703128]: -------------------\n", + "[INFO] [1712351064.703355]: SOMA.FaultySoftware \n", + "[INFO] [1712351064.703591]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712351064.703884]: Ancestors: {DUL.Description, SOMA.FaultySoftware, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.704131]: Subclasses: []\n", + "[INFO] [1712351064.704412]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.704912]: Instances: []\n", + "[INFO] [1712351064.705180]: Direct Instances: []\n", + "[INFO] [1712351064.705429]: Inverse Restrictions: []\n", + "[INFO] [1712351064.705657]: -------------------\n", + "[INFO] [1712351064.705881]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712351064.706107]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712351064.706352]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.706605]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712351064.706883]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.707382]: Instances: []\n", + "[INFO] [1712351064.707642]: Direct Instances: []\n", + "[INFO] [1712351064.707890]: Inverse Restrictions: []\n", + "[INFO] [1712351064.708132]: -------------------\n", + "[INFO] [1712351064.708367]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712351064.708596]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712351064.708844]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PhysicalAcquiring, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.709093]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712351064.709403]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.709901]: Instances: []\n", + "[INFO] [1712351064.710160]: Direct Instances: []\n", + "[INFO] [1712351064.710412]: Inverse Restrictions: []\n", + "[INFO] [1712351064.710649]: -------------------\n", + "[INFO] [1712351064.710890]: SOMA.Finger \n", + "[INFO] [1712351064.711150]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712351064.711422]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Finger, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712351064.711665]: Subclasses: []\n", + "[INFO] [1712351064.711947]: Properties: [DUL.isPartOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.712445]: Instances: []\n", + "[INFO] [1712351064.712724]: Direct Instances: []\n", + "[INFO] [1712351064.712972]: Inverse Restrictions: []\n", + "[INFO] [1712351064.713209]: -------------------\n", + "[INFO] [1712351064.713454]: SOMA.Hand \n", + "[INFO] [1712351064.713686]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712351064.713958]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, SOMA.Hand, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.714196]: Subclasses: []\n", + "[INFO] [1712351064.714477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.714974]: Instances: []\n", + "[INFO] [1712351064.715237]: Direct Instances: []\n", + "[INFO] [1712351064.715527]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712351064.715765]: -------------------\n", + "[INFO] [1712351064.715993]: SOMA.FixedJoint \n", + "[INFO] [1712351064.716251]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712351064.716531]: Ancestors: {SOMA.FixedJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.716783]: Subclasses: []\n", + "[INFO] [1712351064.717088]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.717581]: Instances: []\n", + "[INFO] [1712351064.717847]: Direct Instances: []\n", + "[INFO] [1712351064.718132]: Inverse Restrictions: []\n", + "[INFO] [1712351064.718369]: -------------------\n", + "[INFO] [1712351064.718611]: SOMA.MovableJoint \n", + "[INFO] [1712351064.718859]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712351064.719101]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.719355]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712351064.719644]: Properties: [rdf-schema.label, SOMA.hasJointState, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.720138]: Instances: []\n", + "[INFO] [1712351064.720403]: Direct Instances: []\n", + "[INFO] [1712351064.720695]: Inverse Restrictions: []\n", + "[INFO] [1712351064.720937]: -------------------\n", + "[INFO] [1712351064.721176]: SOMA.Flipping \n", + "[INFO] [1712351064.721412]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712351064.721677]: Ancestors: {SOMA.Flipping, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.721917]: Subclasses: []\n", + "[INFO] [1712351064.722201]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.722692]: Instances: []\n", + "[INFO] [1712351064.722960]: Direct Instances: []\n", + "[INFO] [1712351064.723210]: Inverse Restrictions: []\n", + "[INFO] [1712351064.723445]: -------------------\n", + "[INFO] [1712351064.723678]: SOMA.FloatingJoint \n", + "[INFO] [1712351064.723904]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712351064.724178]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, SOMA.FloatingJoint, DUL.PhysicalObject}\n", + "[INFO] [1712351064.724427]: Subclasses: []\n", + "[INFO] [1712351064.724717]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.725214]: Instances: []\n", + "[INFO] [1712351064.725500]: Direct Instances: []\n", + "[INFO] [1712351064.725760]: Inverse Restrictions: []\n", + "[INFO] [1712351064.725999]: -------------------\n", + "[INFO] [1712351064.726238]: SOMA.Fluid \n", + "[INFO] [1712351064.726471]: Super classes: [DUL.Substance]\n", + "[INFO] [1712351064.726732]: Ancestors: {DUL.Substance, DUL.Object, DUL.Entity, SOMA.Fluid, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.726995]: Subclasses: []\n", + "[INFO] [1712351064.727291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.727776]: Instances: []\n", + "[INFO] [1712351064.728045]: Direct Instances: []\n", + "[INFO] [1712351064.728355]: Inverse Restrictions: []\n", + "[INFO] [1712351064.728611]: -------------------\n", + "[INFO] [1712351064.728865]: SOMA.MovedObject \n", + "[INFO] [1712351064.729148]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712351064.729437]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, SOMA.MovedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.729688]: Subclasses: []\n", + "[INFO] [1712351064.729987]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment]\n", + "[INFO] [1712351064.730466]: Instances: []\n", + "[INFO] [1712351064.730735]: Direct Instances: []\n", + "[INFO] [1712351064.731519]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712351064.731784]: -------------------\n", + "[INFO] [1712351064.732024]: SOMA.Focusing \n", + "[INFO] [1712351064.732255]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712351064.732521]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AttentionShift, SOMA.Focusing, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.732791]: Subclasses: []\n", + "[INFO] [1712351064.733090]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.733576]: Instances: []\n", + "[INFO] [1712351064.733849]: Direct Instances: []\n", + "[INFO] [1712351064.734101]: Inverse Restrictions: []\n", + "[INFO] [1712351064.734332]: -------------------\n", + "[INFO] [1712351064.734575]: SOMA.Foolishness \n", + "[INFO] [1712351064.734809]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712351064.735071]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, SOMA.Foolishness, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351064.735312]: Subclasses: []\n", + "[INFO] [1712351064.735592]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.736085]: Instances: []\n", + "[INFO] [1712351064.736346]: Direct Instances: []\n", + "[INFO] [1712351064.736588]: Inverse Restrictions: []\n", + "[INFO] [1712351064.736823]: -------------------\n", + "[INFO] [1712351064.737050]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712351064.737298]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712351064.737571]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, SOMA.ForgettingIncorrectInformation, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.737815]: Subclasses: []\n", + "[INFO] [1712351064.738097]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.738604]: Instances: []\n", + "[INFO] [1712351064.738868]: Direct Instances: []\n", + "[INFO] [1712351064.739118]: Inverse Restrictions: []\n", + "[INFO] [1712351064.739352]: -------------------\n", + "[INFO] [1712351064.739586]: SOMA.InformationDismissal \n", + "[INFO] [1712351064.739858]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712351064.740129]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.740391]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712351064.740690]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712351064.741187]: Instances: []\n", + "[INFO] [1712351064.741459]: Direct Instances: []\n", + "[INFO] [1712351064.741716]: Inverse Restrictions: []\n", + "[INFO] [1712351064.741951]: -------------------\n", + "[INFO] [1712351064.742182]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712351064.742415]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712351064.742692]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, SOMA.ForgettingIrrelevantInformation, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.742944]: Subclasses: []\n", + "[INFO] [1712351064.743228]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.743702]: Instances: []\n", + "[INFO] [1712351064.743970]: Direct Instances: []\n", + "[INFO] [1712351064.744221]: Inverse Restrictions: []\n", + "[INFO] [1712351064.744454]: -------------------\n", + "[INFO] [1712351064.744700]: SOMA.Language \n", + "[INFO] [1712351064.744977]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712351064.745225]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.745485]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712351064.745782]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.746314]: Instances: []\n", + "[INFO] [1712351064.746595]: Direct Instances: []\n", + "[INFO] [1712351064.747637]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712351064.747894]: -------------------\n", + "[INFO] [1712351064.748133]: SOMA.FreezerCompartment \n", + "[INFO] [1712351064.748374]: Super classes: [SOMA.Compartment]\n", + "[INFO] [1712351064.748646]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Compartment, SOMA.FreezerCompartment, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.748996]: Subclasses: []\n", + "[INFO] [1712351064.749336]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.749846]: Instances: []\n", + "[INFO] [1712351064.750118]: Direct Instances: []\n", + "[INFO] [1712351064.750376]: Inverse Restrictions: []\n", + "[INFO] [1712351064.750649]: -------------------\n", + "[INFO] [1712351064.750896]: SOMA.Item \n", + "[INFO] [1712351064.751139]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351064.751396]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.Item, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.751806]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712351064.752239]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.752887]: Instances: []\n", + "[INFO] [1712351064.753200]: Direct Instances: []\n", + "[INFO] [1712351064.753585]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712351064.753841]: -------------------\n", + "[INFO] [1712351064.754085]: SOMA.FunctionalDesign \n", + "[INFO] [1712351064.754339]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712351064.754885]: Ancestors: {SOMA.FunctionalDesign, DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.755221]: Subclasses: []\n", + "[INFO] [1712351064.755516]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.756016]: Instances: []\n", + "[INFO] [1712351064.756289]: Direct Instances: []\n", + "[INFO] [1712351064.756540]: Inverse Restrictions: []\n", + "[INFO] [1712351064.756781]: -------------------\n", + "[INFO] [1712351064.757017]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712351064.757244]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712351064.757477]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.FunctionalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.757739]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712351064.758029]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.758525]: Instances: []\n", + "[INFO] [1712351064.758820]: Direct Instances: []\n", + "[INFO] [1712351064.759095]: Inverse Restrictions: []\n", + "[INFO] [1712351064.759341]: -------------------\n", + "[INFO] [1712351064.759576]: SOMA.LocatumRole \n", + "[INFO] [1712351064.759815]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351064.760102]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.LocatumRole, SOMA.SpatialRelationRole, owl.Thing}\n", + "[INFO] [1712351064.760353]: Subclasses: []\n", + "[INFO] [1712351064.760642]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.761121]: Instances: []\n", + "[INFO] [1712351064.761394]: Direct Instances: []\n", + "[INFO] [1712351064.761722]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712351064.761965]: -------------------\n", + "[INFO] [1712351064.762198]: SOMA.RelatumRole \n", + "[INFO] [1712351064.762444]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351064.762719]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.RelatumRole, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.SpatialRelationRole, owl.Thing}\n", + "[INFO] [1712351064.762962]: Subclasses: []\n", + "[INFO] [1712351064.763253]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.763735]: Instances: []\n", + "[INFO] [1712351064.764008]: Direct Instances: []\n", + "[INFO] [1712351064.764339]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712351064.764589]: -------------------\n", + "[INFO] [1712351064.764832]: SOMA.GasCooktop \n", + "[INFO] [1712351064.765065]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712351064.765335]: Ancestors: {SOMA.GasCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.765599]: Subclasses: []\n", + "[INFO] [1712351064.765894]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.766382]: Instances: []\n", + "[INFO] [1712351064.766638]: Direct Instances: []\n", + "[INFO] [1712351064.766882]: Inverse Restrictions: []\n", + "[INFO] [1712351064.767113]: -------------------\n", + "[INFO] [1712351064.767356]: SOMA.GetTaskParameter \n", + "[INFO] [1712351064.767589]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712351064.767857]: Ancestors: {SOMA.Planning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing, SOMA.GetTaskParameter}\n", + "[INFO] [1712351064.768117]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712351064.768412]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.768901]: Instances: []\n", + "[INFO] [1712351064.769160]: Direct Instances: []\n", + "[INFO] [1712351064.769405]: Inverse Restrictions: []\n", + "[INFO] [1712351064.769631]: -------------------\n", + "[INFO] [1712351064.769866]: SOMA.Planning \n", + "[INFO] [1712351064.770495]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712351064.770756]: Ancestors: {SOMA.Planning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351064.771006]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712351064.771308]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.771802]: Instances: []\n", + "[INFO] [1712351064.772059]: Direct Instances: []\n", + "[INFO] [1712351064.772303]: Inverse Restrictions: []\n", + "[INFO] [1712351064.772540]: -------------------\n", + "[INFO] [1712351064.772792]: SOMA.Glass \n", + "[INFO] [1712351064.773033]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712351064.773299]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Glass, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351064.773548]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", + "[INFO] [1712351064.773835]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.774322]: Instances: []\n", + "[INFO] [1712351064.774577]: Direct Instances: []\n", + "[INFO] [1712351064.774823]: Inverse Restrictions: []\n", + "[INFO] [1712351064.775064]: -------------------\n", + "[INFO] [1712351064.775302]: SOMA.GraphDatabase \n", + "[INFO] [1712351064.775532]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712351064.775789]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, SOMA.GraphDatabase, DUL.Role, owl.Thing}\n", + "[INFO] [1712351064.776038]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712351064.776329]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.776829]: Instances: []\n", + "[INFO] [1712351064.777108]: Direct Instances: []\n", + "[INFO] [1712351064.777368]: Inverse Restrictions: []\n", + "[INFO] [1712351064.777606]: -------------------\n", + "[INFO] [1712351064.777839]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712351064.778073]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712351064.778379]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.GraphQueryLanguage, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.778825]: Subclasses: []\n", + "[INFO] [1712351064.779264]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.779884]: Instances: []\n", + "[INFO] [1712351064.780271]: Direct Instances: []\n", + "[INFO] [1712351064.780633]: Inverse Restrictions: []\n", + "[INFO] [1712351064.781156]: -------------------\n", + "[INFO] [1712351064.781605]: SOMA.QueryLanguage \n", + "[INFO] [1712351064.782019]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351064.782450]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.782873]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712351064.783376]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.784197]: Instances: []\n", + "[INFO] [1712351064.784598]: Direct Instances: []\n", + "[INFO] [1712351064.784995]: Inverse Restrictions: []\n", + "[INFO] [1712351064.785369]: -------------------\n", + "[INFO] [1712351064.785742]: SOMA.GraspTransfer \n", + "[INFO] [1712351064.786122]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712351064.786566]: Ancestors: {DUL.SocialObject, SOMA.GraspTransfer, SOMA.Manipulating, SOMA.Grasping, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.786953]: Subclasses: []\n", + "[INFO] [1712351064.787438]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.788243]: Instances: []\n", + "[INFO] [1712351064.788721]: Direct Instances: []\n", + "[INFO] [1712351064.789183]: Inverse Restrictions: []\n", + "[INFO] [1712351064.789654]: -------------------\n", + "[INFO] [1712351064.790041]: SOMA.Grasping \n", + "[INFO] [1712351064.790415]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351064.790806]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, SOMA.Grasping, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.791193]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712351064.791691]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.792483]: Instances: []\n", + "[INFO] [1712351064.792931]: Direct Instances: []\n", + "[INFO] [1712351064.793330]: Inverse Restrictions: []\n", + "[INFO] [1712351064.793608]: -------------------\n", + "[INFO] [1712351064.793861]: SOMA.Releasing \n", + "[INFO] [1712351064.794103]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351064.794376]: Ancestors: {SOMA.Releasing, DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.794625]: Subclasses: []\n", + "[INFO] [1712351064.794914]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.795422]: Instances: []\n", + "[INFO] [1712351064.795690]: Direct Instances: []\n", + "[INFO] [1712351064.795965]: Inverse Restrictions: []\n", + "[INFO] [1712351064.796209]: -------------------\n", + "[INFO] [1712351064.796438]: SOMA.GraspingMotion \n", + "[INFO] [1712351064.796679]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712351064.798115]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", + "[INFO] [1712351064.798402]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712351064.798724]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.799220]: Instances: []\n", + "[INFO] [1712351064.799495]: Direct Instances: []\n", + "[INFO] [1712351064.799790]: Inverse Restrictions: []\n", + "[INFO] [1712351064.800038]: -------------------\n", + "[INFO] [1712351064.800273]: SOMA.IntermediateGrasp \n", + "[INFO] [1712351064.800506]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712351064.800779]: Ancestors: {SOMA.IntermediateGrasp, SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", + "[INFO] [1712351064.801046]: Subclasses: []\n", + "[INFO] [1712351064.801355]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.801839]: Instances: []\n", + "[INFO] [1712351064.802109]: Direct Instances: []\n", + "[INFO] [1712351064.802396]: Inverse Restrictions: []\n", + "[INFO] [1712351064.802642]: -------------------\n", + "[INFO] [1712351064.802875]: SOMA.PowerGrasp \n", + "[INFO] [1712351064.803107]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712351064.803381]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PowerGrasp, SOMA.GraspingMotion}\n", + "[INFO] [1712351064.803639]: Subclasses: []\n", + "[INFO] [1712351064.803950]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.804454]: Instances: []\n", + "[INFO] [1712351064.804718]: Direct Instances: []\n", + "[INFO] [1712351064.805015]: Inverse Restrictions: []\n", + "[INFO] [1712351064.805260]: -------------------\n", + "[INFO] [1712351064.805498]: SOMA.PrecisionGrasp \n", + "[INFO] [1712351064.805725]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712351064.805984]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.PrecisionGrasp, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", + "[INFO] [1712351064.806228]: Subclasses: []\n", + "[INFO] [1712351064.806519]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.806998]: Instances: []\n", + "[INFO] [1712351064.807250]: Direct Instances: []\n", + "[INFO] [1712351064.807534]: Inverse Restrictions: []\n", + "[INFO] [1712351064.807765]: -------------------\n", + "[INFO] [1712351064.808007]: SOMA.PrehensileMotion \n", + "[INFO] [1712351064.808657]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712351064.808929]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.809185]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712351064.809487]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.810004]: Instances: []\n", + "[INFO] [1712351064.810276]: Direct Instances: []\n", + "[INFO] [1712351064.810533]: Inverse Restrictions: []\n", + "[INFO] [1712351064.810766]: -------------------\n", + "[INFO] [1712351064.810998]: SOMA.ReleasingMotion \n", + "[INFO] [1712351064.811237]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712351064.811513]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, SOMA.ReleasingMotion, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.811762]: Subclasses: []\n", + "[INFO] [1712351064.812049]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.812527]: Instances: []\n", + "[INFO] [1712351064.812785]: Direct Instances: []\n", + "[INFO] [1712351064.813238]: Inverse Restrictions: []\n", + "[INFO] [1712351064.813539]: -------------------\n", + "[INFO] [1712351064.813808]: SOMA.GreenColor \n", + "[INFO] [1712351064.814063]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712351064.814339]: Ancestors: {SOMA.ColorRegion, SOMA.GreenColor, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351064.814589]: Subclasses: []\n", + "[INFO] [1712351064.814880]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.815387]: Instances: []\n", + "[INFO] [1712351064.815660]: Direct Instances: []\n", + "[INFO] [1712351064.815913]: Inverse Restrictions: []\n", + "[INFO] [1712351064.816148]: -------------------\n", + "[INFO] [1712351064.816383]: SOMA.Gripper \n", + "[INFO] [1712351064.816621]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712351064.816902]: Ancestors: {SOMA.PhysicalEffector, SOMA.Gripper, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.817157]: Subclasses: []\n", + "[INFO] [1712351064.817444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.817919]: Instances: []\n", + "[INFO] [1712351064.818194]: Direct Instances: []\n", + "[INFO] [1712351064.818451]: Inverse Restrictions: []\n", + "[INFO] [1712351064.818689]: -------------------\n", + "[INFO] [1712351064.818924]: SOMA.PrehensileEffector \n", + "[INFO] [1712351064.819155]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712351064.819407]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.819665]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712351064.819959]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.820448]: Instances: []\n", + "[INFO] [1712351064.820721]: Direct Instances: []\n", + "[INFO] [1712351064.821040]: Inverse Restrictions: []\n", + "[INFO] [1712351064.821285]: -------------------\n", + "[INFO] [1712351064.821519]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712351064.821751]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712351064.822021]: Ancestors: {DUL.Description, SOMA.HardwareDiagnosis, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.822275]: Subclasses: []\n", + "[INFO] [1712351064.822560]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.823033]: Instances: []\n", + "[INFO] [1712351064.823283]: Direct Instances: []\n", + "[INFO] [1712351064.823527]: Inverse Restrictions: []\n", + "[INFO] [1712351064.823769]: -------------------\n", + "[INFO] [1712351064.824003]: SOMA.HasQualityRegion \n", + "[INFO] [1712351064.824270]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712351064.824523]: Ancestors: {SOMA.HasQualityRegion, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351064.824786]: Subclasses: []\n", + "[INFO] [1712351064.825093]: Properties: [DUL.hasQuality, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy, DUL.hasRegion]\n", + "[INFO] [1712351064.825584]: Instances: []\n", + "[INFO] [1712351064.825841]: Direct Instances: []\n", + "[INFO] [1712351064.826101]: Inverse Restrictions: []\n", + "[INFO] [1712351064.826350]: -------------------\n", + "[INFO] [1712351064.826584]: SOMA.Head \n", + "[INFO] [1712351064.826815]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712351064.827075]: Ancestors: {owl.Thing, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Head, DUL.PhysicalObject}\n", + "[INFO] [1712351064.827332]: Subclasses: []\n", + "[INFO] [1712351064.827621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.828099]: Instances: []\n", + "[INFO] [1712351064.828351]: Direct Instances: []\n", + "[INFO] [1712351064.828601]: Inverse Restrictions: []\n", + "[INFO] [1712351064.828848]: -------------------\n", + "[INFO] [1712351064.829080]: SOMA.HeadMovement \n", + "[INFO] [1712351064.829309]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712351064.829569]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.HeadMovement, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.829831]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712351064.830118]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.830594]: Instances: []\n", + "[INFO] [1712351064.830847]: Direct Instances: []\n", + "[INFO] [1712351064.831100]: Inverse Restrictions: []\n", + "[INFO] [1712351064.831340]: -------------------\n", + "[INFO] [1712351064.831576]: SOMA.HeadTurning \n", + "[INFO] [1712351064.831803]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712351064.832067]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.HeadTurning, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.HeadMovement, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.832308]: Subclasses: []\n", + "[INFO] [1712351064.832602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.833090]: Instances: []\n", + "[INFO] [1712351064.833351]: Direct Instances: []\n", + "[INFO] [1712351064.833593]: Inverse Restrictions: []\n", + "[INFO] [1712351064.833818]: -------------------\n", + "[INFO] [1712351064.834058]: SOMA.Holding \n", + "[INFO] [1712351064.834287]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351064.834548]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.Holding, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.834790]: Subclasses: []\n", + "[INFO] [1712351064.835072]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.835569]: Instances: []\n", + "[INFO] [1712351064.835838]: Direct Instances: []\n", + "[INFO] [1712351064.836092]: Inverse Restrictions: []\n", + "[INFO] [1712351064.836326]: -------------------\n", + "[INFO] [1712351064.836566]: SOMA.HostRole \n", + "[INFO] [1712351064.836833]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712351064.837105]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.HostRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351064.837349]: Subclasses: []\n", + "[INFO] [1712351064.837632]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", + "[INFO] [1712351064.838129]: Instances: []\n", + "[INFO] [1712351064.838395]: Direct Instances: []\n", + "[INFO] [1712351064.839442]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712351064.839720]: -------------------\n", + "[INFO] [1712351064.839971]: SOMA.PluginSpecification \n", + "[INFO] [1712351064.840225]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712351064.840497]: Ancestors: {DUL.Description, SOMA.PluginSpecification, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification}\n", + "[INFO] [1712351064.840744]: Subclasses: []\n", + "[INFO] [1712351064.841068]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole, rdf-schema.comment]\n", + "[INFO] [1712351064.841572]: Instances: []\n", + "[INFO] [1712351064.841838]: Direct Instances: []\n", + "[INFO] [1712351064.842170]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712351064.842421]: -------------------\n", + "[INFO] [1712351064.842676]: SOMA.Hotplate \n", + "[INFO] [1712351064.842919]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.843206]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Hotplate, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.843467]: Subclasses: []\n", + "[INFO] [1712351064.843761]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.844268]: Instances: []\n", + "[INFO] [1712351064.844541]: Direct Instances: []\n", + "[INFO] [1712351064.844833]: Inverse Restrictions: [SOMA.Stove]\n", + "[INFO] [1712351064.845092]: -------------------\n", + "[INFO] [1712351064.845344]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712351064.845624]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712351064.845914]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Programming_Language, SOMA.Computer_Language, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.846169]: Subclasses: []\n", + "[INFO] [1712351064.846461]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.846943]: Instances: []\n", + "[INFO] [1712351064.847219]: Direct Instances: []\n", + "[INFO] [1712351064.848255]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712351064.848519]: -------------------\n", + "[INFO] [1712351064.848763]: SOMA.Source_Code \n", + "[INFO] [1712351064.849015]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712351064.849507]: Ancestors: {owl.Thing, SOMA.Computer_Program, SOMA.Source_Code}\n", + "[INFO] [1712351064.849770]: Subclasses: []\n", + "[INFO] [1712351064.850088]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.850585]: Instances: []\n", + "[INFO] [1712351064.850850]: Direct Instances: []\n", + "[INFO] [1712351064.851135]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712351064.851374]: -------------------\n", + "[INFO] [1712351064.851606]: SOMA.HumanActivityRecording \n", + "[INFO] [1712351064.851849]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712351064.852126]: Ancestors: {SOMA.HumanActivityRecording, SOMA.RecordedEpisode, DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing}\n", + "[INFO] [1712351064.852371]: Subclasses: []\n", + "[INFO] [1712351064.852652]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.853149]: Instances: []\n", + "[INFO] [1712351064.853418]: Direct Instances: []\n", + "[INFO] [1712351064.853669]: Inverse Restrictions: []\n", + "[INFO] [1712351064.853901]: -------------------\n", + "[INFO] [1712351064.854131]: SOMA.Imagining \n", + "[INFO] [1712351064.854371]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712351064.854635]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Imagining}\n", + "[INFO] [1712351064.854881]: Subclasses: []\n", + "[INFO] [1712351064.855166]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.855661]: Instances: []\n", + "[INFO] [1712351064.855923]: Direct Instances: []\n", + "[INFO] [1712351064.856167]: Inverse Restrictions: []\n", + "[INFO] [1712351064.856406]: -------------------\n", + "[INFO] [1712351064.856640]: SOMA.Impediment \n", + "[INFO] [1712351064.856923]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712351064.857206]: Ancestors: {SOMA.Impediment, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351064.857451]: Subclasses: []\n", + "[INFO] [1712351064.857994]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.858700]: Instances: []\n", + "[INFO] [1712351064.859175]: Direct Instances: []\n", + "[INFO] [1712351064.859598]: Inverse Restrictions: []\n", + "[INFO] [1712351064.860008]: -------------------\n", + "[INFO] [1712351064.860411]: SOMA.Obstacle \n", + "[INFO] [1712351064.860770]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712351064.861233]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, SOMA.Obstacle, owl.Thing}\n", + "[INFO] [1712351064.861657]: Subclasses: []\n", + "[INFO] [1712351064.862058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.862651]: Instances: []\n", + "[INFO] [1712351064.863012]: Direct Instances: []\n", + "[INFO] [1712351064.863407]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712351064.863745]: -------------------\n", + "[INFO] [1712351064.864078]: SOMA.RestrictedObject \n", + "[INFO] [1712351064.864424]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712351064.864790]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.BlockedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.RestrictedObject}\n", + "[INFO] [1712351064.865134]: Subclasses: []\n", + "[INFO] [1712351064.865510]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.866079]: Instances: []\n", + "[INFO] [1712351064.866443]: Direct Instances: []\n", + "[INFO] [1712351064.866827]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712351064.867161]: -------------------\n", + "[INFO] [1712351064.867482]: SOMA.StateTransition \n", + "[INFO] [1712351064.867844]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712351064.868216]: Ancestors: {DUL.Transition, DUL.Entity, SOMA.StateTransition, DUL.Situation, owl.Thing}\n", + "[INFO] [1712351064.868562]: Subclasses: []\n", + "[INFO] [1712351064.868951]: Properties: [SOMA.hasInitialScene, rdf-schema.comment, rdf-schema.label, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.869521]: Instances: []\n", + "[INFO] [1712351064.869876]: Direct Instances: []\n", + "[INFO] [1712351064.870281]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712351064.870617]: -------------------\n", + "[INFO] [1712351064.870936]: SOMA.Inability \n", + "[INFO] [1712351064.871253]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712351064.871607]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.Inability, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351064.871951]: Subclasses: []\n", + "[INFO] [1712351064.872323]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.872889]: Instances: []\n", + "[INFO] [1712351064.873236]: Direct Instances: []\n", + "[INFO] [1712351064.873578]: Inverse Restrictions: []\n", + "[INFO] [1712351064.873912]: -------------------\n", + "[INFO] [1712351064.874233]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712351064.874558]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712351064.874910]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.IncompatibleSoftware, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.875254]: Subclasses: []\n", + "[INFO] [1712351064.875628]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.876297]: Instances: []\n", + "[INFO] [1712351064.876717]: Direct Instances: []\n", + "[INFO] [1712351064.877281]: Inverse Restrictions: []\n", + "[INFO] [1712351064.877686]: -------------------\n", + "[INFO] [1712351064.877975]: SOMA.InductionCooktop \n", + "[INFO] [1712351064.878238]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712351064.878631]: Ancestors: {SOMA.ElectricCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.InductionCooktop, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.879007]: Subclasses: []\n", + "[INFO] [1712351064.879344]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.879849]: Instances: []\n", + "[INFO] [1712351064.880119]: Direct Instances: []\n", + "[INFO] [1712351064.880373]: Inverse Restrictions: []\n", + "[INFO] [1712351064.880616]: -------------------\n", + "[INFO] [1712351064.880867]: SOMA.InductiveReasoning \n", + "[INFO] [1712351064.881113]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712351064.881379]: Ancestors: {SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.InductiveReasoning}\n", + "[INFO] [1712351064.881625]: Subclasses: []\n", + "[INFO] [1712351064.881921]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.882408]: Instances: []\n", + "[INFO] [1712351064.882672]: Direct Instances: []\n", + "[INFO] [1712351064.882920]: Inverse Restrictions: []\n", + "[INFO] [1712351064.883155]: -------------------\n", + "[INFO] [1712351064.883393]: SOMA.Infeasibility \n", + "[INFO] [1712351064.883631]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712351064.883901]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Unsuccessfulness, SOMA.Infeasibility, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351064.884145]: Subclasses: []\n", + "[INFO] [1712351064.884422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.884897]: Instances: []\n", + "[INFO] [1712351064.885173]: Direct Instances: []\n", + "[INFO] [1712351064.885428]: Inverse Restrictions: []\n", + "[INFO] [1712351064.885665]: -------------------\n", + "[INFO] [1712351064.885902]: SOMA.InferenceRules \n", + "[INFO] [1712351064.886132]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712351064.886404]: Ancestors: {DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, SOMA.InferenceRules, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.886656]: Subclasses: []\n", + "[INFO] [1712351064.886941]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.887419]: Instances: []\n", + "[INFO] [1712351064.887690]: Direct Instances: []\n", + "[INFO] [1712351064.887944]: Inverse Restrictions: []\n", + "[INFO] [1712351064.888179]: -------------------\n", + "[INFO] [1712351064.888411]: SOMA.InformationRetrieval \n", + "[INFO] [1712351064.888647]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712351064.888912]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.InformationRetrieval}\n", + "[INFO] [1712351064.889169]: Subclasses: []\n", + "[INFO] [1712351064.889466]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.889944]: Instances: []\n", + "[INFO] [1712351064.890215]: Direct Instances: []\n", + "[INFO] [1712351064.890610]: Inverse Restrictions: []\n", + "[INFO] [1712351064.890862]: -------------------\n", + "[INFO] [1712351064.891099]: SOMA.InformationStorage \n", + "[INFO] [1712351064.891385]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712351064.891673]: Ancestors: {DUL.SocialObject, SOMA.InformationStorage, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.891931]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712351064.892220]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712351064.892720]: Instances: []\n", + "[INFO] [1712351064.892998]: Direct Instances: []\n", + "[INFO] [1712351064.893254]: Inverse Restrictions: []\n", + "[INFO] [1712351064.893488]: -------------------\n", + "[INFO] [1712351064.893718]: SOMA.StoredObject \n", + "[INFO] [1712351064.893946]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712351064.894211]: Ancestors: {SOMA.StoredObject, DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.894470]: Subclasses: []\n", + "[INFO] [1712351064.894758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.895246]: Instances: []\n", + "[INFO] [1712351064.895526]: Direct Instances: []\n", + "[INFO] [1712351064.896047]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712351064.896421]: -------------------\n", + "[INFO] [1712351064.896789]: SOMA.InsertedObject \n", + "[INFO] [1712351064.897176]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712351064.897567]: Ancestors: {SOMA.InsertedObject, DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.897954]: Subclasses: []\n", + "[INFO] [1712351064.898284]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.898784]: Instances: []\n", + "[INFO] [1712351064.899111]: Direct Instances: []\n", + "[INFO] [1712351064.899418]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712351064.899682]: -------------------\n", + "[INFO] [1712351064.899930]: SOMA.Instructions \n", + "[INFO] [1712351064.900171]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712351064.900439]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.Instructions, owl.Thing}\n", + "[INFO] [1712351064.900684]: Subclasses: []\n", + "[INFO] [1712351064.900969]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.901471]: Instances: []\n", + "[INFO] [1712351064.901738]: Direct Instances: []\n", + "[INFO] [1712351064.901990]: Inverse Restrictions: []\n", + "[INFO] [1712351064.902226]: -------------------\n", + "[INFO] [1712351064.902465]: SOMA.Interpreting \n", + "[INFO] [1712351064.902699]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351064.902972]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Interpreting}\n", + "[INFO] [1712351064.903228]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712351064.903522]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.904004]: Instances: []\n", + "[INFO] [1712351064.904272]: Direct Instances: []\n", + "[INFO] [1712351064.904531]: Inverse Restrictions: []\n", + "[INFO] [1712351064.904768]: -------------------\n", + "[INFO] [1712351064.905182]: SOMA.InterrogativeClause \n", + "[INFO] [1712351064.905484]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712351064.905787]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, SOMA.InterrogativeClause, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.906195]: Subclasses: []\n", + "[INFO] [1712351064.906586]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.907165]: Instances: []\n", + "[INFO] [1712351064.907537]: Direct Instances: []\n", + "[INFO] [1712351064.907928]: Inverse Restrictions: []\n", + "[INFO] [1712351064.908267]: -------------------\n", + "[INFO] [1712351064.908592]: SOMA.Introspecting \n", + "[INFO] [1712351064.908956]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712351064.909357]: Ancestors: {SOMA.InformationAcquisition, SOMA.Introspecting, owl.Thing}\n", + "[INFO] [1712351064.909747]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712351064.910162]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.910770]: Instances: []\n", + "[INFO] [1712351064.911077]: Direct Instances: []\n", + "[INFO] [1712351064.911350]: Inverse Restrictions: []\n", + "[INFO] [1712351064.911752]: -------------------\n", + "[INFO] [1712351064.912149]: SOMA.JamJar \n", + "[INFO] [1712351064.912534]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712351064.912992]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.JamJar, SOMA.DesignedContainer, SOMA.Jar, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.913389]: Subclasses: [SOMA.RaspberryJamJar]\n", + "[INFO] [1712351064.913867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.914669]: Instances: []\n", + "[INFO] [1712351064.915057]: Direct Instances: []\n", + "[INFO] [1712351064.915442]: Inverse Restrictions: []\n", + "[INFO] [1712351064.915812]: -------------------\n", + "[INFO] [1712351064.916182]: SOMA.Jar \n", + "[INFO] [1712351064.916554]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712351064.916879]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Jar, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.917146]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", + "[INFO] [1712351064.917435]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.917933]: Instances: []\n", + "[INFO] [1712351064.918196]: Direct Instances: []\n", + "[INFO] [1712351064.918448]: Inverse Restrictions: []\n", + "[INFO] [1712351064.918691]: -------------------\n", + "[INFO] [1712351064.918933]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712351064.919164]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712351064.919428]: Ancestors: {SOMA.KineticFrictionAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", + "[INFO] [1712351064.919671]: Subclasses: []\n", + "[INFO] [1712351064.919954]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.920455]: Instances: []\n", + "[INFO] [1712351064.920745]: Direct Instances: []\n", + "[INFO] [1712351064.921002]: Inverse Restrictions: []\n", + "[INFO] [1712351064.921237]: -------------------\n", + "[INFO] [1712351064.921470]: SOMA.KinoDynamicData \n", + "[INFO] [1712351064.921712]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351064.921984]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.KinoDynamicData, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351064.922239]: Subclasses: []\n", + "[INFO] [1712351064.922529]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.923013]: Instances: []\n", + "[INFO] [1712351064.923282]: Direct Instances: []\n", + "[INFO] [1712351064.923532]: Inverse Restrictions: []\n", + "[INFO] [1712351064.923768]: -------------------\n", + "[INFO] [1712351064.924001]: SOMA.Kitchen \n", + "[INFO] [1712351064.924251]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712351064.924529]: Ancestors: {DUL.PhysicalPlace, DUL.Object, SOMA.Room, DUL.Entity, SOMA.Kitchen, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.924785]: Subclasses: []\n", + "[INFO] [1712351064.925073]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351064.925570]: Instances: []\n", + "[INFO] [1712351064.925835]: Direct Instances: []\n", + "[INFO] [1712351064.926087]: Inverse Restrictions: []\n", + "[INFO] [1712351064.926322]: -------------------\n", + "[INFO] [1712351064.926552]: SOMA.Room \n", + "[INFO] [1712351064.926780]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712351064.927032]: Ancestors: {DUL.PhysicalPlace, DUL.Object, SOMA.Room, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.927282]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712351064.927569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.928051]: Instances: []\n", + "[INFO] [1712351064.928321]: Direct Instances: []\n", + "[INFO] [1712351064.928576]: Inverse Restrictions: []\n", + "[INFO] [1712351064.928816]: -------------------\n", + "[INFO] [1712351064.929049]: SOMA.KitchenCabinet \n", + "[INFO] [1712351064.929284]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712351064.929551]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, SOMA.Cupboard, SOMA.DesignedContainer, SOMA.KitchenCabinet, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.929812]: Subclasses: []\n", + "[INFO] [1712351064.930104]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.930586]: Instances: []\n", + "[INFO] [1712351064.930838]: Direct Instances: []\n", + "[INFO] [1712351064.931081]: Inverse Restrictions: []\n", + "[INFO] [1712351064.931314]: -------------------\n", + "[INFO] [1712351064.931561]: SOMA.Knife \n", + "[INFO] [1712351064.931803]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712351064.932052]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedTool, SOMA.Knife, DUL.Object, SOMA.CuttingTool, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.932300]: Subclasses: [SOMA.KitchenKnife]\n", + "[INFO] [1712351064.932586]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.933109]: Instances: []\n", + "[INFO] [1712351064.933383]: Direct Instances: []\n", + "[INFO] [1712351064.933644]: Inverse Restrictions: []\n", + "[INFO] [1712351064.933887]: -------------------\n", + "[INFO] [1712351064.934125]: SOMA.KitchenUnit \n", + "[INFO] [1712351064.934361]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712351064.934638]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, SOMA.KitchenUnit, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.934893]: Subclasses: []\n", + "[INFO] [1712351064.935181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.935662]: Instances: []\n", + "[INFO] [1712351064.935922]: Direct Instances: []\n", + "[INFO] [1712351064.936176]: Inverse Restrictions: []\n", + "[INFO] [1712351064.936412]: -------------------\n", + "[INFO] [1712351064.936645]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712351064.936880]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351064.937140]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.KnowledgeRepresentationLanguage, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.937409]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712351064.937708]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.938208]: Instances: []\n", + "[INFO] [1712351064.938467]: Direct Instances: []\n", + "[INFO] [1712351064.938731]: Inverse Restrictions: []\n", + "[INFO] [1712351064.938974]: -------------------\n", + "[INFO] [1712351064.939211]: SOMA.Labeling \n", + "[INFO] [1712351064.939445]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712351064.939699]: Ancestors: {SOMA.Labeling, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Interpreting, owl.Thing}\n", + "[INFO] [1712351064.939955]: Subclasses: []\n", + "[INFO] [1712351064.940243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351064.940731]: Instances: []\n", + "[INFO] [1712351064.941196]: Direct Instances: []\n", + "[INFO] [1712351064.941614]: Inverse Restrictions: []\n", + "[INFO] [1712351064.941998]: -------------------\n", + "[INFO] [1712351064.942369]: SOMA.Text \n", + "[INFO] [1712351064.942739]: Super classes: [owl.Thing]\n", + "[INFO] [1712351064.945050]: Ancestors: {SOMA.Text, owl.Thing}\n", + "[INFO] [1712351064.945451]: Subclasses: []\n", + "[INFO] [1712351064.945897]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.946517]: Instances: []\n", + "[INFO] [1712351064.946818]: Direct Instances: []\n", + "[INFO] [1712351064.947920]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712351064.948277]: -------------------\n", + "[INFO] [1712351064.948643]: SOMA.Leaning \n", + "[INFO] [1712351064.948924]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712351064.949225]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Leaning, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", + "[INFO] [1712351064.949484]: Subclasses: []\n", + "[INFO] [1712351064.949779]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.950262]: Instances: []\n", + "[INFO] [1712351064.950540]: Direct Instances: []\n", + "[INFO] [1712351064.950801]: Inverse Restrictions: []\n", + "[INFO] [1712351064.951043]: -------------------\n", + "[INFO] [1712351064.951279]: SOMA.PosturalMoving \n", + "[INFO] [1712351064.951512]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712351064.951752]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", + "[INFO] [1712351064.952015]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712351064.952309]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.952809]: Instances: []\n", + "[INFO] [1712351064.953079]: Direct Instances: []\n", + "[INFO] [1712351064.953341]: Inverse Restrictions: []\n", + "[INFO] [1712351064.953578]: -------------------\n", + "[INFO] [1712351064.953807]: SOMA.Learning \n", + "[INFO] [1712351064.954039]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712351064.954308]: Ancestors: {SOMA.Learning, DUL.SocialObject, SOMA.InformationStorage, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.954560]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712351064.954842]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.955329]: Instances: []\n", + "[INFO] [1712351064.955603]: Direct Instances: []\n", + "[INFO] [1712351064.956063]: Inverse Restrictions: []\n", + "[INFO] [1712351064.956349]: -------------------\n", + "[INFO] [1712351064.956602]: SOMA.Leg \n", + "[INFO] [1712351064.956865]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712351064.957157]: Ancestors: {SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712351064.957452]: Subclasses: []\n", + "[INFO] [1712351064.957805]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.958354]: Instances: []\n", + "[INFO] [1712351064.958650]: Direct Instances: []\n", + "[INFO] [1712351064.958987]: Inverse Restrictions: []\n", + "[INFO] [1712351064.959280]: -------------------\n", + "[INFO] [1712351064.959557]: SOMA.Lid \n", + "[INFO] [1712351064.959821]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351064.960114]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.Lid, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351064.960378]: Subclasses: []\n", + "[INFO] [1712351064.960690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.961212]: Instances: []\n", + "[INFO] [1712351064.961481]: Direct Instances: []\n", + "[INFO] [1712351064.961723]: Inverse Restrictions: []\n", + "[INFO] [1712351064.961951]: -------------------\n", + "[INFO] [1712351064.962180]: SOMA.LimbMotion \n", + "[INFO] [1712351064.962828]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712351064.963118]: Ancestors: {SOMA.LimbMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.963380]: Subclasses: []\n", + "[INFO] [1712351064.963691]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.964177]: Instances: []\n", + "[INFO] [1712351064.964443]: Direct Instances: []\n", + "[INFO] [1712351064.964697]: Inverse Restrictions: []\n", + "[INFO] [1712351064.964944]: -------------------\n", + "[INFO] [1712351064.965186]: SOMA.LinkedObject \n", + "[INFO] [1712351064.965423]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712351064.965682]: Ancestors: {SOMA.LinkedObject, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.965948]: Subclasses: []\n", + "[INFO] [1712351064.966244]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.966731]: Instances: []\n", + "[INFO] [1712351064.966985]: Direct Instances: []\n", + "[INFO] [1712351064.967334]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712351064.967593]: -------------------\n", + "[INFO] [1712351064.967843]: SOMA.LinkageState \n", + "[INFO] [1712351064.968091]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712351064.968353]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, SOMA.LinkageState, owl.Thing}\n", + "[INFO] [1712351064.968602]: Subclasses: []\n", + "[INFO] [1712351064.968944]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.969588]: Instances: []\n", + "[INFO] [1712351064.969908]: Direct Instances: []\n", + "[INFO] [1712351064.970191]: Inverse Restrictions: []\n", + "[INFO] [1712351064.970450]: -------------------\n", + "[INFO] [1712351064.970697]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712351064.970939]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351064.971198]: Ancestors: {DUL.SocialObject, SOMA.SpatioTemporalRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351064.971463]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712351064.971760]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.972265]: Instances: []\n", + "[INFO] [1712351064.972537]: Direct Instances: []\n", + "[INFO] [1712351064.972803]: Inverse Restrictions: []\n", + "[INFO] [1712351064.973050]: -------------------\n", + "[INFO] [1712351064.973288]: SOMA.SpatialRelationRole \n", + "[INFO] [1712351064.973526]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712351064.973773]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.SpatialRelationRole, owl.Thing}\n", + "[INFO] [1712351064.974036]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712351064.974334]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.974821]: Instances: []\n", + "[INFO] [1712351064.975076]: Direct Instances: []\n", + "[INFO] [1712351064.975330]: Inverse Restrictions: []\n", + "[INFO] [1712351064.975580]: -------------------\n", + "[INFO] [1712351064.975819]: SOMA.LocutionaryAction \n", + "[INFO] [1712351064.976054]: Super classes: [owl.Thing]\n", + "[INFO] [1712351064.977260]: Ancestors: {owl.Thing, SOMA.LocutionaryAction}\n", + "[INFO] [1712351064.977558]: Subclasses: []\n", + "[INFO] [1712351064.978064]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.978693]: Instances: []\n", + "[INFO] [1712351064.979102]: Direct Instances: []\n", + "[INFO] [1712351064.979489]: Inverse Restrictions: []\n", + "[INFO] [1712351064.979854]: -------------------\n", + "[INFO] [1712351064.980228]: SOMA.LookingAt \n", + "[INFO] [1712351064.980590]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351064.981000]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.LookingAt, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.981330]: Subclasses: []\n", + "[INFO] [1712351064.981669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.982173]: Instances: []\n", + "[INFO] [1712351064.982442]: Direct Instances: []\n", + "[INFO] [1712351064.982695]: Inverse Restrictions: []\n", + "[INFO] [1712351064.982938]: -------------------\n", + "[INFO] [1712351064.983189]: SOMA.LookingFor \n", + "[INFO] [1712351064.983441]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712351064.983703]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.LookingFor}\n", + "[INFO] [1712351064.983949]: Subclasses: []\n", + "[INFO] [1712351064.984247]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.984729]: Instances: []\n", + "[INFO] [1712351064.984991]: Direct Instances: []\n", + "[INFO] [1712351064.985238]: Inverse Restrictions: []\n", + "[INFO] [1712351064.985472]: -------------------\n", + "[INFO] [1712351064.985709]: SOMA.Lowering \n", + "[INFO] [1712351064.985958]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351064.986230]: Ancestors: {DUL.SocialObject, SOMA.Lowering, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351064.986478]: Subclasses: []\n", + "[INFO] [1712351064.986767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.987265]: Instances: []\n", + "[INFO] [1712351064.987529]: Direct Instances: []\n", + "[INFO] [1712351064.987778]: Inverse Restrictions: []\n", + "[INFO] [1712351064.988012]: -------------------\n", + "[INFO] [1712351064.988241]: SOMA.PhysicalAction \n", + "[INFO] [1712351064.988489]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712351064.988756]: Ancestors: {SOMA.PhysicalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712351064.989008]: Subclasses: []\n", + "[INFO] [1712351064.989295]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.989787]: Instances: []\n", + "[INFO] [1712351064.990050]: Direct Instances: []\n", + "[INFO] [1712351064.990341]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351064.990584]: -------------------\n", + "[INFO] [1712351064.990822]: SOMA.Markup_Language \n", + "[INFO] [1712351064.991060]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351064.991338]: Ancestors: {SOMA.Language, SOMA.System, SOMA.Markup_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351064.991589]: Subclasses: []\n", + "[INFO] [1712351064.991876]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.992360]: Instances: []\n", + "[INFO] [1712351064.992630]: Direct Instances: []\n", + "[INFO] [1712351064.992889]: Inverse Restrictions: []\n", + "[INFO] [1712351064.993133]: -------------------\n", + "[INFO] [1712351064.993371]: SOMA.Masterful \n", + "[INFO] [1712351064.993607]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712351064.993875]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, owl.Thing, DUL.Object, DUL.Entity, SOMA.Masterful, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351064.994145]: Subclasses: []\n", + "[INFO] [1712351064.994440]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.994927]: Instances: []\n", + "[INFO] [1712351064.995181]: Direct Instances: []\n", + "[INFO] [1712351064.995430]: Inverse Restrictions: []\n", + "[INFO] [1712351064.995673]: -------------------\n", + "[INFO] [1712351064.995922]: SOMA.Material \n", + "[INFO] [1712351064.996161]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351064.996433]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Material, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351064.996705]: Subclasses: []\n", + "[INFO] [1712351064.997097]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351064.997631]: Instances: []\n", + "[INFO] [1712351064.997921]: Direct Instances: []\n", + "[INFO] [1712351064.998186]: Inverse Restrictions: []\n", + "[INFO] [1712351064.998436]: -------------------\n", + "[INFO] [1712351064.998692]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712351064.998961]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712351064.999239]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Entity, SOMA.MedicalDiagnosis, owl.Thing}\n", + "[INFO] [1712351064.999499]: Subclasses: []\n", + "[INFO] [1712351064.999810]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.000318]: Instances: []\n", + "[INFO] [1712351065.000585]: Direct Instances: []\n", + "[INFO] [1712351065.000840]: Inverse Restrictions: []\n", + "[INFO] [1712351065.001083]: -------------------\n", + "[INFO] [1712351065.001322]: SOMA.Memorizing \n", + "[INFO] [1712351065.001560]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712351065.001842]: Ancestors: {SOMA.Learning, DUL.SocialObject, SOMA.InformationStorage, DUL.Object, SOMA.Memorizing, DUL.Entity, DUL.Concept, DUL.Task, SOMA.MentalTask, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.002100]: Subclasses: []\n", + "[INFO] [1712351065.002395]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.002899]: Instances: []\n", + "[INFO] [1712351065.003167]: Direct Instances: []\n", + "[INFO] [1712351065.003419]: Inverse Restrictions: []\n", + "[INFO] [1712351065.003664]: -------------------\n", + "[INFO] [1712351065.003902]: SOMA.MentalAction \n", + "[INFO] [1712351065.004556]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712351065.004853]: Ancestors: {SOMA.MentalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712351065.005117]: Subclasses: []\n", + "[INFO] [1712351065.005413]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.005903]: Instances: []\n", + "[INFO] [1712351065.006176]: Direct Instances: []\n", + "[INFO] [1712351065.006476]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712351065.006727]: -------------------\n", + "[INFO] [1712351065.006968]: SOMA.MeshShape \n", + "[INFO] [1712351065.007245]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712351065.007535]: Ancestors: {SOMA.MeshShape, DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.007794]: Subclasses: []\n", + "[INFO] [1712351065.008093]: Properties: [rdf-schema.label, SOMA.hasFilePath, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.008598]: Instances: []\n", + "[INFO] [1712351065.008909]: Direct Instances: []\n", + "[INFO] [1712351065.009276]: Inverse Restrictions: []\n", + "[INFO] [1712351065.009564]: -------------------\n", + "[INFO] [1712351065.009863]: SOMA.MeshShapeData \n", + "[INFO] [1712351065.010138]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351065.010492]: Ancestors: {DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing, SOMA.MeshShapeData}\n", + "[INFO] [1712351065.010771]: Subclasses: []\n", + "[INFO] [1712351065.011081]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.011593]: Instances: []\n", + "[INFO] [1712351065.011870]: Direct Instances: []\n", + "[INFO] [1712351065.012132]: Inverse Restrictions: []\n", + "[INFO] [1712351065.012378]: -------------------\n", + "[INFO] [1712351065.012616]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712351065.012863]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712351065.013178]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.MetaCognitionEvaluationTopic, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.013445]: Subclasses: []\n", + "[INFO] [1712351065.013743]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.014230]: Instances: []\n", + "[INFO] [1712351065.014501]: Direct Instances: []\n", + "[INFO] [1712351065.014760]: Inverse Restrictions: []\n", + "[INFO] [1712351065.015006]: -------------------\n", + "[INFO] [1712351065.015260]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712351065.015516]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351065.015802]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.016088]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712351065.016425]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.017015]: Instances: []\n", + "[INFO] [1712351065.017334]: Direct Instances: []\n", + "[INFO] [1712351065.017633]: Inverse Restrictions: []\n", + "[INFO] [1712351065.017900]: -------------------\n", + "[INFO] [1712351065.018162]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712351065.018420]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712351065.018713]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.MetaCognitionMemoryTopic, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.018992]: Subclasses: []\n", + "[INFO] [1712351065.019304]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.019804]: Instances: []\n", + "[INFO] [1712351065.020061]: Direct Instances: []\n", + "[INFO] [1712351065.020322]: Inverse Restrictions: []\n", + "[INFO] [1712351065.020564]: -------------------\n", + "[INFO] [1712351065.020800]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712351065.021038]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712351065.021298]: Ancestors: {SOMA.MetaCognitionPlanningTopic, DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.021561]: Subclasses: []\n", + "[INFO] [1712351065.021857]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.022339]: Instances: []\n", + "[INFO] [1712351065.022615]: Direct Instances: []\n", + "[INFO] [1712351065.022873]: Inverse Restrictions: []\n", + "[INFO] [1712351065.023113]: -------------------\n", + "[INFO] [1712351065.023347]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712351065.023575]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712351065.023829]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.024097]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712351065.024392]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.024902]: Instances: []\n", + "[INFO] [1712351065.025181]: Direct Instances: []\n", + "[INFO] [1712351065.025449]: Inverse Restrictions: []\n", + "[INFO] [1712351065.025692]: -------------------\n", + "[INFO] [1712351065.025933]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712351065.026171]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712351065.026442]: Ancestors: {SOMA.MetacognitiveControlling, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.026704]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712351065.026994]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.027481]: Instances: []\n", + "[INFO] [1712351065.027752]: Direct Instances: []\n", + "[INFO] [1712351065.028013]: Inverse Restrictions: []\n", + "[INFO] [1712351065.028252]: -------------------\n", + "[INFO] [1712351065.028489]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712351065.028719]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712351065.028983]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, owl.Thing, SOMA.Introspecting}\n", + "[INFO] [1712351065.029248]: Subclasses: []\n", + "[INFO] [1712351065.029541]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.030028]: Instances: []\n", + "[INFO] [1712351065.030288]: Direct Instances: []\n", + "[INFO] [1712351065.030528]: Inverse Restrictions: []\n", + "[INFO] [1712351065.030765]: -------------------\n", + "[INFO] [1712351065.031011]: SOMA.MilkBottle \n", + "[INFO] [1712351065.031248]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712351065.031509]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bottle, DUL.Entity, SOMA.DesignedContainer, SOMA.MilkBottle, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.031751]: Subclasses: []\n", + "[INFO] [1712351065.032042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.032528]: Instances: []\n", + "[INFO] [1712351065.032784]: Direct Instances: []\n", + "[INFO] [1712351065.033028]: Inverse Restrictions: []\n", + "[INFO] [1712351065.033260]: -------------------\n", + "[INFO] [1712351065.033499]: SOMA.MilkPack \n", + "[INFO] [1712351065.033731]: Super classes: [SOMA.Pack]\n", + "[INFO] [1712351065.033997]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.MilkPack, DUL.Entity, SOMA.Pack, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.034240]: Subclasses: []\n", + "[INFO] [1712351065.034532]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.035013]: Instances: []\n", + "[INFO] [1712351065.035264]: Direct Instances: []\n", + "[INFO] [1712351065.035502]: Inverse Restrictions: []\n", + "[INFO] [1712351065.035744]: -------------------\n", + "[INFO] [1712351065.035976]: SOMA.Pack \n", + "[INFO] [1712351065.036203]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712351065.036439]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Pack, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.036693]: Subclasses: [SOMA.MilkPack]\n", + "[INFO] [1712351065.037156]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.037802]: Instances: []\n", + "[INFO] [1712351065.038197]: Direct Instances: []\n", + "[INFO] [1712351065.038599]: Inverse Restrictions: []\n", + "[INFO] [1712351065.038979]: -------------------\n", + "[INFO] [1712351065.039265]: SOMA.Mixing \n", + "[INFO] [1712351065.039523]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712351065.039797]: Ancestors: {SOMA.Constructing, DUL.SocialObject, SOMA.Mixing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.040051]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712351065.040338]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.040828]: Instances: []\n", + "[INFO] [1712351065.041104]: Direct Instances: []\n", + "[INFO] [1712351065.041367]: Inverse Restrictions: []\n", + "[INFO] [1712351065.041607]: -------------------\n", + "[INFO] [1712351065.041843]: SOMA.MixingTheory \n", + "[INFO] [1712351065.042085]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712351065.042357]: Ancestors: {DUL.Description, SOMA.MixingTheory, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.042606]: Subclasses: []\n", + "[INFO] [1712351065.042899]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351065.043387]: Instances: []\n", + "[INFO] [1712351065.043655]: Direct Instances: []\n", + "[INFO] [1712351065.043906]: Inverse Restrictions: []\n", + "[INFO] [1712351065.044141]: -------------------\n", + "[INFO] [1712351065.044376]: SOMA.MonitoringJointState \n", + "[INFO] [1712351065.044602]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712351065.044878]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, owl.Thing, SOMA.Proprioceiving}\n", + "[INFO] [1712351065.045134]: Subclasses: []\n", + "[INFO] [1712351065.045420]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.045909]: Instances: []\n", + "[INFO] [1712351065.046186]: Direct Instances: []\n", + "[INFO] [1712351065.046481]: Inverse Restrictions: []\n", + "[INFO] [1712351065.046725]: -------------------\n", + "[INFO] [1712351065.046968]: SOMA.Proprioceiving \n", + "[INFO] [1712351065.047208]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351065.047653]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Proprioceiving}\n", + "[INFO] [1712351065.048083]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712351065.048545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.049266]: Instances: []\n", + "[INFO] [1712351065.049615]: Direct Instances: []\n", + "[INFO] [1712351065.049902]: Inverse Restrictions: []\n", + "[INFO] [1712351065.050164]: -------------------\n", + "[INFO] [1712351065.050413]: SOMA.MovingAway \n", + "[INFO] [1712351065.050656]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351065.050943]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, SOMA.MovingAway, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.051199]: Subclasses: []\n", + "[INFO] [1712351065.051492]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.051971]: Instances: []\n", + "[INFO] [1712351065.052246]: Direct Instances: []\n", + "[INFO] [1712351065.052501]: Inverse Restrictions: []\n", + "[INFO] [1712351065.052741]: -------------------\n", + "[INFO] [1712351065.052983]: SOMA.MovingTo \n", + "[INFO] [1712351065.053216]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712351065.053483]: Ancestors: {DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.MovingTo, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.053736]: Subclasses: []\n", + "[INFO] [1712351065.054023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.054498]: Instances: []\n", + "[INFO] [1712351065.054747]: Direct Instances: []\n", + "[INFO] [1712351065.054993]: Inverse Restrictions: []\n", + "[INFO] [1712351065.055236]: -------------------\n", + "[INFO] [1712351065.055469]: SOMA.Natural_Language \n", + "[INFO] [1712351065.055722]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712351065.055986]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.Natural_Language, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.056249]: Subclasses: []\n", + "[INFO] [1712351065.056545]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.057036]: Instances: []\n", + "[INFO] [1712351065.057298]: Direct Instances: []\n", + "[INFO] [1712351065.057608]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712351065.057870]: -------------------\n", + "[INFO] [1712351065.058115]: SOMA.Natural_Language_Text \n", + "[INFO] [1712351065.058347]: Super classes: [owl.Thing]\n", + "[INFO] [1712351065.058827]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", + "[INFO] [1712351065.059100]: Subclasses: []\n", + "[INFO] [1712351065.059409]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.059899]: Instances: []\n", + "[INFO] [1712351065.060163]: Direct Instances: []\n", + "[INFO] [1712351065.060452]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712351065.060711]: -------------------\n", + "[INFO] [1712351065.060971]: SOMA.NutellaJar \n", + "[INFO] [1712351065.061220]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712351065.061486]: Ancestors: {SOMA.NutellaJar, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Jar, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.061738]: Subclasses: []\n", + "[INFO] [1712351065.062030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.062514]: Instances: []\n", + "[INFO] [1712351065.062778]: Direct Instances: []\n", + "[INFO] [1712351065.063053]: Inverse Restrictions: []\n", + "[INFO] [1712351065.063316]: -------------------\n", + "[INFO] [1712351065.063561]: SOMA.Ontology \n", + "[INFO] [1712351065.063799]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712351065.065007]: Ancestors: {SOMA.Ontology, owl.Thing, SOMA.Structured_Text}\n", + "[INFO] [1712351065.065296]: Subclasses: []\n", + "[INFO] [1712351065.065622]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.066132]: Instances: []\n", + "[INFO] [1712351065.066400]: Direct Instances: []\n", + "[INFO] [1712351065.066717]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712351065.066970]: -------------------\n", + "[INFO] [1712351065.067209]: SOMA.Ontology_Language \n", + "[INFO] [1712351065.067450]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712351065.067720]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.KnowledgeRepresentationLanguage, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.Ontology_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351065.067983]: Subclasses: []\n", + "[INFO] [1712351065.068287]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.068779]: Instances: []\n", + "[INFO] [1712351065.069041]: Direct Instances: []\n", + "[INFO] [1712351065.069344]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712351065.069604]: -------------------\n", + "[INFO] [1712351065.069846]: SOMA.Option \n", + "[INFO] [1712351065.070079]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712351065.070345]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Option, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.070603]: Subclasses: []\n", + "[INFO] [1712351065.070895]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.071380]: Instances: []\n", + "[INFO] [1712351065.071632]: Direct Instances: []\n", + "[INFO] [1712351065.071875]: Inverse Restrictions: []\n", + "[INFO] [1712351065.072119]: -------------------\n", + "[INFO] [1712351065.072356]: SOMA.Singleton \n", + "[INFO] [1712351065.072590]: Super classes: [owl.Thing]\n", + "[INFO] [1712351065.072828]: Ancestors: {owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712351065.073077]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712351065.073386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", + "[INFO] [1712351065.073883]: Instances: []\n", + "[INFO] [1712351065.074142]: Direct Instances: []\n", + "[INFO] [1712351065.074397]: Inverse Restrictions: []\n", + "[INFO] [1712351065.074650]: -------------------\n", + "[INFO] [1712351065.074891]: SOMA.Orienting \n", + "[INFO] [1712351065.075126]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712351065.075399]: Ancestors: {SOMA.Orienting, DUL.SocialObject, SOMA.Positioning, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.075664]: Subclasses: []\n", + "[INFO] [1712351065.075960]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.076449]: Instances: []\n", + "[INFO] [1712351065.076719]: Direct Instances: []\n", + "[INFO] [1712351065.076976]: Inverse Restrictions: []\n", + "[INFO] [1712351065.077216]: -------------------\n", + "[INFO] [1712351065.077655]: SOMA.Positioning \n", + "[INFO] [1712351065.078052]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351065.078328]: Ancestors: {DUL.SocialObject, SOMA.Positioning, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.078658]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712351065.078976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.079479]: Instances: []\n", + "[INFO] [1712351065.079792]: Direct Instances: []\n", + "[INFO] [1712351065.080072]: Inverse Restrictions: []\n", + "[INFO] [1712351065.080326]: -------------------\n", + "[INFO] [1712351065.080568]: SOMA.Origin \n", + "[INFO] [1712351065.080811]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712351065.081084]: Ancestors: {SOMA.Origin, SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.081349]: Subclasses: []\n", + "[INFO] [1712351065.081644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.082127]: Instances: []\n", + "[INFO] [1712351065.082380]: Direct Instances: []\n", + "[INFO] [1712351065.082662]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712351065.082922]: -------------------\n", + "[INFO] [1712351065.083168]: SOMA.Oven \n", + "[INFO] [1712351065.083423]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", + "[INFO] [1712351065.083693]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Oven, DUL.Entity, SOMA.DesignedContainer, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.083942]: Subclasses: []\n", + "[INFO] [1712351065.084229]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.084727]: Instances: []\n", + "[INFO] [1712351065.085036]: Direct Instances: []\n", + "[INFO] [1712351065.085320]: Inverse Restrictions: []\n", + "[INFO] [1712351065.085577]: -------------------\n", + "[INFO] [1712351065.085835]: SOMA.TemperingByHeating \n", + "[INFO] [1712351065.086089]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712351065.086375]: Ancestors: {SOMA.Extrinsic, SOMA.TemperingByHeating, SOMA.Variability, SOMA.Tempering, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.086650]: Subclasses: []\n", + "[INFO] [1712351065.086943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.087443]: Instances: []\n", + "[INFO] [1712351065.087710]: Direct Instances: []\n", + "[INFO] [1712351065.087985]: Inverse Restrictions: [SOMA.Oven]\n", + "[INFO] [1712351065.088228]: -------------------\n", + "[INFO] [1712351065.088469]: SOMA.Pan \n", + "[INFO] [1712351065.088722]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712351065.089005]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, owl.Thing, SOMA.Pan, SOMA.Crockery}\n", + "[INFO] [1712351065.089258]: Subclasses: []\n", + "[INFO] [1712351065.089547]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.090031]: Instances: []\n", + "[INFO] [1712351065.090303]: Direct Instances: []\n", + "[INFO] [1712351065.090563]: Inverse Restrictions: []\n", + "[INFO] [1712351065.090805]: -------------------\n", + "[INFO] [1712351065.091042]: SOMA.Pancake \n", + "[INFO] [1712351065.091274]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712351065.091542]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, DUL.PhysicalObject, SOMA.Pancake, SOMA.BakedGood, owl.Thing, SOMA.Dish}\n", + "[INFO] [1712351065.091799]: Subclasses: []\n", + "[INFO] [1712351065.092087]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.092568]: Instances: []\n", + "[INFO] [1712351065.092841]: Direct Instances: []\n", + "[INFO] [1712351065.093102]: Inverse Restrictions: []\n", + "[INFO] [1712351065.093343]: -------------------\n", + "[INFO] [1712351065.093582]: SOMA.PancakeMix \n", + "[INFO] [1712351065.093812]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712351065.094082]: Ancestors: {DUL.DesignedArtifact, SOMA.PancakeMix, DUL.Substance, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, DUL.DesignedSubstance, DUL.PhysicalBody, DUL.FunctionalSubstance, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.094344]: Subclasses: []\n", + "[INFO] [1712351065.094645]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.095137]: Instances: []\n", + "[INFO] [1712351065.095393]: Direct Instances: []\n", + "[INFO] [1712351065.095651]: Inverse Restrictions: []\n", + "[INFO] [1712351065.095901]: -------------------\n", + "[INFO] [1712351065.096139]: SOMA.ParkingArms \n", + "[INFO] [1712351065.096369]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712351065.096643]: Ancestors: {DUL.SocialObject, SOMA.ParkingArms, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.AssumingArmPose, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.096908]: Subclasses: []\n", + "[INFO] [1712351065.097212]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.097714]: Instances: []\n", + "[INFO] [1712351065.097974]: Direct Instances: []\n", + "[INFO] [1712351065.098222]: Inverse Restrictions: []\n", + "[INFO] [1712351065.098469]: -------------------\n", + "[INFO] [1712351065.098706]: SOMA.PastaBowl \n", + "[INFO] [1712351065.098939]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712351065.099203]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, SOMA.PastaBowl, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Bowl, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351065.099448]: Subclasses: []\n", + "[INFO] [1712351065.099751]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.100297]: Instances: []\n", + "[INFO] [1712351065.100582]: Direct Instances: []\n", + "[INFO] [1712351065.100853]: Inverse Restrictions: []\n", + "[INFO] [1712351065.101104]: -------------------\n", + "[INFO] [1712351065.101352]: SOMA.PepperShaker \n", + "[INFO] [1712351065.101605]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712351065.101886]: Ancestors: {SOMA.Shaker, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.PepperShaker, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.102137]: Subclasses: []\n", + "[INFO] [1712351065.102420]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.102913]: Instances: []\n", + "[INFO] [1712351065.103187]: Direct Instances: []\n", + "[INFO] [1712351065.103434]: Inverse Restrictions: []\n", + "[INFO] [1712351065.103667]: -------------------\n", + "[INFO] [1712351065.103899]: SOMA.Shaker \n", + "[INFO] [1712351065.104129]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712351065.104386]: Ancestors: {SOMA.Shaker, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.104640]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", + "[INFO] [1712351065.104933]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.105419]: Instances: []\n", + "[INFO] [1712351065.105693]: Direct Instances: []\n", + "[INFO] [1712351065.105945]: Inverse Restrictions: []\n", + "[INFO] [1712351065.106182]: -------------------\n", + "[INFO] [1712351065.106420]: SOMA.PhaseTransition \n", + "[INFO] [1712351065.106650]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712351065.106891]: Ancestors: {SOMA.Alteration, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.107151]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712351065.107445]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment]\n", + "[INFO] [1712351065.107932]: Instances: []\n", + "[INFO] [1712351065.108197]: Direct Instances: []\n", + "[INFO] [1712351065.108454]: Inverse Restrictions: []\n", + "[INFO] [1712351065.108692]: -------------------\n", + "[INFO] [1712351065.108932]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712351065.109178]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712351065.109452]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, SOMA.PhysicalAccessibility, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.109699]: Subclasses: []\n", + "[INFO] [1712351065.109991]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.110480]: Instances: []\n", + "[INFO] [1712351065.110752]: Direct Instances: []\n", + "[INFO] [1712351065.111005]: Inverse Restrictions: []\n", + "[INFO] [1712351065.111245]: -------------------\n", + "[INFO] [1712351065.111480]: SOMA.PhysicalBlockage \n", + "[INFO] [1712351065.111716]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712351065.111989]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, SOMA.PhysicalBlockage, DUL.Concept, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.112241]: Subclasses: []\n", + "[INFO] [1712351065.112534]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.113018]: Instances: []\n", + "[INFO] [1712351065.113290]: Direct Instances: []\n", + "[INFO] [1712351065.113549]: Inverse Restrictions: []\n", + "[INFO] [1712351065.113789]: -------------------\n", + "[INFO] [1712351065.114023]: SOMA.PhysicalExistence \n", + "[INFO] [1712351065.114255]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712351065.114516]: Ancestors: {SOMA.State, DUL.Entity, SOMA.PhysicalExistence, SOMA.PhysicalState, DUL.Event, owl.Thing}\n", + "[INFO] [1712351065.114777]: Subclasses: []\n", + "[INFO] [1712351065.115073]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.115566]: Instances: []\n", + "[INFO] [1712351065.115832]: Direct Instances: []\n", + "[INFO] [1712351065.116080]: Inverse Restrictions: []\n", + "[INFO] [1712351065.116328]: -------------------\n", + "[INFO] [1712351065.116568]: SOMA.PhysicalState \n", + "[INFO] [1712351065.116809]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712351065.117054]: Ancestors: {SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event, owl.Thing}\n", + "[INFO] [1712351065.117298]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712351065.117600]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.118089]: Instances: []\n", + "[INFO] [1712351065.118350]: Direct Instances: []\n", + "[INFO] [1712351065.118606]: Inverse Restrictions: []\n", + "[INFO] [1712351065.118852]: -------------------\n", + "[INFO] [1712351065.119092]: SOMA.PhysicsProcess \n", + "[INFO] [1712351065.119328]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712351065.119584]: Ancestors: {SOMA.PhysicsProcess, DUL.Entity, DUL.Event, owl.Thing, DUL.Process}\n", + "[INFO] [1712351065.119842]: Subclasses: []\n", + "[INFO] [1712351065.120136]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.120621]: Instances: []\n", + "[INFO] [1712351065.120878]: Direct Instances: []\n", + "[INFO] [1712351065.121125]: Inverse Restrictions: []\n", + "[INFO] [1712351065.121372]: -------------------\n", + "[INFO] [1712351065.121612]: SOMA.PlacingTheory \n", + "[INFO] [1712351065.121855]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712351065.122114]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.PlacingTheory, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.122370]: Subclasses: []\n", + "[INFO] [1712351065.122668]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351065.123146]: Instances: []\n", + "[INFO] [1712351065.123402]: Direct Instances: []\n", + "[INFO] [1712351065.123658]: Inverse Restrictions: []\n", + "[INFO] [1712351065.123897]: -------------------\n", + "[INFO] [1712351065.124135]: SOMA.PlanarJoint \n", + "[INFO] [1712351065.124375]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712351065.124633]: Ancestors: {SOMA.MovableJoint, SOMA.PlanarJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.124935]: Subclasses: []\n", + "[INFO] [1712351065.125368]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.125891]: Instances: []\n", + "[INFO] [1712351065.126165]: Direct Instances: []\n", + "[INFO] [1712351065.126423]: Inverse Restrictions: []\n", + "[INFO] [1712351065.126683]: -------------------\n", + "[INFO] [1712351065.126930]: SOMA.PluginRole \n", + "[INFO] [1712351065.127177]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712351065.127441]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, SOMA.PluginRole, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351065.127682]: Subclasses: []\n", + "[INFO] [1712351065.127982]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", + "[INFO] [1712351065.128461]: Instances: []\n", + "[INFO] [1712351065.128717]: Direct Instances: []\n", + "[INFO] [1712351065.129027]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712351065.129281]: -------------------\n", + "[INFO] [1712351065.129522]: SOMA.Pot \n", + "[INFO] [1712351065.129757]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712351065.130020]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.Pot, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351065.130278]: Subclasses: [SOMA.SoupPot]\n", + "[INFO] [1712351065.130560]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.131042]: Instances: []\n", + "[INFO] [1712351065.131288]: Direct Instances: []\n", + "[INFO] [1712351065.131532]: Inverse Restrictions: []\n", + "[INFO] [1712351065.131771]: -------------------\n", + "[INFO] [1712351065.132006]: SOMA.Pourable \n", + "[INFO] [1712351065.132257]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712351065.132517]: Ancestors: {SOMA.Extrinsic, SOMA.Pourable, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.132771]: Subclasses: []\n", + "[INFO] [1712351065.133067]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.133550]: Instances: []\n", + "[INFO] [1712351065.133800]: Direct Instances: []\n", + "[INFO] [1712351065.134261]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712351065.134552]: -------------------\n", + "[INFO] [1712351065.134819]: SOMA.PouredObject \n", + "[INFO] [1712351065.135067]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.135336]: Ancestors: {SOMA.PouredObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.135602]: Subclasses: []\n", + "[INFO] [1712351065.135898]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.136391]: Instances: []\n", + "[INFO] [1712351065.136651]: Direct Instances: []\n", + "[INFO] [1712351065.136947]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712351065.137201]: -------------------\n", + "[INFO] [1712351065.137447]: SOMA.Pouring \n", + "[INFO] [1712351065.137685]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712351065.137981]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712351065.138247]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712351065.138537]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.139026]: Instances: []\n", + "[INFO] [1712351065.139292]: Direct Instances: []\n", + "[INFO] [1712351065.139549]: Inverse Restrictions: []\n", + "[INFO] [1712351065.139783]: -------------------\n", + "[INFO] [1712351065.140013]: SOMA.PouringInto \n", + "[INFO] [1712351065.140244]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712351065.140511]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PouringInto, DUL.EventType, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712351065.140757]: Subclasses: []\n", + "[INFO] [1712351065.141042]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.141522]: Instances: []\n", + "[INFO] [1712351065.141780]: Direct Instances: []\n", + "[INFO] [1712351065.142029]: Inverse Restrictions: []\n", + "[INFO] [1712351065.142257]: -------------------\n", + "[INFO] [1712351065.142483]: SOMA.PouringOnto \n", + "[INFO] [1712351065.142724]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712351065.142987]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PouringOnto, DUL.EventType, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712351065.143224]: Subclasses: []\n", + "[INFO] [1712351065.143504]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.143997]: Instances: []\n", + "[INFO] [1712351065.144253]: Direct Instances: []\n", + "[INFO] [1712351065.144494]: Inverse Restrictions: []\n", + "[INFO] [1712351065.144721]: -------------------\n", + "[INFO] [1712351065.144955]: SOMA.Prediction \n", + "[INFO] [1712351065.145196]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712351065.145459]: Ancestors: {SOMA.Prediction, SOMA.DerivingInformation, SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351065.145698]: Subclasses: []\n", + "[INFO] [1712351065.145983]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.146465]: Instances: []\n", + "[INFO] [1712351065.146718]: Direct Instances: []\n", + "[INFO] [1712351065.146960]: Inverse Restrictions: []\n", + "[INFO] [1712351065.147198]: -------------------\n", + "[INFO] [1712351065.147430]: SOMA.Prospecting \n", + "[INFO] [1712351065.147660]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351065.147899]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Prospecting}\n", + "[INFO] [1712351065.148154]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712351065.148438]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.148923]: Instances: []\n", + "[INFO] [1712351065.149197]: Direct Instances: []\n", + "[INFO] [1712351065.149450]: Inverse Restrictions: []\n", + "[INFO] [1712351065.149689]: -------------------\n", + "[INFO] [1712351065.149921]: SOMA.Predilection \n", + "[INFO] [1712351065.150915]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712351065.151219]: Ancestors: {SOMA.Predilection, DUL.Description, DUL.SocialRelation, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351065.151484]: Subclasses: []\n", + "[INFO] [1712351065.151780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351065.152267]: Instances: []\n", + "[INFO] [1712351065.152535]: Direct Instances: []\n", + "[INFO] [1712351065.152790]: Inverse Restrictions: []\n", + "[INFO] [1712351065.153029]: -------------------\n", + "[INFO] [1712351065.153258]: SOMA.PreferenceOrder \n", + "[INFO] [1712351065.153893]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712351065.154186]: Ancestors: {DUL.Description, DUL.SocialRelation, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.PreferenceOrder, DUL.Relation}\n", + "[INFO] [1712351065.154441]: Subclasses: []\n", + "[INFO] [1712351065.154735]: Properties: [SOMA.orders, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.155219]: Instances: []\n", + "[INFO] [1712351065.155483]: Direct Instances: []\n", + "[INFO] [1712351065.155732]: Inverse Restrictions: []\n", + "[INFO] [1712351065.155968]: -------------------\n", + "[INFO] [1712351065.156200]: SOMA.PreferenceRegion \n", + "[INFO] [1712351065.156435]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712351065.156696]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Entity, DUL.SocialObjectAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.157486]: Subclasses: []\n", + "[INFO] [1712351065.157898]: Properties: [rdf-schema.label, DUL.isRegionFor, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.158434]: Instances: []\n", + "[INFO] [1712351065.158713]: Direct Instances: []\n", + "[INFO] [1712351065.158978]: Inverse Restrictions: []\n", + "[INFO] [1712351065.159225]: -------------------\n", + "[INFO] [1712351065.159469]: SOMA.PrismaticJoint \n", + "[INFO] [1712351065.159734]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712351065.160022]: Ancestors: {SOMA.MovableJoint, SOMA.PrismaticJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.160278]: Subclasses: []\n", + "[INFO] [1712351065.160577]: Properties: [SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.161068]: Instances: []\n", + "[INFO] [1712351065.161347]: Direct Instances: []\n", + "[INFO] [1712351065.161608]: Inverse Restrictions: []\n", + "[INFO] [1712351065.161854]: -------------------\n", + "[INFO] [1712351065.162096]: SOMA.ProcessFlow \n", + "[INFO] [1712351065.162338]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712351065.162602]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.ProcessFlow, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.162874]: Subclasses: []\n", + "[INFO] [1712351065.163205]: Properties: [rdf-schema.label, SOMA.definesProcess, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.163716]: Instances: []\n", + "[INFO] [1712351065.163997]: Direct Instances: []\n", + "[INFO] [1712351065.164659]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712351065.164954]: -------------------\n", + "[INFO] [1712351065.165226]: SOMA.Progression \n", + "[INFO] [1712351065.165482]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712351065.166339]: Ancestors: {owl.Thing, DUL.Entity, SOMA.Progression, DUL.Situation}\n", + "[INFO] [1712351065.166628]: Subclasses: []\n", + "[INFO] [1712351065.166944]: Properties: [DUL.satisfies, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.167437]: Instances: []\n", + "[INFO] [1712351065.167711]: Direct Instances: []\n", + "[INFO] [1712351065.167967]: Inverse Restrictions: []\n", + "[INFO] [1712351065.168221]: -------------------\n", + "[INFO] [1712351065.168559]: SOMA.Protector \n", + "[INFO] [1712351065.168828]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712351065.169108]: Ancestors: {SOMA.Instrument, DUL.SocialObject, owl.Thing, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, SOMA.Protector}\n", + "[INFO] [1712351065.169376]: Subclasses: []\n", + "[INFO] [1712351065.169673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.170162]: Instances: []\n", + "[INFO] [1712351065.170423]: Direct Instances: []\n", + "[INFO] [1712351065.170675]: Inverse Restrictions: []\n", + "[INFO] [1712351065.170920]: -------------------\n", + "[INFO] [1712351065.171163]: SOMA.ProximalTheory \n", + "[INFO] [1712351065.171404]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712351065.171665]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ProximalTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.171926]: Subclasses: []\n", + "[INFO] [1712351065.172231]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351065.172728]: Instances: []\n", + "[INFO] [1712351065.172989]: Direct Instances: []\n", + "[INFO] [1712351065.173245]: Inverse Restrictions: []\n", + "[INFO] [1712351065.173492]: -------------------\n", + "[INFO] [1712351065.173729]: SOMA.PushingAway \n", + "[INFO] [1712351065.173963]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712351065.174229]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, SOMA.PushingAway, DUL.Task, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.174486]: Subclasses: []\n", + "[INFO] [1712351065.174789]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.175272]: Instances: []\n", + "[INFO] [1712351065.175524]: Direct Instances: []\n", + "[INFO] [1712351065.175765]: Inverse Restrictions: []\n", + "[INFO] [1712351065.176014]: -------------------\n", + "[INFO] [1712351065.176250]: SOMA.PushingDown \n", + "[INFO] [1712351065.176481]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712351065.176746]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PushingDown, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.177012]: Subclasses: []\n", + "[INFO] [1712351065.177305]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.177791]: Instances: []\n", + "[INFO] [1712351065.178047]: Direct Instances: []\n", + "[INFO] [1712351065.178311]: Inverse Restrictions: []\n", + "[INFO] [1712351065.178565]: -------------------\n", + "[INFO] [1712351065.178815]: SOMA.PuttingDown \n", + "[INFO] [1712351065.179055]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351065.179323]: Ancestors: {DUL.SocialObject, SOMA.PuttingDown, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.179580]: Subclasses: []\n", + "[INFO] [1712351065.179922]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.180420]: Instances: []\n", + "[INFO] [1712351065.180676]: Direct Instances: []\n", + "[INFO] [1712351065.180925]: Inverse Restrictions: []\n", + "[INFO] [1712351065.181172]: -------------------\n", + "[INFO] [1712351065.181415]: SOMA.QualityTransition \n", + "[INFO] [1712351065.181653]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712351065.181929]: Ancestors: {SOMA.QualityTransition, DUL.Transition, DUL.Entity, DUL.Situation, owl.Thing}\n", + "[INFO] [1712351065.182179]: Subclasses: []\n", + "[INFO] [1712351065.182479]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.182968]: Instances: []\n", + "[INFO] [1712351065.183224]: Direct Instances: []\n", + "[INFO] [1712351065.183470]: Inverse Restrictions: []\n", + "[INFO] [1712351065.183705]: -------------------\n", + "[INFO] [1712351065.183944]: SOMA.Query \n", + "[INFO] [1712351065.184193]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712351065.184456]: Ancestors: {DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.Query}\n", + "[INFO] [1712351065.184695]: Subclasses: []\n", + "[INFO] [1712351065.184982]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.185478]: Instances: []\n", + "[INFO] [1712351065.185751]: Direct Instances: []\n", + "[INFO] [1712351065.186039]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712351065.186296]: -------------------\n", + "[INFO] [1712351065.186539]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712351065.186775]: Super classes: [owl.Thing]\n", + "[INFO] [1712351065.188694]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", + "[INFO] [1712351065.189181]: Subclasses: []\n", + "[INFO] [1712351065.189559]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.190103]: Instances: []\n", + "[INFO] [1712351065.190438]: Direct Instances: []\n", + "[INFO] [1712351065.190724]: Inverse Restrictions: []\n", + "[INFO] [1712351065.190983]: -------------------\n", + "[INFO] [1712351065.191239]: SOMA.QueryEngine \n", + "[INFO] [1712351065.191485]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351065.191758]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.QueryEngine, DUL.Role, owl.Thing}\n", + "[INFO] [1712351065.192027]: Subclasses: []\n", + "[INFO] [1712351065.192327]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.192827]: Instances: []\n", + "[INFO] [1712351065.193095]: Direct Instances: []\n", + "[INFO] [1712351065.193360]: Inverse Restrictions: []\n", + "[INFO] [1712351065.193613]: -------------------\n", + "[INFO] [1712351065.193856]: SOMA.RaspberryJamJar \n", + "[INFO] [1712351065.194093]: Super classes: [SOMA.JamJar]\n", + "[INFO] [1712351065.194475]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.RaspberryJamJar, DUL.Entity, SOMA.JamJar, SOMA.DesignedContainer, SOMA.Jar, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.194771]: Subclasses: []\n", + "[INFO] [1712351065.195083]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.195586]: Instances: []\n", + "[INFO] [1712351065.195877]: Direct Instances: []\n", + "[INFO] [1712351065.196134]: Inverse Restrictions: []\n", + "[INFO] [1712351065.196411]: -------------------\n", + "[INFO] [1712351065.196672]: SOMA.Reaching \n", + "[INFO] [1712351065.196915]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712351065.197203]: Ancestors: {DUL.SocialObject, SOMA.Reaching, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.197462]: Subclasses: []\n", + "[INFO] [1712351065.197769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.198283]: Instances: []\n", + "[INFO] [1712351065.198573]: Direct Instances: []\n", + "[INFO] [1712351065.198837]: Inverse Restrictions: []\n", + "[INFO] [1712351065.199088]: -------------------\n", + "[INFO] [1712351065.199330]: SOMA.Retracting \n", + "[INFO] [1712351065.199568]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712351065.199845]: Ancestors: {SOMA.Retracting, DUL.SocialObject, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.200097]: Subclasses: []\n", + "[INFO] [1712351065.200386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.200873]: Instances: []\n", + "[INFO] [1712351065.201144]: Direct Instances: []\n", + "[INFO] [1712351065.201398]: Inverse Restrictions: []\n", + "[INFO] [1712351065.201637]: -------------------\n", + "[INFO] [1712351065.201874]: SOMA.Reasoner \n", + "[INFO] [1712351065.202119]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351065.202369]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing}\n", + "[INFO] [1712351065.202619]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712351065.202916]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.203411]: Instances: []\n", + "[INFO] [1712351065.203671]: Direct Instances: []\n", + "[INFO] [1712351065.203935]: Inverse Restrictions: []\n", + "[INFO] [1712351065.204179]: -------------------\n", + "[INFO] [1712351065.204418]: SOMA.RecipientRole \n", + "[INFO] [1712351065.204654]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712351065.204920]: Ancestors: {SOMA.GoalRole, SOMA.RecipientRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, owl.Thing}\n", + "[INFO] [1712351065.205178]: Subclasses: []\n", + "[INFO] [1712351065.205469]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.205956]: Instances: []\n", + "[INFO] [1712351065.206221]: Direct Instances: []\n", + "[INFO] [1712351065.206475]: Inverse Restrictions: []\n", + "[INFO] [1712351065.206715]: -------------------\n", + "[INFO] [1712351065.206949]: SOMA.RecordedEpisode \n", + "[INFO] [1712351065.207196]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712351065.207449]: Ancestors: {SOMA.RecordedEpisode, DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing}\n", + "[INFO] [1712351065.207708]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712351065.208004]: Properties: [SOMA.includesRecord, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.208495]: Instances: []\n", + "[INFO] [1712351065.208766]: Direct Instances: []\n", + "[INFO] [1712351065.209032]: Inverse Restrictions: []\n", + "[INFO] [1712351065.209274]: -------------------\n", + "[INFO] [1712351065.209512]: SOMA.RedColor \n", + "[INFO] [1712351065.209747]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712351065.210005]: Ancestors: {SOMA.ColorRegion, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.RedColor, owl.Thing}\n", + "[INFO] [1712351065.210265]: Subclasses: []\n", + "[INFO] [1712351065.210560]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.211045]: Instances: []\n", + "[INFO] [1712351065.211311]: Direct Instances: []\n", + "[INFO] [1712351065.211565]: Inverse Restrictions: []\n", + "[INFO] [1712351065.211802]: -------------------\n", + "[INFO] [1712351065.212035]: SOMA.Refrigerator \n", + "[INFO] [1712351065.212265]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", + "[INFO] [1712351065.212523]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Refrigerator, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.212783]: Subclasses: []\n", + "[INFO] [1712351065.213100]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.213615]: Instances: []\n", + "[INFO] [1712351065.213888]: Direct Instances: []\n", + "[INFO] [1712351065.214139]: Inverse Restrictions: []\n", + "[INFO] [1712351065.214382]: -------------------\n", + "[INFO] [1712351065.214616]: SOMA.Reification \n", + "[INFO] [1712351065.214869]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712351065.215151]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Reification, owl.Thing}\n", + "[INFO] [1712351065.215406]: Subclasses: []\n", + "[INFO] [1712351065.215698]: Properties: [SOMA.isReificationOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.216226]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712351065.216509]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712351065.216769]: Inverse Restrictions: []\n", + "[INFO] [1712351065.217018]: -------------------\n", + "[INFO] [1712351065.217259]: SOMA.RelationalDatabase \n", + "[INFO] [1712351065.217495]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712351065.217755]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.RelationalDatabase, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, DUL.Role, owl.Thing}\n", + "[INFO] [1712351065.218014]: Subclasses: []\n", + "[INFO] [1712351065.218307]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.218790]: Instances: []\n", + "[INFO] [1712351065.219040]: Direct Instances: []\n", + "[INFO] [1712351065.219285]: Inverse Restrictions: []\n", + "[INFO] [1712351065.219528]: -------------------\n", + "[INFO] [1712351065.219767]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712351065.220000]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712351065.220258]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.RelationalQueryLanguage, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351065.220496]: Subclasses: []\n", + "[INFO] [1712351065.220797]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.221289]: Instances: []\n", + "[INFO] [1712351065.221542]: Direct Instances: []\n", + "[INFO] [1712351065.221781]: Inverse Restrictions: []\n", + "[INFO] [1712351065.222010]: -------------------\n", + "[INFO] [1712351065.222240]: SOMA.RelevantPart \n", + "[INFO] [1712351065.222483]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712351065.222741]: Ancestors: {SOMA.Feature, DUL.Object, DUL.Entity, SOMA.RelevantPart, owl.Thing}\n", + "[INFO] [1712351065.222980]: Subclasses: []\n", + "[INFO] [1712351065.223261]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.223753]: Instances: []\n", + "[INFO] [1712351065.224008]: Direct Instances: []\n", + "[INFO] [1712351065.224250]: Inverse Restrictions: []\n", + "[INFO] [1712351065.224485]: -------------------\n", + "[INFO] [1712351065.224711]: SOMA.Remembering \n", + "[INFO] [1712351065.224957]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712351065.225219]: Ancestors: {owl.Thing, SOMA.Remembering}\n", + "[INFO] [1712351065.225464]: Subclasses: []\n", + "[INFO] [1712351065.225742]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.226230]: Instances: []\n", + "[INFO] [1712351065.226493]: Direct Instances: []\n", + "[INFO] [1712351065.226740]: Inverse Restrictions: []\n", + "[INFO] [1712351065.226972]: -------------------\n", + "[INFO] [1712351065.227198]: SOMA.Retrospecting \n", + "[INFO] [1712351065.227444]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712351065.227702]: Ancestors: {SOMA.Retrospecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351065.227943]: Subclasses: []\n", + "[INFO] [1712351065.228226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.228725]: Instances: []\n", + "[INFO] [1712351065.228999]: Direct Instances: []\n", + "[INFO] [1712351065.229289]: Inverse Restrictions: []\n", + "[INFO] [1712351065.229530]: -------------------\n", + "[INFO] [1712351065.229787]: SOMA.RemovedObject \n", + "[INFO] [1712351065.230034]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712351065.230309]: Ancestors: {SOMA.RemovedObject, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.ExcludedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.230554]: Subclasses: []\n", + "[INFO] [1712351065.230838]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.231333]: Instances: []\n", + "[INFO] [1712351065.231596]: Direct Instances: []\n", + "[INFO] [1712351065.231843]: Inverse Restrictions: []\n", + "[INFO] [1712351065.232072]: -------------------\n", + "[INFO] [1712351065.232299]: SOMA.Replanning \n", + "[INFO] [1712351065.232529]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712351065.232797]: Ancestors: {SOMA.Planning, SOMA.Replanning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351065.233047]: Subclasses: []\n", + "[INFO] [1712351065.233334]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.233815]: Instances: []\n", + "[INFO] [1712351065.234080]: Direct Instances: []\n", + "[INFO] [1712351065.234332]: Inverse Restrictions: []\n", + "[INFO] [1712351065.234575]: -------------------\n", + "[INFO] [1712351065.234813]: SOMA.RevoluteJoint \n", + "[INFO] [1712351065.235047]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712351065.235321]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, SOMA.RevoluteJoint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.235574]: Subclasses: []\n", + "[INFO] [1712351065.235867]: Properties: [SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.236364]: Instances: []\n", + "[INFO] [1712351065.236626]: Direct Instances: []\n", + "[INFO] [1712351065.236884]: Inverse Restrictions: []\n", + "[INFO] [1712351065.237124]: -------------------\n", + "[INFO] [1712351065.237361]: SOMA.Surface \n", + "[INFO] [1712351065.237594]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712351065.237850]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.238101]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712351065.238385]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.238873]: Instances: []\n", + "[INFO] [1712351065.239144]: Direct Instances: []\n", + "[INFO] [1712351065.239400]: Inverse Restrictions: []\n", + "[INFO] [1712351065.239640]: -------------------\n", + "[INFO] [1712351065.239877]: SOMA.Rubbing \n", + "[INFO] [1712351065.240108]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712351065.240374]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, SOMA.Rubbing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.240633]: Subclasses: []\n", + "[INFO] [1712351065.240931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.241415]: Instances: []\n", + "[INFO] [1712351065.241669]: Direct Instances: []\n", + "[INFO] [1712351065.241913]: Inverse Restrictions: []\n", + "[INFO] [1712351065.242149]: -------------------\n", + "[INFO] [1712351065.242390]: SOMA.SaladBowl \n", + "[INFO] [1712351065.242627]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712351065.242897]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, SOMA.SaladBowl, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Bowl, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351065.243139]: Subclasses: []\n", + "[INFO] [1712351065.243415]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.243910]: Instances: []\n", + "[INFO] [1712351065.244171]: Direct Instances: []\n", + "[INFO] [1712351065.244417]: Inverse Restrictions: []\n", + "[INFO] [1712351065.244651]: -------------------\n", + "[INFO] [1712351065.244884]: SOMA.SaltShaker \n", + "[INFO] [1712351065.245119]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712351065.245389]: Ancestors: {SOMA.Shaker, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.SaltShaker, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.245633]: Subclasses: []\n", + "[INFO] [1712351065.245912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.246406]: Instances: []\n", + "[INFO] [1712351065.246694]: Direct Instances: []\n", + "[INFO] [1712351065.246958]: Inverse Restrictions: []\n", + "[INFO] [1712351065.247198]: -------------------\n", + "[INFO] [1712351065.247434]: SOMA.Scene \n", + "[INFO] [1712351065.247680]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712351065.247954]: Ancestors: {owl.Thing, DUL.Entity, SOMA.Scene, DUL.Situation}\n", + "[INFO] [1712351065.248214]: Subclasses: []\n", + "[INFO] [1712351065.248512]: Properties: [DUL.satisfies, DUL.includesEvent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.248993]: Instances: []\n", + "[INFO] [1712351065.249254]: Direct Instances: []\n", + "[INFO] [1712351065.249554]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712351065.249808]: -------------------\n", + "[INFO] [1712351065.250044]: SOMA.SelectedObject \n", + "[INFO] [1712351065.250277]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712351065.250534]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, owl.Thing, SOMA.SelectedObject}\n", + "[INFO] [1712351065.250790]: Subclasses: []\n", + "[INFO] [1712351065.251083]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.251568]: Instances: []\n", + "[INFO] [1712351065.251820]: Direct Instances: []\n", + "[INFO] [1712351065.252116]: Inverse Restrictions: []\n", + "[INFO] [1712351065.252368]: -------------------\n", + "[INFO] [1712351065.252612]: SOMA.Selecting \n", + "[INFO] [1712351065.252849]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712351065.253110]: Ancestors: {SOMA.Selecting, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351065.253363]: Subclasses: []\n", + "[INFO] [1712351065.253656]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.254139]: Instances: []\n", + "[INFO] [1712351065.254395]: Direct Instances: []\n", + "[INFO] [1712351065.254648]: Inverse Restrictions: []\n", + "[INFO] [1712351065.254887]: -------------------\n", + "[INFO] [1712351065.255121]: SOMA.SelectingItem \n", + "[INFO] [1712351065.255764]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712351065.256063]: Ancestors: {SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.SelectingItem, SOMA.GetTaskParameter}\n", + "[INFO] [1712351065.256324]: Subclasses: []\n", + "[INFO] [1712351065.256618]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.257172]: Instances: []\n", + "[INFO] [1712351065.257446]: Direct Instances: []\n", + "[INFO] [1712351065.257700]: Inverse Restrictions: []\n", + "[INFO] [1712351065.257943]: -------------------\n", + "[INFO] [1712351065.258180]: SOMA.SelfReflection \n", + "[INFO] [1712351065.258412]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712351065.258683]: Ancestors: {SOMA.MetacognitiveControlling, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, SOMA.SelfReflection, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.258940]: Subclasses: []\n", + "[INFO] [1712351065.259233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351065.259718]: Instances: []\n", + "[INFO] [1712351065.259978]: Direct Instances: []\n", + "[INFO] [1712351065.260234]: Inverse Restrictions: []\n", + "[INFO] [1712351065.260468]: -------------------\n", + "[INFO] [1712351065.260700]: SOMA.Serving \n", + "[INFO] [1712351065.262070]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712351065.262382]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, SOMA.Serving, DUL.Task, DUL.Concept, DUL.EventType, SOMA.Delivering, owl.Thing}\n", + "[INFO] [1712351065.262646]: Subclasses: []\n", + "[INFO] [1712351065.262956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.263463]: Instances: []\n", + "[INFO] [1712351065.263734]: Direct Instances: []\n", + "[INFO] [1712351065.263999]: Inverse Restrictions: []\n", + "[INFO] [1712351065.264244]: -------------------\n", + "[INFO] [1712351065.264483]: SOMA.SettingGripper \n", + "[INFO] [1712351065.264715]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712351065.264989]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.SettingGripper, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.265252]: Subclasses: []\n", + "[INFO] [1712351065.265548]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.266036]: Instances: []\n", + "[INFO] [1712351065.266286]: Direct Instances: []\n", + "[INFO] [1712351065.266525]: Inverse Restrictions: []\n", + "[INFO] [1712351065.266766]: -------------------\n", + "[INFO] [1712351065.267008]: SOMA.6DPose \n", + "[INFO] [1712351065.267267]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712351065.267542]: Ancestors: {SOMA.6DPose, DUL.Entity, DUL.Region, DUL.SpaceRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.267786]: Subclasses: []\n", + "[INFO] [1712351065.268083]: Properties: [rdf-schema.label, SOMA.hasPositionData, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.268573]: Instances: []\n", + "[INFO] [1712351065.268829]: Direct Instances: []\n", + "[INFO] [1712351065.269118]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712351065.269370]: -------------------\n", + "[INFO] [1712351065.269612]: SOMA.Sharpness \n", + "[INFO] [1712351065.269848]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351065.270101]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, SOMA.Sharpness}\n", + "[INFO] [1712351065.270351]: Subclasses: []\n", + "[INFO] [1712351065.270643]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.271127]: Instances: []\n", + "[INFO] [1712351065.271383]: Direct Instances: []\n", + "[INFO] [1712351065.271628]: Inverse Restrictions: []\n", + "[INFO] [1712351065.271875]: -------------------\n", + "[INFO] [1712351065.272112]: SOMA.Simulating \n", + "[INFO] [1712351065.272348]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712351065.272606]: Ancestors: {SOMA.Simulating, SOMA.DerivingInformation, SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351065.272857]: Subclasses: []\n", + "[INFO] [1712351065.273161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.273654]: Instances: []\n", + "[INFO] [1712351065.273906]: Direct Instances: []\n", + "[INFO] [1712351065.274147]: Inverse Restrictions: []\n", + "[INFO] [1712351065.274384]: -------------------\n", + "[INFO] [1712351065.274630]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712351065.274868]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712351065.275131]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing, SOMA.Simulation_Reasoner}\n", + "[INFO] [1712351065.275372]: Subclasses: []\n", + "[INFO] [1712351065.275654]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.276149]: Instances: []\n", + "[INFO] [1712351065.276409]: Direct Instances: []\n", + "[INFO] [1712351065.276658]: Inverse Restrictions: []\n", + "[INFO] [1712351065.276898]: -------------------\n", + "[INFO] [1712351065.277136]: SOMA.Sink \n", + "[INFO] [1712351065.277378]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351065.277647]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Sink, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.277890]: Subclasses: []\n", + "[INFO] [1712351065.278171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.278662]: Instances: []\n", + "[INFO] [1712351065.278982]: Direct Instances: []\n", + "[INFO] [1712351065.279582]: Inverse Restrictions: []\n", + "[INFO] [1712351065.279907]: -------------------\n", + "[INFO] [1712351065.280151]: SOMA.Size \n", + "[INFO] [1712351065.280387]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351065.280670]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Size, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351065.280956]: Subclasses: []\n", + "[INFO] [1712351065.281276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.281760]: Instances: []\n", + "[INFO] [1712351065.282090]: Direct Instances: []\n", + "[INFO] [1712351065.282385]: Inverse Restrictions: []\n", + "[INFO] [1712351065.282643]: -------------------\n", + "[INFO] [1712351065.282894]: SOMA.Slicing \n", + "[INFO] [1712351065.283137]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712351065.283412]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, SOMA.Slicing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", + "[INFO] [1712351065.283678]: Subclasses: []\n", + "[INFO] [1712351065.283977]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.284468]: Instances: []\n", + "[INFO] [1712351065.284728]: Direct Instances: []\n", + "[INFO] [1712351065.284989]: Inverse Restrictions: []\n", + "[INFO] [1712351065.285243]: -------------------\n", + "[INFO] [1712351065.285491]: SOMA.Sluggishness \n", + "[INFO] [1712351065.285732]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712351065.285995]: Ancestors: {DUL.Description, SOMA.Sluggishness, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351065.286234]: Subclasses: []\n", + "[INFO] [1712351065.286522]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.287004]: Instances: []\n", + "[INFO] [1712351065.287256]: Direct Instances: []\n", + "[INFO] [1712351065.287495]: Inverse Restrictions: []\n", + "[INFO] [1712351065.287735]: -------------------\n", + "[INFO] [1712351065.287972]: SOMA.SocialState \n", + "[INFO] [1712351065.288229]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712351065.288489]: Ancestors: {SOMA.State, DUL.Entity, DUL.Event, owl.Thing, SOMA.SocialState}\n", + "[INFO] [1712351065.288733]: Subclasses: []\n", + "[INFO] [1712351065.289042]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.289534]: Instances: []\n", + "[INFO] [1712351065.289791]: Direct Instances: []\n", + "[INFO] [1712351065.290050]: Inverse Restrictions: []\n", + "[INFO] [1712351065.290292]: -------------------\n", + "[INFO] [1712351065.290522]: SOMA.Sofa \n", + "[INFO] [1712351065.290753]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712351065.291015]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, SOMA.Sofa, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.291269]: Subclasses: []\n", + "[INFO] [1712351065.291560]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.292043]: Instances: []\n", + "[INFO] [1712351065.292305]: Direct Instances: []\n", + "[INFO] [1712351065.292563]: Inverse Restrictions: []\n", + "[INFO] [1712351065.292810]: -------------------\n", + "[INFO] [1712351065.293067]: SOMA.Software_Configuration \n", + "[INFO] [1712351065.293311]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712351065.293583]: Ancestors: {DUL.Collection, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Software_Configuration, DUL.Configuration, owl.Thing}\n", + "[INFO] [1712351065.293842]: Subclasses: []\n", + "[INFO] [1712351065.294138]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351065.294632]: Instances: []\n", + "[INFO] [1712351065.294896]: Direct Instances: []\n", + "[INFO] [1712351065.295253]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712351065.295539]: -------------------\n", + "[INFO] [1712351065.295817]: SOMA.SoftwareLibrary \n", + "[INFO] [1712351065.296091]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712351065.296408]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, SOMA.SoftwareLibrary, DUL.Object, DUL.Entity, SOMA.Software, owl.Thing}\n", + "[INFO] [1712351065.296720]: Subclasses: []\n", + "[INFO] [1712351065.297078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351065.297644]: Instances: []\n", + "[INFO] [1712351065.297930]: Direct Instances: []\n", + "[INFO] [1712351065.298211]: Inverse Restrictions: []\n", + "[INFO] [1712351065.298477]: -------------------\n", + "[INFO] [1712351065.298733]: SOMA.SoupPot \n", + "[INFO] [1712351065.298981]: Super classes: [SOMA.Pot]\n", + "[INFO] [1712351065.299267]: Ancestors: {DUL.DesignedArtifact, SOMA.SoupPot, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.Pot, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351065.299544]: Subclasses: []\n", + "[INFO] [1712351065.299853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.300347]: Instances: []\n", + "[INFO] [1712351065.300598]: Direct Instances: []\n", + "[INFO] [1712351065.300839]: Inverse Restrictions: []\n", + "[INFO] [1712351065.301087]: -------------------\n", + "[INFO] [1712351065.301331]: SOMA.SourceMaterialRole \n", + "[INFO] [1712351065.301586]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712351065.301852]: Ancestors: {DUL.SocialObject, owl.Thing, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.SourceMaterialRole}\n", + "[INFO] [1712351065.302092]: Subclasses: []\n", + "[INFO] [1712351065.302387]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.302871]: Instances: []\n", + "[INFO] [1712351065.303123]: Direct Instances: []\n", + "[INFO] [1712351065.303363]: Inverse Restrictions: []\n", + "[INFO] [1712351065.303591]: -------------------\n", + "[INFO] [1712351065.303833]: SOMA.Spatula \n", + "[INFO] [1712351065.304079]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", + "[INFO] [1712351065.304343]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.Spatula, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.304588]: Subclasses: []\n", + "[INFO] [1712351065.304874]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.305369]: Instances: []\n", + "[INFO] [1712351065.305632]: Direct Instances: []\n", + "[INFO] [1712351065.305877]: Inverse Restrictions: []\n", + "[INFO] [1712351065.306107]: -------------------\n", + "[INFO] [1712351065.306340]: SOMA.SphereShape \n", + "[INFO] [1712351065.306613]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712351065.306900]: Ancestors: {SOMA.ShapeRegion, DUL.Region, SOMA.SphereShape, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.307157]: Subclasses: []\n", + "[INFO] [1712351065.307455]: Properties: [rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.307935]: Instances: []\n", + "[INFO] [1712351065.308207]: Direct Instances: []\n", + "[INFO] [1712351065.308467]: Inverse Restrictions: []\n", + "[INFO] [1712351065.308707]: -------------------\n", + "[INFO] [1712351065.308949]: SOMA.Spoon \n", + "[INFO] [1712351065.309625]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712351065.309931]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, SOMA.Spoon, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.310206]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", + "[INFO] [1712351065.310510]: Properties: [SOMA.hasPhysicalComponent, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.311012]: Instances: []\n", + "[INFO] [1712351065.311303]: Direct Instances: []\n", + "[INFO] [1712351065.311569]: Inverse Restrictions: []\n", + "[INFO] [1712351065.311815]: -------------------\n", + "[INFO] [1712351065.312055]: SOMA.Standing \n", + "[INFO] [1712351065.312295]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712351065.312569]: Ancestors: {DUL.SocialObject, SOMA.Standing, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", + "[INFO] [1712351065.312834]: Subclasses: []\n", + "[INFO] [1712351065.313132]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.313614]: Instances: []\n", + "[INFO] [1712351065.313872]: Direct Instances: []\n", + "[INFO] [1712351065.314119]: Inverse Restrictions: []\n", + "[INFO] [1712351065.314358]: -------------------\n", + "[INFO] [1712351065.314612]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712351065.314855]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712351065.315124]: Ancestors: {SOMA.StaticFrictionAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", + "[INFO] [1712351065.315380]: Subclasses: []\n", + "[INFO] [1712351065.315670]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.316171]: Instances: []\n", + "[INFO] [1712351065.316438]: Direct Instances: []\n", + "[INFO] [1712351065.316688]: Inverse Restrictions: []\n", + "[INFO] [1712351065.316937]: -------------------\n", + "[INFO] [1712351065.317181]: SOMA.Status \n", + "[INFO] [1712351065.317428]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712351065.317698]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, owl.Thing, SOMA.Status}\n", + "[INFO] [1712351065.317944]: Subclasses: []\n", + "[INFO] [1712351065.318227]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.318733]: Instances: []\n", + "[INFO] [1712351065.319000]: Direct Instances: []\n", + "[INFO] [1712351065.319280]: Inverse Restrictions: []\n", + "[INFO] [1712351065.319523]: -------------------\n", + "[INFO] [1712351065.319771]: SOMA.StatusFailure \n", + "[INFO] [1712351065.320024]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351065.320291]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.StatusFailure, owl.Thing}\n", + "[INFO] [1712351065.320536]: Subclasses: []\n", + "[INFO] [1712351065.320857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.321611]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712351065.321936]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712351065.322222]: Inverse Restrictions: []\n", + "[INFO] [1712351065.322482]: -------------------\n", + "[INFO] [1712351065.322731]: SOMA.StimulusRole \n", + "[INFO] [1712351065.322988]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712351065.323267]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.StimulusRole, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351065.323523]: Subclasses: []\n", + "[INFO] [1712351065.323813]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.324316]: Instances: []\n", + "[INFO] [1712351065.324577]: Direct Instances: []\n", + "[INFO] [1712351065.324828]: Inverse Restrictions: []\n", + "[INFO] [1712351065.325065]: -------------------\n", + "[INFO] [1712351065.325294]: SOMA.Stirring \n", + "[INFO] [1712351065.325528]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712351065.325811]: Ancestors: {SOMA.Constructing, DUL.SocialObject, SOMA.Mixing, DUL.Object, SOMA.Stirring, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.326066]: Subclasses: []\n", + "[INFO] [1712351065.326362]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.326836]: Instances: []\n", + "[INFO] [1712351065.327108]: Direct Instances: []\n", + "[INFO] [1712351065.327362]: Inverse Restrictions: []\n", + "[INFO] [1712351065.327598]: -------------------\n", + "[INFO] [1712351065.327830]: SOMA.Storage \n", + "[INFO] [1712351065.328079]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712351065.328345]: Ancestors: {SOMA.Extrinsic, SOMA.Storage, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.328585]: Subclasses: []\n", + "[INFO] [1712351065.328876]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.329379]: Instances: []\n", + "[INFO] [1712351065.329631]: Direct Instances: []\n", + "[INFO] [1712351065.329876]: Inverse Restrictions: []\n", + "[INFO] [1712351065.330107]: -------------------\n", + "[INFO] [1712351065.330344]: SOMA.Stove \n", + "[INFO] [1712351065.330574]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", + "[INFO] [1712351065.330841]: Ancestors: {DUL.DesignedArtifact, SOMA.Stove, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.331083]: Subclasses: []\n", + "[INFO] [1712351065.331357]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.331835]: Instances: []\n", + "[INFO] [1712351065.332093]: Direct Instances: []\n", + "[INFO] [1712351065.332341]: Inverse Restrictions: []\n", + "[INFO] [1712351065.332569]: -------------------\n", + "[INFO] [1712351065.332798]: SOMA.StructuralDesign \n", + "[INFO] [1712351065.333024]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712351065.333284]: Ancestors: {SOMA.StructuralDesign, DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.333524]: Subclasses: []\n", + "[INFO] [1712351065.333800]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.334285]: Instances: []\n", + "[INFO] [1712351065.334537]: Direct Instances: []\n", + "[INFO] [1712351065.334774]: Inverse Restrictions: []\n", + "[INFO] [1712351065.335001]: -------------------\n", + "[INFO] [1712351065.335227]: SOMA.TaskInvocation \n", + "[INFO] [1712351065.335492]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712351065.335765]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Workflow, SOMA.TaskInvocation, owl.Thing, DUL.Plan}\n", + "[INFO] [1712351065.336006]: Subclasses: []\n", + "[INFO] [1712351065.336292]: Properties: [rdf-schema.label, DUL.definesTask, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.336784]: Instances: []\n", + "[INFO] [1712351065.337043]: Direct Instances: []\n", + "[INFO] [1712351065.337354]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712351065.337592]: -------------------\n", + "[INFO] [1712351065.337824]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712351065.338051]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712351065.338300]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351065.338547]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712351065.338828]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.339313]: Instances: []\n", + "[INFO] [1712351065.339574]: Direct Instances: []\n", + "[INFO] [1712351065.339821]: Inverse Restrictions: []\n", + "[INFO] [1712351065.340054]: -------------------\n", + "[INFO] [1712351065.340283]: SOMA.Successfulness \n", + "[INFO] [1712351065.340506]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712351065.340759]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Successfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351065.341023]: Subclasses: []\n", + "[INFO] [1712351065.341320]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.341802]: Instances: []\n", + "[INFO] [1712351065.342063]: Direct Instances: []\n", + "[INFO] [1712351065.342380]: Inverse Restrictions: []\n", + "[INFO] [1712351065.342617]: -------------------\n", + "[INFO] [1712351065.342850]: SOMA.SugarDispenser \n", + "[INFO] [1712351065.343074]: Super classes: [SOMA.Dispenser]\n", + "[INFO] [1712351065.343338]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Dispenser, DUL.Entity, SOMA.SugarDispenser, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.343586]: Subclasses: []\n", + "[INFO] [1712351065.343867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.344341]: Instances: []\n", + "[INFO] [1712351065.344600]: Direct Instances: []\n", + "[INFO] [1712351065.344853]: Inverse Restrictions: []\n", + "[INFO] [1712351065.345086]: -------------------\n", + "[INFO] [1712351065.345315]: SOMA.SupportState \n", + "[INFO] [1712351065.346304]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712351065.346604]: Ancestors: {SOMA.SupportState, SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.346863]: Subclasses: []\n", + "[INFO] [1712351065.347164]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.347651]: Instances: []\n", + "[INFO] [1712351065.347926]: Direct Instances: []\n", + "[INFO] [1712351065.348178]: Inverse Restrictions: []\n", + "[INFO] [1712351065.348414]: -------------------\n", + "[INFO] [1712351065.348648]: SOMA.Supporter \n", + "[INFO] [1712351065.348887]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712351065.349155]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.Supporter, owl.Thing}\n", + "[INFO] [1712351065.349403]: Subclasses: []\n", + "[INFO] [1712351065.349683]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.350178]: Instances: []\n", + "[INFO] [1712351065.350441]: Direct Instances: []\n", + "[INFO] [1712351065.350737]: Inverse Restrictions: []\n", + "[INFO] [1712351065.350973]: -------------------\n", + "[INFO] [1712351065.351205]: SOMA.SupportTheory \n", + "[INFO] [1712351065.351435]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712351065.351706]: Ancestors: {DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.SupportTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.351950]: Subclasses: []\n", + "[INFO] [1712351065.352230]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.352708]: Instances: []\n", + "[INFO] [1712351065.352985]: Direct Instances: []\n", + "[INFO] [1712351065.353241]: Inverse Restrictions: []\n", + "[INFO] [1712351065.353472]: -------------------\n", + "[INFO] [1712351065.353700]: SOMA.SupportedObject \n", + "[INFO] [1712351065.353923]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712351065.354181]: Ancestors: {DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.SupportedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.354430]: Subclasses: []\n", + "[INFO] [1712351065.354713]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.355189]: Instances: []\n", + "[INFO] [1712351065.355449]: Direct Instances: []\n", + "[INFO] [1712351065.355705]: Inverse Restrictions: []\n", + "[INFO] [1712351065.355942]: -------------------\n", + "[INFO] [1712351065.356172]: SOMA.SymbolicReasoner \n", + "[INFO] [1712351065.356396]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712351065.356671]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.SymbolicReasoner, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing}\n", + "[INFO] [1712351065.356918]: Subclasses: []\n", + "[INFO] [1712351065.357200]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.357689]: Instances: []\n", + "[INFO] [1712351065.358197]: Direct Instances: []\n", + "[INFO] [1712351065.358503]: Inverse Restrictions: []\n", + "[INFO] [1712351065.358762]: -------------------\n", + "[INFO] [1712351065.358995]: SOMA.TableFork \n", + "[INFO] [1712351065.359222]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712351065.359496]: Ancestors: {DUL.DesignedArtifact, SOMA.TableFork, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.Fork, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.359765]: Subclasses: []\n", + "[INFO] [1712351065.360060]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.360551]: Instances: []\n", + "[INFO] [1712351065.360844]: Direct Instances: []\n", + "[INFO] [1712351065.361115]: Inverse Restrictions: []\n", + "[INFO] [1712351065.361361]: -------------------\n", + "[INFO] [1712351065.361598]: SOMA.TableKnife \n", + "[INFO] [1712351065.361832]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712351065.362096]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.KitchenKnife, SOMA.DesignedTool, SOMA.Knife, DUL.Object, SOMA.CuttingTool, DUL.Entity, DUL.PhysicalObject, owl.Thing, SOMA.TableKnife}\n", + "[INFO] [1712351065.362370]: Subclasses: []\n", + "[INFO] [1712351065.362663]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.363148]: Instances: []\n", + "[INFO] [1712351065.363406]: Direct Instances: []\n", + "[INFO] [1712351065.363659]: Inverse Restrictions: []\n", + "[INFO] [1712351065.363921]: -------------------\n", + "[INFO] [1712351065.364161]: SOMA.TableSpoon \n", + "[INFO] [1712351065.364394]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712351065.364654]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, SOMA.TableSpoon, SOMA.Spoon, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.364911]: Subclasses: []\n", + "[INFO] [1712351065.365213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.365694]: Instances: []\n", + "[INFO] [1712351065.365944]: Direct Instances: []\n", + "[INFO] [1712351065.366181]: Inverse Restrictions: []\n", + "[INFO] [1712351065.366415]: -------------------\n", + "[INFO] [1712351065.366653]: SOMA.TeaSpoon \n", + "[INFO] [1712351065.366885]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712351065.367143]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, SOMA.Spoon, SOMA.TeaSpoon, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.367378]: Subclasses: []\n", + "[INFO] [1712351065.367650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.368142]: Instances: []\n", + "[INFO] [1712351065.368404]: Direct Instances: []\n", + "[INFO] [1712351065.368649]: Inverse Restrictions: []\n", + "[INFO] [1712351065.368892]: -------------------\n", + "[INFO] [1712351065.369121]: SOMA.Tap \n", + "[INFO] [1712351065.369361]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712351065.369626]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.Tap, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.369864]: Subclasses: []\n", + "[INFO] [1712351065.370154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.370639]: Instances: []\n", + "[INFO] [1712351065.370893]: Direct Instances: []\n", + "[INFO] [1712351065.371136]: Inverse Restrictions: []\n", + "[INFO] [1712351065.371363]: -------------------\n", + "[INFO] [1712351065.371598]: SOMA.Tapping \n", + "[INFO] [1712351065.371843]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712351065.372122]: Ancestors: {SOMA.Tapping, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.372373]: Subclasses: []\n", + "[INFO] [1712351065.372650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.373143]: Instances: []\n", + "[INFO] [1712351065.373404]: Direct Instances: []\n", + "[INFO] [1712351065.373651]: Inverse Restrictions: []\n", + "[INFO] [1712351065.373884]: -------------------\n", + "[INFO] [1712351065.374116]: SOMA.Taxis \n", + "[INFO] [1712351065.374358]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712351065.374619]: Ancestors: {SOMA.Taxis, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.374860]: Subclasses: []\n", + "[INFO] [1712351065.375136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.375610]: Instances: []\n", + "[INFO] [1712351065.375875]: Direct Instances: []\n", + "[INFO] [1712351065.376122]: Inverse Restrictions: []\n", + "[INFO] [1712351065.376360]: -------------------\n", + "[INFO] [1712351065.376590]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712351065.376840]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712351065.377095]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.377357]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712351065.377654]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.378154]: Instances: []\n", + "[INFO] [1712351065.378402]: Direct Instances: []\n", + "[INFO] [1712351065.378659]: Inverse Restrictions: []\n", + "[INFO] [1712351065.378901]: -------------------\n", + "[INFO] [1712351065.379138]: SOMA.Temperature \n", + "[INFO] [1712351065.379397]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712351065.379650]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, SOMA.Temperature}\n", + "[INFO] [1712351065.379901]: Subclasses: []\n", + "[INFO] [1712351065.380203]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351065.380695]: Instances: []\n", + "[INFO] [1712351065.381034]: Direct Instances: []\n", + "[INFO] [1712351065.381759]: Inverse Restrictions: []\n", + "[INFO] [1712351065.382051]: -------------------\n", + "[INFO] [1712351065.382318]: SOMA.TemperatureRegion \n", + "[INFO] [1712351065.382581]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351065.382860]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.TemperatureRegion, owl.Thing}\n", + "[INFO] [1712351065.383121]: Subclasses: []\n", + "[INFO] [1712351065.383420]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.383928]: Instances: []\n", + "[INFO] [1712351065.384205]: Direct Instances: []\n", + "[INFO] [1712351065.384532]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712351065.384787]: -------------------\n", + "[INFO] [1712351065.385047]: SOMA.Tempering \n", + "[INFO] [1712351065.385344]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712351065.385627]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.Tempering, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.385901]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712351065.386206]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.386703]: Instances: []\n", + "[INFO] [1712351065.386986]: Direct Instances: []\n", + "[INFO] [1712351065.387258]: Inverse Restrictions: []\n", + "[INFO] [1712351065.387511]: -------------------\n", + "[INFO] [1712351065.387755]: SOMA.TemperingByCooling \n", + "[INFO] [1712351065.388009]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712351065.388289]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.Tempering, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.TemperingByCooling, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.388548]: Subclasses: []\n", + "[INFO] [1712351065.388847]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.389346]: Instances: []\n", + "[INFO] [1712351065.389628]: Direct Instances: []\n", + "[INFO] [1712351065.389896]: Inverse Restrictions: []\n", + "[INFO] [1712351065.390150]: -------------------\n", + "[INFO] [1712351065.390396]: SOMA.ThinkAloud \n", + "[INFO] [1712351065.390654]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712351065.390951]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, owl.Thing, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, SOMA.ThinkAloud, DUL.EventType, SOMA.CommunicationReport}\n", + "[INFO] [1712351065.391216]: Subclasses: []\n", + "[INFO] [1712351065.391517]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.392011]: Instances: []\n", + "[INFO] [1712351065.392295]: Direct Instances: []\n", + "[INFO] [1712351065.392564]: Inverse Restrictions: []\n", + "[INFO] [1712351065.392835]: -------------------\n", + "[INFO] [1712351065.393137]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712351065.393392]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351065.393685]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, SOMA.ThinkAloudActionTopic, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.393950]: Subclasses: []\n", + "[INFO] [1712351065.394258]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.394752]: Instances: []\n", + "[INFO] [1712351065.395035]: Direct Instances: []\n", + "[INFO] [1712351065.395299]: Inverse Restrictions: []\n", + "[INFO] [1712351065.395547]: -------------------\n", + "[INFO] [1712351065.395790]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712351065.396040]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712351065.396352]: Ancestors: {DUL.SocialObject, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ResourceRole, SOMA.CommunicationTopic, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.396632]: Subclasses: []\n", + "[INFO] [1712351065.396950]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.397588]: Instances: []\n", + "[INFO] [1712351065.397894]: Direct Instances: []\n", + "[INFO] [1712351065.398174]: Inverse Restrictions: []\n", + "[INFO] [1712351065.398437]: -------------------\n", + "[INFO] [1712351065.398701]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712351065.398965]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351065.399229]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.399489]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712351065.399788]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.400304]: Instances: []\n", + "[INFO] [1712351065.400580]: Direct Instances: []\n", + "[INFO] [1712351065.400957]: Inverse Restrictions: []\n", + "[INFO] [1712351065.401246]: -------------------\n", + "[INFO] [1712351065.401519]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712351065.401794]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351065.402097]: Ancestors: {SOMA.ThinkAloudObstructionTopic, DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.402373]: Subclasses: []\n", + "[INFO] [1712351065.402674]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.403166]: Instances: []\n", + "[INFO] [1712351065.403445]: Direct Instances: []\n", + "[INFO] [1712351065.403708]: Inverse Restrictions: []\n", + "[INFO] [1712351065.403958]: -------------------\n", + "[INFO] [1712351065.404204]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712351065.404447]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351065.404726]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing, SOMA.ThinkAloudOpinionTopic}\n", + "[INFO] [1712351065.405006]: Subclasses: []\n", + "[INFO] [1712351065.405313]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.405815]: Instances: []\n", + "[INFO] [1712351065.406082]: Direct Instances: []\n", + "[INFO] [1712351065.406354]: Inverse Restrictions: []\n", + "[INFO] [1712351065.406604]: -------------------\n", + "[INFO] [1712351065.406854]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712351065.407098]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351065.407371]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudPerceptionTopic, owl.Thing}\n", + "[INFO] [1712351065.407638]: Subclasses: []\n", + "[INFO] [1712351065.407942]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.408437]: Instances: []\n", + "[INFO] [1712351065.408722]: Direct Instances: []\n", + "[INFO] [1712351065.409079]: Inverse Restrictions: []\n", + "[INFO] [1712351065.409369]: -------------------\n", + "[INFO] [1712351065.409633]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712351065.409899]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351065.410190]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.ThinkAloudPlanTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.410460]: Subclasses: []\n", + "[INFO] [1712351065.410762]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.411276]: Instances: []\n", + "[INFO] [1712351065.411545]: Direct Instances: []\n", + "[INFO] [1712351065.411803]: Inverse Restrictions: []\n", + "[INFO] [1712351065.412045]: -------------------\n", + "[INFO] [1712351065.412290]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712351065.412547]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712351065.412834]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351065.413110]: Subclasses: []\n", + "[INFO] [1712351065.413421]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.413913]: Instances: []\n", + "[INFO] [1712351065.414193]: Direct Instances: []\n", + "[INFO] [1712351065.414457]: Inverse Restrictions: []\n", + "[INFO] [1712351065.414706]: -------------------\n", + "[INFO] [1712351065.414956]: SOMA.Threshold \n", + "[INFO] [1712351065.415207]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712351065.415491]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, SOMA.Threshold, DUL.Entity, DUL.Concept, owl.Thing}\n", + "[INFO] [1712351065.415749]: Subclasses: []\n", + "[INFO] [1712351065.416043]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.416532]: Instances: []\n", + "[INFO] [1712351065.416819]: Direct Instances: []\n", + "[INFO] [1712351065.417134]: Inverse Restrictions: []\n", + "[INFO] [1712351065.417402]: -------------------\n", + "[INFO] [1712351065.417656]: SOMA.Throwing \n", + "[INFO] [1712351065.417905]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712351065.418182]: Ancestors: {DUL.SocialObject, SOMA.Throwing, SOMA.Actuating, DUL.Object, SOMA.Manipulating, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.418454]: Subclasses: []\n", + "[INFO] [1712351065.418767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.419258]: Instances: []\n", + "[INFO] [1712351065.419519]: Direct Instances: []\n", + "[INFO] [1712351065.419785]: Inverse Restrictions: []\n", + "[INFO] [1712351065.420033]: -------------------\n", + "[INFO] [1712351065.420282]: SOMA.TimeRole \n", + "[INFO] [1712351065.420522]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712351065.420805]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.421165]: Subclasses: []\n", + "[INFO] [1712351065.421513]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.422004]: Instances: []\n", + "[INFO] [1712351065.422287]: Direct Instances: []\n", + "[INFO] [1712351065.422557]: Inverse Restrictions: []\n", + "[INFO] [1712351065.422808]: -------------------\n", + "[INFO] [1712351065.423051]: SOMA.Transporting \n", + "[INFO] [1712351065.423295]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712351065.423569]: Ancestors: {SOMA.Transporting, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.423841]: Subclasses: []\n", + "[INFO] [1712351065.424146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.424644]: Instances: []\n", + "[INFO] [1712351065.424915]: Direct Instances: []\n", + "[INFO] [1712351065.425194]: Inverse Restrictions: []\n", + "[INFO] [1712351065.425450]: -------------------\n", + "[INFO] [1712351065.425701]: SOMA.TrashContainer \n", + "[INFO] [1712351065.425948]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712351065.426230]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.TrashContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.426500]: Subclasses: []\n", + "[INFO] [1712351065.426800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.427288]: Instances: []\n", + "[INFO] [1712351065.427548]: Direct Instances: []\n", + "[INFO] [1712351065.427811]: Inverse Restrictions: []\n", + "[INFO] [1712351065.428065]: -------------------\n", + "[INFO] [1712351065.428314]: SOMA.Triplestore \n", + "[INFO] [1712351065.428555]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712351065.428841]: Ancestors: {SOMA.SoftwareRole, SOMA.Triplestore, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, SOMA.GraphDatabase, DUL.Role, owl.Thing}\n", + "[INFO] [1712351065.429134]: Subclasses: []\n", + "[INFO] [1712351065.429445]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.429981]: Instances: []\n", + "[INFO] [1712351065.430268]: Direct Instances: []\n", + "[INFO] [1712351065.430537]: Inverse Restrictions: []\n", + "[INFO] [1712351065.430795]: -------------------\n", + "[INFO] [1712351065.431049]: SOMA.Turning \n", + "[INFO] [1712351065.431295]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712351065.431573]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.Turning, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", + "[INFO] [1712351065.431823]: Subclasses: []\n", + "[INFO] [1712351065.432122]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.432625]: Instances: []\n", + "[INFO] [1712351065.432910]: Direct Instances: []\n", + "[INFO] [1712351065.433175]: Inverse Restrictions: []\n", + "[INFO] [1712351065.433425]: -------------------\n", + "[INFO] [1712351065.433670]: SOMA.UnavailableSoftware \n", + "[INFO] [1712351065.433927]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712351065.434207]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, SOMA.UnavailableSoftware, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.434468]: Subclasses: []\n", + "[INFO] [1712351065.434766]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.435270]: Instances: []\n", + "[INFO] [1712351065.435545]: Direct Instances: []\n", + "[INFO] [1712351065.435805]: Inverse Restrictions: []\n", + "[INFO] [1712351065.436054]: -------------------\n", + "[INFO] [1712351065.436303]: SOMA.Unsuccessfulness \n", + "[INFO] [1712351065.436547]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712351065.436818]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351065.437092]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712351065.437397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.437898]: Instances: []\n", + "[INFO] [1712351065.438181]: Direct Instances: []\n", + "[INFO] [1712351065.438448]: Inverse Restrictions: []\n", + "[INFO] [1712351065.438705]: -------------------\n", + "[INFO] [1712351065.438953]: SOMA.VideoData \n", + "[INFO] [1712351065.439198]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712351065.439481]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.VideoData, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.439740]: Subclasses: []\n", + "[INFO] [1712351065.440038]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.440547]: Instances: []\n", + "[INFO] [1712351065.440833]: Direct Instances: []\n", + "[INFO] [1712351065.441108]: Inverse Restrictions: []\n", + "[INFO] [1712351065.441367]: -------------------\n", + "[INFO] [1712351065.441617]: SOMA.Wardrobe \n", + "[INFO] [1712351065.441869]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712351065.442159]: Ancestors: {DUL.DesignedArtifact, SOMA.Wardrobe, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, SOMA.Cupboard, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.442425]: Subclasses: []\n", + "[INFO] [1712351065.442721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.443213]: Instances: []\n", + "[INFO] [1712351065.443490]: Direct Instances: []\n", + "[INFO] [1712351065.443755]: Inverse Restrictions: []\n", + "[INFO] [1712351065.444004]: -------------------\n", + "[INFO] [1712351065.444250]: SOMA.WaterBottle \n", + "[INFO] [1712351065.444499]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712351065.444770]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bottle, DUL.Entity, SOMA.DesignedContainer, owl.Thing, SOMA.WaterBottle, DUL.PhysicalObject}\n", + "[INFO] [1712351065.445052]: Subclasses: []\n", + "[INFO] [1712351065.445362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.445862]: Instances: []\n", + "[INFO] [1712351065.446129]: Direct Instances: []\n", + "[INFO] [1712351065.446420]: Inverse Restrictions: []\n", + "[INFO] [1712351065.446691]: -------------------\n", + "[INFO] [1712351065.446966]: SOMA.WaterGlass \n", + "[INFO] [1712351065.447249]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712351065.447538]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.WaterGlass, SOMA.Glass, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351065.447794]: Subclasses: []\n", + "[INFO] [1712351065.448119]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.448641]: Instances: []\n", + "[INFO] [1712351065.448954]: Direct Instances: []\n", + "[INFO] [1712351065.449332]: Inverse Restrictions: []\n", + "[INFO] [1712351065.449630]: -------------------\n", + "[INFO] [1712351065.449912]: SOMA.WineBottle \n", + "[INFO] [1712351065.450185]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712351065.450481]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bottle, DUL.Entity, SOMA.DesignedContainer, SOMA.WineBottle, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.450748]: Subclasses: []\n", + "[INFO] [1712351065.451048]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.451540]: Instances: []\n", + "[INFO] [1712351065.451819]: Direct Instances: []\n", + "[INFO] [1712351065.452082]: Inverse Restrictions: []\n", + "[INFO] [1712351065.452326]: -------------------\n", + "[INFO] [1712351065.452566]: SOMA.WineGlass \n", + "[INFO] [1712351065.452845]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712351065.453190]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.WineGlass, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Glass, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351065.453470]: Subclasses: []\n", + "[INFO] [1712351065.453772]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.454269]: Instances: []\n", + "[INFO] [1712351065.454532]: Direct Instances: []\n", + "[INFO] [1712351065.454783]: Inverse Restrictions: []\n", + "[INFO] [1712351065.455035]: -------------------\n", + "[INFO] [1712351065.455286]: SOMA.3DPosition \n", + "[INFO] [1712351065.455553]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712351065.455822]: Ancestors: {SOMA.3DPosition, DUL.Entity, DUL.Region, DUL.SpaceRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.456083]: Subclasses: []\n", + "[INFO] [1712351065.456393]: Properties: [rdf-schema.label, SOMA.hasPositionData, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.456889]: Instances: []\n", + "[INFO] [1712351065.457195]: Direct Instances: []\n", + "[INFO] [1712351065.457465]: Inverse Restrictions: []\n", + "[INFO] [1712351065.457711]: -------------------\n", + "[INFO] [1712351065.457960]: SOMA.Affordance \n", + "[INFO] [1712351065.458207]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712351065.458472]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Affordance, DUL.Relation}\n", + "[INFO] [1712351065.458728]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712351065.459032]: Properties: [rdf-schema.comment, SOMA.definesTrigger, SOMA.definesBearer, DUL.definesTask, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.459527]: Instances: []\n", + "[INFO] [1712351065.459799]: Direct Instances: []\n", + "[INFO] [1712351065.460181]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712351065.460427]: -------------------\n", + "[INFO] [1712351065.460664]: SOMA.Disposition \n", + "[INFO] [1712351065.460926]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712351065.461188]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.461465]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712351065.461767]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.462312]: Instances: []\n", + "[INFO] [1712351065.462585]: Direct Instances: []\n", + "[INFO] [1712351065.462904]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712351065.463177]: -------------------\n", + "[INFO] [1712351065.463423]: SOMA.Setpoint \n", + "[INFO] [1712351065.463656]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712351065.463915]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Setpoint}\n", + "[INFO] [1712351065.464160]: Subclasses: []\n", + "[INFO] [1712351065.464444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.464928]: Instances: []\n", + "[INFO] [1712351065.465225]: Direct Instances: []\n", + "[INFO] [1712351065.465499]: Inverse Restrictions: []\n", + "[INFO] [1712351065.465742]: -------------------\n", + "[INFO] [1712351065.465974]: SOMA.Answer \n", + "[INFO] [1712351065.466208]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712351065.466460]: Ancestors: {SOMA.Answer, DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.466707]: Subclasses: []\n", + "[INFO] [1712351065.466996]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.467494]: Instances: []\n", + "[INFO] [1712351065.467756]: Direct Instances: []\n", + "[INFO] [1712351065.468050]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712351065.468295]: -------------------\n", + "[INFO] [1712351065.468527]: SOMA.Message \n", + "[INFO] [1712351065.468790]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712351065.469048]: Ancestors: {DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.469305]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712351065.469601]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.470112]: Instances: []\n", + "[INFO] [1712351065.470378]: Direct Instances: []\n", + "[INFO] [1712351065.470694]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351065.470946]: -------------------\n", + "[INFO] [1712351065.471193]: SOMA.ProcessType \n", + "[INFO] [1712351065.471444]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712351065.471694]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.471952]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712351065.472260]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.472839]: Instances: []\n", + "[INFO] [1712351065.473131]: Direct Instances: []\n", + "[INFO] [1712351065.473460]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712351065.473724]: -------------------\n", + "[INFO] [1712351065.473975]: SOMA.OrderedElement \n", + "[INFO] [1712351065.474221]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712351065.474465]: Ancestors: {SOMA.OrderedElement, owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712351065.474712]: Subclasses: []\n", + "[INFO] [1712351065.475024]: Properties: [rdf-schema.label, SOMA.isOrderedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.475513]: Instances: []\n", + "[INFO] [1712351065.475770]: Direct Instances: []\n", + "[INFO] [1712351065.476135]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712351065.476392]: -------------------\n", + "[INFO] [1712351065.476638]: SOMA.System \n", + "[INFO] [1712351065.476881]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712351065.477121]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.477365]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712351065.477667]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.478196]: Instances: []\n", + "[INFO] [1712351065.478460]: Direct Instances: []\n", + "[INFO] [1712351065.478709]: Inverse Restrictions: []\n", + "[INFO] [1712351065.478951]: -------------------\n", + "[INFO] [1712351065.479195]: SOMA.Binding \n", + "[INFO] [1712351065.479452]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712351065.479709]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351065.479967]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712351065.480290]: Properties: [rdf-schema.comment, Inverse(SOMA.hasBinding), SOMA.hasBindingFiller, SOMA.hasBindingRole, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.480945]: Instances: []\n", + "[INFO] [1712351065.481385]: Direct Instances: []\n", + "[INFO] [1712351065.481712]: Inverse Restrictions: []\n", + "[INFO] [1712351065.481990]: -------------------\n", + "[INFO] [1712351065.482256]: SOMA.Joint \n", + "[INFO] [1712351065.482522]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712351065.482785]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.483053]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712351065.483392]: Properties: [SOMA.hasChildLink, SOMA.hasParentLink, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.483916]: Instances: []\n", + "[INFO] [1712351065.484190]: Direct Instances: []\n", + "[INFO] [1712351065.484461]: Inverse Restrictions: []\n", + "[INFO] [1712351065.484725]: -------------------\n", + "[INFO] [1712351065.484984]: SOMA.Color \n", + "[INFO] [1712351065.485243]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712351065.485506]: Ancestors: {SOMA.Extrinsic, SOMA.Color, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.485761]: Subclasses: []\n", + "[INFO] [1712351065.486081]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351065.486582]: Instances: []\n", + "[INFO] [1712351065.486871]: Direct Instances: []\n", + "[INFO] [1712351065.487183]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712351065.487453]: -------------------\n", + "[INFO] [1712351065.487715]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712351065.487972]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351065.488257]: Ancestors: {SOMA.ExecutionStateRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.488524]: Subclasses: []\n", + "[INFO] [1712351065.488858]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.489434]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712351065.489758]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712351065.490051]: Inverse Restrictions: []\n", + "[INFO] [1712351065.490311]: -------------------\n", + "[INFO] [1712351065.490563]: SOMA.Feature \n", + "[INFO] [1712351065.490820]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712351065.491074]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing}\n", + "[INFO] [1712351065.491358]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712351065.491686]: Properties: [SOMA.isFeatureOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.492189]: Instances: []\n", + "[INFO] [1712351065.492461]: Direct Instances: []\n", + "[INFO] [1712351065.492783]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712351065.493047]: -------------------\n", + "[INFO] [1712351065.493301]: SOMA.FrictionAttribute \n", + "[INFO] [1712351065.493554]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712351065.493811]: Ancestors: {DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", + "[INFO] [1712351065.494087]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712351065.494398]: Properties: [SOMA.hasFrictionValue, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.494896]: Instances: []\n", + "[INFO] [1712351065.495166]: Direct Instances: []\n", + "[INFO] [1712351065.495540]: Inverse Restrictions: []\n", + "[INFO] [1712351065.495827]: -------------------\n", + "[INFO] [1712351065.496092]: SOMA.SituationTransition \n", + "[INFO] [1712351065.496366]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712351065.496653]: Ancestors: {DUL.Transition, DUL.Entity, SOMA.SituationTransition, DUL.Situation, owl.Thing}\n", + "[INFO] [1712351065.497008]: Subclasses: []\n", + "[INFO] [1712351065.497345]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.497855]: Instances: []\n", + "[INFO] [1712351065.498145]: Direct Instances: []\n", + "[INFO] [1712351065.499946]: Inverse Restrictions: []\n", + "[INFO] [1712351065.500229]: -------------------\n", + "[INFO] [1712351065.500508]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712351065.500765]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712351065.501034]: Ancestors: {owl.Thing, DUL.Entity, DUL.Situation, SOMA.NonmanifestedSituation}\n", + "[INFO] [1712351065.501291]: Subclasses: []\n", + "[INFO] [1712351065.501620]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.502129]: Instances: []\n", + "[INFO] [1712351065.502397]: Direct Instances: []\n", + "[INFO] [1712351065.503790]: Inverse Restrictions: []\n", + "[INFO] [1712351065.504064]: -------------------\n", + "[INFO] [1712351065.504323]: SOMA.JointLimit \n", + "[INFO] [1712351065.504586]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712351065.504846]: Ancestors: {SOMA.JointLimit, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.505097]: Subclasses: []\n", + "[INFO] [1712351065.505394]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.505902]: Instances: []\n", + "[INFO] [1712351065.506174]: Direct Instances: []\n", + "[INFO] [1712351065.506499]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712351065.506752]: -------------------\n", + "[INFO] [1712351065.506988]: SOMA.JointState \n", + "[INFO] [1712351065.507246]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712351065.507505]: Ancestors: {SOMA.JointState, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.507752]: Subclasses: []\n", + "[INFO] [1712351065.508058]: Properties: [SOMA.hasJointPosition, rdf-schema.label, rdf-schema.comment, SOMA.hasJointVelocity, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.508540]: Instances: []\n", + "[INFO] [1712351065.508811]: Direct Instances: []\n", + "[INFO] [1712351065.509138]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712351065.509384]: -------------------\n", + "[INFO] [1712351065.509619]: SOMA.Localization \n", + "[INFO] [1712351065.509858]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712351065.510112]: Ancestors: {SOMA.Extrinsic, SOMA.Localization, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.510358]: Subclasses: []\n", + "[INFO] [1712351065.510653]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351065.511141]: Instances: []\n", + "[INFO] [1712351065.511413]: Direct Instances: []\n", + "[INFO] [1712351065.512531]: Inverse Restrictions: []\n", + "[INFO] [1712351065.512800]: -------------------\n", + "[INFO] [1712351065.513088]: SOMA.MassAttribute \n", + "[INFO] [1712351065.513369]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712351065.513650]: Ancestors: {SOMA.MassAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.513913]: Subclasses: []\n", + "[INFO] [1712351065.514218]: Properties: [rdf-schema.label, SOMA.hasMassValue, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.514728]: Instances: []\n", + "[INFO] [1712351065.515009]: Direct Instances: []\n", + "[INFO] [1712351065.515276]: Inverse Restrictions: []\n", + "[INFO] [1712351065.515530]: -------------------\n", + "[INFO] [1712351065.515777]: SOMA.NetForce \n", + "[INFO] [1712351065.516028]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712351065.516304]: Ancestors: {SOMA.ForceAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing, SOMA.NetForce}\n", + "[INFO] [1712351065.516560]: Subclasses: []\n", + "[INFO] [1712351065.516930]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.517411]: Instances: []\n", + "[INFO] [1712351065.517681]: Direct Instances: []\n", + "[INFO] [1712351065.517935]: Inverse Restrictions: []\n", + "[INFO] [1712351065.518175]: -------------------\n", + "[INFO] [1712351065.518406]: SOMA.Succedence \n", + "[INFO] [1712351065.518650]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712351065.518906]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Succedence, DUL.Relation}\n", + "[INFO] [1712351065.519165]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712351065.519471]: Properties: [SOMA.hasSuccessor, rdf-schema.comment, SOMA.hasPredecessor, Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.519993]: Instances: []\n", + "[INFO] [1712351065.520265]: Direct Instances: []\n", + "[INFO] [1712351065.520532]: Inverse Restrictions: []\n", + "[INFO] [1712351065.520770]: -------------------\n", + "[INFO] [1712351065.521045]: SOMA.Preference \n", + "[INFO] [1712351065.521302]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712351065.521557]: Ancestors: {SOMA.SocialQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Preference}\n", + "[INFO] [1712351065.521807]: Subclasses: []\n", + "[INFO] [1712351065.522103]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.522583]: Instances: []\n", + "[INFO] [1712351065.522858]: Direct Instances: []\n", + "[INFO] [1712351065.523233]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712351065.523473]: -------------------\n", + "[INFO] [1712351065.523702]: SOMA.Shape \n", + "[INFO] [1712351065.523943]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712351065.524194]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Shape, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351065.524444]: Subclasses: []\n", + "[INFO] [1712351065.524741]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351065.525230]: Instances: []\n", + "[INFO] [1712351065.525500]: Direct Instances: []\n", + "[INFO] [1712351065.526621]: Inverse Restrictions: []\n", + "[INFO] [1712351065.526877]: -------------------\n", + "[INFO] [1712351065.527106]: SOMA.ShapeRegion \n", + "[INFO] [1712351065.527342]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712351065.527578]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.527850]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712351065.528150]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.528648]: Instances: []\n", + "[INFO] [1712351065.528925]: Direct Instances: []\n", + "[INFO] [1712351065.529698]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712351065.529974]: -------------------\n", + "[INFO] [1712351065.530226]: SOMA.SoftwareInstance \n", + "[INFO] [1712351065.530476]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712351065.530734]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", + "[INFO] [1712351065.530984]: Subclasses: []\n", + "[INFO] [1712351065.531288]: Properties: [rdf-schema.label, SOMA.isDesignedBy, rdf-schema.comment, DUL.actsFor, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.531772]: Instances: []\n", + "[INFO] [1712351065.532048]: Direct Instances: []\n", + "[INFO] [1712351065.532383]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712351065.532629]: -------------------\n", + "[INFO] [1712351065.532868]: SOMA.StateType \n", + "[INFO] [1712351065.533102]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712351065.533347]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.533615]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712351065.533909]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.534402]: Instances: []\n", + "[INFO] [1712351065.534681]: Direct Instances: []\n", + "[INFO] [1712351065.535017]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712351065.535260]: -------------------\n", + "[INFO] [1712351065.535495]: SOMA.PhysicalEffector \n", + "[INFO] [1712351065.535735]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712351065.535995]: Ancestors: {SOMA.PhysicalEffector, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.536265]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712351065.536572]: Properties: [rdf-schema.label, Inverse(DUL.hasPart), rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.537090]: Instances: []\n", + "[INFO] [1712351065.537364]: Direct Instances: []\n", + "[INFO] [1712351065.537626]: Inverse Restrictions: []\n", + "[INFO] [1712351065.537860]: -------------------\n", + "[INFO] [1712351065.538093]: SOMA.QueryingTask \n", + "[INFO] [1712351065.538348]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712351065.538592]: Ancestors: {SOMA.QueryingTask, owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712351065.538842]: Subclasses: []\n", + "[INFO] [1712351065.539135]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.539611]: Instances: []\n", + "[INFO] [1712351065.539880]: Direct Instances: []\n", + "[INFO] [1712351065.540220]: Inverse Restrictions: []\n", + "[INFO] [1712351065.540463]: -------------------\n", + "[INFO] [1712351065.540694]: SOMA.Order \n", + "[INFO] [1712351065.541061]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712351065.541396]: Ancestors: {DUL.FormalEntity, SOMA.Order, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.541681]: Subclasses: []\n", + "[INFO] [1712351065.541997]: Properties: [rdf-schema.label, SOMA.orders, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.542497]: Instances: []\n", + "[INFO] [1712351065.542777]: Direct Instances: []\n", + "[INFO] [1712351065.543144]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712351065.543386]: -------------------\n", + "[INFO] [1712351065.543620]: SOMA.State \n", + "[INFO] [1712351065.543850]: Super classes: [DUL.Event]\n", + "[INFO] [1712351065.544097]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing}\n", + "[INFO] [1712351065.544355]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712351065.544642]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.545140]: Instances: []\n", + "[INFO] [1712351065.545424]: Direct Instances: []\n", + "[INFO] [1712351065.545939]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712351065.546195]: -------------------\n", + "[INFO] [1712351065.546460]: SOMA.Transient \n", + "[INFO] [1712351065.546911]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712351065.547186]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, SOMA.Transient}\n", + "[INFO] [1712351065.547441]: Subclasses: []\n", + "[INFO] [1712351065.547738]: Properties: [SOMA.transitionsFrom, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.548281]: Instances: []\n", + "[INFO] [1712351065.548580]: Direct Instances: []\n", + "[INFO] [1712351065.548860]: Inverse Restrictions: []\n", + "[INFO] [1712351065.549107]: -------------------\n", + "[INFO] [1712351065.549347]: SOMA.ColorRegion \n", + "[INFO] [1712351065.549588]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712351065.549845]: Ancestors: {SOMA.ColorRegion, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.550108]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712351065.550411]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.550906]: Instances: []\n", + "[INFO] [1712351065.551185]: Direct Instances: []\n", + "[INFO] [1712351065.551518]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712351065.551761]: -------------------\n", + "[INFO] [1712351065.551997]: SOMA.ForceAttribute \n", + "[INFO] [1712351065.552241]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712351065.552497]: Ancestors: {SOMA.ForceAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.552759]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712351065.553067]: Properties: [rdf-schema.label, SOMA.hasForceValue, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.553557]: Instances: []\n", + "[INFO] [1712351065.553822]: Direct Instances: []\n", + "[INFO] [1712351065.554090]: Inverse Restrictions: []\n", + "[INFO] [1712351065.554326]: -------------------\n", + "[INFO] [1712351065.554558]: SOMA.API_Specification \n", + "[INFO] [1712351065.554787]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712351065.555025]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification}\n", + "[INFO] [1712351065.555275]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712351065.555580]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.556070]: Instances: []\n", + "[INFO] [1712351065.556330]: Direct Instances: []\n", + "[INFO] [1712351065.556583]: Inverse Restrictions: []\n", + "[INFO] [1712351065.556842]: -------------------\n", + "[INFO] [1712351065.557095]: SOMA.InterfaceSpecification \n", + "[INFO] [1712351065.557331]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712351065.557580]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.InterfaceSpecification}\n", + "[INFO] [1712351065.557832]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712351065.558117]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.558598]: Instances: []\n", + "[INFO] [1712351065.558879]: Direct Instances: []\n", + "[INFO] [1712351065.559201]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712351065.559528]: -------------------\n", + "[INFO] [1712351065.559871]: SOMA.AbductiveReasoning \n", + "[INFO] [1712351065.560109]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712351065.560348]: Ancestors: {SOMA.AbductiveReasoning, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351065.560600]: Subclasses: []\n", + "[INFO] [1712351065.560989]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.561503]: Instances: []\n", + "[INFO] [1712351065.561808]: Direct Instances: []\n", + "[INFO] [1712351065.562070]: Inverse Restrictions: []\n", + "[INFO] [1712351065.562308]: -------------------\n", + "[INFO] [1712351065.562553]: SOMA.Reasoning \n", + "[INFO] [1712351065.562784]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351065.563050]: Ancestors: {SOMA.Reasoning, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712351065.563317]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712351065.563626]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.564171]: Instances: []\n", + "[INFO] [1712351065.564488]: Direct Instances: []\n", + "[INFO] [1712351065.564797]: Inverse Restrictions: []\n", + "[INFO] [1712351065.565080]: -------------------\n", + "[INFO] [1712351065.565367]: SOMA.Accessor \n", + "[INFO] [1712351065.565669]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712351065.565992]: Ancestors: {SOMA.Accessor, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.566307]: Subclasses: []\n", + "[INFO] [1712351065.566687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.567332]: Instances: []\n", + "[INFO] [1712351065.567697]: Direct Instances: []\n", + "[INFO] [1712351065.568028]: Inverse Restrictions: []\n", + "[INFO] [1712351065.568333]: -------------------\n", + "[INFO] [1712351065.568624]: SOMA.Instrument \n", + "[INFO] [1712351065.568917]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712351065.569227]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.569547]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712351065.569904]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.570533]: Instances: []\n", + "[INFO] [1712351065.570846]: Direct Instances: []\n", + "[INFO] [1712351065.571262]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351065.571518]: -------------------\n", + "[INFO] [1712351065.571765]: SOMA.Accident \n", + "[INFO] [1712351065.572018]: Super classes: [DUL.Event]\n", + "[INFO] [1712351065.572273]: Ancestors: {DUL.Entity, DUL.Event, SOMA.Accident, owl.Thing}\n", + "[INFO] [1712351065.572523]: Subclasses: []\n", + "[INFO] [1712351065.572820]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.573324]: Instances: []\n", + "[INFO] [1712351065.573578]: Direct Instances: []\n", + "[INFO] [1712351065.573820]: Inverse Restrictions: []\n", + "[INFO] [1712351065.574043]: -------------------\n", + "[INFO] [1712351065.574265]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712351065.574495]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712351065.574735]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ActionExecutionPlan, owl.Thing, DUL.Plan}\n", + "[INFO] [1712351065.574979]: Subclasses: []\n", + "[INFO] [1712351065.575266]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.575741]: Instances: []\n", + "[INFO] [1712351065.576020]: Direct Instances: []\n", + "[INFO] [1712351065.576270]: Inverse Restrictions: []\n", + "[INFO] [1712351065.576505]: -------------------\n", + "[INFO] [1712351065.576732]: SOMA.Actuating \n", + "[INFO] [1712351065.576960]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351065.577204]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.577486]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712351065.577777]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.578296]: Instances: []\n", + "[INFO] [1712351065.578573]: Direct Instances: []\n", + "[INFO] [1712351065.578859]: Inverse Restrictions: []\n", + "[INFO] [1712351065.579093]: -------------------\n", + "[INFO] [1712351065.579324]: SOMA.PhysicalTask \n", + "[INFO] [1712351065.579569]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712351065.579825]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.580112]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712351065.580411]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.580997]: Instances: []\n", + "[INFO] [1712351065.581284]: Direct Instances: []\n", + "[INFO] [1712351065.581610]: Inverse Restrictions: []\n", + "[INFO] [1712351065.581852]: -------------------\n", + "[INFO] [1712351065.582092]: SOMA.AestheticDesign \n", + "[INFO] [1712351065.582330]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712351065.582583]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.AestheticDesign}\n", + "[INFO] [1712351065.582829]: Subclasses: []\n", + "[INFO] [1712351065.583113]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.583586]: Instances: []\n", + "[INFO] [1712351065.583860]: Direct Instances: []\n", + "[INFO] [1712351065.584108]: Inverse Restrictions: []\n", + "[INFO] [1712351065.584344]: -------------------\n", + "[INFO] [1712351065.584572]: SOMA.AgentRole \n", + "[INFO] [1712351065.584806]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712351065.585046]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.AgentRole, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351065.585300]: Subclasses: []\n", + "[INFO] [1712351065.585601]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.586081]: Instances: []\n", + "[INFO] [1712351065.586339]: Direct Instances: []\n", + "[INFO] [1712351065.586623]: Inverse Restrictions: []\n", + "[INFO] [1712351065.586890]: -------------------\n", + "[INFO] [1712351065.587149]: SOMA.CausativeRole \n", + "[INFO] [1712351065.587383]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351065.587619]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351065.587883]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712351065.588171]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.588658]: Instances: []\n", + "[INFO] [1712351065.588930]: Direct Instances: []\n", + "[INFO] [1712351065.589274]: Inverse Restrictions: []\n", + "[INFO] [1712351065.589538]: -------------------\n", + "[INFO] [1712351065.589786]: SOMA.Agonist \n", + "[INFO] [1712351065.590022]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.590262]: Ancestors: {DUL.SocialObject, SOMA.Agonist, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.590535]: Subclasses: []\n", + "[INFO] [1712351065.590830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.591311]: Instances: []\n", + "[INFO] [1712351065.591579]: Direct Instances: []\n", + "[INFO] [1712351065.591872]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712351065.592105]: -------------------\n", + "[INFO] [1712351065.592334]: SOMA.Patient \n", + "[INFO] [1712351065.592559]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351065.592808]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.593090]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712351065.593384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.593931]: Instances: []\n", + "[INFO] [1712351065.594208]: Direct Instances: []\n", + "[INFO] [1712351065.594617]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351065.594861]: -------------------\n", + "[INFO] [1712351065.595093]: SOMA.Algorithm \n", + "[INFO] [1712351065.595323]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712351065.595566]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Algorithm, DUL.Object, DUL.Entity, owl.Thing, DUL.Plan}\n", + "[INFO] [1712351065.595813]: Subclasses: []\n", + "[INFO] [1712351065.596100]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.596586]: Instances: []\n", + "[INFO] [1712351065.596866]: Direct Instances: []\n", + "[INFO] [1712351065.597190]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712351065.597433]: -------------------\n", + "[INFO] [1712351065.597666]: SOMA.Alteration \n", + "[INFO] [1712351065.597891]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712351065.598124]: Ancestors: {SOMA.Alteration, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.598386]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712351065.598687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.599179]: Instances: []\n", + "[INFO] [1712351065.599453]: Direct Instances: []\n", + "[INFO] [1712351065.599711]: Inverse Restrictions: []\n", + "[INFO] [1712351065.599939]: -------------------\n", + "[INFO] [1712351065.600166]: SOMA.AlterativeInteraction \n", + "[INFO] [1712351065.600386]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712351065.600626]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.AlterativeInteraction, DUL.EventType, SOMA.ForceInteraction}\n", + "[INFO] [1712351065.600876]: Subclasses: []\n", + "[INFO] [1712351065.601172]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.601650]: Instances: []\n", + "[INFO] [1712351065.601924]: Direct Instances: []\n", + "[INFO] [1712351065.602220]: Inverse Restrictions: []\n", + "[INFO] [1712351065.602453]: -------------------\n", + "[INFO] [1712351065.602681]: SOMA.ForceInteraction \n", + "[INFO] [1712351065.602916]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712351065.603155]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, SOMA.ForceInteraction}\n", + "[INFO] [1712351065.603421]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712351065.603734]: Properties: [rdf-schema.label, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712351065.604223]: Instances: []\n", + "[INFO] [1712351065.604476]: Direct Instances: []\n", + "[INFO] [1712351065.604727]: Inverse Restrictions: []\n", + "[INFO] [1712351065.604974]: -------------------\n", + "[INFO] [1712351065.605208]: SOMA.PreservativeInteraction \n", + "[INFO] [1712351065.605436]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712351065.605672]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.PreservativeInteraction, DUL.Concept, DUL.EventType, SOMA.ForceInteraction}\n", + "[INFO] [1712351065.605903]: Subclasses: []\n", + "[INFO] [1712351065.606200]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.606686]: Instances: []\n", + "[INFO] [1712351065.606936]: Direct Instances: []\n", + "[INFO] [1712351065.607219]: Inverse Restrictions: []\n", + "[INFO] [1712351065.607451]: -------------------\n", + "[INFO] [1712351065.607695]: SOMA.AlteredObject \n", + "[INFO] [1712351065.607932]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.608175]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.608417]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712351065.608693]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.609204]: Instances: []\n", + "[INFO] [1712351065.609463]: Direct Instances: []\n", + "[INFO] [1712351065.609788]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712351065.610028]: -------------------\n", + "[INFO] [1712351065.610264]: SOMA.Amateurish \n", + "[INFO] [1712351065.610500]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712351065.610750]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351065.610998]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712351065.611289]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.611779]: Instances: []\n", + "[INFO] [1712351065.612049]: Direct Instances: []\n", + "[INFO] [1712351065.612325]: Inverse Restrictions: []\n", + "[INFO] [1712351065.612573]: -------------------\n", + "[INFO] [1712351065.612813]: SOMA.AnsweringTask \n", + "[INFO] [1712351065.613061]: Super classes: [owl.Thing]\n", + "[INFO] [1712351065.613315]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", + "[INFO] [1712351065.613573]: Subclasses: []\n", + "[INFO] [1712351065.613871]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.614362]: Instances: []\n", + "[INFO] [1712351065.614616]: Direct Instances: []\n", + "[INFO] [1712351065.614894]: Inverse Restrictions: []\n", + "[INFO] [1712351065.615147]: -------------------\n", + "[INFO] [1712351065.615386]: SOMA.CommandingTask \n", + "[INFO] [1712351065.615623]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712351065.615874]: Ancestors: {SOMA.CommandingTask, owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712351065.616131]: Subclasses: []\n", + "[INFO] [1712351065.616426]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.616911]: Instances: []\n", + "[INFO] [1712351065.617182]: Direct Instances: []\n", + "[INFO] [1712351065.617512]: Inverse Restrictions: []\n", + "[INFO] [1712351065.617754]: -------------------\n", + "[INFO] [1712351065.617992]: SOMA.IllocutionaryTask \n", + "[INFO] [1712351065.618237]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712351065.618489]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712351065.618745]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712351065.619038]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.619529]: Instances: []\n", + "[INFO] [1712351065.619802]: Direct Instances: []\n", + "[INFO] [1712351065.620097]: Inverse Restrictions: []\n", + "[INFO] [1712351065.620336]: -------------------\n", + "[INFO] [1712351065.620577]: SOMA.Antagonist \n", + "[INFO] [1712351065.620818]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.621077]: Ancestors: {DUL.SocialObject, SOMA.Antagonist, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.621324]: Subclasses: []\n", + "[INFO] [1712351065.621607]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.622085]: Instances: []\n", + "[INFO] [1712351065.622346]: Direct Instances: []\n", + "[INFO] [1712351065.622638]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712351065.622885]: -------------------\n", + "[INFO] [1712351065.623118]: SOMA.Appliance \n", + "[INFO] [1712351065.623348]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712351065.623584]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.623845]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712351065.624135]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.624630]: Instances: []\n", + "[INFO] [1712351065.624887]: Direct Instances: []\n", + "[INFO] [1712351065.625146]: Inverse Restrictions: []\n", + "[INFO] [1712351065.625390]: -------------------\n", + "[INFO] [1712351065.625623]: SOMA.Approaching \n", + "[INFO] [1712351065.625849]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351065.626091]: Ancestors: {SOMA.Approaching, DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.626342]: Subclasses: []\n", + "[INFO] [1712351065.626631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.627109]: Instances: []\n", + "[INFO] [1712351065.627361]: Direct Instances: []\n", + "[INFO] [1712351065.627615]: Inverse Restrictions: []\n", + "[INFO] [1712351065.627853]: -------------------\n", + "[INFO] [1712351065.628091]: SOMA.Locomotion \n", + "[INFO] [1712351065.628320]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712351065.628567]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.628838]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712351065.629148]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.629664]: Instances: []\n", + "[INFO] [1712351065.629977]: Direct Instances: []\n", + "[INFO] [1712351065.630260]: Inverse Restrictions: []\n", + "[INFO] [1712351065.630509]: -------------------\n", + "[INFO] [1712351065.630755]: SOMA.ArchiveFile \n", + "[INFO] [1712351065.630990]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712351065.631233]: Ancestors: {SOMA.ArchiveFile, DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", + "[INFO] [1712351065.631482]: Subclasses: []\n", + "[INFO] [1712351065.631786]: Properties: [rdf-schema.label, DUL.realizes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.632273]: Instances: []\n", + "[INFO] [1712351065.632528]: Direct Instances: []\n", + "[INFO] [1712351065.632790]: Inverse Restrictions: []\n", + "[INFO] [1712351065.633031]: -------------------\n", + "[INFO] [1712351065.633268]: SOMA.ArchiveText \n", + "[INFO] [1712351065.633499]: Super classes: [owl.Thing]\n", + "[INFO] [1712351065.633733]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", + "[INFO] [1712351065.633968]: Subclasses: []\n", + "[INFO] [1712351065.634272]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.expresses, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.634761]: Instances: []\n", + "[INFO] [1712351065.635013]: Direct Instances: []\n", + "[INFO] [1712351065.635338]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712351065.635592]: -------------------\n", + "[INFO] [1712351065.635834]: SOMA.Digital_File \n", + "[INFO] [1712351065.636079]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712351065.636324]: Ancestors: {DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", + "[INFO] [1712351065.636571]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712351065.636881]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.realizes, SOMA.hasNameString, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.637381]: Instances: []\n", + "[INFO] [1712351065.637633]: Direct Instances: []\n", + "[INFO] [1712351065.638726]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712351065.638994]: -------------------\n", + "[INFO] [1712351065.639240]: SOMA.ArchiveFormat \n", + "[INFO] [1712351065.639485]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712351065.639744]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.ArchiveFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351065.640005]: Subclasses: []\n", + "[INFO] [1712351065.640288]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.640794]: Instances: []\n", + "[INFO] [1712351065.641050]: Direct Instances: []\n", + "[INFO] [1712351065.641344]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712351065.641580]: -------------------\n", + "[INFO] [1712351065.641820]: SOMA.File_format \n", + "[INFO] [1712351065.642053]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351065.642291]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351065.642542]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712351065.642825]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.643323]: Instances: []\n", + "[INFO] [1712351065.643586]: Direct Instances: []\n", + "[INFO] [1712351065.643841]: Inverse Restrictions: []\n", + "[INFO] [1712351065.644070]: -------------------\n", + "[INFO] [1712351065.644296]: SOMA.FileConfiguration \n", + "[INFO] [1712351065.644530]: Super classes: [owl.Thing]\n", + "[INFO] [1712351065.644761]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", + "[INFO] [1712351065.645003]: Subclasses: []\n", + "[INFO] [1712351065.645295]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.645774]: Instances: []\n", + "[INFO] [1712351065.646027]: Direct Instances: []\n", + "[INFO] [1712351065.646328]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712351065.646587]: -------------------\n", + "[INFO] [1712351065.646832]: SOMA.Structured_Text \n", + "[INFO] [1712351065.647065]: Super classes: [owl.Thing]\n", + "[INFO] [1712351065.647299]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", + "[INFO] [1712351065.647543]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712351065.647830]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.648330]: Instances: []\n", + "[INFO] [1712351065.648600]: Direct Instances: []\n", + "[INFO] [1712351065.649040]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712351065.649275]: -------------------\n", + "[INFO] [1712351065.649501]: SOMA.AreaSurveying \n", + "[INFO] [1712351065.649737]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712351065.649976]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", + "[INFO] [1712351065.650215]: Subclasses: []\n", + "[INFO] [1712351065.650495]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.650977]: Instances: []\n", + "[INFO] [1712351065.651237]: Direct Instances: []\n", + "[INFO] [1712351065.651480]: Inverse Restrictions: []\n", + "[INFO] [1712351065.651705]: -------------------\n", + "[INFO] [1712351065.651929]: SOMA.Perceiving \n", + "[INFO] [1712351065.652157]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712351065.652396]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712351065.652650]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712351065.652940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.653426]: Instances: []\n", + "[INFO] [1712351065.653694]: Direct Instances: []\n", + "[INFO] [1712351065.653954]: Inverse Restrictions: []\n", + "[INFO] [1712351065.654180]: -------------------\n", + "[INFO] [1712351065.654405]: SOMA.Arm \n", + "[INFO] [1712351065.654630]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712351065.654875]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Arm, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712351065.655114]: Subclasses: []\n", + "[INFO] [1712351065.655393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.655864]: Instances: []\n", + "[INFO] [1712351065.656125]: Direct Instances: []\n", + "[INFO] [1712351065.656419]: Inverse Restrictions: []\n", + "[INFO] [1712351065.656650]: -------------------\n", + "[INFO] [1712351065.656881]: SOMA.Limb \n", + "[INFO] [1712351065.657109]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712351065.657349]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712351065.657610]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712351065.657907]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.658394]: Instances: []\n", + "[INFO] [1712351065.658668]: Direct Instances: []\n", + "[INFO] [1712351065.658985]: Inverse Restrictions: []\n", + "[INFO] [1712351065.659220]: -------------------\n", + "[INFO] [1712351065.659448]: SOMA.Arranging \n", + "[INFO] [1712351065.659674]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712351065.659911]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Arranging, owl.Thing}\n", + "[INFO] [1712351065.660162]: Subclasses: []\n", + "[INFO] [1712351065.660450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.660940]: Instances: []\n", + "[INFO] [1712351065.661200]: Direct Instances: []\n", + "[INFO] [1712351065.661463]: Inverse Restrictions: []\n", + "[INFO] [1712351065.661695]: -------------------\n", + "[INFO] [1712351065.661925]: SOMA.Constructing \n", + "[INFO] [1712351065.662149]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351065.662381]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.662642]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712351065.662941]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.663455]: Instances: []\n", + "[INFO] [1712351065.663735]: Direct Instances: []\n", + "[INFO] [1712351065.664002]: Inverse Restrictions: []\n", + "[INFO] [1712351065.664233]: -------------------\n", + "[INFO] [1712351065.664461]: SOMA.ArtificialAgent \n", + "[INFO] [1712351065.664687]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712351065.664939]: Ancestors: {DUL.Object, DUL.Entity, SOMA.ArtificialAgent, DUL.Agent, DUL.PhysicalAgent, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.665189]: Subclasses: []\n", + "[INFO] [1712351065.665474]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.665939]: Instances: []\n", + "[INFO] [1712351065.666202]: Direct Instances: []\n", + "[INFO] [1712351065.666445]: Inverse Restrictions: []\n", + "[INFO] [1712351065.666671]: -------------------\n", + "[INFO] [1712351065.666893]: SOMA.Assembling \n", + "[INFO] [1712351065.667122]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712351065.667363]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.Assembling, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.667597]: Subclasses: []\n", + "[INFO] [1712351065.667874]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.668352]: Instances: []\n", + "[INFO] [1712351065.668610]: Direct Instances: []\n", + "[INFO] [1712351065.668863]: Inverse Restrictions: []\n", + "[INFO] [1712351065.669089]: -------------------\n", + "[INFO] [1712351065.669315]: SOMA.AssertionTask \n", + "[INFO] [1712351065.669556]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712351065.669794]: Ancestors: {SOMA.AssertionTask, owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712351065.670030]: Subclasses: []\n", + "[INFO] [1712351065.670312]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.670809]: Instances: []\n", + "[INFO] [1712351065.671074]: Direct Instances: []\n", + "[INFO] [1712351065.671321]: Inverse Restrictions: []\n", + "[INFO] [1712351065.671641]: -------------------\n", + "[INFO] [1712351065.671891]: SOMA.DeclarativeClause \n", + "[INFO] [1712351065.672128]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712351065.672373]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing, SOMA.DeclarativeClause}\n", + "[INFO] [1712351065.672610]: Subclasses: []\n", + "[INFO] [1712351065.672901]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.673399]: Instances: []\n", + "[INFO] [1712351065.673666]: Direct Instances: []\n", + "[INFO] [1712351065.673962]: Inverse Restrictions: []\n", + "[INFO] [1712351065.674199]: -------------------\n", + "[INFO] [1712351065.674430]: SOMA.AssumingArmPose \n", + "[INFO] [1712351065.674662]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712351065.674909]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.AssumingArmPose, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.675160]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712351065.675444]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.675924]: Instances: []\n", + "[INFO] [1712351065.676193]: Direct Instances: []\n", + "[INFO] [1712351065.676445]: Inverse Restrictions: []\n", + "[INFO] [1712351065.676685]: -------------------\n", + "[INFO] [1712351065.676919]: SOMA.AssumingPose \n", + "[INFO] [1712351065.677146]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351065.677382]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.677645]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712351065.677944]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.678425]: Instances: []\n", + "[INFO] [1712351065.678692]: Direct Instances: []\n", + "[INFO] [1712351065.678952]: Inverse Restrictions: []\n", + "[INFO] [1712351065.679178]: -------------------\n", + "[INFO] [1712351065.679402]: SOMA.AttentionShift \n", + "[INFO] [1712351065.679623]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712351065.679894]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AttentionShift, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.680155]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712351065.680445]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.680922]: Instances: []\n", + "[INFO] [1712351065.681194]: Direct Instances: []\n", + "[INFO] [1712351065.681450]: Inverse Restrictions: []\n", + "[INFO] [1712351065.681680]: -------------------\n", + "[INFO] [1712351065.681913]: SOMA.MentalTask \n", + "[INFO] [1712351065.682405]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712351065.682835]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.683142]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712351065.683456]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.683976]: Instances: []\n", + "[INFO] [1712351065.684261]: Direct Instances: []\n", + "[INFO] [1712351065.684561]: Inverse Restrictions: []\n", + "[INFO] [1712351065.684800]: -------------------\n", + "[INFO] [1712351065.685031]: SOMA.AvoidedObject \n", + "[INFO] [1712351065.685265]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.685516]: Ancestors: {DUL.SocialObject, SOMA.AvoidedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.685764]: Subclasses: []\n", + "[INFO] [1712351065.686051]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.686522]: Instances: []\n", + "[INFO] [1712351065.686771]: Direct Instances: []\n", + "[INFO] [1712351065.687027]: Inverse Restrictions: []\n", + "[INFO] [1712351065.687258]: -------------------\n", + "[INFO] [1712351065.687488]: SOMA.Avoiding \n", + "[INFO] [1712351065.687714]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712351065.687966]: Ancestors: {SOMA.Avoiding, DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.688233]: Subclasses: []\n", + "[INFO] [1712351065.688537]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.689044]: Instances: []\n", + "[INFO] [1712351065.689397]: Direct Instances: []\n", + "[INFO] [1712351065.689821]: Inverse Restrictions: []\n", + "[INFO] [1712351065.690131]: -------------------\n", + "[INFO] [1712351065.690400]: SOMA.Navigating \n", + "[INFO] [1712351065.690680]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351065.691007]: Ancestors: {DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.691305]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712351065.691617]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.692113]: Instances: []\n", + "[INFO] [1712351065.692394]: Direct Instances: []\n", + "[INFO] [1712351065.692659]: Inverse Restrictions: []\n", + "[INFO] [1712351065.692902]: -------------------\n", + "[INFO] [1712351065.693129]: SOMA.Barrier \n", + "[INFO] [1712351065.693352]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712351065.693588]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.693849]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712351065.694139]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.694616]: Instances: []\n", + "[INFO] [1712351065.694879]: Direct Instances: []\n", + "[INFO] [1712351065.695181]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712351065.695419]: -------------------\n", + "[INFO] [1712351065.695646]: SOMA.Restrictor \n", + "[INFO] [1712351065.695869]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712351065.696107]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.696373]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712351065.696695]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.697222]: Instances: []\n", + "[INFO] [1712351065.697525]: Direct Instances: []\n", + "[INFO] [1712351065.697890]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712351065.698135]: -------------------\n", + "[INFO] [1712351065.698370]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712351065.698608]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712351065.698855]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.699120]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712351065.699423]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.699931]: Instances: []\n", + "[INFO] [1712351065.700207]: Direct Instances: []\n", + "[INFO] [1712351065.700461]: Inverse Restrictions: []\n", + "[INFO] [1712351065.700691]: -------------------\n", + "[INFO] [1712351065.700921]: SOMA.BeneficiaryRole \n", + "[INFO] [1712351065.701158]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712351065.701406]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, owl.Thing}\n", + "[INFO] [1712351065.701656]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712351065.701944]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.702430]: Instances: []\n", + "[INFO] [1712351065.702707]: Direct Instances: []\n", + "[INFO] [1712351065.702968]: Inverse Restrictions: []\n", + "[INFO] [1712351065.703199]: -------------------\n", + "[INFO] [1712351065.703431]: SOMA.GoalRole \n", + "[INFO] [1712351065.703657]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351065.703899]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.704165]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712351065.704463]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.704957]: Instances: []\n", + "[INFO] [1712351065.705221]: Direct Instances: []\n", + "[INFO] [1712351065.705482]: Inverse Restrictions: []\n", + "[INFO] [1712351065.705715]: -------------------\n", + "[INFO] [1712351065.705943]: SOMA.CounterfactualBinding \n", + "[INFO] [1712351065.706170]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712351065.706402]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, SOMA.CounterfactualBinding, DUL.Relation}\n", + "[INFO] [1712351065.706651]: Subclasses: []\n", + "[INFO] [1712351065.706950]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.707429]: Instances: []\n", + "[INFO] [1712351065.707709]: Direct Instances: []\n", + "[INFO] [1712351065.708040]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712351065.708273]: -------------------\n", + "[INFO] [1712351065.708503]: SOMA.FactualBinding \n", + "[INFO] [1712351065.708727]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712351065.708974]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, SOMA.FactualBinding, DUL.Relation}\n", + "[INFO] [1712351065.709224]: Subclasses: []\n", + "[INFO] [1712351065.709517]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.709986]: Instances: []\n", + "[INFO] [1712351065.710243]: Direct Instances: []\n", + "[INFO] [1712351065.710572]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712351065.710806]: -------------------\n", + "[INFO] [1712351065.711032]: SOMA.RoleFillerBinding \n", + "[INFO] [1712351065.711256]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712351065.711489]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, SOMA.RoleFillerBinding, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351065.711737]: Subclasses: []\n", + "[INFO] [1712351065.712040]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.712517]: Instances: []\n", + "[INFO] [1712351065.712763]: Direct Instances: []\n", + "[INFO] [1712351065.713062]: Inverse Restrictions: []\n", + "[INFO] [1712351065.713319]: -------------------\n", + "[INFO] [1712351065.713552]: SOMA.RoleRoleBinding \n", + "[INFO] [1712351065.713792]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712351065.714033]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.RoleRoleBinding, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351065.714287]: Subclasses: []\n", + "[INFO] [1712351065.714577]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.715061]: Instances: []\n", + "[INFO] [1712351065.715338]: Direct Instances: []\n", + "[INFO] [1712351065.715640]: Inverse Restrictions: []\n", + "[INFO] [1712351065.715886]: -------------------\n", + "[INFO] [1712351065.716118]: SOMA.DesignedComponent \n", + "[INFO] [1712351065.716353]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712351065.716605]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.716880]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712351065.717174]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.717696]: Instances: []\n", + "[INFO] [1712351065.717962]: Direct Instances: []\n", + "[INFO] [1712351065.718221]: Inverse Restrictions: []\n", + "[INFO] [1712351065.718447]: -------------------\n", + "[INFO] [1712351065.718678]: SOMA.Blockage \n", + "[INFO] [1712351065.718919]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712351065.719157]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.719412]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712351065.719706]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.720188]: Instances: []\n", + "[INFO] [1712351065.720437]: Direct Instances: []\n", + "[INFO] [1712351065.720683]: Inverse Restrictions: []\n", + "[INFO] [1712351065.720930]: -------------------\n", + "[INFO] [1712351065.721162]: SOMA.BlockedObject \n", + "[INFO] [1712351065.721389]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.721623]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, SOMA.BlockedObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.721867]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712351065.722148]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.722636]: Instances: []\n", + "[INFO] [1712351065.722897]: Direct Instances: []\n", + "[INFO] [1712351065.723185]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712351065.723413]: -------------------\n", + "[INFO] [1712351065.723637]: SOMA.BodyMovement \n", + "[INFO] [1712351065.723894]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712351065.724143]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, DUL.Concept, SOMA.ProcessType, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.724404]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712351065.724690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.725229]: Instances: []\n", + "[INFO] [1712351065.725500]: Direct Instances: []\n", + "[INFO] [1712351065.725756]: Inverse Restrictions: []\n", + "[INFO] [1712351065.725990]: -------------------\n", + "[INFO] [1712351065.726217]: SOMA.Motion \n", + "[INFO] [1712351065.726447]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712351065.726694]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.726953]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712351065.727236]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.727762]: Instances: []\n", + "[INFO] [1712351065.728042]: Direct Instances: []\n", + "[INFO] [1712351065.728311]: Inverse Restrictions: []\n", + "[INFO] [1712351065.728551]: -------------------\n", + "[INFO] [1712351065.728783]: SOMA.Boiling \n", + "[INFO] [1712351065.729016]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712351065.729268]: Ancestors: {SOMA.Alteration, SOMA.Vaporizing, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Boiling, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.729522]: Subclasses: []\n", + "[INFO] [1712351065.729843]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.730338]: Instances: []\n", + "[INFO] [1712351065.730611]: Direct Instances: []\n", + "[INFO] [1712351065.730870]: Inverse Restrictions: []\n", + "[INFO] [1712351065.731097]: -------------------\n", + "[INFO] [1712351065.731322]: SOMA.Vaporizing \n", + "[INFO] [1712351065.731556]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712351065.731816]: Ancestors: {SOMA.Alteration, SOMA.Vaporizing, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.732069]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712351065.732363]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment]\n", + "[INFO] [1712351065.732846]: Instances: []\n", + "[INFO] [1712351065.733122]: Direct Instances: []\n", + "[INFO] [1712351065.733377]: Inverse Restrictions: []\n", + "[INFO] [1712351065.733606]: -------------------\n", + "[INFO] [1712351065.733830]: SOMA.DesignedContainer \n", + "[INFO] [1712351065.734059]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712351065.734308]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.734577]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", + "[INFO] [1712351065.734870]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.735410]: Instances: []\n", + "[INFO] [1712351065.735679]: Direct Instances: []\n", + "[INFO] [1712351065.735943]: Inverse Restrictions: []\n", + "[INFO] [1712351065.736178]: -------------------\n", + "[INFO] [1712351065.736405]: SOMA.BoxShape \n", + "[INFO] [1712351065.736641]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712351065.736896]: Ancestors: {SOMA.BoxShape, SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.737140]: Subclasses: []\n", + "[INFO] [1712351065.737432]: Properties: [rdf-schema.comment, SOMA.hasHeight, rdf-schema.label, SOMA.hasWidth, SOMA.hasLength, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.737906]: Instances: []\n", + "[INFO] [1712351065.738168]: Direct Instances: []\n", + "[INFO] [1712351065.738455]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712351065.738691]: -------------------\n", + "[INFO] [1712351065.738918]: SOMA.Deposition \n", + "[INFO] [1712351065.739154]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712351065.739402]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.739651]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712351065.739937]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.740417]: Instances: []\n", + "[INFO] [1712351065.740683]: Direct Instances: []\n", + "[INFO] [1712351065.741014]: Inverse Restrictions: []\n", + "[INFO] [1712351065.741245]: -------------------\n", + "[INFO] [1712351065.741468]: SOMA.CanCut \n", + "[INFO] [1712351065.741698]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712351065.741945]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.742187]: Subclasses: []\n", + "[INFO] [1712351065.742470]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.742941]: Instances: []\n", + "[INFO] [1712351065.743210]: Direct Instances: []\n", + "[INFO] [1712351065.743460]: Inverse Restrictions: []\n", + "[INFO] [1712351065.743687]: -------------------\n", + "[INFO] [1712351065.743913]: SOMA.Variability \n", + "[INFO] [1712351065.744143]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712351065.744375]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.744641]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712351065.744934]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.745428]: Instances: []\n", + "[INFO] [1712351065.745684]: Direct Instances: []\n", + "[INFO] [1712351065.745944]: Inverse Restrictions: []\n", + "[INFO] [1712351065.746179]: -------------------\n", + "[INFO] [1712351065.746433]: SOMA.Cutter \n", + "[INFO] [1712351065.746687]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712351065.746928]: Ancestors: {SOMA.Tool, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.Cutter, owl.Thing}\n", + "[INFO] [1712351065.747169]: Subclasses: []\n", + "[INFO] [1712351065.747457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.747933]: Instances: []\n", + "[INFO] [1712351065.748177]: Direct Instances: []\n", + "[INFO] [1712351065.748481]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712351065.748726]: -------------------\n", + "[INFO] [1712351065.748968]: SOMA.CutObject \n", + "[INFO] [1712351065.749196]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712351065.749432]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, DUL.Concept, SOMA.CutObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.749664]: Subclasses: []\n", + "[INFO] [1712351065.749945]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.750428]: Instances: []\n", + "[INFO] [1712351065.750677]: Direct Instances: []\n", + "[INFO] [1712351065.750994]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712351065.751225]: -------------------\n", + "[INFO] [1712351065.751451]: SOMA.Capability \n", + "[INFO] [1712351065.751705]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712351065.751950]: Ancestors: {SOMA.Extrinsic, SOMA.Capability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.752197]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712351065.752481]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.752974]: Instances: []\n", + "[INFO] [1712351065.753240]: Direct Instances: []\n", + "[INFO] [1712351065.753498]: Inverse Restrictions: []\n", + "[INFO] [1712351065.753723]: -------------------\n", + "[INFO] [1712351065.753953]: SOMA.Capacity \n", + "[INFO] [1712351065.754186]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351065.754421]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Capacity, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351065.754656]: Subclasses: []\n", + "[INFO] [1712351065.754931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.755420]: Instances: []\n", + "[INFO] [1712351065.755692]: Direct Instances: []\n", + "[INFO] [1712351065.755986]: Inverse Restrictions: []\n", + "[INFO] [1712351065.756219]: -------------------\n", + "[INFO] [1712351065.756454]: SOMA.Intrinsic \n", + "[INFO] [1712351065.756689]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712351065.756937]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351065.757198]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712351065.757487]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.758000]: Instances: []\n", + "[INFO] [1712351065.758264]: Direct Instances: []\n", + "[INFO] [1712351065.758528]: Inverse Restrictions: []\n", + "[INFO] [1712351065.758757]: -------------------\n", + "[INFO] [1712351065.758993]: SOMA.Catching \n", + "[INFO] [1712351065.759227]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351065.759467]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.Catching, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.759701]: Subclasses: []\n", + "[INFO] [1712351065.759994]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.760482]: Instances: []\n", + "[INFO] [1712351065.761062]: Direct Instances: []\n", + "[INFO] [1712351065.761426]: Inverse Restrictions: []\n", + "[INFO] [1712351065.761691]: -------------------\n", + "[INFO] [1712351065.762052]: SOMA.PickingUp \n", + "[INFO] [1712351065.762425]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351065.762795]: Ancestors: {SOMA.PickingUp, DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.763159]: Subclasses: []\n", + "[INFO] [1712351065.763474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.763958]: Instances: []\n", + "[INFO] [1712351065.764249]: Direct Instances: []\n", + "[INFO] [1712351065.764518]: Inverse Restrictions: []\n", + "[INFO] [1712351065.764757]: -------------------\n", + "[INFO] [1712351065.764997]: SOMA.CausalEventRole \n", + "[INFO] [1712351065.765239]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712351065.765565]: Ancestors: {SOMA.CausalEventRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351065.765846]: Subclasses: []\n", + "[INFO] [1712351065.766160]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.766660]: Instances: []\n", + "[INFO] [1712351065.766924]: Direct Instances: []\n", + "[INFO] [1712351065.767227]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351065.767473]: -------------------\n", + "[INFO] [1712351065.767706]: SOMA.EventAdjacentRole \n", + "[INFO] [1712351065.767934]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712351065.768167]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.768419]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712351065.768720]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.769391]: Instances: []\n", + "[INFO] [1712351065.769675]: Direct Instances: []\n", + "[INFO] [1712351065.769939]: Inverse Restrictions: []\n", + "[INFO] [1712351065.770174]: -------------------\n", + "[INFO] [1712351065.770405]: SOMA.CausedMotionTheory \n", + "[INFO] [1712351065.770653]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712351065.770911]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CausedMotionTheory, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.771160]: Subclasses: []\n", + "[INFO] [1712351065.771456]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.hasPart, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.771935]: Instances: []\n", + "[INFO] [1712351065.772207]: Direct Instances: []\n", + "[INFO] [1712351065.772459]: Inverse Restrictions: []\n", + "[INFO] [1712351065.772688]: -------------------\n", + "[INFO] [1712351065.772917]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712351065.773139]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712351065.773373]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.773639]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712351065.773927]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.774426]: Instances: []\n", + "[INFO] [1712351065.774705]: Direct Instances: []\n", + "[INFO] [1712351065.775038]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.StateTransition, SOMA.Scene]\n", + "[INFO] [1712351065.775278]: -------------------\n", + "[INFO] [1712351065.775510]: SOMA.PerformerRole \n", + "[INFO] [1712351065.775746]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712351065.775993]: Ancestors: {DUL.SocialObject, SOMA.PerformerRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351065.776253]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712351065.776549]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.777044]: Instances: []\n", + "[INFO] [1712351065.777323]: Direct Instances: []\n", + "[INFO] [1712351065.777651]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351065.777894]: -------------------\n", + "[INFO] [1712351065.778128]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712351065.778369]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712351065.778611]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.SourcePathGoalTheory, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.778869]: Subclasses: []\n", + "[INFO] [1712351065.779169]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351065.779648]: Instances: []\n", + "[INFO] [1712351065.779913]: Direct Instances: []\n", + "[INFO] [1712351065.780209]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712351065.780457]: -------------------\n", + "[INFO] [1712351065.780693]: SOMA.RoomSurface \n", + "[INFO] [1712351065.780926]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712351065.781177]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.781431]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712351065.781721]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.782214]: Instances: []\n", + "[INFO] [1712351065.782484]: Direct Instances: []\n", + "[INFO] [1712351065.782758]: Inverse Restrictions: []\n", + "[INFO] [1712351065.783001]: -------------------\n", + "[INFO] [1712351065.783234]: SOMA.Channel \n", + "[INFO] [1712351065.783472]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712351065.783721]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, SOMA.Channel, DUL.Entity, SOMA.PathRole, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.783961]: Subclasses: []\n", + "[INFO] [1712351065.784255]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.784739]: Instances: []\n", + "[INFO] [1712351065.785017]: Direct Instances: []\n", + "[INFO] [1712351065.785325]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351065.785560]: -------------------\n", + "[INFO] [1712351065.785789]: SOMA.PathRole \n", + "[INFO] [1712351065.786017]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712351065.786266]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PathRole, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.786520]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712351065.786808]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.787287]: Instances: []\n", + "[INFO] [1712351065.787554]: Direct Instances: []\n", + "[INFO] [1712351065.787854]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712351065.788101]: -------------------\n", + "[INFO] [1712351065.788348]: SOMA.CommunicationTask \n", + "[INFO] [1712351065.788661]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712351065.788938]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.789209]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712351065.789517]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.790003]: Instances: []\n", + "[INFO] [1712351065.790273]: Direct Instances: []\n", + "[INFO] [1712351065.790748]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel]\n", + "[INFO] [1712351065.790986]: -------------------\n", + "[INFO] [1712351065.791214]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712351065.791443]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712351065.791672]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", + "[INFO] [1712351065.791918]: Subclasses: []\n", + "[INFO] [1712351065.792217]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.792708]: Instances: []\n", + "[INFO] [1712351065.792974]: Direct Instances: []\n", + "[INFO] [1712351065.793223]: Inverse Restrictions: []\n", + "[INFO] [1712351065.793453]: -------------------\n", + "[INFO] [1712351065.793693]: SOMA.ChemicalProcess \n", + "[INFO] [1712351065.793926]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712351065.794165]: Ancestors: {DUL.Entity, SOMA.ChemicalProcess, DUL.Event, owl.Thing, DUL.Process}\n", + "[INFO] [1712351065.794402]: Subclasses: []\n", + "[INFO] [1712351065.794686]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.795190]: Instances: []\n", + "[INFO] [1712351065.795465]: Direct Instances: []\n", + "[INFO] [1712351065.795720]: Inverse Restrictions: []\n", + "[INFO] [1712351065.795952]: -------------------\n", + "[INFO] [1712351065.796181]: SOMA.Choice \n", + "[INFO] [1712351065.796419]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712351065.796660]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.Choice, DUL.Entity, DUL.Concept, SOMA.ResultRole, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.796900]: Subclasses: []\n", + "[INFO] [1712351065.797187]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.797681]: Instances: []\n", + "[INFO] [1712351065.797947]: Direct Instances: []\n", + "[INFO] [1712351065.798187]: Inverse Restrictions: []\n", + "[INFO] [1712351065.798416]: -------------------\n", + "[INFO] [1712351065.798640]: SOMA.ResultRole \n", + "[INFO] [1712351065.798873]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712351065.799124]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.ResultRole, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.799372]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712351065.799659]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.800142]: Instances: []\n", + "[INFO] [1712351065.800403]: Direct Instances: []\n", + "[INFO] [1712351065.800652]: Inverse Restrictions: []\n", + "[INFO] [1712351065.800886]: -------------------\n", + "[INFO] [1712351065.801110]: SOMA.CircularCylinder \n", + "[INFO] [1712351065.801357]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712351065.801599]: Ancestors: {SOMA.CircularCylinder, SOMA.CylinderShape, SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.801835]: Subclasses: []\n", + "[INFO] [1712351065.802120]: Properties: [rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.802619]: Instances: []\n", + "[INFO] [1712351065.802879]: Direct Instances: []\n", + "[INFO] [1712351065.803123]: Inverse Restrictions: []\n", + "[INFO] [1712351065.803351]: -------------------\n", + "[INFO] [1712351065.803576]: SOMA.CylinderShape \n", + "[INFO] [1712351065.803808]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712351065.804054]: Ancestors: {SOMA.CylinderShape, SOMA.ShapeRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.804300]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712351065.804595]: Properties: [rdf-schema.label, rdf-schema.comment, SOMA.hasRadius, SOMA.hasLength, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.805093]: Instances: []\n", + "[INFO] [1712351065.805366]: Direct Instances: []\n", + "[INFO] [1712351065.805630]: Inverse Restrictions: []\n", + "[INFO] [1712351065.805860]: -------------------\n", + "[INFO] [1712351065.806087]: SOMA.Classifier \n", + "[INFO] [1712351065.806314]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712351065.806553]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, SOMA.Classifier, DUL.Entity, DUL.Concept, SOMA.StatisticalReasoner, DUL.Role, SOMA.Reasoner, owl.Thing}\n", + "[INFO] [1712351065.806803]: Subclasses: []\n", + "[INFO] [1712351065.807092]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351065.807564]: Instances: []\n", + "[INFO] [1712351065.807814]: Direct Instances: []\n", + "[INFO] [1712351065.808064]: Inverse Restrictions: []\n", + "[INFO] [1712351065.808293]: -------------------\n", + "[INFO] [1712351065.808518]: SOMA.StatisticalReasoner \n", + "[INFO] [1712351065.808742]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712351065.808995]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.StatisticalReasoner, DUL.Role, SOMA.Reasoner, owl.Thing}\n", + "[INFO] [1712351065.809257]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712351065.809545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351065.810035]: Instances: []\n", + "[INFO] [1712351065.810302]: Direct Instances: []\n", + "[INFO] [1712351065.810556]: Inverse Restrictions: []\n", + "[INFO] [1712351065.810789]: -------------------\n", + "[INFO] [1712351065.811035]: SOMA.ClausalObject \n", + "[INFO] [1712351065.811263]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712351065.811513]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.811772]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712351065.812061]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.812549]: Instances: []\n", + "[INFO] [1712351065.812815]: Direct Instances: []\n", + "[INFO] [1712351065.813073]: Inverse Restrictions: []\n", + "[INFO] [1712351065.813310]: -------------------\n", + "[INFO] [1712351065.813545]: SOMA.Phrase \n", + "[INFO] [1712351065.813771]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712351065.814017]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.814270]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712351065.814555]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.815058]: Instances: []\n", + "[INFO] [1712351065.815315]: Direct Instances: []\n", + "[INFO] [1712351065.815560]: Inverse Restrictions: []\n", + "[INFO] [1712351065.815798]: -------------------\n", + "[INFO] [1712351065.816030]: SOMA.Clean \n", + "[INFO] [1712351065.816264]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712351065.816514]: Ancestors: {SOMA.Clean, SOMA.CleanlinessRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.816752]: Subclasses: []\n", + "[INFO] [1712351065.817037]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.817532]: Instances: []\n", + "[INFO] [1712351065.817796]: Direct Instances: []\n", + "[INFO] [1712351065.818111]: Inverse Restrictions: []\n", + "[INFO] [1712351065.818345]: -------------------\n", + "[INFO] [1712351065.818577]: SOMA.CleanlinessRegion \n", + "[INFO] [1712351065.818806]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351065.819058]: Ancestors: {SOMA.CleanlinessRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351065.819305]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712351065.819587]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.820072]: Instances: []\n", + "[INFO] [1712351065.820339]: Direct Instances: []\n", + "[INFO] [1712351065.820655]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712351065.820899]: -------------------\n", + "[INFO] [1712351065.821134]: SOMA.Cleaning \n", + "[INFO] [1712351065.821370]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712351065.821627]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Cleaning}\n", + "[INFO] [1712351065.821871]: Subclasses: []\n", + "[INFO] [1712351065.822155]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.822649]: Instances: []\n", + "[INFO] [1712351065.822905]: Direct Instances: []\n", + "[INFO] [1712351065.823152]: Inverse Restrictions: []\n", + "[INFO] [1712351065.823384]: -------------------\n", + "[INFO] [1712351065.823626]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712351065.823864]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351065.824104]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.824352]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712351065.824635]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.825148]: Instances: []\n", + "[INFO] [1712351065.825409]: Direct Instances: []\n", + "[INFO] [1712351065.825742]: Inverse Restrictions: []\n", + "[INFO] [1712351065.826007]: -------------------\n", + "[INFO] [1712351065.826268]: SOMA.Purification \n", + "[INFO] [1712351065.826540]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712351065.826792]: Ancestors: {SOMA.Extrinsic, SOMA.Purification, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.827056]: Subclasses: []\n", + "[INFO] [1712351065.827343]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.827837]: Instances: []\n", + "[INFO] [1712351065.828101]: Direct Instances: []\n", + "[INFO] [1712351065.828387]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712351065.828626]: -------------------\n", + "[INFO] [1712351065.828861]: SOMA.Cleanliness \n", + "[INFO] [1712351065.829095]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712351065.829346]: Ancestors: {SOMA.SocialQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Cleanliness}\n", + "[INFO] [1712351065.829582]: Subclasses: []\n", + "[INFO] [1712351065.829868]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351065.830338]: Instances: []\n", + "[INFO] [1712351065.830595]: Direct Instances: []\n", + "[INFO] [1712351065.830915]: Inverse Restrictions: []\n", + "[INFO] [1712351065.831161]: -------------------\n", + "[INFO] [1712351065.831389]: SOMA.SocialQuality \n", + "[INFO] [1712351065.831618]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712351065.831868]: Ancestors: {DUL.Entity, SOMA.SocialQuality, owl.Thing, DUL.Quality}\n", + "[INFO] [1712351065.832120]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712351065.832410]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.832907]: Instances: []\n", + "[INFO] [1712351065.833191]: Direct Instances: []\n", + "[INFO] [1712351065.833448]: Inverse Restrictions: []\n", + "[INFO] [1712351065.833689]: -------------------\n", + "[INFO] [1712351065.833919]: SOMA.Client-Server_Specification \n", + "[INFO] [1712351065.834163]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712351065.834418]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Client-Server_Specification, SOMA.InterfaceSpecification}\n", + "[INFO] [1712351065.834657]: Subclasses: []\n", + "[INFO] [1712351065.834947]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole, rdf-schema.comment]\n", + "[INFO] [1712351065.835423]: Instances: []\n", + "[INFO] [1712351065.835685]: Direct Instances: []\n", + "[INFO] [1712351065.835994]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712351065.836237]: -------------------\n", + "[INFO] [1712351065.836471]: SOMA.ClientRole \n", + "[INFO] [1712351065.836705]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712351065.837038]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.ClientRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351065.837339]: Subclasses: []\n", + "[INFO] [1712351065.837755]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", + "[INFO] [1712351065.838285]: Instances: []\n", + "[INFO] [1712351065.838574]: Direct Instances: []\n", + "[INFO] [1712351065.838909]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712351065.839175]: -------------------\n", + "[INFO] [1712351065.839426]: SOMA.ServerRole \n", + "[INFO] [1712351065.839674]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712351065.839927]: Ancestors: {SOMA.SoftwareRole, SOMA.ServerRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351065.840183]: Subclasses: []\n", + "[INFO] [1712351065.840493]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", + "[INFO] [1712351065.840987]: Instances: []\n", + "[INFO] [1712351065.841254]: Direct Instances: []\n", + "[INFO] [1712351065.841574]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712351065.841840]: -------------------\n", + "[INFO] [1712351065.842090]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712351065.842331]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351065.842579]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351065.842840]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712351065.843152]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351065.843648]: Instances: []\n", + "[INFO] [1712351065.843909]: Direct Instances: []\n", + "[INFO] [1712351065.844160]: Inverse Restrictions: []\n", + "[INFO] [1712351065.844411]: -------------------\n", + "[INFO] [1712351065.844655]: SOMA.Closing \n", + "[INFO] [1712351065.844899]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351065.845146]: Ancestors: {SOMA.Closing, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.845389]: Subclasses: []\n", + "[INFO] [1712351065.845690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.846186]: Instances: []\n", + "[INFO] [1712351065.846462]: Direct Instances: []\n", + "[INFO] [1712351065.846732]: Inverse Restrictions: []\n", + "[INFO] [1712351065.846976]: -------------------\n", + "[INFO] [1712351065.847210]: SOMA.Delivering \n", + "[INFO] [1712351065.847465]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712351065.847726]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Delivering, owl.Thing}\n", + "[INFO] [1712351065.847989]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712351065.848307]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.848820]: Instances: []\n", + "[INFO] [1712351065.849102]: Direct Instances: []\n", + "[INFO] [1712351065.849442]: Inverse Restrictions: []\n", + "[INFO] [1712351065.849711]: -------------------\n", + "[INFO] [1712351065.849961]: SOMA.Fetching \n", + "[INFO] [1712351065.850218]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712351065.850482]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, SOMA.Fetching, DUL.Task, SOMA.PhysicalAcquiring, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.850982]: Subclasses: []\n", + "[INFO] [1712351065.851588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.852473]: Instances: []\n", + "[INFO] [1712351065.852908]: Direct Instances: []\n", + "[INFO] [1712351065.853377]: Inverse Restrictions: []\n", + "[INFO] [1712351065.853829]: -------------------\n", + "[INFO] [1712351065.854273]: SOMA.Lifting \n", + "[INFO] [1712351065.854717]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351065.855187]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.Lifting, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.855643]: Subclasses: []\n", + "[INFO] [1712351065.856176]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.856993]: Instances: []\n", + "[INFO] [1712351065.857402]: Direct Instances: []\n", + "[INFO] [1712351065.857798]: Inverse Restrictions: []\n", + "[INFO] [1712351065.858174]: -------------------\n", + "[INFO] [1712351065.858554]: SOMA.Opening \n", + "[INFO] [1712351065.858936]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351065.859336]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, SOMA.Opening, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.859731]: Subclasses: []\n", + "[INFO] [1712351065.860238]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.860960]: Instances: []\n", + "[INFO] [1712351065.861486]: Direct Instances: []\n", + "[INFO] [1712351065.862057]: Inverse Restrictions: []\n", + "[INFO] [1712351065.862581]: -------------------\n", + "[INFO] [1712351065.863093]: SOMA.Pulling \n", + "[INFO] [1712351065.863607]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351065.864141]: Ancestors: {DUL.SocialObject, SOMA.Actuating, SOMA.Pulling, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.864656]: Subclasses: []\n", + "[INFO] [1712351065.865306]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.866234]: Instances: []\n", + "[INFO] [1712351065.866768]: Direct Instances: []\n", + "[INFO] [1712351065.867294]: Inverse Restrictions: []\n", + "[INFO] [1712351065.867796]: -------------------\n", + "[INFO] [1712351065.868305]: SOMA.Pushing \n", + "[INFO] [1712351065.868850]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351065.869402]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.869937]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712351065.870573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.871503]: Instances: []\n", + "[INFO] [1712351065.872028]: Direct Instances: []\n", + "[INFO] [1712351065.872551]: Inverse Restrictions: []\n", + "[INFO] [1712351065.873047]: -------------------\n", + "[INFO] [1712351065.873547]: SOMA.Squeezing \n", + "[INFO] [1712351065.874058]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351065.874596]: Ancestors: {SOMA.Squeezing, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.875105]: Subclasses: []\n", + "[INFO] [1712351065.875693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.876603]: Instances: []\n", + "[INFO] [1712351065.877115]: Direct Instances: []\n", + "[INFO] [1712351065.877620]: Inverse Restrictions: []\n", + "[INFO] [1712351065.878098]: -------------------\n", + "[INFO] [1712351065.878585]: SOMA.Linkage \n", + "[INFO] [1712351065.879092]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712351065.879600]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Linkage, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", + "[INFO] [1712351065.880101]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712351065.880690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.881609]: Instances: []\n", + "[INFO] [1712351065.882124]: Direct Instances: []\n", + "[INFO] [1712351065.882627]: Inverse Restrictions: []\n", + "[INFO] [1712351065.883126]: -------------------\n", + "[INFO] [1712351065.883872]: SOMA.Clumsiness \n", + "[INFO] [1712351065.884411]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712351065.884937]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Clumsiness, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351065.885456]: Subclasses: []\n", + "[INFO] [1712351065.886048]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.886916]: Instances: []\n", + "[INFO] [1712351065.887390]: Direct Instances: []\n", + "[INFO] [1712351065.887834]: Inverse Restrictions: []\n", + "[INFO] [1712351065.888258]: -------------------\n", + "[INFO] [1712351065.888729]: SOMA.CognitiveAgent \n", + "[INFO] [1712351065.889113]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712351065.889501]: Ancestors: {SOMA.CognitiveAgent, DUL.Object, DUL.Entity, DUL.Agent, owl.Thing}\n", + "[INFO] [1712351065.889868]: Subclasses: []\n", + "[INFO] [1712351065.890339]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.891058]: Instances: []\n", + "[INFO] [1712351065.891416]: Direct Instances: []\n", + "[INFO] [1712351065.891769]: Inverse Restrictions: []\n", + "[INFO] [1712351065.892109]: -------------------\n", + "[INFO] [1712351065.892453]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712351065.892812]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712351065.893165]: Ancestors: {SOMA.SubCognitiveAgent, DUL.Object, DUL.Entity, DUL.Agent, owl.Thing}\n", + "[INFO] [1712351065.893458]: Subclasses: []\n", + "[INFO] [1712351065.893776]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.894274]: Instances: []\n", + "[INFO] [1712351065.894547]: Direct Instances: []\n", + "[INFO] [1712351065.894814]: Inverse Restrictions: []\n", + "[INFO] [1712351065.895061]: -------------------\n", + "[INFO] [1712351065.895302]: SOMA.Collision \n", + "[INFO] [1712351065.895622]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712351065.895912]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Collision, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.896167]: Subclasses: []\n", + "[INFO] [1712351065.896451]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.897006]: Instances: []\n", + "[INFO] [1712351065.897314]: Direct Instances: []\n", + "[INFO] [1712351065.897588]: Inverse Restrictions: []\n", + "[INFO] [1712351065.897850]: -------------------\n", + "[INFO] [1712351065.898125]: SOMA.Extrinsic \n", + "[INFO] [1712351065.898387]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712351065.898645]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.898928]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712351065.899250]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.899809]: Instances: []\n", + "[INFO] [1712351065.900100]: Direct Instances: []\n", + "[INFO] [1712351065.900378]: Inverse Restrictions: []\n", + "[INFO] [1712351065.900634]: -------------------\n", + "[INFO] [1712351065.900938]: SOMA.ImperativeClause \n", + "[INFO] [1712351065.901389]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712351065.901771]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, SOMA.ImperativeClause, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.902128]: Subclasses: []\n", + "[INFO] [1712351065.902531]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.expresses]\n", + "[INFO] [1712351065.903115]: Instances: []\n", + "[INFO] [1712351065.903470]: Direct Instances: []\n", + "[INFO] [1712351065.903866]: Inverse Restrictions: []\n", + "[INFO] [1712351065.904208]: -------------------\n", + "[INFO] [1712351065.904541]: SOMA.CommitedObject \n", + "[INFO] [1712351065.904874]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712351065.905218]: Ancestors: {SOMA.CommitedObject, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.905592]: Subclasses: []\n", + "[INFO] [1712351065.905983]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.906560]: Instances: []\n", + "[INFO] [1712351065.906905]: Direct Instances: []\n", + "[INFO] [1712351065.907236]: Inverse Restrictions: []\n", + "[INFO] [1712351065.907570]: -------------------\n", + "[INFO] [1712351065.907906]: SOMA.ConnectedObject \n", + "[INFO] [1712351065.908230]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.908568]: Ancestors: {DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.908927]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712351065.909319]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.909903]: Instances: []\n", + "[INFO] [1712351065.910261]: Direct Instances: []\n", + "[INFO] [1712351065.910699]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712351065.911034]: -------------------\n", + "[INFO] [1712351065.911363]: SOMA.CommunicationAction \n", + "[INFO] [1712351065.911696]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712351065.912049]: Ancestors: {SOMA.CommunicationAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712351065.912388]: Subclasses: []\n", + "[INFO] [1712351065.912774]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.913396]: Instances: []\n", + "[INFO] [1712351065.913762]: Direct Instances: []\n", + "[INFO] [1712351065.914141]: Inverse Restrictions: []\n", + "[INFO] [1712351065.914467]: -------------------\n", + "[INFO] [1712351065.914795]: SOMA.LinguisticObject \n", + "[INFO] [1712351065.915142]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712351065.915491]: Ancestors: {DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351065.915832]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712351065.916207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351065.916800]: Instances: []\n", + "[INFO] [1712351065.917162]: Direct Instances: []\n", + "[INFO] [1712351065.917550]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712351065.917889]: -------------------\n", + "[INFO] [1712351065.918213]: SOMA.CommunicationReport \n", + "[INFO] [1712351065.918534]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351065.918870]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, owl.Thing, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.CommunicationReport}\n", + "[INFO] [1712351065.919216]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712351065.919601]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.920171]: Instances: []\n", + "[INFO] [1712351065.920511]: Direct Instances: []\n", + "[INFO] [1712351065.920852]: Inverse Restrictions: []\n", + "[INFO] [1712351065.921191]: -------------------\n", + "[INFO] [1712351065.921521]: SOMA.Receiver \n", + "[INFO] [1712351065.921844]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712351065.922174]: Ancestors: {DUL.SocialObject, SOMA.EventAdjacentRole, SOMA.PerformerRole, DUL.Object, DUL.Entity, SOMA.Receiver, DUL.Concept, DUL.Role, SOMA.ExperiencerRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351065.922505]: Subclasses: []\n", + "[INFO] [1712351065.922886]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.923450]: Instances: []\n", + "[INFO] [1712351065.923786]: Direct Instances: []\n", + "[INFO] [1712351065.924177]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351065.924522]: -------------------\n", + "[INFO] [1712351065.924855]: SOMA.Sender \n", + "[INFO] [1712351065.925184]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712351065.925522]: Ancestors: {DUL.SocialObject, SOMA.PerformerRole, DUL.Object, SOMA.Sender, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351065.925846]: Subclasses: []\n", + "[INFO] [1712351065.926218]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.926812]: Instances: []\n", + "[INFO] [1712351065.927170]: Direct Instances: []\n", + "[INFO] [1712351065.927591]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351065.927926]: -------------------\n", + "[INFO] [1712351065.928249]: SOMA.CommunicationTopic \n", + "[INFO] [1712351065.928693]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712351065.929135]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.929461]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351065.929808]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.930353]: Instances: []\n", + "[INFO] [1712351065.930651]: Direct Instances: []\n", + "[INFO] [1712351065.930920]: Inverse Restrictions: []\n", + "[INFO] [1712351065.931165]: -------------------\n", + "[INFO] [1712351065.931412]: SOMA.ResourceRole \n", + "[INFO] [1712351065.931644]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351065.931902]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.932175]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712351065.932478]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.933029]: Instances: []\n", + "[INFO] [1712351065.933307]: Direct Instances: []\n", + "[INFO] [1712351065.933570]: Inverse Restrictions: []\n", + "[INFO] [1712351065.933809]: -------------------\n", + "[INFO] [1712351065.934045]: SOMA.Composing \n", + "[INFO] [1712351065.934282]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712351065.934539]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing, SOMA.Composing}\n", + "[INFO] [1712351065.934784]: Subclasses: []\n", + "[INFO] [1712351065.935081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.935586]: Instances: []\n", + "[INFO] [1712351065.935852]: Direct Instances: []\n", + "[INFO] [1712351065.936141]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712351065.936384]: -------------------\n", + "[INFO] [1712351065.936629]: SOMA.Computer_Language \n", + "[INFO] [1712351065.936878]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712351065.937138]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351065.937415]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712351065.937712]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.938221]: Instances: []\n", + "[INFO] [1712351065.938498]: Direct Instances: []\n", + "[INFO] [1712351065.938763]: Inverse Restrictions: []\n", + "[INFO] [1712351065.939007]: -------------------\n", + "[INFO] [1712351065.939245]: SOMA.FormalLanguage \n", + "[INFO] [1712351065.939487]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712351065.939744]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351065.939995]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351065.940292]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.940817]: Instances: []\n", + "[INFO] [1712351065.941086]: Direct Instances: []\n", + "[INFO] [1712351065.941396]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712351065.941641]: -------------------\n", + "[INFO] [1712351065.941879]: SOMA.Computer_Program \n", + "[INFO] [1712351065.942120]: Super classes: [owl.Thing]\n", + "[INFO] [1712351065.942368]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", + "[INFO] [1712351065.942621]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712351065.942918]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.expresses, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.943416]: Instances: []\n", + "[INFO] [1712351065.943693]: Direct Instances: []\n", + "[INFO] [1712351065.944058]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712351065.944309]: -------------------\n", + "[INFO] [1712351065.944547]: SOMA.Programming_Language \n", + "[INFO] [1712351065.944805]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712351065.945073]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Programming_Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351065.945341]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712351065.945641]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.946131]: Instances: []\n", + "[INFO] [1712351065.946396]: Direct Instances: []\n", + "[INFO] [1712351065.946745]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712351065.947007]: -------------------\n", + "[INFO] [1712351065.947247]: SOMA.Conclusion \n", + "[INFO] [1712351065.947482]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712351065.947739]: Ancestors: {SOMA.Conclusion, DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, SOMA.CreatedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.947987]: Subclasses: []\n", + "[INFO] [1712351065.948278]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.948891]: Instances: []\n", + "[INFO] [1712351065.949167]: Direct Instances: []\n", + "[INFO] [1712351065.949484]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351065.949729]: -------------------\n", + "[INFO] [1712351065.949967]: SOMA.CreatedObject \n", + "[INFO] [1712351065.950210]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.950467]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.CreatedObject, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.950717]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712351065.951005]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.951489]: Instances: []\n", + "[INFO] [1712351065.951765]: Direct Instances: []\n", + "[INFO] [1712351065.952066]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712351065.952312]: -------------------\n", + "[INFO] [1712351065.952551]: SOMA.Knowledge \n", + "[INFO] [1712351065.952807]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712351065.953280]: Ancestors: {DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.953662]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712351065.954059]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712351065.954645]: Instances: []\n", + "[INFO] [1712351065.954998]: Direct Instances: []\n", + "[INFO] [1712351065.955512]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712351065.955865]: -------------------\n", + "[INFO] [1712351065.956200]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712351065.956535]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712351065.956875]: Ancestors: {SOMA.ConditionalSuccedence, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Succedence, DUL.Relation}\n", + "[INFO] [1712351065.957202]: Subclasses: []\n", + "[INFO] [1712351065.957581]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.958163]: Instances: []\n", + "[INFO] [1712351065.958516]: Direct Instances: []\n", + "[INFO] [1712351065.958850]: Inverse Restrictions: []\n", + "[INFO] [1712351065.959179]: -------------------\n", + "[INFO] [1712351065.959506]: SOMA.Configuration \n", + "[INFO] [1712351065.959845]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712351065.960190]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Configuration, owl.Thing}\n", + "[INFO] [1712351065.960514]: Subclasses: []\n", + "[INFO] [1712351065.960887]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.961470]: Instances: []\n", + "[INFO] [1712351065.961826]: Direct Instances: []\n", + "[INFO] [1712351065.962369]: Inverse Restrictions: []\n", + "[INFO] [1712351065.962858]: -------------------\n", + "[INFO] [1712351065.963236]: SOMA.Connectivity \n", + "[INFO] [1712351065.963603]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712351065.964013]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", + "[INFO] [1712351065.964398]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712351065.964818]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.965445]: Instances: []\n", + "[INFO] [1712351065.965823]: Direct Instances: []\n", + "[INFO] [1712351065.966215]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712351065.966550]: -------------------\n", + "[INFO] [1712351065.966883]: SOMA.ContactState \n", + "[INFO] [1712351065.967218]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712351065.967562]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, SOMA.ContactState, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.967898]: Subclasses: []\n", + "[INFO] [1712351065.968277]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.968847]: Instances: []\n", + "[INFO] [1712351065.969194]: Direct Instances: []\n", + "[INFO] [1712351065.969540]: Inverse Restrictions: []\n", + "[INFO] [1712351065.969869]: -------------------\n", + "[INFO] [1712351065.970193]: SOMA.Container \n", + "[INFO] [1712351065.970513]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712351065.970846]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, SOMA.Container, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.971186]: Subclasses: []\n", + "[INFO] [1712351065.971563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.972129]: Instances: []\n", + "[INFO] [1712351065.972473]: Direct Instances: []\n", + "[INFO] [1712351065.972893]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712351065.973248]: -------------------\n", + "[INFO] [1712351065.973581]: SOMA.Containment \n", + "[INFO] [1712351065.973917]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712351065.974247]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Containment, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351065.974581]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712351065.974971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.975555]: Instances: []\n", + "[INFO] [1712351065.975898]: Direct Instances: []\n", + "[INFO] [1712351065.976354]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712351065.976691]: -------------------\n", + "[INFO] [1712351065.977104]: SOMA.IncludedObject \n", + "[INFO] [1712351065.977427]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351065.977726]: Ancestors: {DUL.SocialObject, SOMA.IncludedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351065.978028]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712351065.978355]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.978889]: Instances: []\n", + "[INFO] [1712351065.979160]: Direct Instances: []\n", + "[INFO] [1712351065.979455]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712351065.979720]: -------------------\n", + "[INFO] [1712351065.979989]: SOMA.ContainmentState \n", + "[INFO] [1712351065.980249]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712351065.980504]: Ancestors: {SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, SOMA.ContainmentState, DUL.Concept, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.980747]: Subclasses: []\n", + "[INFO] [1712351065.981049]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.981553]: Instances: []\n", + "[INFO] [1712351065.981826]: Direct Instances: []\n", + "[INFO] [1712351065.982083]: Inverse Restrictions: []\n", + "[INFO] [1712351065.982325]: -------------------\n", + "[INFO] [1712351065.982563]: SOMA.FunctionalControl \n", + "[INFO] [1712351065.982822]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712351065.983077]: Ancestors: {SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351065.983331]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712351065.983627]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.984138]: Instances: []\n", + "[INFO] [1712351065.984411]: Direct Instances: []\n", + "[INFO] [1712351065.984666]: Inverse Restrictions: []\n", + "[INFO] [1712351065.984918]: -------------------\n", + "[INFO] [1712351065.985156]: SOMA.ContainmentTheory \n", + "[INFO] [1712351065.985404]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712351065.985666]: Ancestors: {SOMA.ContainmentTheory, DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.985914]: Subclasses: []\n", + "[INFO] [1712351065.986204]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.986681]: Instances: []\n", + "[INFO] [1712351065.986955]: Direct Instances: []\n", + "[INFO] [1712351065.987216]: Inverse Restrictions: []\n", + "[INFO] [1712351065.987469]: -------------------\n", + "[INFO] [1712351065.987710]: SOMA.ControlTheory \n", + "[INFO] [1712351065.987940]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712351065.988188]: Ancestors: {DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.988461]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712351065.988760]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.989259]: Instances: []\n", + "[INFO] [1712351065.989562]: Direct Instances: []\n", + "[INFO] [1712351065.989828]: Inverse Restrictions: []\n", + "[INFO] [1712351065.990062]: -------------------\n", + "[INFO] [1712351065.990292]: SOMA.ContinuousJoint \n", + "[INFO] [1712351065.990523]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712351065.990772]: Ancestors: {SOMA.MovableJoint, DUL.Object, SOMA.ContinuousJoint, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.991038]: Subclasses: []\n", + "[INFO] [1712351065.991342]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.991842]: Instances: []\n", + "[INFO] [1712351065.992121]: Direct Instances: []\n", + "[INFO] [1712351065.992376]: Inverse Restrictions: []\n", + "[INFO] [1712351065.992617]: -------------------\n", + "[INFO] [1712351065.992929]: SOMA.HingeJoint \n", + "[INFO] [1712351065.993300]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712351065.993673]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351065.994059]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712351065.994470]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351065.995108]: Instances: []\n", + "[INFO] [1712351065.995414]: Direct Instances: []\n", + "[INFO] [1712351065.995695]: Inverse Restrictions: []\n", + "[INFO] [1712351065.995956]: -------------------\n", + "[INFO] [1712351065.996215]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712351065.996526]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712351065.996824]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351065.997137]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712351065.997497]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351065.998111]: Instances: []\n", + "[INFO] [1712351065.998447]: Direct Instances: []\n", + "[INFO] [1712351065.998774]: Inverse Restrictions: []\n", + "[INFO] [1712351065.999075]: -------------------\n", + "[INFO] [1712351065.999365]: SOMA.Cover \n", + "[INFO] [1712351065.999643]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712351065.999951]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, SOMA.Cover, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.000240]: Subclasses: []\n", + "[INFO] [1712351066.000567]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.001133]: Instances: []\n", + "[INFO] [1712351066.001427]: Direct Instances: []\n", + "[INFO] [1712351066.001740]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712351066.001992]: -------------------\n", + "[INFO] [1712351066.002239]: SOMA.Coverage \n", + "[INFO] [1712351066.002498]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712351066.002750]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Coverage, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.002994]: Subclasses: []\n", + "[INFO] [1712351066.003281]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.003778]: Instances: []\n", + "[INFO] [1712351066.004040]: Direct Instances: []\n", + "[INFO] [1712351066.004287]: Inverse Restrictions: []\n", + "[INFO] [1712351066.004517]: -------------------\n", + "[INFO] [1712351066.004759]: SOMA.CoveredObject \n", + "[INFO] [1712351066.005000]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712351066.005242]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.BlockedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CoveredObject, owl.Thing}\n", + "[INFO] [1712351066.005475]: Subclasses: []\n", + "[INFO] [1712351066.005767]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.006268]: Instances: []\n", + "[INFO] [1712351066.006530]: Direct Instances: []\n", + "[INFO] [1712351066.006814]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712351066.007055]: -------------------\n", + "[INFO] [1712351066.007288]: SOMA.CoverageTheory \n", + "[INFO] [1712351066.007523]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712351066.007779]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, SOMA.CoverageTheory, DUL.Theory}\n", + "[INFO] [1712351066.008021]: Subclasses: []\n", + "[INFO] [1712351066.008299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.008777]: Instances: []\n", + "[INFO] [1712351066.009050]: Direct Instances: []\n", + "[INFO] [1712351066.009304]: Inverse Restrictions: []\n", + "[INFO] [1712351066.009540]: -------------------\n", + "[INFO] [1712351066.009772]: SOMA.CoveringTheory \n", + "[INFO] [1712351066.010011]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712351066.010270]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CoveringTheory, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.010515]: Subclasses: []\n", + "[INFO] [1712351066.010804]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351066.011282]: Instances: []\n", + "[INFO] [1712351066.011543]: Direct Instances: []\n", + "[INFO] [1712351066.011792]: Inverse Restrictions: []\n", + "[INFO] [1712351066.012034]: -------------------\n", + "[INFO] [1712351066.012271]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712351066.012502]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712351066.012737]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.013012]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712351066.013322]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351066.013812]: Instances: []\n", + "[INFO] [1712351066.014066]: Direct Instances: []\n", + "[INFO] [1712351066.014328]: Inverse Restrictions: []\n", + "[INFO] [1712351066.014563]: -------------------\n", + "[INFO] [1712351066.014797]: SOMA.CrackingTheory \n", + "[INFO] [1712351066.015033]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712351066.015277]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CrackingTheory, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.015530]: Subclasses: []\n", + "[INFO] [1712351066.015846]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351066.016353]: Instances: []\n", + "[INFO] [1712351066.016619]: Direct Instances: []\n", + "[INFO] [1712351066.016863]: Inverse Restrictions: []\n", + "[INFO] [1712351066.017103]: -------------------\n", + "[INFO] [1712351066.017334]: SOMA.Creation \n", + "[INFO] [1712351066.017563]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712351066.017797]: Ancestors: {DUL.SocialObject, SOMA.Creation, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.018028]: Subclasses: []\n", + "[INFO] [1712351066.018313]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.018791]: Instances: []\n", + "[INFO] [1712351066.019045]: Direct Instances: []\n", + "[INFO] [1712351066.019281]: Inverse Restrictions: []\n", + "[INFO] [1712351066.019506]: -------------------\n", + "[INFO] [1712351066.019734]: SOMA.Insertion \n", + "[INFO] [1712351066.019969]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712351066.020207]: Ancestors: {SOMA.Extrinsic, SOMA.Insertion, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.020441]: Subclasses: []\n", + "[INFO] [1712351066.020722]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.021229]: Instances: []\n", + "[INFO] [1712351066.021499]: Direct Instances: []\n", + "[INFO] [1712351066.021835]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712351066.022072]: -------------------\n", + "[INFO] [1712351066.022305]: SOMA.DesignedFurniture \n", + "[INFO] [1712351066.022545]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712351066.022785]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.023039]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712351066.023323]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.023820]: Instances: []\n", + "[INFO] [1712351066.024079]: Direct Instances: []\n", + "[INFO] [1712351066.024337]: Inverse Restrictions: []\n", + "[INFO] [1712351066.024561]: -------------------\n", + "[INFO] [1712351066.024785]: SOMA.Cuttability \n", + "[INFO] [1712351066.025017]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712351066.025265]: Ancestors: {SOMA.Extrinsic, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.025506]: Subclasses: []\n", + "[INFO] [1712351066.025794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.026286]: Instances: []\n", + "[INFO] [1712351066.026558]: Direct Instances: []\n", + "[INFO] [1712351066.026807]: Inverse Restrictions: []\n", + "[INFO] [1712351066.027038]: -------------------\n", + "[INFO] [1712351066.027266]: SOMA.Tool \n", + "[INFO] [1712351066.027490]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712351066.027739]: Ancestors: {SOMA.Tool, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.027989]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712351066.028270]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.028749]: Instances: []\n", + "[INFO] [1712351066.029041]: Direct Instances: []\n", + "[INFO] [1712351066.029351]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712351066.029607]: -------------------\n", + "[INFO] [1712351066.029883]: SOMA.Cutting \n", + "[INFO] [1712351066.030118]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712351066.030359]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", + "[INFO] [1712351066.030620]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712351066.030910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.031399]: Instances: []\n", + "[INFO] [1712351066.031685]: Direct Instances: []\n", + "[INFO] [1712351066.031950]: Inverse Restrictions: []\n", + "[INFO] [1712351066.032195]: -------------------\n", + "[INFO] [1712351066.032427]: SOMA.DesignedTool \n", + "[INFO] [1712351066.032651]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712351066.032891]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.033150]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712351066.033436]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.033953]: Instances: []\n", + "[INFO] [1712351066.034222]: Direct Instances: []\n", + "[INFO] [1712351066.034475]: Inverse Restrictions: []\n", + "[INFO] [1712351066.034708]: -------------------\n", + "[INFO] [1712351066.034938]: SOMA.Shaping \n", + "[INFO] [1712351066.035172]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712351066.035428]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Shaping, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.035670]: Subclasses: []\n", + "[INFO] [1712351066.035956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.036460]: Instances: []\n", + "[INFO] [1712351066.036721]: Direct Instances: []\n", + "[INFO] [1712351066.036993]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712351066.037244]: -------------------\n", + "[INFO] [1712351066.037490]: SOMA.Database \n", + "[INFO] [1712351066.037726]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351066.037980]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, DUL.Role, owl.Thing}\n", + "[INFO] [1712351066.038230]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712351066.038512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.039018]: Instances: []\n", + "[INFO] [1712351066.039294]: Direct Instances: []\n", + "[INFO] [1712351066.039549]: Inverse Restrictions: []\n", + "[INFO] [1712351066.039783]: -------------------\n", + "[INFO] [1712351066.040017]: SOMA.SoftwareRole \n", + "[INFO] [1712351066.040256]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712351066.040509]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, owl.Thing}\n", + "[INFO] [1712351066.040764]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712351066.041057]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.041564]: Instances: []\n", + "[INFO] [1712351066.041826]: Direct Instances: []\n", + "[INFO] [1712351066.042115]: Inverse Restrictions: []\n", + "[INFO] [1712351066.042351]: -------------------\n", + "[INFO] [1712351066.042579]: SOMA.Deciding \n", + "[INFO] [1712351066.042806]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351066.043040]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding}\n", + "[INFO] [1712351066.043295]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712351066.043580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351066.044076]: Instances: []\n", + "[INFO] [1712351066.044342]: Direct Instances: []\n", + "[INFO] [1712351066.044594]: Inverse Restrictions: []\n", + "[INFO] [1712351066.044834]: -------------------\n", + "[INFO] [1712351066.045065]: SOMA.DerivingInformation \n", + "[INFO] [1712351066.045307]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712351066.045562]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712351066.045829]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712351066.046127]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712351066.046636]: Instances: []\n", + "[INFO] [1712351066.046933]: Direct Instances: []\n", + "[INFO] [1712351066.047200]: Inverse Restrictions: []\n", + "[INFO] [1712351066.047440]: -------------------\n", + "[INFO] [1712351066.047675]: SOMA.DeductiveReasoning \n", + "[INFO] [1712351066.047906]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712351066.048145]: Ancestors: {SOMA.Reasoning, SOMA.DeductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351066.048395]: Subclasses: []\n", + "[INFO] [1712351066.048685]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.049178]: Instances: []\n", + "[INFO] [1712351066.049452]: Direct Instances: []\n", + "[INFO] [1712351066.049700]: Inverse Restrictions: []\n", + "[INFO] [1712351066.049931]: -------------------\n", + "[INFO] [1712351066.050159]: SOMA.Deformation \n", + "[INFO] [1712351066.050392]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712351066.050644]: Ancestors: {SOMA.Alteration, SOMA.Deformation, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.050886]: Subclasses: []\n", + "[INFO] [1712351066.051181]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.051674]: Instances: []\n", + "[INFO] [1712351066.051933]: Direct Instances: []\n", + "[INFO] [1712351066.052181]: Inverse Restrictions: []\n", + "[INFO] [1712351066.052411]: -------------------\n", + "[INFO] [1712351066.052636]: SOMA.ShapedObject \n", + "[INFO] [1712351066.052885]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712351066.053148]: Ancestors: {SOMA.ShapedObject, DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.053393]: Subclasses: []\n", + "[INFO] [1712351066.053682]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment]\n", + "[INFO] [1712351066.054160]: Instances: []\n", + "[INFO] [1712351066.054434]: Direct Instances: []\n", + "[INFO] [1712351066.054752]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712351066.054995]: -------------------\n", + "[INFO] [1712351066.055227]: SOMA.FluidFlow \n", + "[INFO] [1712351066.055466]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712351066.055723]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.FluidFlow, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.055969]: Subclasses: []\n", + "[INFO] [1712351066.056257]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.056735]: Instances: []\n", + "[INFO] [1712351066.057006]: Direct Instances: []\n", + "[INFO] [1712351066.057262]: Inverse Restrictions: []\n", + "[INFO] [1712351066.057499]: -------------------\n", + "[INFO] [1712351066.057730]: SOMA.Shifting \n", + "[INFO] [1712351066.057967]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712351066.058208]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, SOMA.Shifting, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.058457]: Subclasses: []\n", + "[INFO] [1712351066.058747]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.059227]: Instances: []\n", + "[INFO] [1712351066.059495]: Direct Instances: []\n", + "[INFO] [1712351066.059808]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712351066.060048]: -------------------\n", + "[INFO] [1712351066.060280]: SOMA.DependentPlace \n", + "[INFO] [1712351066.060510]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712351066.060760]: Ancestors: {SOMA.Feature, SOMA.DependentPlace, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.061010]: Subclasses: []\n", + "[INFO] [1712351066.061295]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.061774]: Instances: []\n", + "[INFO] [1712351066.062043]: Direct Instances: []\n", + "[INFO] [1712351066.062294]: Inverse Restrictions: []\n", + "[INFO] [1712351066.062529]: -------------------\n", + "[INFO] [1712351066.062759]: SOMA.Deposit \n", + "[INFO] [1712351066.062987]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712351066.063236]: Ancestors: {SOMA.Instrument, SOMA.Deposit, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.063491]: Subclasses: []\n", + "[INFO] [1712351066.063867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.064343]: Instances: []\n", + "[INFO] [1712351066.064594]: Direct Instances: []\n", + "[INFO] [1712351066.064890]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712351066.065126]: -------------------\n", + "[INFO] [1712351066.065355]: SOMA.DepositedObject \n", + "[INFO] [1712351066.065577]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351066.065817]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.DepositedObject}\n", + "[INFO] [1712351066.066058]: Subclasses: []\n", + "[INFO] [1712351066.066342]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.066815]: Instances: []\n", + "[INFO] [1712351066.067082]: Direct Instances: []\n", + "[INFO] [1712351066.067370]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712351066.067602]: -------------------\n", + "[INFO] [1712351066.067827]: SOMA.InformationAcquisition \n", + "[INFO] [1712351066.068049]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.068278]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351066.068543]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712351066.068844]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.069390]: Instances: []\n", + "[INFO] [1712351066.069673]: Direct Instances: []\n", + "[INFO] [1712351066.069975]: Inverse Restrictions: []\n", + "[INFO] [1712351066.070208]: -------------------\n", + "[INFO] [1712351066.070434]: SOMA.Premise \n", + "[INFO] [1712351066.070664]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712351066.070914]: Ancestors: {DUL.SocialObject, SOMA.Premise, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.071161]: Subclasses: []\n", + "[INFO] [1712351066.071445]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.071939]: Instances: []\n", + "[INFO] [1712351066.072201]: Direct Instances: []\n", + "[INFO] [1712351066.072504]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351066.072736]: -------------------\n", + "[INFO] [1712351066.072971]: SOMA.FunctionalPart \n", + "[INFO] [1712351066.073221]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712351066.073462]: Ancestors: {DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.073715]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712351066.074006]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.074540]: Instances: []\n", + "[INFO] [1712351066.074815]: Direct Instances: []\n", + "[INFO] [1712351066.075079]: Inverse Restrictions: []\n", + "[INFO] [1712351066.075310]: -------------------\n", + "[INFO] [1712351066.075539]: SOMA.Graspability \n", + "[INFO] [1712351066.075767]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712351066.076012]: Ancestors: {SOMA.Extrinsic, SOMA.Graspability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.076259]: Subclasses: []\n", + "[INFO] [1712351066.076543]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.077018]: Instances: []\n", + "[INFO] [1712351066.077271]: Direct Instances: []\n", + "[INFO] [1712351066.077552]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712351066.077787]: -------------------\n", + "[INFO] [1712351066.078019]: SOMA.Destination \n", + "[INFO] [1712351066.078246]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712351066.078504]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, SOMA.Destination, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.078752]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712351066.079039]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.079518]: Instances: []\n", + "[INFO] [1712351066.079831]: Direct Instances: []\n", + "[INFO] [1712351066.080174]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712351066.080425]: -------------------\n", + "[INFO] [1712351066.080663]: SOMA.Location \n", + "[INFO] [1712351066.080904]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712351066.081149]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.081408]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712351066.081700]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.082196]: Instances: []\n", + "[INFO] [1712351066.082443]: Direct Instances: []\n", + "[INFO] [1712351066.082693]: Inverse Restrictions: []\n", + "[INFO] [1712351066.082933]: -------------------\n", + "[INFO] [1712351066.083166]: SOMA.DestroyedObject \n", + "[INFO] [1712351066.083396]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351066.083633]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DestroyedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.083884]: Subclasses: []\n", + "[INFO] [1712351066.084171]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.084650]: Instances: []\n", + "[INFO] [1712351066.085119]: Direct Instances: []\n", + "[INFO] [1712351066.085515]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712351066.085778]: -------------------\n", + "[INFO] [1712351066.086018]: SOMA.Destruction \n", + "[INFO] [1712351066.086261]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712351066.086509]: Ancestors: {DUL.SocialObject, SOMA.Destruction, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.086770]: Subclasses: []\n", + "[INFO] [1712351066.087090]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.087577]: Instances: []\n", + "[INFO] [1712351066.087861]: Direct Instances: []\n", + "[INFO] [1712351066.088116]: Inverse Restrictions: []\n", + "[INFO] [1712351066.088351]: -------------------\n", + "[INFO] [1712351066.088583]: SOMA.DetectedObject \n", + "[INFO] [1712351066.088824]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351066.089064]: Ancestors: {SOMA.DetectedObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.089316]: Subclasses: []\n", + "[INFO] [1712351066.089607]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.090083]: Instances: []\n", + "[INFO] [1712351066.090340]: Direct Instances: []\n", + "[INFO] [1712351066.090600]: Inverse Restrictions: []\n", + "[INFO] [1712351066.090836]: -------------------\n", + "[INFO] [1712351066.091070]: SOMA.DeviceState \n", + "[INFO] [1712351066.091305]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351066.091539]: Ancestors: {SOMA.DeviceState, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351066.091789]: Subclasses: []\n", + "[INFO] [1712351066.092079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.092552]: Instances: []\n", + "[INFO] [1712351066.092802]: Direct Instances: []\n", + "[INFO] [1712351066.093056]: Inverse Restrictions: []\n", + "[INFO] [1712351066.093298]: -------------------\n", + "[INFO] [1712351066.093527]: SOMA.DeviceStateRange \n", + "[INFO] [1712351066.093754]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351066.093987]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", + "[INFO] [1712351066.094240]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712351066.094543]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.095038]: Instances: []\n", + "[INFO] [1712351066.095485]: Direct Instances: []\n", + "[INFO] [1712351066.095816]: Inverse Restrictions: []\n", + "[INFO] [1712351066.096093]: -------------------\n", + "[INFO] [1712351066.096380]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712351066.096648]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712351066.096904]: Ancestors: {SOMA.DeviceTurnedOff, DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", + "[INFO] [1712351066.097159]: Subclasses: []\n", + "[INFO] [1712351066.097478]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.097973]: Instances: []\n", + "[INFO] [1712351066.098237]: Direct Instances: []\n", + "[INFO] [1712351066.098538]: Inverse Restrictions: []\n", + "[INFO] [1712351066.098788]: -------------------\n", + "[INFO] [1712351066.099033]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712351066.099276]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712351066.099515]: Ancestors: {SOMA.DeviceTurnedOn, DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", + "[INFO] [1712351066.099760]: Subclasses: []\n", + "[INFO] [1712351066.100053]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.100552]: Instances: []\n", + "[INFO] [1712351066.100830]: Direct Instances: []\n", + "[INFO] [1712351066.101127]: Inverse Restrictions: []\n", + "[INFO] [1712351066.101363]: -------------------\n", + "[INFO] [1712351066.101600]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712351066.101833]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712351066.102089]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351066.102350]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712351066.102641]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.103126]: Instances: []\n", + "[INFO] [1712351066.103408]: Direct Instances: []\n", + "[INFO] [1712351066.103673]: Inverse Restrictions: []\n", + "[INFO] [1712351066.103908]: -------------------\n", + "[INFO] [1712351066.104139]: SOMA.Dicing \n", + "[INFO] [1712351066.104370]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712351066.104610]: Ancestors: {SOMA.ModifyingPhysicalObject, SOMA.Dicing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", + "[INFO] [1712351066.104870]: Subclasses: []\n", + "[INFO] [1712351066.105171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.105660]: Instances: []\n", + "[INFO] [1712351066.105922]: Direct Instances: []\n", + "[INFO] [1712351066.106181]: Inverse Restrictions: []\n", + "[INFO] [1712351066.106420]: -------------------\n", + "[INFO] [1712351066.106652]: SOMA.DirectedMotion \n", + "[INFO] [1712351066.106879]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712351066.107235]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.107553]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712351066.107878]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.108405]: Instances: []\n", + "[INFO] [1712351066.108692]: Direct Instances: []\n", + "[INFO] [1712351066.108970]: Inverse Restrictions: []\n", + "[INFO] [1712351066.109209]: -------------------\n", + "[INFO] [1712351066.109444]: SOMA.UndirectedMotion \n", + "[INFO] [1712351066.109675]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712351066.109920]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.UndirectedMotion, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.110174]: Subclasses: []\n", + "[INFO] [1712351066.110475]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.110962]: Instances: []\n", + "[INFO] [1712351066.111227]: Direct Instances: []\n", + "[INFO] [1712351066.111484]: Inverse Restrictions: []\n", + "[INFO] [1712351066.111721]: -------------------\n", + "[INFO] [1712351066.111960]: SOMA.Dirty \n", + "[INFO] [1712351066.112192]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712351066.112427]: Ancestors: {SOMA.CleanlinessRegion, SOMA.Dirty, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351066.112670]: Subclasses: []\n", + "[INFO] [1712351066.113004]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.113510]: Instances: []\n", + "[INFO] [1712351066.113771]: Direct Instances: []\n", + "[INFO] [1712351066.114018]: Inverse Restrictions: []\n", + "[INFO] [1712351066.114253]: -------------------\n", + "[INFO] [1712351066.114494]: SOMA.Discourse \n", + "[INFO] [1712351066.114733]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712351066.114988]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, SOMA.Discourse, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.115241]: Subclasses: []\n", + "[INFO] [1712351066.115531]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.116038]: Instances: []\n", + "[INFO] [1712351066.116308]: Direct Instances: []\n", + "[INFO] [1712351066.116557]: Inverse Restrictions: []\n", + "[INFO] [1712351066.116792]: -------------------\n", + "[INFO] [1712351066.117031]: SOMA.Distancing \n", + "[INFO] [1712351066.117275]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712351066.117521]: Ancestors: {DUL.SocialObject, SOMA.Distancing, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.117762]: Subclasses: []\n", + "[INFO] [1712351066.118046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.118545]: Instances: []\n", + "[INFO] [1712351066.118808]: Direct Instances: []\n", + "[INFO] [1712351066.119056]: Inverse Restrictions: []\n", + "[INFO] [1712351066.119289]: -------------------\n", + "[INFO] [1712351066.119516]: SOMA.Dreaming \n", + "[INFO] [1712351066.119743]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351066.119989]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", + "[INFO] [1712351066.120233]: Subclasses: []\n", + "[INFO] [1712351066.120518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.120997]: Instances: []\n", + "[INFO] [1712351066.121274]: Direct Instances: []\n", + "[INFO] [1712351066.121531]: Inverse Restrictions: []\n", + "[INFO] [1712351066.121763]: -------------------\n", + "[INFO] [1712351066.121997]: SOMA.Driving \n", + "[INFO] [1712351066.122238]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351066.122488]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, SOMA.BodyMovement, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing, SOMA.Driving}\n", + "[INFO] [1712351066.122729]: Subclasses: []\n", + "[INFO] [1712351066.123026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.123526]: Instances: []\n", + "[INFO] [1712351066.123792]: Direct Instances: []\n", + "[INFO] [1712351066.124039]: Inverse Restrictions: []\n", + "[INFO] [1712351066.124269]: -------------------\n", + "[INFO] [1712351066.124497]: SOMA.Flying \n", + "[INFO] [1712351066.124722]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351066.124976]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.Flying, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.125226]: Subclasses: []\n", + "[INFO] [1712351066.125521]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.126004]: Instances: []\n", + "[INFO] [1712351066.126272]: Direct Instances: []\n", + "[INFO] [1712351066.126540]: Inverse Restrictions: []\n", + "[INFO] [1712351066.126773]: -------------------\n", + "[INFO] [1712351066.127003]: SOMA.Swimming \n", + "[INFO] [1712351066.127232]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351066.127501]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, SOMA.Swimming, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.127751]: Subclasses: []\n", + "[INFO] [1712351066.128047]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.128528]: Instances: []\n", + "[INFO] [1712351066.128808]: Direct Instances: []\n", + "[INFO] [1712351066.129076]: Inverse Restrictions: []\n", + "[INFO] [1712351066.129309]: -------------------\n", + "[INFO] [1712351066.129542]: SOMA.Walking \n", + "[INFO] [1712351066.129789]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351066.130168]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, SOMA.Walking, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.130471]: Subclasses: []\n", + "[INFO] [1712351066.130787]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.131283]: Instances: []\n", + "[INFO] [1712351066.131558]: Direct Instances: []\n", + "[INFO] [1712351066.131826]: Inverse Restrictions: []\n", + "[INFO] [1712351066.132062]: -------------------\n", + "[INFO] [1712351066.132300]: SOMA.Dropping \n", + "[INFO] [1712351066.132539]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351066.132787]: Ancestors: {DUL.SocialObject, SOMA.Dropping, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.133052]: Subclasses: []\n", + "[INFO] [1712351066.133433]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.133925]: Instances: []\n", + "[INFO] [1712351066.134190]: Direct Instances: []\n", + "[INFO] [1712351066.134460]: Inverse Restrictions: []\n", + "[INFO] [1712351066.134715]: -------------------\n", + "[INFO] [1712351066.134951]: SOMA.Placing \n", + "[INFO] [1712351066.135181]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351066.135429]: Ancestors: {SOMA.Placing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.135680]: Subclasses: []\n", + "[INFO] [1712351066.135972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.136443]: Instances: []\n", + "[INFO] [1712351066.136714]: Direct Instances: []\n", + "[INFO] [1712351066.136975]: Inverse Restrictions: []\n", + "[INFO] [1712351066.137211]: -------------------\n", + "[INFO] [1712351066.137445]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712351066.137689]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712351066.137950]: Ancestors: {SOMA.ESTSchemaTheory, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.138194]: Subclasses: []\n", + "[INFO] [1712351066.138484]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351066.138974]: Instances: []\n", + "[INFO] [1712351066.139235]: Direct Instances: []\n", + "[INFO] [1712351066.139483]: Inverse Restrictions: []\n", + "[INFO] [1712351066.139723]: -------------------\n", + "[INFO] [1712351066.139952]: SOMA.ExistingObjectRole \n", + "[INFO] [1712351066.140204]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351066.140457]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.ExistingObjectRole, owl.Thing}\n", + "[INFO] [1712351066.140699]: Subclasses: []\n", + "[INFO] [1712351066.140999]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.141515]: Instances: []\n", + "[INFO] [1712351066.141784]: Direct Instances: []\n", + "[INFO] [1712351066.142077]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712351066.142321]: -------------------\n", + "[INFO] [1712351066.142552]: SOMA.Effort \n", + "[INFO] [1712351066.142785]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712351066.143043]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Effort, owl.Thing}\n", + "[INFO] [1712351066.143288]: Subclasses: []\n", + "[INFO] [1712351066.143574]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.144068]: Instances: []\n", + "[INFO] [1712351066.144333]: Direct Instances: []\n", + "[INFO] [1712351066.144586]: Inverse Restrictions: []\n", + "[INFO] [1712351066.144826]: -------------------\n", + "[INFO] [1712351066.145061]: SOMA.EnclosedObject \n", + "[INFO] [1712351066.145298]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712351066.145560]: Ancestors: {DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.145820]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712351066.146109]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.146646]: Instances: []\n", + "[INFO] [1712351066.146941]: Direct Instances: []\n", + "[INFO] [1712351066.147244]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712351066.147494]: -------------------\n", + "[INFO] [1712351066.147734]: SOMA.Enclosing \n", + "[INFO] [1712351066.147977]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712351066.148235]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.148513]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712351066.148821]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.149317]: Instances: []\n", + "[INFO] [1712351066.149578]: Direct Instances: []\n", + "[INFO] [1712351066.149830]: Inverse Restrictions: []\n", + "[INFO] [1712351066.150082]: -------------------\n", + "[INFO] [1712351066.150324]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712351066.150562]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351066.150809]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.151058]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712351066.151361]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.151857]: Instances: []\n", + "[INFO] [1712351066.152111]: Direct Instances: []\n", + "[INFO] [1712351066.152356]: Inverse Restrictions: []\n", + "[INFO] [1712351066.152587]: -------------------\n", + "[INFO] [1712351066.152825]: SOMA.Manipulating \n", + "[INFO] [1712351066.153077]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712351066.153329]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.153593]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712351066.153881]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.154396]: Instances: []\n", + "[INFO] [1712351066.154655]: Direct Instances: []\n", + "[INFO] [1712351066.154909]: Inverse Restrictions: []\n", + "[INFO] [1712351066.155145]: -------------------\n", + "[INFO] [1712351066.155389]: SOMA.Episode \n", + "[INFO] [1712351066.155627]: Super classes: [DUL.Situation]\n", + "[INFO] [1712351066.155865]: Ancestors: {owl.Thing, SOMA.Episode, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712351066.156107]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712351066.156395]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.156897]: Instances: []\n", + "[INFO] [1712351066.157175]: Direct Instances: []\n", + "[INFO] [1712351066.157425]: Inverse Restrictions: []\n", + "[INFO] [1712351066.157661]: -------------------\n", + "[INFO] [1712351066.157909]: SOMA.ExcludedObject \n", + "[INFO] [1712351066.158149]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351066.158395]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, SOMA.ExcludedObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.158640]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712351066.158936]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.159428]: Instances: []\n", + "[INFO] [1712351066.159682]: Direct Instances: []\n", + "[INFO] [1712351066.159981]: Inverse Restrictions: []\n", + "[INFO] [1712351066.160234]: -------------------\n", + "[INFO] [1712351066.160476]: SOMA.ExecutableFile \n", + "[INFO] [1712351066.160707]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.161139]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", + "[INFO] [1712351066.161467]: Subclasses: []\n", + "[INFO] [1712351066.161804]: Properties: [rdf-schema.label, DUL.realizes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.162309]: Instances: []\n", + "[INFO] [1712351066.162573]: Direct Instances: []\n", + "[INFO] [1712351066.162879]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712351066.163148]: -------------------\n", + "[INFO] [1712351066.163399]: SOMA.Executable_Code \n", + "[INFO] [1712351066.163828]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712351066.164125]: Ancestors: {SOMA.Executable_Code, SOMA.Computer_Program, owl.Thing}\n", + "[INFO] [1712351066.164372]: Subclasses: []\n", + "[INFO] [1712351066.164693]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.165206]: Instances: []\n", + "[INFO] [1712351066.165478]: Direct Instances: []\n", + "[INFO] [1712351066.165836]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712351066.166094]: -------------------\n", + "[INFO] [1712351066.166332]: SOMA.ExecutableFormat \n", + "[INFO] [1712351066.166568]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712351066.166809]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.ExecutableFormat, owl.Thing}\n", + "[INFO] [1712351066.167043]: Subclasses: []\n", + "[INFO] [1712351066.167336]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.167828]: Instances: []\n", + "[INFO] [1712351066.168094]: Direct Instances: []\n", + "[INFO] [1712351066.168397]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712351066.168642]: -------------------\n", + "[INFO] [1712351066.168886]: SOMA.SchematicTheory \n", + "[INFO] [1712351066.169118]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712351066.169354]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.169606]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712351066.169905]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.170413]: Instances: []\n", + "[INFO] [1712351066.170673]: Direct Instances: []\n", + "[INFO] [1712351066.170924]: Inverse Restrictions: []\n", + "[INFO] [1712351066.171164]: -------------------\n", + "[INFO] [1712351066.171396]: SOMA.ExecutableSoftware \n", + "[INFO] [1712351066.171624]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.171852]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", + "[INFO] [1712351066.172084]: Subclasses: []\n", + "[INFO] [1712351066.172371]: Properties: [rdf-schema.label, DUL.hasMember, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.172873]: Instances: []\n", + "[INFO] [1712351066.173152]: Direct Instances: []\n", + "[INFO] [1712351066.173404]: Inverse Restrictions: []\n", + "[INFO] [1712351066.173634]: -------------------\n", + "[INFO] [1712351066.173859]: SOMA.Software \n", + "[INFO] [1712351066.174109]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712351066.174353]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Software, owl.Thing}\n", + "[INFO] [1712351066.174602]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712351066.174889]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351066.175391]: Instances: []\n", + "[INFO] [1712351066.175657]: Direct Instances: []\n", + "[INFO] [1712351066.176035]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351066.176276]: -------------------\n", + "[INFO] [1712351066.176509]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712351066.176737]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712351066.176990]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.177247]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712351066.177535]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.178017]: Instances: []\n", + "[INFO] [1712351066.178284]: Direct Instances: []\n", + "[INFO] [1712351066.178539]: Inverse Restrictions: []\n", + "[INFO] [1712351066.178766]: -------------------\n", + "[INFO] [1712351066.179015]: SOMA.ExperiencerRole \n", + "[INFO] [1712351066.179247]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712351066.179498]: Ancestors: {DUL.SocialObject, SOMA.EventAdjacentRole, SOMA.PerformerRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.ExperiencerRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351066.179764]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712351066.180066]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.180559]: Instances: []\n", + "[INFO] [1712351066.180835]: Direct Instances: []\n", + "[INFO] [1712351066.181097]: Inverse Restrictions: []\n", + "[INFO] [1712351066.181340]: -------------------\n", + "[INFO] [1712351066.181569]: SOMA.ExtractedObject \n", + "[INFO] [1712351066.181799]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351066.182045]: Ancestors: {SOMA.ExtractedObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.182292]: Subclasses: []\n", + "[INFO] [1712351066.182573]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.183054]: Instances: []\n", + "[INFO] [1712351066.183315]: Direct Instances: []\n", + "[INFO] [1712351066.183564]: Inverse Restrictions: []\n", + "[INFO] [1712351066.183798]: -------------------\n", + "[INFO] [1712351066.184024]: SOMA.PhysicalQuality \n", + "[INFO] [1712351066.184258]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712351066.184511]: Ancestors: {DUL.Entity, owl.Thing, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712351066.184762]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712351066.185063]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf]\n", + "[INFO] [1712351066.185658]: Instances: []\n", + "[INFO] [1712351066.185947]: Direct Instances: []\n", + "[INFO] [1712351066.186209]: Inverse Restrictions: []\n", + "[INFO] [1712351066.186450]: -------------------\n", + "[INFO] [1712351066.186687]: SOMA.FailedAttempt \n", + "[INFO] [1712351066.186932]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712351066.187184]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.FailedAttempt, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351066.187424]: Subclasses: []\n", + "[INFO] [1712351066.187703]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.188184]: Instances: []\n", + "[INFO] [1712351066.188451]: Direct Instances: []\n", + "[INFO] [1712351066.188698]: Inverse Restrictions: []\n", + "[INFO] [1712351066.188927]: -------------------\n", + "[INFO] [1712351066.189155]: SOMA.FaultySoftware \n", + "[INFO] [1712351066.189395]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712351066.189641]: Ancestors: {DUL.Description, SOMA.FaultySoftware, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.189876]: Subclasses: []\n", + "[INFO] [1712351066.190160]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.190672]: Instances: []\n", + "[INFO] [1712351066.190999]: Direct Instances: []\n", + "[INFO] [1712351066.191274]: Inverse Restrictions: []\n", + "[INFO] [1712351066.191529]: -------------------\n", + "[INFO] [1712351066.191818]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712351066.192119]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712351066.192441]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.192773]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712351066.193121]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.193650]: Instances: []\n", + "[INFO] [1712351066.193938]: Direct Instances: []\n", + "[INFO] [1712351066.194204]: Inverse Restrictions: []\n", + "[INFO] [1712351066.194443]: -------------------\n", + "[INFO] [1712351066.194682]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712351066.194930]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712351066.195197]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PhysicalAcquiring, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.195464]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712351066.195761]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.196269]: Instances: []\n", + "[INFO] [1712351066.196552]: Direct Instances: []\n", + "[INFO] [1712351066.196818]: Inverse Restrictions: []\n", + "[INFO] [1712351066.197063]: -------------------\n", + "[INFO] [1712351066.197297]: SOMA.Finger \n", + "[INFO] [1712351066.197535]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712351066.197796]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Finger, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712351066.198041]: Subclasses: []\n", + "[INFO] [1712351066.198346]: Properties: [DUL.isPartOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.198830]: Instances: []\n", + "[INFO] [1712351066.199110]: Direct Instances: []\n", + "[INFO] [1712351066.199363]: Inverse Restrictions: []\n", + "[INFO] [1712351066.199593]: -------------------\n", + "[INFO] [1712351066.199818]: SOMA.Hand \n", + "[INFO] [1712351066.200045]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712351066.200294]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, SOMA.Hand, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.200539]: Subclasses: []\n", + "[INFO] [1712351066.200834]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.201320]: Instances: []\n", + "[INFO] [1712351066.201603]: Direct Instances: []\n", + "[INFO] [1712351066.201914]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712351066.202155]: -------------------\n", + "[INFO] [1712351066.202386]: SOMA.FixedJoint \n", + "[INFO] [1712351066.202624]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712351066.202877]: Ancestors: {SOMA.FixedJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.203124]: Subclasses: []\n", + "[INFO] [1712351066.203429]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.203909]: Instances: []\n", + "[INFO] [1712351066.204188]: Direct Instances: []\n", + "[INFO] [1712351066.204479]: Inverse Restrictions: []\n", + "[INFO] [1712351066.204715]: -------------------\n", + "[INFO] [1712351066.205046]: SOMA.MovableJoint \n", + "[INFO] [1712351066.205351]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712351066.205630]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.205920]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712351066.206244]: Properties: [rdf-schema.label, SOMA.hasJointState, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351066.206755]: Instances: []\n", + "[INFO] [1712351066.207026]: Direct Instances: []\n", + "[INFO] [1712351066.207326]: Inverse Restrictions: []\n", + "[INFO] [1712351066.207581]: -------------------\n", + "[INFO] [1712351066.207832]: SOMA.Flipping \n", + "[INFO] [1712351066.208076]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712351066.208326]: Ancestors: {SOMA.Flipping, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.208567]: Subclasses: []\n", + "[INFO] [1712351066.208863]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.209367]: Instances: []\n", + "[INFO] [1712351066.209633]: Direct Instances: []\n", + "[INFO] [1712351066.209882]: Inverse Restrictions: []\n", + "[INFO] [1712351066.210119]: -------------------\n", + "[INFO] [1712351066.210361]: SOMA.FloatingJoint \n", + "[INFO] [1712351066.210605]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712351066.210855]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, SOMA.FloatingJoint, DUL.PhysicalObject}\n", + "[INFO] [1712351066.211097]: Subclasses: []\n", + "[INFO] [1712351066.211383]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.211888]: Instances: []\n", + "[INFO] [1712351066.212155]: Direct Instances: []\n", + "[INFO] [1712351066.212406]: Inverse Restrictions: []\n", + "[INFO] [1712351066.212641]: -------------------\n", + "[INFO] [1712351066.212888]: SOMA.Fluid \n", + "[INFO] [1712351066.213168]: Super classes: [DUL.Substance]\n", + "[INFO] [1712351066.213444]: Ancestors: {DUL.Substance, DUL.Object, DUL.Entity, SOMA.Fluid, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.213688]: Subclasses: []\n", + "[INFO] [1712351066.213975]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.214469]: Instances: []\n", + "[INFO] [1712351066.214731]: Direct Instances: []\n", + "[INFO] [1712351066.214979]: Inverse Restrictions: []\n", + "[INFO] [1712351066.215221]: -------------------\n", + "[INFO] [1712351066.215454]: SOMA.MovedObject \n", + "[INFO] [1712351066.215703]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712351066.215970]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, SOMA.MovedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.216220]: Subclasses: []\n", + "[INFO] [1712351066.216518]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment]\n", + "[INFO] [1712351066.217002]: Instances: []\n", + "[INFO] [1712351066.217272]: Direct Instances: []\n", + "[INFO] [1712351066.217679]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712351066.217925]: -------------------\n", + "[INFO] [1712351066.218162]: SOMA.Focusing \n", + "[INFO] [1712351066.218393]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712351066.218654]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AttentionShift, SOMA.Focusing, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.218900]: Subclasses: []\n", + "[INFO] [1712351066.219184]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.219661]: Instances: []\n", + "[INFO] [1712351066.219931]: Direct Instances: []\n", + "[INFO] [1712351066.220183]: Inverse Restrictions: []\n", + "[INFO] [1712351066.220420]: -------------------\n", + "[INFO] [1712351066.220651]: SOMA.Foolishness \n", + "[INFO] [1712351066.220886]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712351066.221132]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, SOMA.Foolishness, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351066.221384]: Subclasses: []\n", + "[INFO] [1712351066.221671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.222146]: Instances: []\n", + "[INFO] [1712351066.222395]: Direct Instances: []\n", + "[INFO] [1712351066.222649]: Inverse Restrictions: []\n", + "[INFO] [1712351066.222887]: -------------------\n", + "[INFO] [1712351066.223119]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712351066.223351]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712351066.223593]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, SOMA.ForgettingIncorrectInformation, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.223841]: Subclasses: []\n", + "[INFO] [1712351066.224129]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.224606]: Instances: []\n", + "[INFO] [1712351066.224873]: Direct Instances: []\n", + "[INFO] [1712351066.225123]: Inverse Restrictions: []\n", + "[INFO] [1712351066.225358]: -------------------\n", + "[INFO] [1712351066.225593]: SOMA.InformationDismissal \n", + "[INFO] [1712351066.225846]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712351066.226108]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.226365]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712351066.226660]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712351066.227162]: Instances: []\n", + "[INFO] [1712351066.227427]: Direct Instances: []\n", + "[INFO] [1712351066.227682]: Inverse Restrictions: []\n", + "[INFO] [1712351066.227918]: -------------------\n", + "[INFO] [1712351066.228155]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712351066.228402]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712351066.228653]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, SOMA.ForgettingIrrelevantInformation, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.228904]: Subclasses: []\n", + "[INFO] [1712351066.229213]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.229704]: Instances: []\n", + "[INFO] [1712351066.229975]: Direct Instances: []\n", + "[INFO] [1712351066.230224]: Inverse Restrictions: []\n", + "[INFO] [1712351066.230453]: -------------------\n", + "[INFO] [1712351066.230685]: SOMA.Language \n", + "[INFO] [1712351066.230928]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712351066.231169]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.231421]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712351066.231717]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.232237]: Instances: []\n", + "[INFO] [1712351066.232500]: Direct Instances: []\n", + "[INFO] [1712351066.232858]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712351066.233282]: -------------------\n", + "[INFO] [1712351066.233590]: SOMA.Item \n", + "[INFO] [1712351066.233859]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351066.234132]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.Item, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.234407]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712351066.234707]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.235230]: Instances: []\n", + "[INFO] [1712351066.235505]: Direct Instances: []\n", + "[INFO] [1712351066.235855]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712351066.236094]: -------------------\n", + "[INFO] [1712351066.236324]: SOMA.FunctionalDesign \n", + "[INFO] [1712351066.236554]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712351066.236810]: Ancestors: {SOMA.FunctionalDesign, DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.237071]: Subclasses: []\n", + "[INFO] [1712351066.237372]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.237854]: Instances: []\n", + "[INFO] [1712351066.238121]: Direct Instances: []\n", + "[INFO] [1712351066.238378]: Inverse Restrictions: []\n", + "[INFO] [1712351066.238610]: -------------------\n", + "[INFO] [1712351066.238838]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712351066.239062]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712351066.239296]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.FunctionalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.239589]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712351066.239889]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.240389]: Instances: []\n", + "[INFO] [1712351066.240677]: Direct Instances: []\n", + "[INFO] [1712351066.240945]: Inverse Restrictions: []\n", + "[INFO] [1712351066.241187]: -------------------\n", + "[INFO] [1712351066.241416]: SOMA.LocatumRole \n", + "[INFO] [1712351066.241648]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351066.241893]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.LocatumRole, SOMA.SpatialRelationRole, owl.Thing}\n", + "[INFO] [1712351066.242141]: Subclasses: []\n", + "[INFO] [1712351066.242434]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.242911]: Instances: []\n", + "[INFO] [1712351066.243176]: Direct Instances: []\n", + "[INFO] [1712351066.243513]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712351066.243759]: -------------------\n", + "[INFO] [1712351066.243989]: SOMA.RelatumRole \n", + "[INFO] [1712351066.244219]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351066.244453]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.RelatumRole, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.SpatialRelationRole, owl.Thing}\n", + "[INFO] [1712351066.244707]: Subclasses: []\n", + "[INFO] [1712351066.245013]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.245502]: Instances: []\n", + "[INFO] [1712351066.245760]: Direct Instances: []\n", + "[INFO] [1712351066.246083]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712351066.246352]: -------------------\n", + "[INFO] [1712351066.246633]: SOMA.GetTaskParameter \n", + "[INFO] [1712351066.246877]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712351066.247116]: Ancestors: {SOMA.Planning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing, SOMA.GetTaskParameter}\n", + "[INFO] [1712351066.247368]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712351066.247673]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.248360]: Instances: []\n", + "[INFO] [1712351066.248745]: Direct Instances: []\n", + "[INFO] [1712351066.249080]: Inverse Restrictions: []\n", + "[INFO] [1712351066.249335]: -------------------\n", + "[INFO] [1712351066.249576]: SOMA.Planning \n", + "[INFO] [1712351066.249820]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712351066.250056]: Ancestors: {SOMA.Planning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351066.250309]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712351066.250607]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.251097]: Instances: []\n", + "[INFO] [1712351066.251360]: Direct Instances: []\n", + "[INFO] [1712351066.251614]: Inverse Restrictions: []\n", + "[INFO] [1712351066.251857]: -------------------\n", + "[INFO] [1712351066.252091]: SOMA.GraphDatabase \n", + "[INFO] [1712351066.252323]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712351066.252566]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, SOMA.GraphDatabase, DUL.Role, owl.Thing}\n", + "[INFO] [1712351066.252834]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712351066.253145]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.253637]: Instances: []\n", + "[INFO] [1712351066.253894]: Direct Instances: []\n", + "[INFO] [1712351066.254144]: Inverse Restrictions: []\n", + "[INFO] [1712351066.254384]: -------------------\n", + "[INFO] [1712351066.254616]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712351066.254843]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712351066.255081]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.GraphQueryLanguage, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351066.255333]: Subclasses: []\n", + "[INFO] [1712351066.255630]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.256116]: Instances: []\n", + "[INFO] [1712351066.256392]: Direct Instances: []\n", + "[INFO] [1712351066.256652]: Inverse Restrictions: []\n", + "[INFO] [1712351066.256896]: -------------------\n", + "[INFO] [1712351066.257137]: SOMA.QueryLanguage \n", + "[INFO] [1712351066.257366]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351066.257606]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351066.257867]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712351066.258161]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.258649]: Instances: []\n", + "[INFO] [1712351066.258921]: Direct Instances: []\n", + "[INFO] [1712351066.259187]: Inverse Restrictions: []\n", + "[INFO] [1712351066.259422]: -------------------\n", + "[INFO] [1712351066.259650]: SOMA.GraspTransfer \n", + "[INFO] [1712351066.259878]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712351066.260122]: Ancestors: {DUL.SocialObject, SOMA.GraspTransfer, SOMA.Manipulating, SOMA.Grasping, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.260374]: Subclasses: []\n", + "[INFO] [1712351066.260666]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.261307]: Instances: []\n", + "[INFO] [1712351066.261747]: Direct Instances: []\n", + "[INFO] [1712351066.262156]: Inverse Restrictions: []\n", + "[INFO] [1712351066.262504]: -------------------\n", + "[INFO] [1712351066.262871]: SOMA.Grasping \n", + "[INFO] [1712351066.263184]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351066.263454]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, SOMA.Grasping, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.263713]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712351066.264017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.264506]: Instances: []\n", + "[INFO] [1712351066.264790]: Direct Instances: []\n", + "[INFO] [1712351066.265062]: Inverse Restrictions: []\n", + "[INFO] [1712351066.265303]: -------------------\n", + "[INFO] [1712351066.265541]: SOMA.Releasing \n", + "[INFO] [1712351066.265769]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351066.266011]: Ancestors: {SOMA.Releasing, DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.266265]: Subclasses: []\n", + "[INFO] [1712351066.266556]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.267033]: Instances: []\n", + "[INFO] [1712351066.267281]: Direct Instances: []\n", + "[INFO] [1712351066.267528]: Inverse Restrictions: []\n", + "[INFO] [1712351066.267766]: -------------------\n", + "[INFO] [1712351066.267996]: SOMA.GraspingMotion \n", + "[INFO] [1712351066.268223]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712351066.268461]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", + "[INFO] [1712351066.268708]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712351066.269032]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.269547]: Instances: []\n", + "[INFO] [1712351066.269810]: Direct Instances: []\n", + "[INFO] [1712351066.270101]: Inverse Restrictions: []\n", + "[INFO] [1712351066.270334]: -------------------\n", + "[INFO] [1712351066.270577]: SOMA.IntermediateGrasp \n", + "[INFO] [1712351066.270812]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712351066.271057]: Ancestors: {SOMA.IntermediateGrasp, SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", + "[INFO] [1712351066.271297]: Subclasses: []\n", + "[INFO] [1712351066.271592]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.272089]: Instances: []\n", + "[INFO] [1712351066.272351]: Direct Instances: []\n", + "[INFO] [1712351066.272637]: Inverse Restrictions: []\n", + "[INFO] [1712351066.272884]: -------------------\n", + "[INFO] [1712351066.273130]: SOMA.PowerGrasp \n", + "[INFO] [1712351066.273366]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712351066.273611]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PowerGrasp, SOMA.GraspingMotion}\n", + "[INFO] [1712351066.273849]: Subclasses: []\n", + "[INFO] [1712351066.274146]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.274641]: Instances: []\n", + "[INFO] [1712351066.274917]: Direct Instances: []\n", + "[INFO] [1712351066.275218]: Inverse Restrictions: []\n", + "[INFO] [1712351066.275460]: -------------------\n", + "[INFO] [1712351066.275693]: SOMA.PrecisionGrasp \n", + "[INFO] [1712351066.275935]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712351066.276182]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.PrecisionGrasp, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", + "[INFO] [1712351066.276424]: Subclasses: []\n", + "[INFO] [1712351066.276710]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.277202]: Instances: []\n", + "[INFO] [1712351066.277472]: Direct Instances: []\n", + "[INFO] [1712351066.277774]: Inverse Restrictions: []\n", + "[INFO] [1712351066.278007]: -------------------\n", + "[INFO] [1712351066.278249]: SOMA.PrehensileMotion \n", + "[INFO] [1712351066.278491]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712351066.278759]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.279016]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712351066.279318]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.279837]: Instances: []\n", + "[INFO] [1712351066.280103]: Direct Instances: []\n", + "[INFO] [1712351066.280355]: Inverse Restrictions: []\n", + "[INFO] [1712351066.280595]: -------------------\n", + "[INFO] [1712351066.280829]: SOMA.ReleasingMotion \n", + "[INFO] [1712351066.281078]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712351066.281332]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, SOMA.ReleasingMotion, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.281571]: Subclasses: []\n", + "[INFO] [1712351066.281854]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.282355]: Instances: []\n", + "[INFO] [1712351066.282617]: Direct Instances: []\n", + "[INFO] [1712351066.282907]: Inverse Restrictions: []\n", + "[INFO] [1712351066.283147]: -------------------\n", + "[INFO] [1712351066.283386]: SOMA.GreenColor \n", + "[INFO] [1712351066.283616]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712351066.283871]: Ancestors: {SOMA.ColorRegion, SOMA.GreenColor, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351066.284114]: Subclasses: []\n", + "[INFO] [1712351066.284398]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.284883]: Instances: []\n", + "[INFO] [1712351066.285157]: Direct Instances: []\n", + "[INFO] [1712351066.285414]: Inverse Restrictions: []\n", + "[INFO] [1712351066.285655]: -------------------\n", + "[INFO] [1712351066.285889]: SOMA.Gripper \n", + "[INFO] [1712351066.286326]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712351066.286692]: Ancestors: {SOMA.PhysicalEffector, SOMA.Gripper, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.286951]: Subclasses: []\n", + "[INFO] [1712351066.287246]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.287727]: Instances: []\n", + "[INFO] [1712351066.288011]: Direct Instances: []\n", + "[INFO] [1712351066.288274]: Inverse Restrictions: []\n", + "[INFO] [1712351066.288522]: -------------------\n", + "[INFO] [1712351066.288759]: SOMA.PrehensileEffector \n", + "[INFO] [1712351066.289011]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712351066.289261]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.289520]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712351066.289808]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.290302]: Instances: []\n", + "[INFO] [1712351066.290575]: Direct Instances: []\n", + "[INFO] [1712351066.290896]: Inverse Restrictions: []\n", + "[INFO] [1712351066.291136]: -------------------\n", + "[INFO] [1712351066.291381]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712351066.291625]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712351066.291866]: Ancestors: {DUL.Description, SOMA.HardwareDiagnosis, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.292101]: Subclasses: []\n", + "[INFO] [1712351066.292384]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.292871]: Instances: []\n", + "[INFO] [1712351066.293139]: Direct Instances: []\n", + "[INFO] [1712351066.293385]: Inverse Restrictions: []\n", + "[INFO] [1712351066.293613]: -------------------\n", + "[INFO] [1712351066.293839]: SOMA.HasQualityRegion \n", + "[INFO] [1712351066.294091]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712351066.294337]: Ancestors: {SOMA.HasQualityRegion, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351066.294578]: Subclasses: []\n", + "[INFO] [1712351066.294871]: Properties: [DUL.hasQuality, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy, DUL.hasRegion]\n", + "[INFO] [1712351066.295371]: Instances: []\n", + "[INFO] [1712351066.295639]: Direct Instances: []\n", + "[INFO] [1712351066.295887]: Inverse Restrictions: []\n", + "[INFO] [1712351066.296129]: -------------------\n", + "[INFO] [1712351066.296370]: SOMA.Head \n", + "[INFO] [1712351066.296618]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712351066.296865]: Ancestors: {owl.Thing, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Head, DUL.PhysicalObject}\n", + "[INFO] [1712351066.297105]: Subclasses: []\n", + "[INFO] [1712351066.297393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.297901]: Instances: []\n", + "[INFO] [1712351066.298167]: Direct Instances: []\n", + "[INFO] [1712351066.298414]: Inverse Restrictions: []\n", + "[INFO] [1712351066.298645]: -------------------\n", + "[INFO] [1712351066.298891]: SOMA.HeadMovement \n", + "[INFO] [1712351066.299129]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712351066.299374]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.HeadMovement, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.299624]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712351066.299917]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.300413]: Instances: []\n", + "[INFO] [1712351066.300678]: Direct Instances: []\n", + "[INFO] [1712351066.300940]: Inverse Restrictions: []\n", + "[INFO] [1712351066.301170]: -------------------\n", + "[INFO] [1712351066.301408]: SOMA.HeadTurning \n", + "[INFO] [1712351066.301639]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712351066.301879]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.HeadTurning, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.HeadMovement, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.302114]: Subclasses: []\n", + "[INFO] [1712351066.302415]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.302904]: Instances: []\n", + "[INFO] [1712351066.303159]: Direct Instances: []\n", + "[INFO] [1712351066.303397]: Inverse Restrictions: []\n", + "[INFO] [1712351066.303628]: -------------------\n", + "[INFO] [1712351066.303864]: SOMA.Holding \n", + "[INFO] [1712351066.304096]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351066.304336]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.Holding, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.304574]: Subclasses: []\n", + "[INFO] [1712351066.304860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.305359]: Instances: []\n", + "[INFO] [1712351066.305633]: Direct Instances: []\n", + "[INFO] [1712351066.305887]: Inverse Restrictions: []\n", + "[INFO] [1712351066.306116]: -------------------\n", + "[INFO] [1712351066.306342]: SOMA.HostRole \n", + "[INFO] [1712351066.306571]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712351066.306824]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.HostRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351066.307071]: Subclasses: []\n", + "[INFO] [1712351066.307361]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", + "[INFO] [1712351066.307856]: Instances: []\n", + "[INFO] [1712351066.308120]: Direct Instances: []\n", + "[INFO] [1712351066.308441]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712351066.308693]: -------------------\n", + "[INFO] [1712351066.308945]: SOMA.PluginSpecification \n", + "[INFO] [1712351066.309198]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712351066.309449]: Ancestors: {DUL.Description, SOMA.PluginSpecification, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification}\n", + "[INFO] [1712351066.309699]: Subclasses: []\n", + "[INFO] [1712351066.309994]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole, rdf-schema.comment]\n", + "[INFO] [1712351066.310491]: Instances: []\n", + "[INFO] [1712351066.310768]: Direct Instances: []\n", + "[INFO] [1712351066.311088]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712351066.311331]: -------------------\n", + "[INFO] [1712351066.311562]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712351066.311802]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712351066.312057]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Programming_Language, SOMA.Computer_Language, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351066.312312]: Subclasses: []\n", + "[INFO] [1712351066.312608]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.313092]: Instances: []\n", + "[INFO] [1712351066.313378]: Direct Instances: []\n", + "[INFO] [1712351066.313695]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712351066.313932]: -------------------\n", + "[INFO] [1712351066.314160]: SOMA.Source_Code \n", + "[INFO] [1712351066.314398]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712351066.314631]: Ancestors: {owl.Thing, SOMA.Computer_Program, SOMA.Source_Code}\n", + "[INFO] [1712351066.314881]: Subclasses: []\n", + "[INFO] [1712351066.315200]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.315701]: Instances: []\n", + "[INFO] [1712351066.315974]: Direct Instances: []\n", + "[INFO] [1712351066.316276]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712351066.316522]: -------------------\n", + "[INFO] [1712351066.316756]: SOMA.HumanActivityRecording \n", + "[INFO] [1712351066.316995]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712351066.317233]: Ancestors: {SOMA.HumanActivityRecording, SOMA.RecordedEpisode, DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing}\n", + "[INFO] [1712351066.317491]: Subclasses: []\n", + "[INFO] [1712351066.317781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.318256]: Instances: []\n", + "[INFO] [1712351066.318521]: Direct Instances: []\n", + "[INFO] [1712351066.318780]: Inverse Restrictions: []\n", + "[INFO] [1712351066.319013]: -------------------\n", + "[INFO] [1712351066.319241]: SOMA.Imagining \n", + "[INFO] [1712351066.319467]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712351066.319697]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Imagining}\n", + "[INFO] [1712351066.319947]: Subclasses: []\n", + "[INFO] [1712351066.320235]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.320717]: Instances: []\n", + "[INFO] [1712351066.320984]: Direct Instances: []\n", + "[INFO] [1712351066.321242]: Inverse Restrictions: []\n", + "[INFO] [1712351066.321482]: -------------------\n", + "[INFO] [1712351066.321711]: SOMA.Impediment \n", + "[INFO] [1712351066.321946]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712351066.322186]: Ancestors: {SOMA.Impediment, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.322439]: Subclasses: []\n", + "[INFO] [1712351066.322735]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.323211]: Instances: []\n", + "[INFO] [1712351066.323467]: Direct Instances: []\n", + "[INFO] [1712351066.323725]: Inverse Restrictions: []\n", + "[INFO] [1712351066.323959]: -------------------\n", + "[INFO] [1712351066.324188]: SOMA.Obstacle \n", + "[INFO] [1712351066.324415]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712351066.324655]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, SOMA.Obstacle, owl.Thing}\n", + "[INFO] [1712351066.324915]: Subclasses: []\n", + "[INFO] [1712351066.325207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.325697]: Instances: []\n", + "[INFO] [1712351066.325968]: Direct Instances: []\n", + "[INFO] [1712351066.326262]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712351066.326496]: -------------------\n", + "[INFO] [1712351066.326723]: SOMA.RestrictedObject \n", + "[INFO] [1712351066.326949]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712351066.327198]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.BlockedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.RestrictedObject}\n", + "[INFO] [1712351066.327441]: Subclasses: []\n", + "[INFO] [1712351066.327728]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.328204]: Instances: []\n", + "[INFO] [1712351066.328480]: Direct Instances: []\n", + "[INFO] [1712351066.328788]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712351066.329037]: -------------------\n", + "[INFO] [1712351066.329268]: SOMA.StateTransition \n", + "[INFO] [1712351066.329509]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712351066.329790]: Ancestors: {DUL.Transition, DUL.Entity, SOMA.StateTransition, DUL.Situation, owl.Thing}\n", + "[INFO] [1712351066.330054]: Subclasses: []\n", + "[INFO] [1712351066.330350]: Properties: [SOMA.hasInitialScene, rdf-schema.comment, rdf-schema.label, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351066.330825]: Instances: []\n", + "[INFO] [1712351066.331088]: Direct Instances: []\n", + "[INFO] [1712351066.331412]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712351066.331666]: -------------------\n", + "[INFO] [1712351066.331906]: SOMA.Inability \n", + "[INFO] [1712351066.332139]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712351066.332380]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.Inability, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351066.332615]: Subclasses: []\n", + "[INFO] [1712351066.332913]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.333402]: Instances: []\n", + "[INFO] [1712351066.333661]: Direct Instances: []\n", + "[INFO] [1712351066.333906]: Inverse Restrictions: []\n", + "[INFO] [1712351066.334145]: -------------------\n", + "[INFO] [1712351066.334376]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712351066.334605]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712351066.334843]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.IncompatibleSoftware, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.335086]: Subclasses: []\n", + "[INFO] [1712351066.335384]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.335868]: Instances: []\n", + "[INFO] [1712351066.336150]: Direct Instances: []\n", + "[INFO] [1712351066.336398]: Inverse Restrictions: []\n", + "[INFO] [1712351066.336630]: -------------------\n", + "[INFO] [1712351066.336886]: SOMA.InductiveReasoning \n", + "[INFO] [1712351066.337176]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712351066.337461]: Ancestors: {SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.InductiveReasoning}\n", + "[INFO] [1712351066.337735]: Subclasses: []\n", + "[INFO] [1712351066.338054]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.338566]: Instances: []\n", + "[INFO] [1712351066.338847]: Direct Instances: []\n", + "[INFO] [1712351066.339110]: Inverse Restrictions: []\n", + "[INFO] [1712351066.339345]: -------------------\n", + "[INFO] [1712351066.339579]: SOMA.Infeasibility \n", + "[INFO] [1712351066.339808]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712351066.340045]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Unsuccessfulness, SOMA.Infeasibility, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351066.340301]: Subclasses: []\n", + "[INFO] [1712351066.340599]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.341106]: Instances: []\n", + "[INFO] [1712351066.341363]: Direct Instances: []\n", + "[INFO] [1712351066.341614]: Inverse Restrictions: []\n", + "[INFO] [1712351066.341856]: -------------------\n", + "[INFO] [1712351066.342092]: SOMA.InferenceRules \n", + "[INFO] [1712351066.342322]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712351066.342562]: Ancestors: {DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, SOMA.InferenceRules, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.342817]: Subclasses: []\n", + "[INFO] [1712351066.343126]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.343609]: Instances: []\n", + "[INFO] [1712351066.343889]: Direct Instances: []\n", + "[INFO] [1712351066.344151]: Inverse Restrictions: []\n", + "[INFO] [1712351066.344387]: -------------------\n", + "[INFO] [1712351066.344616]: SOMA.InformationRetrieval \n", + "[INFO] [1712351066.344859]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712351066.345096]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.InformationRetrieval}\n", + "[INFO] [1712351066.345361]: Subclasses: []\n", + "[INFO] [1712351066.345660]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.346140]: Instances: []\n", + "[INFO] [1712351066.346407]: Direct Instances: []\n", + "[INFO] [1712351066.346711]: Inverse Restrictions: []\n", + "[INFO] [1712351066.346968]: -------------------\n", + "[INFO] [1712351066.347202]: SOMA.InformationStorage \n", + "[INFO] [1712351066.347436]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712351066.347683]: Ancestors: {DUL.SocialObject, SOMA.InformationStorage, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.347956]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712351066.348256]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712351066.348737]: Instances: []\n", + "[INFO] [1712351066.349013]: Direct Instances: []\n", + "[INFO] [1712351066.349283]: Inverse Restrictions: []\n", + "[INFO] [1712351066.349521]: -------------------\n", + "[INFO] [1712351066.349749]: SOMA.StoredObject \n", + "[INFO] [1712351066.349973]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712351066.350260]: Ancestors: {SOMA.StoredObject, DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.350677]: Subclasses: []\n", + "[INFO] [1712351066.351032]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.351545]: Instances: []\n", + "[INFO] [1712351066.351827]: Direct Instances: []\n", + "[INFO] [1712351066.352183]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712351066.352432]: -------------------\n", + "[INFO] [1712351066.352680]: SOMA.InsertedObject \n", + "[INFO] [1712351066.352938]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712351066.353187]: Ancestors: {SOMA.InsertedObject, DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.353427]: Subclasses: []\n", + "[INFO] [1712351066.353719]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.354219]: Instances: []\n", + "[INFO] [1712351066.354488]: Direct Instances: []\n", + "[INFO] [1712351066.354784]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712351066.355021]: -------------------\n", + "[INFO] [1712351066.355250]: SOMA.Instructions \n", + "[INFO] [1712351066.355481]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712351066.355735]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.Instructions, owl.Thing}\n", + "[INFO] [1712351066.355985]: Subclasses: []\n", + "[INFO] [1712351066.356275]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.356749]: Instances: []\n", + "[INFO] [1712351066.357037]: Direct Instances: []\n", + "[INFO] [1712351066.357293]: Inverse Restrictions: []\n", + "[INFO] [1712351066.357526]: -------------------\n", + "[INFO] [1712351066.357774]: SOMA.Interpreting \n", + "[INFO] [1712351066.358009]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351066.358243]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Interpreting}\n", + "[INFO] [1712351066.358492]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712351066.358791]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.359277]: Instances: []\n", + "[INFO] [1712351066.359538]: Direct Instances: []\n", + "[INFO] [1712351066.359789]: Inverse Restrictions: []\n", + "[INFO] [1712351066.360015]: -------------------\n", + "[INFO] [1712351066.360245]: SOMA.InterrogativeClause \n", + "[INFO] [1712351066.360481]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712351066.360731]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, SOMA.InterrogativeClause, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.360974]: Subclasses: []\n", + "[INFO] [1712351066.361261]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.361761]: Instances: []\n", + "[INFO] [1712351066.362033]: Direct Instances: []\n", + "[INFO] [1712351066.362334]: Inverse Restrictions: []\n", + "[INFO] [1712351066.362572]: -------------------\n", + "[INFO] [1712351066.362817]: SOMA.Introspecting \n", + "[INFO] [1712351066.363075]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712351066.363314]: Ancestors: {SOMA.InformationAcquisition, SOMA.Introspecting, owl.Thing}\n", + "[INFO] [1712351066.363564]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712351066.363866]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.364355]: Instances: []\n", + "[INFO] [1712351066.364613]: Direct Instances: []\n", + "[INFO] [1712351066.365133]: Inverse Restrictions: []\n", + "[INFO] [1712351066.365421]: -------------------\n", + "[INFO] [1712351066.365662]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712351066.365898]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712351066.366156]: Ancestors: {SOMA.KineticFrictionAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", + "[INFO] [1712351066.366406]: Subclasses: []\n", + "[INFO] [1712351066.366699]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.367183]: Instances: []\n", + "[INFO] [1712351066.367464]: Direct Instances: []\n", + "[INFO] [1712351066.367720]: Inverse Restrictions: []\n", + "[INFO] [1712351066.367962]: -------------------\n", + "[INFO] [1712351066.368196]: SOMA.KinoDynamicData \n", + "[INFO] [1712351066.368445]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351066.368691]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.KinoDynamicData, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.369009]: Subclasses: []\n", + "[INFO] [1712351066.369347]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.369852]: Instances: []\n", + "[INFO] [1712351066.370127]: Direct Instances: []\n", + "[INFO] [1712351066.370383]: Inverse Restrictions: []\n", + "[INFO] [1712351066.370633]: -------------------\n", + "[INFO] [1712351066.370872]: SOMA.Room \n", + "[INFO] [1712351066.371105]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712351066.371345]: Ancestors: {DUL.PhysicalPlace, DUL.Object, SOMA.Room, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.371593]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712351066.371891]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.372381]: Instances: []\n", + "[INFO] [1712351066.372643]: Direct Instances: []\n", + "[INFO] [1712351066.372898]: Inverse Restrictions: []\n", + "[INFO] [1712351066.373126]: -------------------\n", + "[INFO] [1712351066.373371]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712351066.373607]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351066.373848]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.KnowledgeRepresentationLanguage, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351066.374095]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712351066.374385]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.374886]: Instances: []\n", + "[INFO] [1712351066.375154]: Direct Instances: []\n", + "[INFO] [1712351066.375415]: Inverse Restrictions: []\n", + "[INFO] [1712351066.375649]: -------------------\n", + "[INFO] [1712351066.375880]: SOMA.Labeling \n", + "[INFO] [1712351066.376116]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712351066.376361]: Ancestors: {SOMA.Labeling, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Interpreting, owl.Thing}\n", + "[INFO] [1712351066.376603]: Subclasses: []\n", + "[INFO] [1712351066.376896]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351066.377370]: Instances: []\n", + "[INFO] [1712351066.377649]: Direct Instances: []\n", + "[INFO] [1712351066.377911]: Inverse Restrictions: []\n", + "[INFO] [1712351066.378151]: -------------------\n", + "[INFO] [1712351066.378386]: SOMA.Text \n", + "[INFO] [1712351066.378620]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.378856]: Ancestors: {SOMA.Text, owl.Thing}\n", + "[INFO] [1712351066.379110]: Subclasses: []\n", + "[INFO] [1712351066.379408]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.379917]: Instances: []\n", + "[INFO] [1712351066.380178]: Direct Instances: []\n", + "[INFO] [1712351066.380532]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712351066.380796]: -------------------\n", + "[INFO] [1712351066.381047]: SOMA.Leaning \n", + "[INFO] [1712351066.381299]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712351066.381552]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Leaning, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", + "[INFO] [1712351066.381796]: Subclasses: []\n", + "[INFO] [1712351066.382094]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.382581]: Instances: []\n", + "[INFO] [1712351066.382843]: Direct Instances: []\n", + "[INFO] [1712351066.383086]: Inverse Restrictions: []\n", + "[INFO] [1712351066.383321]: -------------------\n", + "[INFO] [1712351066.383577]: SOMA.PosturalMoving \n", + "[INFO] [1712351066.383815]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712351066.384058]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", + "[INFO] [1712351066.384312]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712351066.384598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.385109]: Instances: []\n", + "[INFO] [1712351066.385402]: Direct Instances: []\n", + "[INFO] [1712351066.385674]: Inverse Restrictions: []\n", + "[INFO] [1712351066.385911]: -------------------\n", + "[INFO] [1712351066.386145]: SOMA.Learning \n", + "[INFO] [1712351066.386392]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712351066.386644]: Ancestors: {SOMA.Learning, DUL.SocialObject, SOMA.InformationStorage, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.386901]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712351066.387196]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.387700]: Instances: []\n", + "[INFO] [1712351066.387986]: Direct Instances: []\n", + "[INFO] [1712351066.388255]: Inverse Restrictions: []\n", + "[INFO] [1712351066.388493]: -------------------\n", + "[INFO] [1712351066.388727]: SOMA.Leg \n", + "[INFO] [1712351066.388980]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712351066.389243]: Ancestors: {SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712351066.389494]: Subclasses: []\n", + "[INFO] [1712351066.389786]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.390284]: Instances: []\n", + "[INFO] [1712351066.390552]: Direct Instances: []\n", + "[INFO] [1712351066.390847]: Inverse Restrictions: []\n", + "[INFO] [1712351066.391083]: -------------------\n", + "[INFO] [1712351066.391317]: SOMA.LimbMotion \n", + "[INFO] [1712351066.391566]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712351066.391818]: Ancestors: {SOMA.LimbMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.392064]: Subclasses: []\n", + "[INFO] [1712351066.392365]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.392843]: Instances: []\n", + "[INFO] [1712351066.393129]: Direct Instances: []\n", + "[INFO] [1712351066.393389]: Inverse Restrictions: []\n", + "[INFO] [1712351066.393621]: -------------------\n", + "[INFO] [1712351066.393849]: SOMA.LinkedObject \n", + "[INFO] [1712351066.394087]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712351066.394334]: Ancestors: {SOMA.LinkedObject, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.394575]: Subclasses: []\n", + "[INFO] [1712351066.394862]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.395363]: Instances: []\n", + "[INFO] [1712351066.395639]: Direct Instances: []\n", + "[INFO] [1712351066.396048]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712351066.396324]: -------------------\n", + "[INFO] [1712351066.396572]: SOMA.LinkageState \n", + "[INFO] [1712351066.396835]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712351066.397088]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, SOMA.LinkageState, owl.Thing}\n", + "[INFO] [1712351066.397333]: Subclasses: []\n", + "[INFO] [1712351066.397630]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.398121]: Instances: []\n", + "[INFO] [1712351066.398404]: Direct Instances: []\n", + "[INFO] [1712351066.398650]: Inverse Restrictions: []\n", + "[INFO] [1712351066.398901]: -------------------\n", + "[INFO] [1712351066.399132]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712351066.399378]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712351066.399624]: Ancestors: {DUL.SocialObject, SOMA.SpatioTemporalRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.399879]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712351066.400167]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.400687]: Instances: []\n", + "[INFO] [1712351066.400965]: Direct Instances: []\n", + "[INFO] [1712351066.401226]: Inverse Restrictions: []\n", + "[INFO] [1712351066.401459]: -------------------\n", + "[INFO] [1712351066.401689]: SOMA.SpatialRelationRole \n", + "[INFO] [1712351066.401932]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712351066.402176]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.SpatialRelationRole, owl.Thing}\n", + "[INFO] [1712351066.402431]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712351066.402716]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.403212]: Instances: []\n", + "[INFO] [1712351066.403477]: Direct Instances: []\n", + "[INFO] [1712351066.403730]: Inverse Restrictions: []\n", + "[INFO] [1712351066.403955]: -------------------\n", + "[INFO] [1712351066.404184]: SOMA.LocutionaryAction \n", + "[INFO] [1712351066.404418]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.404651]: Ancestors: {owl.Thing, SOMA.LocutionaryAction}\n", + "[INFO] [1712351066.404893]: Subclasses: []\n", + "[INFO] [1712351066.405197]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.405680]: Instances: []\n", + "[INFO] [1712351066.405942]: Direct Instances: []\n", + "[INFO] [1712351066.406186]: Inverse Restrictions: []\n", + "[INFO] [1712351066.406416]: -------------------\n", + "[INFO] [1712351066.406639]: SOMA.LookingAt \n", + "[INFO] [1712351066.406876]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351066.407119]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.LookingAt, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.407357]: Subclasses: []\n", + "[INFO] [1712351066.407639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.408132]: Instances: []\n", + "[INFO] [1712351066.408399]: Direct Instances: []\n", + "[INFO] [1712351066.408646]: Inverse Restrictions: []\n", + "[INFO] [1712351066.408876]: -------------------\n", + "[INFO] [1712351066.409103]: SOMA.LookingFor \n", + "[INFO] [1712351066.409341]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712351066.409579]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.LookingFor}\n", + "[INFO] [1712351066.409816]: Subclasses: []\n", + "[INFO] [1712351066.410099]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.410594]: Instances: []\n", + "[INFO] [1712351066.410865]: Direct Instances: []\n", + "[INFO] [1712351066.411111]: Inverse Restrictions: []\n", + "[INFO] [1712351066.411345]: -------------------\n", + "[INFO] [1712351066.411573]: SOMA.Lowering \n", + "[INFO] [1712351066.411808]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351066.412099]: Ancestors: {DUL.SocialObject, SOMA.Lowering, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.412358]: Subclasses: []\n", + "[INFO] [1712351066.412648]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.413146]: Instances: []\n", + "[INFO] [1712351066.413430]: Direct Instances: []\n", + "[INFO] [1712351066.413692]: Inverse Restrictions: []\n", + "[INFO] [1712351066.413939]: -------------------\n", + "[INFO] [1712351066.414169]: SOMA.PhysicalAction \n", + "[INFO] [1712351066.414396]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712351066.414626]: Ancestors: {SOMA.PhysicalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712351066.414886]: Subclasses: []\n", + "[INFO] [1712351066.415182]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.415686]: Instances: []\n", + "[INFO] [1712351066.415963]: Direct Instances: []\n", + "[INFO] [1712351066.416269]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351066.416510]: -------------------\n", + "[INFO] [1712351066.416739]: SOMA.Markup_Language \n", + "[INFO] [1712351066.416976]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712351066.417217]: Ancestors: {SOMA.Language, SOMA.System, SOMA.Markup_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351066.417477]: Subclasses: []\n", + "[INFO] [1712351066.417765]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.418237]: Instances: []\n", + "[INFO] [1712351066.418498]: Direct Instances: []\n", + "[INFO] [1712351066.418752]: Inverse Restrictions: []\n", + "[INFO] [1712351066.418983]: -------------------\n", + "[INFO] [1712351066.419209]: SOMA.Masterful \n", + "[INFO] [1712351066.419442]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712351066.419680]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, owl.Thing, DUL.Object, DUL.Entity, SOMA.Masterful, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351066.419930]: Subclasses: []\n", + "[INFO] [1712351066.420215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.420685]: Instances: []\n", + "[INFO] [1712351066.421039]: Direct Instances: []\n", + "[INFO] [1712351066.421390]: Inverse Restrictions: []\n", + "[INFO] [1712351066.421662]: -------------------\n", + "[INFO] [1712351066.421913]: SOMA.Material \n", + "[INFO] [1712351066.422155]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351066.422398]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Material, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351066.422647]: Subclasses: []\n", + "[INFO] [1712351066.422949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.423438]: Instances: []\n", + "[INFO] [1712351066.423714]: Direct Instances: []\n", + "[INFO] [1712351066.423972]: Inverse Restrictions: []\n", + "[INFO] [1712351066.424206]: -------------------\n", + "[INFO] [1712351066.424438]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712351066.424669]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712351066.424914]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Entity, SOMA.MedicalDiagnosis, owl.Thing}\n", + "[INFO] [1712351066.425167]: Subclasses: []\n", + "[INFO] [1712351066.425472]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.425951]: Instances: []\n", + "[INFO] [1712351066.426204]: Direct Instances: []\n", + "[INFO] [1712351066.426441]: Inverse Restrictions: []\n", + "[INFO] [1712351066.426681]: -------------------\n", + "[INFO] [1712351066.426913]: SOMA.Memorizing \n", + "[INFO] [1712351066.427140]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712351066.427378]: Ancestors: {SOMA.Learning, DUL.SocialObject, SOMA.InformationStorage, DUL.Object, SOMA.Memorizing, DUL.Entity, DUL.Concept, DUL.Task, SOMA.MentalTask, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.427627]: Subclasses: []\n", + "[INFO] [1712351066.427923]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.428410]: Instances: []\n", + "[INFO] [1712351066.428684]: Direct Instances: []\n", + "[INFO] [1712351066.428945]: Inverse Restrictions: []\n", + "[INFO] [1712351066.429180]: -------------------\n", + "[INFO] [1712351066.429412]: SOMA.MentalAction \n", + "[INFO] [1712351066.429652]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712351066.429897]: Ancestors: {SOMA.MentalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", + "[INFO] [1712351066.430151]: Subclasses: []\n", + "[INFO] [1712351066.430462]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.430941]: Instances: []\n", + "[INFO] [1712351066.431203]: Direct Instances: []\n", + "[INFO] [1712351066.431492]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712351066.431746]: -------------------\n", + "[INFO] [1712351066.431985]: SOMA.MeshShape \n", + "[INFO] [1712351066.432231]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712351066.432472]: Ancestors: {SOMA.MeshShape, DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351066.432722]: Subclasses: []\n", + "[INFO] [1712351066.433032]: Properties: [rdf-schema.label, SOMA.hasFilePath, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351066.433551]: Instances: []\n", + "[INFO] [1712351066.433807]: Direct Instances: []\n", + "[INFO] [1712351066.434060]: Inverse Restrictions: []\n", + "[INFO] [1712351066.434300]: -------------------\n", + "[INFO] [1712351066.434529]: SOMA.MeshShapeData \n", + "[INFO] [1712351066.434764]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712351066.435004]: Ancestors: {DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing, SOMA.MeshShapeData}\n", + "[INFO] [1712351066.435251]: Subclasses: []\n", + "[INFO] [1712351066.435543]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.436017]: Instances: []\n", + "[INFO] [1712351066.436297]: Direct Instances: []\n", + "[INFO] [1712351066.436563]: Inverse Restrictions: []\n", + "[INFO] [1712351066.436806]: -------------------\n", + "[INFO] [1712351066.437042]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712351066.437272]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712351066.437521]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.MetaCognitionEvaluationTopic, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.437778]: Subclasses: []\n", + "[INFO] [1712351066.438068]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.438543]: Instances: []\n", + "[INFO] [1712351066.438815]: Direct Instances: []\n", + "[INFO] [1712351066.439078]: Inverse Restrictions: []\n", + "[INFO] [1712351066.439312]: -------------------\n", + "[INFO] [1712351066.439544]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712351066.439770]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351066.440013]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.440277]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712351066.440571]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.441064]: Instances: []\n", + "[INFO] [1712351066.441333]: Direct Instances: []\n", + "[INFO] [1712351066.441594]: Inverse Restrictions: []\n", + "[INFO] [1712351066.441841]: -------------------\n", + "[INFO] [1712351066.442081]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712351066.442314]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712351066.442558]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.MetaCognitionMemoryTopic, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.442795]: Subclasses: []\n", + "[INFO] [1712351066.443083]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.443572]: Instances: []\n", + "[INFO] [1712351066.443838]: Direct Instances: []\n", + "[INFO] [1712351066.444085]: Inverse Restrictions: []\n", + "[INFO] [1712351066.444314]: -------------------\n", + "[INFO] [1712351066.444556]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712351066.444813]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712351066.445195]: Ancestors: {SOMA.MetaCognitionPlanningTopic, DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.445490]: Subclasses: []\n", + "[INFO] [1712351066.445811]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.446326]: Instances: []\n", + "[INFO] [1712351066.446603]: Direct Instances: []\n", + "[INFO] [1712351066.446876]: Inverse Restrictions: []\n", + "[INFO] [1712351066.447119]: -------------------\n", + "[INFO] [1712351066.447356]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712351066.447588]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712351066.447830]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.448097]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712351066.448506]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.449061]: Instances: []\n", + "[INFO] [1712351066.449353]: Direct Instances: []\n", + "[INFO] [1712351066.449628]: Inverse Restrictions: []\n", + "[INFO] [1712351066.449884]: -------------------\n", + "[INFO] [1712351066.450135]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712351066.450385]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712351066.450648]: Ancestors: {SOMA.MetacognitiveControlling, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.450902]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712351066.451189]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.451702]: Instances: []\n", + "[INFO] [1712351066.451974]: Direct Instances: []\n", + "[INFO] [1712351066.452235]: Inverse Restrictions: []\n", + "[INFO] [1712351066.452477]: -------------------\n", + "[INFO] [1712351066.452710]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712351066.452960]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712351066.453218]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, owl.Thing, SOMA.Introspecting}\n", + "[INFO] [1712351066.453466]: Subclasses: []\n", + "[INFO] [1712351066.453757]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.454237]: Instances: []\n", + "[INFO] [1712351066.454507]: Direct Instances: []\n", + "[INFO] [1712351066.454762]: Inverse Restrictions: []\n", + "[INFO] [1712351066.455001]: -------------------\n", + "[INFO] [1712351066.455239]: SOMA.Mixing \n", + "[INFO] [1712351066.455490]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712351066.455758]: Ancestors: {SOMA.Constructing, DUL.SocialObject, SOMA.Mixing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.456017]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712351066.456305]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.456795]: Instances: []\n", + "[INFO] [1712351066.457072]: Direct Instances: []\n", + "[INFO] [1712351066.457338]: Inverse Restrictions: []\n", + "[INFO] [1712351066.457585]: -------------------\n", + "[INFO] [1712351066.457822]: SOMA.MixingTheory \n", + "[INFO] [1712351066.458066]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712351066.458323]: Ancestors: {DUL.Description, SOMA.MixingTheory, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.458584]: Subclasses: []\n", + "[INFO] [1712351066.458882]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351066.459361]: Instances: []\n", + "[INFO] [1712351066.459635]: Direct Instances: []\n", + "[INFO] [1712351066.459894]: Inverse Restrictions: []\n", + "[INFO] [1712351066.460134]: -------------------\n", + "[INFO] [1712351066.460375]: SOMA.MonitoringJointState \n", + "[INFO] [1712351066.460611]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712351066.460874]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, owl.Thing, SOMA.Proprioceiving}\n", + "[INFO] [1712351066.461124]: Subclasses: []\n", + "[INFO] [1712351066.461416]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.461908]: Instances: []\n", + "[INFO] [1712351066.462183]: Direct Instances: []\n", + "[INFO] [1712351066.462441]: Inverse Restrictions: []\n", + "[INFO] [1712351066.462688]: -------------------\n", + "[INFO] [1712351066.462927]: SOMA.Proprioceiving \n", + "[INFO] [1712351066.463178]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712351066.463437]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Proprioceiving}\n", + "[INFO] [1712351066.463912]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712351066.464379]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.465013]: Instances: []\n", + "[INFO] [1712351066.465453]: Direct Instances: []\n", + "[INFO] [1712351066.465881]: Inverse Restrictions: []\n", + "[INFO] [1712351066.466295]: -------------------\n", + "[INFO] [1712351066.466705]: SOMA.MovingAway \n", + "[INFO] [1712351066.467128]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712351066.467565]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, SOMA.MovingAway, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.467929]: Subclasses: []\n", + "[INFO] [1712351066.468321]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.468904]: Instances: []\n", + "[INFO] [1712351066.469281]: Direct Instances: []\n", + "[INFO] [1712351066.469634]: Inverse Restrictions: []\n", + "[INFO] [1712351066.469967]: -------------------\n", + "[INFO] [1712351066.470295]: SOMA.MovingTo \n", + "[INFO] [1712351066.470616]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712351066.470952]: Ancestors: {DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.MovingTo, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.471294]: Subclasses: []\n", + "[INFO] [1712351066.471672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.472240]: Instances: []\n", + "[INFO] [1712351066.472581]: Direct Instances: []\n", + "[INFO] [1712351066.472924]: Inverse Restrictions: []\n", + "[INFO] [1712351066.473250]: -------------------\n", + "[INFO] [1712351066.473576]: SOMA.Natural_Language \n", + "[INFO] [1712351066.473860]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712351066.474137]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.Natural_Language, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.474400]: Subclasses: []\n", + "[INFO] [1712351066.474700]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.475203]: Instances: []\n", + "[INFO] [1712351066.475468]: Direct Instances: []\n", + "[INFO] [1712351066.475782]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712351066.476028]: -------------------\n", + "[INFO] [1712351066.476273]: SOMA.Natural_Language_Text \n", + "[INFO] [1712351066.476516]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.476758]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", + "[INFO] [1712351066.477031]: Subclasses: []\n", + "[INFO] [1712351066.477347]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.477858]: Instances: []\n", + "[INFO] [1712351066.478134]: Direct Instances: []\n", + "[INFO] [1712351066.478431]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712351066.478683]: -------------------\n", + "[INFO] [1712351066.478925]: SOMA.Ontology \n", + "[INFO] [1712351066.479163]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712351066.479418]: Ancestors: {SOMA.Ontology, owl.Thing, SOMA.Structured_Text}\n", + "[INFO] [1712351066.479691]: Subclasses: []\n", + "[INFO] [1712351066.480013]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.480512]: Instances: []\n", + "[INFO] [1712351066.480782]: Direct Instances: []\n", + "[INFO] [1712351066.481086]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712351066.481336]: -------------------\n", + "[INFO] [1712351066.481576]: SOMA.Ontology_Language \n", + "[INFO] [1712351066.481821]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712351066.482085]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.KnowledgeRepresentationLanguage, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.Ontology_Language, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351066.482332]: Subclasses: []\n", + "[INFO] [1712351066.482626]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.483154]: Instances: []\n", + "[INFO] [1712351066.483439]: Direct Instances: []\n", + "[INFO] [1712351066.483759]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712351066.484009]: -------------------\n", + "[INFO] [1712351066.484249]: SOMA.Option \n", + "[INFO] [1712351066.484487]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712351066.484763]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Option, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.485022]: Subclasses: []\n", + "[INFO] [1712351066.485314]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.485795]: Instances: []\n", + "[INFO] [1712351066.486061]: Direct Instances: []\n", + "[INFO] [1712351066.486331]: Inverse Restrictions: []\n", + "[INFO] [1712351066.486573]: -------------------\n", + "[INFO] [1712351066.486812]: SOMA.Singleton \n", + "[INFO] [1712351066.487049]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.487287]: Ancestors: {owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712351066.487836]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712351066.488265]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", + "[INFO] [1712351066.488789]: Instances: []\n", + "[INFO] [1712351066.489146]: Direct Instances: []\n", + "[INFO] [1712351066.489434]: Inverse Restrictions: []\n", + "[INFO] [1712351066.489684]: -------------------\n", + "[INFO] [1712351066.489929]: SOMA.Orienting \n", + "[INFO] [1712351066.490187]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712351066.490457]: Ancestors: {SOMA.Orienting, DUL.SocialObject, SOMA.Positioning, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.490711]: Subclasses: []\n", + "[INFO] [1712351066.491006]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.491494]: Instances: []\n", + "[INFO] [1712351066.491770]: Direct Instances: []\n", + "[INFO] [1712351066.492030]: Inverse Restrictions: []\n", + "[INFO] [1712351066.492274]: -------------------\n", + "[INFO] [1712351066.492510]: SOMA.Positioning \n", + "[INFO] [1712351066.492741]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712351066.493008]: Ancestors: {DUL.SocialObject, SOMA.Positioning, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.493280]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712351066.493572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.494056]: Instances: []\n", + "[INFO] [1712351066.494331]: Direct Instances: []\n", + "[INFO] [1712351066.494591]: Inverse Restrictions: []\n", + "[INFO] [1712351066.494832]: -------------------\n", + "[INFO] [1712351066.495080]: SOMA.Origin \n", + "[INFO] [1712351066.495317]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712351066.495565]: Ancestors: {SOMA.Origin, SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.495825]: Subclasses: []\n", + "[INFO] [1712351066.496123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.496608]: Instances: []\n", + "[INFO] [1712351066.496870]: Direct Instances: []\n", + "[INFO] [1712351066.497154]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712351066.497414]: -------------------\n", + "[INFO] [1712351066.497658]: SOMA.ParkingArms \n", + "[INFO] [1712351066.497897]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712351066.498148]: Ancestors: {DUL.SocialObject, SOMA.ParkingArms, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.AssumingArmPose, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.498401]: Subclasses: []\n", + "[INFO] [1712351066.498704]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.499202]: Instances: []\n", + "[INFO] [1712351066.499514]: Direct Instances: []\n", + "[INFO] [1712351066.499784]: Inverse Restrictions: []\n", + "[INFO] [1712351066.500030]: -------------------\n", + "[INFO] [1712351066.500270]: SOMA.PhaseTransition \n", + "[INFO] [1712351066.500513]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712351066.500774]: Ancestors: {SOMA.Alteration, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.501037]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712351066.501335]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment]\n", + "[INFO] [1712351066.501825]: Instances: []\n", + "[INFO] [1712351066.502103]: Direct Instances: []\n", + "[INFO] [1712351066.502363]: Inverse Restrictions: []\n", + "[INFO] [1712351066.502608]: -------------------\n", + "[INFO] [1712351066.502846]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712351066.503090]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712351066.503351]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, SOMA.PhysicalAccessibility, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.503601]: Subclasses: []\n", + "[INFO] [1712351066.503901]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.504381]: Instances: []\n", + "[INFO] [1712351066.504653]: Direct Instances: []\n", + "[INFO] [1712351066.504909]: Inverse Restrictions: []\n", + "[INFO] [1712351066.505153]: -------------------\n", + "[INFO] [1712351066.505390]: SOMA.PhysicalBlockage \n", + "[INFO] [1712351066.505632]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712351066.505877]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, SOMA.PhysicalBlockage, DUL.Concept, DUL.Entity, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.506133]: Subclasses: []\n", + "[INFO] [1712351066.506434]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.506916]: Instances: []\n", + "[INFO] [1712351066.507174]: Direct Instances: []\n", + "[INFO] [1712351066.507435]: Inverse Restrictions: []\n", + "[INFO] [1712351066.507677]: -------------------\n", + "[INFO] [1712351066.507915]: SOMA.PhysicalExistence \n", + "[INFO] [1712351066.508147]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712351066.508391]: Ancestors: {SOMA.State, DUL.Entity, SOMA.PhysicalExistence, SOMA.PhysicalState, DUL.Event, owl.Thing}\n", + "[INFO] [1712351066.508645]: Subclasses: []\n", + "[INFO] [1712351066.508945]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.509428]: Instances: []\n", + "[INFO] [1712351066.509682]: Direct Instances: []\n", + "[INFO] [1712351066.509933]: Inverse Restrictions: []\n", + "[INFO] [1712351066.510185]: -------------------\n", + "[INFO] [1712351066.510429]: SOMA.PhysicalState \n", + "[INFO] [1712351066.510671]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712351066.510915]: Ancestors: {SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event, owl.Thing}\n", + "[INFO] [1712351066.511167]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712351066.511480]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.511975]: Instances: []\n", + "[INFO] [1712351066.512234]: Direct Instances: []\n", + "[INFO] [1712351066.512480]: Inverse Restrictions: []\n", + "[INFO] [1712351066.512731]: -------------------\n", + "[INFO] [1712351066.512976]: SOMA.PhysicsProcess \n", + "[INFO] [1712351066.513221]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712351066.513470]: Ancestors: {SOMA.PhysicsProcess, DUL.Entity, DUL.Event, owl.Thing, DUL.Process}\n", + "[INFO] [1712351066.513710]: Subclasses: []\n", + "[INFO] [1712351066.514010]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.514494]: Instances: []\n", + "[INFO] [1712351066.514750]: Direct Instances: []\n", + "[INFO] [1712351066.514993]: Inverse Restrictions: []\n", + "[INFO] [1712351066.515237]: -------------------\n", + "[INFO] [1712351066.515477]: SOMA.PlacingTheory \n", + "[INFO] [1712351066.515722]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712351066.515972]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.PlacingTheory, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.516234]: Subclasses: []\n", + "[INFO] [1712351066.516535]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351066.517022]: Instances: []\n", + "[INFO] [1712351066.517282]: Direct Instances: []\n", + "[INFO] [1712351066.517545]: Inverse Restrictions: []\n", + "[INFO] [1712351066.517786]: -------------------\n", + "[INFO] [1712351066.518023]: SOMA.PlanarJoint \n", + "[INFO] [1712351066.518255]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712351066.518501]: Ancestors: {SOMA.MovableJoint, SOMA.PlanarJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.518757]: Subclasses: []\n", + "[INFO] [1712351066.519050]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.519531]: Instances: []\n", + "[INFO] [1712351066.519787]: Direct Instances: []\n", + "[INFO] [1712351066.520031]: Inverse Restrictions: []\n", + "[INFO] [1712351066.520278]: -------------------\n", + "[INFO] [1712351066.520520]: SOMA.PluginRole \n", + "[INFO] [1712351066.520762]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712351066.521015]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, SOMA.PluginRole, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", + "[INFO] [1712351066.521273]: Subclasses: []\n", + "[INFO] [1712351066.521576]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", + "[INFO] [1712351066.522064]: Instances: []\n", + "[INFO] [1712351066.522319]: Direct Instances: []\n", + "[INFO] [1712351066.522639]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712351066.522888]: -------------------\n", + "[INFO] [1712351066.523129]: SOMA.Pourable \n", + "[INFO] [1712351066.523370]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712351066.523628]: Ancestors: {SOMA.Extrinsic, SOMA.Pourable, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.523874]: Subclasses: []\n", + "[INFO] [1712351066.524165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.524645]: Instances: []\n", + "[INFO] [1712351066.524924]: Direct Instances: []\n", + "[INFO] [1712351066.525290]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712351066.525555]: -------------------\n", + "[INFO] [1712351066.525800]: SOMA.PouredObject \n", + "[INFO] [1712351066.526036]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712351066.526285]: Ancestors: {SOMA.PouredObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.526540]: Subclasses: []\n", + "[INFO] [1712351066.526828]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.527308]: Instances: []\n", + "[INFO] [1712351066.527572]: Direct Instances: []\n", + "[INFO] [1712351066.527860]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712351066.528110]: -------------------\n", + "[INFO] [1712351066.528354]: SOMA.Pouring \n", + "[INFO] [1712351066.528594]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712351066.528847]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712351066.529109]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712351066.529401]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.529886]: Instances: []\n", + "[INFO] [1712351066.530145]: Direct Instances: []\n", + "[INFO] [1712351066.530401]: Inverse Restrictions: []\n", + "[INFO] [1712351066.530637]: -------------------\n", + "[INFO] [1712351066.530869]: SOMA.PouringInto \n", + "[INFO] [1712351066.531117]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712351066.531368]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PouringInto, DUL.EventType, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712351066.531608]: Subclasses: []\n", + "[INFO] [1712351066.531891]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.532381]: Instances: []\n", + "[INFO] [1712351066.532653]: Direct Instances: []\n", + "[INFO] [1712351066.532911]: Inverse Restrictions: []\n", + "[INFO] [1712351066.533152]: -------------------\n", + "[INFO] [1712351066.533387]: SOMA.PouringOnto \n", + "[INFO] [1712351066.533628]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712351066.533888]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PouringOnto, DUL.EventType, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712351066.534132]: Subclasses: []\n", + "[INFO] [1712351066.534415]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.534910]: Instances: []\n", + "[INFO] [1712351066.535174]: Direct Instances: []\n", + "[INFO] [1712351066.535423]: Inverse Restrictions: []\n", + "[INFO] [1712351066.535660]: -------------------\n", + "[INFO] [1712351066.535895]: SOMA.Prediction \n", + "[INFO] [1712351066.536131]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712351066.536383]: Ancestors: {SOMA.Prediction, SOMA.DerivingInformation, SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351066.536633]: Subclasses: []\n", + "[INFO] [1712351066.536929]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.537413]: Instances: []\n", + "[INFO] [1712351066.537691]: Direct Instances: []\n", + "[INFO] [1712351066.537951]: Inverse Restrictions: []\n", + "[INFO] [1712351066.538189]: -------------------\n", + "[INFO] [1712351066.538601]: SOMA.Prospecting \n", + "[INFO] [1712351066.538937]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712351066.539268]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Prospecting}\n", + "[INFO] [1712351066.539622]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712351066.540003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.540577]: Instances: []\n", + "[INFO] [1712351066.540934]: Direct Instances: []\n", + "[INFO] [1712351066.541289]: Inverse Restrictions: []\n", + "[INFO] [1712351066.541628]: -------------------\n", + "[INFO] [1712351066.541955]: SOMA.Predilection \n", + "[INFO] [1712351066.542296]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712351066.542633]: Ancestors: {SOMA.Predilection, DUL.Description, DUL.SocialRelation, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, DUL.Relation}\n", + "[INFO] [1712351066.542981]: Subclasses: []\n", + "[INFO] [1712351066.543366]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351066.543938]: Instances: []\n", + "[INFO] [1712351066.544285]: Direct Instances: []\n", + "[INFO] [1712351066.544630]: Inverse Restrictions: []\n", + "[INFO] [1712351066.544967]: -------------------\n", + "[INFO] [1712351066.545293]: SOMA.PreferenceOrder \n", + "[INFO] [1712351066.545650]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712351066.546087]: Ancestors: {DUL.Description, DUL.SocialRelation, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.PreferenceOrder, DUL.Relation}\n", + "[INFO] [1712351066.546525]: Subclasses: []\n", + "[INFO] [1712351066.547005]: Properties: [SOMA.orders, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712351066.547661]: Instances: []\n", + "[INFO] [1712351066.548101]: Direct Instances: []\n", + "[INFO] [1712351066.548527]: Inverse Restrictions: []\n", + "[INFO] [1712351066.548898]: -------------------\n", + "[INFO] [1712351066.549320]: SOMA.PreferenceRegion \n", + "[INFO] [1712351066.549742]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712351066.550162]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Entity, DUL.SocialObjectAttribute, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351066.550546]: Subclasses: []\n", + "[INFO] [1712351066.550962]: Properties: [rdf-schema.label, DUL.isRegionFor, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.551551]: Instances: []\n", + "[INFO] [1712351066.551931]: Direct Instances: []\n", + "[INFO] [1712351066.552289]: Inverse Restrictions: []\n", + "[INFO] [1712351066.552620]: -------------------\n", + "[INFO] [1712351066.552971]: SOMA.PrismaticJoint \n", + "[INFO] [1712351066.553271]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712351066.553556]: Ancestors: {SOMA.MovableJoint, SOMA.PrismaticJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.553818]: Subclasses: []\n", + "[INFO] [1712351066.554114]: Properties: [SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.554589]: Instances: []\n", + "[INFO] [1712351066.554867]: Direct Instances: []\n", + "[INFO] [1712351066.555119]: Inverse Restrictions: []\n", + "[INFO] [1712351066.555350]: -------------------\n", + "[INFO] [1712351066.555579]: SOMA.ProcessFlow \n", + "[INFO] [1712351066.555809]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712351066.556050]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.ProcessFlow, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.556306]: Subclasses: []\n", + "[INFO] [1712351066.556611]: Properties: [rdf-schema.label, SOMA.definesProcess, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.557100]: Instances: []\n", + "[INFO] [1712351066.557377]: Direct Instances: []\n", + "[INFO] [1712351066.557694]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712351066.557943]: -------------------\n", + "[INFO] [1712351066.558176]: SOMA.Progression \n", + "[INFO] [1712351066.558403]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712351066.558636]: Ancestors: {owl.Thing, DUL.Entity, SOMA.Progression, DUL.Situation}\n", + "[INFO] [1712351066.558884]: Subclasses: []\n", + "[INFO] [1712351066.559187]: Properties: [DUL.satisfies, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.559670]: Instances: []\n", + "[INFO] [1712351066.559938]: Direct Instances: []\n", + "[INFO] [1712351066.560200]: Inverse Restrictions: []\n", + "[INFO] [1712351066.560434]: -------------------\n", + "[INFO] [1712351066.560662]: SOMA.Protector \n", + "[INFO] [1712351066.560895]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712351066.561142]: Ancestors: {SOMA.Instrument, DUL.SocialObject, owl.Thing, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, SOMA.Protector}\n", + "[INFO] [1712351066.561411]: Subclasses: []\n", + "[INFO] [1712351066.561706]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.562199]: Instances: []\n", + "[INFO] [1712351066.562475]: Direct Instances: []\n", + "[INFO] [1712351066.562728]: Inverse Restrictions: []\n", + "[INFO] [1712351066.563048]: -------------------\n", + "[INFO] [1712351066.563285]: SOMA.ProximalTheory \n", + "[INFO] [1712351066.563522]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712351066.563783]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ProximalTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.564030]: Subclasses: []\n", + "[INFO] [1712351066.564337]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", + "[INFO] [1712351066.564873]: Instances: []\n", + "[INFO] [1712351066.565268]: Direct Instances: []\n", + "[INFO] [1712351066.565650]: Inverse Restrictions: []\n", + "[INFO] [1712351066.566014]: -------------------\n", + "[INFO] [1712351066.566560]: SOMA.PushingAway \n", + "[INFO] [1712351066.566922]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712351066.567192]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, SOMA.PushingAway, DUL.Task, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.567617]: Subclasses: []\n", + "[INFO] [1712351066.568035]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.568641]: Instances: []\n", + "[INFO] [1712351066.569013]: Direct Instances: []\n", + "[INFO] [1712351066.569357]: Inverse Restrictions: []\n", + "[INFO] [1712351066.569684]: -------------------\n", + "[INFO] [1712351066.570014]: SOMA.PushingDown \n", + "[INFO] [1712351066.570346]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712351066.570701]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PushingDown, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.571044]: Subclasses: []\n", + "[INFO] [1712351066.571425]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.571988]: Instances: []\n", + "[INFO] [1712351066.572351]: Direct Instances: []\n", + "[INFO] [1712351066.572700]: Inverse Restrictions: []\n", + "[INFO] [1712351066.573032]: -------------------\n", + "[INFO] [1712351066.573353]: SOMA.PuttingDown \n", + "[INFO] [1712351066.573668]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712351066.573993]: Ancestors: {DUL.SocialObject, SOMA.PuttingDown, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.574333]: Subclasses: []\n", + "[INFO] [1712351066.574713]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.575275]: Instances: []\n", + "[INFO] [1712351066.575636]: Direct Instances: []\n", + "[INFO] [1712351066.575975]: Inverse Restrictions: []\n", + "[INFO] [1712351066.576296]: -------------------\n", + "[INFO] [1712351066.576613]: SOMA.QualityTransition \n", + "[INFO] [1712351066.576944]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712351066.577215]: Ancestors: {SOMA.QualityTransition, DUL.Transition, DUL.Entity, DUL.Situation, owl.Thing}\n", + "[INFO] [1712351066.577456]: Subclasses: []\n", + "[INFO] [1712351066.577736]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.578203]: Instances: []\n", + "[INFO] [1712351066.578474]: Direct Instances: []\n", + "[INFO] [1712351066.578722]: Inverse Restrictions: []\n", + "[INFO] [1712351066.578950]: -------------------\n", + "[INFO] [1712351066.579175]: SOMA.Query \n", + "[INFO] [1712351066.579401]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712351066.579645]: Ancestors: {DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.Query}\n", + "[INFO] [1712351066.579888]: Subclasses: []\n", + "[INFO] [1712351066.580172]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.580672]: Instances: []\n", + "[INFO] [1712351066.580943]: Direct Instances: []\n", + "[INFO] [1712351066.581234]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712351066.581464]: -------------------\n", + "[INFO] [1712351066.581695]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712351066.581928]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.582162]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", + "[INFO] [1712351066.582395]: Subclasses: []\n", + "[INFO] [1712351066.582681]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.583178]: Instances: []\n", + "[INFO] [1712351066.583443]: Direct Instances: []\n", + "[INFO] [1712351066.583688]: Inverse Restrictions: []\n", + "[INFO] [1712351066.583914]: -------------------\n", + "[INFO] [1712351066.584140]: SOMA.QueryEngine \n", + "[INFO] [1712351066.584374]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351066.584612]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.QueryEngine, DUL.Role, owl.Thing}\n", + "[INFO] [1712351066.584851]: Subclasses: []\n", + "[INFO] [1712351066.585132]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.585620]: Instances: []\n", + "[INFO] [1712351066.585883]: Direct Instances: []\n", + "[INFO] [1712351066.586127]: Inverse Restrictions: []\n", + "[INFO] [1712351066.586353]: -------------------\n", + "[INFO] [1712351066.586580]: SOMA.Reaching \n", + "[INFO] [1712351066.586812]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712351066.587057]: Ancestors: {DUL.SocialObject, SOMA.Reaching, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.587292]: Subclasses: []\n", + "[INFO] [1712351066.587579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.588077]: Instances: []\n", + "[INFO] [1712351066.588336]: Direct Instances: []\n", + "[INFO] [1712351066.588576]: Inverse Restrictions: []\n", + "[INFO] [1712351066.588807]: -------------------\n", + "[INFO] [1712351066.589034]: SOMA.Retracting \n", + "[INFO] [1712351066.589260]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712351066.589495]: Ancestors: {SOMA.Retracting, DUL.SocialObject, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.589742]: Subclasses: []\n", + "[INFO] [1712351066.590030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.590517]: Instances: []\n", + "[INFO] [1712351066.590800]: Direct Instances: []\n", + "[INFO] [1712351066.591060]: Inverse Restrictions: []\n", + "[INFO] [1712351066.591290]: -------------------\n", + "[INFO] [1712351066.591527]: SOMA.Reasoner \n", + "[INFO] [1712351066.591761]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712351066.592010]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing}\n", + "[INFO] [1712351066.592260]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712351066.592542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.593033]: Instances: []\n", + "[INFO] [1712351066.593305]: Direct Instances: []\n", + "[INFO] [1712351066.593565]: Inverse Restrictions: []\n", + "[INFO] [1712351066.593807]: -------------------\n", + "[INFO] [1712351066.594036]: SOMA.RecipientRole \n", + "[INFO] [1712351066.594266]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712351066.594511]: Ancestors: {SOMA.GoalRole, SOMA.RecipientRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, owl.Thing}\n", + "[INFO] [1712351066.594757]: Subclasses: []\n", + "[INFO] [1712351066.595042]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.595517]: Instances: []\n", + "[INFO] [1712351066.595790]: Direct Instances: []\n", + "[INFO] [1712351066.596040]: Inverse Restrictions: []\n", + "[INFO] [1712351066.596270]: -------------------\n", + "[INFO] [1712351066.596497]: SOMA.RecordedEpisode \n", + "[INFO] [1712351066.596725]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712351066.597054]: Ancestors: {SOMA.RecordedEpisode, DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing}\n", + "[INFO] [1712351066.597370]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712351066.597701]: Properties: [SOMA.includesRecord, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.598203]: Instances: []\n", + "[INFO] [1712351066.598475]: Direct Instances: []\n", + "[INFO] [1712351066.598735]: Inverse Restrictions: []\n", + "[INFO] [1712351066.598988]: -------------------\n", + "[INFO] [1712351066.599231]: SOMA.RedColor \n", + "[INFO] [1712351066.599467]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712351066.599706]: Ancestors: {SOMA.ColorRegion, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.RedColor, owl.Thing}\n", + "[INFO] [1712351066.599949]: Subclasses: []\n", + "[INFO] [1712351066.600256]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.600752]: Instances: []\n", + "[INFO] [1712351066.601036]: Direct Instances: []\n", + "[INFO] [1712351066.601284]: Inverse Restrictions: []\n", + "[INFO] [1712351066.601516]: -------------------\n", + "[INFO] [1712351066.601747]: SOMA.Reification \n", + "[INFO] [1712351066.601977]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712351066.602223]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Reification, owl.Thing}\n", + "[INFO] [1712351066.602469]: Subclasses: []\n", + "[INFO] [1712351066.602757]: Properties: [SOMA.isReificationOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.603246]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712351066.603533]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712351066.603800]: Inverse Restrictions: []\n", + "[INFO] [1712351066.604035]: -------------------\n", + "[INFO] [1712351066.604264]: SOMA.RelationalDatabase \n", + "[INFO] [1712351066.604501]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712351066.604751]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.RelationalDatabase, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, DUL.Role, owl.Thing}\n", + "[INFO] [1712351066.605001]: Subclasses: []\n", + "[INFO] [1712351066.605291]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.605794]: Instances: []\n", + "[INFO] [1712351066.606056]: Direct Instances: []\n", + "[INFO] [1712351066.606304]: Inverse Restrictions: []\n", + "[INFO] [1712351066.606536]: -------------------\n", + "[INFO] [1712351066.606765]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712351066.606995]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712351066.607247]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.RelationalQueryLanguage, SOMA.FormalLanguage, owl.Thing}\n", + "[INFO] [1712351066.607491]: Subclasses: []\n", + "[INFO] [1712351066.607778]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.608255]: Instances: []\n", + "[INFO] [1712351066.608528]: Direct Instances: []\n", + "[INFO] [1712351066.608784]: Inverse Restrictions: []\n", + "[INFO] [1712351066.609022]: -------------------\n", + "[INFO] [1712351066.609248]: SOMA.RelevantPart \n", + "[INFO] [1712351066.609497]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712351066.609747]: Ancestors: {SOMA.Feature, DUL.Object, DUL.Entity, SOMA.RelevantPart, owl.Thing}\n", + "[INFO] [1712351066.609993]: Subclasses: []\n", + "[INFO] [1712351066.610276]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.610750]: Instances: []\n", + "[INFO] [1712351066.611032]: Direct Instances: []\n", + "[INFO] [1712351066.611289]: Inverse Restrictions: []\n", + "[INFO] [1712351066.611624]: -------------------\n", + "[INFO] [1712351066.611867]: SOMA.Remembering \n", + "[INFO] [1712351066.612110]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712351066.612362]: Ancestors: {owl.Thing, SOMA.Remembering}\n", + "[INFO] [1712351066.612608]: Subclasses: []\n", + "[INFO] [1712351066.612902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.613413]: Instances: []\n", + "[INFO] [1712351066.613689]: Direct Instances: []\n", + "[INFO] [1712351066.613947]: Inverse Restrictions: []\n", + "[INFO] [1712351066.614183]: -------------------\n", + "[INFO] [1712351066.614412]: SOMA.Retrospecting \n", + "[INFO] [1712351066.614643]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712351066.614888]: Ancestors: {SOMA.Retrospecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351066.615132]: Subclasses: []\n", + "[INFO] [1712351066.615421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.615935]: Instances: []\n", + "[INFO] [1712351066.616217]: Direct Instances: []\n", + "[INFO] [1712351066.616518]: Inverse Restrictions: []\n", + "[INFO] [1712351066.616758]: -------------------\n", + "[INFO] [1712351066.616999]: SOMA.RemovedObject \n", + "[INFO] [1712351066.617228]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712351066.617478]: Ancestors: {SOMA.RemovedObject, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.ExcludedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.617730]: Subclasses: []\n", + "[INFO] [1712351066.618021]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.618525]: Instances: []\n", + "[INFO] [1712351066.618793]: Direct Instances: []\n", + "[INFO] [1712351066.619044]: Inverse Restrictions: []\n", + "[INFO] [1712351066.619272]: -------------------\n", + "[INFO] [1712351066.619499]: SOMA.Replanning \n", + "[INFO] [1712351066.619730]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712351066.619975]: Ancestors: {SOMA.Planning, SOMA.Replanning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351066.620217]: Subclasses: []\n", + "[INFO] [1712351066.620501]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.620977]: Instances: []\n", + "[INFO] [1712351066.621255]: Direct Instances: []\n", + "[INFO] [1712351066.621511]: Inverse Restrictions: []\n", + "[INFO] [1712351066.621746]: -------------------\n", + "[INFO] [1712351066.621974]: SOMA.RevoluteJoint \n", + "[INFO] [1712351066.622219]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712351066.622470]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, SOMA.RevoluteJoint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.622709]: Subclasses: []\n", + "[INFO] [1712351066.622996]: Properties: [SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.623554]: Instances: []\n", + "[INFO] [1712351066.623851]: Direct Instances: []\n", + "[INFO] [1712351066.624124]: Inverse Restrictions: []\n", + "[INFO] [1712351066.624372]: -------------------\n", + "[INFO] [1712351066.624623]: SOMA.Surface \n", + "[INFO] [1712351066.624877]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712351066.625132]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.625385]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712351066.625672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.626157]: Instances: []\n", + "[INFO] [1712351066.626430]: Direct Instances: []\n", + "[INFO] [1712351066.626686]: Inverse Restrictions: []\n", + "[INFO] [1712351066.626917]: -------------------\n", + "[INFO] [1712351066.627143]: SOMA.Rubbing \n", + "[INFO] [1712351066.627365]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712351066.627602]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, SOMA.Rubbing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.627849]: Subclasses: []\n", + "[INFO] [1712351066.628136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.628609]: Instances: []\n", + "[INFO] [1712351066.628869]: Direct Instances: []\n", + "[INFO] [1712351066.629115]: Inverse Restrictions: []\n", + "[INFO] [1712351066.629352]: -------------------\n", + "[INFO] [1712351066.629577]: SOMA.Scene \n", + "[INFO] [1712351066.629808]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712351066.630038]: Ancestors: {owl.Thing, DUL.Entity, SOMA.Scene, DUL.Situation}\n", + "[INFO] [1712351066.630285]: Subclasses: []\n", + "[INFO] [1712351066.630579]: Properties: [DUL.satisfies, DUL.includesEvent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.631073]: Instances: []\n", + "[INFO] [1712351066.631357]: Direct Instances: []\n", + "[INFO] [1712351066.631683]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712351066.631942]: -------------------\n", + "[INFO] [1712351066.632195]: SOMA.SelectedObject \n", + "[INFO] [1712351066.632456]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712351066.632745]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, owl.Thing, SOMA.SelectedObject}\n", + "[INFO] [1712351066.633034]: Subclasses: []\n", + "[INFO] [1712351066.633367]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.633892]: Instances: []\n", + "[INFO] [1712351066.634180]: Direct Instances: []\n", + "[INFO] [1712351066.634505]: Inverse Restrictions: []\n", + "[INFO] [1712351066.634744]: -------------------\n", + "[INFO] [1712351066.634975]: SOMA.Selecting \n", + "[INFO] [1712351066.635206]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712351066.635449]: Ancestors: {SOMA.Selecting, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351066.635687]: Subclasses: []\n", + "[INFO] [1712351066.635970]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.636439]: Instances: []\n", + "[INFO] [1712351066.636706]: Direct Instances: []\n", + "[INFO] [1712351066.637073]: Inverse Restrictions: []\n", + "[INFO] [1712351066.637370]: -------------------\n", + "[INFO] [1712351066.637630]: SOMA.SelectingItem \n", + "[INFO] [1712351066.637891]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712351066.638144]: Ancestors: {SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.SelectingItem, SOMA.GetTaskParameter}\n", + "[INFO] [1712351066.638405]: Subclasses: []\n", + "[INFO] [1712351066.638705]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.639190]: Instances: []\n", + "[INFO] [1712351066.639452]: Direct Instances: []\n", + "[INFO] [1712351066.639717]: Inverse Restrictions: []\n", + "[INFO] [1712351066.639952]: -------------------\n", + "[INFO] [1712351066.640181]: SOMA.SelfReflection \n", + "[INFO] [1712351066.640408]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712351066.640648]: Ancestors: {SOMA.MetacognitiveControlling, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, SOMA.SelfReflection, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.640913]: Subclasses: []\n", + "[INFO] [1712351066.641207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351066.641690]: Instances: []\n", + "[INFO] [1712351066.641963]: Direct Instances: []\n", + "[INFO] [1712351066.642217]: Inverse Restrictions: []\n", + "[INFO] [1712351066.642449]: -------------------\n", + "[INFO] [1712351066.642678]: SOMA.Serving \n", + "[INFO] [1712351066.642921]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712351066.643182]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, SOMA.Serving, DUL.Task, DUL.Concept, DUL.EventType, SOMA.Delivering, owl.Thing}\n", + "[INFO] [1712351066.643430]: Subclasses: []\n", + "[INFO] [1712351066.643721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.644201]: Instances: []\n", + "[INFO] [1712351066.644467]: Direct Instances: []\n", + "[INFO] [1712351066.644718]: Inverse Restrictions: []\n", + "[INFO] [1712351066.644965]: -------------------\n", + "[INFO] [1712351066.645246]: SOMA.SettingGripper \n", + "[INFO] [1712351066.645492]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712351066.645744]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.SettingGripper, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.645999]: Subclasses: []\n", + "[INFO] [1712351066.646312]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.646806]: Instances: []\n", + "[INFO] [1712351066.647057]: Direct Instances: []\n", + "[INFO] [1712351066.647303]: Inverse Restrictions: []\n", + "[INFO] [1712351066.647545]: -------------------\n", + "[INFO] [1712351066.647779]: SOMA.6DPose \n", + "[INFO] [1712351066.648012]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712351066.648247]: Ancestors: {SOMA.6DPose, DUL.Entity, DUL.Region, DUL.SpaceRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351066.648483]: Subclasses: []\n", + "[INFO] [1712351066.648802]: Properties: [rdf-schema.label, SOMA.hasPositionData, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.649298]: Instances: []\n", + "[INFO] [1712351066.649563]: Direct Instances: []\n", + "[INFO] [1712351066.649858]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712351066.650111]: -------------------\n", + "[INFO] [1712351066.650350]: SOMA.Sharpness \n", + "[INFO] [1712351066.650580]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351066.650816]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, SOMA.Sharpness}\n", + "[INFO] [1712351066.651051]: Subclasses: []\n", + "[INFO] [1712351066.651330]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.651818]: Instances: []\n", + "[INFO] [1712351066.652076]: Direct Instances: []\n", + "[INFO] [1712351066.652322]: Inverse Restrictions: []\n", + "[INFO] [1712351066.652548]: -------------------\n", + "[INFO] [1712351066.652773]: SOMA.Simulating \n", + "[INFO] [1712351066.653028]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712351066.653277]: Ancestors: {SOMA.Simulating, SOMA.DerivingInformation, SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712351066.653517]: Subclasses: []\n", + "[INFO] [1712351066.653800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.654269]: Instances: []\n", + "[INFO] [1712351066.654545]: Direct Instances: []\n", + "[INFO] [1712351066.654799]: Inverse Restrictions: []\n", + "[INFO] [1712351066.655030]: -------------------\n", + "[INFO] [1712351066.655257]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712351066.655483]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712351066.655735]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing, SOMA.Simulation_Reasoner}\n", + "[INFO] [1712351066.655981]: Subclasses: []\n", + "[INFO] [1712351066.656269]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.656747]: Instances: []\n", + "[INFO] [1712351066.657025]: Direct Instances: []\n", + "[INFO] [1712351066.657276]: Inverse Restrictions: []\n", + "[INFO] [1712351066.657509]: -------------------\n", + "[INFO] [1712351066.657739]: SOMA.Size \n", + "[INFO] [1712351066.657966]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712351066.658211]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Size, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", + "[INFO] [1712351066.658453]: Subclasses: []\n", + "[INFO] [1712351066.658737]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.659212]: Instances: []\n", + "[INFO] [1712351066.659483]: Direct Instances: []\n", + "[INFO] [1712351066.659734]: Inverse Restrictions: []\n", + "[INFO] [1712351066.659970]: -------------------\n", + "[INFO] [1712351066.660199]: SOMA.Slicing \n", + "[INFO] [1712351066.660426]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712351066.660680]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, SOMA.Slicing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", + "[INFO] [1712351066.660934]: Subclasses: []\n", + "[INFO] [1712351066.661218]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.661692]: Instances: []\n", + "[INFO] [1712351066.661949]: Direct Instances: []\n", + "[INFO] [1712351066.662196]: Inverse Restrictions: []\n", + "[INFO] [1712351066.662428]: -------------------\n", + "[INFO] [1712351066.662654]: SOMA.Sluggishness \n", + "[INFO] [1712351066.662879]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712351066.663139]: Ancestors: {DUL.Description, SOMA.Sluggishness, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", + "[INFO] [1712351066.663410]: Subclasses: []\n", + "[INFO] [1712351066.663700]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.664175]: Instances: []\n", + "[INFO] [1712351066.664422]: Direct Instances: []\n", + "[INFO] [1712351066.664674]: Inverse Restrictions: []\n", + "[INFO] [1712351066.664931]: -------------------\n", + "[INFO] [1712351066.665169]: SOMA.SocialState \n", + "[INFO] [1712351066.665407]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712351066.665647]: Ancestors: {SOMA.State, DUL.Entity, DUL.Event, owl.Thing, SOMA.SocialState}\n", + "[INFO] [1712351066.665902]: Subclasses: []\n", + "[INFO] [1712351066.666197]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.666669]: Instances: []\n", + "[INFO] [1712351066.666919]: Direct Instances: []\n", + "[INFO] [1712351066.667163]: Inverse Restrictions: []\n", + "[INFO] [1712351066.667401]: -------------------\n", + "[INFO] [1712351066.667631]: SOMA.Software_Configuration \n", + "[INFO] [1712351066.667863]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712351066.668105]: Ancestors: {DUL.Collection, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Software_Configuration, DUL.Configuration, owl.Thing}\n", + "[INFO] [1712351066.668357]: Subclasses: []\n", + "[INFO] [1712351066.668649]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351066.669138]: Instances: []\n", + "[INFO] [1712351066.669412]: Direct Instances: []\n", + "[INFO] [1712351066.669763]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712351066.670002]: -------------------\n", + "[INFO] [1712351066.670231]: SOMA.SoftwareLibrary \n", + "[INFO] [1712351066.670458]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712351066.670709]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, SOMA.SoftwareLibrary, DUL.Object, DUL.Entity, SOMA.Software, owl.Thing}\n", + "[INFO] [1712351066.670954]: Subclasses: []\n", + "[INFO] [1712351066.671242]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712351066.671723]: Instances: []\n", + "[INFO] [1712351066.671990]: Direct Instances: []\n", + "[INFO] [1712351066.672241]: Inverse Restrictions: []\n", + "[INFO] [1712351066.672472]: -------------------\n", + "[INFO] [1712351066.672698]: SOMA.SourceMaterialRole \n", + "[INFO] [1712351066.672930]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712351066.673172]: Ancestors: {DUL.SocialObject, owl.Thing, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.SourceMaterialRole}\n", + "[INFO] [1712351066.673424]: Subclasses: []\n", + "[INFO] [1712351066.673714]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.674190]: Instances: []\n", + "[INFO] [1712351066.674465]: Direct Instances: []\n", + "[INFO] [1712351066.674710]: Inverse Restrictions: []\n", + "[INFO] [1712351066.674942]: -------------------\n", + "[INFO] [1712351066.675172]: SOMA.SphereShape \n", + "[INFO] [1712351066.675404]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712351066.675643]: Ancestors: {SOMA.ShapeRegion, DUL.Region, SOMA.SphereShape, DUL.Entity, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351066.675897]: Subclasses: []\n", + "[INFO] [1712351066.676192]: Properties: [rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.676671]: Instances: []\n", + "[INFO] [1712351066.676929]: Direct Instances: []\n", + "[INFO] [1712351066.677173]: Inverse Restrictions: []\n", + "[INFO] [1712351066.677418]: -------------------\n", + "[INFO] [1712351066.677653]: SOMA.Standing \n", + "[INFO] [1712351066.677881]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712351066.678120]: Ancestors: {DUL.SocialObject, SOMA.Standing, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", + "[INFO] [1712351066.678370]: Subclasses: []\n", + "[INFO] [1712351066.678672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.679147]: Instances: []\n", + "[INFO] [1712351066.679403]: Direct Instances: []\n", + "[INFO] [1712351066.679671]: Inverse Restrictions: []\n", + "[INFO] [1712351066.679917]: -------------------\n", + "[INFO] [1712351066.680165]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712351066.680401]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712351066.680639]: Ancestors: {SOMA.StaticFrictionAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", + "[INFO] [1712351066.680881]: Subclasses: []\n", + "[INFO] [1712351066.681170]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.681669]: Instances: []\n", + "[INFO] [1712351066.681930]: Direct Instances: []\n", + "[INFO] [1712351066.682185]: Inverse Restrictions: []\n", + "[INFO] [1712351066.682425]: -------------------\n", + "[INFO] [1712351066.682667]: SOMA.Status \n", + "[INFO] [1712351066.682894]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712351066.683148]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, owl.Thing, SOMA.Status}\n", + "[INFO] [1712351066.683391]: Subclasses: []\n", + "[INFO] [1712351066.683673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.684140]: Instances: []\n", + "[INFO] [1712351066.684411]: Direct Instances: []\n", + "[INFO] [1712351066.684694]: Inverse Restrictions: []\n", + "[INFO] [1712351066.684938]: -------------------\n", + "[INFO] [1712351066.685168]: SOMA.StatusFailure \n", + "[INFO] [1712351066.685396]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351066.685634]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.StatusFailure, owl.Thing}\n", + "[INFO] [1712351066.685880]: Subclasses: []\n", + "[INFO] [1712351066.686167]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.686662]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712351066.686947]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712351066.687214]: Inverse Restrictions: []\n", + "[INFO] [1712351066.687449]: -------------------\n", + "[INFO] [1712351066.687677]: SOMA.StimulusRole \n", + "[INFO] [1712351066.687915]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712351066.688165]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.StimulusRole, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", + "[INFO] [1712351066.688406]: Subclasses: []\n", + "[INFO] [1712351066.688693]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.689420]: Instances: []\n", + "[INFO] [1712351066.689750]: Direct Instances: []\n", + "[INFO] [1712351066.690032]: Inverse Restrictions: []\n", + "[INFO] [1712351066.690289]: -------------------\n", + "[INFO] [1712351066.690600]: SOMA.Stirring \n", + "[INFO] [1712351066.690908]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712351066.691185]: Ancestors: {SOMA.Constructing, DUL.SocialObject, SOMA.Mixing, DUL.Object, SOMA.Stirring, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.691442]: Subclasses: []\n", + "[INFO] [1712351066.691744]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.692249]: Instances: []\n", + "[INFO] [1712351066.692529]: Direct Instances: []\n", + "[INFO] [1712351066.692788]: Inverse Restrictions: []\n", + "[INFO] [1712351066.693032]: -------------------\n", + "[INFO] [1712351066.693262]: SOMA.Storage \n", + "[INFO] [1712351066.693494]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712351066.693750]: Ancestors: {SOMA.Extrinsic, SOMA.Storage, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.693999]: Subclasses: []\n", + "[INFO] [1712351066.694289]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.694767]: Instances: []\n", + "[INFO] [1712351066.695050]: Direct Instances: []\n", + "[INFO] [1712351066.695471]: Inverse Restrictions: []\n", + "[INFO] [1712351066.695935]: -------------------\n", + "[INFO] [1712351066.696269]: SOMA.StructuralDesign \n", + "[INFO] [1712351066.696546]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712351066.696848]: Ancestors: {SOMA.StructuralDesign, DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.697130]: Subclasses: []\n", + "[INFO] [1712351066.697461]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.697989]: Instances: []\n", + "[INFO] [1712351066.698280]: Direct Instances: []\n", + "[INFO] [1712351066.698542]: Inverse Restrictions: []\n", + "[INFO] [1712351066.698782]: -------------------\n", + "[INFO] [1712351066.699033]: SOMA.TaskInvocation \n", + "[INFO] [1712351066.699289]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712351066.699562]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Workflow, SOMA.TaskInvocation, owl.Thing, DUL.Plan}\n", + "[INFO] [1712351066.699823]: Subclasses: []\n", + "[INFO] [1712351066.700132]: Properties: [rdf-schema.label, DUL.definesTask, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.700647]: Instances: []\n", + "[INFO] [1712351066.700943]: Direct Instances: []\n", + "[INFO] [1712351066.701283]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712351066.701531]: -------------------\n", + "[INFO] [1712351066.701766]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712351066.702004]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712351066.702260]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351066.702516]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712351066.702866]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.703482]: Instances: []\n", + "[INFO] [1712351066.703808]: Direct Instances: []\n", + "[INFO] [1712351066.704096]: Inverse Restrictions: []\n", + "[INFO] [1712351066.704358]: -------------------\n", + "[INFO] [1712351066.704602]: SOMA.Successfulness \n", + "[INFO] [1712351066.704848]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712351066.705101]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Successfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351066.705347]: Subclasses: []\n", + "[INFO] [1712351066.705644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.706148]: Instances: []\n", + "[INFO] [1712351066.706419]: Direct Instances: []\n", + "[INFO] [1712351066.706671]: Inverse Restrictions: []\n", + "[INFO] [1712351066.706905]: -------------------\n", + "[INFO] [1712351066.707135]: SOMA.SupportState \n", + "[INFO] [1712351066.707395]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712351066.707651]: Ancestors: {SOMA.SupportState, SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.707900]: Subclasses: []\n", + "[INFO] [1712351066.708193]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.708692]: Instances: []\n", + "[INFO] [1712351066.708962]: Direct Instances: []\n", + "[INFO] [1712351066.709209]: Inverse Restrictions: []\n", + "[INFO] [1712351066.709440]: -------------------\n", + "[INFO] [1712351066.709666]: SOMA.Supporter \n", + "[INFO] [1712351066.709897]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712351066.710147]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.Supporter, owl.Thing}\n", + "[INFO] [1712351066.710388]: Subclasses: []\n", + "[INFO] [1712351066.710672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.711151]: Instances: []\n", + "[INFO] [1712351066.711436]: Direct Instances: []\n", + "[INFO] [1712351066.711751]: Inverse Restrictions: []\n", + "[INFO] [1712351066.711989]: -------------------\n", + "[INFO] [1712351066.712222]: SOMA.SupportTheory \n", + "[INFO] [1712351066.712454]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712351066.712714]: Ancestors: {DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.SupportTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", + "[INFO] [1712351066.712975]: Subclasses: []\n", + "[INFO] [1712351066.713274]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.713763]: Instances: []\n", + "[INFO] [1712351066.714044]: Direct Instances: []\n", + "[INFO] [1712351066.714307]: Inverse Restrictions: []\n", + "[INFO] [1712351066.714542]: -------------------\n", + "[INFO] [1712351066.714775]: SOMA.SupportedObject \n", + "[INFO] [1712351066.715004]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712351066.715248]: Ancestors: {DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.SupportedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.715509]: Subclasses: []\n", + "[INFO] [1712351066.715807]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.716318]: Instances: []\n", + "[INFO] [1712351066.716613]: Direct Instances: []\n", + "[INFO] [1712351066.716931]: Inverse Restrictions: []\n", + "[INFO] [1712351066.717309]: -------------------\n", + "[INFO] [1712351066.717591]: SOMA.SymbolicReasoner \n", + "[INFO] [1712351066.717851]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712351066.718112]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.SymbolicReasoner, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing}\n", + "[INFO] [1712351066.718369]: Subclasses: []\n", + "[INFO] [1712351066.718664]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.719167]: Instances: []\n", + "[INFO] [1712351066.719438]: Direct Instances: []\n", + "[INFO] [1712351066.719681]: Inverse Restrictions: []\n", + "[INFO] [1712351066.719910]: -------------------\n", + "[INFO] [1712351066.720136]: SOMA.Tapping \n", + "[INFO] [1712351066.720360]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712351066.720612]: Ancestors: {SOMA.Tapping, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.720857]: Subclasses: []\n", + "[INFO] [1712351066.721142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.721612]: Instances: []\n", + "[INFO] [1712351066.721883]: Direct Instances: []\n", + "[INFO] [1712351066.722132]: Inverse Restrictions: []\n", + "[INFO] [1712351066.722361]: -------------------\n", + "[INFO] [1712351066.722587]: SOMA.Taxis \n", + "[INFO] [1712351066.722810]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712351066.723046]: Ancestors: {SOMA.Taxis, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.723292]: Subclasses: []\n", + "[INFO] [1712351066.723577]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.724047]: Instances: []\n", + "[INFO] [1712351066.724293]: Direct Instances: []\n", + "[INFO] [1712351066.724527]: Inverse Restrictions: []\n", + "[INFO] [1712351066.724764]: -------------------\n", + "[INFO] [1712351066.724999]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712351066.725229]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712351066.725463]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.725706]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712351066.726001]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.726490]: Instances: []\n", + "[INFO] [1712351066.726743]: Direct Instances: []\n", + "[INFO] [1712351066.726990]: Inverse Restrictions: []\n", + "[INFO] [1712351066.727225]: -------------------\n", + "[INFO] [1712351066.727453]: SOMA.Temperature \n", + "[INFO] [1712351066.727684]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712351066.727917]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, SOMA.Temperature}\n", + "[INFO] [1712351066.728149]: Subclasses: []\n", + "[INFO] [1712351066.728446]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", + "[INFO] [1712351066.728928]: Instances: []\n", + "[INFO] [1712351066.729194]: Direct Instances: []\n", + "[INFO] [1712351066.729483]: Inverse Restrictions: []\n", + "[INFO] [1712351066.729728]: -------------------\n", + "[INFO] [1712351066.729962]: SOMA.TemperatureRegion \n", + "[INFO] [1712351066.730192]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712351066.730473]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.TemperatureRegion, owl.Thing}\n", + "[INFO] [1712351066.730728]: Subclasses: []\n", + "[INFO] [1712351066.731028]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.731514]: Instances: []\n", + "[INFO] [1712351066.731786]: Direct Instances: []\n", + "[INFO] [1712351066.732110]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712351066.732345]: -------------------\n", + "[INFO] [1712351066.732571]: SOMA.Tempering \n", + "[INFO] [1712351066.732805]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712351066.733065]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.Tempering, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", + "[INFO] [1712351066.733319]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712351066.733602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.734080]: Instances: []\n", + "[INFO] [1712351066.734360]: Direct Instances: []\n", + "[INFO] [1712351066.734619]: Inverse Restrictions: []\n", + "[INFO] [1712351066.734851]: -------------------\n", + "[INFO] [1712351066.735075]: SOMA.ThinkAloud \n", + "[INFO] [1712351066.735298]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712351066.735540]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, owl.Thing, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, SOMA.ThinkAloud, DUL.EventType, SOMA.CommunicationReport}\n", + "[INFO] [1712351066.735785]: Subclasses: []\n", + "[INFO] [1712351066.736068]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.736535]: Instances: []\n", + "[INFO] [1712351066.736805]: Direct Instances: []\n", + "[INFO] [1712351066.737056]: Inverse Restrictions: []\n", + "[INFO] [1712351066.737284]: -------------------\n", + "[INFO] [1712351066.737512]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712351066.737740]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351066.737993]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, SOMA.ThinkAloudActionTopic, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.738241]: Subclasses: []\n", + "[INFO] [1712351066.738524]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.738991]: Instances: []\n", + "[INFO] [1712351066.739255]: Direct Instances: []\n", + "[INFO] [1712351066.739506]: Inverse Restrictions: []\n", + "[INFO] [1712351066.739732]: -------------------\n", + "[INFO] [1712351066.739954]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712351066.740173]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712351066.740419]: Ancestors: {DUL.SocialObject, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ResourceRole, SOMA.CommunicationTopic, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.740659]: Subclasses: []\n", + "[INFO] [1712351066.740956]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.741504]: Instances: []\n", + "[INFO] [1712351066.741785]: Direct Instances: []\n", + "[INFO] [1712351066.742045]: Inverse Restrictions: []\n", + "[INFO] [1712351066.742276]: -------------------\n", + "[INFO] [1712351066.742501]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712351066.742733]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351066.742975]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.743226]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712351066.743525]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.744022]: Instances: []\n", + "[INFO] [1712351066.744295]: Direct Instances: []\n", + "[INFO] [1712351066.744537]: Inverse Restrictions: []\n", + "[INFO] [1712351066.744762]: -------------------\n", + "[INFO] [1712351066.744998]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712351066.745229]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351066.745469]: Ancestors: {SOMA.ThinkAloudObstructionTopic, DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.745701]: Subclasses: []\n", + "[INFO] [1712351066.745986]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.746481]: Instances: []\n", + "[INFO] [1712351066.746742]: Direct Instances: []\n", + "[INFO] [1712351066.747046]: Inverse Restrictions: []\n", + "[INFO] [1712351066.747299]: -------------------\n", + "[INFO] [1712351066.747531]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712351066.747748]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351066.747989]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing, SOMA.ThinkAloudOpinionTopic}\n", + "[INFO] [1712351066.748222]: Subclasses: []\n", + "[INFO] [1712351066.748493]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.748965]: Instances: []\n", + "[INFO] [1712351066.749246]: Direct Instances: []\n", + "[INFO] [1712351066.749502]: Inverse Restrictions: []\n", + "[INFO] [1712351066.749752]: -------------------\n", + "[INFO] [1712351066.749987]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712351066.750211]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351066.750454]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudPerceptionTopic, owl.Thing}\n", + "[INFO] [1712351066.750690]: Subclasses: []\n", + "[INFO] [1712351066.750967]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.751426]: Instances: []\n", + "[INFO] [1712351066.751678]: Direct Instances: []\n", + "[INFO] [1712351066.751915]: Inverse Restrictions: []\n", + "[INFO] [1712351066.752138]: -------------------\n", + "[INFO] [1712351066.752358]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712351066.752587]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712351066.752837]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.ThinkAloudPlanTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.753083]: Subclasses: []\n", + "[INFO] [1712351066.753361]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.753857]: Instances: []\n", + "[INFO] [1712351066.754116]: Direct Instances: []\n", + "[INFO] [1712351066.754354]: Inverse Restrictions: []\n", + "[INFO] [1712351066.754577]: -------------------\n", + "[INFO] [1712351066.754795]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712351066.755024]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712351066.755266]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", + "[INFO] [1712351066.755500]: Subclasses: []\n", + "[INFO] [1712351066.755776]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.756257]: Instances: []\n", + "[INFO] [1712351066.756509]: Direct Instances: []\n", + "[INFO] [1712351066.756745]: Inverse Restrictions: []\n", + "[INFO] [1712351066.757158]: -------------------\n", + "[INFO] [1712351066.757529]: SOMA.Threshold \n", + "[INFO] [1712351066.757903]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712351066.758276]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, SOMA.Threshold, DUL.Entity, DUL.Concept, owl.Thing}\n", + "[INFO] [1712351066.758646]: Subclasses: []\n", + "[INFO] [1712351066.759062]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.759576]: Instances: []\n", + "[INFO] [1712351066.759853]: Direct Instances: []\n", + "[INFO] [1712351066.760221]: Inverse Restrictions: []\n", + "[INFO] [1712351066.760502]: -------------------\n", + "[INFO] [1712351066.760759]: SOMA.Throwing \n", + "[INFO] [1712351066.761017]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712351066.761270]: Ancestors: {DUL.SocialObject, SOMA.Throwing, SOMA.Actuating, DUL.Object, SOMA.Manipulating, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.761515]: Subclasses: []\n", + "[INFO] [1712351066.761802]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.762300]: Instances: []\n", + "[INFO] [1712351066.762568]: Direct Instances: []\n", + "[INFO] [1712351066.762826]: Inverse Restrictions: []\n", + "[INFO] [1712351066.763085]: -------------------\n", + "[INFO] [1712351066.763333]: SOMA.TimeRole \n", + "[INFO] [1712351066.763583]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712351066.763842]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", + "[INFO] [1712351066.764089]: Subclasses: []\n", + "[INFO] [1712351066.764381]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.764891]: Instances: []\n", + "[INFO] [1712351066.765163]: Direct Instances: []\n", + "[INFO] [1712351066.765425]: Inverse Restrictions: []\n", + "[INFO] [1712351066.765665]: -------------------\n", + "[INFO] [1712351066.765912]: SOMA.Transporting \n", + "[INFO] [1712351066.766155]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712351066.766408]: Ancestors: {SOMA.Transporting, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", + "[INFO] [1712351066.766649]: Subclasses: []\n", + "[INFO] [1712351066.766931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.767409]: Instances: []\n", + "[INFO] [1712351066.767854]: Direct Instances: []\n", + "[INFO] [1712351066.768164]: Inverse Restrictions: []\n", + "[INFO] [1712351066.768431]: -------------------\n", + "[INFO] [1712351066.768671]: SOMA.Triplestore \n", + "[INFO] [1712351066.768925]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712351066.769190]: Ancestors: {SOMA.SoftwareRole, SOMA.Triplestore, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, SOMA.GraphDatabase, DUL.Role, owl.Thing}\n", + "[INFO] [1712351066.769434]: Subclasses: []\n", + "[INFO] [1712351066.769745]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.770231]: Instances: []\n", + "[INFO] [1712351066.770490]: Direct Instances: []\n", + "[INFO] [1712351066.770745]: Inverse Restrictions: []\n", + "[INFO] [1712351066.770982]: -------------------\n", + "[INFO] [1712351066.771206]: SOMA.Turning \n", + "[INFO] [1712351066.771430]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712351066.771686]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.Turning, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", + "[INFO] [1712351066.771927]: Subclasses: []\n", + "[INFO] [1712351066.772207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.772677]: Instances: []\n", + "[INFO] [1712351066.772959]: Direct Instances: []\n", + "[INFO] [1712351066.773210]: Inverse Restrictions: []\n", + "[INFO] [1712351066.773441]: -------------------\n", + "[INFO] [1712351066.773668]: SOMA.UnavailableSoftware \n", + "[INFO] [1712351066.773893]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712351066.774141]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, SOMA.UnavailableSoftware, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.774378]: Subclasses: []\n", + "[INFO] [1712351066.774657]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.775142]: Instances: []\n", + "[INFO] [1712351066.775401]: Direct Instances: []\n", + "[INFO] [1712351066.775642]: Inverse Restrictions: []\n", + "[INFO] [1712351066.775864]: -------------------\n", + "[INFO] [1712351066.776094]: SOMA.Unsuccessfulness \n", + "[INFO] [1712351066.776325]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712351066.776561]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", + "[INFO] [1712351066.776805]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712351066.777085]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.777581]: Instances: []\n", + "[INFO] [1712351066.777841]: Direct Instances: []\n", + "[INFO] [1712351066.778093]: Inverse Restrictions: []\n", + "[INFO] [1712351066.778319]: -------------------\n", + "[INFO] [1712351066.778543]: SOMA.VideoData \n", + "[INFO] [1712351066.778780]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712351066.779018]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.VideoData, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing}\n", + "[INFO] [1712351066.779257]: Subclasses: []\n", + "[INFO] [1712351066.779538]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.780034]: Instances: []\n", + "[INFO] [1712351066.780293]: Direct Instances: []\n", + "[INFO] [1712351066.780532]: Inverse Restrictions: []\n", + "[INFO] [1712351066.780760]: -------------------\n", + "[INFO] [1712351066.780993]: SOMA.3DPosition \n", + "[INFO] [1712351066.781237]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712351066.781478]: Ancestors: {SOMA.3DPosition, DUL.Entity, DUL.Region, DUL.SpaceRegion, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712351066.781718]: Subclasses: []\n", + "[INFO] [1712351066.782008]: Properties: [rdf-schema.label, SOMA.hasPositionData, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.782502]: Instances: []\n", + "[INFO] [1712351066.782762]: Direct Instances: []\n", + "[INFO] [1712351066.783001]: Inverse Restrictions: []\n" ] }, { @@ -11031,8 +11031,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.071054Z", - "start_time": "2024-04-05T20:40:18.060420Z" + "end_time": "2024-04-05T21:04:26.801512Z", + "start_time": "2024-04-05T21:04:26.791174Z" } }, "outputs": [ @@ -11113,8 +11113,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.084717Z", - "start_time": "2024-04-05T20:40:18.071628Z" + "end_time": "2024-04-05T21:04:26.815550Z", + "start_time": "2024-04-05T21:04:26.801984Z" } }, "outputs": [], @@ -11141,8 +11141,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.106405Z", - "start_time": "2024-04-05T20:40:18.085348Z" + "end_time": "2024-04-05T21:04:26.832178Z", + "start_time": "2024-04-05T21:04:26.816143Z" } }, "outputs": [ @@ -11150,24 +11150,24 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712349618.097436]: -------------------\n", - "[INFO] [1712349618.098242]: SOMA-HOME.OntologyConcept \n", - "[INFO] [1712349618.098652]: Super classes: [owl.Thing]\n", - "[INFO] [1712349618.099044]: Ancestors: {owl.Thing, SOMA-HOME.OntologyConcept}\n", - "[INFO] [1712349618.099438]: Subclasses: [SOMA-HOME.CustomContainerConcept]\n", - "[INFO] [1712349618.099867]: Properties: []\n", - "[INFO] [1712349618.100529]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712349618.100943]: Direct Instances: []\n", - "[INFO] [1712349618.101336]: Inverse Restrictions: []\n", - "[INFO] [1712349618.101745]: -------------------\n", - "[INFO] [1712349618.102108]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712349618.102462]: Super classes: [SOMA-HOME.OntologyConcept, SOMA.DesignedContainer]\n", - "[INFO] [1712349618.102863]: Ancestors: {SOMA-HOME.CustomContainerConcept, DUL.Object, DUL.PhysicalObject, DUL.Entity, DUL.DesignedArtifact, SOMA-HOME.OntologyConcept, SOMA.DesignedContainer, DUL.PhysicalArtifact, owl.Thing}\n", - "[INFO] [1712349618.103233]: Subclasses: []\n", - "[INFO] [1712349618.103642]: Properties: []\n", - "[INFO] [1712349618.104265]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712349618.104638]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712349618.105024]: Inverse Restrictions: []\n", + "[INFO] [1712351066.824120]: -------------------\n", + "[INFO] [1712351066.824774]: SOMA-HOME.OntologyConcept \n", + "[INFO] [1712351066.825103]: Super classes: [owl.Thing]\n", + "[INFO] [1712351066.825396]: Ancestors: {owl.Thing, SOMA-HOME.OntologyConcept}\n", + "[INFO] [1712351066.825686]: Subclasses: [SOMA-HOME.CustomContainerConcept]\n", + "[INFO] [1712351066.826022]: Properties: []\n", + "[INFO] [1712351066.826570]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712351066.826862]: Direct Instances: []\n", + "[INFO] [1712351066.827132]: Inverse Restrictions: []\n", + "[INFO] [1712351066.827420]: -------------------\n", + "[INFO] [1712351066.827688]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712351066.827935]: Super classes: [SOMA-HOME.OntologyConcept, SOMA.DesignedContainer]\n", + "[INFO] [1712351066.828234]: Ancestors: {DUL.DesignedArtifact, SOMA-HOME.OntologyConcept, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA-HOME.CustomContainerConcept, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712351066.828498]: Subclasses: []\n", + "[INFO] [1712351066.829096]: Properties: []\n", + "[INFO] [1712351066.829772]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712351066.830201]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712351066.830585]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -11191,8 +11191,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.122029Z", - "start_time": "2024-04-05T20:40:18.106869Z" + "end_time": "2024-04-05T21:04:26.843844Z", + "start_time": "2024-04-05T21:04:26.832791Z" } }, "outputs": [ @@ -11200,15 +11200,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712349618.117187]: -------------------\n", - "[INFO] [1712349618.117756]: SOMA.Cup \n", - "[INFO] [1712349618.118187]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712349618.118583]: Ancestors: {SOMA.Crockery, SOMA.Cup, SOMA.Tableware, DUL.Object, SOMA.DesignedTool, DUL.Entity, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedContainer, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712349618.118947]: Subclasses: []\n", - "[INFO] [1712349618.119378]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712349618.119986]: Instances: []\n", - "[INFO] [1712349618.120366]: Direct Instances: []\n", - "[INFO] [1712349618.120726]: Inverse Restrictions: []\n" + "[INFO] [1712351066.839870]: -------------------\n", + "[INFO] [1712351066.840372]: SOMA.Cup \n", + "[INFO] [1712351066.840687]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712351066.840988]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Cup, owl.Thing, SOMA.Crockery}\n", + "[INFO] [1712351066.841264]: Subclasses: []\n", + "[INFO] [1712351066.841602]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712351066.842129]: Instances: []\n", + "[INFO] [1712351066.842414]: Direct Instances: []\n", + "[INFO] [1712351066.842675]: Inverse Restrictions: []\n" ] } ], @@ -11236,8 +11236,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.133354Z", - "start_time": "2024-04-05T20:40:18.122476Z" + "end_time": "2024-04-05T21:04:26.856719Z", + "start_time": "2024-04-05T21:04:26.844287Z" } }, "outputs": [], @@ -11265,8 +11265,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.143662Z", - "start_time": "2024-04-05T20:40:18.134278Z" + "end_time": "2024-04-05T21:04:26.867909Z", + "start_time": "2024-04-05T21:04:26.857827Z" } }, "outputs": [ @@ -11309,8 +11309,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.153466Z", - "start_time": "2024-04-05T20:40:18.144116Z" + "end_time": "2024-04-05T21:04:26.881065Z", + "start_time": "2024-04-05T21:04:26.868497Z" } }, "outputs": [], @@ -11349,12 +11349,12 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.167497Z", - "start_time": "2024-04-05T20:40:18.154157Z" + "end_time": "2024-04-05T21:04:26.891442Z", + "start_time": "2024-04-05T21:04:26.881644Z" } }, - "outputs": [], - "execution_count": 12 + "execution_count": 12, + "outputs": [] }, { "cell_type": "markdown", @@ -11380,8 +11380,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.176522Z", - "start_time": "2024-04-05T20:40:18.167918Z" + "end_time": "2024-04-05T21:04:26.904715Z", + "start_time": "2024-04-05T21:04:26.892014Z" } }, "outputs": [], @@ -11425,8 +11425,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.190837Z", - "start_time": "2024-04-05T20:40:18.176973Z" + "end_time": "2024-04-05T21:04:26.915253Z", + "start_time": "2024-04-05T21:04:26.905338Z" } }, "outputs": [ @@ -11460,7 +11460,7 @@ { "cell_type": "code", "source": [ - "from pycram.enums import ObjectType\n", + "from pycram.datastructures.enums import ObjectType\n", "\n", "# Create a generic ontology concept class for edible objects\n", "generic_edible_class = ontology_manager.create_ontology_concept_class('GenericEdible')\n", @@ -11479,8 +11479,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T20:40:18.200510Z", - "start_time": "2024-04-05T20:40:18.191346Z" + "end_time": "2024-04-05T21:04:26.929839Z", + "start_time": "2024-04-05T21:04:26.915854Z" } }, "outputs": [ @@ -11520,22 +11520,21 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T20:40:26.423697Z", - "start_time": "2024-04-05T20:40:18.200975Z" + "end_time": "2024-04-05T21:04:27.428263Z", + "start_time": "2024-04-05T21:04:26.930449Z" } }, "cell_type": "code", "source": [ - "from pycram.bullet_world import BulletWorld, Object\n", - "from pycram.enums import ObjectType\n", - "from pycram.pose import Pose\n", + "from pycram.worlds.bullet_world import BulletWorld, Object\n", + "from pycram.datastructures.pose import Pose\n", "\n", "from pycram.process_module import simulated_robot\n", "from pycram.designators.action_designator import *\n", "from pycram.designators.location_designator import *\n", "\n", "world = BulletWorld()\n", - "plane = BulletWorld.current_bullet_world.objects[0]\n", + "plane = Object(\"floor\", ObjectType.ENVIRONMENT, \"plane.urdf\")\n", "kitchen = Object(\"kitchen\", ObjectType.ENVIRONMENT, \"kitchen.urdf\")\n", "pr2 = Object(\"pr2\", ObjectType.ROBOT, \"pr2.urdf\")\n", "kitchen_designator = ObjectDesignatorDescription(names=[\"kitchen\"])\n", @@ -11561,8 +11560,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T20:40:26.500872Z", - "start_time": "2024-04-05T20:40:26.424328Z" + "end_time": "2024-04-05T21:04:27.539322Z", + "start_time": "2024-04-05T21:04:27.428937Z" } }, "cell_type": "code", @@ -11589,8 +11588,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T20:40:26.785195Z", - "start_time": "2024-04-05T20:40:26.501417Z" + "end_time": "2024-04-05T21:04:27.604392Z", + "start_time": "2024-04-05T21:04:27.540049Z" } }, "cell_type": "code", @@ -11618,8 +11617,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T20:40:26.809299Z", - "start_time": "2024-04-05T20:40:26.785742Z" + "end_time": "2024-04-05T21:04:27.642142Z", + "start_time": "2024-04-05T21:04:27.605001Z" } }, "cell_type": "code", @@ -11639,8 +11638,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T20:40:26.827784Z", - "start_time": "2024-04-05T20:40:26.809789Z" + "end_time": "2024-04-05T21:04:27.652307Z", + "start_time": "2024-04-05T21:04:27.642814Z" } }, "cell_type": "code", @@ -11667,8 +11666,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T20:40:26.842434Z", - "start_time": "2024-04-05T20:40:26.828301Z" + "end_time": "2024-04-05T21:04:27.667215Z", + "start_time": "2024-04-05T21:04:27.652796Z" } }, "cell_type": "code", @@ -11695,8 +11694,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T20:40:36.153706Z", - "start_time": "2024-04-05T20:40:26.842895Z" + "end_time": "2024-04-05T21:04:36.314980Z", + "start_time": "2024-04-05T21:04:27.667776Z" } }, "cell_type": "code", @@ -11736,8 +11735,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712349628\n", - " nsecs: 307107686\n", + " secs: 1712351069\n", + " nsecs: 135382413\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -11748,7 +11747,13 @@ " x: -0.0\n", " y: 0.0\n", " z: 0.15234391170286138\n", - " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n" + " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n", + "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", + "Remove body failed\n", + "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", + "Remove body failed\n", + "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", + "Remove body failed\n" ] } ], @@ -11765,8 +11770,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T20:40:36.201385Z", - "start_time": "2024-04-05T20:40:36.154368Z" + "end_time": "2024-04-05T21:04:36.365453Z", + "start_time": "2024-04-05T21:04:36.316168Z" } }, "cell_type": "code", @@ -11776,7 +11781,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712349636.199589]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712351076.363730]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], diff --git a/src/pycram/ontology.py b/src/pycram/ontology.py index bd4cfa558..accdbe02a 100644 --- a/src/pycram/ontology.py +++ b/src/pycram/ontology.py @@ -12,7 +12,7 @@ owlready2 = None logging.warn("Could not import owlready2, OWL Ontology Manager could not be initialized") -from pycram.enums import ObjectType +from pycram.datastructures.enums import ObjectType from pycram.helper import Singleton from pycram.designator import DesignatorDescription, ObjectDesignatorDescription From 2a21fc5803bfe25d60304751f50e5bc2e12278be Mon Sep 17 00:00:00 2001 From: duc than Date: Mon, 8 Apr 2024 17:01:09 +0200 Subject: [PATCH 10/26] add OntologyConceptHolder, wrapping owlready2.Thing used to link an ontology concept, either created dynamically or loaded from ontology, with designators & custom resolving callable --- examples/ontology.ipynb | 19950 +++++++++--------- src/pycram/designator.py | 47 +- src/pycram/designators/action_designator.py | 163 +- src/pycram/designators/object_designator.py | 8 +- src/pycram/{ => ontology}/ontology.py | 139 +- src/pycram/ontology/ontology_common.py | 140 + test/bullet_world_testcase.py | 2 +- test/test_action_designator.py | 28 +- test/test_ontology.py | 141 + 9 files changed, 10518 insertions(+), 10100 deletions(-) rename src/pycram/{ => ontology}/ontology.py (80%) create mode 100644 src/pycram/ontology/ontology_common.py create mode 100644 test/test_ontology.py diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index e4cf3b823..057f7533d 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -17,13 +17,13 @@ "from pathlib import Path \n", "from typing import Optional, List, Type\n", "import pycram\n", - "from pycram.designator import DesignatorDescription, ObjectDesignatorDescription" + "from pycram.designator import ObjectDesignatorDescription" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:23.073136Z", - "start_time": "2024-04-05T21:04:22.510921Z" + "end_time": "2024-04-08T20:19:18.087745Z", + "start_time": "2024-04-08T20:19:17.538901Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:23.086096Z", - "start_time": "2024-04-05T21:04:23.076074Z" + "end_time": "2024-04-08T20:19:18.102332Z", + "start_time": "2024-04-08T20:19:18.090445Z" } }, "outputs": [], @@ -97,7 +97,8 @@ { "cell_type": "code", "source": [ - "from pycram.ontology import OntologyManager, SOMA_HOME_ONTOLOGY_IRI\n", + "from pycram.ontology.ontology import OntologyManager, SOMA_HOME_ONTOLOGY_IRI\n", + "from pycram.ontology.ontology_common import OntologyConceptHolder\n", "\n", "ontology_manager = OntologyManager(SOMA_HOME_ONTOLOGY_IRI)\n", "main_ontology = ontology_manager.main_ontology\n", @@ -107,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:23.549981Z", - "start_time": "2024-04-05T21:04:23.086539Z" + "end_time": "2024-04-08T20:19:18.224362Z", + "start_time": "2024-04-08T20:19:18.102939Z" } }, "outputs": [ @@ -116,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712351063.545588]: Main Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712351063.546573]: Main Ontology namespace: SOMA-HOME\n", - "[INFO] [1712351063.547160]: Loaded ontologies:\n", - "[INFO] [1712351063.547561]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712351063.547945]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712351063.548321]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712607558.220567]: Main Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712607558.221251]: Main Ontology namespace: SOMA-HOME\n", + "[INFO] [1712607558.221646]: Loaded ontologies:\n", + "[INFO] [1712607558.222010]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712607558.222345]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712607558.222734]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -164,8 +165,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.790724Z", - "start_time": "2024-04-05T21:04:23.550836Z" + "end_time": "2024-04-08T20:19:21.448439Z", + "start_time": "2024-04-08T20:19:18.225227Z" } }, "outputs": [ @@ -173,9834 +174,9897 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712351063.668618]: -------------------\n", - "[INFO] [1712351063.669359]: SOMA.DesignedContainer \n", - "[INFO] [1712351063.669846]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712351063.670336]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351063.670768]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", - "[INFO] [1712351063.671287]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351063.728921]: Instances: []\n", - "[INFO] [1712351063.729543]: Direct Instances: []\n", - "[INFO] [1712351063.729891]: Inverse Restrictions: []\n", - "[INFO] [1712351063.731131]: -------------------\n", - "[INFO] [1712351063.731443]: DUL.PhysicalObject \n", - "[INFO] [1712351063.731735]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351063.732010]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351063.732282]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712351063.732605]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.733387]: Instances: []\n", - "[INFO] [1712351063.733684]: Direct Instances: []\n", - "[INFO] [1712351063.739314]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", - "[INFO] [1712351063.739664]: -------------------\n", - "[INFO] [1712351063.739948]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712351063.740220]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351063.740555]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.740839]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712351063.741157]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.741678]: Instances: []\n", - "[INFO] [1712351063.741961]: Direct Instances: []\n", - "[INFO] [1712351063.742238]: Inverse Restrictions: []\n", - "[INFO] [1712351063.742494]: -------------------\n", - "[INFO] [1712351063.742743]: DUL.PhysicalObject \n", - "[INFO] [1712351063.742995]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351063.743265]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351063.743530]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712351063.743844]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.744590]: Instances: []\n", - "[INFO] [1712351063.745121]: Direct Instances: []\n", - "[INFO] [1712351063.747999]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", - "[INFO] [1712351063.748448]: -------------------\n", - "[INFO] [1712351063.748850]: DUL.PhysicalObject \n", - "[INFO] [1712351063.749239]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351063.749620]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351063.750034]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712351063.750493]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.751352]: Instances: []\n", - "[INFO] [1712351063.751665]: Direct Instances: []\n", - "[INFO] [1712351063.754160]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole]\n", - "[INFO] [1712351063.754483]: -------------------\n", - "[INFO] [1712351063.754753]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712351063.755005]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351063.755263]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.755533]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712351063.755852]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.756375]: Instances: []\n", - "[INFO] [1712351063.756642]: Direct Instances: []\n", - "[INFO] [1712351063.756910]: Inverse Restrictions: []\n", - "[INFO] [1712351063.757952]: -------------------\n", - "[INFO] [1712351063.758250]: SOMA.Affordance \n", - "[INFO] [1712351063.758562]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712351063.758862]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Affordance, DUL.Relation}\n", - "[INFO] [1712351063.759125]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712351063.759431]: Properties: [rdf-schema.comment, SOMA.definesTrigger, SOMA.definesBearer, DUL.definesTask, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351063.759957]: Instances: []\n", - "[INFO] [1712351063.760233]: Direct Instances: []\n", - "[INFO] [1712351063.761370]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712351063.761662]: -------------------\n", - "[INFO] [1712351063.761920]: SOMA.Disposition \n", - "[INFO] [1712351063.763629]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712351063.763967]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351063.764284]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712351063.764611]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.765186]: Instances: []\n", - "[INFO] [1712351063.765463]: Direct Instances: []\n", - "[INFO] [1712351063.765792]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712351063.766050]: -------------------\n", - "[INFO] [1712351063.766296]: SOMA.Setpoint \n", - "[INFO] [1712351063.766538]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712351063.766808]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Setpoint}\n", - "[INFO] [1712351063.767073]: Subclasses: []\n", - "[INFO] [1712351063.767370]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.767867]: Instances: []\n", - "[INFO] [1712351063.768153]: Direct Instances: []\n", - "[INFO] [1712351063.768410]: Inverse Restrictions: []\n", - "[INFO] [1712351063.768659]: -------------------\n", - "[INFO] [1712351063.768998]: SOMA.Answer \n", - "[INFO] [1712351063.769356]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712351063.769714]: Ancestors: {SOMA.Answer, DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.769999]: Subclasses: []\n", - "[INFO] [1712351063.770332]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.770841]: Instances: []\n", - "[INFO] [1712351063.771113]: Direct Instances: []\n", - "[INFO] [1712351063.771785]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712351063.772045]: -------------------\n", - "[INFO] [1712351063.772302]: SOMA.Message \n", - "[INFO] [1712351063.772582]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712351063.772855]: Ancestors: {DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.773116]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712351063.773421]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.773942]: Instances: []\n", - "[INFO] [1712351063.774222]: Direct Instances: []\n", - "[INFO] [1712351063.776003]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351063.776294]: -------------------\n", - "[INFO] [1712351063.776559]: SOMA.ProcessType \n", - "[INFO] [1712351063.776861]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712351063.777149]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.777426]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712351063.777750]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.778324]: Instances: []\n", - "[INFO] [1712351063.778605]: Direct Instances: []\n", - "[INFO] [1712351063.778950]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712351063.779219]: -------------------\n", - "[INFO] [1712351063.779474]: SOMA.OrderedElement \n", - "[INFO] [1712351063.779761]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712351063.781106]: Ancestors: {SOMA.OrderedElement, owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712351063.781415]: Subclasses: []\n", - "[INFO] [1712351063.781733]: Properties: [rdf-schema.label, SOMA.isOrderedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.782237]: Instances: []\n", - "[INFO] [1712351063.782514]: Direct Instances: []\n", - "[INFO] [1712351063.782926]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712351063.783189]: -------------------\n", - "[INFO] [1712351063.783441]: SOMA.System \n", - "[INFO] [1712351063.783683]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712351063.783973]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351063.784259]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712351063.784566]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.785098]: Instances: []\n", - "[INFO] [1712351063.785387]: Direct Instances: []\n", - "[INFO] [1712351063.785657]: Inverse Restrictions: []\n", - "[INFO] [1712351063.785909]: -------------------\n", - "[INFO] [1712351063.786157]: SOMA.Binding \n", - "[INFO] [1712351063.786869]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712351063.787190]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351063.787474]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712351063.787793]: Properties: [rdf-schema.comment, Inverse(SOMA.hasBinding), SOMA.hasBindingFiller, SOMA.hasBindingRole, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351063.788303]: Instances: []\n", - "[INFO] [1712351063.788588]: Direct Instances: []\n", - "[INFO] [1712351063.788867]: Inverse Restrictions: []\n", - "[INFO] [1712351063.789134]: -------------------\n", - "[INFO] [1712351063.789388]: SOMA.Joint \n", - "[INFO] [1712351063.789666]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712351063.790589]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351063.790898]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712351063.791228]: Properties: [SOMA.hasChildLink, SOMA.hasParentLink, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.791758]: Instances: []\n", - "[INFO] [1712351063.792055]: Direct Instances: []\n", - "[INFO] [1712351063.792329]: Inverse Restrictions: []\n", - "[INFO] [1712351063.792578]: -------------------\n", - "[INFO] [1712351063.792834]: SOMA.Color \n", - "[INFO] [1712351063.793222]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712351063.793538]: Ancestors: {SOMA.Extrinsic, SOMA.Color, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351063.793812]: Subclasses: []\n", - "[INFO] [1712351063.794128]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351063.794625]: Instances: []\n", - "[INFO] [1712351063.794906]: Direct Instances: []\n", - "[INFO] [1712351063.795219]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712351063.795471]: -------------------\n", - "[INFO] [1712351063.795720]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712351063.795962]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351063.797053]: Ancestors: {SOMA.ExecutionStateRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351063.797430]: Subclasses: []\n", - "[INFO] [1712351063.797800]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.798345]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712351063.798642]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712351063.798916]: Inverse Restrictions: []\n", - "[INFO] [1712351063.799181]: -------------------\n", - "[INFO] [1712351063.799440]: SOMA.Feature \n", - "[INFO] [1712351063.799725]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712351063.800000]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing}\n", - "[INFO] [1712351063.800260]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712351063.800585]: Properties: [SOMA.isFeatureOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.801548]: Instances: []\n", - "[INFO] [1712351063.802005]: Direct Instances: []\n", - "[INFO] [1712351063.802525]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712351063.802913]: -------------------\n", - "[INFO] [1712351063.803297]: SOMA.FrictionAttribute \n", - "[INFO] [1712351063.803726]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712351063.804179]: Ancestors: {DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", - "[INFO] [1712351063.804581]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712351063.805037]: Properties: [SOMA.hasFrictionValue, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.805597]: Instances: []\n", - "[INFO] [1712351063.805915]: Direct Instances: []\n", - "[INFO] [1712351063.806206]: Inverse Restrictions: []\n", - "[INFO] [1712351063.806473]: -------------------\n", - "[INFO] [1712351063.806725]: SOMA.SituationTransition \n", - "[INFO] [1712351063.806973]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712351063.807263]: Ancestors: {DUL.Transition, DUL.Entity, SOMA.SituationTransition, DUL.Situation, owl.Thing}\n", - "[INFO] [1712351063.807543]: Subclasses: []\n", - "[INFO] [1712351063.807856]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.808361]: Instances: []\n", - "[INFO] [1712351063.808631]: Direct Instances: []\n", - "[INFO] [1712351063.810411]: Inverse Restrictions: []\n", - "[INFO] [1712351063.810702]: -------------------\n", - "[INFO] [1712351063.810962]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712351063.811216]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712351063.812536]: Ancestors: {owl.Thing, DUL.Entity, DUL.Situation, SOMA.NonmanifestedSituation}\n", - "[INFO] [1712351063.812861]: Subclasses: []\n", - "[INFO] [1712351063.813224]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.813797]: Instances: []\n", - "[INFO] [1712351063.814107]: Direct Instances: []\n", - "[INFO] [1712351063.815917]: Inverse Restrictions: []\n", - "[INFO] [1712351063.816280]: -------------------\n", - "[INFO] [1712351063.816647]: SOMA.JointLimit \n", - "[INFO] [1712351063.817028]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712351063.817474]: Ancestors: {SOMA.JointLimit, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351063.817885]: Subclasses: []\n", - "[INFO] [1712351063.818328]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.819026]: Instances: []\n", - "[INFO] [1712351063.819418]: Direct Instances: []\n", - "[INFO] [1712351063.819885]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712351063.820230]: -------------------\n", - "[INFO] [1712351063.820548]: SOMA.JointState \n", - "[INFO] [1712351063.820919]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712351063.821293]: Ancestors: {SOMA.JointState, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351063.821617]: Subclasses: []\n", - "[INFO] [1712351063.821988]: Properties: [SOMA.hasJointPosition, rdf-schema.label, rdf-schema.comment, SOMA.hasJointVelocity, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351063.822581]: Instances: []\n", - "[INFO] [1712351063.822908]: Direct Instances: []\n", - "[INFO] [1712351063.823296]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712351063.823579]: -------------------\n", - "[INFO] [1712351063.823839]: SOMA.Localization \n", - "[INFO] [1712351063.824122]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712351063.824422]: Ancestors: {SOMA.Extrinsic, SOMA.Localization, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351063.824685]: Subclasses: []\n", - "[INFO] [1712351063.825000]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351063.825497]: Instances: []\n", - "[INFO] [1712351063.825776]: Direct Instances: []\n", - "[INFO] [1712351063.827960]: Inverse Restrictions: []\n", - "[INFO] [1712351063.828228]: -------------------\n", - "[INFO] [1712351063.828490]: SOMA.MassAttribute \n", - "[INFO] [1712351063.828770]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712351063.829062]: Ancestors: {SOMA.MassAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351063.829322]: Subclasses: []\n", - "[INFO] [1712351063.829624]: Properties: [rdf-schema.label, SOMA.hasMassValue, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.830138]: Instances: []\n", - "[INFO] [1712351063.830410]: Direct Instances: []\n", - "[INFO] [1712351063.830669]: Inverse Restrictions: []\n", - "[INFO] [1712351063.830923]: -------------------\n", - "[INFO] [1712351063.831163]: SOMA.NetForce \n", - "[INFO] [1712351063.831404]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712351063.831699]: Ancestors: {SOMA.ForceAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing, SOMA.NetForce}\n", - "[INFO] [1712351063.831961]: Subclasses: []\n", - "[INFO] [1712351063.832257]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.832749]: Instances: []\n", - "[INFO] [1712351063.833032]: Direct Instances: []\n", - "[INFO] [1712351063.833297]: Inverse Restrictions: []\n", - "[INFO] [1712351063.833546]: -------------------\n", - "[INFO] [1712351063.833789]: SOMA.Succedence \n", - "[INFO] [1712351063.834077]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712351063.834374]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Succedence, DUL.Relation}\n", - "[INFO] [1712351063.834646]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712351063.834961]: Properties: [SOMA.hasSuccessor, rdf-schema.comment, SOMA.hasPredecessor, Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy]\n", - "[INFO] [1712351063.835462]: Instances: []\n", - "[INFO] [1712351063.835747]: Direct Instances: []\n", - "[INFO] [1712351063.836017]: Inverse Restrictions: []\n", - "[INFO] [1712351063.836267]: -------------------\n", - "[INFO] [1712351063.836514]: SOMA.Preference \n", - "[INFO] [1712351063.836774]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712351063.837097]: Ancestors: {SOMA.SocialQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Preference}\n", - "[INFO] [1712351063.837367]: Subclasses: []\n", - "[INFO] [1712351063.837672]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.838160]: Instances: []\n", - "[INFO] [1712351063.838443]: Direct Instances: []\n", - "[INFO] [1712351063.839556]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712351063.839828]: -------------------\n", - "[INFO] [1712351063.840096]: SOMA.Shape \n", - "[INFO] [1712351063.840380]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712351063.840669]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Shape, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351063.840961]: Subclasses: []\n", - "[INFO] [1712351063.841343]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351063.841891]: Instances: []\n", - "[INFO] [1712351063.842200]: Direct Instances: []\n", - "[INFO] [1712351063.844412]: Inverse Restrictions: []\n", - "[INFO] [1712351063.844701]: -------------------\n", - "[INFO] [1712351063.844981]: SOMA.ShapeRegion \n", - "[INFO] [1712351063.845262]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712351063.845546]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351063.845841]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712351063.846159]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.846696]: Instances: []\n", - "[INFO] [1712351063.847023]: Direct Instances: []\n", - "[INFO] [1712351063.847772]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712351063.848045]: -------------------\n", - "[INFO] [1712351063.848298]: SOMA.SoftwareInstance \n", - "[INFO] [1712351063.848956]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712351063.849329]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", - "[INFO] [1712351063.849628]: Subclasses: []\n", - "[INFO] [1712351063.849952]: Properties: [rdf-schema.label, SOMA.isDesignedBy, rdf-schema.comment, DUL.actsFor, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351063.850456]: Instances: []\n", - "[INFO] [1712351063.850818]: Direct Instances: []\n", - "[INFO] [1712351063.851571]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712351063.851878]: -------------------\n", - "[INFO] [1712351063.852154]: SOMA.StateType \n", - "[INFO] [1712351063.852445]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712351063.852730]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.853112]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712351063.853452]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.853978]: Instances: []\n", - "[INFO] [1712351063.854253]: Direct Instances: []\n", - "[INFO] [1712351063.854599]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712351063.854872]: -------------------\n", - "[INFO] [1712351063.855134]: SOMA.PhysicalEffector \n", - "[INFO] [1712351063.855404]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712351063.855695]: Ancestors: {SOMA.PhysicalEffector, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351063.855966]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712351063.856282]: Properties: [rdf-schema.label, Inverse(DUL.hasPart), rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.856805]: Instances: []\n", - "[INFO] [1712351063.857090]: Direct Instances: []\n", - "[INFO] [1712351063.857362]: Inverse Restrictions: []\n", - "[INFO] [1712351063.857611]: -------------------\n", - "[INFO] [1712351063.857866]: SOMA.QueryingTask \n", - "[INFO] [1712351063.858527]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712351063.858816]: Ancestors: {SOMA.QueryingTask, owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712351063.859072]: Subclasses: []\n", - "[INFO] [1712351063.859368]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.859874]: Instances: []\n", - "[INFO] [1712351063.860148]: Direct Instances: []\n", - "[INFO] [1712351063.861571]: Inverse Restrictions: []\n", - "[INFO] [1712351063.861851]: -------------------\n", - "[INFO] [1712351063.862110]: SOMA.Order \n", - "[INFO] [1712351063.862374]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712351063.862659]: Ancestors: {DUL.FormalEntity, SOMA.Order, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351063.862913]: Subclasses: []\n", - "[INFO] [1712351063.863214]: Properties: [rdf-schema.label, SOMA.orders, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351063.863729]: Instances: []\n", - "[INFO] [1712351063.864004]: Direct Instances: []\n", - "[INFO] [1712351063.864365]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712351063.864616]: -------------------\n", - "[INFO] [1712351063.864927]: SOMA.State \n", - "[INFO] [1712351063.865227]: Super classes: [DUL.Event]\n", - "[INFO] [1712351063.865529]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing}\n", - "[INFO] [1712351063.865811]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712351063.866117]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.866618]: Instances: []\n", - "[INFO] [1712351063.866904]: Direct Instances: []\n", - "[INFO] [1712351063.867437]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712351063.867699]: -------------------\n", - "[INFO] [1712351063.867948]: SOMA.Transient \n", - "[INFO] [1712351063.868213]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712351063.868499]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, SOMA.Transient}\n", - "[INFO] [1712351063.868758]: Subclasses: []\n", - "[INFO] [1712351063.869064]: Properties: [SOMA.transitionsFrom, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.869899]: Instances: []\n", - "[INFO] [1712351063.870213]: Direct Instances: []\n", - "[INFO] [1712351063.870484]: Inverse Restrictions: []\n", - "[INFO] [1712351063.870759]: -------------------\n", - "[INFO] [1712351063.871019]: SOMA.ColorRegion \n", - "[INFO] [1712351063.871281]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712351063.871562]: Ancestors: {SOMA.ColorRegion, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351063.871860]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712351063.872188]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.872696]: Instances: []\n", - "[INFO] [1712351063.872980]: Direct Instances: []\n", - "[INFO] [1712351063.873328]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712351063.873594]: -------------------\n", - "[INFO] [1712351063.873847]: SOMA.ForceAttribute \n", - "[INFO] [1712351063.874201]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712351063.874491]: Ancestors: {SOMA.ForceAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351063.874768]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712351063.875085]: Properties: [rdf-schema.label, SOMA.hasForceValue, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.875585]: Instances: []\n", - "[INFO] [1712351063.875859]: Direct Instances: []\n", - "[INFO] [1712351063.876130]: Inverse Restrictions: []\n", - "[INFO] [1712351063.876382]: -------------------\n", - "[INFO] [1712351063.876628]: SOMA.API_Specification \n", - "[INFO] [1712351063.876883]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712351063.877175]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification}\n", - "[INFO] [1712351063.877461]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712351063.877784]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.878291]: Instances: []\n", - "[INFO] [1712351063.878560]: Direct Instances: []\n", - "[INFO] [1712351063.878839]: Inverse Restrictions: []\n", - "[INFO] [1712351063.879099]: -------------------\n", - "[INFO] [1712351063.879348]: SOMA.InterfaceSpecification \n", - "[INFO] [1712351063.879602]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712351063.879895]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.InterfaceSpecification}\n", - "[INFO] [1712351063.880179]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712351063.880492]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.881000]: Instances: []\n", - "[INFO] [1712351063.881287]: Direct Instances: []\n", - "[INFO] [1712351063.882366]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712351063.882650]: -------------------\n", - "[INFO] [1712351063.882909]: SOMA.AbductiveReasoning \n", - "[INFO] [1712351063.883171]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712351063.884432]: Ancestors: {SOMA.AbductiveReasoning, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351063.884737]: Subclasses: []\n", - "[INFO] [1712351063.885073]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.885591]: Instances: []\n", - "[INFO] [1712351063.885866]: Direct Instances: []\n", - "[INFO] [1712351063.886126]: Inverse Restrictions: []\n", - "[INFO] [1712351063.886374]: -------------------\n", - "[INFO] [1712351063.886617]: SOMA.Reasoning \n", - "[INFO] [1712351063.886884]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351063.887147]: Ancestors: {SOMA.Reasoning, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712351063.887420]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712351063.887723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.888235]: Instances: []\n", - "[INFO] [1712351063.888512]: Direct Instances: []\n", - "[INFO] [1712351063.888781]: Inverse Restrictions: []\n", - "[INFO] [1712351063.889035]: -------------------\n", - "[INFO] [1712351063.889282]: SOMA.Accessor \n", - "[INFO] [1712351063.889527]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712351063.889833]: Ancestors: {SOMA.Accessor, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.890100]: Subclasses: []\n", - "[INFO] [1712351063.890405]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.890900]: Instances: []\n", - "[INFO] [1712351063.891191]: Direct Instances: []\n", - "[INFO] [1712351063.891476]: Inverse Restrictions: []\n", - "[INFO] [1712351063.891744]: -------------------\n", - "[INFO] [1712351063.891994]: SOMA.Instrument \n", - "[INFO] [1712351063.892245]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712351063.892524]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.892815]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712351063.893134]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.893657]: Instances: []\n", - "[INFO] [1712351063.893946]: Direct Instances: []\n", - "[INFO] [1712351063.894369]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351063.894649]: -------------------\n", - "[INFO] [1712351063.894916]: SOMA.Accident \n", - "[INFO] [1712351063.895175]: Super classes: [DUL.Event]\n", - "[INFO] [1712351063.895447]: Ancestors: {DUL.Entity, DUL.Event, SOMA.Accident, owl.Thing}\n", - "[INFO] [1712351063.895705]: Subclasses: []\n", - "[INFO] [1712351063.896015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.896591]: Instances: []\n", - "[INFO] [1712351063.896886]: Direct Instances: []\n", - "[INFO] [1712351063.897162]: Inverse Restrictions: []\n", - "[INFO] [1712351063.897418]: -------------------\n", - "[INFO] [1712351063.897665]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712351063.898121]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712351063.898423]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ActionExecutionPlan, owl.Thing, DUL.Plan}\n", - "[INFO] [1712351063.898687]: Subclasses: []\n", - "[INFO] [1712351063.898990]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.899505]: Instances: []\n", - "[INFO] [1712351063.899794]: Direct Instances: []\n", - "[INFO] [1712351063.900061]: Inverse Restrictions: []\n", - "[INFO] [1712351063.900317]: -------------------\n", - "[INFO] [1712351063.900565]: SOMA.Actuating \n", - "[INFO] [1712351063.900823]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351063.901119]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.901421]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712351063.901735]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.902274]: Instances: []\n", - "[INFO] [1712351063.902565]: Direct Instances: []\n", - "[INFO] [1712351063.902846]: Inverse Restrictions: []\n", - "[INFO] [1712351063.903110]: -------------------\n", - "[INFO] [1712351063.903365]: SOMA.PhysicalTask \n", - "[INFO] [1712351063.904741]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712351063.905068]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.905371]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712351063.905692]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.906309]: Instances: []\n", - "[INFO] [1712351063.906605]: Direct Instances: []\n", - "[INFO] [1712351063.906959]: Inverse Restrictions: []\n", - "[INFO] [1712351063.907237]: -------------------\n", - "[INFO] [1712351063.907499]: SOMA.AestheticDesign \n", - "[INFO] [1712351063.907757]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712351063.908035]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.AestheticDesign}\n", - "[INFO] [1712351063.908292]: Subclasses: []\n", - "[INFO] [1712351063.908589]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.909105]: Instances: []\n", - "[INFO] [1712351063.909388]: Direct Instances: []\n", - "[INFO] [1712351063.909660]: Inverse Restrictions: []\n", - "[INFO] [1712351063.909914]: -------------------\n", - "[INFO] [1712351063.910163]: SOMA.AffordsBeingSitOn \n", - "[INFO] [1712351063.911065]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", - "[INFO] [1712351063.911360]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Affordance, DUL.Relation, SOMA.AffordsBeingSitOn}\n", - "[INFO] [1712351063.911628]: Subclasses: []\n", - "[INFO] [1712351063.911933]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.912443]: Instances: []\n", - "[INFO] [1712351063.912723]: Direct Instances: []\n", - "[INFO] [1712351063.913182]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", - "[INFO] [1712351063.913604]: -------------------\n", - "[INFO] [1712351063.913918]: SOMA.CanBeSatOn \n", - "[INFO] [1712351063.914199]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", - "[INFO] [1712351063.914505]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.CanBeSatOn, SOMA.Deposition, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351063.914849]: Subclasses: []\n", - "[INFO] [1712351063.915215]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.915740]: Instances: []\n", - "[INFO] [1712351063.916022]: Direct Instances: []\n", - "[INFO] [1712351063.916581]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712351063.916867]: -------------------\n", - "[INFO] [1712351063.917150]: SOMA.SittingDestination \n", - "[INFO] [1712351063.917434]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", - "[INFO] [1712351063.917752]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, SOMA.SittingDestination, DUL.Object, SOMA.Destination, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.918020]: Subclasses: []\n", - "[INFO] [1712351063.918325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.918838]: Instances: []\n", - "[INFO] [1712351063.919122]: Direct Instances: []\n", - "[INFO] [1712351063.919430]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712351063.919691]: -------------------\n", - "[INFO] [1712351063.919948]: SOMA.CanSit \n", - "[INFO] [1712351063.920214]: Super classes: [SOMA.Capability]\n", - "[INFO] [1712351063.920585]: Ancestors: {SOMA.CanSit, SOMA.Extrinsic, SOMA.Capability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351063.921040]: Subclasses: []\n", - "[INFO] [1712351063.921520]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.922195]: Instances: []\n", - "[INFO] [1712351063.922654]: Direct Instances: []\n", - "[INFO] [1712351063.923140]: Inverse Restrictions: []\n", - "[INFO] [1712351063.923573]: -------------------\n", - "[INFO] [1712351063.924000]: SOMA.AgentRole \n", - "[INFO] [1712351063.924392]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712351063.924816]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.AgentRole, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351063.925194]: Subclasses: []\n", - "[INFO] [1712351063.925606]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.926206]: Instances: []\n", - "[INFO] [1712351063.926590]: Direct Instances: []\n", - "[INFO] [1712351063.926982]: Inverse Restrictions: []\n", - "[INFO] [1712351063.927332]: -------------------\n", - "[INFO] [1712351063.927679]: SOMA.Sitting \n", - "[INFO] [1712351063.928018]: Super classes: [SOMA.AssumingPose]\n", - "[INFO] [1712351063.928405]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.Sitting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.928780]: Subclasses: []\n", - "[INFO] [1712351063.929181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.929775]: Instances: []\n", - "[INFO] [1712351063.930131]: Direct Instances: []\n", - "[INFO] [1712351063.930512]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712351063.930875]: -------------------\n", - "[INFO] [1712351063.931234]: SOMA.CausativeRole \n", - "[INFO] [1712351063.931595]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351063.931980]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351063.932382]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712351063.932864]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.933620]: Instances: []\n", - "[INFO] [1712351063.934092]: Direct Instances: []\n", - "[INFO] [1712351063.934543]: Inverse Restrictions: []\n", - "[INFO] [1712351063.934973]: -------------------\n", - "[INFO] [1712351063.935384]: SOMA.Agonist \n", - "[INFO] [1712351063.935800]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351063.936262]: Ancestors: {DUL.SocialObject, SOMA.Agonist, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.936692]: Subclasses: []\n", - "[INFO] [1712351063.937172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.937883]: Instances: []\n", - "[INFO] [1712351063.938323]: Direct Instances: []\n", - "[INFO] [1712351063.938786]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712351063.939200]: -------------------\n", - "[INFO] [1712351063.939599]: SOMA.Patient \n", - "[INFO] [1712351063.940007]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351063.940427]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.940923]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712351063.941454]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.942202]: Instances: []\n", - "[INFO] [1712351063.942632]: Direct Instances: []\n", - "[INFO] [1712351063.943271]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351063.943708]: -------------------\n", - "[INFO] [1712351063.944136]: SOMA.Algorithm \n", - "[INFO] [1712351063.944597]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712351063.945138]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Algorithm, DUL.Object, DUL.Entity, owl.Thing, DUL.Plan}\n", - "[INFO] [1712351063.945575]: Subclasses: []\n", - "[INFO] [1712351063.946043]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.946882]: Instances: []\n", - "[INFO] [1712351063.947343]: Direct Instances: []\n", - "[INFO] [1712351063.949078]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712351063.949739]: -------------------\n", - "[INFO] [1712351063.950279]: SOMA.Alteration \n", - "[INFO] [1712351063.950663]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712351063.951052]: Ancestors: {SOMA.Alteration, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.951432]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712351063.951866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.952540]: Instances: []\n", - "[INFO] [1712351063.952893]: Direct Instances: []\n", - "[INFO] [1712351063.953225]: Inverse Restrictions: []\n", - "[INFO] [1712351063.953554]: -------------------\n", - "[INFO] [1712351063.953859]: SOMA.AlterativeInteraction \n", - "[INFO] [1712351063.954159]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712351063.955177]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.AlterativeInteraction, DUL.EventType, SOMA.ForceInteraction}\n", - "[INFO] [1712351063.955517]: Subclasses: []\n", - "[INFO] [1712351063.955876]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.956405]: Instances: []\n", - "[INFO] [1712351063.956677]: Direct Instances: []\n", - "[INFO] [1712351063.956980]: Inverse Restrictions: []\n", - "[INFO] [1712351063.957230]: -------------------\n", - "[INFO] [1712351063.957477]: SOMA.ForceInteraction \n", - "[INFO] [1712351063.957746]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712351063.958025]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, SOMA.ForceInteraction}\n", - "[INFO] [1712351063.958293]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712351063.958624]: Properties: [rdf-schema.label, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712351063.959128]: Instances: []\n", - "[INFO] [1712351063.959404]: Direct Instances: []\n", - "[INFO] [1712351063.959665]: Inverse Restrictions: []\n", - "[INFO] [1712351063.959925]: -------------------\n", - "[INFO] [1712351063.960167]: SOMA.PreservativeInteraction \n", - "[INFO] [1712351063.960406]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712351063.960676]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.PreservativeInteraction, DUL.Concept, DUL.EventType, SOMA.ForceInteraction}\n", - "[INFO] [1712351063.960956]: Subclasses: []\n", - "[INFO] [1712351063.961262]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.961762]: Instances: []\n", - "[INFO] [1712351063.962049]: Direct Instances: []\n", - "[INFO] [1712351063.962348]: Inverse Restrictions: []\n", - "[INFO] [1712351063.962602]: -------------------\n", - "[INFO] [1712351063.962853]: SOMA.AlteredObject \n", - "[INFO] [1712351063.963113]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351063.963382]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.963655]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712351063.963953]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.964477]: Instances: []\n", - "[INFO] [1712351063.964757]: Direct Instances: []\n", - "[INFO] [1712351063.965508]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712351063.965788]: -------------------\n", - "[INFO] [1712351063.966042]: SOMA.Amateurish \n", - "[INFO] [1712351063.966300]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712351063.966597]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351063.966862]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712351063.967165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.967672]: Instances: []\n", - "[INFO] [1712351063.967953]: Direct Instances: []\n", - "[INFO] [1712351063.968213]: Inverse Restrictions: []\n", - "[INFO] [1712351063.968453]: -------------------\n", - "[INFO] [1712351063.968686]: SOMA.AnsweringTask \n", - "[INFO] [1712351063.968929]: Super classes: [owl.Thing]\n", - "[INFO] [1712351063.971402]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", - "[INFO] [1712351063.971702]: Subclasses: []\n", - "[INFO] [1712351063.972039]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.972556]: Instances: []\n", - "[INFO] [1712351063.972844]: Direct Instances: []\n", - "[INFO] [1712351063.973151]: Inverse Restrictions: []\n", - "[INFO] [1712351063.973411]: -------------------\n", - "[INFO] [1712351063.973667]: SOMA.CommandingTask \n", - "[INFO] [1712351063.974317]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712351063.974613]: Ancestors: {SOMA.CommandingTask, owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712351063.974877]: Subclasses: []\n", - "[INFO] [1712351063.975184]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.975696]: Instances: []\n", - "[INFO] [1712351063.975980]: Direct Instances: []\n", - "[INFO] [1712351063.976321]: Inverse Restrictions: []\n", - "[INFO] [1712351063.976570]: -------------------\n", - "[INFO] [1712351063.976818]: SOMA.IllocutionaryTask \n", - "[INFO] [1712351063.978206]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712351063.978488]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712351063.978758]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712351063.979069]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.979609]: Instances: []\n", - "[INFO] [1712351063.979968]: Direct Instances: []\n", - "[INFO] [1712351063.980285]: Inverse Restrictions: []\n", - "[INFO] [1712351063.980539]: -------------------\n", - "[INFO] [1712351063.980793]: SOMA.Antagonist \n", - "[INFO] [1712351063.981041]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351063.981328]: Ancestors: {DUL.SocialObject, SOMA.Antagonist, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351063.981593]: Subclasses: []\n", - "[INFO] [1712351063.981888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.982378]: Instances: []\n", - "[INFO] [1712351063.982673]: Direct Instances: []\n", - "[INFO] [1712351063.983006]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712351063.983268]: -------------------\n", - "[INFO] [1712351063.983523]: SOMA.Appliance \n", - "[INFO] [1712351063.983806]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712351063.984096]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351063.984392]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712351063.984746]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.985271]: Instances: []\n", - "[INFO] [1712351063.985569]: Direct Instances: []\n", - "[INFO] [1712351063.985844]: Inverse Restrictions: []\n", - "[INFO] [1712351063.986100]: -------------------\n", - "[INFO] [1712351063.986353]: SOMA.Approaching \n", - "[INFO] [1712351063.986617]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351063.986933]: Ancestors: {SOMA.Approaching, DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.987200]: Subclasses: []\n", - "[INFO] [1712351063.987509]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.988027]: Instances: []\n", - "[INFO] [1712351063.988308]: Direct Instances: []\n", - "[INFO] [1712351063.988576]: Inverse Restrictions: []\n", - "[INFO] [1712351063.988833]: -------------------\n", - "[INFO] [1712351063.989079]: SOMA.Locomotion \n", - "[INFO] [1712351063.989330]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712351063.989606]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351063.989883]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712351063.990197]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.990713]: Instances: []\n", - "[INFO] [1712351063.990999]: Direct Instances: []\n", - "[INFO] [1712351063.991315]: Inverse Restrictions: []\n", - "[INFO] [1712351063.991588]: -------------------\n", - "[INFO] [1712351063.991844]: SOMA.ArchiveFile \n", - "[INFO] [1712351063.992094]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712351063.993342]: Ancestors: {SOMA.ArchiveFile, DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", - "[INFO] [1712351063.993654]: Subclasses: []\n", - "[INFO] [1712351063.993988]: Properties: [rdf-schema.label, DUL.realizes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351063.994496]: Instances: []\n", - "[INFO] [1712351063.994771]: Direct Instances: []\n", - "[INFO] [1712351063.995047]: Inverse Restrictions: []\n", - "[INFO] [1712351063.995317]: -------------------\n", - "[INFO] [1712351063.995572]: SOMA.ArchiveText \n", - "[INFO] [1712351063.995825]: Super classes: [owl.Thing]\n", - "[INFO] [1712351063.997656]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", - "[INFO] [1712351063.998003]: Subclasses: []\n", - "[INFO] [1712351063.998340]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.expresses, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351063.998865]: Instances: []\n", - "[INFO] [1712351063.999153]: Direct Instances: []\n", - "[INFO] [1712351063.999523]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712351063.999789]: -------------------\n", - "[INFO] [1712351064.000053]: SOMA.Digital_File \n", - "[INFO] [1712351064.000333]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712351064.000618]: Ancestors: {DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", - "[INFO] [1712351064.000903]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712351064.001323]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.realizes, SOMA.hasNameString, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.001871]: Instances: []\n", - "[INFO] [1712351064.002156]: Direct Instances: []\n", - "[INFO] [1712351064.004721]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712351064.005082]: -------------------\n", - "[INFO] [1712351064.005359]: SOMA.ArchiveFormat \n", - "[INFO] [1712351064.005628]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712351064.005949]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.ArchiveFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.006216]: Subclasses: []\n", - "[INFO] [1712351064.006531]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.007060]: Instances: []\n", - "[INFO] [1712351064.007347]: Direct Instances: []\n", - "[INFO] [1712351064.007650]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712351064.007913]: -------------------\n", - "[INFO] [1712351064.008164]: SOMA.File_format \n", - "[INFO] [1712351064.008427]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351064.008694]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.008965]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712351064.009272]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.009785]: Instances: []\n", - "[INFO] [1712351064.010077]: Direct Instances: []\n", - "[INFO] [1712351064.010351]: Inverse Restrictions: []\n", - "[INFO] [1712351064.010605]: -------------------\n", - "[INFO] [1712351064.010855]: SOMA.FileConfiguration \n", - "[INFO] [1712351064.011102]: Super classes: [owl.Thing]\n", - "[INFO] [1712351064.012308]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", - "[INFO] [1712351064.012631]: Subclasses: []\n", - "[INFO] [1712351064.012973]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.013514]: Instances: []\n", - "[INFO] [1712351064.013812]: Direct Instances: []\n", - "[INFO] [1712351064.014141]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712351064.014405]: -------------------\n", - "[INFO] [1712351064.014656]: SOMA.Structured_Text \n", - "[INFO] [1712351064.014906]: Super classes: [owl.Thing]\n", - "[INFO] [1712351064.016129]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", - "[INFO] [1712351064.016458]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712351064.016794]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.017315]: Instances: []\n", - "[INFO] [1712351064.017595]: Direct Instances: []\n", - "[INFO] [1712351064.020218]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712351064.020509]: -------------------\n", - "[INFO] [1712351064.020778]: SOMA.AreaSurveying \n", - "[INFO] [1712351064.021053]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712351064.021344]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", - "[INFO] [1712351064.021610]: Subclasses: []\n", - "[INFO] [1712351064.021915]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.022410]: Instances: []\n", - "[INFO] [1712351064.022697]: Direct Instances: []\n", - "[INFO] [1712351064.022971]: Inverse Restrictions: []\n", - "[INFO] [1712351064.023234]: -------------------\n", - "[INFO] [1712351064.023490]: SOMA.Perceiving \n", - "[INFO] [1712351064.023747]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712351064.024006]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712351064.024283]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712351064.024595]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.025110]: Instances: []\n", - "[INFO] [1712351064.025413]: Direct Instances: []\n", - "[INFO] [1712351064.025692]: Inverse Restrictions: []\n", - "[INFO] [1712351064.025950]: -------------------\n", - "[INFO] [1712351064.026203]: SOMA.Arm \n", - "[INFO] [1712351064.026452]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712351064.027333]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Arm, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712351064.027629]: Subclasses: []\n", - "[INFO] [1712351064.027944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.028470]: Instances: []\n", - "[INFO] [1712351064.028749]: Direct Instances: []\n", - "[INFO] [1712351064.029058]: Inverse Restrictions: []\n", - "[INFO] [1712351064.029334]: -------------------\n", - "[INFO] [1712351064.029619]: SOMA.Limb \n", - "[INFO] [1712351064.029914]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712351064.030189]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712351064.030458]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712351064.030790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.031320]: Instances: []\n", - "[INFO] [1712351064.031598]: Direct Instances: []\n", - "[INFO] [1712351064.032287]: Inverse Restrictions: []\n", - "[INFO] [1712351064.032574]: -------------------\n", - "[INFO] [1712351064.032847]: SOMA.Armchair \n", - "[INFO] [1712351064.033105]: Super classes: [SOMA.DesignedChair]\n", - "[INFO] [1712351064.033406]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Armchair, SOMA.DesignedFurniture, SOMA.DesignedChair, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.033674]: Subclasses: []\n", - "[INFO] [1712351064.033990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.034491]: Instances: []\n", - "[INFO] [1712351064.034773]: Direct Instances: []\n", - "[INFO] [1712351064.035031]: Inverse Restrictions: []\n", - "[INFO] [1712351064.035295]: -------------------\n", - "[INFO] [1712351064.035549]: SOMA.DesignedChair \n", - "[INFO] [1712351064.035799]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712351064.036053]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, SOMA.DesignedChair, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.036316]: Subclasses: [SOMA.Armchair]\n", - "[INFO] [1712351064.036638]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.037152]: Instances: []\n", - "[INFO] [1712351064.037427]: Direct Instances: []\n", - "[INFO] [1712351064.037689]: Inverse Restrictions: []\n", - "[INFO] [1712351064.037942]: -------------------\n", - "[INFO] [1712351064.038205]: SOMA.Arranging \n", - "[INFO] [1712351064.038460]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712351064.038751]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Arranging, owl.Thing}\n", - "[INFO] [1712351064.039017]: Subclasses: []\n", - "[INFO] [1712351064.039318]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.039835]: Instances: []\n", - "[INFO] [1712351064.040118]: Direct Instances: []\n", - "[INFO] [1712351064.040387]: Inverse Restrictions: []\n", - "[INFO] [1712351064.040640]: -------------------\n", - "[INFO] [1712351064.040896]: SOMA.Constructing \n", - "[INFO] [1712351064.041193]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351064.041479]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.041753]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712351064.042068]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.042593]: Instances: []\n", - "[INFO] [1712351064.042871]: Direct Instances: []\n", - "[INFO] [1712351064.043140]: Inverse Restrictions: []\n", - "[INFO] [1712351064.043399]: -------------------\n", - "[INFO] [1712351064.043649]: SOMA.ArtificialAgent \n", - "[INFO] [1712351064.043899]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712351064.044201]: Ancestors: {DUL.Object, DUL.Entity, SOMA.ArtificialAgent, DUL.Agent, DUL.PhysicalAgent, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.044474]: Subclasses: []\n", - "[INFO] [1712351064.044787]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.045296]: Instances: []\n", - "[INFO] [1712351064.045590]: Direct Instances: []\n", - "[INFO] [1712351064.045863]: Inverse Restrictions: []\n", - "[INFO] [1712351064.046119]: -------------------\n", - "[INFO] [1712351064.046408]: SOMA.Assembling \n", - "[INFO] [1712351064.046672]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712351064.046963]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.Assembling, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.047266]: Subclasses: []\n", - "[INFO] [1712351064.047589]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.048083]: Instances: []\n", - "[INFO] [1712351064.048347]: Direct Instances: []\n", - "[INFO] [1712351064.048601]: Inverse Restrictions: []\n", - "[INFO] [1712351064.048858]: -------------------\n", - "[INFO] [1712351064.049123]: SOMA.AssertionTask \n", - "[INFO] [1712351064.049771]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712351064.050059]: Ancestors: {SOMA.AssertionTask, owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712351064.050319]: Subclasses: []\n", - "[INFO] [1712351064.050626]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.051137]: Instances: []\n", - "[INFO] [1712351064.051410]: Direct Instances: []\n", - "[INFO] [1712351064.051672]: Inverse Restrictions: []\n", - "[INFO] [1712351064.051925]: -------------------\n", - "[INFO] [1712351064.052183]: SOMA.DeclarativeClause \n", - "[INFO] [1712351064.052446]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712351064.052754]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing, SOMA.DeclarativeClause}\n", - "[INFO] [1712351064.053027]: Subclasses: []\n", - "[INFO] [1712351064.053341]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.053864]: Instances: []\n", - "[INFO] [1712351064.054149]: Direct Instances: []\n", - "[INFO] [1712351064.054456]: Inverse Restrictions: []\n", - "[INFO] [1712351064.054723]: -------------------\n", - "[INFO] [1712351064.054981]: SOMA.AssumingArmPose \n", - "[INFO] [1712351064.055242]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712351064.055525]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.AssumingArmPose, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.055790]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712351064.056104]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.056614]: Instances: []\n", - "[INFO] [1712351064.056894]: Direct Instances: []\n", - "[INFO] [1712351064.057167]: Inverse Restrictions: []\n", - "[INFO] [1712351064.057420]: -------------------\n", - "[INFO] [1712351064.057683]: SOMA.AssumingPose \n", - "[INFO] [1712351064.057940]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351064.058209]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.058479]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712351064.058781]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.059307]: Instances: []\n", - "[INFO] [1712351064.059592]: Direct Instances: []\n", - "[INFO] [1712351064.059865]: Inverse Restrictions: []\n", - "[INFO] [1712351064.060120]: -------------------\n", - "[INFO] [1712351064.060371]: SOMA.AttentionShift \n", - "[INFO] [1712351064.060637]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712351064.060957]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AttentionShift, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.061231]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712351064.061551]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.062070]: Instances: []\n", - "[INFO] [1712351064.062366]: Direct Instances: []\n", - "[INFO] [1712351064.062651]: Inverse Restrictions: []\n", - "[INFO] [1712351064.062906]: -------------------\n", - "[INFO] [1712351064.063175]: SOMA.MentalTask \n", - "[INFO] [1712351064.063450]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712351064.063736]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.064019]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712351064.064335]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.064861]: Instances: []\n", - "[INFO] [1712351064.065168]: Direct Instances: []\n", - "[INFO] [1712351064.065489]: Inverse Restrictions: []\n", - "[INFO] [1712351064.065751]: -------------------\n", - "[INFO] [1712351064.066006]: SOMA.AvoidedObject \n", - "[INFO] [1712351064.066269]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.066580]: Ancestors: {DUL.SocialObject, SOMA.AvoidedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.066853]: Subclasses: []\n", - "[INFO] [1712351064.067167]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.067681]: Instances: []\n", - "[INFO] [1712351064.067962]: Direct Instances: []\n", - "[INFO] [1712351064.068225]: Inverse Restrictions: []\n", - "[INFO] [1712351064.068483]: -------------------\n", - "[INFO] [1712351064.068735]: SOMA.Avoiding \n", - "[INFO] [1712351064.068998]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712351064.069293]: Ancestors: {SOMA.Avoiding, DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.069560]: Subclasses: []\n", - "[INFO] [1712351064.069866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.070360]: Instances: []\n", - "[INFO] [1712351064.070645]: Direct Instances: []\n", - "[INFO] [1712351064.070915]: Inverse Restrictions: []\n", - "[INFO] [1712351064.071325]: -------------------\n", - "[INFO] [1712351064.071675]: SOMA.Navigating \n", - "[INFO] [1712351064.071941]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351064.072209]: Ancestors: {DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.072505]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712351064.072823]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.073335]: Instances: []\n", - "[INFO] [1712351064.073606]: Direct Instances: []\n", - "[INFO] [1712351064.073877]: Inverse Restrictions: []\n", - "[INFO] [1712351064.074140]: -------------------\n", - "[INFO] [1712351064.074395]: SOMA.BakedGood \n", - "[INFO] [1712351064.074648]: Super classes: [SOMA.Dish]\n", - "[INFO] [1712351064.074933]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Dish, SOMA.BakedGood, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.075196]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", - "[INFO] [1712351064.075511]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.076021]: Instances: []\n", - "[INFO] [1712351064.076308]: Direct Instances: []\n", - "[INFO] [1712351064.076585]: Inverse Restrictions: []\n", - "[INFO] [1712351064.076859]: -------------------\n", - "[INFO] [1712351064.077134]: SOMA.Dish \n", - "[INFO] [1712351064.077398]: Super classes: [DUL.DesignedArtifact]\n", - "[INFO] [1712351064.077670]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Dish, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.077947]: Subclasses: [SOMA.BakedGood]\n", - "[INFO] [1712351064.078263]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.078760]: Instances: []\n", - "[INFO] [1712351064.079054]: Direct Instances: []\n", - "[INFO] [1712351064.079327]: Inverse Restrictions: []\n", - "[INFO] [1712351064.079584]: -------------------\n", - "[INFO] [1712351064.079860]: SOMA.Barrier \n", - "[INFO] [1712351064.080117]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712351064.080415]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.080701]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712351064.081141]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.081718]: Instances: []\n", - "[INFO] [1712351064.082034]: Direct Instances: []\n", - "[INFO] [1712351064.082381]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712351064.082673]: -------------------\n", - "[INFO] [1712351064.082953]: SOMA.Restrictor \n", - "[INFO] [1712351064.083245]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712351064.083518]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.083789]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712351064.084092]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.084664]: Instances: []\n", - "[INFO] [1712351064.084975]: Direct Instances: []\n", - "[INFO] [1712351064.085372]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712351064.085646]: -------------------\n", - "[INFO] [1712351064.085918]: SOMA.BedsideTable \n", - "[INFO] [1712351064.086176]: Super classes: [SOMA.Table]\n", - "[INFO] [1712351064.086466]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.BedsideTable, SOMA.DesignedFurniture, SOMA.Table, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.086729]: Subclasses: []\n", - "[INFO] [1712351064.087026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.087540]: Instances: []\n", - "[INFO] [1712351064.087816]: Direct Instances: []\n", - "[INFO] [1712351064.088085]: Inverse Restrictions: []\n", - "[INFO] [1712351064.088337]: -------------------\n", - "[INFO] [1712351064.088584]: SOMA.Table \n", - "[INFO] [1712351064.088837]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712351064.089105]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, SOMA.Table, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.089376]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", - "[INFO] [1712351064.089673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.090191]: Instances: []\n", - "[INFO] [1712351064.090460]: Direct Instances: []\n", - "[INFO] [1712351064.090722]: Inverse Restrictions: []\n", - "[INFO] [1712351064.090982]: -------------------\n", - "[INFO] [1712351064.091245]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712351064.091513]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712351064.091775]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.092033]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712351064.092330]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.092876]: Instances: []\n", - "[INFO] [1712351064.093160]: Direct Instances: []\n", - "[INFO] [1712351064.093429]: Inverse Restrictions: []\n", - "[INFO] [1712351064.093682]: -------------------\n", - "[INFO] [1712351064.093932]: SOMA.BeneficiaryRole \n", - "[INFO] [1712351064.094179]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712351064.094482]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, owl.Thing}\n", - "[INFO] [1712351064.094754]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712351064.095056]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.095545]: Instances: []\n", - "[INFO] [1712351064.095831]: Direct Instances: []\n", - "[INFO] [1712351064.096098]: Inverse Restrictions: []\n", - "[INFO] [1712351064.096339]: -------------------\n", - "[INFO] [1712351064.096592]: SOMA.GoalRole \n", - "[INFO] [1712351064.096842]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351064.097095]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.097371]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712351064.097685]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.098227]: Instances: []\n", - "[INFO] [1712351064.098506]: Direct Instances: []\n", - "[INFO] [1712351064.098785]: Inverse Restrictions: []\n", - "[INFO] [1712351064.099041]: -------------------\n", - "[INFO] [1712351064.099287]: SOMA.CounterfactualBinding \n", - "[INFO] [1712351064.099527]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712351064.099793]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, SOMA.CounterfactualBinding, DUL.Relation}\n", - "[INFO] [1712351064.100060]: Subclasses: []\n", - "[INFO] [1712351064.100371]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.100863]: Instances: []\n", - "[INFO] [1712351064.101126]: Direct Instances: []\n", - "[INFO] [1712351064.101454]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712351064.101724]: -------------------\n", - "[INFO] [1712351064.101980]: SOMA.FactualBinding \n", - "[INFO] [1712351064.102228]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712351064.102497]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, SOMA.FactualBinding, DUL.Relation}\n", - "[INFO] [1712351064.102744]: Subclasses: []\n", - "[INFO] [1712351064.103047]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.103544]: Instances: []\n", - "[INFO] [1712351064.103804]: Direct Instances: []\n", - "[INFO] [1712351064.104143]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712351064.104411]: -------------------\n", - "[INFO] [1712351064.104661]: SOMA.RoleFillerBinding \n", - "[INFO] [1712351064.104933]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712351064.105211]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, SOMA.RoleFillerBinding, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351064.105465]: Subclasses: []\n", - "[INFO] [1712351064.105787]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.106278]: Instances: []\n", - "[INFO] [1712351064.106547]: Direct Instances: []\n", - "[INFO] [1712351064.106849]: Inverse Restrictions: []\n", - "[INFO] [1712351064.107101]: -------------------\n", - "[INFO] [1712351064.107343]: SOMA.RoleRoleBinding \n", - "[INFO] [1712351064.107991]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712351064.108299]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.RoleRoleBinding, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351064.108570]: Subclasses: []\n", - "[INFO] [1712351064.108920]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.109535]: Instances: []\n", - "[INFO] [1712351064.109858]: Direct Instances: []\n", - "[INFO] [1712351064.110189]: Inverse Restrictions: []\n", - "[INFO] [1712351064.110467]: -------------------\n", - "[INFO] [1712351064.110736]: SOMA.Blade \n", - "[INFO] [1712351064.110994]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.111288]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Blade, DUL.PhysicalObject}\n", - "[INFO] [1712351064.111542]: Subclasses: []\n", - "[INFO] [1712351064.111835]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.112322]: Instances: []\n", - "[INFO] [1712351064.112606]: Direct Instances: []\n", - "[INFO] [1712351064.112903]: Inverse Restrictions: [SOMA.Knife]\n", - "[INFO] [1712351064.113178]: -------------------\n", - "[INFO] [1712351064.113426]: SOMA.DesignedComponent \n", - "[INFO] [1712351064.113688]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712351064.113961]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.114247]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712351064.114554]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.115071]: Instances: []\n", - "[INFO] [1712351064.115341]: Direct Instances: []\n", - "[INFO] [1712351064.115601]: Inverse Restrictions: []\n", - "[INFO] [1712351064.115845]: -------------------\n", - "[INFO] [1712351064.116083]: SOMA.Blockage \n", - "[INFO] [1712351064.116357]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712351064.116632]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.116894]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712351064.117193]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.117701]: Instances: []\n", - "[INFO] [1712351064.117969]: Direct Instances: []\n", - "[INFO] [1712351064.118223]: Inverse Restrictions: []\n", - "[INFO] [1712351064.118470]: -------------------\n", - "[INFO] [1712351064.118712]: SOMA.BlockedObject \n", - "[INFO] [1712351064.118946]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.119227]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, SOMA.BlockedObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.119490]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712351064.119785]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.120289]: Instances: []\n", - "[INFO] [1712351064.120553]: Direct Instances: []\n", - "[INFO] [1712351064.120936]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712351064.121214]: -------------------\n", - "[INFO] [1712351064.121466]: SOMA.BodyMovement \n", - "[INFO] [1712351064.122508]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712351064.122826]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, DUL.Concept, SOMA.ProcessType, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.123110]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712351064.123419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.123951]: Instances: []\n", - "[INFO] [1712351064.124228]: Direct Instances: []\n", - "[INFO] [1712351064.124495]: Inverse Restrictions: []\n", - "[INFO] [1712351064.124741]: -------------------\n", - "[INFO] [1712351064.124990]: SOMA.Motion \n", - "[INFO] [1712351064.125233]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712351064.125481]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.125754]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712351064.126053]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.126605]: Instances: []\n", - "[INFO] [1712351064.126868]: Direct Instances: []\n", - "[INFO] [1712351064.127133]: Inverse Restrictions: []\n", - "[INFO] [1712351064.127377]: -------------------\n", - "[INFO] [1712351064.127634]: SOMA.Boiling \n", - "[INFO] [1712351064.127878]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712351064.128160]: Ancestors: {SOMA.Alteration, SOMA.Vaporizing, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Boiling, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.128414]: Subclasses: []\n", - "[INFO] [1712351064.128709]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.129210]: Instances: []\n", - "[INFO] [1712351064.129473]: Direct Instances: []\n", - "[INFO] [1712351064.129771]: Inverse Restrictions: []\n", - "[INFO] [1712351064.130010]: -------------------\n", - "[INFO] [1712351064.130254]: SOMA.Vaporizing \n", - "[INFO] [1712351064.130921]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712351064.131198]: Ancestors: {SOMA.Alteration, SOMA.Vaporizing, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.131459]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712351064.131782]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment]\n", - "[INFO] [1712351064.132302]: Instances: []\n", - "[INFO] [1712351064.132570]: Direct Instances: []\n", - "[INFO] [1712351064.132829]: Inverse Restrictions: []\n", - "[INFO] [1712351064.133073]: -------------------\n", - "[INFO] [1712351064.133312]: SOMA.Bottle \n", - "[INFO] [1712351064.133559]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712351064.133826]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bottle, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.134078]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", - "[INFO] [1712351064.134368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.134865]: Instances: []\n", - "[INFO] [1712351064.135131]: Direct Instances: []\n", - "[INFO] [1712351064.135399]: Inverse Restrictions: []\n", - "[INFO] [1712351064.135650]: -------------------\n", - "[INFO] [1712351064.135890]: SOMA.DesignedContainer \n", - "[INFO] [1712351064.136134]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712351064.136374]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.136647]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", - "[INFO] [1712351064.136959]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.137509]: Instances: []\n", - "[INFO] [1712351064.137791]: Direct Instances: []\n", - "[INFO] [1712351064.138058]: Inverse Restrictions: []\n", - "[INFO] [1712351064.138303]: -------------------\n", - "[INFO] [1712351064.138537]: SOMA.Bowl \n", - "[INFO] [1712351064.138773]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712351064.139059]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Bowl, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351064.139330]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", - "[INFO] [1712351064.139624]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.140115]: Instances: []\n", - "[INFO] [1712351064.140417]: Direct Instances: []\n", - "[INFO] [1712351064.140705]: Inverse Restrictions: [SOMA.Spoon]\n", - "[INFO] [1712351064.141042]: -------------------\n", - "[INFO] [1712351064.141359]: SOMA.Crockery \n", - "[INFO] [1712351064.142270]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712351064.142563]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.Crockery, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.142840]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", - "[INFO] [1712351064.143142]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.143677]: Instances: []\n", - "[INFO] [1712351064.143948]: Direct Instances: []\n", - "[INFO] [1712351064.144204]: Inverse Restrictions: []\n", - "[INFO] [1712351064.144444]: -------------------\n", - "[INFO] [1712351064.144682]: SOMA.Box \n", - "[INFO] [1712351064.144949]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", - "[INFO] [1712351064.145225]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Box, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.145478]: Subclasses: [SOMA.CerealBox]\n", - "[INFO] [1712351064.145769]: Properties: [SOMA.hasShapeRegion, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.146268]: Instances: []\n", - "[INFO] [1712351064.146555]: Direct Instances: []\n", - "[INFO] [1712351064.146820]: Inverse Restrictions: []\n", - "[INFO] [1712351064.147063]: -------------------\n", - "[INFO] [1712351064.147300]: SOMA.BoxShape \n", - "[INFO] [1712351064.147587]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712351064.147887]: Ancestors: {SOMA.BoxShape, SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351064.148145]: Subclasses: []\n", - "[INFO] [1712351064.148448]: Properties: [rdf-schema.comment, SOMA.hasHeight, rdf-schema.label, SOMA.hasWidth, SOMA.hasLength, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.148939]: Instances: []\n", - "[INFO] [1712351064.149216]: Direct Instances: []\n", - "[INFO] [1712351064.149503]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712351064.149803]: -------------------\n", - "[INFO] [1712351064.150080]: SOMA.Bread \n", - "[INFO] [1712351064.150342]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712351064.150631]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Bread, DUL.Object, DUL.Entity, DUL.PhysicalObject, SOMA.BakedGood, owl.Thing, SOMA.Dish}\n", - "[INFO] [1712351064.151099]: Subclasses: []\n", - "[INFO] [1712351064.151433]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.151951]: Instances: []\n", - "[INFO] [1712351064.152240]: Direct Instances: []\n", - "[INFO] [1712351064.152505]: Inverse Restrictions: []\n", - "[INFO] [1712351064.152756]: -------------------\n", - "[INFO] [1712351064.153014]: SOMA.BreadKnife \n", - "[INFO] [1712351064.153272]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712351064.153580]: Ancestors: {DUL.DesignedArtifact, SOMA.BreadKnife, DUL.PhysicalArtifact, SOMA.KitchenKnife, SOMA.DesignedTool, SOMA.Knife, DUL.Object, SOMA.CuttingTool, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.153845]: Subclasses: []\n", - "[INFO] [1712351064.154142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.154635]: Instances: []\n", - "[INFO] [1712351064.154922]: Direct Instances: []\n", - "[INFO] [1712351064.155189]: Inverse Restrictions: []\n", - "[INFO] [1712351064.155450]: -------------------\n", - "[INFO] [1712351064.155695]: SOMA.KitchenKnife \n", - "[INFO] [1712351064.155937]: Super classes: [SOMA.Knife]\n", - "[INFO] [1712351064.156199]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.KitchenKnife, SOMA.DesignedTool, SOMA.Knife, DUL.Object, SOMA.CuttingTool, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.156467]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", - "[INFO] [1712351064.156767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.157269]: Instances: []\n", - "[INFO] [1712351064.157551]: Direct Instances: []\n", - "[INFO] [1712351064.157822]: Inverse Restrictions: []\n", - "[INFO] [1712351064.158073]: -------------------\n", - "[INFO] [1712351064.158320]: SOMA.BreakfastPlate \n", - "[INFO] [1712351064.158561]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712351064.158844]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, owl.Thing, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.BreakfastPlate, SOMA.Plate, SOMA.Crockery}\n", - "[INFO] [1712351064.159118]: Subclasses: []\n", - "[INFO] [1712351064.159421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.159917]: Instances: []\n", - "[INFO] [1712351064.160191]: Direct Instances: []\n", - "[INFO] [1712351064.160454]: Inverse Restrictions: []\n", - "[INFO] [1712351064.160700]: -------------------\n", - "[INFO] [1712351064.160947]: SOMA.Plate \n", - "[INFO] [1712351064.161190]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712351064.161450]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, owl.Thing, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Plate, SOMA.Crockery}\n", - "[INFO] [1712351064.161715]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", - "[INFO] [1712351064.162021]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.162530]: Instances: []\n", - "[INFO] [1712351064.162824]: Direct Instances: []\n", - "[INFO] [1712351064.163120]: Inverse Restrictions: []\n", - "[INFO] [1712351064.163398]: -------------------\n", - "[INFO] [1712351064.163666]: SOMA.Building \n", - "[INFO] [1712351064.163931]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712351064.164239]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Building, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.164532]: Subclasses: []\n", - "[INFO] [1712351064.164882]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.165522]: Instances: []\n", - "[INFO] [1712351064.165849]: Direct Instances: []\n", - "[INFO] [1712351064.166145]: Inverse Restrictions: []\n", - "[INFO] [1712351064.166416]: -------------------\n", - "[INFO] [1712351064.166674]: SOMA.Deposition \n", - "[INFO] [1712351064.166962]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712351064.167254]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.167527]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712351064.167834]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.168344]: Instances: []\n", - "[INFO] [1712351064.168608]: Direct Instances: []\n", - "[INFO] [1712351064.169314]: Inverse Restrictions: []\n", - "[INFO] [1712351064.169575]: -------------------\n", - "[INFO] [1712351064.169828]: SOMA.CanCut \n", - "[INFO] [1712351064.170096]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712351064.170384]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.170649]: Subclasses: []\n", - "[INFO] [1712351064.170954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.171446]: Instances: []\n", - "[INFO] [1712351064.171704]: Direct Instances: []\n", - "[INFO] [1712351064.171952]: Inverse Restrictions: []\n", - "[INFO] [1712351064.172208]: -------------------\n", - "[INFO] [1712351064.172451]: SOMA.Variability \n", - "[INFO] [1712351064.172722]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712351064.173010]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.173286]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712351064.173589]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.174103]: Instances: []\n", - "[INFO] [1712351064.174378]: Direct Instances: []\n", - "[INFO] [1712351064.174642]: Inverse Restrictions: []\n", - "[INFO] [1712351064.174885]: -------------------\n", - "[INFO] [1712351064.175153]: SOMA.Cutter \n", - "[INFO] [1712351064.175411]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712351064.175700]: Ancestors: {SOMA.Tool, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.Cutter, owl.Thing}\n", - "[INFO] [1712351064.175950]: Subclasses: []\n", - "[INFO] [1712351064.176239]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.176733]: Instances: []\n", - "[INFO] [1712351064.177015]: Direct Instances: []\n", - "[INFO] [1712351064.177353]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712351064.177626]: -------------------\n", - "[INFO] [1712351064.177889]: SOMA.CutObject \n", - "[INFO] [1712351064.178169]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712351064.178474]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, DUL.Concept, SOMA.CutObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.178748]: Subclasses: []\n", - "[INFO] [1712351064.179083]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.179718]: Instances: []\n", - "[INFO] [1712351064.180082]: Direct Instances: []\n", - "[INFO] [1712351064.180461]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712351064.180741]: -------------------\n", - "[INFO] [1712351064.181018]: SOMA.Capability \n", - "[INFO] [1712351064.182736]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712351064.183047]: Ancestors: {SOMA.Extrinsic, SOMA.Capability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.183330]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712351064.183650]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.184157]: Instances: []\n", - "[INFO] [1712351064.184437]: Direct Instances: []\n", - "[INFO] [1712351064.184694]: Inverse Restrictions: []\n", - "[INFO] [1712351064.184962]: -------------------\n", - "[INFO] [1712351064.185231]: SOMA.Capacity \n", - "[INFO] [1712351064.185509]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351064.185810]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Capacity, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351064.186069]: Subclasses: []\n", - "[INFO] [1712351064.186367]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.186858]: Instances: []\n", - "[INFO] [1712351064.187124]: Direct Instances: []\n", - "[INFO] [1712351064.187795]: Inverse Restrictions: []\n", - "[INFO] [1712351064.188068]: -------------------\n", - "[INFO] [1712351064.188320]: SOMA.Intrinsic \n", - "[INFO] [1712351064.188562]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712351064.188818]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351064.189095]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712351064.189407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.189924]: Instances: []\n", - "[INFO] [1712351064.190190]: Direct Instances: []\n", - "[INFO] [1712351064.190453]: Inverse Restrictions: []\n", - "[INFO] [1712351064.190692]: -------------------\n", - "[INFO] [1712351064.190928]: SOMA.Carafe \n", - "[INFO] [1712351064.191179]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712351064.191450]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Carafe, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.191705]: Subclasses: [SOMA.CoffeeCarafe]\n", - "[INFO] [1712351064.191990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.192493]: Instances: []\n", - "[INFO] [1712351064.192755]: Direct Instances: []\n", - "[INFO] [1712351064.193019]: Inverse Restrictions: []\n", - "[INFO] [1712351064.193258]: -------------------\n", - "[INFO] [1712351064.193494]: SOMA.Catching \n", - "[INFO] [1712351064.193729]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.194005]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.Catching, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.194255]: Subclasses: []\n", - "[INFO] [1712351064.194556]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.195060]: Instances: []\n", - "[INFO] [1712351064.195332]: Direct Instances: []\n", - "[INFO] [1712351064.195595]: Inverse Restrictions: []\n", - "[INFO] [1712351064.195837]: -------------------\n", - "[INFO] [1712351064.196076]: SOMA.PickingUp \n", - "[INFO] [1712351064.196342]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351064.196644]: Ancestors: {SOMA.PickingUp, DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.196901]: Subclasses: []\n", - "[INFO] [1712351064.197197]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.197705]: Instances: []\n", - "[INFO] [1712351064.197998]: Direct Instances: []\n", - "[INFO] [1712351064.198266]: Inverse Restrictions: []\n", - "[INFO] [1712351064.198515]: -------------------\n", - "[INFO] [1712351064.198761]: SOMA.CausalEventRole \n", - "[INFO] [1712351064.199016]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712351064.199291]: Ancestors: {SOMA.CausalEventRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351064.199545]: Subclasses: []\n", - "[INFO] [1712351064.199837]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.200338]: Instances: []\n", - "[INFO] [1712351064.200601]: Direct Instances: []\n", - "[INFO] [1712351064.200913]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351064.201166]: -------------------\n", - "[INFO] [1712351064.201406]: SOMA.EventAdjacentRole \n", - "[INFO] [1712351064.201658]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712351064.201915]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.202178]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712351064.202476]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.203147]: Instances: []\n", - "[INFO] [1712351064.203414]: Direct Instances: []\n", - "[INFO] [1712351064.203673]: Inverse Restrictions: []\n", - "[INFO] [1712351064.203920]: -------------------\n", - "[INFO] [1712351064.204165]: SOMA.CausedMotionTheory \n", - "[INFO] [1712351064.204444]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712351064.204742]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CausedMotionTheory, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.205000]: Subclasses: []\n", - "[INFO] [1712351064.205300]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.hasPart, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.205804]: Instances: []\n", - "[INFO] [1712351064.206070]: Direct Instances: []\n", - "[INFO] [1712351064.206320]: Inverse Restrictions: []\n", - "[INFO] [1712351064.206566]: -------------------\n", - "[INFO] [1712351064.206808]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712351064.207057]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712351064.207307]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.207568]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712351064.207863]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.208381]: Instances: []\n", - "[INFO] [1712351064.208647]: Direct Instances: []\n", - "[INFO] [1712351064.208990]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.StateTransition, SOMA.Scene]\n", - "[INFO] [1712351064.209246]: -------------------\n", - "[INFO] [1712351064.209505]: SOMA.PerformerRole \n", - "[INFO] [1712351064.209773]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712351064.210050]: Ancestors: {DUL.SocialObject, SOMA.PerformerRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351064.210309]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712351064.210619]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.211130]: Instances: []\n", - "[INFO] [1712351064.211394]: Direct Instances: []\n", - "[INFO] [1712351064.211798]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351064.212081]: -------------------\n", - "[INFO] [1712351064.212342]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712351064.212631]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712351064.212917]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.SourcePathGoalTheory, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.213199]: Subclasses: []\n", - "[INFO] [1712351064.213517]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351064.214015]: Instances: []\n", - "[INFO] [1712351064.214290]: Direct Instances: []\n", - "[INFO] [1712351064.214581]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351064.214827]: -------------------\n", - "[INFO] [1712351064.215071]: SOMA.Ceiling \n", - "[INFO] [1712351064.215321]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712351064.215610]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, SOMA.Ceiling, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.215884]: Subclasses: []\n", - "[INFO] [1712351064.216187]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.216694]: Instances: []\n", - "[INFO] [1712351064.217094]: Direct Instances: []\n", - "[INFO] [1712351064.217436]: Inverse Restrictions: []\n", - "[INFO] [1712351064.217721]: -------------------\n", - "[INFO] [1712351064.217986]: SOMA.RoomSurface \n", - "[INFO] [1712351064.218240]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712351064.218505]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.218768]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712351064.219083]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.219589]: Instances: []\n", - "[INFO] [1712351064.219851]: Direct Instances: []\n", - "[INFO] [1712351064.220105]: Inverse Restrictions: []\n", - "[INFO] [1712351064.220345]: -------------------\n", - "[INFO] [1712351064.220597]: SOMA.Floor \n", - "[INFO] [1712351064.220845]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712351064.221114]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, SOMA.Floor, DUL.Entity, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.221362]: Subclasses: []\n", - "[INFO] [1712351064.221656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.222152]: Instances: []\n", - "[INFO] [1712351064.222416]: Direct Instances: []\n", - "[INFO] [1712351064.222670]: Inverse Restrictions: []\n", - "[INFO] [1712351064.222913]: -------------------\n", - "[INFO] [1712351064.223150]: SOMA.Wall \n", - "[INFO] [1712351064.223397]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712351064.223667]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, SOMA.Wall, DUL.Object, DUL.Entity, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.223919]: Subclasses: []\n", - "[INFO] [1712351064.224205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.224701]: Instances: []\n", - "[INFO] [1712351064.224966]: Direct Instances: []\n", - "[INFO] [1712351064.225216]: Inverse Restrictions: []\n", - "[INFO] [1712351064.225449]: -------------------\n", - "[INFO] [1712351064.225682]: SOMA.CeramicCooktop \n", - "[INFO] [1712351064.225919]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712351064.226210]: Ancestors: {SOMA.ElectricCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, SOMA.CeramicCooktop, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.226463]: Subclasses: []\n", - "[INFO] [1712351064.226746]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.227234]: Instances: []\n", - "[INFO] [1712351064.227498]: Direct Instances: []\n", - "[INFO] [1712351064.227747]: Inverse Restrictions: []\n", - "[INFO] [1712351064.227984]: -------------------\n", - "[INFO] [1712351064.228229]: SOMA.ElectricCooktop \n", - "[INFO] [1712351064.228472]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712351064.228728]: Ancestors: {SOMA.ElectricCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.228981]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", - "[INFO] [1712351064.229265]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.229802]: Instances: []\n", - "[INFO] [1712351064.230084]: Direct Instances: []\n", - "[INFO] [1712351064.230345]: Inverse Restrictions: []\n", - "[INFO] [1712351064.230591]: -------------------\n", - "[INFO] [1712351064.230831]: SOMA.CerealBox \n", - "[INFO] [1712351064.231074]: Super classes: [SOMA.Box]\n", - "[INFO] [1712351064.231347]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Box, SOMA.CerealBox, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.231595]: Subclasses: []\n", - "[INFO] [1712351064.231886]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.232385]: Instances: []\n", - "[INFO] [1712351064.232655]: Direct Instances: []\n", - "[INFO] [1712351064.232917]: Inverse Restrictions: []\n", - "[INFO] [1712351064.233158]: -------------------\n", - "[INFO] [1712351064.233398]: SOMA.Channel \n", - "[INFO] [1712351064.233669]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712351064.233953]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, SOMA.Channel, DUL.Entity, SOMA.PathRole, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.234201]: Subclasses: []\n", - "[INFO] [1712351064.234497]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.234997]: Instances: []\n", - "[INFO] [1712351064.235262]: Direct Instances: []\n", - "[INFO] [1712351064.235568]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351064.235816]: -------------------\n", - "[INFO] [1712351064.236055]: SOMA.PathRole \n", - "[INFO] [1712351064.236300]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712351064.236555]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PathRole, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.236806]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712351064.237098]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.237597]: Instances: []\n", - "[INFO] [1712351064.237859]: Direct Instances: []\n", - "[INFO] [1712351064.238147]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712351064.238388]: -------------------\n", - "[INFO] [1712351064.238623]: SOMA.CommunicationTask \n", - "[INFO] [1712351064.239650]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712351064.239950]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.240216]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712351064.240520]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.241046]: Instances: []\n", - "[INFO] [1712351064.241416]: Direct Instances: []\n", - "[INFO] [1712351064.242310]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel]\n", - "[INFO] [1712351064.242589]: -------------------\n", - "[INFO] [1712351064.242854]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712351064.243114]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712351064.243394]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", - "[INFO] [1712351064.243649]: Subclasses: []\n", - "[INFO] [1712351064.243947]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.244442]: Instances: []\n", - "[INFO] [1712351064.244715]: Direct Instances: []\n", - "[INFO] [1712351064.244975]: Inverse Restrictions: []\n", - "[INFO] [1712351064.245219]: -------------------\n", - "[INFO] [1712351064.245455]: SOMA.ChemicalProcess \n", - "[INFO] [1712351064.245693]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712351064.245961]: Ancestors: {DUL.Entity, SOMA.ChemicalProcess, DUL.Event, owl.Thing, DUL.Process}\n", - "[INFO] [1712351064.246223]: Subclasses: []\n", - "[INFO] [1712351064.246525]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.247013]: Instances: []\n", - "[INFO] [1712351064.247281]: Direct Instances: []\n", - "[INFO] [1712351064.247540]: Inverse Restrictions: []\n", - "[INFO] [1712351064.247783]: -------------------\n", - "[INFO] [1712351064.248022]: SOMA.Choice \n", - "[INFO] [1712351064.248257]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712351064.248529]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.Choice, DUL.Entity, DUL.Concept, SOMA.ResultRole, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.248790]: Subclasses: []\n", - "[INFO] [1712351064.249090]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.249569]: Instances: []\n", - "[INFO] [1712351064.249822]: Direct Instances: []\n", - "[INFO] [1712351064.250065]: Inverse Restrictions: []\n", - "[INFO] [1712351064.250294]: -------------------\n", - "[INFO] [1712351064.250536]: SOMA.ResultRole \n", - "[INFO] [1712351064.250774]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712351064.251020]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.ResultRole, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.251270]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712351064.251574]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.252070]: Instances: []\n", - "[INFO] [1712351064.252324]: Direct Instances: []\n", - "[INFO] [1712351064.252577]: Inverse Restrictions: []\n", - "[INFO] [1712351064.252830]: -------------------\n", - "[INFO] [1712351064.253070]: SOMA.CircularCylinder \n", - "[INFO] [1712351064.253328]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712351064.253605]: Ancestors: {SOMA.CircularCylinder, SOMA.CylinderShape, SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351064.253853]: Subclasses: []\n", - "[INFO] [1712351064.254152]: Properties: [rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.254642]: Instances: []\n", - "[INFO] [1712351064.254896]: Direct Instances: []\n", - "[INFO] [1712351064.255139]: Inverse Restrictions: []\n", - "[INFO] [1712351064.255384]: -------------------\n", - "[INFO] [1712351064.255622]: SOMA.CylinderShape \n", - "[INFO] [1712351064.255885]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712351064.256132]: Ancestors: {SOMA.CylinderShape, SOMA.ShapeRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351064.256392]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712351064.256692]: Properties: [rdf-schema.label, rdf-schema.comment, SOMA.hasRadius, SOMA.hasLength, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.257189]: Instances: []\n", - "[INFO] [1712351064.257453]: Direct Instances: []\n", - "[INFO] [1712351064.257718]: Inverse Restrictions: []\n", - "[INFO] [1712351064.257961]: -------------------\n", - "[INFO] [1712351064.258196]: SOMA.Classifier \n", - "[INFO] [1712351064.258430]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712351064.258718]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, SOMA.Classifier, DUL.Entity, DUL.Concept, SOMA.StatisticalReasoner, DUL.Role, SOMA.Reasoner, owl.Thing}\n", - "[INFO] [1712351064.258975]: Subclasses: []\n", - "[INFO] [1712351064.259267]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351064.259742]: Instances: []\n", - "[INFO] [1712351064.260005]: Direct Instances: []\n", - "[INFO] [1712351064.260249]: Inverse Restrictions: []\n", - "[INFO] [1712351064.260497]: -------------------\n", - "[INFO] [1712351064.260734]: SOMA.StatisticalReasoner \n", - "[INFO] [1712351064.260982]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712351064.261239]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.StatisticalReasoner, DUL.Role, SOMA.Reasoner, owl.Thing}\n", - "[INFO] [1712351064.261490]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712351064.261776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351064.262260]: Instances: []\n", - "[INFO] [1712351064.262528]: Direct Instances: []\n", - "[INFO] [1712351064.262783]: Inverse Restrictions: []\n", - "[INFO] [1712351064.263064]: -------------------\n", - "[INFO] [1712351064.263308]: SOMA.ClausalObject \n", - "[INFO] [1712351064.263545]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712351064.263804]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.264062]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712351064.264353]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.264847]: Instances: []\n", - "[INFO] [1712351064.265127]: Direct Instances: []\n", - "[INFO] [1712351064.265392]: Inverse Restrictions: []\n", - "[INFO] [1712351064.265644]: -------------------\n", - "[INFO] [1712351064.265883]: SOMA.Phrase \n", - "[INFO] [1712351064.266123]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712351064.266367]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.266640]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712351064.266937]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.267447]: Instances: []\n", - "[INFO] [1712351064.267699]: Direct Instances: []\n", - "[INFO] [1712351064.267954]: Inverse Restrictions: []\n", - "[INFO] [1712351064.268190]: -------------------\n", - "[INFO] [1712351064.268422]: SOMA.Clean \n", - "[INFO] [1712351064.268664]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712351064.268963]: Ancestors: {SOMA.Clean, SOMA.CleanlinessRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351064.269315]: Subclasses: []\n", - "[INFO] [1712351064.269650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.270157]: Instances: []\n", - "[INFO] [1712351064.270437]: Direct Instances: []\n", - "[INFO] [1712351064.271145]: Inverse Restrictions: []\n", - "[INFO] [1712351064.271413]: -------------------\n", - "[INFO] [1712351064.271664]: SOMA.CleanlinessRegion \n", - "[INFO] [1712351064.271905]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351064.272150]: Ancestors: {SOMA.CleanlinessRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351064.272642]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712351064.273055]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.273566]: Instances: []\n", - "[INFO] [1712351064.273829]: Direct Instances: []\n", - "[INFO] [1712351064.274161]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712351064.274416]: -------------------\n", - "[INFO] [1712351064.274671]: SOMA.Cleaning \n", - "[INFO] [1712351064.274945]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712351064.275227]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Cleaning}\n", - "[INFO] [1712351064.275475]: Subclasses: []\n", - "[INFO] [1712351064.275769]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.276268]: Instances: []\n", - "[INFO] [1712351064.276536]: Direct Instances: []\n", - "[INFO] [1712351064.276794]: Inverse Restrictions: []\n", - "[INFO] [1712351064.277036]: -------------------\n", - "[INFO] [1712351064.277271]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712351064.277508]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351064.277760]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.278015]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712351064.278299]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.278810]: Instances: []\n", - "[INFO] [1712351064.279076]: Direct Instances: []\n", - "[INFO] [1712351064.279334]: Inverse Restrictions: []\n", - "[INFO] [1712351064.279572]: -------------------\n", - "[INFO] [1712351064.279841]: SOMA.Purification \n", - "[INFO] [1712351064.280858]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712351064.281162]: Ancestors: {SOMA.Extrinsic, SOMA.Purification, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.281426]: Subclasses: []\n", - "[INFO] [1712351064.281724]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.282229]: Instances: []\n", - "[INFO] [1712351064.282502]: Direct Instances: []\n", - "[INFO] [1712351064.282795]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712351064.283061]: -------------------\n", - "[INFO] [1712351064.283302]: SOMA.Cleanliness \n", - "[INFO] [1712351064.283547]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712351064.283819]: Ancestors: {SOMA.SocialQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Cleanliness}\n", - "[INFO] [1712351064.284070]: Subclasses: []\n", - "[INFO] [1712351064.284360]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351064.284878]: Instances: []\n", - "[INFO] [1712351064.285180]: Direct Instances: []\n", - "[INFO] [1712351064.285522]: Inverse Restrictions: []\n", - "[INFO] [1712351064.285775]: -------------------\n", - "[INFO] [1712351064.286016]: SOMA.SocialQuality \n", - "[INFO] [1712351064.286254]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712351064.286499]: Ancestors: {DUL.Entity, SOMA.SocialQuality, owl.Thing, DUL.Quality}\n", - "[INFO] [1712351064.286766]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712351064.287070]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.287565]: Instances: []\n", - "[INFO] [1712351064.287827]: Direct Instances: []\n", - "[INFO] [1712351064.288077]: Inverse Restrictions: []\n", - "[INFO] [1712351064.288324]: -------------------\n", - "[INFO] [1712351064.288571]: SOMA.Client-Server_Specification \n", - "[INFO] [1712351064.289595]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712351064.289908]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Client-Server_Specification, SOMA.InterfaceSpecification}\n", - "[INFO] [1712351064.290171]: Subclasses: []\n", - "[INFO] [1712351064.290473]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole, rdf-schema.comment]\n", - "[INFO] [1712351064.290979]: Instances: []\n", - "[INFO] [1712351064.291254]: Direct Instances: []\n", - "[INFO] [1712351064.291595]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712351064.291848]: -------------------\n", - "[INFO] [1712351064.292094]: SOMA.ClientRole \n", - "[INFO] [1712351064.292347]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712351064.293612]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.ClientRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351064.294012]: Subclasses: []\n", - "[INFO] [1712351064.294365]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", - "[INFO] [1712351064.294887]: Instances: []\n", - "[INFO] [1712351064.295188]: Direct Instances: []\n", - "[INFO] [1712351064.295602]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712351064.295898]: -------------------\n", - "[INFO] [1712351064.296162]: SOMA.ServerRole \n", - "[INFO] [1712351064.296458]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712351064.296740]: Ancestors: {SOMA.SoftwareRole, SOMA.ServerRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351064.296997]: Subclasses: []\n", - "[INFO] [1712351064.297306]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", - "[INFO] [1712351064.297826]: Instances: []\n", - "[INFO] [1712351064.298109]: Direct Instances: []\n", - "[INFO] [1712351064.298426]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712351064.298681]: -------------------\n", - "[INFO] [1712351064.298920]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712351064.299168]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351064.299436]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351064.299697]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712351064.300002]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351064.300500]: Instances: []\n", - "[INFO] [1712351064.300784]: Direct Instances: []\n", - "[INFO] [1712351064.301052]: Inverse Restrictions: []\n", - "[INFO] [1712351064.301296]: -------------------\n", - "[INFO] [1712351064.301542]: SOMA.Closing \n", - "[INFO] [1712351064.301787]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.302066]: Ancestors: {SOMA.Closing, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.302329]: Subclasses: []\n", - "[INFO] [1712351064.302639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.303133]: Instances: []\n", - "[INFO] [1712351064.303398]: Direct Instances: []\n", - "[INFO] [1712351064.303664]: Inverse Restrictions: []\n", - "[INFO] [1712351064.303907]: -------------------\n", - "[INFO] [1712351064.304149]: SOMA.Delivering \n", - "[INFO] [1712351064.304408]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712351064.304681]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Delivering, owl.Thing}\n", - "[INFO] [1712351064.304978]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712351064.305307]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.305811]: Instances: []\n", - "[INFO] [1712351064.306076]: Direct Instances: []\n", - "[INFO] [1712351064.306342]: Inverse Restrictions: []\n", - "[INFO] [1712351064.306592]: -------------------\n", - "[INFO] [1712351064.306835]: SOMA.Fetching \n", - "[INFO] [1712351064.307068]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712351064.307346]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, SOMA.Fetching, DUL.Task, SOMA.PhysicalAcquiring, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.307611]: Subclasses: []\n", - "[INFO] [1712351064.307918]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.308409]: Instances: []\n", - "[INFO] [1712351064.308666]: Direct Instances: []\n", - "[INFO] [1712351064.308923]: Inverse Restrictions: []\n", - "[INFO] [1712351064.309180]: -------------------\n", - "[INFO] [1712351064.309426]: SOMA.Lifting \n", - "[INFO] [1712351064.309667]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.309931]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.Lifting, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.310185]: Subclasses: []\n", - "[INFO] [1712351064.310493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.310983]: Instances: []\n", - "[INFO] [1712351064.311251]: Direct Instances: []\n", - "[INFO] [1712351064.311517]: Inverse Restrictions: []\n", - "[INFO] [1712351064.311763]: -------------------\n", - "[INFO] [1712351064.311999]: SOMA.Opening \n", - "[INFO] [1712351064.312232]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.312498]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, SOMA.Opening, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.312761]: Subclasses: []\n", - "[INFO] [1712351064.313138]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.313636]: Instances: []\n", - "[INFO] [1712351064.313901]: Direct Instances: []\n", - "[INFO] [1712351064.314159]: Inverse Restrictions: []\n", - "[INFO] [1712351064.314420]: -------------------\n", - "[INFO] [1712351064.314665]: SOMA.Pulling \n", - "[INFO] [1712351064.314907]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.315181]: Ancestors: {DUL.SocialObject, SOMA.Actuating, SOMA.Pulling, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.315432]: Subclasses: []\n", - "[INFO] [1712351064.315740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.316226]: Instances: []\n", - "[INFO] [1712351064.316487]: Direct Instances: []\n", - "[INFO] [1712351064.316740]: Inverse Restrictions: []\n", - "[INFO] [1712351064.316991]: -------------------\n", - "[INFO] [1712351064.317238]: SOMA.Pushing \n", - "[INFO] [1712351064.317477]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.317742]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.317990]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712351064.318292]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.318788]: Instances: []\n", - "[INFO] [1712351064.319047]: Direct Instances: []\n", - "[INFO] [1712351064.319315]: Inverse Restrictions: []\n", - "[INFO] [1712351064.319564]: -------------------\n", - "[INFO] [1712351064.319803]: SOMA.Squeezing \n", - "[INFO] [1712351064.320041]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.320312]: Ancestors: {SOMA.Squeezing, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.320563]: Subclasses: []\n", - "[INFO] [1712351064.320853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.321346]: Instances: []\n", - "[INFO] [1712351064.321609]: Direct Instances: []\n", - "[INFO] [1712351064.321869]: Inverse Restrictions: []\n", - "[INFO] [1712351064.322108]: -------------------\n", - "[INFO] [1712351064.322344]: SOMA.ClosingDisposition \n", - "[INFO] [1712351064.322579]: Super classes: [SOMA.Linkage]\n", - "[INFO] [1712351064.322872]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.ClosingDisposition, SOMA.Linkage, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", - "[INFO] [1712351064.323130]: Subclasses: []\n", - "[INFO] [1712351064.323423]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.323918]: Instances: []\n", - "[INFO] [1712351064.324184]: Direct Instances: []\n", - "[INFO] [1712351064.324442]: Inverse Restrictions: []\n", - "[INFO] [1712351064.324681]: -------------------\n", - "[INFO] [1712351064.325037]: SOMA.Linkage \n", - "[INFO] [1712351064.325415]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712351064.325728]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Linkage, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", - "[INFO] [1712351064.326015]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712351064.326340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.326847]: Instances: []\n", - "[INFO] [1712351064.327118]: Direct Instances: []\n", - "[INFO] [1712351064.327374]: Inverse Restrictions: []\n", - "[INFO] [1712351064.327619]: -------------------\n", - "[INFO] [1712351064.327868]: SOMA.Clumsiness \n", - "[INFO] [1712351064.328112]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712351064.328382]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Clumsiness, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351064.328629]: Subclasses: []\n", - "[INFO] [1712351064.328927]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.329440]: Instances: []\n", - "[INFO] [1712351064.329715]: Direct Instances: []\n", - "[INFO] [1712351064.329980]: Inverse Restrictions: []\n", - "[INFO] [1712351064.330223]: -------------------\n", - "[INFO] [1712351064.330467]: SOMA.CoffeeCarafe \n", - "[INFO] [1712351064.330702]: Super classes: [SOMA.Carafe]\n", - "[INFO] [1712351064.330995]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Carafe, SOMA.CoffeeCarafe, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.331250]: Subclasses: []\n", - "[INFO] [1712351064.331538]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.332017]: Instances: []\n", - "[INFO] [1712351064.332294]: Direct Instances: []\n", - "[INFO] [1712351064.332552]: Inverse Restrictions: []\n", - "[INFO] [1712351064.332796]: -------------------\n", - "[INFO] [1712351064.333035]: SOMA.CoffeeTable \n", - "[INFO] [1712351064.333269]: Super classes: [SOMA.Table]\n", - "[INFO] [1712351064.333542]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, SOMA.CoffeeTable, SOMA.Table, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.333792]: Subclasses: []\n", - "[INFO] [1712351064.334075]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.334560]: Instances: []\n", - "[INFO] [1712351064.334827]: Direct Instances: []\n", - "[INFO] [1712351064.335079]: Inverse Restrictions: []\n", - "[INFO] [1712351064.335322]: -------------------\n", - "[INFO] [1712351064.335556]: SOMA.CognitiveAgent \n", - "[INFO] [1712351064.335784]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712351064.336044]: Ancestors: {SOMA.CognitiveAgent, DUL.Object, DUL.Entity, DUL.Agent, owl.Thing}\n", - "[INFO] [1712351064.336300]: Subclasses: []\n", - "[INFO] [1712351064.336602]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.337114]: Instances: []\n", - "[INFO] [1712351064.337374]: Direct Instances: []\n", - "[INFO] [1712351064.337637]: Inverse Restrictions: []\n", - "[INFO] [1712351064.337881]: -------------------\n", - "[INFO] [1712351064.338117]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712351064.338351]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712351064.338606]: Ancestors: {SOMA.SubCognitiveAgent, DUL.Object, DUL.Entity, DUL.Agent, owl.Thing}\n", - "[INFO] [1712351064.338863]: Subclasses: []\n", - "[INFO] [1712351064.339155]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.339639]: Instances: []\n", - "[INFO] [1712351064.339889]: Direct Instances: []\n", - "[INFO] [1712351064.340153]: Inverse Restrictions: []\n", - "[INFO] [1712351064.340394]: -------------------\n", - "[INFO] [1712351064.340628]: SOMA.CoilCooktop \n", - "[INFO] [1712351064.340865]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712351064.341130]: Ancestors: {SOMA.ElectricCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.CoilCooktop, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.341390]: Subclasses: []\n", - "[INFO] [1712351064.341682]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.342164]: Instances: []\n", - "[INFO] [1712351064.342414]: Direct Instances: []\n", - "[INFO] [1712351064.342659]: Inverse Restrictions: []\n", - "[INFO] [1712351064.342907]: -------------------\n", - "[INFO] [1712351064.343145]: SOMA.Collision \n", - "[INFO] [1712351064.343380]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712351064.343635]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Collision, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.343876]: Subclasses: []\n", - "[INFO] [1712351064.344176]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.344665]: Instances: []\n", - "[INFO] [1712351064.344936]: Direct Instances: []\n", - "[INFO] [1712351064.345199]: Inverse Restrictions: []\n", - "[INFO] [1712351064.345437]: -------------------\n", - "[INFO] [1712351064.345678]: SOMA.Extrinsic \n", - "[INFO] [1712351064.345923]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712351064.346183]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.346505]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712351064.346809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.347375]: Instances: []\n", - "[INFO] [1712351064.347643]: Direct Instances: []\n", - "[INFO] [1712351064.347899]: Inverse Restrictions: []\n", - "[INFO] [1712351064.348139]: -------------------\n", - "[INFO] [1712351064.348389]: SOMA.ImperativeClause \n", - "[INFO] [1712351064.348667]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712351064.348951]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, SOMA.ImperativeClause, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.349208]: Subclasses: []\n", - "[INFO] [1712351064.349504]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.expresses]\n", - "[INFO] [1712351064.350007]: Instances: []\n", - "[INFO] [1712351064.350274]: Direct Instances: []\n", - "[INFO] [1712351064.350565]: Inverse Restrictions: []\n", - "[INFO] [1712351064.350810]: -------------------\n", - "[INFO] [1712351064.351062]: SOMA.CommitedObject \n", - "[INFO] [1712351064.351303]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712351064.351576]: Ancestors: {SOMA.CommitedObject, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.351820]: Subclasses: []\n", - "[INFO] [1712351064.352402]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.352939]: Instances: []\n", - "[INFO] [1712351064.353280]: Direct Instances: []\n", - "[INFO] [1712351064.353556]: Inverse Restrictions: []\n", - "[INFO] [1712351064.353812]: -------------------\n", - "[INFO] [1712351064.354065]: SOMA.ConnectedObject \n", - "[INFO] [1712351064.354310]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.354577]: Ancestors: {DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.354848]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712351064.355146]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.355660]: Instances: []\n", - "[INFO] [1712351064.355933]: Direct Instances: []\n", - "[INFO] [1712351064.356307]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712351064.356565]: -------------------\n", - "[INFO] [1712351064.356818]: SOMA.CommunicationAction \n", - "[INFO] [1712351064.357088]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712351064.357382]: Ancestors: {SOMA.CommunicationAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712351064.357638]: Subclasses: []\n", - "[INFO] [1712351064.357936]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.358437]: Instances: []\n", - "[INFO] [1712351064.358711]: Direct Instances: []\n", - "[INFO] [1712351064.359726]: Inverse Restrictions: []\n", - "[INFO] [1712351064.359991]: -------------------\n", - "[INFO] [1712351064.360260]: SOMA.LinguisticObject \n", - "[INFO] [1712351064.360510]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712351064.360780]: Ancestors: {DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.361074]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712351064.361390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351064.361918]: Instances: []\n", - "[INFO] [1712351064.362195]: Direct Instances: []\n", - "[INFO] [1712351064.362492]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712351064.362741]: -------------------\n", - "[INFO] [1712351064.362982]: SOMA.CommunicationReport \n", - "[INFO] [1712351064.363240]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351064.363520]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, owl.Thing, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.CommunicationReport}\n", - "[INFO] [1712351064.363776]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712351064.364068]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.364572]: Instances: []\n", - "[INFO] [1712351064.364846]: Direct Instances: []\n", - "[INFO] [1712351064.365105]: Inverse Restrictions: []\n", - "[INFO] [1712351064.365352]: -------------------\n", - "[INFO] [1712351064.365608]: SOMA.Receiver \n", - "[INFO] [1712351064.365868]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712351064.366157]: Ancestors: {DUL.SocialObject, SOMA.EventAdjacentRole, SOMA.PerformerRole, DUL.Object, DUL.Entity, SOMA.Receiver, DUL.Concept, DUL.Role, SOMA.ExperiencerRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351064.366425]: Subclasses: []\n", - "[INFO] [1712351064.366733]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.367224]: Instances: []\n", - "[INFO] [1712351064.367482]: Direct Instances: []\n", - "[INFO] [1712351064.367794]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351064.368062]: -------------------\n", - "[INFO] [1712351064.368314]: SOMA.Sender \n", - "[INFO] [1712351064.368564]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712351064.368845]: Ancestors: {DUL.SocialObject, SOMA.PerformerRole, DUL.Object, SOMA.Sender, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351064.369102]: Subclasses: []\n", - "[INFO] [1712351064.369419]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.369920]: Instances: []\n", - "[INFO] [1712351064.370190]: Direct Instances: []\n", - "[INFO] [1712351064.370510]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351064.370766]: -------------------\n", - "[INFO] [1712351064.371018]: SOMA.CommunicationTopic \n", - "[INFO] [1712351064.372032]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712351064.372328]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.372605]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351064.372919]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.373439]: Instances: []\n", - "[INFO] [1712351064.373701]: Direct Instances: []\n", - "[INFO] [1712351064.373961]: Inverse Restrictions: []\n", - "[INFO] [1712351064.374215]: -------------------\n", - "[INFO] [1712351064.374471]: SOMA.ResourceRole \n", - "[INFO] [1712351064.374714]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351064.374967]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.375225]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712351064.375531]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.376083]: Instances: []\n", - "[INFO] [1712351064.376352]: Direct Instances: []\n", - "[INFO] [1712351064.376609]: Inverse Restrictions: []\n", - "[INFO] [1712351064.376868]: -------------------\n", - "[INFO] [1712351064.377121]: SOMA.Compartment \n", - "[INFO] [1712351064.377368]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.377640]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.377901]: Subclasses: [SOMA.FreezerCompartment]\n", - "[INFO] [1712351064.378206]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.378714]: Instances: []\n", - "[INFO] [1712351064.378977]: Direct Instances: []\n", - "[INFO] [1712351064.379227]: Inverse Restrictions: []\n", - "[INFO] [1712351064.379478]: -------------------\n", - "[INFO] [1712351064.379725]: SOMA.Composing \n", - "[INFO] [1712351064.380012]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712351064.380300]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing, SOMA.Composing}\n", - "[INFO] [1712351064.380558]: Subclasses: []\n", - "[INFO] [1712351064.380860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.381369]: Instances: []\n", - "[INFO] [1712351064.381642]: Direct Instances: []\n", - "[INFO] [1712351064.381951]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712351064.382207]: -------------------\n", - "[INFO] [1712351064.382453]: SOMA.Computer_Language \n", - "[INFO] [1712351064.382699]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712351064.382957]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.383230]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712351064.383532]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.384043]: Instances: []\n", - "[INFO] [1712351064.384324]: Direct Instances: []\n", - "[INFO] [1712351064.384646]: Inverse Restrictions: []\n", - "[INFO] [1712351064.385250]: -------------------\n", - "[INFO] [1712351064.385698]: SOMA.FormalLanguage \n", - "[INFO] [1712351064.386135]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712351064.386570]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.387012]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351064.387497]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.388201]: Instances: []\n", - "[INFO] [1712351064.388655]: Direct Instances: []\n", - "[INFO] [1712351064.389094]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712351064.389453]: -------------------\n", - "[INFO] [1712351064.389871]: SOMA.Computer_Program \n", - "[INFO] [1712351064.390242]: Super classes: [owl.Thing]\n", - "[INFO] [1712351064.392476]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", - "[INFO] [1712351064.392875]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712351064.393292]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.expresses, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.393894]: Instances: []\n", - "[INFO] [1712351064.394248]: Direct Instances: []\n", - "[INFO] [1712351064.396147]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712351064.396567]: -------------------\n", - "[INFO] [1712351064.396924]: SOMA.Programming_Language \n", - "[INFO] [1712351064.397238]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712351064.397571]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Programming_Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.397875]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712351064.398199]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.398707]: Instances: []\n", - "[INFO] [1712351064.398985]: Direct Instances: []\n", - "[INFO] [1712351064.399297]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712351064.399557]: -------------------\n", - "[INFO] [1712351064.399807]: SOMA.Conclusion \n", - "[INFO] [1712351064.400051]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712351064.400336]: Ancestors: {SOMA.Conclusion, DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, SOMA.CreatedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.400589]: Subclasses: []\n", - "[INFO] [1712351064.400894]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.401386]: Instances: []\n", - "[INFO] [1712351064.401649]: Direct Instances: []\n", - "[INFO] [1712351064.402691]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351064.402980]: -------------------\n", - "[INFO] [1712351064.403234]: SOMA.CreatedObject \n", - "[INFO] [1712351064.403485]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.403742]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.CreatedObject, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.403993]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712351064.404297]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.404795]: Instances: []\n", - "[INFO] [1712351064.405072]: Direct Instances: []\n", - "[INFO] [1712351064.405451]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712351064.405709]: -------------------\n", - "[INFO] [1712351064.405958]: SOMA.Knowledge \n", - "[INFO] [1712351064.406209]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712351064.406462]: Ancestors: {DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.406720]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712351064.407007]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.407529]: Instances: []\n", - "[INFO] [1712351064.407799]: Direct Instances: []\n", - "[INFO] [1712351064.408966]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712351064.409327]: -------------------\n", - "[INFO] [1712351064.409606]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712351064.409868]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712351064.410156]: Ancestors: {SOMA.ConditionalSuccedence, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Succedence, DUL.Relation}\n", - "[INFO] [1712351064.410415]: Subclasses: []\n", - "[INFO] [1712351064.410712]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.411214]: Instances: []\n", - "[INFO] [1712351064.411484]: Direct Instances: []\n", - "[INFO] [1712351064.411763]: Inverse Restrictions: []\n", - "[INFO] [1712351064.412020]: -------------------\n", - "[INFO] [1712351064.412262]: SOMA.Configuration \n", - "[INFO] [1712351064.412508]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712351064.412782]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Configuration, owl.Thing}\n", - "[INFO] [1712351064.413101]: Subclasses: []\n", - "[INFO] [1712351064.413413]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.413901]: Instances: []\n", - "[INFO] [1712351064.414176]: Direct Instances: []\n", - "[INFO] [1712351064.414448]: Inverse Restrictions: []\n", - "[INFO] [1712351064.414693]: -------------------\n", - "[INFO] [1712351064.414932]: SOMA.Connectivity \n", - "[INFO] [1712351064.415176]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712351064.415425]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", - "[INFO] [1712351064.415686]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712351064.415986]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.416477]: Instances: []\n", - "[INFO] [1712351064.416730]: Direct Instances: []\n", - "[INFO] [1712351064.417121]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712351064.417418]: -------------------\n", - "[INFO] [1712351064.417684]: SOMA.ContactState \n", - "[INFO] [1712351064.417967]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712351064.418244]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, SOMA.ContactState, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.418494]: Subclasses: []\n", - "[INFO] [1712351064.418788]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.419292]: Instances: []\n", - "[INFO] [1712351064.419557]: Direct Instances: []\n", - "[INFO] [1712351064.419812]: Inverse Restrictions: []\n", - "[INFO] [1712351064.420049]: -------------------\n", - "[INFO] [1712351064.420286]: SOMA.Container \n", - "[INFO] [1712351064.420523]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712351064.420808]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, SOMA.Container, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.421063]: Subclasses: []\n", - "[INFO] [1712351064.421355]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.421842]: Instances: []\n", - "[INFO] [1712351064.422112]: Direct Instances: []\n", - "[INFO] [1712351064.422826]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712351064.423082]: -------------------\n", - "[INFO] [1712351064.423321]: SOMA.Containment \n", - "[INFO] [1712351064.423598]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712351064.423887]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Containment, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.424150]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712351064.424446]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.424983]: Instances: []\n", - "[INFO] [1712351064.425281]: Direct Instances: []\n", - "[INFO] [1712351064.425698]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712351064.425965]: -------------------\n", - "[INFO] [1712351064.426215]: SOMA.IncludedObject \n", - "[INFO] [1712351064.426463]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.426731]: Ancestors: {DUL.SocialObject, SOMA.IncludedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.427001]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712351064.427301]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.427795]: Instances: []\n", - "[INFO] [1712351064.428056]: Direct Instances: []\n", - "[INFO] [1712351064.428356]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712351064.428607]: -------------------\n", - "[INFO] [1712351064.428854]: SOMA.ContainmentState \n", - "[INFO] [1712351064.429875]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712351064.430203]: Ancestors: {SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, SOMA.ContainmentState, DUL.Concept, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.430466]: Subclasses: []\n", - "[INFO] [1712351064.430766]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.431260]: Instances: []\n", - "[INFO] [1712351064.431526]: Direct Instances: []\n", - "[INFO] [1712351064.431777]: Inverse Restrictions: []\n", - "[INFO] [1712351064.432016]: -------------------\n", - "[INFO] [1712351064.432252]: SOMA.FunctionalControl \n", - "[INFO] [1712351064.432511]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712351064.432786]: Ancestors: {SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.433064]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712351064.433371]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.433866]: Instances: []\n", - "[INFO] [1712351064.434130]: Direct Instances: []\n", - "[INFO] [1712351064.434393]: Inverse Restrictions: []\n", - "[INFO] [1712351064.434640]: -------------------\n", - "[INFO] [1712351064.434881]: SOMA.ContainmentTheory \n", - "[INFO] [1712351064.435112]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712351064.435393]: Ancestors: {SOMA.ContainmentTheory, DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.435659]: Subclasses: []\n", - "[INFO] [1712351064.435956]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.436444]: Instances: []\n", - "[INFO] [1712351064.436713]: Direct Instances: []\n", - "[INFO] [1712351064.436967]: Inverse Restrictions: []\n", - "[INFO] [1712351064.437208]: -------------------\n", - "[INFO] [1712351064.437443]: SOMA.ControlTheory \n", - "[INFO] [1712351064.437676]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712351064.437921]: Ancestors: {DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.438184]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712351064.438479]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.438974]: Instances: []\n", - "[INFO] [1712351064.439226]: Direct Instances: []\n", - "[INFO] [1712351064.439473]: Inverse Restrictions: []\n", - "[INFO] [1712351064.439712]: -------------------\n", - "[INFO] [1712351064.439956]: SOMA.ContinuousJoint \n", - "[INFO] [1712351064.440198]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712351064.440479]: Ancestors: {SOMA.MovableJoint, DUL.Object, SOMA.ContinuousJoint, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.440749]: Subclasses: []\n", - "[INFO] [1712351064.441139]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.441659]: Instances: []\n", - "[INFO] [1712351064.441942]: Direct Instances: []\n", - "[INFO] [1712351064.442204]: Inverse Restrictions: []\n", - "[INFO] [1712351064.442444]: -------------------\n", - "[INFO] [1712351064.442681]: SOMA.HingeJoint \n", - "[INFO] [1712351064.442909]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712351064.443151]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.443416]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712351064.443708]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.444197]: Instances: []\n", - "[INFO] [1712351064.444478]: Direct Instances: []\n", - "[INFO] [1712351064.444745]: Inverse Restrictions: []\n", - "[INFO] [1712351064.445068]: -------------------\n", - "[INFO] [1712351064.445358]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712351064.445652]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712351064.445924]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.446186]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712351064.446524]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351064.447063]: Instances: []\n", - "[INFO] [1712351064.447358]: Direct Instances: []\n", - "[INFO] [1712351064.447623]: Inverse Restrictions: []\n", - "[INFO] [1712351064.447867]: -------------------\n", - "[INFO] [1712351064.448117]: SOMA.Cooktop \n", - "[INFO] [1712351064.448359]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.448629]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.448907]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", - "[INFO] [1712351064.449205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.449698]: Instances: []\n", - "[INFO] [1712351064.449972]: Direct Instances: []\n", - "[INFO] [1712351064.450231]: Inverse Restrictions: []\n", - "[INFO] [1712351064.450471]: -------------------\n", - "[INFO] [1712351064.450712]: SOMA.Countertop \n", - "[INFO] [1712351064.450957]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.451225]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, SOMA.Countertop, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.451472]: Subclasses: []\n", - "[INFO] [1712351064.451756]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.452238]: Instances: []\n", - "[INFO] [1712351064.452508]: Direct Instances: []\n", - "[INFO] [1712351064.452760]: Inverse Restrictions: []\n", - "[INFO] [1712351064.453009]: -------------------\n", - "[INFO] [1712351064.453249]: SOMA.Cover \n", - "[INFO] [1712351064.453487]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712351064.453763]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, SOMA.Cover, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.454013]: Subclasses: []\n", - "[INFO] [1712351064.454301]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.454777]: Instances: []\n", - "[INFO] [1712351064.455047]: Direct Instances: []\n", - "[INFO] [1712351064.455351]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712351064.455602]: -------------------\n", - "[INFO] [1712351064.455841]: SOMA.Coverage \n", - "[INFO] [1712351064.456100]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712351064.456387]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Coverage, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.456640]: Subclasses: []\n", - "[INFO] [1712351064.456941]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.457428]: Instances: []\n", - "[INFO] [1712351064.457701]: Direct Instances: []\n", - "[INFO] [1712351064.457957]: Inverse Restrictions: []\n", - "[INFO] [1712351064.458199]: -------------------\n", - "[INFO] [1712351064.458436]: SOMA.CoveredObject \n", - "[INFO] [1712351064.458688]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712351064.458956]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.BlockedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CoveredObject, owl.Thing}\n", - "[INFO] [1712351064.459214]: Subclasses: []\n", - "[INFO] [1712351064.459509]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.459995]: Instances: []\n", - "[INFO] [1712351064.460250]: Direct Instances: []\n", - "[INFO] [1712351064.460540]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712351064.460803]: -------------------\n", - "[INFO] [1712351064.461053]: SOMA.CoverageTheory \n", - "[INFO] [1712351064.461296]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712351064.461562]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, SOMA.CoverageTheory, DUL.Theory}\n", - "[INFO] [1712351064.461806]: Subclasses: []\n", - "[INFO] [1712351064.462107]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.462601]: Instances: []\n", - "[INFO] [1712351064.462877]: Direct Instances: []\n", - "[INFO] [1712351064.463147]: Inverse Restrictions: []\n", - "[INFO] [1712351064.463393]: -------------------\n", - "[INFO] [1712351064.463635]: SOMA.CoveringTheory \n", - "[INFO] [1712351064.463877]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712351064.464148]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CoveringTheory, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.464412]: Subclasses: []\n", - "[INFO] [1712351064.464715]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351064.465206]: Instances: []\n", - "[INFO] [1712351064.465481]: Direct Instances: []\n", - "[INFO] [1712351064.465739]: Inverse Restrictions: []\n", - "[INFO] [1712351064.465978]: -------------------\n", - "[INFO] [1712351064.466217]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712351064.466461]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712351064.466706]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.466971]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712351064.467268]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351064.467760]: Instances: []\n", - "[INFO] [1712351064.468035]: Direct Instances: []\n", - "[INFO] [1712351064.468291]: Inverse Restrictions: []\n", - "[INFO] [1712351064.468531]: -------------------\n", - "[INFO] [1712351064.468769]: SOMA.CrackingTheory \n", - "[INFO] [1712351064.469018]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712351064.469294]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CrackingTheory, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.469544]: Subclasses: []\n", - "[INFO] [1712351064.469838]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351064.470323]: Instances: []\n", - "[INFO] [1712351064.470591]: Direct Instances: []\n", - "[INFO] [1712351064.470848]: Inverse Restrictions: []\n", - "[INFO] [1712351064.471087]: -------------------\n", - "[INFO] [1712351064.471323]: SOMA.Creation \n", - "[INFO] [1712351064.471561]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712351064.471834]: Ancestors: {DUL.SocialObject, SOMA.Creation, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.472086]: Subclasses: []\n", - "[INFO] [1712351064.472377]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.472858]: Instances: []\n", - "[INFO] [1712351064.473133]: Direct Instances: []\n", - "[INFO] [1712351064.473397]: Inverse Restrictions: []\n", - "[INFO] [1712351064.473852]: -------------------\n", - "[INFO] [1712351064.474164]: SOMA.Tableware \n", - "[INFO] [1712351064.474424]: Super classes: [SOMA.DesignedTool]\n", - "[INFO] [1712351064.474699]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.474964]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", - "[INFO] [1712351064.475260]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.475797]: Instances: []\n", - "[INFO] [1712351064.476117]: Direct Instances: []\n", - "[INFO] [1712351064.476394]: Inverse Restrictions: []\n", - "[INFO] [1712351064.476645]: -------------------\n", - "[INFO] [1712351064.476896]: SOMA.Insertion \n", - "[INFO] [1712351064.477184]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712351064.477489]: Ancestors: {SOMA.Extrinsic, SOMA.Insertion, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.477760]: Subclasses: []\n", - "[INFO] [1712351064.478068]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.478572]: Instances: []\n", - "[INFO] [1712351064.478848]: Direct Instances: []\n", - "[INFO] [1712351064.479387]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712351064.479654]: -------------------\n", - "[INFO] [1712351064.479918]: SOMA.Cup \n", - "[INFO] [1712351064.480181]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712351064.480460]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Cup, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351064.480708]: Subclasses: []\n", - "[INFO] [1712351064.481133]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.481707]: Instances: []\n", - "[INFO] [1712351064.482014]: Direct Instances: []\n", - "[INFO] [1712351064.482292]: Inverse Restrictions: []\n", - "[INFO] [1712351064.482550]: -------------------\n", - "[INFO] [1712351064.482803]: SOMA.DesignedHandle \n", - "[INFO] [1712351064.483083]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", - "[INFO] [1712351064.483376]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.DesignedHandle, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.483637]: Subclasses: []\n", - "[INFO] [1712351064.483937]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.484441]: Instances: []\n", - "[INFO] [1712351064.484719]: Direct Instances: []\n", - "[INFO] [1712351064.485085]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", - "[INFO] [1712351064.485350]: -------------------\n", - "[INFO] [1712351064.485627]: SOMA.Cupboard \n", - "[INFO] [1712351064.485910]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", - "[INFO] [1712351064.486200]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, SOMA.Cupboard, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.486468]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", - "[INFO] [1712351064.486774]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.487284]: Instances: []\n", - "[INFO] [1712351064.487561]: Direct Instances: []\n", - "[INFO] [1712351064.487833]: Inverse Restrictions: []\n", - "[INFO] [1712351064.488079]: -------------------\n", - "[INFO] [1712351064.488326]: SOMA.DesignedFurniture \n", - "[INFO] [1712351064.488569]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712351064.488842]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.489120]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712351064.489426]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.489938]: Instances: []\n", - "[INFO] [1712351064.490222]: Direct Instances: []\n", - "[INFO] [1712351064.490494]: Inverse Restrictions: []\n", - "[INFO] [1712351064.490746]: -------------------\n", - "[INFO] [1712351064.490993]: SOMA.Rack \n", - "[INFO] [1712351064.491236]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.491509]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, SOMA.Rack, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.491781]: Subclasses: []\n", - "[INFO] [1712351064.492086]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.492580]: Instances: []\n", - "[INFO] [1712351064.492859]: Direct Instances: []\n", - "[INFO] [1712351064.493141]: Inverse Restrictions: [SOMA.Cupboard]\n", - "[INFO] [1712351064.493409]: -------------------\n", - "[INFO] [1712351064.493665]: SOMA.Cutlery \n", - "[INFO] [1712351064.493912]: Super classes: [SOMA.Tableware]\n", - "[INFO] [1712351064.494184]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.494444]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", - "[INFO] [1712351064.494733]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.495252]: Instances: []\n", - "[INFO] [1712351064.495522]: Direct Instances: []\n", - "[INFO] [1712351064.495786]: Inverse Restrictions: []\n", - "[INFO] [1712351064.496043]: -------------------\n", - "[INFO] [1712351064.496312]: SOMA.Cuttability \n", - "[INFO] [1712351064.496622]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712351064.496923]: Ancestors: {SOMA.Extrinsic, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.497196]: Subclasses: []\n", - "[INFO] [1712351064.497528]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.498049]: Instances: []\n", - "[INFO] [1712351064.498328]: Direct Instances: []\n", - "[INFO] [1712351064.498594]: Inverse Restrictions: []\n", - "[INFO] [1712351064.498844]: -------------------\n", - "[INFO] [1712351064.499094]: SOMA.Tool \n", - "[INFO] [1712351064.499352]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712351064.499627]: Ancestors: {SOMA.Tool, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.499893]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712351064.500196]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.500695]: Instances: []\n", - "[INFO] [1712351064.500990]: Direct Instances: []\n", - "[INFO] [1712351064.501298]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712351064.501546]: -------------------\n", - "[INFO] [1712351064.501793]: SOMA.Cutting \n", - "[INFO] [1712351064.502031]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712351064.502317]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", - "[INFO] [1712351064.502587]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712351064.502886]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.503381]: Instances: []\n", - "[INFO] [1712351064.503662]: Direct Instances: []\n", - "[INFO] [1712351064.503926]: Inverse Restrictions: []\n", - "[INFO] [1712351064.504169]: -------------------\n", - "[INFO] [1712351064.504413]: SOMA.CuttingTool \n", - "[INFO] [1712351064.504669]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", - "[INFO] [1712351064.504930]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.CuttingTool, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.505199]: Subclasses: [SOMA.Knife]\n", - "[INFO] [1712351064.505499]: Properties: [SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.505996]: Instances: []\n", - "[INFO] [1712351064.506259]: Direct Instances: []\n", - "[INFO] [1712351064.506512]: Inverse Restrictions: []\n", - "[INFO] [1712351064.506768]: -------------------\n", - "[INFO] [1712351064.507017]: SOMA.DesignedTool \n", - "[INFO] [1712351064.507260]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712351064.507506]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.507758]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712351064.508053]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.508611]: Instances: []\n", - "[INFO] [1712351064.508890]: Direct Instances: []\n", - "[INFO] [1712351064.509154]: Inverse Restrictions: []\n", - "[INFO] [1712351064.509402]: -------------------\n", - "[INFO] [1712351064.509647]: SOMA.Shaping \n", - "[INFO] [1712351064.509939]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712351064.510228]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Shaping, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.510490]: Subclasses: []\n", - "[INFO] [1712351064.510793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.511302]: Instances: []\n", - "[INFO] [1712351064.511574]: Direct Instances: []\n", - "[INFO] [1712351064.511859]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712351064.512111]: -------------------\n", - "[INFO] [1712351064.512356]: SOMA.Database \n", - "[INFO] [1712351064.512592]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351064.512881]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, DUL.Role, owl.Thing}\n", - "[INFO] [1712351064.513187]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712351064.513495]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.513994]: Instances: []\n", - "[INFO] [1712351064.514290]: Direct Instances: []\n", - "[INFO] [1712351064.514571]: Inverse Restrictions: []\n", - "[INFO] [1712351064.514825]: -------------------\n", - "[INFO] [1712351064.515078]: SOMA.SoftwareRole \n", - "[INFO] [1712351064.515346]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712351064.515612]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, owl.Thing}\n", - "[INFO] [1712351064.515890]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712351064.516201]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.516748]: Instances: []\n", - "[INFO] [1712351064.517038]: Direct Instances: []\n", - "[INFO] [1712351064.517354]: Inverse Restrictions: []\n", - "[INFO] [1712351064.517603]: -------------------\n", - "[INFO] [1712351064.517853]: SOMA.Deciding \n", - "[INFO] [1712351064.518113]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351064.518393]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding}\n", - "[INFO] [1712351064.518674]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712351064.518970]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351064.519478]: Instances: []\n", - "[INFO] [1712351064.519743]: Direct Instances: []\n", - "[INFO] [1712351064.519997]: Inverse Restrictions: []\n", - "[INFO] [1712351064.520241]: -------------------\n", - "[INFO] [1712351064.520477]: SOMA.DerivingInformation \n", - "[INFO] [1712351064.520732]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712351064.520993]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712351064.521256]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712351064.521551]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712351064.522082]: Instances: []\n", - "[INFO] [1712351064.522351]: Direct Instances: []\n", - "[INFO] [1712351064.522605]: Inverse Restrictions: []\n", - "[INFO] [1712351064.522848]: -------------------\n", - "[INFO] [1712351064.523102]: SOMA.DeductiveReasoning \n", - "[INFO] [1712351064.523347]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712351064.523611]: Ancestors: {SOMA.Reasoning, SOMA.DeductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351064.523857]: Subclasses: []\n", - "[INFO] [1712351064.524142]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.524631]: Instances: []\n", - "[INFO] [1712351064.524903]: Direct Instances: []\n", - "[INFO] [1712351064.525159]: Inverse Restrictions: []\n", - "[INFO] [1712351064.525395]: -------------------\n", - "[INFO] [1712351064.525635]: SOMA.Deformation \n", - "[INFO] [1712351064.525900]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712351064.526180]: Ancestors: {SOMA.Alteration, SOMA.Deformation, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.526431]: Subclasses: []\n", - "[INFO] [1712351064.526730]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.527214]: Instances: []\n", - "[INFO] [1712351064.527486]: Direct Instances: []\n", - "[INFO] [1712351064.527748]: Inverse Restrictions: []\n", - "[INFO] [1712351064.528002]: -------------------\n", - "[INFO] [1712351064.528252]: SOMA.ShapedObject \n", - "[INFO] [1712351064.528535]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712351064.528826]: Ancestors: {SOMA.ShapedObject, DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.529106]: Subclasses: []\n", - "[INFO] [1712351064.529421]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment]\n", - "[INFO] [1712351064.529962]: Instances: []\n", - "[INFO] [1712351064.530232]: Direct Instances: []\n", - "[INFO] [1712351064.530558]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712351064.530811]: -------------------\n", - "[INFO] [1712351064.531067]: SOMA.FluidFlow \n", - "[INFO] [1712351064.531332]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712351064.531609]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.FluidFlow, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.531871]: Subclasses: []\n", - "[INFO] [1712351064.532175]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.532666]: Instances: []\n", - "[INFO] [1712351064.532921]: Direct Instances: []\n", - "[INFO] [1712351064.533171]: Inverse Restrictions: []\n", - "[INFO] [1712351064.533411]: -------------------\n", - "[INFO] [1712351064.533661]: SOMA.Shifting \n", - "[INFO] [1712351064.533933]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712351064.534217]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, SOMA.Shifting, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.534474]: Subclasses: []\n", - "[INFO] [1712351064.534769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.535262]: Instances: []\n", - "[INFO] [1712351064.535532]: Direct Instances: []\n", - "[INFO] [1712351064.535864]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712351064.536112]: -------------------\n", - "[INFO] [1712351064.536345]: SOMA.DependentPlace \n", - "[INFO] [1712351064.536579]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712351064.536853]: Ancestors: {SOMA.Feature, SOMA.DependentPlace, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.537105]: Subclasses: []\n", - "[INFO] [1712351064.537394]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.537878]: Instances: []\n", - "[INFO] [1712351064.538148]: Direct Instances: []\n", - "[INFO] [1712351064.538397]: Inverse Restrictions: []\n", - "[INFO] [1712351064.538635]: -------------------\n", - "[INFO] [1712351064.538866]: SOMA.Deposit \n", - "[INFO] [1712351064.539097]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712351064.539372]: Ancestors: {SOMA.Instrument, SOMA.Deposit, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.539625]: Subclasses: []\n", - "[INFO] [1712351064.539915]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.540393]: Instances: []\n", - "[INFO] [1712351064.540666]: Direct Instances: []\n", - "[INFO] [1712351064.540966]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712351064.541216]: -------------------\n", - "[INFO] [1712351064.541457]: SOMA.DepositedObject \n", - "[INFO] [1712351064.541690]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.541965]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.DepositedObject}\n", - "[INFO] [1712351064.542217]: Subclasses: []\n", - "[INFO] [1712351064.542506]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.542988]: Instances: []\n", - "[INFO] [1712351064.543259]: Direct Instances: []\n", - "[INFO] [1712351064.543553]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712351064.543801]: -------------------\n", - "[INFO] [1712351064.544041]: SOMA.InformationAcquisition \n", - "[INFO] [1712351064.544278]: Super classes: [owl.Thing]\n", - "[INFO] [1712351064.544518]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351064.544788]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712351064.545090]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.545622]: Instances: []\n", - "[INFO] [1712351064.545895]: Direct Instances: []\n", - "[INFO] [1712351064.546193]: Inverse Restrictions: []\n", - "[INFO] [1712351064.546457]: -------------------\n", - "[INFO] [1712351064.546698]: SOMA.Premise \n", - "[INFO] [1712351064.546932]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712351064.547210]: Ancestors: {DUL.SocialObject, SOMA.Premise, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.547467]: Subclasses: []\n", - "[INFO] [1712351064.547759]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.548237]: Instances: []\n", - "[INFO] [1712351064.548487]: Direct Instances: []\n", - "[INFO] [1712351064.548780]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351064.549037]: -------------------\n", - "[INFO] [1712351064.549285]: SOMA.FunctionalPart \n", - "[INFO] [1712351064.549938]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712351064.550216]: Ancestors: {DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.550487]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712351064.550783]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.551326]: Instances: []\n", - "[INFO] [1712351064.551601]: Direct Instances: []\n", - "[INFO] [1712351064.551866]: Inverse Restrictions: []\n", - "[INFO] [1712351064.552112]: -------------------\n", - "[INFO] [1712351064.552352]: SOMA.Graspability \n", - "[INFO] [1712351064.552585]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712351064.552852]: Ancestors: {SOMA.Extrinsic, SOMA.Graspability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.553118]: Subclasses: []\n", - "[INFO] [1712351064.553693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.554378]: Instances: []\n", - "[INFO] [1712351064.554770]: Direct Instances: []\n", - "[INFO] [1712351064.555181]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712351064.555567]: -------------------\n", - "[INFO] [1712351064.555951]: SOMA.DesignedSpade \n", - "[INFO] [1712351064.556313]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.556704]: Ancestors: {SOMA.DesignedSpade, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.556994]: Subclasses: []\n", - "[INFO] [1712351064.557419]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.557935]: Instances: []\n", - "[INFO] [1712351064.558222]: Direct Instances: []\n", - "[INFO] [1712351064.558511]: Inverse Restrictions: [SOMA.Spatula]\n", - "[INFO] [1712351064.558760]: -------------------\n", - "[INFO] [1712351064.558999]: SOMA.DessertFork \n", - "[INFO] [1712351064.559232]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712351064.559510]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DessertFork, SOMA.Fork, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.559773]: Subclasses: []\n", - "[INFO] [1712351064.560065]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.560564]: Instances: []\n", - "[INFO] [1712351064.560830]: Direct Instances: []\n", - "[INFO] [1712351064.561079]: Inverse Restrictions: []\n", - "[INFO] [1712351064.561327]: -------------------\n", - "[INFO] [1712351064.561569]: SOMA.Fork \n", - "[INFO] [1712351064.561812]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712351064.562073]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.Fork, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.562321]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", - "[INFO] [1712351064.562606]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.563127]: Instances: []\n", - "[INFO] [1712351064.563404]: Direct Instances: []\n", - "[INFO] [1712351064.563661]: Inverse Restrictions: []\n", - "[INFO] [1712351064.563902]: -------------------\n", - "[INFO] [1712351064.564139]: SOMA.Destination \n", - "[INFO] [1712351064.564376]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712351064.564636]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, SOMA.Destination, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.564895]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712351064.565187]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.565694]: Instances: []\n", - "[INFO] [1712351064.565983]: Direct Instances: []\n", - "[INFO] [1712351064.566323]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712351064.566577]: -------------------\n", - "[INFO] [1712351064.566815]: SOMA.Location \n", - "[INFO] [1712351064.567064]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712351064.567321]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.567581]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712351064.567874]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.568375]: Instances: []\n", - "[INFO] [1712351064.568639]: Direct Instances: []\n", - "[INFO] [1712351064.568900]: Inverse Restrictions: []\n", - "[INFO] [1712351064.569141]: -------------------\n", - "[INFO] [1712351064.569376]: SOMA.DestroyedObject \n", - "[INFO] [1712351064.569606]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.569883]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DestroyedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.570134]: Subclasses: []\n", - "[INFO] [1712351064.570424]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.570906]: Instances: []\n", - "[INFO] [1712351064.571171]: Direct Instances: []\n", - "[INFO] [1712351064.571470]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712351064.571717]: -------------------\n", - "[INFO] [1712351064.571954]: SOMA.Destruction \n", - "[INFO] [1712351064.572192]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712351064.572461]: Ancestors: {DUL.SocialObject, SOMA.Destruction, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.572711]: Subclasses: []\n", - "[INFO] [1712351064.573006]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.573492]: Instances: []\n", - "[INFO] [1712351064.573756]: Direct Instances: []\n", - "[INFO] [1712351064.574011]: Inverse Restrictions: []\n", - "[INFO] [1712351064.574252]: -------------------\n", - "[INFO] [1712351064.574488]: SOMA.DetectedObject \n", - "[INFO] [1712351064.574727]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.574993]: Ancestors: {SOMA.DetectedObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.575256]: Subclasses: []\n", - "[INFO] [1712351064.575554]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.576059]: Instances: []\n", - "[INFO] [1712351064.576330]: Direct Instances: []\n", - "[INFO] [1712351064.576581]: Inverse Restrictions: []\n", - "[INFO] [1712351064.576820]: -------------------\n", - "[INFO] [1712351064.577059]: SOMA.DeviceState \n", - "[INFO] [1712351064.577293]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351064.577563]: Ancestors: {SOMA.DeviceState, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351064.577819]: Subclasses: []\n", - "[INFO] [1712351064.578107]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.578580]: Instances: []\n", - "[INFO] [1712351064.578830]: Direct Instances: []\n", - "[INFO] [1712351064.579083]: Inverse Restrictions: []\n", - "[INFO] [1712351064.579324]: -------------------\n", - "[INFO] [1712351064.579560]: SOMA.DeviceStateRange \n", - "[INFO] [1712351064.579798]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351064.580649]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", - "[INFO] [1712351064.580928]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712351064.581236]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.581724]: Instances: []\n", - "[INFO] [1712351064.582004]: Direct Instances: []\n", - "[INFO] [1712351064.582268]: Inverse Restrictions: []\n", - "[INFO] [1712351064.582511]: -------------------\n", - "[INFO] [1712351064.582750]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712351064.582987]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712351064.583282]: Ancestors: {SOMA.DeviceTurnedOff, DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", - "[INFO] [1712351064.583537]: Subclasses: []\n", - "[INFO] [1712351064.583827]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.584311]: Instances: []\n", - "[INFO] [1712351064.584591]: Direct Instances: []\n", - "[INFO] [1712351064.584895]: Inverse Restrictions: []\n", - "[INFO] [1712351064.585152]: -------------------\n", - "[INFO] [1712351064.585397]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712351064.585633]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712351064.585899]: Ancestors: {SOMA.DeviceTurnedOn, DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", - "[INFO] [1712351064.586150]: Subclasses: []\n", - "[INFO] [1712351064.586443]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.586941]: Instances: []\n", - "[INFO] [1712351064.587206]: Direct Instances: []\n", - "[INFO] [1712351064.587498]: Inverse Restrictions: []\n", - "[INFO] [1712351064.587768]: -------------------\n", - "[INFO] [1712351064.588009]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712351064.588247]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712351064.588498]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351064.588761]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712351064.589060]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.589555]: Instances: []\n", - "[INFO] [1712351064.589835]: Direct Instances: []\n", - "[INFO] [1712351064.590099]: Inverse Restrictions: []\n", - "[INFO] [1712351064.590342]: -------------------\n", - "[INFO] [1712351064.590577]: SOMA.Dicing \n", - "[INFO] [1712351064.590812]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712351064.591078]: Ancestors: {SOMA.ModifyingPhysicalObject, SOMA.Dicing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", - "[INFO] [1712351064.591341]: Subclasses: []\n", - "[INFO] [1712351064.591635]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.592121]: Instances: []\n", - "[INFO] [1712351064.592373]: Direct Instances: []\n", - "[INFO] [1712351064.592613]: Inverse Restrictions: []\n", - "[INFO] [1712351064.592859]: -------------------\n", - "[INFO] [1712351064.593105]: SOMA.DinnerPlate \n", - "[INFO] [1712351064.593344]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712351064.593608]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, owl.Thing, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.DinnerPlate, SOMA.Plate, SOMA.Crockery}\n", - "[INFO] [1712351064.593854]: Subclasses: []\n", - "[INFO] [1712351064.594159]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.594646]: Instances: []\n", - "[INFO] [1712351064.594913]: Direct Instances: []\n", - "[INFO] [1712351064.595169]: Inverse Restrictions: []\n", - "[INFO] [1712351064.595409]: -------------------\n", - "[INFO] [1712351064.595645]: SOMA.DirectedMotion \n", - "[INFO] [1712351064.595875]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712351064.596119]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.596426]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712351064.596749]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.597279]: Instances: []\n", - "[INFO] [1712351064.597558]: Direct Instances: []\n", - "[INFO] [1712351064.597830]: Inverse Restrictions: []\n", - "[INFO] [1712351064.598073]: -------------------\n", - "[INFO] [1712351064.598313]: SOMA.UndirectedMotion \n", - "[INFO] [1712351064.598548]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712351064.598813]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.UndirectedMotion, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.599076]: Subclasses: []\n", - "[INFO] [1712351064.599371]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.599857]: Instances: []\n", - "[INFO] [1712351064.600115]: Direct Instances: []\n", - "[INFO] [1712351064.600363]: Inverse Restrictions: []\n", - "[INFO] [1712351064.600599]: -------------------\n", - "[INFO] [1712351064.600842]: SOMA.Dirty \n", - "[INFO] [1712351064.601078]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712351064.601335]: Ancestors: {SOMA.CleanlinessRegion, SOMA.Dirty, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351064.601576]: Subclasses: []\n", - "[INFO] [1712351064.601871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.602353]: Instances: []\n", - "[INFO] [1712351064.602604]: Direct Instances: []\n", - "[INFO] [1712351064.602841]: Inverse Restrictions: []\n", - "[INFO] [1712351064.603080]: -------------------\n", - "[INFO] [1712351064.603316]: SOMA.Discourse \n", - "[INFO] [1712351064.603547]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351064.603803]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, SOMA.Discourse, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.604071]: Subclasses: []\n", - "[INFO] [1712351064.604366]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.604853]: Instances: []\n", - "[INFO] [1712351064.605123]: Direct Instances: []\n", - "[INFO] [1712351064.605379]: Inverse Restrictions: []\n", - "[INFO] [1712351064.605616]: -------------------\n", - "[INFO] [1712351064.605846]: SOMA.Dishwasher \n", - "[INFO] [1712351064.606077]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", - "[INFO] [1712351064.606336]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Appliance, SOMA.Dishwasher, DUL.PhysicalObject}\n", - "[INFO] [1712351064.606592]: Subclasses: []\n", - "[INFO] [1712351064.606886]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.607366]: Instances: []\n", - "[INFO] [1712351064.607619]: Direct Instances: []\n", - "[INFO] [1712351064.607865]: Inverse Restrictions: []\n", - "[INFO] [1712351064.608107]: -------------------\n", - "[INFO] [1712351064.608343]: SOMA.DishwasherTab \n", - "[INFO] [1712351064.608572]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712351064.608854]: Ancestors: {DUL.DesignedArtifact, DUL.Substance, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DishwasherTab, DUL.DesignedSubstance, DUL.PhysicalBody, DUL.FunctionalSubstance, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.609128]: Subclasses: []\n", - "[INFO] [1712351064.609421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.609901]: Instances: []\n", - "[INFO] [1712351064.610172]: Direct Instances: []\n", - "[INFO] [1712351064.610435]: Inverse Restrictions: []\n", - "[INFO] [1712351064.610672]: -------------------\n", - "[INFO] [1712351064.610903]: SOMA.Dispenser \n", - "[INFO] [1712351064.611131]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712351064.611397]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Dispenser, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.611644]: Subclasses: [SOMA.SugarDispenser]\n", - "[INFO] [1712351064.611926]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.612405]: Instances: []\n", - "[INFO] [1712351064.612669]: Direct Instances: []\n", - "[INFO] [1712351064.613032]: Inverse Restrictions: []\n", - "[INFO] [1712351064.613379]: -------------------\n", - "[INFO] [1712351064.613659]: SOMA.Distancing \n", - "[INFO] [1712351064.613925]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712351064.614212]: Ancestors: {DUL.SocialObject, SOMA.Distancing, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.614471]: Subclasses: []\n", - "[INFO] [1712351064.614773]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.615274]: Instances: []\n", - "[INFO] [1712351064.615542]: Direct Instances: []\n", - "[INFO] [1712351064.615808]: Inverse Restrictions: []\n", - "[INFO] [1712351064.616047]: -------------------\n", - "[INFO] [1712351064.616297]: SOMA.Door \n", - "[INFO] [1712351064.616542]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.616815]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Door, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.617064]: Subclasses: []\n", - "[INFO] [1712351064.617345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.617849]: Instances: []\n", - "[INFO] [1712351064.618115]: Direct Instances: []\n", - "[INFO] [1712351064.618400]: Inverse Restrictions: [SOMA.Refrigerator]\n", - "[INFO] [1712351064.618646]: -------------------\n", - "[INFO] [1712351064.618884]: SOMA.Drawer \n", - "[INFO] [1712351064.619117]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", - "[INFO] [1712351064.619391]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalBody, owl.Thing, SOMA.Drawer, DUL.PhysicalObject}\n", - "[INFO] [1712351064.619640]: Subclasses: []\n", - "[INFO] [1712351064.619921]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.620409]: Instances: []\n", - "[INFO] [1712351064.620676]: Direct Instances: []\n", - "[INFO] [1712351064.620929]: Inverse Restrictions: []\n", - "[INFO] [1712351064.621165]: -------------------\n", - "[INFO] [1712351064.621399]: SOMA.Dreaming \n", - "[INFO] [1712351064.621643]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351064.621903]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", - "[INFO] [1712351064.622144]: Subclasses: []\n", - "[INFO] [1712351064.622422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.622918]: Instances: []\n", - "[INFO] [1712351064.623178]: Direct Instances: []\n", - "[INFO] [1712351064.623437]: Inverse Restrictions: []\n", - "[INFO] [1712351064.623672]: -------------------\n", - "[INFO] [1712351064.623906]: SOMA.Driving \n", - "[INFO] [1712351064.624152]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351064.624424]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, SOMA.BodyMovement, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing, SOMA.Driving}\n", - "[INFO] [1712351064.624669]: Subclasses: []\n", - "[INFO] [1712351064.624969]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.625501]: Instances: []\n", - "[INFO] [1712351064.625777]: Direct Instances: []\n", - "[INFO] [1712351064.626032]: Inverse Restrictions: []\n", - "[INFO] [1712351064.626272]: -------------------\n", - "[INFO] [1712351064.626511]: SOMA.Flying \n", - "[INFO] [1712351064.626745]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351064.627019]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.Flying, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.627268]: Subclasses: []\n", - "[INFO] [1712351064.627573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.628062]: Instances: []\n", - "[INFO] [1712351064.628340]: Direct Instances: []\n", - "[INFO] [1712351064.628609]: Inverse Restrictions: []\n", - "[INFO] [1712351064.628859]: -------------------\n", - "[INFO] [1712351064.629108]: SOMA.Swimming \n", - "[INFO] [1712351064.629348]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351064.629620]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, SOMA.Swimming, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.629883]: Subclasses: []\n", - "[INFO] [1712351064.630185]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.630687]: Instances: []\n", - "[INFO] [1712351064.630954]: Direct Instances: []\n", - "[INFO] [1712351064.631216]: Inverse Restrictions: []\n", - "[INFO] [1712351064.631472]: -------------------\n", - "[INFO] [1712351064.631713]: SOMA.Walking \n", - "[INFO] [1712351064.631962]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351064.632243]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, SOMA.Walking, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.632498]: Subclasses: []\n", - "[INFO] [1712351064.632790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.633283]: Instances: []\n", - "[INFO] [1712351064.633565]: Direct Instances: []\n", - "[INFO] [1712351064.633824]: Inverse Restrictions: []\n", - "[INFO] [1712351064.634068]: -------------------\n", - "[INFO] [1712351064.634307]: SOMA.Dropping \n", - "[INFO] [1712351064.634545]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.634819]: Ancestors: {DUL.SocialObject, SOMA.Dropping, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.635068]: Subclasses: []\n", - "[INFO] [1712351064.635364]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.635861]: Instances: []\n", - "[INFO] [1712351064.636132]: Direct Instances: []\n", - "[INFO] [1712351064.636384]: Inverse Restrictions: []\n", - "[INFO] [1712351064.636626]: -------------------\n", - "[INFO] [1712351064.636869]: SOMA.Placing \n", - "[INFO] [1712351064.637173]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351064.637468]: Ancestors: {SOMA.Placing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.637728]: Subclasses: []\n", - "[INFO] [1712351064.638021]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.638501]: Instances: []\n", - "[INFO] [1712351064.638775]: Direct Instances: []\n", - "[INFO] [1712351064.639030]: Inverse Restrictions: []\n", - "[INFO] [1712351064.639272]: -------------------\n", - "[INFO] [1712351064.639508]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712351064.639780]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712351064.640067]: Ancestors: {SOMA.ESTSchemaTheory, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.640323]: Subclasses: []\n", - "[INFO] [1712351064.640622]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351064.641108]: Instances: []\n", - "[INFO] [1712351064.641380]: Direct Instances: []\n", - "[INFO] [1712351064.641713]: Inverse Restrictions: []\n", - "[INFO] [1712351064.642188]: -------------------\n", - "[INFO] [1712351064.642571]: SOMA.ExistingObjectRole \n", - "[INFO] [1712351064.642944]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351064.643343]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.ExistingObjectRole, owl.Thing}\n", - "[INFO] [1712351064.643718]: Subclasses: []\n", - "[INFO] [1712351064.644126]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.644717]: Instances: []\n", - "[INFO] [1712351064.645066]: Direct Instances: []\n", - "[INFO] [1712351064.645395]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712351064.645674]: -------------------\n", - "[INFO] [1712351064.645937]: SOMA.Effort \n", - "[INFO] [1712351064.646186]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712351064.646462]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Effort, owl.Thing}\n", - "[INFO] [1712351064.646715]: Subclasses: []\n", - "[INFO] [1712351064.647010]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.647502]: Instances: []\n", - "[INFO] [1712351064.647764]: Direct Instances: []\n", - "[INFO] [1712351064.648011]: Inverse Restrictions: []\n", - "[INFO] [1712351064.648249]: -------------------\n", - "[INFO] [1712351064.648481]: SOMA.EnclosedObject \n", - "[INFO] [1712351064.648727]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712351064.649002]: Ancestors: {DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.649259]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712351064.649546]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.650041]: Instances: []\n", - "[INFO] [1712351064.650303]: Direct Instances: []\n", - "[INFO] [1712351064.650605]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712351064.650850]: -------------------\n", - "[INFO] [1712351064.651082]: SOMA.Enclosing \n", - "[INFO] [1712351064.651337]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712351064.651591]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.651842]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712351064.652131]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.652631]: Instances: []\n", - "[INFO] [1712351064.652898]: Direct Instances: []\n", - "[INFO] [1712351064.653152]: Inverse Restrictions: []\n", - "[INFO] [1712351064.653389]: -------------------\n", - "[INFO] [1712351064.653622]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712351064.653875]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351064.654148]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.654411]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712351064.654700]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.655180]: Instances: []\n", - "[INFO] [1712351064.655455]: Direct Instances: []\n", - "[INFO] [1712351064.655715]: Inverse Restrictions: []\n", - "[INFO] [1712351064.655954]: -------------------\n", - "[INFO] [1712351064.656188]: SOMA.Manipulating \n", - "[INFO] [1712351064.656443]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712351064.656710]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.656984]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712351064.657275]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.657774]: Instances: []\n", - "[INFO] [1712351064.658047]: Direct Instances: []\n", - "[INFO] [1712351064.658307]: Inverse Restrictions: []\n", - "[INFO] [1712351064.658543]: -------------------\n", - "[INFO] [1712351064.658784]: SOMA.Episode \n", - "[INFO] [1712351064.659015]: Super classes: [DUL.Situation]\n", - "[INFO] [1712351064.659282]: Ancestors: {owl.Thing, SOMA.Episode, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712351064.659540]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712351064.659825]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.660306]: Instances: []\n", - "[INFO] [1712351064.660576]: Direct Instances: []\n", - "[INFO] [1712351064.660841]: Inverse Restrictions: []\n", - "[INFO] [1712351064.661081]: -------------------\n", - "[INFO] [1712351064.661339]: SOMA.ExcludedObject \n", - "[INFO] [1712351064.661752]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.662131]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, SOMA.ExcludedObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.662485]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712351064.662871]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.663472]: Instances: []\n", - "[INFO] [1712351064.663837]: Direct Instances: []\n", - "[INFO] [1712351064.664524]: Inverse Restrictions: []\n", - "[INFO] [1712351064.664912]: -------------------\n", - "[INFO] [1712351064.665268]: SOMA.ExecutableFile \n", - "[INFO] [1712351064.665607]: Super classes: [owl.Thing]\n", - "[INFO] [1712351064.666925]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", - "[INFO] [1712351064.667304]: Subclasses: []\n", - "[INFO] [1712351064.667713]: Properties: [rdf-schema.label, DUL.realizes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.668299]: Instances: []\n", - "[INFO] [1712351064.668651]: Direct Instances: []\n", - "[INFO] [1712351064.669776]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712351064.670076]: -------------------\n", - "[INFO] [1712351064.670336]: SOMA.Executable_Code \n", - "[INFO] [1712351064.670579]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712351064.671780]: Ancestors: {SOMA.Executable_Code, SOMA.Computer_Program, owl.Thing}\n", - "[INFO] [1712351064.672065]: Subclasses: []\n", - "[INFO] [1712351064.672383]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.672876]: Instances: []\n", - "[INFO] [1712351064.673142]: Direct Instances: []\n", - "[INFO] [1712351064.673490]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712351064.673755]: -------------------\n", - "[INFO] [1712351064.674001]: SOMA.ExecutableFormat \n", - "[INFO] [1712351064.674240]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712351064.674508]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.ExecutableFormat, owl.Thing}\n", - "[INFO] [1712351064.674771]: Subclasses: []\n", - "[INFO] [1712351064.675368]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.675967]: Instances: []\n", - "[INFO] [1712351064.676266]: Direct Instances: []\n", - "[INFO] [1712351064.676597]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712351064.676869]: -------------------\n", - "[INFO] [1712351064.677176]: SOMA.SchematicTheory \n", - "[INFO] [1712351064.677457]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712351064.677724]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351064.678000]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712351064.678539]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.679492]: Instances: []\n", - "[INFO] [1712351064.679967]: Direct Instances: []\n", - "[INFO] [1712351064.680423]: Inverse Restrictions: []\n", - "[INFO] [1712351064.680812]: -------------------\n", - "[INFO] [1712351064.681192]: SOMA.ExecutableSoftware \n", - "[INFO] [1712351064.681559]: Super classes: [owl.Thing]\n", - "[INFO] [1712351064.682443]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", - "[INFO] [1712351064.682819]: Subclasses: []\n", - "[INFO] [1712351064.683292]: Properties: [rdf-schema.label, DUL.hasMember, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.684078]: Instances: []\n", - "[INFO] [1712351064.684458]: Direct Instances: []\n", - "[INFO] [1712351064.684837]: Inverse Restrictions: []\n", - "[INFO] [1712351064.685197]: -------------------\n", - "[INFO] [1712351064.685558]: SOMA.Software \n", - "[INFO] [1712351064.685983]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712351064.686504]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Software, owl.Thing}\n", - "[INFO] [1712351064.687020]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712351064.687528]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351064.688432]: Instances: []\n", - "[INFO] [1712351064.688965]: Direct Instances: []\n", - "[INFO] [1712351064.689529]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351064.689921]: -------------------\n", - "[INFO] [1712351064.690214]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712351064.690486]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712351064.690747]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.691012]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712351064.691312]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.691831]: Instances: []\n", - "[INFO] [1712351064.692100]: Direct Instances: []\n", - "[INFO] [1712351064.692355]: Inverse Restrictions: []\n", - "[INFO] [1712351064.692590]: -------------------\n", - "[INFO] [1712351064.692850]: SOMA.ExperiencerRole \n", - "[INFO] [1712351064.693111]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712351064.693373]: Ancestors: {DUL.SocialObject, SOMA.EventAdjacentRole, SOMA.PerformerRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.ExperiencerRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351064.693634]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712351064.693927]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.694453]: Instances: []\n", - "[INFO] [1712351064.694736]: Direct Instances: []\n", - "[INFO] [1712351064.694992]: Inverse Restrictions: []\n", - "[INFO] [1712351064.695331]: -------------------\n", - "[INFO] [1712351064.695601]: SOMA.ExtractedObject \n", - "[INFO] [1712351064.695860]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.696141]: Ancestors: {SOMA.ExtractedObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.696390]: Subclasses: []\n", - "[INFO] [1712351064.696676]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.697203]: Instances: []\n", - "[INFO] [1712351064.697477]: Direct Instances: []\n", - "[INFO] [1712351064.697733]: Inverse Restrictions: []\n", - "[INFO] [1712351064.697973]: -------------------\n", - "[INFO] [1712351064.698215]: SOMA.PhysicalQuality \n", - "[INFO] [1712351064.698458]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712351064.698700]: Ancestors: {DUL.Entity, owl.Thing, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712351064.698943]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712351064.699227]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf]\n", - "[INFO] [1712351064.699799]: Instances: []\n", - "[INFO] [1712351064.700063]: Direct Instances: []\n", - "[INFO] [1712351064.700317]: Inverse Restrictions: []\n", - "[INFO] [1712351064.700560]: -------------------\n", - "[INFO] [1712351064.700797]: SOMA.FailedAttempt \n", - "[INFO] [1712351064.701043]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712351064.701327]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.FailedAttempt, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351064.701598]: Subclasses: []\n", - "[INFO] [1712351064.701889]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.702391]: Instances: []\n", - "[INFO] [1712351064.702655]: Direct Instances: []\n", - "[INFO] [1712351064.702900]: Inverse Restrictions: []\n", - "[INFO] [1712351064.703128]: -------------------\n", - "[INFO] [1712351064.703355]: SOMA.FaultySoftware \n", - "[INFO] [1712351064.703591]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712351064.703884]: Ancestors: {DUL.Description, SOMA.FaultySoftware, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.704131]: Subclasses: []\n", - "[INFO] [1712351064.704412]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.704912]: Instances: []\n", - "[INFO] [1712351064.705180]: Direct Instances: []\n", - "[INFO] [1712351064.705429]: Inverse Restrictions: []\n", - "[INFO] [1712351064.705657]: -------------------\n", - "[INFO] [1712351064.705881]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712351064.706107]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712351064.706352]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.706605]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712351064.706883]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.707382]: Instances: []\n", - "[INFO] [1712351064.707642]: Direct Instances: []\n", - "[INFO] [1712351064.707890]: Inverse Restrictions: []\n", - "[INFO] [1712351064.708132]: -------------------\n", - "[INFO] [1712351064.708367]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712351064.708596]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712351064.708844]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PhysicalAcquiring, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.709093]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712351064.709403]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.709901]: Instances: []\n", - "[INFO] [1712351064.710160]: Direct Instances: []\n", - "[INFO] [1712351064.710412]: Inverse Restrictions: []\n", - "[INFO] [1712351064.710649]: -------------------\n", - "[INFO] [1712351064.710890]: SOMA.Finger \n", - "[INFO] [1712351064.711150]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712351064.711422]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Finger, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712351064.711665]: Subclasses: []\n", - "[INFO] [1712351064.711947]: Properties: [DUL.isPartOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.712445]: Instances: []\n", - "[INFO] [1712351064.712724]: Direct Instances: []\n", - "[INFO] [1712351064.712972]: Inverse Restrictions: []\n", - "[INFO] [1712351064.713209]: -------------------\n", - "[INFO] [1712351064.713454]: SOMA.Hand \n", - "[INFO] [1712351064.713686]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712351064.713958]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, SOMA.Hand, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.714196]: Subclasses: []\n", - "[INFO] [1712351064.714477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.714974]: Instances: []\n", - "[INFO] [1712351064.715237]: Direct Instances: []\n", - "[INFO] [1712351064.715527]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712351064.715765]: -------------------\n", - "[INFO] [1712351064.715993]: SOMA.FixedJoint \n", - "[INFO] [1712351064.716251]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712351064.716531]: Ancestors: {SOMA.FixedJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.716783]: Subclasses: []\n", - "[INFO] [1712351064.717088]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.717581]: Instances: []\n", - "[INFO] [1712351064.717847]: Direct Instances: []\n", - "[INFO] [1712351064.718132]: Inverse Restrictions: []\n", - "[INFO] [1712351064.718369]: -------------------\n", - "[INFO] [1712351064.718611]: SOMA.MovableJoint \n", - "[INFO] [1712351064.718859]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712351064.719101]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.719355]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712351064.719644]: Properties: [rdf-schema.label, SOMA.hasJointState, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.720138]: Instances: []\n", - "[INFO] [1712351064.720403]: Direct Instances: []\n", - "[INFO] [1712351064.720695]: Inverse Restrictions: []\n", - "[INFO] [1712351064.720937]: -------------------\n", - "[INFO] [1712351064.721176]: SOMA.Flipping \n", - "[INFO] [1712351064.721412]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712351064.721677]: Ancestors: {SOMA.Flipping, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.721917]: Subclasses: []\n", - "[INFO] [1712351064.722201]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.722692]: Instances: []\n", - "[INFO] [1712351064.722960]: Direct Instances: []\n", - "[INFO] [1712351064.723210]: Inverse Restrictions: []\n", - "[INFO] [1712351064.723445]: -------------------\n", - "[INFO] [1712351064.723678]: SOMA.FloatingJoint \n", - "[INFO] [1712351064.723904]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712351064.724178]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, SOMA.FloatingJoint, DUL.PhysicalObject}\n", - "[INFO] [1712351064.724427]: Subclasses: []\n", - "[INFO] [1712351064.724717]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.725214]: Instances: []\n", - "[INFO] [1712351064.725500]: Direct Instances: []\n", - "[INFO] [1712351064.725760]: Inverse Restrictions: []\n", - "[INFO] [1712351064.725999]: -------------------\n", - "[INFO] [1712351064.726238]: SOMA.Fluid \n", - "[INFO] [1712351064.726471]: Super classes: [DUL.Substance]\n", - "[INFO] [1712351064.726732]: Ancestors: {DUL.Substance, DUL.Object, DUL.Entity, SOMA.Fluid, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.726995]: Subclasses: []\n", - "[INFO] [1712351064.727291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.727776]: Instances: []\n", - "[INFO] [1712351064.728045]: Direct Instances: []\n", - "[INFO] [1712351064.728355]: Inverse Restrictions: []\n", - "[INFO] [1712351064.728611]: -------------------\n", - "[INFO] [1712351064.728865]: SOMA.MovedObject \n", - "[INFO] [1712351064.729148]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712351064.729437]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, SOMA.MovedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.729688]: Subclasses: []\n", - "[INFO] [1712351064.729987]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment]\n", - "[INFO] [1712351064.730466]: Instances: []\n", - "[INFO] [1712351064.730735]: Direct Instances: []\n", - "[INFO] [1712351064.731519]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712351064.731784]: -------------------\n", - "[INFO] [1712351064.732024]: SOMA.Focusing \n", - "[INFO] [1712351064.732255]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712351064.732521]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AttentionShift, SOMA.Focusing, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.732791]: Subclasses: []\n", - "[INFO] [1712351064.733090]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.733576]: Instances: []\n", - "[INFO] [1712351064.733849]: Direct Instances: []\n", - "[INFO] [1712351064.734101]: Inverse Restrictions: []\n", - "[INFO] [1712351064.734332]: -------------------\n", - "[INFO] [1712351064.734575]: SOMA.Foolishness \n", - "[INFO] [1712351064.734809]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712351064.735071]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, SOMA.Foolishness, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351064.735312]: Subclasses: []\n", - "[INFO] [1712351064.735592]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.736085]: Instances: []\n", - "[INFO] [1712351064.736346]: Direct Instances: []\n", - "[INFO] [1712351064.736588]: Inverse Restrictions: []\n", - "[INFO] [1712351064.736823]: -------------------\n", - "[INFO] [1712351064.737050]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712351064.737298]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712351064.737571]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, SOMA.ForgettingIncorrectInformation, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.737815]: Subclasses: []\n", - "[INFO] [1712351064.738097]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.738604]: Instances: []\n", - "[INFO] [1712351064.738868]: Direct Instances: []\n", - "[INFO] [1712351064.739118]: Inverse Restrictions: []\n", - "[INFO] [1712351064.739352]: -------------------\n", - "[INFO] [1712351064.739586]: SOMA.InformationDismissal \n", - "[INFO] [1712351064.739858]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712351064.740129]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.740391]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712351064.740690]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712351064.741187]: Instances: []\n", - "[INFO] [1712351064.741459]: Direct Instances: []\n", - "[INFO] [1712351064.741716]: Inverse Restrictions: []\n", - "[INFO] [1712351064.741951]: -------------------\n", - "[INFO] [1712351064.742182]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712351064.742415]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712351064.742692]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, SOMA.ForgettingIrrelevantInformation, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.742944]: Subclasses: []\n", - "[INFO] [1712351064.743228]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.743702]: Instances: []\n", - "[INFO] [1712351064.743970]: Direct Instances: []\n", - "[INFO] [1712351064.744221]: Inverse Restrictions: []\n", - "[INFO] [1712351064.744454]: -------------------\n", - "[INFO] [1712351064.744700]: SOMA.Language \n", - "[INFO] [1712351064.744977]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712351064.745225]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.745485]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712351064.745782]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.746314]: Instances: []\n", - "[INFO] [1712351064.746595]: Direct Instances: []\n", - "[INFO] [1712351064.747637]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712351064.747894]: -------------------\n", - "[INFO] [1712351064.748133]: SOMA.FreezerCompartment \n", - "[INFO] [1712351064.748374]: Super classes: [SOMA.Compartment]\n", - "[INFO] [1712351064.748646]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Compartment, SOMA.FreezerCompartment, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.748996]: Subclasses: []\n", - "[INFO] [1712351064.749336]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.749846]: Instances: []\n", - "[INFO] [1712351064.750118]: Direct Instances: []\n", - "[INFO] [1712351064.750376]: Inverse Restrictions: []\n", - "[INFO] [1712351064.750649]: -------------------\n", - "[INFO] [1712351064.750896]: SOMA.Item \n", - "[INFO] [1712351064.751139]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351064.751396]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.Item, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.751806]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712351064.752239]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.752887]: Instances: []\n", - "[INFO] [1712351064.753200]: Direct Instances: []\n", - "[INFO] [1712351064.753585]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712351064.753841]: -------------------\n", - "[INFO] [1712351064.754085]: SOMA.FunctionalDesign \n", - "[INFO] [1712351064.754339]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712351064.754885]: Ancestors: {SOMA.FunctionalDesign, DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.755221]: Subclasses: []\n", - "[INFO] [1712351064.755516]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.756016]: Instances: []\n", - "[INFO] [1712351064.756289]: Direct Instances: []\n", - "[INFO] [1712351064.756540]: Inverse Restrictions: []\n", - "[INFO] [1712351064.756781]: -------------------\n", - "[INFO] [1712351064.757017]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712351064.757244]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712351064.757477]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.FunctionalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.757739]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712351064.758029]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.758525]: Instances: []\n", - "[INFO] [1712351064.758820]: Direct Instances: []\n", - "[INFO] [1712351064.759095]: Inverse Restrictions: []\n", - "[INFO] [1712351064.759341]: -------------------\n", - "[INFO] [1712351064.759576]: SOMA.LocatumRole \n", - "[INFO] [1712351064.759815]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351064.760102]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.LocatumRole, SOMA.SpatialRelationRole, owl.Thing}\n", - "[INFO] [1712351064.760353]: Subclasses: []\n", - "[INFO] [1712351064.760642]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.761121]: Instances: []\n", - "[INFO] [1712351064.761394]: Direct Instances: []\n", - "[INFO] [1712351064.761722]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712351064.761965]: -------------------\n", - "[INFO] [1712351064.762198]: SOMA.RelatumRole \n", - "[INFO] [1712351064.762444]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351064.762719]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.RelatumRole, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.SpatialRelationRole, owl.Thing}\n", - "[INFO] [1712351064.762962]: Subclasses: []\n", - "[INFO] [1712351064.763253]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.763735]: Instances: []\n", - "[INFO] [1712351064.764008]: Direct Instances: []\n", - "[INFO] [1712351064.764339]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712351064.764589]: -------------------\n", - "[INFO] [1712351064.764832]: SOMA.GasCooktop \n", - "[INFO] [1712351064.765065]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712351064.765335]: Ancestors: {SOMA.GasCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.765599]: Subclasses: []\n", - "[INFO] [1712351064.765894]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.766382]: Instances: []\n", - "[INFO] [1712351064.766638]: Direct Instances: []\n", - "[INFO] [1712351064.766882]: Inverse Restrictions: []\n", - "[INFO] [1712351064.767113]: -------------------\n", - "[INFO] [1712351064.767356]: SOMA.GetTaskParameter \n", - "[INFO] [1712351064.767589]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712351064.767857]: Ancestors: {SOMA.Planning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing, SOMA.GetTaskParameter}\n", - "[INFO] [1712351064.768117]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712351064.768412]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.768901]: Instances: []\n", - "[INFO] [1712351064.769160]: Direct Instances: []\n", - "[INFO] [1712351064.769405]: Inverse Restrictions: []\n", - "[INFO] [1712351064.769631]: -------------------\n", - "[INFO] [1712351064.769866]: SOMA.Planning \n", - "[INFO] [1712351064.770495]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712351064.770756]: Ancestors: {SOMA.Planning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351064.771006]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712351064.771308]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.771802]: Instances: []\n", - "[INFO] [1712351064.772059]: Direct Instances: []\n", - "[INFO] [1712351064.772303]: Inverse Restrictions: []\n", - "[INFO] [1712351064.772540]: -------------------\n", - "[INFO] [1712351064.772792]: SOMA.Glass \n", - "[INFO] [1712351064.773033]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712351064.773299]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Glass, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351064.773548]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", - "[INFO] [1712351064.773835]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.774322]: Instances: []\n", - "[INFO] [1712351064.774577]: Direct Instances: []\n", - "[INFO] [1712351064.774823]: Inverse Restrictions: []\n", - "[INFO] [1712351064.775064]: -------------------\n", - "[INFO] [1712351064.775302]: SOMA.GraphDatabase \n", - "[INFO] [1712351064.775532]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712351064.775789]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, SOMA.GraphDatabase, DUL.Role, owl.Thing}\n", - "[INFO] [1712351064.776038]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712351064.776329]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.776829]: Instances: []\n", - "[INFO] [1712351064.777108]: Direct Instances: []\n", - "[INFO] [1712351064.777368]: Inverse Restrictions: []\n", - "[INFO] [1712351064.777606]: -------------------\n", - "[INFO] [1712351064.777839]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712351064.778073]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712351064.778379]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.GraphQueryLanguage, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.778825]: Subclasses: []\n", - "[INFO] [1712351064.779264]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.779884]: Instances: []\n", - "[INFO] [1712351064.780271]: Direct Instances: []\n", - "[INFO] [1712351064.780633]: Inverse Restrictions: []\n", - "[INFO] [1712351064.781156]: -------------------\n", - "[INFO] [1712351064.781605]: SOMA.QueryLanguage \n", - "[INFO] [1712351064.782019]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351064.782450]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.782873]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712351064.783376]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.784197]: Instances: []\n", - "[INFO] [1712351064.784598]: Direct Instances: []\n", - "[INFO] [1712351064.784995]: Inverse Restrictions: []\n", - "[INFO] [1712351064.785369]: -------------------\n", - "[INFO] [1712351064.785742]: SOMA.GraspTransfer \n", - "[INFO] [1712351064.786122]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712351064.786566]: Ancestors: {DUL.SocialObject, SOMA.GraspTransfer, SOMA.Manipulating, SOMA.Grasping, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.786953]: Subclasses: []\n", - "[INFO] [1712351064.787438]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.788243]: Instances: []\n", - "[INFO] [1712351064.788721]: Direct Instances: []\n", - "[INFO] [1712351064.789183]: Inverse Restrictions: []\n", - "[INFO] [1712351064.789654]: -------------------\n", - "[INFO] [1712351064.790041]: SOMA.Grasping \n", - "[INFO] [1712351064.790415]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351064.790806]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, SOMA.Grasping, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.791193]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712351064.791691]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.792483]: Instances: []\n", - "[INFO] [1712351064.792931]: Direct Instances: []\n", - "[INFO] [1712351064.793330]: Inverse Restrictions: []\n", - "[INFO] [1712351064.793608]: -------------------\n", - "[INFO] [1712351064.793861]: SOMA.Releasing \n", - "[INFO] [1712351064.794103]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351064.794376]: Ancestors: {SOMA.Releasing, DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.794625]: Subclasses: []\n", - "[INFO] [1712351064.794914]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.795422]: Instances: []\n", - "[INFO] [1712351064.795690]: Direct Instances: []\n", - "[INFO] [1712351064.795965]: Inverse Restrictions: []\n", - "[INFO] [1712351064.796209]: -------------------\n", - "[INFO] [1712351064.796438]: SOMA.GraspingMotion \n", - "[INFO] [1712351064.796679]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712351064.798115]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", - "[INFO] [1712351064.798402]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712351064.798724]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.799220]: Instances: []\n", - "[INFO] [1712351064.799495]: Direct Instances: []\n", - "[INFO] [1712351064.799790]: Inverse Restrictions: []\n", - "[INFO] [1712351064.800038]: -------------------\n", - "[INFO] [1712351064.800273]: SOMA.IntermediateGrasp \n", - "[INFO] [1712351064.800506]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712351064.800779]: Ancestors: {SOMA.IntermediateGrasp, SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", - "[INFO] [1712351064.801046]: Subclasses: []\n", - "[INFO] [1712351064.801355]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.801839]: Instances: []\n", - "[INFO] [1712351064.802109]: Direct Instances: []\n", - "[INFO] [1712351064.802396]: Inverse Restrictions: []\n", - "[INFO] [1712351064.802642]: -------------------\n", - "[INFO] [1712351064.802875]: SOMA.PowerGrasp \n", - "[INFO] [1712351064.803107]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712351064.803381]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PowerGrasp, SOMA.GraspingMotion}\n", - "[INFO] [1712351064.803639]: Subclasses: []\n", - "[INFO] [1712351064.803950]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.804454]: Instances: []\n", - "[INFO] [1712351064.804718]: Direct Instances: []\n", - "[INFO] [1712351064.805015]: Inverse Restrictions: []\n", - "[INFO] [1712351064.805260]: -------------------\n", - "[INFO] [1712351064.805498]: SOMA.PrecisionGrasp \n", - "[INFO] [1712351064.805725]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712351064.805984]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.PrecisionGrasp, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", - "[INFO] [1712351064.806228]: Subclasses: []\n", - "[INFO] [1712351064.806519]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.806998]: Instances: []\n", - "[INFO] [1712351064.807250]: Direct Instances: []\n", - "[INFO] [1712351064.807534]: Inverse Restrictions: []\n", - "[INFO] [1712351064.807765]: -------------------\n", - "[INFO] [1712351064.808007]: SOMA.PrehensileMotion \n", - "[INFO] [1712351064.808657]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712351064.808929]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.809185]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712351064.809487]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.810004]: Instances: []\n", - "[INFO] [1712351064.810276]: Direct Instances: []\n", - "[INFO] [1712351064.810533]: Inverse Restrictions: []\n", - "[INFO] [1712351064.810766]: -------------------\n", - "[INFO] [1712351064.810998]: SOMA.ReleasingMotion \n", - "[INFO] [1712351064.811237]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712351064.811513]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, SOMA.ReleasingMotion, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.811762]: Subclasses: []\n", - "[INFO] [1712351064.812049]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.812527]: Instances: []\n", - "[INFO] [1712351064.812785]: Direct Instances: []\n", - "[INFO] [1712351064.813238]: Inverse Restrictions: []\n", - "[INFO] [1712351064.813539]: -------------------\n", - "[INFO] [1712351064.813808]: SOMA.GreenColor \n", - "[INFO] [1712351064.814063]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712351064.814339]: Ancestors: {SOMA.ColorRegion, SOMA.GreenColor, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351064.814589]: Subclasses: []\n", - "[INFO] [1712351064.814880]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.815387]: Instances: []\n", - "[INFO] [1712351064.815660]: Direct Instances: []\n", - "[INFO] [1712351064.815913]: Inverse Restrictions: []\n", - "[INFO] [1712351064.816148]: -------------------\n", - "[INFO] [1712351064.816383]: SOMA.Gripper \n", - "[INFO] [1712351064.816621]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712351064.816902]: Ancestors: {SOMA.PhysicalEffector, SOMA.Gripper, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.817157]: Subclasses: []\n", - "[INFO] [1712351064.817444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.817919]: Instances: []\n", - "[INFO] [1712351064.818194]: Direct Instances: []\n", - "[INFO] [1712351064.818451]: Inverse Restrictions: []\n", - "[INFO] [1712351064.818689]: -------------------\n", - "[INFO] [1712351064.818924]: SOMA.PrehensileEffector \n", - "[INFO] [1712351064.819155]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712351064.819407]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.819665]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712351064.819959]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.820448]: Instances: []\n", - "[INFO] [1712351064.820721]: Direct Instances: []\n", - "[INFO] [1712351064.821040]: Inverse Restrictions: []\n", - "[INFO] [1712351064.821285]: -------------------\n", - "[INFO] [1712351064.821519]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712351064.821751]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712351064.822021]: Ancestors: {DUL.Description, SOMA.HardwareDiagnosis, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.822275]: Subclasses: []\n", - "[INFO] [1712351064.822560]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.823033]: Instances: []\n", - "[INFO] [1712351064.823283]: Direct Instances: []\n", - "[INFO] [1712351064.823527]: Inverse Restrictions: []\n", - "[INFO] [1712351064.823769]: -------------------\n", - "[INFO] [1712351064.824003]: SOMA.HasQualityRegion \n", - "[INFO] [1712351064.824270]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712351064.824523]: Ancestors: {SOMA.HasQualityRegion, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351064.824786]: Subclasses: []\n", - "[INFO] [1712351064.825093]: Properties: [DUL.hasQuality, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy, DUL.hasRegion]\n", - "[INFO] [1712351064.825584]: Instances: []\n", - "[INFO] [1712351064.825841]: Direct Instances: []\n", - "[INFO] [1712351064.826101]: Inverse Restrictions: []\n", - "[INFO] [1712351064.826350]: -------------------\n", - "[INFO] [1712351064.826584]: SOMA.Head \n", - "[INFO] [1712351064.826815]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712351064.827075]: Ancestors: {owl.Thing, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Head, DUL.PhysicalObject}\n", - "[INFO] [1712351064.827332]: Subclasses: []\n", - "[INFO] [1712351064.827621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.828099]: Instances: []\n", - "[INFO] [1712351064.828351]: Direct Instances: []\n", - "[INFO] [1712351064.828601]: Inverse Restrictions: []\n", - "[INFO] [1712351064.828848]: -------------------\n", - "[INFO] [1712351064.829080]: SOMA.HeadMovement \n", - "[INFO] [1712351064.829309]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712351064.829569]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.HeadMovement, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.829831]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712351064.830118]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.830594]: Instances: []\n", - "[INFO] [1712351064.830847]: Direct Instances: []\n", - "[INFO] [1712351064.831100]: Inverse Restrictions: []\n", - "[INFO] [1712351064.831340]: -------------------\n", - "[INFO] [1712351064.831576]: SOMA.HeadTurning \n", - "[INFO] [1712351064.831803]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712351064.832067]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.HeadTurning, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.HeadMovement, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.832308]: Subclasses: []\n", - "[INFO] [1712351064.832602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.833090]: Instances: []\n", - "[INFO] [1712351064.833351]: Direct Instances: []\n", - "[INFO] [1712351064.833593]: Inverse Restrictions: []\n", - "[INFO] [1712351064.833818]: -------------------\n", - "[INFO] [1712351064.834058]: SOMA.Holding \n", - "[INFO] [1712351064.834287]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351064.834548]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.Holding, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.834790]: Subclasses: []\n", - "[INFO] [1712351064.835072]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.835569]: Instances: []\n", - "[INFO] [1712351064.835838]: Direct Instances: []\n", - "[INFO] [1712351064.836092]: Inverse Restrictions: []\n", - "[INFO] [1712351064.836326]: -------------------\n", - "[INFO] [1712351064.836566]: SOMA.HostRole \n", - "[INFO] [1712351064.836833]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712351064.837105]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.HostRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351064.837349]: Subclasses: []\n", - "[INFO] [1712351064.837632]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", - "[INFO] [1712351064.838129]: Instances: []\n", - "[INFO] [1712351064.838395]: Direct Instances: []\n", - "[INFO] [1712351064.839442]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712351064.839720]: -------------------\n", - "[INFO] [1712351064.839971]: SOMA.PluginSpecification \n", - "[INFO] [1712351064.840225]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712351064.840497]: Ancestors: {DUL.Description, SOMA.PluginSpecification, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification}\n", - "[INFO] [1712351064.840744]: Subclasses: []\n", - "[INFO] [1712351064.841068]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole, rdf-schema.comment]\n", - "[INFO] [1712351064.841572]: Instances: []\n", - "[INFO] [1712351064.841838]: Direct Instances: []\n", - "[INFO] [1712351064.842170]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712351064.842421]: -------------------\n", - "[INFO] [1712351064.842676]: SOMA.Hotplate \n", - "[INFO] [1712351064.842919]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.843206]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Hotplate, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.843467]: Subclasses: []\n", - "[INFO] [1712351064.843761]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.844268]: Instances: []\n", - "[INFO] [1712351064.844541]: Direct Instances: []\n", - "[INFO] [1712351064.844833]: Inverse Restrictions: [SOMA.Stove]\n", - "[INFO] [1712351064.845092]: -------------------\n", - "[INFO] [1712351064.845344]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712351064.845624]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712351064.845914]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Programming_Language, SOMA.Computer_Language, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.846169]: Subclasses: []\n", - "[INFO] [1712351064.846461]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.846943]: Instances: []\n", - "[INFO] [1712351064.847219]: Direct Instances: []\n", - "[INFO] [1712351064.848255]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712351064.848519]: -------------------\n", - "[INFO] [1712351064.848763]: SOMA.Source_Code \n", - "[INFO] [1712351064.849015]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712351064.849507]: Ancestors: {owl.Thing, SOMA.Computer_Program, SOMA.Source_Code}\n", - "[INFO] [1712351064.849770]: Subclasses: []\n", - "[INFO] [1712351064.850088]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.850585]: Instances: []\n", - "[INFO] [1712351064.850850]: Direct Instances: []\n", - "[INFO] [1712351064.851135]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712351064.851374]: -------------------\n", - "[INFO] [1712351064.851606]: SOMA.HumanActivityRecording \n", - "[INFO] [1712351064.851849]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712351064.852126]: Ancestors: {SOMA.HumanActivityRecording, SOMA.RecordedEpisode, DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing}\n", - "[INFO] [1712351064.852371]: Subclasses: []\n", - "[INFO] [1712351064.852652]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.853149]: Instances: []\n", - "[INFO] [1712351064.853418]: Direct Instances: []\n", - "[INFO] [1712351064.853669]: Inverse Restrictions: []\n", - "[INFO] [1712351064.853901]: -------------------\n", - "[INFO] [1712351064.854131]: SOMA.Imagining \n", - "[INFO] [1712351064.854371]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712351064.854635]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Imagining}\n", - "[INFO] [1712351064.854881]: Subclasses: []\n", - "[INFO] [1712351064.855166]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.855661]: Instances: []\n", - "[INFO] [1712351064.855923]: Direct Instances: []\n", - "[INFO] [1712351064.856167]: Inverse Restrictions: []\n", - "[INFO] [1712351064.856406]: -------------------\n", - "[INFO] [1712351064.856640]: SOMA.Impediment \n", - "[INFO] [1712351064.856923]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712351064.857206]: Ancestors: {SOMA.Impediment, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351064.857451]: Subclasses: []\n", - "[INFO] [1712351064.857994]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.858700]: Instances: []\n", - "[INFO] [1712351064.859175]: Direct Instances: []\n", - "[INFO] [1712351064.859598]: Inverse Restrictions: []\n", - "[INFO] [1712351064.860008]: -------------------\n", - "[INFO] [1712351064.860411]: SOMA.Obstacle \n", - "[INFO] [1712351064.860770]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712351064.861233]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, SOMA.Obstacle, owl.Thing}\n", - "[INFO] [1712351064.861657]: Subclasses: []\n", - "[INFO] [1712351064.862058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.862651]: Instances: []\n", - "[INFO] [1712351064.863012]: Direct Instances: []\n", - "[INFO] [1712351064.863407]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712351064.863745]: -------------------\n", - "[INFO] [1712351064.864078]: SOMA.RestrictedObject \n", - "[INFO] [1712351064.864424]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712351064.864790]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.BlockedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.RestrictedObject}\n", - "[INFO] [1712351064.865134]: Subclasses: []\n", - "[INFO] [1712351064.865510]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.866079]: Instances: []\n", - "[INFO] [1712351064.866443]: Direct Instances: []\n", - "[INFO] [1712351064.866827]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712351064.867161]: -------------------\n", - "[INFO] [1712351064.867482]: SOMA.StateTransition \n", - "[INFO] [1712351064.867844]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712351064.868216]: Ancestors: {DUL.Transition, DUL.Entity, SOMA.StateTransition, DUL.Situation, owl.Thing}\n", - "[INFO] [1712351064.868562]: Subclasses: []\n", - "[INFO] [1712351064.868951]: Properties: [SOMA.hasInitialScene, rdf-schema.comment, rdf-schema.label, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.869521]: Instances: []\n", - "[INFO] [1712351064.869876]: Direct Instances: []\n", - "[INFO] [1712351064.870281]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712351064.870617]: -------------------\n", - "[INFO] [1712351064.870936]: SOMA.Inability \n", - "[INFO] [1712351064.871253]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712351064.871607]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.Inability, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351064.871951]: Subclasses: []\n", - "[INFO] [1712351064.872323]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.872889]: Instances: []\n", - "[INFO] [1712351064.873236]: Direct Instances: []\n", - "[INFO] [1712351064.873578]: Inverse Restrictions: []\n", - "[INFO] [1712351064.873912]: -------------------\n", - "[INFO] [1712351064.874233]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712351064.874558]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712351064.874910]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.IncompatibleSoftware, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.875254]: Subclasses: []\n", - "[INFO] [1712351064.875628]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.876297]: Instances: []\n", - "[INFO] [1712351064.876717]: Direct Instances: []\n", - "[INFO] [1712351064.877281]: Inverse Restrictions: []\n", - "[INFO] [1712351064.877686]: -------------------\n", - "[INFO] [1712351064.877975]: SOMA.InductionCooktop \n", - "[INFO] [1712351064.878238]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712351064.878631]: Ancestors: {SOMA.ElectricCooktop, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.InductionCooktop, SOMA.Cooktop, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.879007]: Subclasses: []\n", - "[INFO] [1712351064.879344]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.879849]: Instances: []\n", - "[INFO] [1712351064.880119]: Direct Instances: []\n", - "[INFO] [1712351064.880373]: Inverse Restrictions: []\n", - "[INFO] [1712351064.880616]: -------------------\n", - "[INFO] [1712351064.880867]: SOMA.InductiveReasoning \n", - "[INFO] [1712351064.881113]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712351064.881379]: Ancestors: {SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.InductiveReasoning}\n", - "[INFO] [1712351064.881625]: Subclasses: []\n", - "[INFO] [1712351064.881921]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.882408]: Instances: []\n", - "[INFO] [1712351064.882672]: Direct Instances: []\n", - "[INFO] [1712351064.882920]: Inverse Restrictions: []\n", - "[INFO] [1712351064.883155]: -------------------\n", - "[INFO] [1712351064.883393]: SOMA.Infeasibility \n", - "[INFO] [1712351064.883631]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712351064.883901]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Unsuccessfulness, SOMA.Infeasibility, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351064.884145]: Subclasses: []\n", - "[INFO] [1712351064.884422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.884897]: Instances: []\n", - "[INFO] [1712351064.885173]: Direct Instances: []\n", - "[INFO] [1712351064.885428]: Inverse Restrictions: []\n", - "[INFO] [1712351064.885665]: -------------------\n", - "[INFO] [1712351064.885902]: SOMA.InferenceRules \n", - "[INFO] [1712351064.886132]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712351064.886404]: Ancestors: {DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, SOMA.InferenceRules, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.886656]: Subclasses: []\n", - "[INFO] [1712351064.886941]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.887419]: Instances: []\n", - "[INFO] [1712351064.887690]: Direct Instances: []\n", - "[INFO] [1712351064.887944]: Inverse Restrictions: []\n", - "[INFO] [1712351064.888179]: -------------------\n", - "[INFO] [1712351064.888411]: SOMA.InformationRetrieval \n", - "[INFO] [1712351064.888647]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712351064.888912]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.InformationRetrieval}\n", - "[INFO] [1712351064.889169]: Subclasses: []\n", - "[INFO] [1712351064.889466]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.889944]: Instances: []\n", - "[INFO] [1712351064.890215]: Direct Instances: []\n", - "[INFO] [1712351064.890610]: Inverse Restrictions: []\n", - "[INFO] [1712351064.890862]: -------------------\n", - "[INFO] [1712351064.891099]: SOMA.InformationStorage \n", - "[INFO] [1712351064.891385]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712351064.891673]: Ancestors: {DUL.SocialObject, SOMA.InformationStorage, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.891931]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712351064.892220]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712351064.892720]: Instances: []\n", - "[INFO] [1712351064.892998]: Direct Instances: []\n", - "[INFO] [1712351064.893254]: Inverse Restrictions: []\n", - "[INFO] [1712351064.893488]: -------------------\n", - "[INFO] [1712351064.893718]: SOMA.StoredObject \n", - "[INFO] [1712351064.893946]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712351064.894211]: Ancestors: {SOMA.StoredObject, DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.894470]: Subclasses: []\n", - "[INFO] [1712351064.894758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.895246]: Instances: []\n", - "[INFO] [1712351064.895526]: Direct Instances: []\n", - "[INFO] [1712351064.896047]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712351064.896421]: -------------------\n", - "[INFO] [1712351064.896789]: SOMA.InsertedObject \n", - "[INFO] [1712351064.897176]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712351064.897567]: Ancestors: {SOMA.InsertedObject, DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.897954]: Subclasses: []\n", - "[INFO] [1712351064.898284]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.898784]: Instances: []\n", - "[INFO] [1712351064.899111]: Direct Instances: []\n", - "[INFO] [1712351064.899418]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712351064.899682]: -------------------\n", - "[INFO] [1712351064.899930]: SOMA.Instructions \n", - "[INFO] [1712351064.900171]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712351064.900439]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.Instructions, owl.Thing}\n", - "[INFO] [1712351064.900684]: Subclasses: []\n", - "[INFO] [1712351064.900969]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.901471]: Instances: []\n", - "[INFO] [1712351064.901738]: Direct Instances: []\n", - "[INFO] [1712351064.901990]: Inverse Restrictions: []\n", - "[INFO] [1712351064.902226]: -------------------\n", - "[INFO] [1712351064.902465]: SOMA.Interpreting \n", - "[INFO] [1712351064.902699]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351064.902972]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Interpreting}\n", - "[INFO] [1712351064.903228]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712351064.903522]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.904004]: Instances: []\n", - "[INFO] [1712351064.904272]: Direct Instances: []\n", - "[INFO] [1712351064.904531]: Inverse Restrictions: []\n", - "[INFO] [1712351064.904768]: -------------------\n", - "[INFO] [1712351064.905182]: SOMA.InterrogativeClause \n", - "[INFO] [1712351064.905484]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712351064.905787]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, SOMA.InterrogativeClause, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.906195]: Subclasses: []\n", - "[INFO] [1712351064.906586]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.907165]: Instances: []\n", - "[INFO] [1712351064.907537]: Direct Instances: []\n", - "[INFO] [1712351064.907928]: Inverse Restrictions: []\n", - "[INFO] [1712351064.908267]: -------------------\n", - "[INFO] [1712351064.908592]: SOMA.Introspecting \n", - "[INFO] [1712351064.908956]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712351064.909357]: Ancestors: {SOMA.InformationAcquisition, SOMA.Introspecting, owl.Thing}\n", - "[INFO] [1712351064.909747]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712351064.910162]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.910770]: Instances: []\n", - "[INFO] [1712351064.911077]: Direct Instances: []\n", - "[INFO] [1712351064.911350]: Inverse Restrictions: []\n", - "[INFO] [1712351064.911752]: -------------------\n", - "[INFO] [1712351064.912149]: SOMA.JamJar \n", - "[INFO] [1712351064.912534]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712351064.912992]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.JamJar, SOMA.DesignedContainer, SOMA.Jar, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.913389]: Subclasses: [SOMA.RaspberryJamJar]\n", - "[INFO] [1712351064.913867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.914669]: Instances: []\n", - "[INFO] [1712351064.915057]: Direct Instances: []\n", - "[INFO] [1712351064.915442]: Inverse Restrictions: []\n", - "[INFO] [1712351064.915812]: -------------------\n", - "[INFO] [1712351064.916182]: SOMA.Jar \n", - "[INFO] [1712351064.916554]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712351064.916879]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Jar, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.917146]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", - "[INFO] [1712351064.917435]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.917933]: Instances: []\n", - "[INFO] [1712351064.918196]: Direct Instances: []\n", - "[INFO] [1712351064.918448]: Inverse Restrictions: []\n", - "[INFO] [1712351064.918691]: -------------------\n", - "[INFO] [1712351064.918933]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712351064.919164]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712351064.919428]: Ancestors: {SOMA.KineticFrictionAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", - "[INFO] [1712351064.919671]: Subclasses: []\n", - "[INFO] [1712351064.919954]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.920455]: Instances: []\n", - "[INFO] [1712351064.920745]: Direct Instances: []\n", - "[INFO] [1712351064.921002]: Inverse Restrictions: []\n", - "[INFO] [1712351064.921237]: -------------------\n", - "[INFO] [1712351064.921470]: SOMA.KinoDynamicData \n", - "[INFO] [1712351064.921712]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351064.921984]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.KinoDynamicData, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351064.922239]: Subclasses: []\n", - "[INFO] [1712351064.922529]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.923013]: Instances: []\n", - "[INFO] [1712351064.923282]: Direct Instances: []\n", - "[INFO] [1712351064.923532]: Inverse Restrictions: []\n", - "[INFO] [1712351064.923768]: -------------------\n", - "[INFO] [1712351064.924001]: SOMA.Kitchen \n", - "[INFO] [1712351064.924251]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712351064.924529]: Ancestors: {DUL.PhysicalPlace, DUL.Object, SOMA.Room, DUL.Entity, SOMA.Kitchen, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.924785]: Subclasses: []\n", - "[INFO] [1712351064.925073]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351064.925570]: Instances: []\n", - "[INFO] [1712351064.925835]: Direct Instances: []\n", - "[INFO] [1712351064.926087]: Inverse Restrictions: []\n", - "[INFO] [1712351064.926322]: -------------------\n", - "[INFO] [1712351064.926552]: SOMA.Room \n", - "[INFO] [1712351064.926780]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712351064.927032]: Ancestors: {DUL.PhysicalPlace, DUL.Object, SOMA.Room, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.927282]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712351064.927569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.928051]: Instances: []\n", - "[INFO] [1712351064.928321]: Direct Instances: []\n", - "[INFO] [1712351064.928576]: Inverse Restrictions: []\n", - "[INFO] [1712351064.928816]: -------------------\n", - "[INFO] [1712351064.929049]: SOMA.KitchenCabinet \n", - "[INFO] [1712351064.929284]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712351064.929551]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, SOMA.Cupboard, SOMA.DesignedContainer, SOMA.KitchenCabinet, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.929812]: Subclasses: []\n", - "[INFO] [1712351064.930104]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.930586]: Instances: []\n", - "[INFO] [1712351064.930838]: Direct Instances: []\n", - "[INFO] [1712351064.931081]: Inverse Restrictions: []\n", - "[INFO] [1712351064.931314]: -------------------\n", - "[INFO] [1712351064.931561]: SOMA.Knife \n", - "[INFO] [1712351064.931803]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712351064.932052]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedTool, SOMA.Knife, DUL.Object, SOMA.CuttingTool, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.932300]: Subclasses: [SOMA.KitchenKnife]\n", - "[INFO] [1712351064.932586]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.933109]: Instances: []\n", - "[INFO] [1712351064.933383]: Direct Instances: []\n", - "[INFO] [1712351064.933644]: Inverse Restrictions: []\n", - "[INFO] [1712351064.933887]: -------------------\n", - "[INFO] [1712351064.934125]: SOMA.KitchenUnit \n", - "[INFO] [1712351064.934361]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712351064.934638]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, SOMA.KitchenUnit, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.934893]: Subclasses: []\n", - "[INFO] [1712351064.935181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.935662]: Instances: []\n", - "[INFO] [1712351064.935922]: Direct Instances: []\n", - "[INFO] [1712351064.936176]: Inverse Restrictions: []\n", - "[INFO] [1712351064.936412]: -------------------\n", - "[INFO] [1712351064.936645]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712351064.936880]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351064.937140]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.KnowledgeRepresentationLanguage, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.937409]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712351064.937708]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.938208]: Instances: []\n", - "[INFO] [1712351064.938467]: Direct Instances: []\n", - "[INFO] [1712351064.938731]: Inverse Restrictions: []\n", - "[INFO] [1712351064.938974]: -------------------\n", - "[INFO] [1712351064.939211]: SOMA.Labeling \n", - "[INFO] [1712351064.939445]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712351064.939699]: Ancestors: {SOMA.Labeling, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Interpreting, owl.Thing}\n", - "[INFO] [1712351064.939955]: Subclasses: []\n", - "[INFO] [1712351064.940243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351064.940731]: Instances: []\n", - "[INFO] [1712351064.941196]: Direct Instances: []\n", - "[INFO] [1712351064.941614]: Inverse Restrictions: []\n", - "[INFO] [1712351064.941998]: -------------------\n", - "[INFO] [1712351064.942369]: SOMA.Text \n", - "[INFO] [1712351064.942739]: Super classes: [owl.Thing]\n", - "[INFO] [1712351064.945050]: Ancestors: {SOMA.Text, owl.Thing}\n", - "[INFO] [1712351064.945451]: Subclasses: []\n", - "[INFO] [1712351064.945897]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.946517]: Instances: []\n", - "[INFO] [1712351064.946818]: Direct Instances: []\n", - "[INFO] [1712351064.947920]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712351064.948277]: -------------------\n", - "[INFO] [1712351064.948643]: SOMA.Leaning \n", - "[INFO] [1712351064.948924]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712351064.949225]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Leaning, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", - "[INFO] [1712351064.949484]: Subclasses: []\n", - "[INFO] [1712351064.949779]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.950262]: Instances: []\n", - "[INFO] [1712351064.950540]: Direct Instances: []\n", - "[INFO] [1712351064.950801]: Inverse Restrictions: []\n", - "[INFO] [1712351064.951043]: -------------------\n", - "[INFO] [1712351064.951279]: SOMA.PosturalMoving \n", - "[INFO] [1712351064.951512]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712351064.951752]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", - "[INFO] [1712351064.952015]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712351064.952309]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.952809]: Instances: []\n", - "[INFO] [1712351064.953079]: Direct Instances: []\n", - "[INFO] [1712351064.953341]: Inverse Restrictions: []\n", - "[INFO] [1712351064.953578]: -------------------\n", - "[INFO] [1712351064.953807]: SOMA.Learning \n", - "[INFO] [1712351064.954039]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712351064.954308]: Ancestors: {SOMA.Learning, DUL.SocialObject, SOMA.InformationStorage, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.954560]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712351064.954842]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.955329]: Instances: []\n", - "[INFO] [1712351064.955603]: Direct Instances: []\n", - "[INFO] [1712351064.956063]: Inverse Restrictions: []\n", - "[INFO] [1712351064.956349]: -------------------\n", - "[INFO] [1712351064.956602]: SOMA.Leg \n", - "[INFO] [1712351064.956865]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712351064.957157]: Ancestors: {SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712351064.957452]: Subclasses: []\n", - "[INFO] [1712351064.957805]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.958354]: Instances: []\n", - "[INFO] [1712351064.958650]: Direct Instances: []\n", - "[INFO] [1712351064.958987]: Inverse Restrictions: []\n", - "[INFO] [1712351064.959280]: -------------------\n", - "[INFO] [1712351064.959557]: SOMA.Lid \n", - "[INFO] [1712351064.959821]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351064.960114]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.Lid, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351064.960378]: Subclasses: []\n", - "[INFO] [1712351064.960690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.961212]: Instances: []\n", - "[INFO] [1712351064.961481]: Direct Instances: []\n", - "[INFO] [1712351064.961723]: Inverse Restrictions: []\n", - "[INFO] [1712351064.961951]: -------------------\n", - "[INFO] [1712351064.962180]: SOMA.LimbMotion \n", - "[INFO] [1712351064.962828]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712351064.963118]: Ancestors: {SOMA.LimbMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.963380]: Subclasses: []\n", - "[INFO] [1712351064.963691]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.964177]: Instances: []\n", - "[INFO] [1712351064.964443]: Direct Instances: []\n", - "[INFO] [1712351064.964697]: Inverse Restrictions: []\n", - "[INFO] [1712351064.964944]: -------------------\n", - "[INFO] [1712351064.965186]: SOMA.LinkedObject \n", - "[INFO] [1712351064.965423]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712351064.965682]: Ancestors: {SOMA.LinkedObject, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.965948]: Subclasses: []\n", - "[INFO] [1712351064.966244]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.966731]: Instances: []\n", - "[INFO] [1712351064.966985]: Direct Instances: []\n", - "[INFO] [1712351064.967334]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712351064.967593]: -------------------\n", - "[INFO] [1712351064.967843]: SOMA.LinkageState \n", - "[INFO] [1712351064.968091]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712351064.968353]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, SOMA.LinkageState, owl.Thing}\n", - "[INFO] [1712351064.968602]: Subclasses: []\n", - "[INFO] [1712351064.968944]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.969588]: Instances: []\n", - "[INFO] [1712351064.969908]: Direct Instances: []\n", - "[INFO] [1712351064.970191]: Inverse Restrictions: []\n", - "[INFO] [1712351064.970450]: -------------------\n", - "[INFO] [1712351064.970697]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712351064.970939]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351064.971198]: Ancestors: {DUL.SocialObject, SOMA.SpatioTemporalRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351064.971463]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712351064.971760]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.972265]: Instances: []\n", - "[INFO] [1712351064.972537]: Direct Instances: []\n", - "[INFO] [1712351064.972803]: Inverse Restrictions: []\n", - "[INFO] [1712351064.973050]: -------------------\n", - "[INFO] [1712351064.973288]: SOMA.SpatialRelationRole \n", - "[INFO] [1712351064.973526]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712351064.973773]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.SpatialRelationRole, owl.Thing}\n", - "[INFO] [1712351064.974036]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712351064.974334]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.974821]: Instances: []\n", - "[INFO] [1712351064.975076]: Direct Instances: []\n", - "[INFO] [1712351064.975330]: Inverse Restrictions: []\n", - "[INFO] [1712351064.975580]: -------------------\n", - "[INFO] [1712351064.975819]: SOMA.LocutionaryAction \n", - "[INFO] [1712351064.976054]: Super classes: [owl.Thing]\n", - "[INFO] [1712351064.977260]: Ancestors: {owl.Thing, SOMA.LocutionaryAction}\n", - "[INFO] [1712351064.977558]: Subclasses: []\n", - "[INFO] [1712351064.978064]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.978693]: Instances: []\n", - "[INFO] [1712351064.979102]: Direct Instances: []\n", - "[INFO] [1712351064.979489]: Inverse Restrictions: []\n", - "[INFO] [1712351064.979854]: -------------------\n", - "[INFO] [1712351064.980228]: SOMA.LookingAt \n", - "[INFO] [1712351064.980590]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351064.981000]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.LookingAt, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.981330]: Subclasses: []\n", - "[INFO] [1712351064.981669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.982173]: Instances: []\n", - "[INFO] [1712351064.982442]: Direct Instances: []\n", - "[INFO] [1712351064.982695]: Inverse Restrictions: []\n", - "[INFO] [1712351064.982938]: -------------------\n", - "[INFO] [1712351064.983189]: SOMA.LookingFor \n", - "[INFO] [1712351064.983441]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712351064.983703]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.LookingFor}\n", - "[INFO] [1712351064.983949]: Subclasses: []\n", - "[INFO] [1712351064.984247]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.984729]: Instances: []\n", - "[INFO] [1712351064.984991]: Direct Instances: []\n", - "[INFO] [1712351064.985238]: Inverse Restrictions: []\n", - "[INFO] [1712351064.985472]: -------------------\n", - "[INFO] [1712351064.985709]: SOMA.Lowering \n", - "[INFO] [1712351064.985958]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351064.986230]: Ancestors: {DUL.SocialObject, SOMA.Lowering, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351064.986478]: Subclasses: []\n", - "[INFO] [1712351064.986767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.987265]: Instances: []\n", - "[INFO] [1712351064.987529]: Direct Instances: []\n", - "[INFO] [1712351064.987778]: Inverse Restrictions: []\n", - "[INFO] [1712351064.988012]: -------------------\n", - "[INFO] [1712351064.988241]: SOMA.PhysicalAction \n", - "[INFO] [1712351064.988489]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712351064.988756]: Ancestors: {SOMA.PhysicalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712351064.989008]: Subclasses: []\n", - "[INFO] [1712351064.989295]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.989787]: Instances: []\n", - "[INFO] [1712351064.990050]: Direct Instances: []\n", - "[INFO] [1712351064.990341]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351064.990584]: -------------------\n", - "[INFO] [1712351064.990822]: SOMA.Markup_Language \n", - "[INFO] [1712351064.991060]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351064.991338]: Ancestors: {SOMA.Language, SOMA.System, SOMA.Markup_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351064.991589]: Subclasses: []\n", - "[INFO] [1712351064.991876]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.992360]: Instances: []\n", - "[INFO] [1712351064.992630]: Direct Instances: []\n", - "[INFO] [1712351064.992889]: Inverse Restrictions: []\n", - "[INFO] [1712351064.993133]: -------------------\n", - "[INFO] [1712351064.993371]: SOMA.Masterful \n", - "[INFO] [1712351064.993607]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712351064.993875]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, owl.Thing, DUL.Object, DUL.Entity, SOMA.Masterful, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351064.994145]: Subclasses: []\n", - "[INFO] [1712351064.994440]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.994927]: Instances: []\n", - "[INFO] [1712351064.995181]: Direct Instances: []\n", - "[INFO] [1712351064.995430]: Inverse Restrictions: []\n", - "[INFO] [1712351064.995673]: -------------------\n", - "[INFO] [1712351064.995922]: SOMA.Material \n", - "[INFO] [1712351064.996161]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351064.996433]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Material, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351064.996705]: Subclasses: []\n", - "[INFO] [1712351064.997097]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351064.997631]: Instances: []\n", - "[INFO] [1712351064.997921]: Direct Instances: []\n", - "[INFO] [1712351064.998186]: Inverse Restrictions: []\n", - "[INFO] [1712351064.998436]: -------------------\n", - "[INFO] [1712351064.998692]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712351064.998961]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712351064.999239]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Entity, SOMA.MedicalDiagnosis, owl.Thing}\n", - "[INFO] [1712351064.999499]: Subclasses: []\n", - "[INFO] [1712351064.999810]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.000318]: Instances: []\n", - "[INFO] [1712351065.000585]: Direct Instances: []\n", - "[INFO] [1712351065.000840]: Inverse Restrictions: []\n", - "[INFO] [1712351065.001083]: -------------------\n", - "[INFO] [1712351065.001322]: SOMA.Memorizing \n", - "[INFO] [1712351065.001560]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712351065.001842]: Ancestors: {SOMA.Learning, DUL.SocialObject, SOMA.InformationStorage, DUL.Object, SOMA.Memorizing, DUL.Entity, DUL.Concept, DUL.Task, SOMA.MentalTask, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.002100]: Subclasses: []\n", - "[INFO] [1712351065.002395]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.002899]: Instances: []\n", - "[INFO] [1712351065.003167]: Direct Instances: []\n", - "[INFO] [1712351065.003419]: Inverse Restrictions: []\n", - "[INFO] [1712351065.003664]: -------------------\n", - "[INFO] [1712351065.003902]: SOMA.MentalAction \n", - "[INFO] [1712351065.004556]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712351065.004853]: Ancestors: {SOMA.MentalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712351065.005117]: Subclasses: []\n", - "[INFO] [1712351065.005413]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.005903]: Instances: []\n", - "[INFO] [1712351065.006176]: Direct Instances: []\n", - "[INFO] [1712351065.006476]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712351065.006727]: -------------------\n", - "[INFO] [1712351065.006968]: SOMA.MeshShape \n", - "[INFO] [1712351065.007245]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712351065.007535]: Ancestors: {SOMA.MeshShape, DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.007794]: Subclasses: []\n", - "[INFO] [1712351065.008093]: Properties: [rdf-schema.label, SOMA.hasFilePath, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.008598]: Instances: []\n", - "[INFO] [1712351065.008909]: Direct Instances: []\n", - "[INFO] [1712351065.009276]: Inverse Restrictions: []\n", - "[INFO] [1712351065.009564]: -------------------\n", - "[INFO] [1712351065.009863]: SOMA.MeshShapeData \n", - "[INFO] [1712351065.010138]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351065.010492]: Ancestors: {DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing, SOMA.MeshShapeData}\n", - "[INFO] [1712351065.010771]: Subclasses: []\n", - "[INFO] [1712351065.011081]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.011593]: Instances: []\n", - "[INFO] [1712351065.011870]: Direct Instances: []\n", - "[INFO] [1712351065.012132]: Inverse Restrictions: []\n", - "[INFO] [1712351065.012378]: -------------------\n", - "[INFO] [1712351065.012616]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712351065.012863]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712351065.013178]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.MetaCognitionEvaluationTopic, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.013445]: Subclasses: []\n", - "[INFO] [1712351065.013743]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.014230]: Instances: []\n", - "[INFO] [1712351065.014501]: Direct Instances: []\n", - "[INFO] [1712351065.014760]: Inverse Restrictions: []\n", - "[INFO] [1712351065.015006]: -------------------\n", - "[INFO] [1712351065.015260]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712351065.015516]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351065.015802]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.016088]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712351065.016425]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.017015]: Instances: []\n", - "[INFO] [1712351065.017334]: Direct Instances: []\n", - "[INFO] [1712351065.017633]: Inverse Restrictions: []\n", - "[INFO] [1712351065.017900]: -------------------\n", - "[INFO] [1712351065.018162]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712351065.018420]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712351065.018713]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.MetaCognitionMemoryTopic, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.018992]: Subclasses: []\n", - "[INFO] [1712351065.019304]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.019804]: Instances: []\n", - "[INFO] [1712351065.020061]: Direct Instances: []\n", - "[INFO] [1712351065.020322]: Inverse Restrictions: []\n", - "[INFO] [1712351065.020564]: -------------------\n", - "[INFO] [1712351065.020800]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712351065.021038]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712351065.021298]: Ancestors: {SOMA.MetaCognitionPlanningTopic, DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.021561]: Subclasses: []\n", - "[INFO] [1712351065.021857]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.022339]: Instances: []\n", - "[INFO] [1712351065.022615]: Direct Instances: []\n", - "[INFO] [1712351065.022873]: Inverse Restrictions: []\n", - "[INFO] [1712351065.023113]: -------------------\n", - "[INFO] [1712351065.023347]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712351065.023575]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712351065.023829]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.024097]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712351065.024392]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.024902]: Instances: []\n", - "[INFO] [1712351065.025181]: Direct Instances: []\n", - "[INFO] [1712351065.025449]: Inverse Restrictions: []\n", - "[INFO] [1712351065.025692]: -------------------\n", - "[INFO] [1712351065.025933]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712351065.026171]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712351065.026442]: Ancestors: {SOMA.MetacognitiveControlling, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.026704]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712351065.026994]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.027481]: Instances: []\n", - "[INFO] [1712351065.027752]: Direct Instances: []\n", - "[INFO] [1712351065.028013]: Inverse Restrictions: []\n", - "[INFO] [1712351065.028252]: -------------------\n", - "[INFO] [1712351065.028489]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712351065.028719]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712351065.028983]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, owl.Thing, SOMA.Introspecting}\n", - "[INFO] [1712351065.029248]: Subclasses: []\n", - "[INFO] [1712351065.029541]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.030028]: Instances: []\n", - "[INFO] [1712351065.030288]: Direct Instances: []\n", - "[INFO] [1712351065.030528]: Inverse Restrictions: []\n", - "[INFO] [1712351065.030765]: -------------------\n", - "[INFO] [1712351065.031011]: SOMA.MilkBottle \n", - "[INFO] [1712351065.031248]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712351065.031509]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bottle, DUL.Entity, SOMA.DesignedContainer, SOMA.MilkBottle, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.031751]: Subclasses: []\n", - "[INFO] [1712351065.032042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.032528]: Instances: []\n", - "[INFO] [1712351065.032784]: Direct Instances: []\n", - "[INFO] [1712351065.033028]: Inverse Restrictions: []\n", - "[INFO] [1712351065.033260]: -------------------\n", - "[INFO] [1712351065.033499]: SOMA.MilkPack \n", - "[INFO] [1712351065.033731]: Super classes: [SOMA.Pack]\n", - "[INFO] [1712351065.033997]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.MilkPack, DUL.Entity, SOMA.Pack, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.034240]: Subclasses: []\n", - "[INFO] [1712351065.034532]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.035013]: Instances: []\n", - "[INFO] [1712351065.035264]: Direct Instances: []\n", - "[INFO] [1712351065.035502]: Inverse Restrictions: []\n", - "[INFO] [1712351065.035744]: -------------------\n", - "[INFO] [1712351065.035976]: SOMA.Pack \n", - "[INFO] [1712351065.036203]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712351065.036439]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Pack, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.036693]: Subclasses: [SOMA.MilkPack]\n", - "[INFO] [1712351065.037156]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.037802]: Instances: []\n", - "[INFO] [1712351065.038197]: Direct Instances: []\n", - "[INFO] [1712351065.038599]: Inverse Restrictions: []\n", - "[INFO] [1712351065.038979]: -------------------\n", - "[INFO] [1712351065.039265]: SOMA.Mixing \n", - "[INFO] [1712351065.039523]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712351065.039797]: Ancestors: {SOMA.Constructing, DUL.SocialObject, SOMA.Mixing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.040051]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712351065.040338]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.040828]: Instances: []\n", - "[INFO] [1712351065.041104]: Direct Instances: []\n", - "[INFO] [1712351065.041367]: Inverse Restrictions: []\n", - "[INFO] [1712351065.041607]: -------------------\n", - "[INFO] [1712351065.041843]: SOMA.MixingTheory \n", - "[INFO] [1712351065.042085]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712351065.042357]: Ancestors: {DUL.Description, SOMA.MixingTheory, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.042606]: Subclasses: []\n", - "[INFO] [1712351065.042899]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351065.043387]: Instances: []\n", - "[INFO] [1712351065.043655]: Direct Instances: []\n", - "[INFO] [1712351065.043906]: Inverse Restrictions: []\n", - "[INFO] [1712351065.044141]: -------------------\n", - "[INFO] [1712351065.044376]: SOMA.MonitoringJointState \n", - "[INFO] [1712351065.044602]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712351065.044878]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, owl.Thing, SOMA.Proprioceiving}\n", - "[INFO] [1712351065.045134]: Subclasses: []\n", - "[INFO] [1712351065.045420]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.045909]: Instances: []\n", - "[INFO] [1712351065.046186]: Direct Instances: []\n", - "[INFO] [1712351065.046481]: Inverse Restrictions: []\n", - "[INFO] [1712351065.046725]: -------------------\n", - "[INFO] [1712351065.046968]: SOMA.Proprioceiving \n", - "[INFO] [1712351065.047208]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351065.047653]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Proprioceiving}\n", - "[INFO] [1712351065.048083]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712351065.048545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.049266]: Instances: []\n", - "[INFO] [1712351065.049615]: Direct Instances: []\n", - "[INFO] [1712351065.049902]: Inverse Restrictions: []\n", - "[INFO] [1712351065.050164]: -------------------\n", - "[INFO] [1712351065.050413]: SOMA.MovingAway \n", - "[INFO] [1712351065.050656]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351065.050943]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, SOMA.MovingAway, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.051199]: Subclasses: []\n", - "[INFO] [1712351065.051492]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.051971]: Instances: []\n", - "[INFO] [1712351065.052246]: Direct Instances: []\n", - "[INFO] [1712351065.052501]: Inverse Restrictions: []\n", - "[INFO] [1712351065.052741]: -------------------\n", - "[INFO] [1712351065.052983]: SOMA.MovingTo \n", - "[INFO] [1712351065.053216]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712351065.053483]: Ancestors: {DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.MovingTo, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.053736]: Subclasses: []\n", - "[INFO] [1712351065.054023]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.054498]: Instances: []\n", - "[INFO] [1712351065.054747]: Direct Instances: []\n", - "[INFO] [1712351065.054993]: Inverse Restrictions: []\n", - "[INFO] [1712351065.055236]: -------------------\n", - "[INFO] [1712351065.055469]: SOMA.Natural_Language \n", - "[INFO] [1712351065.055722]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712351065.055986]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.Natural_Language, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.056249]: Subclasses: []\n", - "[INFO] [1712351065.056545]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.057036]: Instances: []\n", - "[INFO] [1712351065.057298]: Direct Instances: []\n", - "[INFO] [1712351065.057608]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712351065.057870]: -------------------\n", - "[INFO] [1712351065.058115]: SOMA.Natural_Language_Text \n", - "[INFO] [1712351065.058347]: Super classes: [owl.Thing]\n", - "[INFO] [1712351065.058827]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", - "[INFO] [1712351065.059100]: Subclasses: []\n", - "[INFO] [1712351065.059409]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.059899]: Instances: []\n", - "[INFO] [1712351065.060163]: Direct Instances: []\n", - "[INFO] [1712351065.060452]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712351065.060711]: -------------------\n", - "[INFO] [1712351065.060971]: SOMA.NutellaJar \n", - "[INFO] [1712351065.061220]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712351065.061486]: Ancestors: {SOMA.NutellaJar, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Jar, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.061738]: Subclasses: []\n", - "[INFO] [1712351065.062030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.062514]: Instances: []\n", - "[INFO] [1712351065.062778]: Direct Instances: []\n", - "[INFO] [1712351065.063053]: Inverse Restrictions: []\n", - "[INFO] [1712351065.063316]: -------------------\n", - "[INFO] [1712351065.063561]: SOMA.Ontology \n", - "[INFO] [1712351065.063799]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712351065.065007]: Ancestors: {SOMA.Ontology, owl.Thing, SOMA.Structured_Text}\n", - "[INFO] [1712351065.065296]: Subclasses: []\n", - "[INFO] [1712351065.065622]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.066132]: Instances: []\n", - "[INFO] [1712351065.066400]: Direct Instances: []\n", - "[INFO] [1712351065.066717]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712351065.066970]: -------------------\n", - "[INFO] [1712351065.067209]: SOMA.Ontology_Language \n", - "[INFO] [1712351065.067450]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712351065.067720]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.KnowledgeRepresentationLanguage, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.Ontology_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351065.067983]: Subclasses: []\n", - "[INFO] [1712351065.068287]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.068779]: Instances: []\n", - "[INFO] [1712351065.069041]: Direct Instances: []\n", - "[INFO] [1712351065.069344]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712351065.069604]: -------------------\n", - "[INFO] [1712351065.069846]: SOMA.Option \n", - "[INFO] [1712351065.070079]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712351065.070345]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Option, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.070603]: Subclasses: []\n", - "[INFO] [1712351065.070895]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.071380]: Instances: []\n", - "[INFO] [1712351065.071632]: Direct Instances: []\n", - "[INFO] [1712351065.071875]: Inverse Restrictions: []\n", - "[INFO] [1712351065.072119]: -------------------\n", - "[INFO] [1712351065.072356]: SOMA.Singleton \n", - "[INFO] [1712351065.072590]: Super classes: [owl.Thing]\n", - "[INFO] [1712351065.072828]: Ancestors: {owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712351065.073077]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712351065.073386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", - "[INFO] [1712351065.073883]: Instances: []\n", - "[INFO] [1712351065.074142]: Direct Instances: []\n", - "[INFO] [1712351065.074397]: Inverse Restrictions: []\n", - "[INFO] [1712351065.074650]: -------------------\n", - "[INFO] [1712351065.074891]: SOMA.Orienting \n", - "[INFO] [1712351065.075126]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712351065.075399]: Ancestors: {SOMA.Orienting, DUL.SocialObject, SOMA.Positioning, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.075664]: Subclasses: []\n", - "[INFO] [1712351065.075960]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.076449]: Instances: []\n", - "[INFO] [1712351065.076719]: Direct Instances: []\n", - "[INFO] [1712351065.076976]: Inverse Restrictions: []\n", - "[INFO] [1712351065.077216]: -------------------\n", - "[INFO] [1712351065.077655]: SOMA.Positioning \n", - "[INFO] [1712351065.078052]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351065.078328]: Ancestors: {DUL.SocialObject, SOMA.Positioning, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.078658]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712351065.078976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.079479]: Instances: []\n", - "[INFO] [1712351065.079792]: Direct Instances: []\n", - "[INFO] [1712351065.080072]: Inverse Restrictions: []\n", - "[INFO] [1712351065.080326]: -------------------\n", - "[INFO] [1712351065.080568]: SOMA.Origin \n", - "[INFO] [1712351065.080811]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712351065.081084]: Ancestors: {SOMA.Origin, SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.081349]: Subclasses: []\n", - "[INFO] [1712351065.081644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.082127]: Instances: []\n", - "[INFO] [1712351065.082380]: Direct Instances: []\n", - "[INFO] [1712351065.082662]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712351065.082922]: -------------------\n", - "[INFO] [1712351065.083168]: SOMA.Oven \n", - "[INFO] [1712351065.083423]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", - "[INFO] [1712351065.083693]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Oven, DUL.Entity, SOMA.DesignedContainer, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.083942]: Subclasses: []\n", - "[INFO] [1712351065.084229]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.084727]: Instances: []\n", - "[INFO] [1712351065.085036]: Direct Instances: []\n", - "[INFO] [1712351065.085320]: Inverse Restrictions: []\n", - "[INFO] [1712351065.085577]: -------------------\n", - "[INFO] [1712351065.085835]: SOMA.TemperingByHeating \n", - "[INFO] [1712351065.086089]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712351065.086375]: Ancestors: {SOMA.Extrinsic, SOMA.TemperingByHeating, SOMA.Variability, SOMA.Tempering, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.086650]: Subclasses: []\n", - "[INFO] [1712351065.086943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.087443]: Instances: []\n", - "[INFO] [1712351065.087710]: Direct Instances: []\n", - "[INFO] [1712351065.087985]: Inverse Restrictions: [SOMA.Oven]\n", - "[INFO] [1712351065.088228]: -------------------\n", - "[INFO] [1712351065.088469]: SOMA.Pan \n", - "[INFO] [1712351065.088722]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712351065.089005]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, owl.Thing, SOMA.Pan, SOMA.Crockery}\n", - "[INFO] [1712351065.089258]: Subclasses: []\n", - "[INFO] [1712351065.089547]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.090031]: Instances: []\n", - "[INFO] [1712351065.090303]: Direct Instances: []\n", - "[INFO] [1712351065.090563]: Inverse Restrictions: []\n", - "[INFO] [1712351065.090805]: -------------------\n", - "[INFO] [1712351065.091042]: SOMA.Pancake \n", - "[INFO] [1712351065.091274]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712351065.091542]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, DUL.PhysicalObject, SOMA.Pancake, SOMA.BakedGood, owl.Thing, SOMA.Dish}\n", - "[INFO] [1712351065.091799]: Subclasses: []\n", - "[INFO] [1712351065.092087]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.092568]: Instances: []\n", - "[INFO] [1712351065.092841]: Direct Instances: []\n", - "[INFO] [1712351065.093102]: Inverse Restrictions: []\n", - "[INFO] [1712351065.093343]: -------------------\n", - "[INFO] [1712351065.093582]: SOMA.PancakeMix \n", - "[INFO] [1712351065.093812]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712351065.094082]: Ancestors: {DUL.DesignedArtifact, SOMA.PancakeMix, DUL.Substance, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, DUL.DesignedSubstance, DUL.PhysicalBody, DUL.FunctionalSubstance, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.094344]: Subclasses: []\n", - "[INFO] [1712351065.094645]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.095137]: Instances: []\n", - "[INFO] [1712351065.095393]: Direct Instances: []\n", - "[INFO] [1712351065.095651]: Inverse Restrictions: []\n", - "[INFO] [1712351065.095901]: -------------------\n", - "[INFO] [1712351065.096139]: SOMA.ParkingArms \n", - "[INFO] [1712351065.096369]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712351065.096643]: Ancestors: {DUL.SocialObject, SOMA.ParkingArms, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.AssumingArmPose, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.096908]: Subclasses: []\n", - "[INFO] [1712351065.097212]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.097714]: Instances: []\n", - "[INFO] [1712351065.097974]: Direct Instances: []\n", - "[INFO] [1712351065.098222]: Inverse Restrictions: []\n", - "[INFO] [1712351065.098469]: -------------------\n", - "[INFO] [1712351065.098706]: SOMA.PastaBowl \n", - "[INFO] [1712351065.098939]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712351065.099203]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, SOMA.PastaBowl, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Bowl, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351065.099448]: Subclasses: []\n", - "[INFO] [1712351065.099751]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.100297]: Instances: []\n", - "[INFO] [1712351065.100582]: Direct Instances: []\n", - "[INFO] [1712351065.100853]: Inverse Restrictions: []\n", - "[INFO] [1712351065.101104]: -------------------\n", - "[INFO] [1712351065.101352]: SOMA.PepperShaker \n", - "[INFO] [1712351065.101605]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712351065.101886]: Ancestors: {SOMA.Shaker, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.PepperShaker, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.102137]: Subclasses: []\n", - "[INFO] [1712351065.102420]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.102913]: Instances: []\n", - "[INFO] [1712351065.103187]: Direct Instances: []\n", - "[INFO] [1712351065.103434]: Inverse Restrictions: []\n", - "[INFO] [1712351065.103667]: -------------------\n", - "[INFO] [1712351065.103899]: SOMA.Shaker \n", - "[INFO] [1712351065.104129]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712351065.104386]: Ancestors: {SOMA.Shaker, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.104640]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", - "[INFO] [1712351065.104933]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.105419]: Instances: []\n", - "[INFO] [1712351065.105693]: Direct Instances: []\n", - "[INFO] [1712351065.105945]: Inverse Restrictions: []\n", - "[INFO] [1712351065.106182]: -------------------\n", - "[INFO] [1712351065.106420]: SOMA.PhaseTransition \n", - "[INFO] [1712351065.106650]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712351065.106891]: Ancestors: {SOMA.Alteration, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.107151]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712351065.107445]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment]\n", - "[INFO] [1712351065.107932]: Instances: []\n", - "[INFO] [1712351065.108197]: Direct Instances: []\n", - "[INFO] [1712351065.108454]: Inverse Restrictions: []\n", - "[INFO] [1712351065.108692]: -------------------\n", - "[INFO] [1712351065.108932]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712351065.109178]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712351065.109452]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, SOMA.PhysicalAccessibility, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.109699]: Subclasses: []\n", - "[INFO] [1712351065.109991]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.110480]: Instances: []\n", - "[INFO] [1712351065.110752]: Direct Instances: []\n", - "[INFO] [1712351065.111005]: Inverse Restrictions: []\n", - "[INFO] [1712351065.111245]: -------------------\n", - "[INFO] [1712351065.111480]: SOMA.PhysicalBlockage \n", - "[INFO] [1712351065.111716]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712351065.111989]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, SOMA.PhysicalBlockage, DUL.Concept, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.112241]: Subclasses: []\n", - "[INFO] [1712351065.112534]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.113018]: Instances: []\n", - "[INFO] [1712351065.113290]: Direct Instances: []\n", - "[INFO] [1712351065.113549]: Inverse Restrictions: []\n", - "[INFO] [1712351065.113789]: -------------------\n", - "[INFO] [1712351065.114023]: SOMA.PhysicalExistence \n", - "[INFO] [1712351065.114255]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712351065.114516]: Ancestors: {SOMA.State, DUL.Entity, SOMA.PhysicalExistence, SOMA.PhysicalState, DUL.Event, owl.Thing}\n", - "[INFO] [1712351065.114777]: Subclasses: []\n", - "[INFO] [1712351065.115073]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.115566]: Instances: []\n", - "[INFO] [1712351065.115832]: Direct Instances: []\n", - "[INFO] [1712351065.116080]: Inverse Restrictions: []\n", - "[INFO] [1712351065.116328]: -------------------\n", - "[INFO] [1712351065.116568]: SOMA.PhysicalState \n", - "[INFO] [1712351065.116809]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712351065.117054]: Ancestors: {SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event, owl.Thing}\n", - "[INFO] [1712351065.117298]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712351065.117600]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.118089]: Instances: []\n", - "[INFO] [1712351065.118350]: Direct Instances: []\n", - "[INFO] [1712351065.118606]: Inverse Restrictions: []\n", - "[INFO] [1712351065.118852]: -------------------\n", - "[INFO] [1712351065.119092]: SOMA.PhysicsProcess \n", - "[INFO] [1712351065.119328]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712351065.119584]: Ancestors: {SOMA.PhysicsProcess, DUL.Entity, DUL.Event, owl.Thing, DUL.Process}\n", - "[INFO] [1712351065.119842]: Subclasses: []\n", - "[INFO] [1712351065.120136]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.120621]: Instances: []\n", - "[INFO] [1712351065.120878]: Direct Instances: []\n", - "[INFO] [1712351065.121125]: Inverse Restrictions: []\n", - "[INFO] [1712351065.121372]: -------------------\n", - "[INFO] [1712351065.121612]: SOMA.PlacingTheory \n", - "[INFO] [1712351065.121855]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712351065.122114]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.PlacingTheory, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.122370]: Subclasses: []\n", - "[INFO] [1712351065.122668]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351065.123146]: Instances: []\n", - "[INFO] [1712351065.123402]: Direct Instances: []\n", - "[INFO] [1712351065.123658]: Inverse Restrictions: []\n", - "[INFO] [1712351065.123897]: -------------------\n", - "[INFO] [1712351065.124135]: SOMA.PlanarJoint \n", - "[INFO] [1712351065.124375]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712351065.124633]: Ancestors: {SOMA.MovableJoint, SOMA.PlanarJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.124935]: Subclasses: []\n", - "[INFO] [1712351065.125368]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.125891]: Instances: []\n", - "[INFO] [1712351065.126165]: Direct Instances: []\n", - "[INFO] [1712351065.126423]: Inverse Restrictions: []\n", - "[INFO] [1712351065.126683]: -------------------\n", - "[INFO] [1712351065.126930]: SOMA.PluginRole \n", - "[INFO] [1712351065.127177]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712351065.127441]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, SOMA.PluginRole, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351065.127682]: Subclasses: []\n", - "[INFO] [1712351065.127982]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", - "[INFO] [1712351065.128461]: Instances: []\n", - "[INFO] [1712351065.128717]: Direct Instances: []\n", - "[INFO] [1712351065.129027]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712351065.129281]: -------------------\n", - "[INFO] [1712351065.129522]: SOMA.Pot \n", - "[INFO] [1712351065.129757]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712351065.130020]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.Pot, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351065.130278]: Subclasses: [SOMA.SoupPot]\n", - "[INFO] [1712351065.130560]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.131042]: Instances: []\n", - "[INFO] [1712351065.131288]: Direct Instances: []\n", - "[INFO] [1712351065.131532]: Inverse Restrictions: []\n", - "[INFO] [1712351065.131771]: -------------------\n", - "[INFO] [1712351065.132006]: SOMA.Pourable \n", - "[INFO] [1712351065.132257]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712351065.132517]: Ancestors: {SOMA.Extrinsic, SOMA.Pourable, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.132771]: Subclasses: []\n", - "[INFO] [1712351065.133067]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.133550]: Instances: []\n", - "[INFO] [1712351065.133800]: Direct Instances: []\n", - "[INFO] [1712351065.134261]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712351065.134552]: -------------------\n", - "[INFO] [1712351065.134819]: SOMA.PouredObject \n", - "[INFO] [1712351065.135067]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.135336]: Ancestors: {SOMA.PouredObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.135602]: Subclasses: []\n", - "[INFO] [1712351065.135898]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.136391]: Instances: []\n", - "[INFO] [1712351065.136651]: Direct Instances: []\n", - "[INFO] [1712351065.136947]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712351065.137201]: -------------------\n", - "[INFO] [1712351065.137447]: SOMA.Pouring \n", - "[INFO] [1712351065.137685]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712351065.137981]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712351065.138247]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712351065.138537]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.139026]: Instances: []\n", - "[INFO] [1712351065.139292]: Direct Instances: []\n", - "[INFO] [1712351065.139549]: Inverse Restrictions: []\n", - "[INFO] [1712351065.139783]: -------------------\n", - "[INFO] [1712351065.140013]: SOMA.PouringInto \n", - "[INFO] [1712351065.140244]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712351065.140511]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PouringInto, DUL.EventType, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712351065.140757]: Subclasses: []\n", - "[INFO] [1712351065.141042]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.141522]: Instances: []\n", - "[INFO] [1712351065.141780]: Direct Instances: []\n", - "[INFO] [1712351065.142029]: Inverse Restrictions: []\n", - "[INFO] [1712351065.142257]: -------------------\n", - "[INFO] [1712351065.142483]: SOMA.PouringOnto \n", - "[INFO] [1712351065.142724]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712351065.142987]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PouringOnto, DUL.EventType, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712351065.143224]: Subclasses: []\n", - "[INFO] [1712351065.143504]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.143997]: Instances: []\n", - "[INFO] [1712351065.144253]: Direct Instances: []\n", - "[INFO] [1712351065.144494]: Inverse Restrictions: []\n", - "[INFO] [1712351065.144721]: -------------------\n", - "[INFO] [1712351065.144955]: SOMA.Prediction \n", - "[INFO] [1712351065.145196]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712351065.145459]: Ancestors: {SOMA.Prediction, SOMA.DerivingInformation, SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351065.145698]: Subclasses: []\n", - "[INFO] [1712351065.145983]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.146465]: Instances: []\n", - "[INFO] [1712351065.146718]: Direct Instances: []\n", - "[INFO] [1712351065.146960]: Inverse Restrictions: []\n", - "[INFO] [1712351065.147198]: -------------------\n", - "[INFO] [1712351065.147430]: SOMA.Prospecting \n", - "[INFO] [1712351065.147660]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351065.147899]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Prospecting}\n", - "[INFO] [1712351065.148154]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712351065.148438]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.148923]: Instances: []\n", - "[INFO] [1712351065.149197]: Direct Instances: []\n", - "[INFO] [1712351065.149450]: Inverse Restrictions: []\n", - "[INFO] [1712351065.149689]: -------------------\n", - "[INFO] [1712351065.149921]: SOMA.Predilection \n", - "[INFO] [1712351065.150915]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712351065.151219]: Ancestors: {SOMA.Predilection, DUL.Description, DUL.SocialRelation, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351065.151484]: Subclasses: []\n", - "[INFO] [1712351065.151780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351065.152267]: Instances: []\n", - "[INFO] [1712351065.152535]: Direct Instances: []\n", - "[INFO] [1712351065.152790]: Inverse Restrictions: []\n", - "[INFO] [1712351065.153029]: -------------------\n", - "[INFO] [1712351065.153258]: SOMA.PreferenceOrder \n", - "[INFO] [1712351065.153893]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712351065.154186]: Ancestors: {DUL.Description, DUL.SocialRelation, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.PreferenceOrder, DUL.Relation}\n", - "[INFO] [1712351065.154441]: Subclasses: []\n", - "[INFO] [1712351065.154735]: Properties: [SOMA.orders, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.155219]: Instances: []\n", - "[INFO] [1712351065.155483]: Direct Instances: []\n", - "[INFO] [1712351065.155732]: Inverse Restrictions: []\n", - "[INFO] [1712351065.155968]: -------------------\n", - "[INFO] [1712351065.156200]: SOMA.PreferenceRegion \n", - "[INFO] [1712351065.156435]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712351065.156696]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Entity, DUL.SocialObjectAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.157486]: Subclasses: []\n", - "[INFO] [1712351065.157898]: Properties: [rdf-schema.label, DUL.isRegionFor, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.158434]: Instances: []\n", - "[INFO] [1712351065.158713]: Direct Instances: []\n", - "[INFO] [1712351065.158978]: Inverse Restrictions: []\n", - "[INFO] [1712351065.159225]: -------------------\n", - "[INFO] [1712351065.159469]: SOMA.PrismaticJoint \n", - "[INFO] [1712351065.159734]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712351065.160022]: Ancestors: {SOMA.MovableJoint, SOMA.PrismaticJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.160278]: Subclasses: []\n", - "[INFO] [1712351065.160577]: Properties: [SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.161068]: Instances: []\n", - "[INFO] [1712351065.161347]: Direct Instances: []\n", - "[INFO] [1712351065.161608]: Inverse Restrictions: []\n", - "[INFO] [1712351065.161854]: -------------------\n", - "[INFO] [1712351065.162096]: SOMA.ProcessFlow \n", - "[INFO] [1712351065.162338]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712351065.162602]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.ProcessFlow, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.162874]: Subclasses: []\n", - "[INFO] [1712351065.163205]: Properties: [rdf-schema.label, SOMA.definesProcess, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.163716]: Instances: []\n", - "[INFO] [1712351065.163997]: Direct Instances: []\n", - "[INFO] [1712351065.164659]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712351065.164954]: -------------------\n", - "[INFO] [1712351065.165226]: SOMA.Progression \n", - "[INFO] [1712351065.165482]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712351065.166339]: Ancestors: {owl.Thing, DUL.Entity, SOMA.Progression, DUL.Situation}\n", - "[INFO] [1712351065.166628]: Subclasses: []\n", - "[INFO] [1712351065.166944]: Properties: [DUL.satisfies, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.167437]: Instances: []\n", - "[INFO] [1712351065.167711]: Direct Instances: []\n", - "[INFO] [1712351065.167967]: Inverse Restrictions: []\n", - "[INFO] [1712351065.168221]: -------------------\n", - "[INFO] [1712351065.168559]: SOMA.Protector \n", - "[INFO] [1712351065.168828]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712351065.169108]: Ancestors: {SOMA.Instrument, DUL.SocialObject, owl.Thing, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, SOMA.Protector}\n", - "[INFO] [1712351065.169376]: Subclasses: []\n", - "[INFO] [1712351065.169673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.170162]: Instances: []\n", - "[INFO] [1712351065.170423]: Direct Instances: []\n", - "[INFO] [1712351065.170675]: Inverse Restrictions: []\n", - "[INFO] [1712351065.170920]: -------------------\n", - "[INFO] [1712351065.171163]: SOMA.ProximalTheory \n", - "[INFO] [1712351065.171404]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712351065.171665]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ProximalTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.171926]: Subclasses: []\n", - "[INFO] [1712351065.172231]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351065.172728]: Instances: []\n", - "[INFO] [1712351065.172989]: Direct Instances: []\n", - "[INFO] [1712351065.173245]: Inverse Restrictions: []\n", - "[INFO] [1712351065.173492]: -------------------\n", - "[INFO] [1712351065.173729]: SOMA.PushingAway \n", - "[INFO] [1712351065.173963]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712351065.174229]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, SOMA.PushingAway, DUL.Task, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.174486]: Subclasses: []\n", - "[INFO] [1712351065.174789]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.175272]: Instances: []\n", - "[INFO] [1712351065.175524]: Direct Instances: []\n", - "[INFO] [1712351065.175765]: Inverse Restrictions: []\n", - "[INFO] [1712351065.176014]: -------------------\n", - "[INFO] [1712351065.176250]: SOMA.PushingDown \n", - "[INFO] [1712351065.176481]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712351065.176746]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PushingDown, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.177012]: Subclasses: []\n", - "[INFO] [1712351065.177305]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.177791]: Instances: []\n", - "[INFO] [1712351065.178047]: Direct Instances: []\n", - "[INFO] [1712351065.178311]: Inverse Restrictions: []\n", - "[INFO] [1712351065.178565]: -------------------\n", - "[INFO] [1712351065.178815]: SOMA.PuttingDown \n", - "[INFO] [1712351065.179055]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351065.179323]: Ancestors: {DUL.SocialObject, SOMA.PuttingDown, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.179580]: Subclasses: []\n", - "[INFO] [1712351065.179922]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.180420]: Instances: []\n", - "[INFO] [1712351065.180676]: Direct Instances: []\n", - "[INFO] [1712351065.180925]: Inverse Restrictions: []\n", - "[INFO] [1712351065.181172]: -------------------\n", - "[INFO] [1712351065.181415]: SOMA.QualityTransition \n", - "[INFO] [1712351065.181653]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712351065.181929]: Ancestors: {SOMA.QualityTransition, DUL.Transition, DUL.Entity, DUL.Situation, owl.Thing}\n", - "[INFO] [1712351065.182179]: Subclasses: []\n", - "[INFO] [1712351065.182479]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.182968]: Instances: []\n", - "[INFO] [1712351065.183224]: Direct Instances: []\n", - "[INFO] [1712351065.183470]: Inverse Restrictions: []\n", - "[INFO] [1712351065.183705]: -------------------\n", - "[INFO] [1712351065.183944]: SOMA.Query \n", - "[INFO] [1712351065.184193]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712351065.184456]: Ancestors: {DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.Query}\n", - "[INFO] [1712351065.184695]: Subclasses: []\n", - "[INFO] [1712351065.184982]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.185478]: Instances: []\n", - "[INFO] [1712351065.185751]: Direct Instances: []\n", - "[INFO] [1712351065.186039]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712351065.186296]: -------------------\n", - "[INFO] [1712351065.186539]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712351065.186775]: Super classes: [owl.Thing]\n", - "[INFO] [1712351065.188694]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", - "[INFO] [1712351065.189181]: Subclasses: []\n", - "[INFO] [1712351065.189559]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.190103]: Instances: []\n", - "[INFO] [1712351065.190438]: Direct Instances: []\n", - "[INFO] [1712351065.190724]: Inverse Restrictions: []\n", - "[INFO] [1712351065.190983]: -------------------\n", - "[INFO] [1712351065.191239]: SOMA.QueryEngine \n", - "[INFO] [1712351065.191485]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351065.191758]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.QueryEngine, DUL.Role, owl.Thing}\n", - "[INFO] [1712351065.192027]: Subclasses: []\n", - "[INFO] [1712351065.192327]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.192827]: Instances: []\n", - "[INFO] [1712351065.193095]: Direct Instances: []\n", - "[INFO] [1712351065.193360]: Inverse Restrictions: []\n", - "[INFO] [1712351065.193613]: -------------------\n", - "[INFO] [1712351065.193856]: SOMA.RaspberryJamJar \n", - "[INFO] [1712351065.194093]: Super classes: [SOMA.JamJar]\n", - "[INFO] [1712351065.194475]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.RaspberryJamJar, DUL.Entity, SOMA.JamJar, SOMA.DesignedContainer, SOMA.Jar, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.194771]: Subclasses: []\n", - "[INFO] [1712351065.195083]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.195586]: Instances: []\n", - "[INFO] [1712351065.195877]: Direct Instances: []\n", - "[INFO] [1712351065.196134]: Inverse Restrictions: []\n", - "[INFO] [1712351065.196411]: -------------------\n", - "[INFO] [1712351065.196672]: SOMA.Reaching \n", - "[INFO] [1712351065.196915]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712351065.197203]: Ancestors: {DUL.SocialObject, SOMA.Reaching, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.197462]: Subclasses: []\n", - "[INFO] [1712351065.197769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.198283]: Instances: []\n", - "[INFO] [1712351065.198573]: Direct Instances: []\n", - "[INFO] [1712351065.198837]: Inverse Restrictions: []\n", - "[INFO] [1712351065.199088]: -------------------\n", - "[INFO] [1712351065.199330]: SOMA.Retracting \n", - "[INFO] [1712351065.199568]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712351065.199845]: Ancestors: {SOMA.Retracting, DUL.SocialObject, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.200097]: Subclasses: []\n", - "[INFO] [1712351065.200386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.200873]: Instances: []\n", - "[INFO] [1712351065.201144]: Direct Instances: []\n", - "[INFO] [1712351065.201398]: Inverse Restrictions: []\n", - "[INFO] [1712351065.201637]: -------------------\n", - "[INFO] [1712351065.201874]: SOMA.Reasoner \n", - "[INFO] [1712351065.202119]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351065.202369]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing}\n", - "[INFO] [1712351065.202619]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712351065.202916]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.203411]: Instances: []\n", - "[INFO] [1712351065.203671]: Direct Instances: []\n", - "[INFO] [1712351065.203935]: Inverse Restrictions: []\n", - "[INFO] [1712351065.204179]: -------------------\n", - "[INFO] [1712351065.204418]: SOMA.RecipientRole \n", - "[INFO] [1712351065.204654]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712351065.204920]: Ancestors: {SOMA.GoalRole, SOMA.RecipientRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, owl.Thing}\n", - "[INFO] [1712351065.205178]: Subclasses: []\n", - "[INFO] [1712351065.205469]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.205956]: Instances: []\n", - "[INFO] [1712351065.206221]: Direct Instances: []\n", - "[INFO] [1712351065.206475]: Inverse Restrictions: []\n", - "[INFO] [1712351065.206715]: -------------------\n", - "[INFO] [1712351065.206949]: SOMA.RecordedEpisode \n", - "[INFO] [1712351065.207196]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712351065.207449]: Ancestors: {SOMA.RecordedEpisode, DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing}\n", - "[INFO] [1712351065.207708]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712351065.208004]: Properties: [SOMA.includesRecord, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.208495]: Instances: []\n", - "[INFO] [1712351065.208766]: Direct Instances: []\n", - "[INFO] [1712351065.209032]: Inverse Restrictions: []\n", - "[INFO] [1712351065.209274]: -------------------\n", - "[INFO] [1712351065.209512]: SOMA.RedColor \n", - "[INFO] [1712351065.209747]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712351065.210005]: Ancestors: {SOMA.ColorRegion, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.RedColor, owl.Thing}\n", - "[INFO] [1712351065.210265]: Subclasses: []\n", - "[INFO] [1712351065.210560]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.211045]: Instances: []\n", - "[INFO] [1712351065.211311]: Direct Instances: []\n", - "[INFO] [1712351065.211565]: Inverse Restrictions: []\n", - "[INFO] [1712351065.211802]: -------------------\n", - "[INFO] [1712351065.212035]: SOMA.Refrigerator \n", - "[INFO] [1712351065.212265]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", - "[INFO] [1712351065.212523]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.Refrigerator, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.212783]: Subclasses: []\n", - "[INFO] [1712351065.213100]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.213615]: Instances: []\n", - "[INFO] [1712351065.213888]: Direct Instances: []\n", - "[INFO] [1712351065.214139]: Inverse Restrictions: []\n", - "[INFO] [1712351065.214382]: -------------------\n", - "[INFO] [1712351065.214616]: SOMA.Reification \n", - "[INFO] [1712351065.214869]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712351065.215151]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Reification, owl.Thing}\n", - "[INFO] [1712351065.215406]: Subclasses: []\n", - "[INFO] [1712351065.215698]: Properties: [SOMA.isReificationOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.216226]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712351065.216509]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712351065.216769]: Inverse Restrictions: []\n", - "[INFO] [1712351065.217018]: -------------------\n", - "[INFO] [1712351065.217259]: SOMA.RelationalDatabase \n", - "[INFO] [1712351065.217495]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712351065.217755]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.RelationalDatabase, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, DUL.Role, owl.Thing}\n", - "[INFO] [1712351065.218014]: Subclasses: []\n", - "[INFO] [1712351065.218307]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.218790]: Instances: []\n", - "[INFO] [1712351065.219040]: Direct Instances: []\n", - "[INFO] [1712351065.219285]: Inverse Restrictions: []\n", - "[INFO] [1712351065.219528]: -------------------\n", - "[INFO] [1712351065.219767]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712351065.220000]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712351065.220258]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.RelationalQueryLanguage, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351065.220496]: Subclasses: []\n", - "[INFO] [1712351065.220797]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.221289]: Instances: []\n", - "[INFO] [1712351065.221542]: Direct Instances: []\n", - "[INFO] [1712351065.221781]: Inverse Restrictions: []\n", - "[INFO] [1712351065.222010]: -------------------\n", - "[INFO] [1712351065.222240]: SOMA.RelevantPart \n", - "[INFO] [1712351065.222483]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712351065.222741]: Ancestors: {SOMA.Feature, DUL.Object, DUL.Entity, SOMA.RelevantPart, owl.Thing}\n", - "[INFO] [1712351065.222980]: Subclasses: []\n", - "[INFO] [1712351065.223261]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.223753]: Instances: []\n", - "[INFO] [1712351065.224008]: Direct Instances: []\n", - "[INFO] [1712351065.224250]: Inverse Restrictions: []\n", - "[INFO] [1712351065.224485]: -------------------\n", - "[INFO] [1712351065.224711]: SOMA.Remembering \n", - "[INFO] [1712351065.224957]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712351065.225219]: Ancestors: {owl.Thing, SOMA.Remembering}\n", - "[INFO] [1712351065.225464]: Subclasses: []\n", - "[INFO] [1712351065.225742]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.226230]: Instances: []\n", - "[INFO] [1712351065.226493]: Direct Instances: []\n", - "[INFO] [1712351065.226740]: Inverse Restrictions: []\n", - "[INFO] [1712351065.226972]: -------------------\n", - "[INFO] [1712351065.227198]: SOMA.Retrospecting \n", - "[INFO] [1712351065.227444]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712351065.227702]: Ancestors: {SOMA.Retrospecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351065.227943]: Subclasses: []\n", - "[INFO] [1712351065.228226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.228725]: Instances: []\n", - "[INFO] [1712351065.228999]: Direct Instances: []\n", - "[INFO] [1712351065.229289]: Inverse Restrictions: []\n", - "[INFO] [1712351065.229530]: -------------------\n", - "[INFO] [1712351065.229787]: SOMA.RemovedObject \n", - "[INFO] [1712351065.230034]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712351065.230309]: Ancestors: {SOMA.RemovedObject, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.ExcludedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.230554]: Subclasses: []\n", - "[INFO] [1712351065.230838]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.231333]: Instances: []\n", - "[INFO] [1712351065.231596]: Direct Instances: []\n", - "[INFO] [1712351065.231843]: Inverse Restrictions: []\n", - "[INFO] [1712351065.232072]: -------------------\n", - "[INFO] [1712351065.232299]: SOMA.Replanning \n", - "[INFO] [1712351065.232529]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712351065.232797]: Ancestors: {SOMA.Planning, SOMA.Replanning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351065.233047]: Subclasses: []\n", - "[INFO] [1712351065.233334]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.233815]: Instances: []\n", - "[INFO] [1712351065.234080]: Direct Instances: []\n", - "[INFO] [1712351065.234332]: Inverse Restrictions: []\n", - "[INFO] [1712351065.234575]: -------------------\n", - "[INFO] [1712351065.234813]: SOMA.RevoluteJoint \n", - "[INFO] [1712351065.235047]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712351065.235321]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, SOMA.RevoluteJoint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.235574]: Subclasses: []\n", - "[INFO] [1712351065.235867]: Properties: [SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.236364]: Instances: []\n", - "[INFO] [1712351065.236626]: Direct Instances: []\n", - "[INFO] [1712351065.236884]: Inverse Restrictions: []\n", - "[INFO] [1712351065.237124]: -------------------\n", - "[INFO] [1712351065.237361]: SOMA.Surface \n", - "[INFO] [1712351065.237594]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712351065.237850]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.238101]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712351065.238385]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.238873]: Instances: []\n", - "[INFO] [1712351065.239144]: Direct Instances: []\n", - "[INFO] [1712351065.239400]: Inverse Restrictions: []\n", - "[INFO] [1712351065.239640]: -------------------\n", - "[INFO] [1712351065.239877]: SOMA.Rubbing \n", - "[INFO] [1712351065.240108]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712351065.240374]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, SOMA.Rubbing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.240633]: Subclasses: []\n", - "[INFO] [1712351065.240931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.241415]: Instances: []\n", - "[INFO] [1712351065.241669]: Direct Instances: []\n", - "[INFO] [1712351065.241913]: Inverse Restrictions: []\n", - "[INFO] [1712351065.242149]: -------------------\n", - "[INFO] [1712351065.242390]: SOMA.SaladBowl \n", - "[INFO] [1712351065.242627]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712351065.242897]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, SOMA.SaladBowl, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Bowl, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351065.243139]: Subclasses: []\n", - "[INFO] [1712351065.243415]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.243910]: Instances: []\n", - "[INFO] [1712351065.244171]: Direct Instances: []\n", - "[INFO] [1712351065.244417]: Inverse Restrictions: []\n", - "[INFO] [1712351065.244651]: -------------------\n", - "[INFO] [1712351065.244884]: SOMA.SaltShaker \n", - "[INFO] [1712351065.245119]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712351065.245389]: Ancestors: {SOMA.Shaker, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.SaltShaker, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.245633]: Subclasses: []\n", - "[INFO] [1712351065.245912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.246406]: Instances: []\n", - "[INFO] [1712351065.246694]: Direct Instances: []\n", - "[INFO] [1712351065.246958]: Inverse Restrictions: []\n", - "[INFO] [1712351065.247198]: -------------------\n", - "[INFO] [1712351065.247434]: SOMA.Scene \n", - "[INFO] [1712351065.247680]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712351065.247954]: Ancestors: {owl.Thing, DUL.Entity, SOMA.Scene, DUL.Situation}\n", - "[INFO] [1712351065.248214]: Subclasses: []\n", - "[INFO] [1712351065.248512]: Properties: [DUL.satisfies, DUL.includesEvent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.248993]: Instances: []\n", - "[INFO] [1712351065.249254]: Direct Instances: []\n", - "[INFO] [1712351065.249554]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712351065.249808]: -------------------\n", - "[INFO] [1712351065.250044]: SOMA.SelectedObject \n", - "[INFO] [1712351065.250277]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712351065.250534]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, owl.Thing, SOMA.SelectedObject}\n", - "[INFO] [1712351065.250790]: Subclasses: []\n", - "[INFO] [1712351065.251083]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.251568]: Instances: []\n", - "[INFO] [1712351065.251820]: Direct Instances: []\n", - "[INFO] [1712351065.252116]: Inverse Restrictions: []\n", - "[INFO] [1712351065.252368]: -------------------\n", - "[INFO] [1712351065.252612]: SOMA.Selecting \n", - "[INFO] [1712351065.252849]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712351065.253110]: Ancestors: {SOMA.Selecting, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351065.253363]: Subclasses: []\n", - "[INFO] [1712351065.253656]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.254139]: Instances: []\n", - "[INFO] [1712351065.254395]: Direct Instances: []\n", - "[INFO] [1712351065.254648]: Inverse Restrictions: []\n", - "[INFO] [1712351065.254887]: -------------------\n", - "[INFO] [1712351065.255121]: SOMA.SelectingItem \n", - "[INFO] [1712351065.255764]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712351065.256063]: Ancestors: {SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.SelectingItem, SOMA.GetTaskParameter}\n", - "[INFO] [1712351065.256324]: Subclasses: []\n", - "[INFO] [1712351065.256618]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.257172]: Instances: []\n", - "[INFO] [1712351065.257446]: Direct Instances: []\n", - "[INFO] [1712351065.257700]: Inverse Restrictions: []\n", - "[INFO] [1712351065.257943]: -------------------\n", - "[INFO] [1712351065.258180]: SOMA.SelfReflection \n", - "[INFO] [1712351065.258412]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712351065.258683]: Ancestors: {SOMA.MetacognitiveControlling, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, SOMA.SelfReflection, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.258940]: Subclasses: []\n", - "[INFO] [1712351065.259233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351065.259718]: Instances: []\n", - "[INFO] [1712351065.259978]: Direct Instances: []\n", - "[INFO] [1712351065.260234]: Inverse Restrictions: []\n", - "[INFO] [1712351065.260468]: -------------------\n", - "[INFO] [1712351065.260700]: SOMA.Serving \n", - "[INFO] [1712351065.262070]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712351065.262382]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, SOMA.Serving, DUL.Task, DUL.Concept, DUL.EventType, SOMA.Delivering, owl.Thing}\n", - "[INFO] [1712351065.262646]: Subclasses: []\n", - "[INFO] [1712351065.262956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.263463]: Instances: []\n", - "[INFO] [1712351065.263734]: Direct Instances: []\n", - "[INFO] [1712351065.263999]: Inverse Restrictions: []\n", - "[INFO] [1712351065.264244]: -------------------\n", - "[INFO] [1712351065.264483]: SOMA.SettingGripper \n", - "[INFO] [1712351065.264715]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712351065.264989]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.SettingGripper, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.265252]: Subclasses: []\n", - "[INFO] [1712351065.265548]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.266036]: Instances: []\n", - "[INFO] [1712351065.266286]: Direct Instances: []\n", - "[INFO] [1712351065.266525]: Inverse Restrictions: []\n", - "[INFO] [1712351065.266766]: -------------------\n", - "[INFO] [1712351065.267008]: SOMA.6DPose \n", - "[INFO] [1712351065.267267]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712351065.267542]: Ancestors: {SOMA.6DPose, DUL.Entity, DUL.Region, DUL.SpaceRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.267786]: Subclasses: []\n", - "[INFO] [1712351065.268083]: Properties: [rdf-schema.label, SOMA.hasPositionData, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.268573]: Instances: []\n", - "[INFO] [1712351065.268829]: Direct Instances: []\n", - "[INFO] [1712351065.269118]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712351065.269370]: -------------------\n", - "[INFO] [1712351065.269612]: SOMA.Sharpness \n", - "[INFO] [1712351065.269848]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351065.270101]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, SOMA.Sharpness}\n", - "[INFO] [1712351065.270351]: Subclasses: []\n", - "[INFO] [1712351065.270643]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.271127]: Instances: []\n", - "[INFO] [1712351065.271383]: Direct Instances: []\n", - "[INFO] [1712351065.271628]: Inverse Restrictions: []\n", - "[INFO] [1712351065.271875]: -------------------\n", - "[INFO] [1712351065.272112]: SOMA.Simulating \n", - "[INFO] [1712351065.272348]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712351065.272606]: Ancestors: {SOMA.Simulating, SOMA.DerivingInformation, SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351065.272857]: Subclasses: []\n", - "[INFO] [1712351065.273161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.273654]: Instances: []\n", - "[INFO] [1712351065.273906]: Direct Instances: []\n", - "[INFO] [1712351065.274147]: Inverse Restrictions: []\n", - "[INFO] [1712351065.274384]: -------------------\n", - "[INFO] [1712351065.274630]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712351065.274868]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712351065.275131]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing, SOMA.Simulation_Reasoner}\n", - "[INFO] [1712351065.275372]: Subclasses: []\n", - "[INFO] [1712351065.275654]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.276149]: Instances: []\n", - "[INFO] [1712351065.276409]: Direct Instances: []\n", - "[INFO] [1712351065.276658]: Inverse Restrictions: []\n", - "[INFO] [1712351065.276898]: -------------------\n", - "[INFO] [1712351065.277136]: SOMA.Sink \n", - "[INFO] [1712351065.277378]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351065.277647]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Sink, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.277890]: Subclasses: []\n", - "[INFO] [1712351065.278171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.278662]: Instances: []\n", - "[INFO] [1712351065.278982]: Direct Instances: []\n", - "[INFO] [1712351065.279582]: Inverse Restrictions: []\n", - "[INFO] [1712351065.279907]: -------------------\n", - "[INFO] [1712351065.280151]: SOMA.Size \n", - "[INFO] [1712351065.280387]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351065.280670]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Size, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351065.280956]: Subclasses: []\n", - "[INFO] [1712351065.281276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.281760]: Instances: []\n", - "[INFO] [1712351065.282090]: Direct Instances: []\n", - "[INFO] [1712351065.282385]: Inverse Restrictions: []\n", - "[INFO] [1712351065.282643]: -------------------\n", - "[INFO] [1712351065.282894]: SOMA.Slicing \n", - "[INFO] [1712351065.283137]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712351065.283412]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, SOMA.Slicing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", - "[INFO] [1712351065.283678]: Subclasses: []\n", - "[INFO] [1712351065.283977]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.284468]: Instances: []\n", - "[INFO] [1712351065.284728]: Direct Instances: []\n", - "[INFO] [1712351065.284989]: Inverse Restrictions: []\n", - "[INFO] [1712351065.285243]: -------------------\n", - "[INFO] [1712351065.285491]: SOMA.Sluggishness \n", - "[INFO] [1712351065.285732]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712351065.285995]: Ancestors: {DUL.Description, SOMA.Sluggishness, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351065.286234]: Subclasses: []\n", - "[INFO] [1712351065.286522]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.287004]: Instances: []\n", - "[INFO] [1712351065.287256]: Direct Instances: []\n", - "[INFO] [1712351065.287495]: Inverse Restrictions: []\n", - "[INFO] [1712351065.287735]: -------------------\n", - "[INFO] [1712351065.287972]: SOMA.SocialState \n", - "[INFO] [1712351065.288229]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712351065.288489]: Ancestors: {SOMA.State, DUL.Entity, DUL.Event, owl.Thing, SOMA.SocialState}\n", - "[INFO] [1712351065.288733]: Subclasses: []\n", - "[INFO] [1712351065.289042]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.289534]: Instances: []\n", - "[INFO] [1712351065.289791]: Direct Instances: []\n", - "[INFO] [1712351065.290050]: Inverse Restrictions: []\n", - "[INFO] [1712351065.290292]: -------------------\n", - "[INFO] [1712351065.290522]: SOMA.Sofa \n", - "[INFO] [1712351065.290753]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712351065.291015]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, SOMA.Sofa, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.291269]: Subclasses: []\n", - "[INFO] [1712351065.291560]: Properties: [SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.292043]: Instances: []\n", - "[INFO] [1712351065.292305]: Direct Instances: []\n", - "[INFO] [1712351065.292563]: Inverse Restrictions: []\n", - "[INFO] [1712351065.292810]: -------------------\n", - "[INFO] [1712351065.293067]: SOMA.Software_Configuration \n", - "[INFO] [1712351065.293311]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712351065.293583]: Ancestors: {DUL.Collection, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Software_Configuration, DUL.Configuration, owl.Thing}\n", - "[INFO] [1712351065.293842]: Subclasses: []\n", - "[INFO] [1712351065.294138]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351065.294632]: Instances: []\n", - "[INFO] [1712351065.294896]: Direct Instances: []\n", - "[INFO] [1712351065.295253]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712351065.295539]: -------------------\n", - "[INFO] [1712351065.295817]: SOMA.SoftwareLibrary \n", - "[INFO] [1712351065.296091]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712351065.296408]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, SOMA.SoftwareLibrary, DUL.Object, DUL.Entity, SOMA.Software, owl.Thing}\n", - "[INFO] [1712351065.296720]: Subclasses: []\n", - "[INFO] [1712351065.297078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351065.297644]: Instances: []\n", - "[INFO] [1712351065.297930]: Direct Instances: []\n", - "[INFO] [1712351065.298211]: Inverse Restrictions: []\n", - "[INFO] [1712351065.298477]: -------------------\n", - "[INFO] [1712351065.298733]: SOMA.SoupPot \n", - "[INFO] [1712351065.298981]: Super classes: [SOMA.Pot]\n", - "[INFO] [1712351065.299267]: Ancestors: {DUL.DesignedArtifact, SOMA.SoupPot, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.Pot, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351065.299544]: Subclasses: []\n", - "[INFO] [1712351065.299853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.300347]: Instances: []\n", - "[INFO] [1712351065.300598]: Direct Instances: []\n", - "[INFO] [1712351065.300839]: Inverse Restrictions: []\n", - "[INFO] [1712351065.301087]: -------------------\n", - "[INFO] [1712351065.301331]: SOMA.SourceMaterialRole \n", - "[INFO] [1712351065.301586]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712351065.301852]: Ancestors: {DUL.SocialObject, owl.Thing, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.SourceMaterialRole}\n", - "[INFO] [1712351065.302092]: Subclasses: []\n", - "[INFO] [1712351065.302387]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.302871]: Instances: []\n", - "[INFO] [1712351065.303123]: Direct Instances: []\n", - "[INFO] [1712351065.303363]: Inverse Restrictions: []\n", - "[INFO] [1712351065.303591]: -------------------\n", - "[INFO] [1712351065.303833]: SOMA.Spatula \n", - "[INFO] [1712351065.304079]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", - "[INFO] [1712351065.304343]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.Spatula, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.304588]: Subclasses: []\n", - "[INFO] [1712351065.304874]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.305369]: Instances: []\n", - "[INFO] [1712351065.305632]: Direct Instances: []\n", - "[INFO] [1712351065.305877]: Inverse Restrictions: []\n", - "[INFO] [1712351065.306107]: -------------------\n", - "[INFO] [1712351065.306340]: SOMA.SphereShape \n", - "[INFO] [1712351065.306613]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712351065.306900]: Ancestors: {SOMA.ShapeRegion, DUL.Region, SOMA.SphereShape, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.307157]: Subclasses: []\n", - "[INFO] [1712351065.307455]: Properties: [rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.307935]: Instances: []\n", - "[INFO] [1712351065.308207]: Direct Instances: []\n", - "[INFO] [1712351065.308467]: Inverse Restrictions: []\n", - "[INFO] [1712351065.308707]: -------------------\n", - "[INFO] [1712351065.308949]: SOMA.Spoon \n", - "[INFO] [1712351065.309625]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712351065.309931]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, SOMA.Spoon, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.310206]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", - "[INFO] [1712351065.310510]: Properties: [SOMA.hasPhysicalComponent, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.311012]: Instances: []\n", - "[INFO] [1712351065.311303]: Direct Instances: []\n", - "[INFO] [1712351065.311569]: Inverse Restrictions: []\n", - "[INFO] [1712351065.311815]: -------------------\n", - "[INFO] [1712351065.312055]: SOMA.Standing \n", - "[INFO] [1712351065.312295]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712351065.312569]: Ancestors: {DUL.SocialObject, SOMA.Standing, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", - "[INFO] [1712351065.312834]: Subclasses: []\n", - "[INFO] [1712351065.313132]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.313614]: Instances: []\n", - "[INFO] [1712351065.313872]: Direct Instances: []\n", - "[INFO] [1712351065.314119]: Inverse Restrictions: []\n", - "[INFO] [1712351065.314358]: -------------------\n", - "[INFO] [1712351065.314612]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712351065.314855]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712351065.315124]: Ancestors: {SOMA.StaticFrictionAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", - "[INFO] [1712351065.315380]: Subclasses: []\n", - "[INFO] [1712351065.315670]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.316171]: Instances: []\n", - "[INFO] [1712351065.316438]: Direct Instances: []\n", - "[INFO] [1712351065.316688]: Inverse Restrictions: []\n", - "[INFO] [1712351065.316937]: -------------------\n", - "[INFO] [1712351065.317181]: SOMA.Status \n", - "[INFO] [1712351065.317428]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712351065.317698]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, owl.Thing, SOMA.Status}\n", - "[INFO] [1712351065.317944]: Subclasses: []\n", - "[INFO] [1712351065.318227]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.318733]: Instances: []\n", - "[INFO] [1712351065.319000]: Direct Instances: []\n", - "[INFO] [1712351065.319280]: Inverse Restrictions: []\n", - "[INFO] [1712351065.319523]: -------------------\n", - "[INFO] [1712351065.319771]: SOMA.StatusFailure \n", - "[INFO] [1712351065.320024]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351065.320291]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.StatusFailure, owl.Thing}\n", - "[INFO] [1712351065.320536]: Subclasses: []\n", - "[INFO] [1712351065.320857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.321611]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712351065.321936]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712351065.322222]: Inverse Restrictions: []\n", - "[INFO] [1712351065.322482]: -------------------\n", - "[INFO] [1712351065.322731]: SOMA.StimulusRole \n", - "[INFO] [1712351065.322988]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712351065.323267]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.StimulusRole, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351065.323523]: Subclasses: []\n", - "[INFO] [1712351065.323813]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.324316]: Instances: []\n", - "[INFO] [1712351065.324577]: Direct Instances: []\n", - "[INFO] [1712351065.324828]: Inverse Restrictions: []\n", - "[INFO] [1712351065.325065]: -------------------\n", - "[INFO] [1712351065.325294]: SOMA.Stirring \n", - "[INFO] [1712351065.325528]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712351065.325811]: Ancestors: {SOMA.Constructing, DUL.SocialObject, SOMA.Mixing, DUL.Object, SOMA.Stirring, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.326066]: Subclasses: []\n", - "[INFO] [1712351065.326362]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.326836]: Instances: []\n", - "[INFO] [1712351065.327108]: Direct Instances: []\n", - "[INFO] [1712351065.327362]: Inverse Restrictions: []\n", - "[INFO] [1712351065.327598]: -------------------\n", - "[INFO] [1712351065.327830]: SOMA.Storage \n", - "[INFO] [1712351065.328079]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712351065.328345]: Ancestors: {SOMA.Extrinsic, SOMA.Storage, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.328585]: Subclasses: []\n", - "[INFO] [1712351065.328876]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.329379]: Instances: []\n", - "[INFO] [1712351065.329631]: Direct Instances: []\n", - "[INFO] [1712351065.329876]: Inverse Restrictions: []\n", - "[INFO] [1712351065.330107]: -------------------\n", - "[INFO] [1712351065.330344]: SOMA.Stove \n", - "[INFO] [1712351065.330574]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", - "[INFO] [1712351065.330841]: Ancestors: {DUL.DesignedArtifact, SOMA.Stove, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.331083]: Subclasses: []\n", - "[INFO] [1712351065.331357]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.331835]: Instances: []\n", - "[INFO] [1712351065.332093]: Direct Instances: []\n", - "[INFO] [1712351065.332341]: Inverse Restrictions: []\n", - "[INFO] [1712351065.332569]: -------------------\n", - "[INFO] [1712351065.332798]: SOMA.StructuralDesign \n", - "[INFO] [1712351065.333024]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712351065.333284]: Ancestors: {SOMA.StructuralDesign, DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.333524]: Subclasses: []\n", - "[INFO] [1712351065.333800]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.334285]: Instances: []\n", - "[INFO] [1712351065.334537]: Direct Instances: []\n", - "[INFO] [1712351065.334774]: Inverse Restrictions: []\n", - "[INFO] [1712351065.335001]: -------------------\n", - "[INFO] [1712351065.335227]: SOMA.TaskInvocation \n", - "[INFO] [1712351065.335492]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712351065.335765]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Workflow, SOMA.TaskInvocation, owl.Thing, DUL.Plan}\n", - "[INFO] [1712351065.336006]: Subclasses: []\n", - "[INFO] [1712351065.336292]: Properties: [rdf-schema.label, DUL.definesTask, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.336784]: Instances: []\n", - "[INFO] [1712351065.337043]: Direct Instances: []\n", - "[INFO] [1712351065.337354]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712351065.337592]: -------------------\n", - "[INFO] [1712351065.337824]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712351065.338051]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712351065.338300]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351065.338547]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712351065.338828]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.339313]: Instances: []\n", - "[INFO] [1712351065.339574]: Direct Instances: []\n", - "[INFO] [1712351065.339821]: Inverse Restrictions: []\n", - "[INFO] [1712351065.340054]: -------------------\n", - "[INFO] [1712351065.340283]: SOMA.Successfulness \n", - "[INFO] [1712351065.340506]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712351065.340759]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Successfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351065.341023]: Subclasses: []\n", - "[INFO] [1712351065.341320]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.341802]: Instances: []\n", - "[INFO] [1712351065.342063]: Direct Instances: []\n", - "[INFO] [1712351065.342380]: Inverse Restrictions: []\n", - "[INFO] [1712351065.342617]: -------------------\n", - "[INFO] [1712351065.342850]: SOMA.SugarDispenser \n", - "[INFO] [1712351065.343074]: Super classes: [SOMA.Dispenser]\n", - "[INFO] [1712351065.343338]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Dispenser, DUL.Entity, SOMA.SugarDispenser, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.343586]: Subclasses: []\n", - "[INFO] [1712351065.343867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.344341]: Instances: []\n", - "[INFO] [1712351065.344600]: Direct Instances: []\n", - "[INFO] [1712351065.344853]: Inverse Restrictions: []\n", - "[INFO] [1712351065.345086]: -------------------\n", - "[INFO] [1712351065.345315]: SOMA.SupportState \n", - "[INFO] [1712351065.346304]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712351065.346604]: Ancestors: {SOMA.SupportState, SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.346863]: Subclasses: []\n", - "[INFO] [1712351065.347164]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.347651]: Instances: []\n", - "[INFO] [1712351065.347926]: Direct Instances: []\n", - "[INFO] [1712351065.348178]: Inverse Restrictions: []\n", - "[INFO] [1712351065.348414]: -------------------\n", - "[INFO] [1712351065.348648]: SOMA.Supporter \n", - "[INFO] [1712351065.348887]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712351065.349155]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.Supporter, owl.Thing}\n", - "[INFO] [1712351065.349403]: Subclasses: []\n", - "[INFO] [1712351065.349683]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.350178]: Instances: []\n", - "[INFO] [1712351065.350441]: Direct Instances: []\n", - "[INFO] [1712351065.350737]: Inverse Restrictions: []\n", - "[INFO] [1712351065.350973]: -------------------\n", - "[INFO] [1712351065.351205]: SOMA.SupportTheory \n", - "[INFO] [1712351065.351435]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712351065.351706]: Ancestors: {DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.SupportTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.351950]: Subclasses: []\n", - "[INFO] [1712351065.352230]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.352708]: Instances: []\n", - "[INFO] [1712351065.352985]: Direct Instances: []\n", - "[INFO] [1712351065.353241]: Inverse Restrictions: []\n", - "[INFO] [1712351065.353472]: -------------------\n", - "[INFO] [1712351065.353700]: SOMA.SupportedObject \n", - "[INFO] [1712351065.353923]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712351065.354181]: Ancestors: {DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.SupportedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.354430]: Subclasses: []\n", - "[INFO] [1712351065.354713]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.355189]: Instances: []\n", - "[INFO] [1712351065.355449]: Direct Instances: []\n", - "[INFO] [1712351065.355705]: Inverse Restrictions: []\n", - "[INFO] [1712351065.355942]: -------------------\n", - "[INFO] [1712351065.356172]: SOMA.SymbolicReasoner \n", - "[INFO] [1712351065.356396]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712351065.356671]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.SymbolicReasoner, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing}\n", - "[INFO] [1712351065.356918]: Subclasses: []\n", - "[INFO] [1712351065.357200]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.357689]: Instances: []\n", - "[INFO] [1712351065.358197]: Direct Instances: []\n", - "[INFO] [1712351065.358503]: Inverse Restrictions: []\n", - "[INFO] [1712351065.358762]: -------------------\n", - "[INFO] [1712351065.358995]: SOMA.TableFork \n", - "[INFO] [1712351065.359222]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712351065.359496]: Ancestors: {DUL.DesignedArtifact, SOMA.TableFork, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.Fork, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.359765]: Subclasses: []\n", - "[INFO] [1712351065.360060]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.360551]: Instances: []\n", - "[INFO] [1712351065.360844]: Direct Instances: []\n", - "[INFO] [1712351065.361115]: Inverse Restrictions: []\n", - "[INFO] [1712351065.361361]: -------------------\n", - "[INFO] [1712351065.361598]: SOMA.TableKnife \n", - "[INFO] [1712351065.361832]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712351065.362096]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.KitchenKnife, SOMA.DesignedTool, SOMA.Knife, DUL.Object, SOMA.CuttingTool, DUL.Entity, DUL.PhysicalObject, owl.Thing, SOMA.TableKnife}\n", - "[INFO] [1712351065.362370]: Subclasses: []\n", - "[INFO] [1712351065.362663]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.363148]: Instances: []\n", - "[INFO] [1712351065.363406]: Direct Instances: []\n", - "[INFO] [1712351065.363659]: Inverse Restrictions: []\n", - "[INFO] [1712351065.363921]: -------------------\n", - "[INFO] [1712351065.364161]: SOMA.TableSpoon \n", - "[INFO] [1712351065.364394]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712351065.364654]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, SOMA.TableSpoon, SOMA.Spoon, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.364911]: Subclasses: []\n", - "[INFO] [1712351065.365213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.365694]: Instances: []\n", - "[INFO] [1712351065.365944]: Direct Instances: []\n", - "[INFO] [1712351065.366181]: Inverse Restrictions: []\n", - "[INFO] [1712351065.366415]: -------------------\n", - "[INFO] [1712351065.366653]: SOMA.TeaSpoon \n", - "[INFO] [1712351065.366885]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712351065.367143]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.Cutlery, SOMA.DesignedTool, DUL.Object, SOMA.Spoon, SOMA.TeaSpoon, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.367378]: Subclasses: []\n", - "[INFO] [1712351065.367650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.368142]: Instances: []\n", - "[INFO] [1712351065.368404]: Direct Instances: []\n", - "[INFO] [1712351065.368649]: Inverse Restrictions: []\n", - "[INFO] [1712351065.368892]: -------------------\n", - "[INFO] [1712351065.369121]: SOMA.Tap \n", - "[INFO] [1712351065.369361]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712351065.369626]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, SOMA.Tap, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.369864]: Subclasses: []\n", - "[INFO] [1712351065.370154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.370639]: Instances: []\n", - "[INFO] [1712351065.370893]: Direct Instances: []\n", - "[INFO] [1712351065.371136]: Inverse Restrictions: []\n", - "[INFO] [1712351065.371363]: -------------------\n", - "[INFO] [1712351065.371598]: SOMA.Tapping \n", - "[INFO] [1712351065.371843]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712351065.372122]: Ancestors: {SOMA.Tapping, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.372373]: Subclasses: []\n", - "[INFO] [1712351065.372650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.373143]: Instances: []\n", - "[INFO] [1712351065.373404]: Direct Instances: []\n", - "[INFO] [1712351065.373651]: Inverse Restrictions: []\n", - "[INFO] [1712351065.373884]: -------------------\n", - "[INFO] [1712351065.374116]: SOMA.Taxis \n", - "[INFO] [1712351065.374358]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712351065.374619]: Ancestors: {SOMA.Taxis, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.374860]: Subclasses: []\n", - "[INFO] [1712351065.375136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.375610]: Instances: []\n", - "[INFO] [1712351065.375875]: Direct Instances: []\n", - "[INFO] [1712351065.376122]: Inverse Restrictions: []\n", - "[INFO] [1712351065.376360]: -------------------\n", - "[INFO] [1712351065.376590]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712351065.376840]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712351065.377095]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.377357]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712351065.377654]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.378154]: Instances: []\n", - "[INFO] [1712351065.378402]: Direct Instances: []\n", - "[INFO] [1712351065.378659]: Inverse Restrictions: []\n", - "[INFO] [1712351065.378901]: -------------------\n", - "[INFO] [1712351065.379138]: SOMA.Temperature \n", - "[INFO] [1712351065.379397]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712351065.379650]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, SOMA.Temperature}\n", - "[INFO] [1712351065.379901]: Subclasses: []\n", - "[INFO] [1712351065.380203]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351065.380695]: Instances: []\n", - "[INFO] [1712351065.381034]: Direct Instances: []\n", - "[INFO] [1712351065.381759]: Inverse Restrictions: []\n", - "[INFO] [1712351065.382051]: -------------------\n", - "[INFO] [1712351065.382318]: SOMA.TemperatureRegion \n", - "[INFO] [1712351065.382581]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351065.382860]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.TemperatureRegion, owl.Thing}\n", - "[INFO] [1712351065.383121]: Subclasses: []\n", - "[INFO] [1712351065.383420]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.383928]: Instances: []\n", - "[INFO] [1712351065.384205]: Direct Instances: []\n", - "[INFO] [1712351065.384532]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712351065.384787]: -------------------\n", - "[INFO] [1712351065.385047]: SOMA.Tempering \n", - "[INFO] [1712351065.385344]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712351065.385627]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.Tempering, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.385901]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712351065.386206]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.386703]: Instances: []\n", - "[INFO] [1712351065.386986]: Direct Instances: []\n", - "[INFO] [1712351065.387258]: Inverse Restrictions: []\n", - "[INFO] [1712351065.387511]: -------------------\n", - "[INFO] [1712351065.387755]: SOMA.TemperingByCooling \n", - "[INFO] [1712351065.388009]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712351065.388289]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.Tempering, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.TemperingByCooling, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.388548]: Subclasses: []\n", - "[INFO] [1712351065.388847]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.389346]: Instances: []\n", - "[INFO] [1712351065.389628]: Direct Instances: []\n", - "[INFO] [1712351065.389896]: Inverse Restrictions: []\n", - "[INFO] [1712351065.390150]: -------------------\n", - "[INFO] [1712351065.390396]: SOMA.ThinkAloud \n", - "[INFO] [1712351065.390654]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712351065.390951]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, owl.Thing, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, SOMA.ThinkAloud, DUL.EventType, SOMA.CommunicationReport}\n", - "[INFO] [1712351065.391216]: Subclasses: []\n", - "[INFO] [1712351065.391517]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.392011]: Instances: []\n", - "[INFO] [1712351065.392295]: Direct Instances: []\n", - "[INFO] [1712351065.392564]: Inverse Restrictions: []\n", - "[INFO] [1712351065.392835]: -------------------\n", - "[INFO] [1712351065.393137]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712351065.393392]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351065.393685]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, SOMA.ThinkAloudActionTopic, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.393950]: Subclasses: []\n", - "[INFO] [1712351065.394258]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.394752]: Instances: []\n", - "[INFO] [1712351065.395035]: Direct Instances: []\n", - "[INFO] [1712351065.395299]: Inverse Restrictions: []\n", - "[INFO] [1712351065.395547]: -------------------\n", - "[INFO] [1712351065.395790]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712351065.396040]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712351065.396352]: Ancestors: {DUL.SocialObject, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ResourceRole, SOMA.CommunicationTopic, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.396632]: Subclasses: []\n", - "[INFO] [1712351065.396950]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.397588]: Instances: []\n", - "[INFO] [1712351065.397894]: Direct Instances: []\n", - "[INFO] [1712351065.398174]: Inverse Restrictions: []\n", - "[INFO] [1712351065.398437]: -------------------\n", - "[INFO] [1712351065.398701]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712351065.398965]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351065.399229]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.399489]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712351065.399788]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.400304]: Instances: []\n", - "[INFO] [1712351065.400580]: Direct Instances: []\n", - "[INFO] [1712351065.400957]: Inverse Restrictions: []\n", - "[INFO] [1712351065.401246]: -------------------\n", - "[INFO] [1712351065.401519]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712351065.401794]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351065.402097]: Ancestors: {SOMA.ThinkAloudObstructionTopic, DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.402373]: Subclasses: []\n", - "[INFO] [1712351065.402674]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.403166]: Instances: []\n", - "[INFO] [1712351065.403445]: Direct Instances: []\n", - "[INFO] [1712351065.403708]: Inverse Restrictions: []\n", - "[INFO] [1712351065.403958]: -------------------\n", - "[INFO] [1712351065.404204]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712351065.404447]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351065.404726]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing, SOMA.ThinkAloudOpinionTopic}\n", - "[INFO] [1712351065.405006]: Subclasses: []\n", - "[INFO] [1712351065.405313]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.405815]: Instances: []\n", - "[INFO] [1712351065.406082]: Direct Instances: []\n", - "[INFO] [1712351065.406354]: Inverse Restrictions: []\n", - "[INFO] [1712351065.406604]: -------------------\n", - "[INFO] [1712351065.406854]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712351065.407098]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351065.407371]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudPerceptionTopic, owl.Thing}\n", - "[INFO] [1712351065.407638]: Subclasses: []\n", - "[INFO] [1712351065.407942]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.408437]: Instances: []\n", - "[INFO] [1712351065.408722]: Direct Instances: []\n", - "[INFO] [1712351065.409079]: Inverse Restrictions: []\n", - "[INFO] [1712351065.409369]: -------------------\n", - "[INFO] [1712351065.409633]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712351065.409899]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351065.410190]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.ThinkAloudPlanTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.410460]: Subclasses: []\n", - "[INFO] [1712351065.410762]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.411276]: Instances: []\n", - "[INFO] [1712351065.411545]: Direct Instances: []\n", - "[INFO] [1712351065.411803]: Inverse Restrictions: []\n", - "[INFO] [1712351065.412045]: -------------------\n", - "[INFO] [1712351065.412290]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712351065.412547]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712351065.412834]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351065.413110]: Subclasses: []\n", - "[INFO] [1712351065.413421]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.413913]: Instances: []\n", - "[INFO] [1712351065.414193]: Direct Instances: []\n", - "[INFO] [1712351065.414457]: Inverse Restrictions: []\n", - "[INFO] [1712351065.414706]: -------------------\n", - "[INFO] [1712351065.414956]: SOMA.Threshold \n", - "[INFO] [1712351065.415207]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712351065.415491]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, SOMA.Threshold, DUL.Entity, DUL.Concept, owl.Thing}\n", - "[INFO] [1712351065.415749]: Subclasses: []\n", - "[INFO] [1712351065.416043]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.416532]: Instances: []\n", - "[INFO] [1712351065.416819]: Direct Instances: []\n", - "[INFO] [1712351065.417134]: Inverse Restrictions: []\n", - "[INFO] [1712351065.417402]: -------------------\n", - "[INFO] [1712351065.417656]: SOMA.Throwing \n", - "[INFO] [1712351065.417905]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712351065.418182]: Ancestors: {DUL.SocialObject, SOMA.Throwing, SOMA.Actuating, DUL.Object, SOMA.Manipulating, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.418454]: Subclasses: []\n", - "[INFO] [1712351065.418767]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.419258]: Instances: []\n", - "[INFO] [1712351065.419519]: Direct Instances: []\n", - "[INFO] [1712351065.419785]: Inverse Restrictions: []\n", - "[INFO] [1712351065.420033]: -------------------\n", - "[INFO] [1712351065.420282]: SOMA.TimeRole \n", - "[INFO] [1712351065.420522]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712351065.420805]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.421165]: Subclasses: []\n", - "[INFO] [1712351065.421513]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.422004]: Instances: []\n", - "[INFO] [1712351065.422287]: Direct Instances: []\n", - "[INFO] [1712351065.422557]: Inverse Restrictions: []\n", - "[INFO] [1712351065.422808]: -------------------\n", - "[INFO] [1712351065.423051]: SOMA.Transporting \n", - "[INFO] [1712351065.423295]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712351065.423569]: Ancestors: {SOMA.Transporting, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.423841]: Subclasses: []\n", - "[INFO] [1712351065.424146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.424644]: Instances: []\n", - "[INFO] [1712351065.424915]: Direct Instances: []\n", - "[INFO] [1712351065.425194]: Inverse Restrictions: []\n", - "[INFO] [1712351065.425450]: -------------------\n", - "[INFO] [1712351065.425701]: SOMA.TrashContainer \n", - "[INFO] [1712351065.425948]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712351065.426230]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA.TrashContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.426500]: Subclasses: []\n", - "[INFO] [1712351065.426800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.427288]: Instances: []\n", - "[INFO] [1712351065.427548]: Direct Instances: []\n", - "[INFO] [1712351065.427811]: Inverse Restrictions: []\n", - "[INFO] [1712351065.428065]: -------------------\n", - "[INFO] [1712351065.428314]: SOMA.Triplestore \n", - "[INFO] [1712351065.428555]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712351065.428841]: Ancestors: {SOMA.SoftwareRole, SOMA.Triplestore, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, SOMA.GraphDatabase, DUL.Role, owl.Thing}\n", - "[INFO] [1712351065.429134]: Subclasses: []\n", - "[INFO] [1712351065.429445]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.429981]: Instances: []\n", - "[INFO] [1712351065.430268]: Direct Instances: []\n", - "[INFO] [1712351065.430537]: Inverse Restrictions: []\n", - "[INFO] [1712351065.430795]: -------------------\n", - "[INFO] [1712351065.431049]: SOMA.Turning \n", - "[INFO] [1712351065.431295]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712351065.431573]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.Turning, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", - "[INFO] [1712351065.431823]: Subclasses: []\n", - "[INFO] [1712351065.432122]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.432625]: Instances: []\n", - "[INFO] [1712351065.432910]: Direct Instances: []\n", - "[INFO] [1712351065.433175]: Inverse Restrictions: []\n", - "[INFO] [1712351065.433425]: -------------------\n", - "[INFO] [1712351065.433670]: SOMA.UnavailableSoftware \n", - "[INFO] [1712351065.433927]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712351065.434207]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, SOMA.UnavailableSoftware, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.434468]: Subclasses: []\n", - "[INFO] [1712351065.434766]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.435270]: Instances: []\n", - "[INFO] [1712351065.435545]: Direct Instances: []\n", - "[INFO] [1712351065.435805]: Inverse Restrictions: []\n", - "[INFO] [1712351065.436054]: -------------------\n", - "[INFO] [1712351065.436303]: SOMA.Unsuccessfulness \n", - "[INFO] [1712351065.436547]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712351065.436818]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351065.437092]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712351065.437397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.437898]: Instances: []\n", - "[INFO] [1712351065.438181]: Direct Instances: []\n", - "[INFO] [1712351065.438448]: Inverse Restrictions: []\n", - "[INFO] [1712351065.438705]: -------------------\n", - "[INFO] [1712351065.438953]: SOMA.VideoData \n", - "[INFO] [1712351065.439198]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712351065.439481]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.VideoData, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.439740]: Subclasses: []\n", - "[INFO] [1712351065.440038]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.440547]: Instances: []\n", - "[INFO] [1712351065.440833]: Direct Instances: []\n", - "[INFO] [1712351065.441108]: Inverse Restrictions: []\n", - "[INFO] [1712351065.441367]: -------------------\n", - "[INFO] [1712351065.441617]: SOMA.Wardrobe \n", - "[INFO] [1712351065.441869]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712351065.442159]: Ancestors: {DUL.DesignedArtifact, SOMA.Wardrobe, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, SOMA.Cupboard, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.442425]: Subclasses: []\n", - "[INFO] [1712351065.442721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.443213]: Instances: []\n", - "[INFO] [1712351065.443490]: Direct Instances: []\n", - "[INFO] [1712351065.443755]: Inverse Restrictions: []\n", - "[INFO] [1712351065.444004]: -------------------\n", - "[INFO] [1712351065.444250]: SOMA.WaterBottle \n", - "[INFO] [1712351065.444499]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712351065.444770]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bottle, DUL.Entity, SOMA.DesignedContainer, owl.Thing, SOMA.WaterBottle, DUL.PhysicalObject}\n", - "[INFO] [1712351065.445052]: Subclasses: []\n", - "[INFO] [1712351065.445362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.445862]: Instances: []\n", - "[INFO] [1712351065.446129]: Direct Instances: []\n", - "[INFO] [1712351065.446420]: Inverse Restrictions: []\n", - "[INFO] [1712351065.446691]: -------------------\n", - "[INFO] [1712351065.446966]: SOMA.WaterGlass \n", - "[INFO] [1712351065.447249]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712351065.447538]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.WaterGlass, SOMA.Glass, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351065.447794]: Subclasses: []\n", - "[INFO] [1712351065.448119]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.448641]: Instances: []\n", - "[INFO] [1712351065.448954]: Direct Instances: []\n", - "[INFO] [1712351065.449332]: Inverse Restrictions: []\n", - "[INFO] [1712351065.449630]: -------------------\n", - "[INFO] [1712351065.449912]: SOMA.WineBottle \n", - "[INFO] [1712351065.450185]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712351065.450481]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bottle, DUL.Entity, SOMA.DesignedContainer, SOMA.WineBottle, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.450748]: Subclasses: []\n", - "[INFO] [1712351065.451048]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.451540]: Instances: []\n", - "[INFO] [1712351065.451819]: Direct Instances: []\n", - "[INFO] [1712351065.452082]: Inverse Restrictions: []\n", - "[INFO] [1712351065.452326]: -------------------\n", - "[INFO] [1712351065.452566]: SOMA.WineGlass \n", - "[INFO] [1712351065.452845]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712351065.453190]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.WineGlass, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Glass, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351065.453470]: Subclasses: []\n", - "[INFO] [1712351065.453772]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.454269]: Instances: []\n", - "[INFO] [1712351065.454532]: Direct Instances: []\n", - "[INFO] [1712351065.454783]: Inverse Restrictions: []\n", - "[INFO] [1712351065.455035]: -------------------\n", - "[INFO] [1712351065.455286]: SOMA.3DPosition \n", - "[INFO] [1712351065.455553]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712351065.455822]: Ancestors: {SOMA.3DPosition, DUL.Entity, DUL.Region, DUL.SpaceRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.456083]: Subclasses: []\n", - "[INFO] [1712351065.456393]: Properties: [rdf-schema.label, SOMA.hasPositionData, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.456889]: Instances: []\n", - "[INFO] [1712351065.457195]: Direct Instances: []\n", - "[INFO] [1712351065.457465]: Inverse Restrictions: []\n", - "[INFO] [1712351065.457711]: -------------------\n", - "[INFO] [1712351065.457960]: SOMA.Affordance \n", - "[INFO] [1712351065.458207]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712351065.458472]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Affordance, DUL.Relation}\n", - "[INFO] [1712351065.458728]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712351065.459032]: Properties: [rdf-schema.comment, SOMA.definesTrigger, SOMA.definesBearer, DUL.definesTask, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.459527]: Instances: []\n", - "[INFO] [1712351065.459799]: Direct Instances: []\n", - "[INFO] [1712351065.460181]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712351065.460427]: -------------------\n", - "[INFO] [1712351065.460664]: SOMA.Disposition \n", - "[INFO] [1712351065.460926]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712351065.461188]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.461465]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712351065.461767]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.462312]: Instances: []\n", - "[INFO] [1712351065.462585]: Direct Instances: []\n", - "[INFO] [1712351065.462904]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712351065.463177]: -------------------\n", - "[INFO] [1712351065.463423]: SOMA.Setpoint \n", - "[INFO] [1712351065.463656]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712351065.463915]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Setpoint}\n", - "[INFO] [1712351065.464160]: Subclasses: []\n", - "[INFO] [1712351065.464444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.464928]: Instances: []\n", - "[INFO] [1712351065.465225]: Direct Instances: []\n", - "[INFO] [1712351065.465499]: Inverse Restrictions: []\n", - "[INFO] [1712351065.465742]: -------------------\n", - "[INFO] [1712351065.465974]: SOMA.Answer \n", - "[INFO] [1712351065.466208]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712351065.466460]: Ancestors: {SOMA.Answer, DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.466707]: Subclasses: []\n", - "[INFO] [1712351065.466996]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.467494]: Instances: []\n", - "[INFO] [1712351065.467756]: Direct Instances: []\n", - "[INFO] [1712351065.468050]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712351065.468295]: -------------------\n", - "[INFO] [1712351065.468527]: SOMA.Message \n", - "[INFO] [1712351065.468790]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712351065.469048]: Ancestors: {DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.469305]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712351065.469601]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.470112]: Instances: []\n", - "[INFO] [1712351065.470378]: Direct Instances: []\n", - "[INFO] [1712351065.470694]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351065.470946]: -------------------\n", - "[INFO] [1712351065.471193]: SOMA.ProcessType \n", - "[INFO] [1712351065.471444]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712351065.471694]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.471952]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712351065.472260]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.472839]: Instances: []\n", - "[INFO] [1712351065.473131]: Direct Instances: []\n", - "[INFO] [1712351065.473460]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712351065.473724]: -------------------\n", - "[INFO] [1712351065.473975]: SOMA.OrderedElement \n", - "[INFO] [1712351065.474221]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712351065.474465]: Ancestors: {SOMA.OrderedElement, owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712351065.474712]: Subclasses: []\n", - "[INFO] [1712351065.475024]: Properties: [rdf-schema.label, SOMA.isOrderedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.475513]: Instances: []\n", - "[INFO] [1712351065.475770]: Direct Instances: []\n", - "[INFO] [1712351065.476135]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712351065.476392]: -------------------\n", - "[INFO] [1712351065.476638]: SOMA.System \n", - "[INFO] [1712351065.476881]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712351065.477121]: Ancestors: {SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.477365]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712351065.477667]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.478196]: Instances: []\n", - "[INFO] [1712351065.478460]: Direct Instances: []\n", - "[INFO] [1712351065.478709]: Inverse Restrictions: []\n", - "[INFO] [1712351065.478951]: -------------------\n", - "[INFO] [1712351065.479195]: SOMA.Binding \n", - "[INFO] [1712351065.479452]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712351065.479709]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351065.479967]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712351065.480290]: Properties: [rdf-schema.comment, Inverse(SOMA.hasBinding), SOMA.hasBindingFiller, SOMA.hasBindingRole, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.480945]: Instances: []\n", - "[INFO] [1712351065.481385]: Direct Instances: []\n", - "[INFO] [1712351065.481712]: Inverse Restrictions: []\n", - "[INFO] [1712351065.481990]: -------------------\n", - "[INFO] [1712351065.482256]: SOMA.Joint \n", - "[INFO] [1712351065.482522]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712351065.482785]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.483053]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712351065.483392]: Properties: [SOMA.hasChildLink, SOMA.hasParentLink, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.483916]: Instances: []\n", - "[INFO] [1712351065.484190]: Direct Instances: []\n", - "[INFO] [1712351065.484461]: Inverse Restrictions: []\n", - "[INFO] [1712351065.484725]: -------------------\n", - "[INFO] [1712351065.484984]: SOMA.Color \n", - "[INFO] [1712351065.485243]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712351065.485506]: Ancestors: {SOMA.Extrinsic, SOMA.Color, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.485761]: Subclasses: []\n", - "[INFO] [1712351065.486081]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351065.486582]: Instances: []\n", - "[INFO] [1712351065.486871]: Direct Instances: []\n", - "[INFO] [1712351065.487183]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712351065.487453]: -------------------\n", - "[INFO] [1712351065.487715]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712351065.487972]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351065.488257]: Ancestors: {SOMA.ExecutionStateRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.488524]: Subclasses: []\n", - "[INFO] [1712351065.488858]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.489434]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712351065.489758]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712351065.490051]: Inverse Restrictions: []\n", - "[INFO] [1712351065.490311]: -------------------\n", - "[INFO] [1712351065.490563]: SOMA.Feature \n", - "[INFO] [1712351065.490820]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712351065.491074]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing}\n", - "[INFO] [1712351065.491358]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712351065.491686]: Properties: [SOMA.isFeatureOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.492189]: Instances: []\n", - "[INFO] [1712351065.492461]: Direct Instances: []\n", - "[INFO] [1712351065.492783]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712351065.493047]: -------------------\n", - "[INFO] [1712351065.493301]: SOMA.FrictionAttribute \n", - "[INFO] [1712351065.493554]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712351065.493811]: Ancestors: {DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", - "[INFO] [1712351065.494087]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712351065.494398]: Properties: [SOMA.hasFrictionValue, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.494896]: Instances: []\n", - "[INFO] [1712351065.495166]: Direct Instances: []\n", - "[INFO] [1712351065.495540]: Inverse Restrictions: []\n", - "[INFO] [1712351065.495827]: -------------------\n", - "[INFO] [1712351065.496092]: SOMA.SituationTransition \n", - "[INFO] [1712351065.496366]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712351065.496653]: Ancestors: {DUL.Transition, DUL.Entity, SOMA.SituationTransition, DUL.Situation, owl.Thing}\n", - "[INFO] [1712351065.497008]: Subclasses: []\n", - "[INFO] [1712351065.497345]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.497855]: Instances: []\n", - "[INFO] [1712351065.498145]: Direct Instances: []\n", - "[INFO] [1712351065.499946]: Inverse Restrictions: []\n", - "[INFO] [1712351065.500229]: -------------------\n", - "[INFO] [1712351065.500508]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712351065.500765]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712351065.501034]: Ancestors: {owl.Thing, DUL.Entity, DUL.Situation, SOMA.NonmanifestedSituation}\n", - "[INFO] [1712351065.501291]: Subclasses: []\n", - "[INFO] [1712351065.501620]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.502129]: Instances: []\n", - "[INFO] [1712351065.502397]: Direct Instances: []\n", - "[INFO] [1712351065.503790]: Inverse Restrictions: []\n", - "[INFO] [1712351065.504064]: -------------------\n", - "[INFO] [1712351065.504323]: SOMA.JointLimit \n", - "[INFO] [1712351065.504586]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712351065.504846]: Ancestors: {SOMA.JointLimit, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.505097]: Subclasses: []\n", - "[INFO] [1712351065.505394]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.505902]: Instances: []\n", - "[INFO] [1712351065.506174]: Direct Instances: []\n", - "[INFO] [1712351065.506499]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712351065.506752]: -------------------\n", - "[INFO] [1712351065.506988]: SOMA.JointState \n", - "[INFO] [1712351065.507246]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712351065.507505]: Ancestors: {SOMA.JointState, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.507752]: Subclasses: []\n", - "[INFO] [1712351065.508058]: Properties: [SOMA.hasJointPosition, rdf-schema.label, rdf-schema.comment, SOMA.hasJointVelocity, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.508540]: Instances: []\n", - "[INFO] [1712351065.508811]: Direct Instances: []\n", - "[INFO] [1712351065.509138]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712351065.509384]: -------------------\n", - "[INFO] [1712351065.509619]: SOMA.Localization \n", - "[INFO] [1712351065.509858]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712351065.510112]: Ancestors: {SOMA.Extrinsic, SOMA.Localization, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.510358]: Subclasses: []\n", - "[INFO] [1712351065.510653]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351065.511141]: Instances: []\n", - "[INFO] [1712351065.511413]: Direct Instances: []\n", - "[INFO] [1712351065.512531]: Inverse Restrictions: []\n", - "[INFO] [1712351065.512800]: -------------------\n", - "[INFO] [1712351065.513088]: SOMA.MassAttribute \n", - "[INFO] [1712351065.513369]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712351065.513650]: Ancestors: {SOMA.MassAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.513913]: Subclasses: []\n", - "[INFO] [1712351065.514218]: Properties: [rdf-schema.label, SOMA.hasMassValue, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.514728]: Instances: []\n", - "[INFO] [1712351065.515009]: Direct Instances: []\n", - "[INFO] [1712351065.515276]: Inverse Restrictions: []\n", - "[INFO] [1712351065.515530]: -------------------\n", - "[INFO] [1712351065.515777]: SOMA.NetForce \n", - "[INFO] [1712351065.516028]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712351065.516304]: Ancestors: {SOMA.ForceAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing, SOMA.NetForce}\n", - "[INFO] [1712351065.516560]: Subclasses: []\n", - "[INFO] [1712351065.516930]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.517411]: Instances: []\n", - "[INFO] [1712351065.517681]: Direct Instances: []\n", - "[INFO] [1712351065.517935]: Inverse Restrictions: []\n", - "[INFO] [1712351065.518175]: -------------------\n", - "[INFO] [1712351065.518406]: SOMA.Succedence \n", - "[INFO] [1712351065.518650]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712351065.518906]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Succedence, DUL.Relation}\n", - "[INFO] [1712351065.519165]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712351065.519471]: Properties: [SOMA.hasSuccessor, rdf-schema.comment, SOMA.hasPredecessor, Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.519993]: Instances: []\n", - "[INFO] [1712351065.520265]: Direct Instances: []\n", - "[INFO] [1712351065.520532]: Inverse Restrictions: []\n", - "[INFO] [1712351065.520770]: -------------------\n", - "[INFO] [1712351065.521045]: SOMA.Preference \n", - "[INFO] [1712351065.521302]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712351065.521557]: Ancestors: {SOMA.SocialQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Preference}\n", - "[INFO] [1712351065.521807]: Subclasses: []\n", - "[INFO] [1712351065.522103]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.522583]: Instances: []\n", - "[INFO] [1712351065.522858]: Direct Instances: []\n", - "[INFO] [1712351065.523233]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712351065.523473]: -------------------\n", - "[INFO] [1712351065.523702]: SOMA.Shape \n", - "[INFO] [1712351065.523943]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712351065.524194]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Shape, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351065.524444]: Subclasses: []\n", - "[INFO] [1712351065.524741]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351065.525230]: Instances: []\n", - "[INFO] [1712351065.525500]: Direct Instances: []\n", - "[INFO] [1712351065.526621]: Inverse Restrictions: []\n", - "[INFO] [1712351065.526877]: -------------------\n", - "[INFO] [1712351065.527106]: SOMA.ShapeRegion \n", - "[INFO] [1712351065.527342]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712351065.527578]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.527850]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712351065.528150]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.528648]: Instances: []\n", - "[INFO] [1712351065.528925]: Direct Instances: []\n", - "[INFO] [1712351065.529698]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712351065.529974]: -------------------\n", - "[INFO] [1712351065.530226]: SOMA.SoftwareInstance \n", - "[INFO] [1712351065.530476]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712351065.530734]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", - "[INFO] [1712351065.530984]: Subclasses: []\n", - "[INFO] [1712351065.531288]: Properties: [rdf-schema.label, SOMA.isDesignedBy, rdf-schema.comment, DUL.actsFor, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.531772]: Instances: []\n", - "[INFO] [1712351065.532048]: Direct Instances: []\n", - "[INFO] [1712351065.532383]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712351065.532629]: -------------------\n", - "[INFO] [1712351065.532868]: SOMA.StateType \n", - "[INFO] [1712351065.533102]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712351065.533347]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.533615]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712351065.533909]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.534402]: Instances: []\n", - "[INFO] [1712351065.534681]: Direct Instances: []\n", - "[INFO] [1712351065.535017]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712351065.535260]: -------------------\n", - "[INFO] [1712351065.535495]: SOMA.PhysicalEffector \n", - "[INFO] [1712351065.535735]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712351065.535995]: Ancestors: {SOMA.PhysicalEffector, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.536265]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712351065.536572]: Properties: [rdf-schema.label, Inverse(DUL.hasPart), rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.537090]: Instances: []\n", - "[INFO] [1712351065.537364]: Direct Instances: []\n", - "[INFO] [1712351065.537626]: Inverse Restrictions: []\n", - "[INFO] [1712351065.537860]: -------------------\n", - "[INFO] [1712351065.538093]: SOMA.QueryingTask \n", - "[INFO] [1712351065.538348]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712351065.538592]: Ancestors: {SOMA.QueryingTask, owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712351065.538842]: Subclasses: []\n", - "[INFO] [1712351065.539135]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.539611]: Instances: []\n", - "[INFO] [1712351065.539880]: Direct Instances: []\n", - "[INFO] [1712351065.540220]: Inverse Restrictions: []\n", - "[INFO] [1712351065.540463]: -------------------\n", - "[INFO] [1712351065.540694]: SOMA.Order \n", - "[INFO] [1712351065.541061]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712351065.541396]: Ancestors: {DUL.FormalEntity, SOMA.Order, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.541681]: Subclasses: []\n", - "[INFO] [1712351065.541997]: Properties: [rdf-schema.label, SOMA.orders, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.542497]: Instances: []\n", - "[INFO] [1712351065.542777]: Direct Instances: []\n", - "[INFO] [1712351065.543144]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712351065.543386]: -------------------\n", - "[INFO] [1712351065.543620]: SOMA.State \n", - "[INFO] [1712351065.543850]: Super classes: [DUL.Event]\n", - "[INFO] [1712351065.544097]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing}\n", - "[INFO] [1712351065.544355]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712351065.544642]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.545140]: Instances: []\n", - "[INFO] [1712351065.545424]: Direct Instances: []\n", - "[INFO] [1712351065.545939]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712351065.546195]: -------------------\n", - "[INFO] [1712351065.546460]: SOMA.Transient \n", - "[INFO] [1712351065.546911]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712351065.547186]: Ancestors: {DUL.Entity, DUL.Object, owl.Thing, SOMA.Transient}\n", - "[INFO] [1712351065.547441]: Subclasses: []\n", - "[INFO] [1712351065.547738]: Properties: [SOMA.transitionsFrom, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.548281]: Instances: []\n", - "[INFO] [1712351065.548580]: Direct Instances: []\n", - "[INFO] [1712351065.548860]: Inverse Restrictions: []\n", - "[INFO] [1712351065.549107]: -------------------\n", - "[INFO] [1712351065.549347]: SOMA.ColorRegion \n", - "[INFO] [1712351065.549588]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712351065.549845]: Ancestors: {SOMA.ColorRegion, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.550108]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712351065.550411]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.550906]: Instances: []\n", - "[INFO] [1712351065.551185]: Direct Instances: []\n", - "[INFO] [1712351065.551518]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712351065.551761]: -------------------\n", - "[INFO] [1712351065.551997]: SOMA.ForceAttribute \n", - "[INFO] [1712351065.552241]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712351065.552497]: Ancestors: {SOMA.ForceAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.552759]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712351065.553067]: Properties: [rdf-schema.label, SOMA.hasForceValue, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.553557]: Instances: []\n", - "[INFO] [1712351065.553822]: Direct Instances: []\n", - "[INFO] [1712351065.554090]: Inverse Restrictions: []\n", - "[INFO] [1712351065.554326]: -------------------\n", - "[INFO] [1712351065.554558]: SOMA.API_Specification \n", - "[INFO] [1712351065.554787]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712351065.555025]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification}\n", - "[INFO] [1712351065.555275]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712351065.555580]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.556070]: Instances: []\n", - "[INFO] [1712351065.556330]: Direct Instances: []\n", - "[INFO] [1712351065.556583]: Inverse Restrictions: []\n", - "[INFO] [1712351065.556842]: -------------------\n", - "[INFO] [1712351065.557095]: SOMA.InterfaceSpecification \n", - "[INFO] [1712351065.557331]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712351065.557580]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.InterfaceSpecification}\n", - "[INFO] [1712351065.557832]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712351065.558117]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.558598]: Instances: []\n", - "[INFO] [1712351065.558879]: Direct Instances: []\n", - "[INFO] [1712351065.559201]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712351065.559528]: -------------------\n", - "[INFO] [1712351065.559871]: SOMA.AbductiveReasoning \n", - "[INFO] [1712351065.560109]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712351065.560348]: Ancestors: {SOMA.AbductiveReasoning, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351065.560600]: Subclasses: []\n", - "[INFO] [1712351065.560989]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.561503]: Instances: []\n", - "[INFO] [1712351065.561808]: Direct Instances: []\n", - "[INFO] [1712351065.562070]: Inverse Restrictions: []\n", - "[INFO] [1712351065.562308]: -------------------\n", - "[INFO] [1712351065.562553]: SOMA.Reasoning \n", - "[INFO] [1712351065.562784]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351065.563050]: Ancestors: {SOMA.Reasoning, SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712351065.563317]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712351065.563626]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.564171]: Instances: []\n", - "[INFO] [1712351065.564488]: Direct Instances: []\n", - "[INFO] [1712351065.564797]: Inverse Restrictions: []\n", - "[INFO] [1712351065.565080]: -------------------\n", - "[INFO] [1712351065.565367]: SOMA.Accessor \n", - "[INFO] [1712351065.565669]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712351065.565992]: Ancestors: {SOMA.Accessor, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.566307]: Subclasses: []\n", - "[INFO] [1712351065.566687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.567332]: Instances: []\n", - "[INFO] [1712351065.567697]: Direct Instances: []\n", - "[INFO] [1712351065.568028]: Inverse Restrictions: []\n", - "[INFO] [1712351065.568333]: -------------------\n", - "[INFO] [1712351065.568624]: SOMA.Instrument \n", - "[INFO] [1712351065.568917]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712351065.569227]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.569547]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712351065.569904]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.570533]: Instances: []\n", - "[INFO] [1712351065.570846]: Direct Instances: []\n", - "[INFO] [1712351065.571262]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351065.571518]: -------------------\n", - "[INFO] [1712351065.571765]: SOMA.Accident \n", - "[INFO] [1712351065.572018]: Super classes: [DUL.Event]\n", - "[INFO] [1712351065.572273]: Ancestors: {DUL.Entity, DUL.Event, SOMA.Accident, owl.Thing}\n", - "[INFO] [1712351065.572523]: Subclasses: []\n", - "[INFO] [1712351065.572820]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.573324]: Instances: []\n", - "[INFO] [1712351065.573578]: Direct Instances: []\n", - "[INFO] [1712351065.573820]: Inverse Restrictions: []\n", - "[INFO] [1712351065.574043]: -------------------\n", - "[INFO] [1712351065.574265]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712351065.574495]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712351065.574735]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ActionExecutionPlan, owl.Thing, DUL.Plan}\n", - "[INFO] [1712351065.574979]: Subclasses: []\n", - "[INFO] [1712351065.575266]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.575741]: Instances: []\n", - "[INFO] [1712351065.576020]: Direct Instances: []\n", - "[INFO] [1712351065.576270]: Inverse Restrictions: []\n", - "[INFO] [1712351065.576505]: -------------------\n", - "[INFO] [1712351065.576732]: SOMA.Actuating \n", - "[INFO] [1712351065.576960]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351065.577204]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.577486]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712351065.577777]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.578296]: Instances: []\n", - "[INFO] [1712351065.578573]: Direct Instances: []\n", - "[INFO] [1712351065.578859]: Inverse Restrictions: []\n", - "[INFO] [1712351065.579093]: -------------------\n", - "[INFO] [1712351065.579324]: SOMA.PhysicalTask \n", - "[INFO] [1712351065.579569]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712351065.579825]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.580112]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712351065.580411]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.580997]: Instances: []\n", - "[INFO] [1712351065.581284]: Direct Instances: []\n", - "[INFO] [1712351065.581610]: Inverse Restrictions: []\n", - "[INFO] [1712351065.581852]: -------------------\n", - "[INFO] [1712351065.582092]: SOMA.AestheticDesign \n", - "[INFO] [1712351065.582330]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712351065.582583]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing, SOMA.AestheticDesign}\n", - "[INFO] [1712351065.582829]: Subclasses: []\n", - "[INFO] [1712351065.583113]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.583586]: Instances: []\n", - "[INFO] [1712351065.583860]: Direct Instances: []\n", - "[INFO] [1712351065.584108]: Inverse Restrictions: []\n", - "[INFO] [1712351065.584344]: -------------------\n", - "[INFO] [1712351065.584572]: SOMA.AgentRole \n", - "[INFO] [1712351065.584806]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712351065.585046]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.AgentRole, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351065.585300]: Subclasses: []\n", - "[INFO] [1712351065.585601]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.586081]: Instances: []\n", - "[INFO] [1712351065.586339]: Direct Instances: []\n", - "[INFO] [1712351065.586623]: Inverse Restrictions: []\n", - "[INFO] [1712351065.586890]: -------------------\n", - "[INFO] [1712351065.587149]: SOMA.CausativeRole \n", - "[INFO] [1712351065.587383]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351065.587619]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351065.587883]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712351065.588171]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.588658]: Instances: []\n", - "[INFO] [1712351065.588930]: Direct Instances: []\n", - "[INFO] [1712351065.589274]: Inverse Restrictions: []\n", - "[INFO] [1712351065.589538]: -------------------\n", - "[INFO] [1712351065.589786]: SOMA.Agonist \n", - "[INFO] [1712351065.590022]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.590262]: Ancestors: {DUL.SocialObject, SOMA.Agonist, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.590535]: Subclasses: []\n", - "[INFO] [1712351065.590830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.591311]: Instances: []\n", - "[INFO] [1712351065.591579]: Direct Instances: []\n", - "[INFO] [1712351065.591872]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712351065.592105]: -------------------\n", - "[INFO] [1712351065.592334]: SOMA.Patient \n", - "[INFO] [1712351065.592559]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351065.592808]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.593090]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712351065.593384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.593931]: Instances: []\n", - "[INFO] [1712351065.594208]: Direct Instances: []\n", - "[INFO] [1712351065.594617]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351065.594861]: -------------------\n", - "[INFO] [1712351065.595093]: SOMA.Algorithm \n", - "[INFO] [1712351065.595323]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712351065.595566]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.Algorithm, DUL.Object, DUL.Entity, owl.Thing, DUL.Plan}\n", - "[INFO] [1712351065.595813]: Subclasses: []\n", - "[INFO] [1712351065.596100]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.596586]: Instances: []\n", - "[INFO] [1712351065.596866]: Direct Instances: []\n", - "[INFO] [1712351065.597190]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712351065.597433]: -------------------\n", - "[INFO] [1712351065.597666]: SOMA.Alteration \n", - "[INFO] [1712351065.597891]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712351065.598124]: Ancestors: {SOMA.Alteration, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.598386]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712351065.598687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.599179]: Instances: []\n", - "[INFO] [1712351065.599453]: Direct Instances: []\n", - "[INFO] [1712351065.599711]: Inverse Restrictions: []\n", - "[INFO] [1712351065.599939]: -------------------\n", - "[INFO] [1712351065.600166]: SOMA.AlterativeInteraction \n", - "[INFO] [1712351065.600386]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712351065.600626]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.AlterativeInteraction, DUL.EventType, SOMA.ForceInteraction}\n", - "[INFO] [1712351065.600876]: Subclasses: []\n", - "[INFO] [1712351065.601172]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.601650]: Instances: []\n", - "[INFO] [1712351065.601924]: Direct Instances: []\n", - "[INFO] [1712351065.602220]: Inverse Restrictions: []\n", - "[INFO] [1712351065.602453]: -------------------\n", - "[INFO] [1712351065.602681]: SOMA.ForceInteraction \n", - "[INFO] [1712351065.602916]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712351065.603155]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, SOMA.ForceInteraction}\n", - "[INFO] [1712351065.603421]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712351065.603734]: Properties: [rdf-schema.label, rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712351065.604223]: Instances: []\n", - "[INFO] [1712351065.604476]: Direct Instances: []\n", - "[INFO] [1712351065.604727]: Inverse Restrictions: []\n", - "[INFO] [1712351065.604974]: -------------------\n", - "[INFO] [1712351065.605208]: SOMA.PreservativeInteraction \n", - "[INFO] [1712351065.605436]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712351065.605672]: Ancestors: {DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ProcessType, SOMA.PreservativeInteraction, DUL.Concept, DUL.EventType, SOMA.ForceInteraction}\n", - "[INFO] [1712351065.605903]: Subclasses: []\n", - "[INFO] [1712351065.606200]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.606686]: Instances: []\n", - "[INFO] [1712351065.606936]: Direct Instances: []\n", - "[INFO] [1712351065.607219]: Inverse Restrictions: []\n", - "[INFO] [1712351065.607451]: -------------------\n", - "[INFO] [1712351065.607695]: SOMA.AlteredObject \n", - "[INFO] [1712351065.607932]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.608175]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.608417]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712351065.608693]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.609204]: Instances: []\n", - "[INFO] [1712351065.609463]: Direct Instances: []\n", - "[INFO] [1712351065.609788]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712351065.610028]: -------------------\n", - "[INFO] [1712351065.610264]: SOMA.Amateurish \n", - "[INFO] [1712351065.610500]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712351065.610750]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351065.610998]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712351065.611289]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.611779]: Instances: []\n", - "[INFO] [1712351065.612049]: Direct Instances: []\n", - "[INFO] [1712351065.612325]: Inverse Restrictions: []\n", - "[INFO] [1712351065.612573]: -------------------\n", - "[INFO] [1712351065.612813]: SOMA.AnsweringTask \n", - "[INFO] [1712351065.613061]: Super classes: [owl.Thing]\n", - "[INFO] [1712351065.613315]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", - "[INFO] [1712351065.613573]: Subclasses: []\n", - "[INFO] [1712351065.613871]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.614362]: Instances: []\n", - "[INFO] [1712351065.614616]: Direct Instances: []\n", - "[INFO] [1712351065.614894]: Inverse Restrictions: []\n", - "[INFO] [1712351065.615147]: -------------------\n", - "[INFO] [1712351065.615386]: SOMA.CommandingTask \n", - "[INFO] [1712351065.615623]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712351065.615874]: Ancestors: {SOMA.CommandingTask, owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712351065.616131]: Subclasses: []\n", - "[INFO] [1712351065.616426]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.616911]: Instances: []\n", - "[INFO] [1712351065.617182]: Direct Instances: []\n", - "[INFO] [1712351065.617512]: Inverse Restrictions: []\n", - "[INFO] [1712351065.617754]: -------------------\n", - "[INFO] [1712351065.617992]: SOMA.IllocutionaryTask \n", - "[INFO] [1712351065.618237]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712351065.618489]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712351065.618745]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712351065.619038]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.619529]: Instances: []\n", - "[INFO] [1712351065.619802]: Direct Instances: []\n", - "[INFO] [1712351065.620097]: Inverse Restrictions: []\n", - "[INFO] [1712351065.620336]: -------------------\n", - "[INFO] [1712351065.620577]: SOMA.Antagonist \n", - "[INFO] [1712351065.620818]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.621077]: Ancestors: {DUL.SocialObject, SOMA.Antagonist, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.621324]: Subclasses: []\n", - "[INFO] [1712351065.621607]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.622085]: Instances: []\n", - "[INFO] [1712351065.622346]: Direct Instances: []\n", - "[INFO] [1712351065.622638]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712351065.622885]: -------------------\n", - "[INFO] [1712351065.623118]: SOMA.Appliance \n", - "[INFO] [1712351065.623348]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712351065.623584]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.Appliance, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.623845]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712351065.624135]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.624630]: Instances: []\n", - "[INFO] [1712351065.624887]: Direct Instances: []\n", - "[INFO] [1712351065.625146]: Inverse Restrictions: []\n", - "[INFO] [1712351065.625390]: -------------------\n", - "[INFO] [1712351065.625623]: SOMA.Approaching \n", - "[INFO] [1712351065.625849]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351065.626091]: Ancestors: {SOMA.Approaching, DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.626342]: Subclasses: []\n", - "[INFO] [1712351065.626631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.627109]: Instances: []\n", - "[INFO] [1712351065.627361]: Direct Instances: []\n", - "[INFO] [1712351065.627615]: Inverse Restrictions: []\n", - "[INFO] [1712351065.627853]: -------------------\n", - "[INFO] [1712351065.628091]: SOMA.Locomotion \n", - "[INFO] [1712351065.628320]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712351065.628567]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.628838]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712351065.629148]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.629664]: Instances: []\n", - "[INFO] [1712351065.629977]: Direct Instances: []\n", - "[INFO] [1712351065.630260]: Inverse Restrictions: []\n", - "[INFO] [1712351065.630509]: -------------------\n", - "[INFO] [1712351065.630755]: SOMA.ArchiveFile \n", - "[INFO] [1712351065.630990]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712351065.631233]: Ancestors: {SOMA.ArchiveFile, DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", - "[INFO] [1712351065.631482]: Subclasses: []\n", - "[INFO] [1712351065.631786]: Properties: [rdf-schema.label, DUL.realizes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.632273]: Instances: []\n", - "[INFO] [1712351065.632528]: Direct Instances: []\n", - "[INFO] [1712351065.632790]: Inverse Restrictions: []\n", - "[INFO] [1712351065.633031]: -------------------\n", - "[INFO] [1712351065.633268]: SOMA.ArchiveText \n", - "[INFO] [1712351065.633499]: Super classes: [owl.Thing]\n", - "[INFO] [1712351065.633733]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", - "[INFO] [1712351065.633968]: Subclasses: []\n", - "[INFO] [1712351065.634272]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.expresses, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.634761]: Instances: []\n", - "[INFO] [1712351065.635013]: Direct Instances: []\n", - "[INFO] [1712351065.635338]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712351065.635592]: -------------------\n", - "[INFO] [1712351065.635834]: SOMA.Digital_File \n", - "[INFO] [1712351065.636079]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712351065.636324]: Ancestors: {DUL.InformationEntity, SOMA.Digital_File, DUL.Entity, DUL.InformationRealization, owl.Thing}\n", - "[INFO] [1712351065.636571]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712351065.636881]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.realizes, SOMA.hasNameString, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.637381]: Instances: []\n", - "[INFO] [1712351065.637633]: Direct Instances: []\n", - "[INFO] [1712351065.638726]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712351065.638994]: -------------------\n", - "[INFO] [1712351065.639240]: SOMA.ArchiveFormat \n", - "[INFO] [1712351065.639485]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712351065.639744]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.ArchiveFormat, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351065.640005]: Subclasses: []\n", - "[INFO] [1712351065.640288]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.640794]: Instances: []\n", - "[INFO] [1712351065.641050]: Direct Instances: []\n", - "[INFO] [1712351065.641344]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712351065.641580]: -------------------\n", - "[INFO] [1712351065.641820]: SOMA.File_format \n", - "[INFO] [1712351065.642053]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351065.642291]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351065.642542]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712351065.642825]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.643323]: Instances: []\n", - "[INFO] [1712351065.643586]: Direct Instances: []\n", - "[INFO] [1712351065.643841]: Inverse Restrictions: []\n", - "[INFO] [1712351065.644070]: -------------------\n", - "[INFO] [1712351065.644296]: SOMA.FileConfiguration \n", - "[INFO] [1712351065.644530]: Super classes: [owl.Thing]\n", - "[INFO] [1712351065.644761]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", - "[INFO] [1712351065.645003]: Subclasses: []\n", - "[INFO] [1712351065.645295]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.645774]: Instances: []\n", - "[INFO] [1712351065.646027]: Direct Instances: []\n", - "[INFO] [1712351065.646328]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712351065.646587]: -------------------\n", - "[INFO] [1712351065.646832]: SOMA.Structured_Text \n", - "[INFO] [1712351065.647065]: Super classes: [owl.Thing]\n", - "[INFO] [1712351065.647299]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", - "[INFO] [1712351065.647543]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712351065.647830]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.648330]: Instances: []\n", - "[INFO] [1712351065.648600]: Direct Instances: []\n", - "[INFO] [1712351065.649040]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712351065.649275]: -------------------\n", - "[INFO] [1712351065.649501]: SOMA.AreaSurveying \n", - "[INFO] [1712351065.649737]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712351065.649976]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", - "[INFO] [1712351065.650215]: Subclasses: []\n", - "[INFO] [1712351065.650495]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.650977]: Instances: []\n", - "[INFO] [1712351065.651237]: Direct Instances: []\n", - "[INFO] [1712351065.651480]: Inverse Restrictions: []\n", - "[INFO] [1712351065.651705]: -------------------\n", - "[INFO] [1712351065.651929]: SOMA.Perceiving \n", - "[INFO] [1712351065.652157]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712351065.652396]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712351065.652650]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712351065.652940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.653426]: Instances: []\n", - "[INFO] [1712351065.653694]: Direct Instances: []\n", - "[INFO] [1712351065.653954]: Inverse Restrictions: []\n", - "[INFO] [1712351065.654180]: -------------------\n", - "[INFO] [1712351065.654405]: SOMA.Arm \n", - "[INFO] [1712351065.654630]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712351065.654875]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Arm, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712351065.655114]: Subclasses: []\n", - "[INFO] [1712351065.655393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.655864]: Instances: []\n", - "[INFO] [1712351065.656125]: Direct Instances: []\n", - "[INFO] [1712351065.656419]: Inverse Restrictions: []\n", - "[INFO] [1712351065.656650]: -------------------\n", - "[INFO] [1712351065.656881]: SOMA.Limb \n", - "[INFO] [1712351065.657109]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712351065.657349]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712351065.657610]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712351065.657907]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.658394]: Instances: []\n", - "[INFO] [1712351065.658668]: Direct Instances: []\n", - "[INFO] [1712351065.658985]: Inverse Restrictions: []\n", - "[INFO] [1712351065.659220]: -------------------\n", - "[INFO] [1712351065.659448]: SOMA.Arranging \n", - "[INFO] [1712351065.659674]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712351065.659911]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Arranging, owl.Thing}\n", - "[INFO] [1712351065.660162]: Subclasses: []\n", - "[INFO] [1712351065.660450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.660940]: Instances: []\n", - "[INFO] [1712351065.661200]: Direct Instances: []\n", - "[INFO] [1712351065.661463]: Inverse Restrictions: []\n", - "[INFO] [1712351065.661695]: -------------------\n", - "[INFO] [1712351065.661925]: SOMA.Constructing \n", - "[INFO] [1712351065.662149]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351065.662381]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.662642]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712351065.662941]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.663455]: Instances: []\n", - "[INFO] [1712351065.663735]: Direct Instances: []\n", - "[INFO] [1712351065.664002]: Inverse Restrictions: []\n", - "[INFO] [1712351065.664233]: -------------------\n", - "[INFO] [1712351065.664461]: SOMA.ArtificialAgent \n", - "[INFO] [1712351065.664687]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712351065.664939]: Ancestors: {DUL.Object, DUL.Entity, SOMA.ArtificialAgent, DUL.Agent, DUL.PhysicalAgent, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.665189]: Subclasses: []\n", - "[INFO] [1712351065.665474]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.665939]: Instances: []\n", - "[INFO] [1712351065.666202]: Direct Instances: []\n", - "[INFO] [1712351065.666445]: Inverse Restrictions: []\n", - "[INFO] [1712351065.666671]: -------------------\n", - "[INFO] [1712351065.666893]: SOMA.Assembling \n", - "[INFO] [1712351065.667122]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712351065.667363]: Ancestors: {SOMA.Constructing, DUL.SocialObject, DUL.Object, SOMA.Assembling, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.667597]: Subclasses: []\n", - "[INFO] [1712351065.667874]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.668352]: Instances: []\n", - "[INFO] [1712351065.668610]: Direct Instances: []\n", - "[INFO] [1712351065.668863]: Inverse Restrictions: []\n", - "[INFO] [1712351065.669089]: -------------------\n", - "[INFO] [1712351065.669315]: SOMA.AssertionTask \n", - "[INFO] [1712351065.669556]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712351065.669794]: Ancestors: {SOMA.AssertionTask, owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712351065.670030]: Subclasses: []\n", - "[INFO] [1712351065.670312]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.670809]: Instances: []\n", - "[INFO] [1712351065.671074]: Direct Instances: []\n", - "[INFO] [1712351065.671321]: Inverse Restrictions: []\n", - "[INFO] [1712351065.671641]: -------------------\n", - "[INFO] [1712351065.671891]: SOMA.DeclarativeClause \n", - "[INFO] [1712351065.672128]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712351065.672373]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing, SOMA.DeclarativeClause}\n", - "[INFO] [1712351065.672610]: Subclasses: []\n", - "[INFO] [1712351065.672901]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.673399]: Instances: []\n", - "[INFO] [1712351065.673666]: Direct Instances: []\n", - "[INFO] [1712351065.673962]: Inverse Restrictions: []\n", - "[INFO] [1712351065.674199]: -------------------\n", - "[INFO] [1712351065.674430]: SOMA.AssumingArmPose \n", - "[INFO] [1712351065.674662]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712351065.674909]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.AssumingArmPose, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.675160]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712351065.675444]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.675924]: Instances: []\n", - "[INFO] [1712351065.676193]: Direct Instances: []\n", - "[INFO] [1712351065.676445]: Inverse Restrictions: []\n", - "[INFO] [1712351065.676685]: -------------------\n", - "[INFO] [1712351065.676919]: SOMA.AssumingPose \n", - "[INFO] [1712351065.677146]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351065.677382]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.677645]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712351065.677944]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.678425]: Instances: []\n", - "[INFO] [1712351065.678692]: Direct Instances: []\n", - "[INFO] [1712351065.678952]: Inverse Restrictions: []\n", - "[INFO] [1712351065.679178]: -------------------\n", - "[INFO] [1712351065.679402]: SOMA.AttentionShift \n", - "[INFO] [1712351065.679623]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712351065.679894]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AttentionShift, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.680155]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712351065.680445]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.680922]: Instances: []\n", - "[INFO] [1712351065.681194]: Direct Instances: []\n", - "[INFO] [1712351065.681450]: Inverse Restrictions: []\n", - "[INFO] [1712351065.681680]: -------------------\n", - "[INFO] [1712351065.681913]: SOMA.MentalTask \n", - "[INFO] [1712351065.682405]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712351065.682835]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.683142]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712351065.683456]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.683976]: Instances: []\n", - "[INFO] [1712351065.684261]: Direct Instances: []\n", - "[INFO] [1712351065.684561]: Inverse Restrictions: []\n", - "[INFO] [1712351065.684800]: -------------------\n", - "[INFO] [1712351065.685031]: SOMA.AvoidedObject \n", - "[INFO] [1712351065.685265]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.685516]: Ancestors: {DUL.SocialObject, SOMA.AvoidedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.685764]: Subclasses: []\n", - "[INFO] [1712351065.686051]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.686522]: Instances: []\n", - "[INFO] [1712351065.686771]: Direct Instances: []\n", - "[INFO] [1712351065.687027]: Inverse Restrictions: []\n", - "[INFO] [1712351065.687258]: -------------------\n", - "[INFO] [1712351065.687488]: SOMA.Avoiding \n", - "[INFO] [1712351065.687714]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712351065.687966]: Ancestors: {SOMA.Avoiding, DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.688233]: Subclasses: []\n", - "[INFO] [1712351065.688537]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.689044]: Instances: []\n", - "[INFO] [1712351065.689397]: Direct Instances: []\n", - "[INFO] [1712351065.689821]: Inverse Restrictions: []\n", - "[INFO] [1712351065.690131]: -------------------\n", - "[INFO] [1712351065.690400]: SOMA.Navigating \n", - "[INFO] [1712351065.690680]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351065.691007]: Ancestors: {DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.691305]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712351065.691617]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.692113]: Instances: []\n", - "[INFO] [1712351065.692394]: Direct Instances: []\n", - "[INFO] [1712351065.692659]: Inverse Restrictions: []\n", - "[INFO] [1712351065.692902]: -------------------\n", - "[INFO] [1712351065.693129]: SOMA.Barrier \n", - "[INFO] [1712351065.693352]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712351065.693588]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.693849]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712351065.694139]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.694616]: Instances: []\n", - "[INFO] [1712351065.694879]: Direct Instances: []\n", - "[INFO] [1712351065.695181]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712351065.695419]: -------------------\n", - "[INFO] [1712351065.695646]: SOMA.Restrictor \n", - "[INFO] [1712351065.695869]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712351065.696107]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.696373]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712351065.696695]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.697222]: Instances: []\n", - "[INFO] [1712351065.697525]: Direct Instances: []\n", - "[INFO] [1712351065.697890]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712351065.698135]: -------------------\n", - "[INFO] [1712351065.698370]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712351065.698608]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712351065.698855]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.699120]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712351065.699423]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.699931]: Instances: []\n", - "[INFO] [1712351065.700207]: Direct Instances: []\n", - "[INFO] [1712351065.700461]: Inverse Restrictions: []\n", - "[INFO] [1712351065.700691]: -------------------\n", - "[INFO] [1712351065.700921]: SOMA.BeneficiaryRole \n", - "[INFO] [1712351065.701158]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712351065.701406]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, owl.Thing}\n", - "[INFO] [1712351065.701656]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712351065.701944]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.702430]: Instances: []\n", - "[INFO] [1712351065.702707]: Direct Instances: []\n", - "[INFO] [1712351065.702968]: Inverse Restrictions: []\n", - "[INFO] [1712351065.703199]: -------------------\n", - "[INFO] [1712351065.703431]: SOMA.GoalRole \n", - "[INFO] [1712351065.703657]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351065.703899]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.704165]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712351065.704463]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.704957]: Instances: []\n", - "[INFO] [1712351065.705221]: Direct Instances: []\n", - "[INFO] [1712351065.705482]: Inverse Restrictions: []\n", - "[INFO] [1712351065.705715]: -------------------\n", - "[INFO] [1712351065.705943]: SOMA.CounterfactualBinding \n", - "[INFO] [1712351065.706170]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712351065.706402]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, SOMA.CounterfactualBinding, DUL.Relation}\n", - "[INFO] [1712351065.706651]: Subclasses: []\n", - "[INFO] [1712351065.706950]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.707429]: Instances: []\n", - "[INFO] [1712351065.707709]: Direct Instances: []\n", - "[INFO] [1712351065.708040]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712351065.708273]: -------------------\n", - "[INFO] [1712351065.708503]: SOMA.FactualBinding \n", - "[INFO] [1712351065.708727]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712351065.708974]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, SOMA.FactualBinding, DUL.Relation}\n", - "[INFO] [1712351065.709224]: Subclasses: []\n", - "[INFO] [1712351065.709517]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.709986]: Instances: []\n", - "[INFO] [1712351065.710243]: Direct Instances: []\n", - "[INFO] [1712351065.710572]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712351065.710806]: -------------------\n", - "[INFO] [1712351065.711032]: SOMA.RoleFillerBinding \n", - "[INFO] [1712351065.711256]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712351065.711489]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Binding, SOMA.RoleFillerBinding, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351065.711737]: Subclasses: []\n", - "[INFO] [1712351065.712040]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.712517]: Instances: []\n", - "[INFO] [1712351065.712763]: Direct Instances: []\n", - "[INFO] [1712351065.713062]: Inverse Restrictions: []\n", - "[INFO] [1712351065.713319]: -------------------\n", - "[INFO] [1712351065.713552]: SOMA.RoleRoleBinding \n", - "[INFO] [1712351065.713792]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712351065.714033]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.RoleRoleBinding, owl.Thing, DUL.Object, SOMA.Binding, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351065.714287]: Subclasses: []\n", - "[INFO] [1712351065.714577]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.715061]: Instances: []\n", - "[INFO] [1712351065.715338]: Direct Instances: []\n", - "[INFO] [1712351065.715640]: Inverse Restrictions: []\n", - "[INFO] [1712351065.715886]: -------------------\n", - "[INFO] [1712351065.716118]: SOMA.DesignedComponent \n", - "[INFO] [1712351065.716353]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712351065.716605]: Ancestors: {DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalArtifact, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.716880]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712351065.717174]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.717696]: Instances: []\n", - "[INFO] [1712351065.717962]: Direct Instances: []\n", - "[INFO] [1712351065.718221]: Inverse Restrictions: []\n", - "[INFO] [1712351065.718447]: -------------------\n", - "[INFO] [1712351065.718678]: SOMA.Blockage \n", - "[INFO] [1712351065.718919]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712351065.719157]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.719412]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712351065.719706]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.720188]: Instances: []\n", - "[INFO] [1712351065.720437]: Direct Instances: []\n", - "[INFO] [1712351065.720683]: Inverse Restrictions: []\n", - "[INFO] [1712351065.720930]: -------------------\n", - "[INFO] [1712351065.721162]: SOMA.BlockedObject \n", - "[INFO] [1712351065.721389]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.721623]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, SOMA.BlockedObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.721867]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712351065.722148]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.722636]: Instances: []\n", - "[INFO] [1712351065.722897]: Direct Instances: []\n", - "[INFO] [1712351065.723185]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712351065.723413]: -------------------\n", - "[INFO] [1712351065.723637]: SOMA.BodyMovement \n", - "[INFO] [1712351065.723894]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712351065.724143]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, DUL.Concept, SOMA.ProcessType, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.724404]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712351065.724690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.725229]: Instances: []\n", - "[INFO] [1712351065.725500]: Direct Instances: []\n", - "[INFO] [1712351065.725756]: Inverse Restrictions: []\n", - "[INFO] [1712351065.725990]: -------------------\n", - "[INFO] [1712351065.726217]: SOMA.Motion \n", - "[INFO] [1712351065.726447]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712351065.726694]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.726953]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712351065.727236]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.727762]: Instances: []\n", - "[INFO] [1712351065.728042]: Direct Instances: []\n", - "[INFO] [1712351065.728311]: Inverse Restrictions: []\n", - "[INFO] [1712351065.728551]: -------------------\n", - "[INFO] [1712351065.728783]: SOMA.Boiling \n", - "[INFO] [1712351065.729016]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712351065.729268]: Ancestors: {SOMA.Alteration, SOMA.Vaporizing, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Boiling, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.729522]: Subclasses: []\n", - "[INFO] [1712351065.729843]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.730338]: Instances: []\n", - "[INFO] [1712351065.730611]: Direct Instances: []\n", - "[INFO] [1712351065.730870]: Inverse Restrictions: []\n", - "[INFO] [1712351065.731097]: -------------------\n", - "[INFO] [1712351065.731322]: SOMA.Vaporizing \n", - "[INFO] [1712351065.731556]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712351065.731816]: Ancestors: {SOMA.Alteration, SOMA.Vaporizing, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.732069]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712351065.732363]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment]\n", - "[INFO] [1712351065.732846]: Instances: []\n", - "[INFO] [1712351065.733122]: Direct Instances: []\n", - "[INFO] [1712351065.733377]: Inverse Restrictions: []\n", - "[INFO] [1712351065.733606]: -------------------\n", - "[INFO] [1712351065.733830]: SOMA.DesignedContainer \n", - "[INFO] [1712351065.734059]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712351065.734308]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.734577]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer]\n", - "[INFO] [1712351065.734870]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.735410]: Instances: []\n", - "[INFO] [1712351065.735679]: Direct Instances: []\n", - "[INFO] [1712351065.735943]: Inverse Restrictions: []\n", - "[INFO] [1712351065.736178]: -------------------\n", - "[INFO] [1712351065.736405]: SOMA.BoxShape \n", - "[INFO] [1712351065.736641]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712351065.736896]: Ancestors: {SOMA.BoxShape, SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.737140]: Subclasses: []\n", - "[INFO] [1712351065.737432]: Properties: [rdf-schema.comment, SOMA.hasHeight, rdf-schema.label, SOMA.hasWidth, SOMA.hasLength, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.737906]: Instances: []\n", - "[INFO] [1712351065.738168]: Direct Instances: []\n", - "[INFO] [1712351065.738455]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712351065.738691]: -------------------\n", - "[INFO] [1712351065.738918]: SOMA.Deposition \n", - "[INFO] [1712351065.739154]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712351065.739402]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Deposition, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.739651]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712351065.739937]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.740417]: Instances: []\n", - "[INFO] [1712351065.740683]: Direct Instances: []\n", - "[INFO] [1712351065.741014]: Inverse Restrictions: []\n", - "[INFO] [1712351065.741245]: -------------------\n", - "[INFO] [1712351065.741468]: SOMA.CanCut \n", - "[INFO] [1712351065.741698]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712351065.741945]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.742187]: Subclasses: []\n", - "[INFO] [1712351065.742470]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.742941]: Instances: []\n", - "[INFO] [1712351065.743210]: Direct Instances: []\n", - "[INFO] [1712351065.743460]: Inverse Restrictions: []\n", - "[INFO] [1712351065.743687]: -------------------\n", - "[INFO] [1712351065.743913]: SOMA.Variability \n", - "[INFO] [1712351065.744143]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712351065.744375]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.744641]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712351065.744934]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.745428]: Instances: []\n", - "[INFO] [1712351065.745684]: Direct Instances: []\n", - "[INFO] [1712351065.745944]: Inverse Restrictions: []\n", - "[INFO] [1712351065.746179]: -------------------\n", - "[INFO] [1712351065.746433]: SOMA.Cutter \n", - "[INFO] [1712351065.746687]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712351065.746928]: Ancestors: {SOMA.Tool, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.Cutter, owl.Thing}\n", - "[INFO] [1712351065.747169]: Subclasses: []\n", - "[INFO] [1712351065.747457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.747933]: Instances: []\n", - "[INFO] [1712351065.748177]: Direct Instances: []\n", - "[INFO] [1712351065.748481]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712351065.748726]: -------------------\n", - "[INFO] [1712351065.748968]: SOMA.CutObject \n", - "[INFO] [1712351065.749196]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712351065.749432]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, DUL.Concept, SOMA.CutObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.749664]: Subclasses: []\n", - "[INFO] [1712351065.749945]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.750428]: Instances: []\n", - "[INFO] [1712351065.750677]: Direct Instances: []\n", - "[INFO] [1712351065.750994]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712351065.751225]: -------------------\n", - "[INFO] [1712351065.751451]: SOMA.Capability \n", - "[INFO] [1712351065.751705]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712351065.751950]: Ancestors: {SOMA.Extrinsic, SOMA.Capability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.752197]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712351065.752481]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.752974]: Instances: []\n", - "[INFO] [1712351065.753240]: Direct Instances: []\n", - "[INFO] [1712351065.753498]: Inverse Restrictions: []\n", - "[INFO] [1712351065.753723]: -------------------\n", - "[INFO] [1712351065.753953]: SOMA.Capacity \n", - "[INFO] [1712351065.754186]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351065.754421]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Capacity, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351065.754656]: Subclasses: []\n", - "[INFO] [1712351065.754931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.755420]: Instances: []\n", - "[INFO] [1712351065.755692]: Direct Instances: []\n", - "[INFO] [1712351065.755986]: Inverse Restrictions: []\n", - "[INFO] [1712351065.756219]: -------------------\n", - "[INFO] [1712351065.756454]: SOMA.Intrinsic \n", - "[INFO] [1712351065.756689]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712351065.756937]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351065.757198]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712351065.757487]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.758000]: Instances: []\n", - "[INFO] [1712351065.758264]: Direct Instances: []\n", - "[INFO] [1712351065.758528]: Inverse Restrictions: []\n", - "[INFO] [1712351065.758757]: -------------------\n", - "[INFO] [1712351065.758993]: SOMA.Catching \n", - "[INFO] [1712351065.759227]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351065.759467]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.Catching, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.759701]: Subclasses: []\n", - "[INFO] [1712351065.759994]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.760482]: Instances: []\n", - "[INFO] [1712351065.761062]: Direct Instances: []\n", - "[INFO] [1712351065.761426]: Inverse Restrictions: []\n", - "[INFO] [1712351065.761691]: -------------------\n", - "[INFO] [1712351065.762052]: SOMA.PickingUp \n", - "[INFO] [1712351065.762425]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351065.762795]: Ancestors: {SOMA.PickingUp, DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.763159]: Subclasses: []\n", - "[INFO] [1712351065.763474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.763958]: Instances: []\n", - "[INFO] [1712351065.764249]: Direct Instances: []\n", - "[INFO] [1712351065.764518]: Inverse Restrictions: []\n", - "[INFO] [1712351065.764757]: -------------------\n", - "[INFO] [1712351065.764997]: SOMA.CausalEventRole \n", - "[INFO] [1712351065.765239]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712351065.765565]: Ancestors: {SOMA.CausalEventRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351065.765846]: Subclasses: []\n", - "[INFO] [1712351065.766160]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.766660]: Instances: []\n", - "[INFO] [1712351065.766924]: Direct Instances: []\n", - "[INFO] [1712351065.767227]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351065.767473]: -------------------\n", - "[INFO] [1712351065.767706]: SOMA.EventAdjacentRole \n", - "[INFO] [1712351065.767934]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712351065.768167]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.768419]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712351065.768720]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.769391]: Instances: []\n", - "[INFO] [1712351065.769675]: Direct Instances: []\n", - "[INFO] [1712351065.769939]: Inverse Restrictions: []\n", - "[INFO] [1712351065.770174]: -------------------\n", - "[INFO] [1712351065.770405]: SOMA.CausedMotionTheory \n", - "[INFO] [1712351065.770653]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712351065.770911]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CausedMotionTheory, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.771160]: Subclasses: []\n", - "[INFO] [1712351065.771456]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.hasPart, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.771935]: Instances: []\n", - "[INFO] [1712351065.772207]: Direct Instances: []\n", - "[INFO] [1712351065.772459]: Inverse Restrictions: []\n", - "[INFO] [1712351065.772688]: -------------------\n", - "[INFO] [1712351065.772917]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712351065.773139]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712351065.773373]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.773639]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712351065.773927]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.774426]: Instances: []\n", - "[INFO] [1712351065.774705]: Direct Instances: []\n", - "[INFO] [1712351065.775038]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.StateTransition, SOMA.Scene]\n", - "[INFO] [1712351065.775278]: -------------------\n", - "[INFO] [1712351065.775510]: SOMA.PerformerRole \n", - "[INFO] [1712351065.775746]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712351065.775993]: Ancestors: {DUL.SocialObject, SOMA.PerformerRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351065.776253]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712351065.776549]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.777044]: Instances: []\n", - "[INFO] [1712351065.777323]: Direct Instances: []\n", - "[INFO] [1712351065.777651]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351065.777894]: -------------------\n", - "[INFO] [1712351065.778128]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712351065.778369]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712351065.778611]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.SourcePathGoalTheory, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.778869]: Subclasses: []\n", - "[INFO] [1712351065.779169]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351065.779648]: Instances: []\n", - "[INFO] [1712351065.779913]: Direct Instances: []\n", - "[INFO] [1712351065.780209]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712351065.780457]: -------------------\n", - "[INFO] [1712351065.780693]: SOMA.RoomSurface \n", - "[INFO] [1712351065.780926]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712351065.781177]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, SOMA.RoomSurface, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.781431]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712351065.781721]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.782214]: Instances: []\n", - "[INFO] [1712351065.782484]: Direct Instances: []\n", - "[INFO] [1712351065.782758]: Inverse Restrictions: []\n", - "[INFO] [1712351065.783001]: -------------------\n", - "[INFO] [1712351065.783234]: SOMA.Channel \n", - "[INFO] [1712351065.783472]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712351065.783721]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, SOMA.Channel, DUL.Entity, SOMA.PathRole, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.783961]: Subclasses: []\n", - "[INFO] [1712351065.784255]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.784739]: Instances: []\n", - "[INFO] [1712351065.785017]: Direct Instances: []\n", - "[INFO] [1712351065.785325]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351065.785560]: -------------------\n", - "[INFO] [1712351065.785789]: SOMA.PathRole \n", - "[INFO] [1712351065.786017]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712351065.786266]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.PathRole, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.786520]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712351065.786808]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.787287]: Instances: []\n", - "[INFO] [1712351065.787554]: Direct Instances: []\n", - "[INFO] [1712351065.787854]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712351065.788101]: -------------------\n", - "[INFO] [1712351065.788348]: SOMA.CommunicationTask \n", - "[INFO] [1712351065.788661]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712351065.788938]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.789209]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712351065.789517]: Properties: [rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.790003]: Instances: []\n", - "[INFO] [1712351065.790273]: Direct Instances: []\n", - "[INFO] [1712351065.790748]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel]\n", - "[INFO] [1712351065.790986]: -------------------\n", - "[INFO] [1712351065.791214]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712351065.791443]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712351065.791672]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", - "[INFO] [1712351065.791918]: Subclasses: []\n", - "[INFO] [1712351065.792217]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.792708]: Instances: []\n", - "[INFO] [1712351065.792974]: Direct Instances: []\n", - "[INFO] [1712351065.793223]: Inverse Restrictions: []\n", - "[INFO] [1712351065.793453]: -------------------\n", - "[INFO] [1712351065.793693]: SOMA.ChemicalProcess \n", - "[INFO] [1712351065.793926]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712351065.794165]: Ancestors: {DUL.Entity, SOMA.ChemicalProcess, DUL.Event, owl.Thing, DUL.Process}\n", - "[INFO] [1712351065.794402]: Subclasses: []\n", - "[INFO] [1712351065.794686]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.795190]: Instances: []\n", - "[INFO] [1712351065.795465]: Direct Instances: []\n", - "[INFO] [1712351065.795720]: Inverse Restrictions: []\n", - "[INFO] [1712351065.795952]: -------------------\n", - "[INFO] [1712351065.796181]: SOMA.Choice \n", - "[INFO] [1712351065.796419]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712351065.796660]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.Choice, DUL.Entity, DUL.Concept, SOMA.ResultRole, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.796900]: Subclasses: []\n", - "[INFO] [1712351065.797187]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.797681]: Instances: []\n", - "[INFO] [1712351065.797947]: Direct Instances: []\n", - "[INFO] [1712351065.798187]: Inverse Restrictions: []\n", - "[INFO] [1712351065.798416]: -------------------\n", - "[INFO] [1712351065.798640]: SOMA.ResultRole \n", - "[INFO] [1712351065.798873]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712351065.799124]: Ancestors: {SOMA.GoalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.ResultRole, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.799372]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712351065.799659]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.800142]: Instances: []\n", - "[INFO] [1712351065.800403]: Direct Instances: []\n", - "[INFO] [1712351065.800652]: Inverse Restrictions: []\n", - "[INFO] [1712351065.800886]: -------------------\n", - "[INFO] [1712351065.801110]: SOMA.CircularCylinder \n", - "[INFO] [1712351065.801357]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712351065.801599]: Ancestors: {SOMA.CircularCylinder, SOMA.CylinderShape, SOMA.ShapeRegion, DUL.Region, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.801835]: Subclasses: []\n", - "[INFO] [1712351065.802120]: Properties: [rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.802619]: Instances: []\n", - "[INFO] [1712351065.802879]: Direct Instances: []\n", - "[INFO] [1712351065.803123]: Inverse Restrictions: []\n", - "[INFO] [1712351065.803351]: -------------------\n", - "[INFO] [1712351065.803576]: SOMA.CylinderShape \n", - "[INFO] [1712351065.803808]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712351065.804054]: Ancestors: {SOMA.CylinderShape, SOMA.ShapeRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.804300]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712351065.804595]: Properties: [rdf-schema.label, rdf-schema.comment, SOMA.hasRadius, SOMA.hasLength, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.805093]: Instances: []\n", - "[INFO] [1712351065.805366]: Direct Instances: []\n", - "[INFO] [1712351065.805630]: Inverse Restrictions: []\n", - "[INFO] [1712351065.805860]: -------------------\n", - "[INFO] [1712351065.806087]: SOMA.Classifier \n", - "[INFO] [1712351065.806314]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712351065.806553]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, SOMA.Classifier, DUL.Entity, DUL.Concept, SOMA.StatisticalReasoner, DUL.Role, SOMA.Reasoner, owl.Thing}\n", - "[INFO] [1712351065.806803]: Subclasses: []\n", - "[INFO] [1712351065.807092]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351065.807564]: Instances: []\n", - "[INFO] [1712351065.807814]: Direct Instances: []\n", - "[INFO] [1712351065.808064]: Inverse Restrictions: []\n", - "[INFO] [1712351065.808293]: -------------------\n", - "[INFO] [1712351065.808518]: SOMA.StatisticalReasoner \n", - "[INFO] [1712351065.808742]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712351065.808995]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.StatisticalReasoner, DUL.Role, SOMA.Reasoner, owl.Thing}\n", - "[INFO] [1712351065.809257]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712351065.809545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351065.810035]: Instances: []\n", - "[INFO] [1712351065.810302]: Direct Instances: []\n", - "[INFO] [1712351065.810556]: Inverse Restrictions: []\n", - "[INFO] [1712351065.810789]: -------------------\n", - "[INFO] [1712351065.811035]: SOMA.ClausalObject \n", - "[INFO] [1712351065.811263]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712351065.811513]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.811772]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712351065.812061]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.812549]: Instances: []\n", - "[INFO] [1712351065.812815]: Direct Instances: []\n", - "[INFO] [1712351065.813073]: Inverse Restrictions: []\n", - "[INFO] [1712351065.813310]: -------------------\n", - "[INFO] [1712351065.813545]: SOMA.Phrase \n", - "[INFO] [1712351065.813771]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712351065.814017]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.814270]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712351065.814555]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.815058]: Instances: []\n", - "[INFO] [1712351065.815315]: Direct Instances: []\n", - "[INFO] [1712351065.815560]: Inverse Restrictions: []\n", - "[INFO] [1712351065.815798]: -------------------\n", - "[INFO] [1712351065.816030]: SOMA.Clean \n", - "[INFO] [1712351065.816264]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712351065.816514]: Ancestors: {SOMA.Clean, SOMA.CleanlinessRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.816752]: Subclasses: []\n", - "[INFO] [1712351065.817037]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.817532]: Instances: []\n", - "[INFO] [1712351065.817796]: Direct Instances: []\n", - "[INFO] [1712351065.818111]: Inverse Restrictions: []\n", - "[INFO] [1712351065.818345]: -------------------\n", - "[INFO] [1712351065.818577]: SOMA.CleanlinessRegion \n", - "[INFO] [1712351065.818806]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351065.819058]: Ancestors: {SOMA.CleanlinessRegion, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351065.819305]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712351065.819587]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.820072]: Instances: []\n", - "[INFO] [1712351065.820339]: Direct Instances: []\n", - "[INFO] [1712351065.820655]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712351065.820899]: -------------------\n", - "[INFO] [1712351065.821134]: SOMA.Cleaning \n", - "[INFO] [1712351065.821370]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712351065.821627]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Cleaning}\n", - "[INFO] [1712351065.821871]: Subclasses: []\n", - "[INFO] [1712351065.822155]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.822649]: Instances: []\n", - "[INFO] [1712351065.822905]: Direct Instances: []\n", - "[INFO] [1712351065.823152]: Inverse Restrictions: []\n", - "[INFO] [1712351065.823384]: -------------------\n", - "[INFO] [1712351065.823626]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712351065.823864]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351065.824104]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.824352]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712351065.824635]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.825148]: Instances: []\n", - "[INFO] [1712351065.825409]: Direct Instances: []\n", - "[INFO] [1712351065.825742]: Inverse Restrictions: []\n", - "[INFO] [1712351065.826007]: -------------------\n", - "[INFO] [1712351065.826268]: SOMA.Purification \n", - "[INFO] [1712351065.826540]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712351065.826792]: Ancestors: {SOMA.Extrinsic, SOMA.Purification, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.827056]: Subclasses: []\n", - "[INFO] [1712351065.827343]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.827837]: Instances: []\n", - "[INFO] [1712351065.828101]: Direct Instances: []\n", - "[INFO] [1712351065.828387]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712351065.828626]: -------------------\n", - "[INFO] [1712351065.828861]: SOMA.Cleanliness \n", - "[INFO] [1712351065.829095]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712351065.829346]: Ancestors: {SOMA.SocialQuality, DUL.Quality, DUL.Entity, owl.Thing, SOMA.Cleanliness}\n", - "[INFO] [1712351065.829582]: Subclasses: []\n", - "[INFO] [1712351065.829868]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351065.830338]: Instances: []\n", - "[INFO] [1712351065.830595]: Direct Instances: []\n", - "[INFO] [1712351065.830915]: Inverse Restrictions: []\n", - "[INFO] [1712351065.831161]: -------------------\n", - "[INFO] [1712351065.831389]: SOMA.SocialQuality \n", - "[INFO] [1712351065.831618]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712351065.831868]: Ancestors: {DUL.Entity, SOMA.SocialQuality, owl.Thing, DUL.Quality}\n", - "[INFO] [1712351065.832120]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712351065.832410]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.832907]: Instances: []\n", - "[INFO] [1712351065.833191]: Direct Instances: []\n", - "[INFO] [1712351065.833448]: Inverse Restrictions: []\n", - "[INFO] [1712351065.833689]: -------------------\n", - "[INFO] [1712351065.833919]: SOMA.Client-Server_Specification \n", - "[INFO] [1712351065.834163]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712351065.834418]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Client-Server_Specification, SOMA.InterfaceSpecification}\n", - "[INFO] [1712351065.834657]: Subclasses: []\n", - "[INFO] [1712351065.834947]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole, rdf-schema.comment]\n", - "[INFO] [1712351065.835423]: Instances: []\n", - "[INFO] [1712351065.835685]: Direct Instances: []\n", - "[INFO] [1712351065.835994]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712351065.836237]: -------------------\n", - "[INFO] [1712351065.836471]: SOMA.ClientRole \n", - "[INFO] [1712351065.836705]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712351065.837038]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.ClientRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351065.837339]: Subclasses: []\n", - "[INFO] [1712351065.837755]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", - "[INFO] [1712351065.838285]: Instances: []\n", - "[INFO] [1712351065.838574]: Direct Instances: []\n", - "[INFO] [1712351065.838909]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712351065.839175]: -------------------\n", - "[INFO] [1712351065.839426]: SOMA.ServerRole \n", - "[INFO] [1712351065.839674]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712351065.839927]: Ancestors: {SOMA.SoftwareRole, SOMA.ServerRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351065.840183]: Subclasses: []\n", - "[INFO] [1712351065.840493]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", - "[INFO] [1712351065.840987]: Instances: []\n", - "[INFO] [1712351065.841254]: Direct Instances: []\n", - "[INFO] [1712351065.841574]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712351065.841840]: -------------------\n", - "[INFO] [1712351065.842090]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712351065.842331]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351065.842579]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351065.842840]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712351065.843152]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351065.843648]: Instances: []\n", - "[INFO] [1712351065.843909]: Direct Instances: []\n", - "[INFO] [1712351065.844160]: Inverse Restrictions: []\n", - "[INFO] [1712351065.844411]: -------------------\n", - "[INFO] [1712351065.844655]: SOMA.Closing \n", - "[INFO] [1712351065.844899]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351065.845146]: Ancestors: {SOMA.Closing, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.845389]: Subclasses: []\n", - "[INFO] [1712351065.845690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.846186]: Instances: []\n", - "[INFO] [1712351065.846462]: Direct Instances: []\n", - "[INFO] [1712351065.846732]: Inverse Restrictions: []\n", - "[INFO] [1712351065.846976]: -------------------\n", - "[INFO] [1712351065.847210]: SOMA.Delivering \n", - "[INFO] [1712351065.847465]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712351065.847726]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Delivering, owl.Thing}\n", - "[INFO] [1712351065.847989]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712351065.848307]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.848820]: Instances: []\n", - "[INFO] [1712351065.849102]: Direct Instances: []\n", - "[INFO] [1712351065.849442]: Inverse Restrictions: []\n", - "[INFO] [1712351065.849711]: -------------------\n", - "[INFO] [1712351065.849961]: SOMA.Fetching \n", - "[INFO] [1712351065.850218]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712351065.850482]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, SOMA.Fetching, DUL.Task, SOMA.PhysicalAcquiring, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.850982]: Subclasses: []\n", - "[INFO] [1712351065.851588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.852473]: Instances: []\n", - "[INFO] [1712351065.852908]: Direct Instances: []\n", - "[INFO] [1712351065.853377]: Inverse Restrictions: []\n", - "[INFO] [1712351065.853829]: -------------------\n", - "[INFO] [1712351065.854273]: SOMA.Lifting \n", - "[INFO] [1712351065.854717]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351065.855187]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.Lifting, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.855643]: Subclasses: []\n", - "[INFO] [1712351065.856176]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.856993]: Instances: []\n", - "[INFO] [1712351065.857402]: Direct Instances: []\n", - "[INFO] [1712351065.857798]: Inverse Restrictions: []\n", - "[INFO] [1712351065.858174]: -------------------\n", - "[INFO] [1712351065.858554]: SOMA.Opening \n", - "[INFO] [1712351065.858936]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351065.859336]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, SOMA.Opening, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.859731]: Subclasses: []\n", - "[INFO] [1712351065.860238]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.860960]: Instances: []\n", - "[INFO] [1712351065.861486]: Direct Instances: []\n", - "[INFO] [1712351065.862057]: Inverse Restrictions: []\n", - "[INFO] [1712351065.862581]: -------------------\n", - "[INFO] [1712351065.863093]: SOMA.Pulling \n", - "[INFO] [1712351065.863607]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351065.864141]: Ancestors: {DUL.SocialObject, SOMA.Actuating, SOMA.Pulling, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.864656]: Subclasses: []\n", - "[INFO] [1712351065.865306]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.866234]: Instances: []\n", - "[INFO] [1712351065.866768]: Direct Instances: []\n", - "[INFO] [1712351065.867294]: Inverse Restrictions: []\n", - "[INFO] [1712351065.867796]: -------------------\n", - "[INFO] [1712351065.868305]: SOMA.Pushing \n", - "[INFO] [1712351065.868850]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351065.869402]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.869937]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712351065.870573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.871503]: Instances: []\n", - "[INFO] [1712351065.872028]: Direct Instances: []\n", - "[INFO] [1712351065.872551]: Inverse Restrictions: []\n", - "[INFO] [1712351065.873047]: -------------------\n", - "[INFO] [1712351065.873547]: SOMA.Squeezing \n", - "[INFO] [1712351065.874058]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351065.874596]: Ancestors: {SOMA.Squeezing, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.875105]: Subclasses: []\n", - "[INFO] [1712351065.875693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.876603]: Instances: []\n", - "[INFO] [1712351065.877115]: Direct Instances: []\n", - "[INFO] [1712351065.877620]: Inverse Restrictions: []\n", - "[INFO] [1712351065.878098]: -------------------\n", - "[INFO] [1712351065.878585]: SOMA.Linkage \n", - "[INFO] [1712351065.879092]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712351065.879600]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Linkage, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", - "[INFO] [1712351065.880101]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712351065.880690]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.881609]: Instances: []\n", - "[INFO] [1712351065.882124]: Direct Instances: []\n", - "[INFO] [1712351065.882627]: Inverse Restrictions: []\n", - "[INFO] [1712351065.883126]: -------------------\n", - "[INFO] [1712351065.883872]: SOMA.Clumsiness \n", - "[INFO] [1712351065.884411]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712351065.884937]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Clumsiness, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351065.885456]: Subclasses: []\n", - "[INFO] [1712351065.886048]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.886916]: Instances: []\n", - "[INFO] [1712351065.887390]: Direct Instances: []\n", - "[INFO] [1712351065.887834]: Inverse Restrictions: []\n", - "[INFO] [1712351065.888258]: -------------------\n", - "[INFO] [1712351065.888729]: SOMA.CognitiveAgent \n", - "[INFO] [1712351065.889113]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712351065.889501]: Ancestors: {SOMA.CognitiveAgent, DUL.Object, DUL.Entity, DUL.Agent, owl.Thing}\n", - "[INFO] [1712351065.889868]: Subclasses: []\n", - "[INFO] [1712351065.890339]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.891058]: Instances: []\n", - "[INFO] [1712351065.891416]: Direct Instances: []\n", - "[INFO] [1712351065.891769]: Inverse Restrictions: []\n", - "[INFO] [1712351065.892109]: -------------------\n", - "[INFO] [1712351065.892453]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712351065.892812]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712351065.893165]: Ancestors: {SOMA.SubCognitiveAgent, DUL.Object, DUL.Entity, DUL.Agent, owl.Thing}\n", - "[INFO] [1712351065.893458]: Subclasses: []\n", - "[INFO] [1712351065.893776]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.894274]: Instances: []\n", - "[INFO] [1712351065.894547]: Direct Instances: []\n", - "[INFO] [1712351065.894814]: Inverse Restrictions: []\n", - "[INFO] [1712351065.895061]: -------------------\n", - "[INFO] [1712351065.895302]: SOMA.Collision \n", - "[INFO] [1712351065.895622]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712351065.895912]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Collision, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.896167]: Subclasses: []\n", - "[INFO] [1712351065.896451]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.897006]: Instances: []\n", - "[INFO] [1712351065.897314]: Direct Instances: []\n", - "[INFO] [1712351065.897588]: Inverse Restrictions: []\n", - "[INFO] [1712351065.897850]: -------------------\n", - "[INFO] [1712351065.898125]: SOMA.Extrinsic \n", - "[INFO] [1712351065.898387]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712351065.898645]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.898928]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712351065.899250]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.899809]: Instances: []\n", - "[INFO] [1712351065.900100]: Direct Instances: []\n", - "[INFO] [1712351065.900378]: Inverse Restrictions: []\n", - "[INFO] [1712351065.900634]: -------------------\n", - "[INFO] [1712351065.900938]: SOMA.ImperativeClause \n", - "[INFO] [1712351065.901389]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712351065.901771]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, SOMA.ImperativeClause, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.902128]: Subclasses: []\n", - "[INFO] [1712351065.902531]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.expresses]\n", - "[INFO] [1712351065.903115]: Instances: []\n", - "[INFO] [1712351065.903470]: Direct Instances: []\n", - "[INFO] [1712351065.903866]: Inverse Restrictions: []\n", - "[INFO] [1712351065.904208]: -------------------\n", - "[INFO] [1712351065.904541]: SOMA.CommitedObject \n", - "[INFO] [1712351065.904874]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712351065.905218]: Ancestors: {SOMA.CommitedObject, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.905592]: Subclasses: []\n", - "[INFO] [1712351065.905983]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.906560]: Instances: []\n", - "[INFO] [1712351065.906905]: Direct Instances: []\n", - "[INFO] [1712351065.907236]: Inverse Restrictions: []\n", - "[INFO] [1712351065.907570]: -------------------\n", - "[INFO] [1712351065.907906]: SOMA.ConnectedObject \n", - "[INFO] [1712351065.908230]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.908568]: Ancestors: {DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.908927]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712351065.909319]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.909903]: Instances: []\n", - "[INFO] [1712351065.910261]: Direct Instances: []\n", - "[INFO] [1712351065.910699]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712351065.911034]: -------------------\n", - "[INFO] [1712351065.911363]: SOMA.CommunicationAction \n", - "[INFO] [1712351065.911696]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712351065.912049]: Ancestors: {SOMA.CommunicationAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712351065.912388]: Subclasses: []\n", - "[INFO] [1712351065.912774]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.913396]: Instances: []\n", - "[INFO] [1712351065.913762]: Direct Instances: []\n", - "[INFO] [1712351065.914141]: Inverse Restrictions: []\n", - "[INFO] [1712351065.914467]: -------------------\n", - "[INFO] [1712351065.914795]: SOMA.LinguisticObject \n", - "[INFO] [1712351065.915142]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712351065.915491]: Ancestors: {DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351065.915832]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712351065.916207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351065.916800]: Instances: []\n", - "[INFO] [1712351065.917162]: Direct Instances: []\n", - "[INFO] [1712351065.917550]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712351065.917889]: -------------------\n", - "[INFO] [1712351065.918213]: SOMA.CommunicationReport \n", - "[INFO] [1712351065.918534]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351065.918870]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, owl.Thing, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, SOMA.CommunicationReport}\n", - "[INFO] [1712351065.919216]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712351065.919601]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.920171]: Instances: []\n", - "[INFO] [1712351065.920511]: Direct Instances: []\n", - "[INFO] [1712351065.920852]: Inverse Restrictions: []\n", - "[INFO] [1712351065.921191]: -------------------\n", - "[INFO] [1712351065.921521]: SOMA.Receiver \n", - "[INFO] [1712351065.921844]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712351065.922174]: Ancestors: {DUL.SocialObject, SOMA.EventAdjacentRole, SOMA.PerformerRole, DUL.Object, DUL.Entity, SOMA.Receiver, DUL.Concept, DUL.Role, SOMA.ExperiencerRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351065.922505]: Subclasses: []\n", - "[INFO] [1712351065.922886]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.923450]: Instances: []\n", - "[INFO] [1712351065.923786]: Direct Instances: []\n", - "[INFO] [1712351065.924177]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351065.924522]: -------------------\n", - "[INFO] [1712351065.924855]: SOMA.Sender \n", - "[INFO] [1712351065.925184]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712351065.925522]: Ancestors: {DUL.SocialObject, SOMA.PerformerRole, DUL.Object, SOMA.Sender, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351065.925846]: Subclasses: []\n", - "[INFO] [1712351065.926218]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.926812]: Instances: []\n", - "[INFO] [1712351065.927170]: Direct Instances: []\n", - "[INFO] [1712351065.927591]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351065.927926]: -------------------\n", - "[INFO] [1712351065.928249]: SOMA.CommunicationTopic \n", - "[INFO] [1712351065.928693]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712351065.929135]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.929461]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351065.929808]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.930353]: Instances: []\n", - "[INFO] [1712351065.930651]: Direct Instances: []\n", - "[INFO] [1712351065.930920]: Inverse Restrictions: []\n", - "[INFO] [1712351065.931165]: -------------------\n", - "[INFO] [1712351065.931412]: SOMA.ResourceRole \n", - "[INFO] [1712351065.931644]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351065.931902]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.932175]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712351065.932478]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.933029]: Instances: []\n", - "[INFO] [1712351065.933307]: Direct Instances: []\n", - "[INFO] [1712351065.933570]: Inverse Restrictions: []\n", - "[INFO] [1712351065.933809]: -------------------\n", - "[INFO] [1712351065.934045]: SOMA.Composing \n", - "[INFO] [1712351065.934282]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712351065.934539]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing, SOMA.Composing}\n", - "[INFO] [1712351065.934784]: Subclasses: []\n", - "[INFO] [1712351065.935081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.935586]: Instances: []\n", - "[INFO] [1712351065.935852]: Direct Instances: []\n", - "[INFO] [1712351065.936141]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712351065.936384]: -------------------\n", - "[INFO] [1712351065.936629]: SOMA.Computer_Language \n", - "[INFO] [1712351065.936878]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712351065.937138]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351065.937415]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712351065.937712]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.938221]: Instances: []\n", - "[INFO] [1712351065.938498]: Direct Instances: []\n", - "[INFO] [1712351065.938763]: Inverse Restrictions: []\n", - "[INFO] [1712351065.939007]: -------------------\n", - "[INFO] [1712351065.939245]: SOMA.FormalLanguage \n", - "[INFO] [1712351065.939487]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712351065.939744]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351065.939995]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351065.940292]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.940817]: Instances: []\n", - "[INFO] [1712351065.941086]: Direct Instances: []\n", - "[INFO] [1712351065.941396]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712351065.941641]: -------------------\n", - "[INFO] [1712351065.941879]: SOMA.Computer_Program \n", - "[INFO] [1712351065.942120]: Super classes: [owl.Thing]\n", - "[INFO] [1712351065.942368]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", - "[INFO] [1712351065.942621]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712351065.942918]: Properties: [rdf-schema.label, rdf-schema.comment, DUL.expresses, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.943416]: Instances: []\n", - "[INFO] [1712351065.943693]: Direct Instances: []\n", - "[INFO] [1712351065.944058]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712351065.944309]: -------------------\n", - "[INFO] [1712351065.944547]: SOMA.Programming_Language \n", - "[INFO] [1712351065.944805]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712351065.945073]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Programming_Language, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351065.945341]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712351065.945641]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.946131]: Instances: []\n", - "[INFO] [1712351065.946396]: Direct Instances: []\n", - "[INFO] [1712351065.946745]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712351065.947007]: -------------------\n", - "[INFO] [1712351065.947247]: SOMA.Conclusion \n", - "[INFO] [1712351065.947482]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712351065.947739]: Ancestors: {SOMA.Conclusion, DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, SOMA.CreatedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.947987]: Subclasses: []\n", - "[INFO] [1712351065.948278]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.948891]: Instances: []\n", - "[INFO] [1712351065.949167]: Direct Instances: []\n", - "[INFO] [1712351065.949484]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351065.949729]: -------------------\n", - "[INFO] [1712351065.949967]: SOMA.CreatedObject \n", - "[INFO] [1712351065.950210]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.950467]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.CreatedObject, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.950717]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712351065.951005]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.951489]: Instances: []\n", - "[INFO] [1712351065.951765]: Direct Instances: []\n", - "[INFO] [1712351065.952066]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712351065.952312]: -------------------\n", - "[INFO] [1712351065.952551]: SOMA.Knowledge \n", - "[INFO] [1712351065.952807]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712351065.953280]: Ancestors: {DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.953662]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712351065.954059]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712351065.954645]: Instances: []\n", - "[INFO] [1712351065.954998]: Direct Instances: []\n", - "[INFO] [1712351065.955512]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712351065.955865]: -------------------\n", - "[INFO] [1712351065.956200]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712351065.956535]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712351065.956875]: Ancestors: {SOMA.ConditionalSuccedence, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.Succedence, DUL.Relation}\n", - "[INFO] [1712351065.957202]: Subclasses: []\n", - "[INFO] [1712351065.957581]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.958163]: Instances: []\n", - "[INFO] [1712351065.958516]: Direct Instances: []\n", - "[INFO] [1712351065.958850]: Inverse Restrictions: []\n", - "[INFO] [1712351065.959179]: -------------------\n", - "[INFO] [1712351065.959506]: SOMA.Configuration \n", - "[INFO] [1712351065.959845]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712351065.960190]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Configuration, owl.Thing}\n", - "[INFO] [1712351065.960514]: Subclasses: []\n", - "[INFO] [1712351065.960887]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.961470]: Instances: []\n", - "[INFO] [1712351065.961826]: Direct Instances: []\n", - "[INFO] [1712351065.962369]: Inverse Restrictions: []\n", - "[INFO] [1712351065.962858]: -------------------\n", - "[INFO] [1712351065.963236]: SOMA.Connectivity \n", - "[INFO] [1712351065.963603]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712351065.964013]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing, SOMA.Connectivity}\n", - "[INFO] [1712351065.964398]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712351065.964818]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.965445]: Instances: []\n", - "[INFO] [1712351065.965823]: Direct Instances: []\n", - "[INFO] [1712351065.966215]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712351065.966550]: -------------------\n", - "[INFO] [1712351065.966883]: SOMA.ContactState \n", - "[INFO] [1712351065.967218]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712351065.967562]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, SOMA.ContactState, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.967898]: Subclasses: []\n", - "[INFO] [1712351065.968277]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.968847]: Instances: []\n", - "[INFO] [1712351065.969194]: Direct Instances: []\n", - "[INFO] [1712351065.969540]: Inverse Restrictions: []\n", - "[INFO] [1712351065.969869]: -------------------\n", - "[INFO] [1712351065.970193]: SOMA.Container \n", - "[INFO] [1712351065.970513]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712351065.970846]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, SOMA.Container, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.971186]: Subclasses: []\n", - "[INFO] [1712351065.971563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.972129]: Instances: []\n", - "[INFO] [1712351065.972473]: Direct Instances: []\n", - "[INFO] [1712351065.972893]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712351065.973248]: -------------------\n", - "[INFO] [1712351065.973581]: SOMA.Containment \n", - "[INFO] [1712351065.973917]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712351065.974247]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Containment, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351065.974581]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712351065.974971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.975555]: Instances: []\n", - "[INFO] [1712351065.975898]: Direct Instances: []\n", - "[INFO] [1712351065.976354]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712351065.976691]: -------------------\n", - "[INFO] [1712351065.977104]: SOMA.IncludedObject \n", - "[INFO] [1712351065.977427]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351065.977726]: Ancestors: {DUL.SocialObject, SOMA.IncludedObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351065.978028]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712351065.978355]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.978889]: Instances: []\n", - "[INFO] [1712351065.979160]: Direct Instances: []\n", - "[INFO] [1712351065.979455]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712351065.979720]: -------------------\n", - "[INFO] [1712351065.979989]: SOMA.ContainmentState \n", - "[INFO] [1712351065.980249]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712351065.980504]: Ancestors: {SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, SOMA.ContainmentState, DUL.Concept, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.980747]: Subclasses: []\n", - "[INFO] [1712351065.981049]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.981553]: Instances: []\n", - "[INFO] [1712351065.981826]: Direct Instances: []\n", - "[INFO] [1712351065.982083]: Inverse Restrictions: []\n", - "[INFO] [1712351065.982325]: -------------------\n", - "[INFO] [1712351065.982563]: SOMA.FunctionalControl \n", - "[INFO] [1712351065.982822]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712351065.983077]: Ancestors: {SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351065.983331]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712351065.983627]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.984138]: Instances: []\n", - "[INFO] [1712351065.984411]: Direct Instances: []\n", - "[INFO] [1712351065.984666]: Inverse Restrictions: []\n", - "[INFO] [1712351065.984918]: -------------------\n", - "[INFO] [1712351065.985156]: SOMA.ContainmentTheory \n", - "[INFO] [1712351065.985404]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712351065.985666]: Ancestors: {SOMA.ContainmentTheory, DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.985914]: Subclasses: []\n", - "[INFO] [1712351065.986204]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.986681]: Instances: []\n", - "[INFO] [1712351065.986955]: Direct Instances: []\n", - "[INFO] [1712351065.987216]: Inverse Restrictions: []\n", - "[INFO] [1712351065.987469]: -------------------\n", - "[INFO] [1712351065.987710]: SOMA.ControlTheory \n", - "[INFO] [1712351065.987940]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712351065.988188]: Ancestors: {DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.988461]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712351065.988760]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.989259]: Instances: []\n", - "[INFO] [1712351065.989562]: Direct Instances: []\n", - "[INFO] [1712351065.989828]: Inverse Restrictions: []\n", - "[INFO] [1712351065.990062]: -------------------\n", - "[INFO] [1712351065.990292]: SOMA.ContinuousJoint \n", - "[INFO] [1712351065.990523]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712351065.990772]: Ancestors: {SOMA.MovableJoint, DUL.Object, SOMA.ContinuousJoint, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.991038]: Subclasses: []\n", - "[INFO] [1712351065.991342]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.991842]: Instances: []\n", - "[INFO] [1712351065.992121]: Direct Instances: []\n", - "[INFO] [1712351065.992376]: Inverse Restrictions: []\n", - "[INFO] [1712351065.992617]: -------------------\n", - "[INFO] [1712351065.992929]: SOMA.HingeJoint \n", - "[INFO] [1712351065.993300]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712351065.993673]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351065.994059]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712351065.994470]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351065.995108]: Instances: []\n", - "[INFO] [1712351065.995414]: Direct Instances: []\n", - "[INFO] [1712351065.995695]: Inverse Restrictions: []\n", - "[INFO] [1712351065.995956]: -------------------\n", - "[INFO] [1712351065.996215]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712351065.996526]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712351065.996824]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351065.997137]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712351065.997497]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351065.998111]: Instances: []\n", - "[INFO] [1712351065.998447]: Direct Instances: []\n", - "[INFO] [1712351065.998774]: Inverse Restrictions: []\n", - "[INFO] [1712351065.999075]: -------------------\n", - "[INFO] [1712351065.999365]: SOMA.Cover \n", - "[INFO] [1712351065.999643]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712351065.999951]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, SOMA.Cover, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.000240]: Subclasses: []\n", - "[INFO] [1712351066.000567]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.001133]: Instances: []\n", - "[INFO] [1712351066.001427]: Direct Instances: []\n", - "[INFO] [1712351066.001740]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712351066.001992]: -------------------\n", - "[INFO] [1712351066.002239]: SOMA.Coverage \n", - "[INFO] [1712351066.002498]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712351066.002750]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Coverage, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.002994]: Subclasses: []\n", - "[INFO] [1712351066.003281]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.003778]: Instances: []\n", - "[INFO] [1712351066.004040]: Direct Instances: []\n", - "[INFO] [1712351066.004287]: Inverse Restrictions: []\n", - "[INFO] [1712351066.004517]: -------------------\n", - "[INFO] [1712351066.004759]: SOMA.CoveredObject \n", - "[INFO] [1712351066.005000]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712351066.005242]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.BlockedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.CoveredObject, owl.Thing}\n", - "[INFO] [1712351066.005475]: Subclasses: []\n", - "[INFO] [1712351066.005767]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.006268]: Instances: []\n", - "[INFO] [1712351066.006530]: Direct Instances: []\n", - "[INFO] [1712351066.006814]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712351066.007055]: -------------------\n", - "[INFO] [1712351066.007288]: SOMA.CoverageTheory \n", - "[INFO] [1712351066.007523]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712351066.007779]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, SOMA.CoverageTheory, DUL.Theory}\n", - "[INFO] [1712351066.008021]: Subclasses: []\n", - "[INFO] [1712351066.008299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.008777]: Instances: []\n", - "[INFO] [1712351066.009050]: Direct Instances: []\n", - "[INFO] [1712351066.009304]: Inverse Restrictions: []\n", - "[INFO] [1712351066.009540]: -------------------\n", - "[INFO] [1712351066.009772]: SOMA.CoveringTheory \n", - "[INFO] [1712351066.010011]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712351066.010270]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CoveringTheory, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.010515]: Subclasses: []\n", - "[INFO] [1712351066.010804]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351066.011282]: Instances: []\n", - "[INFO] [1712351066.011543]: Direct Instances: []\n", - "[INFO] [1712351066.011792]: Inverse Restrictions: []\n", - "[INFO] [1712351066.012034]: -------------------\n", - "[INFO] [1712351066.012271]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712351066.012502]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712351066.012737]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.013012]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712351066.013322]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351066.013812]: Instances: []\n", - "[INFO] [1712351066.014066]: Direct Instances: []\n", - "[INFO] [1712351066.014328]: Inverse Restrictions: []\n", - "[INFO] [1712351066.014563]: -------------------\n", - "[INFO] [1712351066.014797]: SOMA.CrackingTheory \n", - "[INFO] [1712351066.015033]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712351066.015277]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.CrackingTheory, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.015530]: Subclasses: []\n", - "[INFO] [1712351066.015846]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351066.016353]: Instances: []\n", - "[INFO] [1712351066.016619]: Direct Instances: []\n", - "[INFO] [1712351066.016863]: Inverse Restrictions: []\n", - "[INFO] [1712351066.017103]: -------------------\n", - "[INFO] [1712351066.017334]: SOMA.Creation \n", - "[INFO] [1712351066.017563]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712351066.017797]: Ancestors: {DUL.SocialObject, SOMA.Creation, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.018028]: Subclasses: []\n", - "[INFO] [1712351066.018313]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.018791]: Instances: []\n", - "[INFO] [1712351066.019045]: Direct Instances: []\n", - "[INFO] [1712351066.019281]: Inverse Restrictions: []\n", - "[INFO] [1712351066.019506]: -------------------\n", - "[INFO] [1712351066.019734]: SOMA.Insertion \n", - "[INFO] [1712351066.019969]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712351066.020207]: Ancestors: {SOMA.Extrinsic, SOMA.Insertion, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.020441]: Subclasses: []\n", - "[INFO] [1712351066.020722]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.021229]: Instances: []\n", - "[INFO] [1712351066.021499]: Direct Instances: []\n", - "[INFO] [1712351066.021835]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712351066.022072]: -------------------\n", - "[INFO] [1712351066.022305]: SOMA.DesignedFurniture \n", - "[INFO] [1712351066.022545]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712351066.022785]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedFurniture, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.023039]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712351066.023323]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.023820]: Instances: []\n", - "[INFO] [1712351066.024079]: Direct Instances: []\n", - "[INFO] [1712351066.024337]: Inverse Restrictions: []\n", - "[INFO] [1712351066.024561]: -------------------\n", - "[INFO] [1712351066.024785]: SOMA.Cuttability \n", - "[INFO] [1712351066.025017]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712351066.025265]: Ancestors: {SOMA.Extrinsic, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.025506]: Subclasses: []\n", - "[INFO] [1712351066.025794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.026286]: Instances: []\n", - "[INFO] [1712351066.026558]: Direct Instances: []\n", - "[INFO] [1712351066.026807]: Inverse Restrictions: []\n", - "[INFO] [1712351066.027038]: -------------------\n", - "[INFO] [1712351066.027266]: SOMA.Tool \n", - "[INFO] [1712351066.027490]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712351066.027739]: Ancestors: {SOMA.Tool, SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.027989]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712351066.028270]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.028749]: Instances: []\n", - "[INFO] [1712351066.029041]: Direct Instances: []\n", - "[INFO] [1712351066.029351]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712351066.029607]: -------------------\n", - "[INFO] [1712351066.029883]: SOMA.Cutting \n", - "[INFO] [1712351066.030118]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712351066.030359]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", - "[INFO] [1712351066.030620]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712351066.030910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.031399]: Instances: []\n", - "[INFO] [1712351066.031685]: Direct Instances: []\n", - "[INFO] [1712351066.031950]: Inverse Restrictions: []\n", - "[INFO] [1712351066.032195]: -------------------\n", - "[INFO] [1712351066.032427]: SOMA.DesignedTool \n", - "[INFO] [1712351066.032651]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712351066.032891]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.033150]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712351066.033436]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.033953]: Instances: []\n", - "[INFO] [1712351066.034222]: Direct Instances: []\n", - "[INFO] [1712351066.034475]: Inverse Restrictions: []\n", - "[INFO] [1712351066.034708]: -------------------\n", - "[INFO] [1712351066.034938]: SOMA.Shaping \n", - "[INFO] [1712351066.035172]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712351066.035428]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Shaping, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.035670]: Subclasses: []\n", - "[INFO] [1712351066.035956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.036460]: Instances: []\n", - "[INFO] [1712351066.036721]: Direct Instances: []\n", - "[INFO] [1712351066.036993]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712351066.037244]: -------------------\n", - "[INFO] [1712351066.037490]: SOMA.Database \n", - "[INFO] [1712351066.037726]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351066.037980]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, DUL.Role, owl.Thing}\n", - "[INFO] [1712351066.038230]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712351066.038512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.039018]: Instances: []\n", - "[INFO] [1712351066.039294]: Direct Instances: []\n", - "[INFO] [1712351066.039549]: Inverse Restrictions: []\n", - "[INFO] [1712351066.039783]: -------------------\n", - "[INFO] [1712351066.040017]: SOMA.SoftwareRole \n", - "[INFO] [1712351066.040256]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712351066.040509]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, owl.Thing}\n", - "[INFO] [1712351066.040764]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712351066.041057]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.041564]: Instances: []\n", - "[INFO] [1712351066.041826]: Direct Instances: []\n", - "[INFO] [1712351066.042115]: Inverse Restrictions: []\n", - "[INFO] [1712351066.042351]: -------------------\n", - "[INFO] [1712351066.042579]: SOMA.Deciding \n", - "[INFO] [1712351066.042806]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351066.043040]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding}\n", - "[INFO] [1712351066.043295]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712351066.043580]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351066.044076]: Instances: []\n", - "[INFO] [1712351066.044342]: Direct Instances: []\n", - "[INFO] [1712351066.044594]: Inverse Restrictions: []\n", - "[INFO] [1712351066.044834]: -------------------\n", - "[INFO] [1712351066.045065]: SOMA.DerivingInformation \n", - "[INFO] [1712351066.045307]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712351066.045562]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712351066.045829]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712351066.046127]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712351066.046636]: Instances: []\n", - "[INFO] [1712351066.046933]: Direct Instances: []\n", - "[INFO] [1712351066.047200]: Inverse Restrictions: []\n", - "[INFO] [1712351066.047440]: -------------------\n", - "[INFO] [1712351066.047675]: SOMA.DeductiveReasoning \n", - "[INFO] [1712351066.047906]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712351066.048145]: Ancestors: {SOMA.Reasoning, SOMA.DeductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351066.048395]: Subclasses: []\n", - "[INFO] [1712351066.048685]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.049178]: Instances: []\n", - "[INFO] [1712351066.049452]: Direct Instances: []\n", - "[INFO] [1712351066.049700]: Inverse Restrictions: []\n", - "[INFO] [1712351066.049931]: -------------------\n", - "[INFO] [1712351066.050159]: SOMA.Deformation \n", - "[INFO] [1712351066.050392]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712351066.050644]: Ancestors: {SOMA.Alteration, SOMA.Deformation, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.050886]: Subclasses: []\n", - "[INFO] [1712351066.051181]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.051674]: Instances: []\n", - "[INFO] [1712351066.051933]: Direct Instances: []\n", - "[INFO] [1712351066.052181]: Inverse Restrictions: []\n", - "[INFO] [1712351066.052411]: -------------------\n", - "[INFO] [1712351066.052636]: SOMA.ShapedObject \n", - "[INFO] [1712351066.052885]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712351066.053148]: Ancestors: {SOMA.ShapedObject, DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.053393]: Subclasses: []\n", - "[INFO] [1712351066.053682]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment]\n", - "[INFO] [1712351066.054160]: Instances: []\n", - "[INFO] [1712351066.054434]: Direct Instances: []\n", - "[INFO] [1712351066.054752]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712351066.054995]: -------------------\n", - "[INFO] [1712351066.055227]: SOMA.FluidFlow \n", - "[INFO] [1712351066.055466]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712351066.055723]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.FluidFlow, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.055969]: Subclasses: []\n", - "[INFO] [1712351066.056257]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.056735]: Instances: []\n", - "[INFO] [1712351066.057006]: Direct Instances: []\n", - "[INFO] [1712351066.057262]: Inverse Restrictions: []\n", - "[INFO] [1712351066.057499]: -------------------\n", - "[INFO] [1712351066.057730]: SOMA.Shifting \n", - "[INFO] [1712351066.057967]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712351066.058208]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.PhysicalQuality, SOMA.Shifting, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.058457]: Subclasses: []\n", - "[INFO] [1712351066.058747]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.059227]: Instances: []\n", - "[INFO] [1712351066.059495]: Direct Instances: []\n", - "[INFO] [1712351066.059808]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712351066.060048]: -------------------\n", - "[INFO] [1712351066.060280]: SOMA.DependentPlace \n", - "[INFO] [1712351066.060510]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712351066.060760]: Ancestors: {SOMA.Feature, SOMA.DependentPlace, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.061010]: Subclasses: []\n", - "[INFO] [1712351066.061295]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.061774]: Instances: []\n", - "[INFO] [1712351066.062043]: Direct Instances: []\n", - "[INFO] [1712351066.062294]: Inverse Restrictions: []\n", - "[INFO] [1712351066.062529]: -------------------\n", - "[INFO] [1712351066.062759]: SOMA.Deposit \n", - "[INFO] [1712351066.062987]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712351066.063236]: Ancestors: {SOMA.Instrument, SOMA.Deposit, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.063491]: Subclasses: []\n", - "[INFO] [1712351066.063867]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.064343]: Instances: []\n", - "[INFO] [1712351066.064594]: Direct Instances: []\n", - "[INFO] [1712351066.064890]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712351066.065126]: -------------------\n", - "[INFO] [1712351066.065355]: SOMA.DepositedObject \n", - "[INFO] [1712351066.065577]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351066.065817]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.DepositedObject}\n", - "[INFO] [1712351066.066058]: Subclasses: []\n", - "[INFO] [1712351066.066342]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.066815]: Instances: []\n", - "[INFO] [1712351066.067082]: Direct Instances: []\n", - "[INFO] [1712351066.067370]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712351066.067602]: -------------------\n", - "[INFO] [1712351066.067827]: SOMA.InformationAcquisition \n", - "[INFO] [1712351066.068049]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.068278]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351066.068543]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712351066.068844]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.069390]: Instances: []\n", - "[INFO] [1712351066.069673]: Direct Instances: []\n", - "[INFO] [1712351066.069975]: Inverse Restrictions: []\n", - "[INFO] [1712351066.070208]: -------------------\n", - "[INFO] [1712351066.070434]: SOMA.Premise \n", - "[INFO] [1712351066.070664]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712351066.070914]: Ancestors: {DUL.SocialObject, SOMA.Premise, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.071161]: Subclasses: []\n", - "[INFO] [1712351066.071445]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.071939]: Instances: []\n", - "[INFO] [1712351066.072201]: Direct Instances: []\n", - "[INFO] [1712351066.072504]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351066.072736]: -------------------\n", - "[INFO] [1712351066.072971]: SOMA.FunctionalPart \n", - "[INFO] [1712351066.073221]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712351066.073462]: Ancestors: {DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.073715]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712351066.074006]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.074540]: Instances: []\n", - "[INFO] [1712351066.074815]: Direct Instances: []\n", - "[INFO] [1712351066.075079]: Inverse Restrictions: []\n", - "[INFO] [1712351066.075310]: -------------------\n", - "[INFO] [1712351066.075539]: SOMA.Graspability \n", - "[INFO] [1712351066.075767]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712351066.076012]: Ancestors: {SOMA.Extrinsic, SOMA.Graspability, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.076259]: Subclasses: []\n", - "[INFO] [1712351066.076543]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.077018]: Instances: []\n", - "[INFO] [1712351066.077271]: Direct Instances: []\n", - "[INFO] [1712351066.077552]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712351066.077787]: -------------------\n", - "[INFO] [1712351066.078019]: SOMA.Destination \n", - "[INFO] [1712351066.078246]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712351066.078504]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, SOMA.Destination, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.078752]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712351066.079039]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.079518]: Instances: []\n", - "[INFO] [1712351066.079831]: Direct Instances: []\n", - "[INFO] [1712351066.080174]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712351066.080425]: -------------------\n", - "[INFO] [1712351066.080663]: SOMA.Location \n", - "[INFO] [1712351066.080904]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712351066.081149]: Ancestors: {SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.081408]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712351066.081700]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.082196]: Instances: []\n", - "[INFO] [1712351066.082443]: Direct Instances: []\n", - "[INFO] [1712351066.082693]: Inverse Restrictions: []\n", - "[INFO] [1712351066.082933]: -------------------\n", - "[INFO] [1712351066.083166]: SOMA.DestroyedObject \n", - "[INFO] [1712351066.083396]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351066.083633]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DestroyedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.083884]: Subclasses: []\n", - "[INFO] [1712351066.084171]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.084650]: Instances: []\n", - "[INFO] [1712351066.085119]: Direct Instances: []\n", - "[INFO] [1712351066.085515]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712351066.085778]: -------------------\n", - "[INFO] [1712351066.086018]: SOMA.Destruction \n", - "[INFO] [1712351066.086261]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712351066.086509]: Ancestors: {DUL.SocialObject, SOMA.Destruction, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.086770]: Subclasses: []\n", - "[INFO] [1712351066.087090]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.087577]: Instances: []\n", - "[INFO] [1712351066.087861]: Direct Instances: []\n", - "[INFO] [1712351066.088116]: Inverse Restrictions: []\n", - "[INFO] [1712351066.088351]: -------------------\n", - "[INFO] [1712351066.088583]: SOMA.DetectedObject \n", - "[INFO] [1712351066.088824]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351066.089064]: Ancestors: {SOMA.DetectedObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.089316]: Subclasses: []\n", - "[INFO] [1712351066.089607]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.090083]: Instances: []\n", - "[INFO] [1712351066.090340]: Direct Instances: []\n", - "[INFO] [1712351066.090600]: Inverse Restrictions: []\n", - "[INFO] [1712351066.090836]: -------------------\n", - "[INFO] [1712351066.091070]: SOMA.DeviceState \n", - "[INFO] [1712351066.091305]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351066.091539]: Ancestors: {SOMA.DeviceState, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351066.091789]: Subclasses: []\n", - "[INFO] [1712351066.092079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.092552]: Instances: []\n", - "[INFO] [1712351066.092802]: Direct Instances: []\n", - "[INFO] [1712351066.093056]: Inverse Restrictions: []\n", - "[INFO] [1712351066.093298]: -------------------\n", - "[INFO] [1712351066.093527]: SOMA.DeviceStateRange \n", - "[INFO] [1712351066.093754]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351066.093987]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", - "[INFO] [1712351066.094240]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712351066.094543]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.095038]: Instances: []\n", - "[INFO] [1712351066.095485]: Direct Instances: []\n", - "[INFO] [1712351066.095816]: Inverse Restrictions: []\n", - "[INFO] [1712351066.096093]: -------------------\n", - "[INFO] [1712351066.096380]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712351066.096648]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712351066.096904]: Ancestors: {SOMA.DeviceTurnedOff, DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", - "[INFO] [1712351066.097159]: Subclasses: []\n", - "[INFO] [1712351066.097478]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.097973]: Instances: []\n", - "[INFO] [1712351066.098237]: Direct Instances: []\n", - "[INFO] [1712351066.098538]: Inverse Restrictions: []\n", - "[INFO] [1712351066.098788]: -------------------\n", - "[INFO] [1712351066.099033]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712351066.099276]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712351066.099515]: Ancestors: {SOMA.DeviceTurnedOn, DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceStateRange, owl.Thing}\n", - "[INFO] [1712351066.099760]: Subclasses: []\n", - "[INFO] [1712351066.100053]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.100552]: Instances: []\n", - "[INFO] [1712351066.100830]: Direct Instances: []\n", - "[INFO] [1712351066.101127]: Inverse Restrictions: []\n", - "[INFO] [1712351066.101363]: -------------------\n", - "[INFO] [1712351066.101600]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712351066.101833]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712351066.102089]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351066.102350]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712351066.102641]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.103126]: Instances: []\n", - "[INFO] [1712351066.103408]: Direct Instances: []\n", - "[INFO] [1712351066.103673]: Inverse Restrictions: []\n", - "[INFO] [1712351066.103908]: -------------------\n", - "[INFO] [1712351066.104139]: SOMA.Dicing \n", - "[INFO] [1712351066.104370]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712351066.104610]: Ancestors: {SOMA.ModifyingPhysicalObject, SOMA.Dicing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", - "[INFO] [1712351066.104870]: Subclasses: []\n", - "[INFO] [1712351066.105171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.105660]: Instances: []\n", - "[INFO] [1712351066.105922]: Direct Instances: []\n", - "[INFO] [1712351066.106181]: Inverse Restrictions: []\n", - "[INFO] [1712351066.106420]: -------------------\n", - "[INFO] [1712351066.106652]: SOMA.DirectedMotion \n", - "[INFO] [1712351066.106879]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712351066.107235]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.107553]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712351066.107878]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.108405]: Instances: []\n", - "[INFO] [1712351066.108692]: Direct Instances: []\n", - "[INFO] [1712351066.108970]: Inverse Restrictions: []\n", - "[INFO] [1712351066.109209]: -------------------\n", - "[INFO] [1712351066.109444]: SOMA.UndirectedMotion \n", - "[INFO] [1712351066.109675]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712351066.109920]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.UndirectedMotion, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.110174]: Subclasses: []\n", - "[INFO] [1712351066.110475]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.110962]: Instances: []\n", - "[INFO] [1712351066.111227]: Direct Instances: []\n", - "[INFO] [1712351066.111484]: Inverse Restrictions: []\n", - "[INFO] [1712351066.111721]: -------------------\n", - "[INFO] [1712351066.111960]: SOMA.Dirty \n", - "[INFO] [1712351066.112192]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712351066.112427]: Ancestors: {SOMA.CleanlinessRegion, SOMA.Dirty, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351066.112670]: Subclasses: []\n", - "[INFO] [1712351066.113004]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.113510]: Instances: []\n", - "[INFO] [1712351066.113771]: Direct Instances: []\n", - "[INFO] [1712351066.114018]: Inverse Restrictions: []\n", - "[INFO] [1712351066.114253]: -------------------\n", - "[INFO] [1712351066.114494]: SOMA.Discourse \n", - "[INFO] [1712351066.114733]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712351066.114988]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, SOMA.Discourse, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.115241]: Subclasses: []\n", - "[INFO] [1712351066.115531]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.116038]: Instances: []\n", - "[INFO] [1712351066.116308]: Direct Instances: []\n", - "[INFO] [1712351066.116557]: Inverse Restrictions: []\n", - "[INFO] [1712351066.116792]: -------------------\n", - "[INFO] [1712351066.117031]: SOMA.Distancing \n", - "[INFO] [1712351066.117275]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712351066.117521]: Ancestors: {DUL.SocialObject, SOMA.Distancing, SOMA.Navigating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.117762]: Subclasses: []\n", - "[INFO] [1712351066.118046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.118545]: Instances: []\n", - "[INFO] [1712351066.118808]: Direct Instances: []\n", - "[INFO] [1712351066.119056]: Inverse Restrictions: []\n", - "[INFO] [1712351066.119289]: -------------------\n", - "[INFO] [1712351066.119516]: SOMA.Dreaming \n", - "[INFO] [1712351066.119743]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351066.119989]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", - "[INFO] [1712351066.120233]: Subclasses: []\n", - "[INFO] [1712351066.120518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.120997]: Instances: []\n", - "[INFO] [1712351066.121274]: Direct Instances: []\n", - "[INFO] [1712351066.121531]: Inverse Restrictions: []\n", - "[INFO] [1712351066.121763]: -------------------\n", - "[INFO] [1712351066.121997]: SOMA.Driving \n", - "[INFO] [1712351066.122238]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351066.122488]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, SOMA.BodyMovement, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing, SOMA.Driving}\n", - "[INFO] [1712351066.122729]: Subclasses: []\n", - "[INFO] [1712351066.123026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.123526]: Instances: []\n", - "[INFO] [1712351066.123792]: Direct Instances: []\n", - "[INFO] [1712351066.124039]: Inverse Restrictions: []\n", - "[INFO] [1712351066.124269]: -------------------\n", - "[INFO] [1712351066.124497]: SOMA.Flying \n", - "[INFO] [1712351066.124722]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351066.124976]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.Flying, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.125226]: Subclasses: []\n", - "[INFO] [1712351066.125521]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.126004]: Instances: []\n", - "[INFO] [1712351066.126272]: Direct Instances: []\n", - "[INFO] [1712351066.126540]: Inverse Restrictions: []\n", - "[INFO] [1712351066.126773]: -------------------\n", - "[INFO] [1712351066.127003]: SOMA.Swimming \n", - "[INFO] [1712351066.127232]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351066.127501]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, SOMA.Swimming, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.127751]: Subclasses: []\n", - "[INFO] [1712351066.128047]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.128528]: Instances: []\n", - "[INFO] [1712351066.128808]: Direct Instances: []\n", - "[INFO] [1712351066.129076]: Inverse Restrictions: []\n", - "[INFO] [1712351066.129309]: -------------------\n", - "[INFO] [1712351066.129542]: SOMA.Walking \n", - "[INFO] [1712351066.129789]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351066.130168]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, SOMA.Walking, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.130471]: Subclasses: []\n", - "[INFO] [1712351066.130787]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.131283]: Instances: []\n", - "[INFO] [1712351066.131558]: Direct Instances: []\n", - "[INFO] [1712351066.131826]: Inverse Restrictions: []\n", - "[INFO] [1712351066.132062]: -------------------\n", - "[INFO] [1712351066.132300]: SOMA.Dropping \n", - "[INFO] [1712351066.132539]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351066.132787]: Ancestors: {DUL.SocialObject, SOMA.Dropping, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.133052]: Subclasses: []\n", - "[INFO] [1712351066.133433]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.133925]: Instances: []\n", - "[INFO] [1712351066.134190]: Direct Instances: []\n", - "[INFO] [1712351066.134460]: Inverse Restrictions: []\n", - "[INFO] [1712351066.134715]: -------------------\n", - "[INFO] [1712351066.134951]: SOMA.Placing \n", - "[INFO] [1712351066.135181]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351066.135429]: Ancestors: {SOMA.Placing, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.135680]: Subclasses: []\n", - "[INFO] [1712351066.135972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.136443]: Instances: []\n", - "[INFO] [1712351066.136714]: Direct Instances: []\n", - "[INFO] [1712351066.136975]: Inverse Restrictions: []\n", - "[INFO] [1712351066.137211]: -------------------\n", - "[INFO] [1712351066.137445]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712351066.137689]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712351066.137950]: Ancestors: {SOMA.ESTSchemaTheory, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.138194]: Subclasses: []\n", - "[INFO] [1712351066.138484]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351066.138974]: Instances: []\n", - "[INFO] [1712351066.139235]: Direct Instances: []\n", - "[INFO] [1712351066.139483]: Inverse Restrictions: []\n", - "[INFO] [1712351066.139723]: -------------------\n", - "[INFO] [1712351066.139952]: SOMA.ExistingObjectRole \n", - "[INFO] [1712351066.140204]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351066.140457]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.ExistingObjectRole, owl.Thing}\n", - "[INFO] [1712351066.140699]: Subclasses: []\n", - "[INFO] [1712351066.140999]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.141515]: Instances: []\n", - "[INFO] [1712351066.141784]: Direct Instances: []\n", - "[INFO] [1712351066.142077]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712351066.142321]: -------------------\n", - "[INFO] [1712351066.142552]: SOMA.Effort \n", - "[INFO] [1712351066.142785]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712351066.143043]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Effort, owl.Thing}\n", - "[INFO] [1712351066.143288]: Subclasses: []\n", - "[INFO] [1712351066.143574]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.144068]: Instances: []\n", - "[INFO] [1712351066.144333]: Direct Instances: []\n", - "[INFO] [1712351066.144586]: Inverse Restrictions: []\n", - "[INFO] [1712351066.144826]: -------------------\n", - "[INFO] [1712351066.145061]: SOMA.EnclosedObject \n", - "[INFO] [1712351066.145298]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712351066.145560]: Ancestors: {DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.145820]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712351066.146109]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.146646]: Instances: []\n", - "[INFO] [1712351066.146941]: Direct Instances: []\n", - "[INFO] [1712351066.147244]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712351066.147494]: -------------------\n", - "[INFO] [1712351066.147734]: SOMA.Enclosing \n", - "[INFO] [1712351066.147977]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712351066.148235]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.148513]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712351066.148821]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.149317]: Instances: []\n", - "[INFO] [1712351066.149578]: Direct Instances: []\n", - "[INFO] [1712351066.149830]: Inverse Restrictions: []\n", - "[INFO] [1712351066.150082]: -------------------\n", - "[INFO] [1712351066.150324]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712351066.150562]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351066.150809]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.151058]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712351066.151361]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.151857]: Instances: []\n", - "[INFO] [1712351066.152111]: Direct Instances: []\n", - "[INFO] [1712351066.152356]: Inverse Restrictions: []\n", - "[INFO] [1712351066.152587]: -------------------\n", - "[INFO] [1712351066.152825]: SOMA.Manipulating \n", - "[INFO] [1712351066.153077]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712351066.153329]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.153593]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712351066.153881]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.154396]: Instances: []\n", - "[INFO] [1712351066.154655]: Direct Instances: []\n", - "[INFO] [1712351066.154909]: Inverse Restrictions: []\n", - "[INFO] [1712351066.155145]: -------------------\n", - "[INFO] [1712351066.155389]: SOMA.Episode \n", - "[INFO] [1712351066.155627]: Super classes: [DUL.Situation]\n", - "[INFO] [1712351066.155865]: Ancestors: {owl.Thing, SOMA.Episode, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712351066.156107]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712351066.156395]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.156897]: Instances: []\n", - "[INFO] [1712351066.157175]: Direct Instances: []\n", - "[INFO] [1712351066.157425]: Inverse Restrictions: []\n", - "[INFO] [1712351066.157661]: -------------------\n", - "[INFO] [1712351066.157909]: SOMA.ExcludedObject \n", - "[INFO] [1712351066.158149]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351066.158395]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, SOMA.ExcludedObject, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.158640]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712351066.158936]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.159428]: Instances: []\n", - "[INFO] [1712351066.159682]: Direct Instances: []\n", - "[INFO] [1712351066.159981]: Inverse Restrictions: []\n", - "[INFO] [1712351066.160234]: -------------------\n", - "[INFO] [1712351066.160476]: SOMA.ExecutableFile \n", - "[INFO] [1712351066.160707]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.161139]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", - "[INFO] [1712351066.161467]: Subclasses: []\n", - "[INFO] [1712351066.161804]: Properties: [rdf-schema.label, DUL.realizes, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.162309]: Instances: []\n", - "[INFO] [1712351066.162573]: Direct Instances: []\n", - "[INFO] [1712351066.162879]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712351066.163148]: -------------------\n", - "[INFO] [1712351066.163399]: SOMA.Executable_Code \n", - "[INFO] [1712351066.163828]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712351066.164125]: Ancestors: {SOMA.Executable_Code, SOMA.Computer_Program, owl.Thing}\n", - "[INFO] [1712351066.164372]: Subclasses: []\n", - "[INFO] [1712351066.164693]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.165206]: Instances: []\n", - "[INFO] [1712351066.165478]: Direct Instances: []\n", - "[INFO] [1712351066.165836]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712351066.166094]: -------------------\n", - "[INFO] [1712351066.166332]: SOMA.ExecutableFormat \n", - "[INFO] [1712351066.166568]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712351066.166809]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.File_format, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, SOMA.ExecutableFormat, owl.Thing}\n", - "[INFO] [1712351066.167043]: Subclasses: []\n", - "[INFO] [1712351066.167336]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.167828]: Instances: []\n", - "[INFO] [1712351066.168094]: Direct Instances: []\n", - "[INFO] [1712351066.168397]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712351066.168642]: -------------------\n", - "[INFO] [1712351066.168886]: SOMA.SchematicTheory \n", - "[INFO] [1712351066.169118]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712351066.169354]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.169606]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712351066.169905]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.170413]: Instances: []\n", - "[INFO] [1712351066.170673]: Direct Instances: []\n", - "[INFO] [1712351066.170924]: Inverse Restrictions: []\n", - "[INFO] [1712351066.171164]: -------------------\n", - "[INFO] [1712351066.171396]: SOMA.ExecutableSoftware \n", - "[INFO] [1712351066.171624]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.171852]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", - "[INFO] [1712351066.172084]: Subclasses: []\n", - "[INFO] [1712351066.172371]: Properties: [rdf-schema.label, DUL.hasMember, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.172873]: Instances: []\n", - "[INFO] [1712351066.173152]: Direct Instances: []\n", - "[INFO] [1712351066.173404]: Inverse Restrictions: []\n", - "[INFO] [1712351066.173634]: -------------------\n", - "[INFO] [1712351066.173859]: SOMA.Software \n", - "[INFO] [1712351066.174109]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712351066.174353]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Software, owl.Thing}\n", - "[INFO] [1712351066.174602]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712351066.174889]: Properties: [DUL.describes, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351066.175391]: Instances: []\n", - "[INFO] [1712351066.175657]: Direct Instances: []\n", - "[INFO] [1712351066.176035]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351066.176276]: -------------------\n", - "[INFO] [1712351066.176509]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712351066.176737]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712351066.176990]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.177247]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712351066.177535]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.178017]: Instances: []\n", - "[INFO] [1712351066.178284]: Direct Instances: []\n", - "[INFO] [1712351066.178539]: Inverse Restrictions: []\n", - "[INFO] [1712351066.178766]: -------------------\n", - "[INFO] [1712351066.179015]: SOMA.ExperiencerRole \n", - "[INFO] [1712351066.179247]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712351066.179498]: Ancestors: {DUL.SocialObject, SOMA.EventAdjacentRole, SOMA.PerformerRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.ExperiencerRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351066.179764]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712351066.180066]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.180559]: Instances: []\n", - "[INFO] [1712351066.180835]: Direct Instances: []\n", - "[INFO] [1712351066.181097]: Inverse Restrictions: []\n", - "[INFO] [1712351066.181340]: -------------------\n", - "[INFO] [1712351066.181569]: SOMA.ExtractedObject \n", - "[INFO] [1712351066.181799]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351066.182045]: Ancestors: {SOMA.ExtractedObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.182292]: Subclasses: []\n", - "[INFO] [1712351066.182573]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.183054]: Instances: []\n", - "[INFO] [1712351066.183315]: Direct Instances: []\n", - "[INFO] [1712351066.183564]: Inverse Restrictions: []\n", - "[INFO] [1712351066.183798]: -------------------\n", - "[INFO] [1712351066.184024]: SOMA.PhysicalQuality \n", - "[INFO] [1712351066.184258]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712351066.184511]: Ancestors: {DUL.Entity, owl.Thing, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712351066.184762]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712351066.185063]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf]\n", - "[INFO] [1712351066.185658]: Instances: []\n", - "[INFO] [1712351066.185947]: Direct Instances: []\n", - "[INFO] [1712351066.186209]: Inverse Restrictions: []\n", - "[INFO] [1712351066.186450]: -------------------\n", - "[INFO] [1712351066.186687]: SOMA.FailedAttempt \n", - "[INFO] [1712351066.186932]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712351066.187184]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.FailedAttempt, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351066.187424]: Subclasses: []\n", - "[INFO] [1712351066.187703]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.188184]: Instances: []\n", - "[INFO] [1712351066.188451]: Direct Instances: []\n", - "[INFO] [1712351066.188698]: Inverse Restrictions: []\n", - "[INFO] [1712351066.188927]: -------------------\n", - "[INFO] [1712351066.189155]: SOMA.FaultySoftware \n", - "[INFO] [1712351066.189395]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712351066.189641]: Ancestors: {DUL.Description, SOMA.FaultySoftware, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.189876]: Subclasses: []\n", - "[INFO] [1712351066.190160]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.190672]: Instances: []\n", - "[INFO] [1712351066.190999]: Direct Instances: []\n", - "[INFO] [1712351066.191274]: Inverse Restrictions: []\n", - "[INFO] [1712351066.191529]: -------------------\n", - "[INFO] [1712351066.191818]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712351066.192119]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712351066.192441]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.192773]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712351066.193121]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.193650]: Instances: []\n", - "[INFO] [1712351066.193938]: Direct Instances: []\n", - "[INFO] [1712351066.194204]: Inverse Restrictions: []\n", - "[INFO] [1712351066.194443]: -------------------\n", - "[INFO] [1712351066.194682]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712351066.194930]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712351066.195197]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PhysicalAcquiring, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.195464]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712351066.195761]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.196269]: Instances: []\n", - "[INFO] [1712351066.196552]: Direct Instances: []\n", - "[INFO] [1712351066.196818]: Inverse Restrictions: []\n", - "[INFO] [1712351066.197063]: -------------------\n", - "[INFO] [1712351066.197297]: SOMA.Finger \n", - "[INFO] [1712351066.197535]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712351066.197796]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.Finger, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712351066.198041]: Subclasses: []\n", - "[INFO] [1712351066.198346]: Properties: [DUL.isPartOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.198830]: Instances: []\n", - "[INFO] [1712351066.199110]: Direct Instances: []\n", - "[INFO] [1712351066.199363]: Inverse Restrictions: []\n", - "[INFO] [1712351066.199593]: -------------------\n", - "[INFO] [1712351066.199818]: SOMA.Hand \n", - "[INFO] [1712351066.200045]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712351066.200294]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, SOMA.Hand, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.200539]: Subclasses: []\n", - "[INFO] [1712351066.200834]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.201320]: Instances: []\n", - "[INFO] [1712351066.201603]: Direct Instances: []\n", - "[INFO] [1712351066.201914]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712351066.202155]: -------------------\n", - "[INFO] [1712351066.202386]: SOMA.FixedJoint \n", - "[INFO] [1712351066.202624]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712351066.202877]: Ancestors: {SOMA.FixedJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.203124]: Subclasses: []\n", - "[INFO] [1712351066.203429]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.203909]: Instances: []\n", - "[INFO] [1712351066.204188]: Direct Instances: []\n", - "[INFO] [1712351066.204479]: Inverse Restrictions: []\n", - "[INFO] [1712351066.204715]: -------------------\n", - "[INFO] [1712351066.205046]: SOMA.MovableJoint \n", - "[INFO] [1712351066.205351]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712351066.205630]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.205920]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712351066.206244]: Properties: [rdf-schema.label, SOMA.hasJointState, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351066.206755]: Instances: []\n", - "[INFO] [1712351066.207026]: Direct Instances: []\n", - "[INFO] [1712351066.207326]: Inverse Restrictions: []\n", - "[INFO] [1712351066.207581]: -------------------\n", - "[INFO] [1712351066.207832]: SOMA.Flipping \n", - "[INFO] [1712351066.208076]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712351066.208326]: Ancestors: {SOMA.Flipping, DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.208567]: Subclasses: []\n", - "[INFO] [1712351066.208863]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.209367]: Instances: []\n", - "[INFO] [1712351066.209633]: Direct Instances: []\n", - "[INFO] [1712351066.209882]: Inverse Restrictions: []\n", - "[INFO] [1712351066.210119]: -------------------\n", - "[INFO] [1712351066.210361]: SOMA.FloatingJoint \n", - "[INFO] [1712351066.210605]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712351066.210855]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, SOMA.FloatingJoint, DUL.PhysicalObject}\n", - "[INFO] [1712351066.211097]: Subclasses: []\n", - "[INFO] [1712351066.211383]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.211888]: Instances: []\n", - "[INFO] [1712351066.212155]: Direct Instances: []\n", - "[INFO] [1712351066.212406]: Inverse Restrictions: []\n", - "[INFO] [1712351066.212641]: -------------------\n", - "[INFO] [1712351066.212888]: SOMA.Fluid \n", - "[INFO] [1712351066.213168]: Super classes: [DUL.Substance]\n", - "[INFO] [1712351066.213444]: Ancestors: {DUL.Substance, DUL.Object, DUL.Entity, SOMA.Fluid, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.213688]: Subclasses: []\n", - "[INFO] [1712351066.213975]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.214469]: Instances: []\n", - "[INFO] [1712351066.214731]: Direct Instances: []\n", - "[INFO] [1712351066.214979]: Inverse Restrictions: []\n", - "[INFO] [1712351066.215221]: -------------------\n", - "[INFO] [1712351066.215454]: SOMA.MovedObject \n", - "[INFO] [1712351066.215703]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712351066.215970]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AlteredObject, DUL.Entity, SOMA.Patient, SOMA.MovedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.216220]: Subclasses: []\n", - "[INFO] [1712351066.216518]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment]\n", - "[INFO] [1712351066.217002]: Instances: []\n", - "[INFO] [1712351066.217272]: Direct Instances: []\n", - "[INFO] [1712351066.217679]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712351066.217925]: -------------------\n", - "[INFO] [1712351066.218162]: SOMA.Focusing \n", - "[INFO] [1712351066.218393]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712351066.218654]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.AttentionShift, SOMA.Focusing, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.218900]: Subclasses: []\n", - "[INFO] [1712351066.219184]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.219661]: Instances: []\n", - "[INFO] [1712351066.219931]: Direct Instances: []\n", - "[INFO] [1712351066.220183]: Inverse Restrictions: []\n", - "[INFO] [1712351066.220420]: -------------------\n", - "[INFO] [1712351066.220651]: SOMA.Foolishness \n", - "[INFO] [1712351066.220886]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712351066.221132]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, SOMA.Foolishness, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351066.221384]: Subclasses: []\n", - "[INFO] [1712351066.221671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.222146]: Instances: []\n", - "[INFO] [1712351066.222395]: Direct Instances: []\n", - "[INFO] [1712351066.222649]: Inverse Restrictions: []\n", - "[INFO] [1712351066.222887]: -------------------\n", - "[INFO] [1712351066.223119]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712351066.223351]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712351066.223593]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, SOMA.ForgettingIncorrectInformation, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.223841]: Subclasses: []\n", - "[INFO] [1712351066.224129]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.224606]: Instances: []\n", - "[INFO] [1712351066.224873]: Direct Instances: []\n", - "[INFO] [1712351066.225123]: Inverse Restrictions: []\n", - "[INFO] [1712351066.225358]: -------------------\n", - "[INFO] [1712351066.225593]: SOMA.InformationDismissal \n", - "[INFO] [1712351066.225846]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712351066.226108]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.226365]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712351066.226660]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712351066.227162]: Instances: []\n", - "[INFO] [1712351066.227427]: Direct Instances: []\n", - "[INFO] [1712351066.227682]: Inverse Restrictions: []\n", - "[INFO] [1712351066.227918]: -------------------\n", - "[INFO] [1712351066.228155]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712351066.228402]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712351066.228653]: Ancestors: {SOMA.InformationDismissal, DUL.SocialObject, SOMA.ForgettingIrrelevantInformation, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.228904]: Subclasses: []\n", - "[INFO] [1712351066.229213]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.229704]: Instances: []\n", - "[INFO] [1712351066.229975]: Direct Instances: []\n", - "[INFO] [1712351066.230224]: Inverse Restrictions: []\n", - "[INFO] [1712351066.230453]: -------------------\n", - "[INFO] [1712351066.230685]: SOMA.Language \n", - "[INFO] [1712351066.230928]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712351066.231169]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.231421]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712351066.231717]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.232237]: Instances: []\n", - "[INFO] [1712351066.232500]: Direct Instances: []\n", - "[INFO] [1712351066.232858]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712351066.233282]: -------------------\n", - "[INFO] [1712351066.233590]: SOMA.Item \n", - "[INFO] [1712351066.233859]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351066.234132]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.Item, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.234407]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712351066.234707]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.235230]: Instances: []\n", - "[INFO] [1712351066.235505]: Direct Instances: []\n", - "[INFO] [1712351066.235855]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712351066.236094]: -------------------\n", - "[INFO] [1712351066.236324]: SOMA.FunctionalDesign \n", - "[INFO] [1712351066.236554]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712351066.236810]: Ancestors: {SOMA.FunctionalDesign, DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.237071]: Subclasses: []\n", - "[INFO] [1712351066.237372]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.237854]: Instances: []\n", - "[INFO] [1712351066.238121]: Direct Instances: []\n", - "[INFO] [1712351066.238378]: Inverse Restrictions: []\n", - "[INFO] [1712351066.238610]: -------------------\n", - "[INFO] [1712351066.238838]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712351066.239062]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712351066.239296]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.FunctionalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.239589]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712351066.239889]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.240389]: Instances: []\n", - "[INFO] [1712351066.240677]: Direct Instances: []\n", - "[INFO] [1712351066.240945]: Inverse Restrictions: []\n", - "[INFO] [1712351066.241187]: -------------------\n", - "[INFO] [1712351066.241416]: SOMA.LocatumRole \n", - "[INFO] [1712351066.241648]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351066.241893]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.LocatumRole, SOMA.SpatialRelationRole, owl.Thing}\n", - "[INFO] [1712351066.242141]: Subclasses: []\n", - "[INFO] [1712351066.242434]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.242911]: Instances: []\n", - "[INFO] [1712351066.243176]: Direct Instances: []\n", - "[INFO] [1712351066.243513]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712351066.243759]: -------------------\n", - "[INFO] [1712351066.243989]: SOMA.RelatumRole \n", - "[INFO] [1712351066.244219]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351066.244453]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.RelatumRole, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.SpatialRelationRole, owl.Thing}\n", - "[INFO] [1712351066.244707]: Subclasses: []\n", - "[INFO] [1712351066.245013]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.245502]: Instances: []\n", - "[INFO] [1712351066.245760]: Direct Instances: []\n", - "[INFO] [1712351066.246083]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712351066.246352]: -------------------\n", - "[INFO] [1712351066.246633]: SOMA.GetTaskParameter \n", - "[INFO] [1712351066.246877]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712351066.247116]: Ancestors: {SOMA.Planning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing, SOMA.GetTaskParameter}\n", - "[INFO] [1712351066.247368]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712351066.247673]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.248360]: Instances: []\n", - "[INFO] [1712351066.248745]: Direct Instances: []\n", - "[INFO] [1712351066.249080]: Inverse Restrictions: []\n", - "[INFO] [1712351066.249335]: -------------------\n", - "[INFO] [1712351066.249576]: SOMA.Planning \n", - "[INFO] [1712351066.249820]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712351066.250056]: Ancestors: {SOMA.Planning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351066.250309]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712351066.250607]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.251097]: Instances: []\n", - "[INFO] [1712351066.251360]: Direct Instances: []\n", - "[INFO] [1712351066.251614]: Inverse Restrictions: []\n", - "[INFO] [1712351066.251857]: -------------------\n", - "[INFO] [1712351066.252091]: SOMA.GraphDatabase \n", - "[INFO] [1712351066.252323]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712351066.252566]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, SOMA.GraphDatabase, DUL.Role, owl.Thing}\n", - "[INFO] [1712351066.252834]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712351066.253145]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.253637]: Instances: []\n", - "[INFO] [1712351066.253894]: Direct Instances: []\n", - "[INFO] [1712351066.254144]: Inverse Restrictions: []\n", - "[INFO] [1712351066.254384]: -------------------\n", - "[INFO] [1712351066.254616]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712351066.254843]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712351066.255081]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.GraphQueryLanguage, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351066.255333]: Subclasses: []\n", - "[INFO] [1712351066.255630]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.256116]: Instances: []\n", - "[INFO] [1712351066.256392]: Direct Instances: []\n", - "[INFO] [1712351066.256652]: Inverse Restrictions: []\n", - "[INFO] [1712351066.256896]: -------------------\n", - "[INFO] [1712351066.257137]: SOMA.QueryLanguage \n", - "[INFO] [1712351066.257366]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351066.257606]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351066.257867]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712351066.258161]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.258649]: Instances: []\n", - "[INFO] [1712351066.258921]: Direct Instances: []\n", - "[INFO] [1712351066.259187]: Inverse Restrictions: []\n", - "[INFO] [1712351066.259422]: -------------------\n", - "[INFO] [1712351066.259650]: SOMA.GraspTransfer \n", - "[INFO] [1712351066.259878]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712351066.260122]: Ancestors: {DUL.SocialObject, SOMA.GraspTransfer, SOMA.Manipulating, SOMA.Grasping, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.260374]: Subclasses: []\n", - "[INFO] [1712351066.260666]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.261307]: Instances: []\n", - "[INFO] [1712351066.261747]: Direct Instances: []\n", - "[INFO] [1712351066.262156]: Inverse Restrictions: []\n", - "[INFO] [1712351066.262504]: -------------------\n", - "[INFO] [1712351066.262871]: SOMA.Grasping \n", - "[INFO] [1712351066.263184]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351066.263454]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, SOMA.Grasping, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.263713]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712351066.264017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.264506]: Instances: []\n", - "[INFO] [1712351066.264790]: Direct Instances: []\n", - "[INFO] [1712351066.265062]: Inverse Restrictions: []\n", - "[INFO] [1712351066.265303]: -------------------\n", - "[INFO] [1712351066.265541]: SOMA.Releasing \n", - "[INFO] [1712351066.265769]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351066.266011]: Ancestors: {SOMA.Releasing, DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.266265]: Subclasses: []\n", - "[INFO] [1712351066.266556]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.267033]: Instances: []\n", - "[INFO] [1712351066.267281]: Direct Instances: []\n", - "[INFO] [1712351066.267528]: Inverse Restrictions: []\n", - "[INFO] [1712351066.267766]: -------------------\n", - "[INFO] [1712351066.267996]: SOMA.GraspingMotion \n", - "[INFO] [1712351066.268223]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712351066.268461]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", - "[INFO] [1712351066.268708]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712351066.269032]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.269547]: Instances: []\n", - "[INFO] [1712351066.269810]: Direct Instances: []\n", - "[INFO] [1712351066.270101]: Inverse Restrictions: []\n", - "[INFO] [1712351066.270334]: -------------------\n", - "[INFO] [1712351066.270577]: SOMA.IntermediateGrasp \n", - "[INFO] [1712351066.270812]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712351066.271057]: Ancestors: {SOMA.IntermediateGrasp, SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", - "[INFO] [1712351066.271297]: Subclasses: []\n", - "[INFO] [1712351066.271592]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.272089]: Instances: []\n", - "[INFO] [1712351066.272351]: Direct Instances: []\n", - "[INFO] [1712351066.272637]: Inverse Restrictions: []\n", - "[INFO] [1712351066.272884]: -------------------\n", - "[INFO] [1712351066.273130]: SOMA.PowerGrasp \n", - "[INFO] [1712351066.273366]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712351066.273611]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PowerGrasp, SOMA.GraspingMotion}\n", - "[INFO] [1712351066.273849]: Subclasses: []\n", - "[INFO] [1712351066.274146]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.274641]: Instances: []\n", - "[INFO] [1712351066.274917]: Direct Instances: []\n", - "[INFO] [1712351066.275218]: Inverse Restrictions: []\n", - "[INFO] [1712351066.275460]: -------------------\n", - "[INFO] [1712351066.275693]: SOMA.PrecisionGrasp \n", - "[INFO] [1712351066.275935]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712351066.276182]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.PrecisionGrasp, SOMA.Motion, DUL.EventType, SOMA.GraspingMotion}\n", - "[INFO] [1712351066.276424]: Subclasses: []\n", - "[INFO] [1712351066.276710]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.277202]: Instances: []\n", - "[INFO] [1712351066.277472]: Direct Instances: []\n", - "[INFO] [1712351066.277774]: Inverse Restrictions: []\n", - "[INFO] [1712351066.278007]: -------------------\n", - "[INFO] [1712351066.278249]: SOMA.PrehensileMotion \n", - "[INFO] [1712351066.278491]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712351066.278759]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.279016]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712351066.279318]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.279837]: Instances: []\n", - "[INFO] [1712351066.280103]: Direct Instances: []\n", - "[INFO] [1712351066.280355]: Inverse Restrictions: []\n", - "[INFO] [1712351066.280595]: -------------------\n", - "[INFO] [1712351066.280829]: SOMA.ReleasingMotion \n", - "[INFO] [1712351066.281078]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712351066.281332]: Ancestors: {SOMA.PrehensileMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, SOMA.ReleasingMotion, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.281571]: Subclasses: []\n", - "[INFO] [1712351066.281854]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.282355]: Instances: []\n", - "[INFO] [1712351066.282617]: Direct Instances: []\n", - "[INFO] [1712351066.282907]: Inverse Restrictions: []\n", - "[INFO] [1712351066.283147]: -------------------\n", - "[INFO] [1712351066.283386]: SOMA.GreenColor \n", - "[INFO] [1712351066.283616]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712351066.283871]: Ancestors: {SOMA.ColorRegion, SOMA.GreenColor, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351066.284114]: Subclasses: []\n", - "[INFO] [1712351066.284398]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.284883]: Instances: []\n", - "[INFO] [1712351066.285157]: Direct Instances: []\n", - "[INFO] [1712351066.285414]: Inverse Restrictions: []\n", - "[INFO] [1712351066.285655]: -------------------\n", - "[INFO] [1712351066.285889]: SOMA.Gripper \n", - "[INFO] [1712351066.286326]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712351066.286692]: Ancestors: {SOMA.PhysicalEffector, SOMA.Gripper, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.286951]: Subclasses: []\n", - "[INFO] [1712351066.287246]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.287727]: Instances: []\n", - "[INFO] [1712351066.288011]: Direct Instances: []\n", - "[INFO] [1712351066.288274]: Inverse Restrictions: []\n", - "[INFO] [1712351066.288522]: -------------------\n", - "[INFO] [1712351066.288759]: SOMA.PrehensileEffector \n", - "[INFO] [1712351066.289011]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712351066.289261]: Ancestors: {SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, DUL.Entity, SOMA.PrehensileEffector, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.289520]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712351066.289808]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.290302]: Instances: []\n", - "[INFO] [1712351066.290575]: Direct Instances: []\n", - "[INFO] [1712351066.290896]: Inverse Restrictions: []\n", - "[INFO] [1712351066.291136]: -------------------\n", - "[INFO] [1712351066.291381]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712351066.291625]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712351066.291866]: Ancestors: {DUL.Description, SOMA.HardwareDiagnosis, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.292101]: Subclasses: []\n", - "[INFO] [1712351066.292384]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.292871]: Instances: []\n", - "[INFO] [1712351066.293139]: Direct Instances: []\n", - "[INFO] [1712351066.293385]: Inverse Restrictions: []\n", - "[INFO] [1712351066.293613]: -------------------\n", - "[INFO] [1712351066.293839]: SOMA.HasQualityRegion \n", - "[INFO] [1712351066.294091]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712351066.294337]: Ancestors: {SOMA.HasQualityRegion, DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351066.294578]: Subclasses: []\n", - "[INFO] [1712351066.294871]: Properties: [DUL.hasQuality, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy, DUL.hasRegion]\n", - "[INFO] [1712351066.295371]: Instances: []\n", - "[INFO] [1712351066.295639]: Direct Instances: []\n", - "[INFO] [1712351066.295887]: Inverse Restrictions: []\n", - "[INFO] [1712351066.296129]: -------------------\n", - "[INFO] [1712351066.296370]: SOMA.Head \n", - "[INFO] [1712351066.296618]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712351066.296865]: Ancestors: {owl.Thing, DUL.Object, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Head, DUL.PhysicalObject}\n", - "[INFO] [1712351066.297105]: Subclasses: []\n", - "[INFO] [1712351066.297393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.297901]: Instances: []\n", - "[INFO] [1712351066.298167]: Direct Instances: []\n", - "[INFO] [1712351066.298414]: Inverse Restrictions: []\n", - "[INFO] [1712351066.298645]: -------------------\n", - "[INFO] [1712351066.298891]: SOMA.HeadMovement \n", - "[INFO] [1712351066.299129]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712351066.299374]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.HeadMovement, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.299624]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712351066.299917]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.300413]: Instances: []\n", - "[INFO] [1712351066.300678]: Direct Instances: []\n", - "[INFO] [1712351066.300940]: Inverse Restrictions: []\n", - "[INFO] [1712351066.301170]: -------------------\n", - "[INFO] [1712351066.301408]: SOMA.HeadTurning \n", - "[INFO] [1712351066.301639]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712351066.301879]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.HeadTurning, SOMA.ProcessType, DUL.Concept, SOMA.Motion, SOMA.HeadMovement, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.302114]: Subclasses: []\n", - "[INFO] [1712351066.302415]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.302904]: Instances: []\n", - "[INFO] [1712351066.303159]: Direct Instances: []\n", - "[INFO] [1712351066.303397]: Inverse Restrictions: []\n", - "[INFO] [1712351066.303628]: -------------------\n", - "[INFO] [1712351066.303864]: SOMA.Holding \n", - "[INFO] [1712351066.304096]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351066.304336]: Ancestors: {DUL.SocialObject, SOMA.Manipulating, DUL.Object, SOMA.Holding, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.304574]: Subclasses: []\n", - "[INFO] [1712351066.304860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.305359]: Instances: []\n", - "[INFO] [1712351066.305633]: Direct Instances: []\n", - "[INFO] [1712351066.305887]: Inverse Restrictions: []\n", - "[INFO] [1712351066.306116]: -------------------\n", - "[INFO] [1712351066.306342]: SOMA.HostRole \n", - "[INFO] [1712351066.306571]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712351066.306824]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.HostRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351066.307071]: Subclasses: []\n", - "[INFO] [1712351066.307361]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", - "[INFO] [1712351066.307856]: Instances: []\n", - "[INFO] [1712351066.308120]: Direct Instances: []\n", - "[INFO] [1712351066.308441]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712351066.308693]: -------------------\n", - "[INFO] [1712351066.308945]: SOMA.PluginSpecification \n", - "[INFO] [1712351066.309198]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712351066.309449]: Ancestors: {DUL.Description, SOMA.PluginSpecification, DUL.Design, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification}\n", - "[INFO] [1712351066.309699]: Subclasses: []\n", - "[INFO] [1712351066.309994]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole, rdf-schema.comment]\n", - "[INFO] [1712351066.310491]: Instances: []\n", - "[INFO] [1712351066.310768]: Direct Instances: []\n", - "[INFO] [1712351066.311088]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712351066.311331]: -------------------\n", - "[INFO] [1712351066.311562]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712351066.311802]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712351066.312057]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Programming_Language, SOMA.Computer_Language, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351066.312312]: Subclasses: []\n", - "[INFO] [1712351066.312608]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.313092]: Instances: []\n", - "[INFO] [1712351066.313378]: Direct Instances: []\n", - "[INFO] [1712351066.313695]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712351066.313932]: -------------------\n", - "[INFO] [1712351066.314160]: SOMA.Source_Code \n", - "[INFO] [1712351066.314398]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712351066.314631]: Ancestors: {owl.Thing, SOMA.Computer_Program, SOMA.Source_Code}\n", - "[INFO] [1712351066.314881]: Subclasses: []\n", - "[INFO] [1712351066.315200]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.315701]: Instances: []\n", - "[INFO] [1712351066.315974]: Direct Instances: []\n", - "[INFO] [1712351066.316276]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712351066.316522]: -------------------\n", - "[INFO] [1712351066.316756]: SOMA.HumanActivityRecording \n", - "[INFO] [1712351066.316995]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712351066.317233]: Ancestors: {SOMA.HumanActivityRecording, SOMA.RecordedEpisode, DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing}\n", - "[INFO] [1712351066.317491]: Subclasses: []\n", - "[INFO] [1712351066.317781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.318256]: Instances: []\n", - "[INFO] [1712351066.318521]: Direct Instances: []\n", - "[INFO] [1712351066.318780]: Inverse Restrictions: []\n", - "[INFO] [1712351066.319013]: -------------------\n", - "[INFO] [1712351066.319241]: SOMA.Imagining \n", - "[INFO] [1712351066.319467]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712351066.319697]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Imagining}\n", - "[INFO] [1712351066.319947]: Subclasses: []\n", - "[INFO] [1712351066.320235]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.320717]: Instances: []\n", - "[INFO] [1712351066.320984]: Direct Instances: []\n", - "[INFO] [1712351066.321242]: Inverse Restrictions: []\n", - "[INFO] [1712351066.321482]: -------------------\n", - "[INFO] [1712351066.321711]: SOMA.Impediment \n", - "[INFO] [1712351066.321946]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712351066.322186]: Ancestors: {SOMA.Impediment, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Blockage, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.322439]: Subclasses: []\n", - "[INFO] [1712351066.322735]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.323211]: Instances: []\n", - "[INFO] [1712351066.323467]: Direct Instances: []\n", - "[INFO] [1712351066.323725]: Inverse Restrictions: []\n", - "[INFO] [1712351066.323959]: -------------------\n", - "[INFO] [1712351066.324188]: SOMA.Obstacle \n", - "[INFO] [1712351066.324415]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712351066.324655]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Barrier, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, SOMA.Obstacle, owl.Thing}\n", - "[INFO] [1712351066.324915]: Subclasses: []\n", - "[INFO] [1712351066.325207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.325697]: Instances: []\n", - "[INFO] [1712351066.325968]: Direct Instances: []\n", - "[INFO] [1712351066.326262]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712351066.326496]: -------------------\n", - "[INFO] [1712351066.326723]: SOMA.RestrictedObject \n", - "[INFO] [1712351066.326949]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712351066.327198]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.BlockedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.RestrictedObject}\n", - "[INFO] [1712351066.327441]: Subclasses: []\n", - "[INFO] [1712351066.327728]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.328204]: Instances: []\n", - "[INFO] [1712351066.328480]: Direct Instances: []\n", - "[INFO] [1712351066.328788]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712351066.329037]: -------------------\n", - "[INFO] [1712351066.329268]: SOMA.StateTransition \n", - "[INFO] [1712351066.329509]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712351066.329790]: Ancestors: {DUL.Transition, DUL.Entity, SOMA.StateTransition, DUL.Situation, owl.Thing}\n", - "[INFO] [1712351066.330054]: Subclasses: []\n", - "[INFO] [1712351066.330350]: Properties: [SOMA.hasInitialScene, rdf-schema.comment, rdf-schema.label, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351066.330825]: Instances: []\n", - "[INFO] [1712351066.331088]: Direct Instances: []\n", - "[INFO] [1712351066.331412]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712351066.331666]: -------------------\n", - "[INFO] [1712351066.331906]: SOMA.Inability \n", - "[INFO] [1712351066.332139]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712351066.332380]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, SOMA.Inability, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351066.332615]: Subclasses: []\n", - "[INFO] [1712351066.332913]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.333402]: Instances: []\n", - "[INFO] [1712351066.333661]: Direct Instances: []\n", - "[INFO] [1712351066.333906]: Inverse Restrictions: []\n", - "[INFO] [1712351066.334145]: -------------------\n", - "[INFO] [1712351066.334376]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712351066.334605]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712351066.334843]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.IncompatibleSoftware, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.335086]: Subclasses: []\n", - "[INFO] [1712351066.335384]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.335868]: Instances: []\n", - "[INFO] [1712351066.336150]: Direct Instances: []\n", - "[INFO] [1712351066.336398]: Inverse Restrictions: []\n", - "[INFO] [1712351066.336630]: -------------------\n", - "[INFO] [1712351066.336886]: SOMA.InductiveReasoning \n", - "[INFO] [1712351066.337176]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712351066.337461]: Ancestors: {SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.InductiveReasoning}\n", - "[INFO] [1712351066.337735]: Subclasses: []\n", - "[INFO] [1712351066.338054]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.338566]: Instances: []\n", - "[INFO] [1712351066.338847]: Direct Instances: []\n", - "[INFO] [1712351066.339110]: Inverse Restrictions: []\n", - "[INFO] [1712351066.339345]: -------------------\n", - "[INFO] [1712351066.339579]: SOMA.Infeasibility \n", - "[INFO] [1712351066.339808]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712351066.340045]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Unsuccessfulness, SOMA.Infeasibility, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351066.340301]: Subclasses: []\n", - "[INFO] [1712351066.340599]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.341106]: Instances: []\n", - "[INFO] [1712351066.341363]: Direct Instances: []\n", - "[INFO] [1712351066.341614]: Inverse Restrictions: []\n", - "[INFO] [1712351066.341856]: -------------------\n", - "[INFO] [1712351066.342092]: SOMA.InferenceRules \n", - "[INFO] [1712351066.342322]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712351066.342562]: Ancestors: {DUL.SocialObject, SOMA.Knowledge, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, SOMA.InferenceRules, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.342817]: Subclasses: []\n", - "[INFO] [1712351066.343126]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.343609]: Instances: []\n", - "[INFO] [1712351066.343889]: Direct Instances: []\n", - "[INFO] [1712351066.344151]: Inverse Restrictions: []\n", - "[INFO] [1712351066.344387]: -------------------\n", - "[INFO] [1712351066.344616]: SOMA.InformationRetrieval \n", - "[INFO] [1712351066.344859]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712351066.345096]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.InformationRetrieval}\n", - "[INFO] [1712351066.345361]: Subclasses: []\n", - "[INFO] [1712351066.345660]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.346140]: Instances: []\n", - "[INFO] [1712351066.346407]: Direct Instances: []\n", - "[INFO] [1712351066.346711]: Inverse Restrictions: []\n", - "[INFO] [1712351066.346968]: -------------------\n", - "[INFO] [1712351066.347202]: SOMA.InformationStorage \n", - "[INFO] [1712351066.347436]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712351066.347683]: Ancestors: {DUL.SocialObject, SOMA.InformationStorage, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.347956]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712351066.348256]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712351066.348737]: Instances: []\n", - "[INFO] [1712351066.349013]: Direct Instances: []\n", - "[INFO] [1712351066.349283]: Inverse Restrictions: []\n", - "[INFO] [1712351066.349521]: -------------------\n", - "[INFO] [1712351066.349749]: SOMA.StoredObject \n", - "[INFO] [1712351066.349973]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712351066.350260]: Ancestors: {SOMA.StoredObject, DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.350677]: Subclasses: []\n", - "[INFO] [1712351066.351032]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.351545]: Instances: []\n", - "[INFO] [1712351066.351827]: Direct Instances: []\n", - "[INFO] [1712351066.352183]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712351066.352432]: -------------------\n", - "[INFO] [1712351066.352680]: SOMA.InsertedObject \n", - "[INFO] [1712351066.352938]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712351066.353187]: Ancestors: {SOMA.InsertedObject, DUL.SocialObject, SOMA.IncludedObject, DUL.Object, SOMA.EnclosedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.353427]: Subclasses: []\n", - "[INFO] [1712351066.353719]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.354219]: Instances: []\n", - "[INFO] [1712351066.354488]: Direct Instances: []\n", - "[INFO] [1712351066.354784]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712351066.355021]: -------------------\n", - "[INFO] [1712351066.355250]: SOMA.Instructions \n", - "[INFO] [1712351066.355481]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712351066.355735]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.Instructions, owl.Thing}\n", - "[INFO] [1712351066.355985]: Subclasses: []\n", - "[INFO] [1712351066.356275]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.356749]: Instances: []\n", - "[INFO] [1712351066.357037]: Direct Instances: []\n", - "[INFO] [1712351066.357293]: Inverse Restrictions: []\n", - "[INFO] [1712351066.357526]: -------------------\n", - "[INFO] [1712351066.357774]: SOMA.Interpreting \n", - "[INFO] [1712351066.358009]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351066.358243]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Interpreting}\n", - "[INFO] [1712351066.358492]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712351066.358791]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.359277]: Instances: []\n", - "[INFO] [1712351066.359538]: Direct Instances: []\n", - "[INFO] [1712351066.359789]: Inverse Restrictions: []\n", - "[INFO] [1712351066.360015]: -------------------\n", - "[INFO] [1712351066.360245]: SOMA.InterrogativeClause \n", - "[INFO] [1712351066.360481]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712351066.360731]: Ancestors: {SOMA.ClausalObject, DUL.InformationObject, DUL.SocialObject, SOMA.Phrase, SOMA.InterrogativeClause, DUL.InformationEntity, DUL.Object, SOMA.LinguisticObject, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.360974]: Subclasses: []\n", - "[INFO] [1712351066.361261]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.361761]: Instances: []\n", - "[INFO] [1712351066.362033]: Direct Instances: []\n", - "[INFO] [1712351066.362334]: Inverse Restrictions: []\n", - "[INFO] [1712351066.362572]: -------------------\n", - "[INFO] [1712351066.362817]: SOMA.Introspecting \n", - "[INFO] [1712351066.363075]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712351066.363314]: Ancestors: {SOMA.InformationAcquisition, SOMA.Introspecting, owl.Thing}\n", - "[INFO] [1712351066.363564]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712351066.363866]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.364355]: Instances: []\n", - "[INFO] [1712351066.364613]: Direct Instances: []\n", - "[INFO] [1712351066.365133]: Inverse Restrictions: []\n", - "[INFO] [1712351066.365421]: -------------------\n", - "[INFO] [1712351066.365662]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712351066.365898]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712351066.366156]: Ancestors: {SOMA.KineticFrictionAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", - "[INFO] [1712351066.366406]: Subclasses: []\n", - "[INFO] [1712351066.366699]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.367183]: Instances: []\n", - "[INFO] [1712351066.367464]: Direct Instances: []\n", - "[INFO] [1712351066.367720]: Inverse Restrictions: []\n", - "[INFO] [1712351066.367962]: -------------------\n", - "[INFO] [1712351066.368196]: SOMA.KinoDynamicData \n", - "[INFO] [1712351066.368445]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351066.368691]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.KinoDynamicData, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.369009]: Subclasses: []\n", - "[INFO] [1712351066.369347]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.369852]: Instances: []\n", - "[INFO] [1712351066.370127]: Direct Instances: []\n", - "[INFO] [1712351066.370383]: Inverse Restrictions: []\n", - "[INFO] [1712351066.370633]: -------------------\n", - "[INFO] [1712351066.370872]: SOMA.Room \n", - "[INFO] [1712351066.371105]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712351066.371345]: Ancestors: {DUL.PhysicalPlace, DUL.Object, SOMA.Room, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.371593]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712351066.371891]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.372381]: Instances: []\n", - "[INFO] [1712351066.372643]: Direct Instances: []\n", - "[INFO] [1712351066.372898]: Inverse Restrictions: []\n", - "[INFO] [1712351066.373126]: -------------------\n", - "[INFO] [1712351066.373371]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712351066.373607]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351066.373848]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.KnowledgeRepresentationLanguage, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351066.374095]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712351066.374385]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.374886]: Instances: []\n", - "[INFO] [1712351066.375154]: Direct Instances: []\n", - "[INFO] [1712351066.375415]: Inverse Restrictions: []\n", - "[INFO] [1712351066.375649]: -------------------\n", - "[INFO] [1712351066.375880]: SOMA.Labeling \n", - "[INFO] [1712351066.376116]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712351066.376361]: Ancestors: {SOMA.Labeling, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Interpreting, owl.Thing}\n", - "[INFO] [1712351066.376603]: Subclasses: []\n", - "[INFO] [1712351066.376896]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351066.377370]: Instances: []\n", - "[INFO] [1712351066.377649]: Direct Instances: []\n", - "[INFO] [1712351066.377911]: Inverse Restrictions: []\n", - "[INFO] [1712351066.378151]: -------------------\n", - "[INFO] [1712351066.378386]: SOMA.Text \n", - "[INFO] [1712351066.378620]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.378856]: Ancestors: {SOMA.Text, owl.Thing}\n", - "[INFO] [1712351066.379110]: Subclasses: []\n", - "[INFO] [1712351066.379408]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.379917]: Instances: []\n", - "[INFO] [1712351066.380178]: Direct Instances: []\n", - "[INFO] [1712351066.380532]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712351066.380796]: -------------------\n", - "[INFO] [1712351066.381047]: SOMA.Leaning \n", - "[INFO] [1712351066.381299]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712351066.381552]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Leaning, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", - "[INFO] [1712351066.381796]: Subclasses: []\n", - "[INFO] [1712351066.382094]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.382581]: Instances: []\n", - "[INFO] [1712351066.382843]: Direct Instances: []\n", - "[INFO] [1712351066.383086]: Inverse Restrictions: []\n", - "[INFO] [1712351066.383321]: -------------------\n", - "[INFO] [1712351066.383577]: SOMA.PosturalMoving \n", - "[INFO] [1712351066.383815]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712351066.384058]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", - "[INFO] [1712351066.384312]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712351066.384598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.385109]: Instances: []\n", - "[INFO] [1712351066.385402]: Direct Instances: []\n", - "[INFO] [1712351066.385674]: Inverse Restrictions: []\n", - "[INFO] [1712351066.385911]: -------------------\n", - "[INFO] [1712351066.386145]: SOMA.Learning \n", - "[INFO] [1712351066.386392]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712351066.386644]: Ancestors: {SOMA.Learning, DUL.SocialObject, SOMA.InformationStorage, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.386901]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712351066.387196]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.387700]: Instances: []\n", - "[INFO] [1712351066.387986]: Direct Instances: []\n", - "[INFO] [1712351066.388255]: Inverse Restrictions: []\n", - "[INFO] [1712351066.388493]: -------------------\n", - "[INFO] [1712351066.388727]: SOMA.Leg \n", - "[INFO] [1712351066.388980]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712351066.389243]: Ancestors: {SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart, DUL.Object, DUL.Entity, DUL.PhysicalBody, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712351066.389494]: Subclasses: []\n", - "[INFO] [1712351066.389786]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.390284]: Instances: []\n", - "[INFO] [1712351066.390552]: Direct Instances: []\n", - "[INFO] [1712351066.390847]: Inverse Restrictions: []\n", - "[INFO] [1712351066.391083]: -------------------\n", - "[INFO] [1712351066.391317]: SOMA.LimbMotion \n", - "[INFO] [1712351066.391566]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712351066.391818]: Ancestors: {SOMA.LimbMotion, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.392064]: Subclasses: []\n", - "[INFO] [1712351066.392365]: Properties: [rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.392843]: Instances: []\n", - "[INFO] [1712351066.393129]: Direct Instances: []\n", - "[INFO] [1712351066.393389]: Inverse Restrictions: []\n", - "[INFO] [1712351066.393621]: -------------------\n", - "[INFO] [1712351066.393849]: SOMA.LinkedObject \n", - "[INFO] [1712351066.394087]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712351066.394334]: Ancestors: {SOMA.LinkedObject, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.394575]: Subclasses: []\n", - "[INFO] [1712351066.394862]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.395363]: Instances: []\n", - "[INFO] [1712351066.395639]: Direct Instances: []\n", - "[INFO] [1712351066.396048]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712351066.396324]: -------------------\n", - "[INFO] [1712351066.396572]: SOMA.LinkageState \n", - "[INFO] [1712351066.396835]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712351066.397088]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, SOMA.LinkageState, owl.Thing}\n", - "[INFO] [1712351066.397333]: Subclasses: []\n", - "[INFO] [1712351066.397630]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.398121]: Instances: []\n", - "[INFO] [1712351066.398404]: Direct Instances: []\n", - "[INFO] [1712351066.398650]: Inverse Restrictions: []\n", - "[INFO] [1712351066.398901]: -------------------\n", - "[INFO] [1712351066.399132]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712351066.399378]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712351066.399624]: Ancestors: {DUL.SocialObject, SOMA.SpatioTemporalRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.399879]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712351066.400167]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.400687]: Instances: []\n", - "[INFO] [1712351066.400965]: Direct Instances: []\n", - "[INFO] [1712351066.401226]: Inverse Restrictions: []\n", - "[INFO] [1712351066.401459]: -------------------\n", - "[INFO] [1712351066.401689]: SOMA.SpatialRelationRole \n", - "[INFO] [1712351066.401932]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712351066.402176]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.RelationAdjacentRole, SOMA.SpatialRelationRole, owl.Thing}\n", - "[INFO] [1712351066.402431]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712351066.402716]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.403212]: Instances: []\n", - "[INFO] [1712351066.403477]: Direct Instances: []\n", - "[INFO] [1712351066.403730]: Inverse Restrictions: []\n", - "[INFO] [1712351066.403955]: -------------------\n", - "[INFO] [1712351066.404184]: SOMA.LocutionaryAction \n", - "[INFO] [1712351066.404418]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.404651]: Ancestors: {owl.Thing, SOMA.LocutionaryAction}\n", - "[INFO] [1712351066.404893]: Subclasses: []\n", - "[INFO] [1712351066.405197]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.405680]: Instances: []\n", - "[INFO] [1712351066.405942]: Direct Instances: []\n", - "[INFO] [1712351066.406186]: Inverse Restrictions: []\n", - "[INFO] [1712351066.406416]: -------------------\n", - "[INFO] [1712351066.406639]: SOMA.LookingAt \n", - "[INFO] [1712351066.406876]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351066.407119]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.LookingAt, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.407357]: Subclasses: []\n", - "[INFO] [1712351066.407639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.408132]: Instances: []\n", - "[INFO] [1712351066.408399]: Direct Instances: []\n", - "[INFO] [1712351066.408646]: Inverse Restrictions: []\n", - "[INFO] [1712351066.408876]: -------------------\n", - "[INFO] [1712351066.409103]: SOMA.LookingFor \n", - "[INFO] [1712351066.409341]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712351066.409579]: Ancestors: {SOMA.Perceiving, owl.Thing, SOMA.LookingFor}\n", - "[INFO] [1712351066.409816]: Subclasses: []\n", - "[INFO] [1712351066.410099]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.410594]: Instances: []\n", - "[INFO] [1712351066.410865]: Direct Instances: []\n", - "[INFO] [1712351066.411111]: Inverse Restrictions: []\n", - "[INFO] [1712351066.411345]: -------------------\n", - "[INFO] [1712351066.411573]: SOMA.Lowering \n", - "[INFO] [1712351066.411808]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351066.412099]: Ancestors: {DUL.SocialObject, SOMA.Lowering, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.412358]: Subclasses: []\n", - "[INFO] [1712351066.412648]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.413146]: Instances: []\n", - "[INFO] [1712351066.413430]: Direct Instances: []\n", - "[INFO] [1712351066.413692]: Inverse Restrictions: []\n", - "[INFO] [1712351066.413939]: -------------------\n", - "[INFO] [1712351066.414169]: SOMA.PhysicalAction \n", - "[INFO] [1712351066.414396]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712351066.414626]: Ancestors: {SOMA.PhysicalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712351066.414886]: Subclasses: []\n", - "[INFO] [1712351066.415182]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.415686]: Instances: []\n", - "[INFO] [1712351066.415963]: Direct Instances: []\n", - "[INFO] [1712351066.416269]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351066.416510]: -------------------\n", - "[INFO] [1712351066.416739]: SOMA.Markup_Language \n", - "[INFO] [1712351066.416976]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712351066.417217]: Ancestors: {SOMA.Language, SOMA.System, SOMA.Markup_Language, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351066.417477]: Subclasses: []\n", - "[INFO] [1712351066.417765]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.418237]: Instances: []\n", - "[INFO] [1712351066.418498]: Direct Instances: []\n", - "[INFO] [1712351066.418752]: Inverse Restrictions: []\n", - "[INFO] [1712351066.418983]: -------------------\n", - "[INFO] [1712351066.419209]: SOMA.Masterful \n", - "[INFO] [1712351066.419442]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712351066.419680]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, owl.Thing, DUL.Object, DUL.Entity, SOMA.Masterful, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351066.419930]: Subclasses: []\n", - "[INFO] [1712351066.420215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.420685]: Instances: []\n", - "[INFO] [1712351066.421039]: Direct Instances: []\n", - "[INFO] [1712351066.421390]: Inverse Restrictions: []\n", - "[INFO] [1712351066.421662]: -------------------\n", - "[INFO] [1712351066.421913]: SOMA.Material \n", - "[INFO] [1712351066.422155]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351066.422398]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Material, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351066.422647]: Subclasses: []\n", - "[INFO] [1712351066.422949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.423438]: Instances: []\n", - "[INFO] [1712351066.423714]: Direct Instances: []\n", - "[INFO] [1712351066.423972]: Inverse Restrictions: []\n", - "[INFO] [1712351066.424206]: -------------------\n", - "[INFO] [1712351066.424438]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712351066.424669]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712351066.424914]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Entity, SOMA.MedicalDiagnosis, owl.Thing}\n", - "[INFO] [1712351066.425167]: Subclasses: []\n", - "[INFO] [1712351066.425472]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.425951]: Instances: []\n", - "[INFO] [1712351066.426204]: Direct Instances: []\n", - "[INFO] [1712351066.426441]: Inverse Restrictions: []\n", - "[INFO] [1712351066.426681]: -------------------\n", - "[INFO] [1712351066.426913]: SOMA.Memorizing \n", - "[INFO] [1712351066.427140]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712351066.427378]: Ancestors: {SOMA.Learning, DUL.SocialObject, SOMA.InformationStorage, DUL.Object, SOMA.Memorizing, DUL.Entity, DUL.Concept, DUL.Task, SOMA.MentalTask, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.427627]: Subclasses: []\n", - "[INFO] [1712351066.427923]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.428410]: Instances: []\n", - "[INFO] [1712351066.428684]: Direct Instances: []\n", - "[INFO] [1712351066.428945]: Inverse Restrictions: []\n", - "[INFO] [1712351066.429180]: -------------------\n", - "[INFO] [1712351066.429412]: SOMA.MentalAction \n", - "[INFO] [1712351066.429652]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712351066.429897]: Ancestors: {SOMA.MentalAction, DUL.Entity, DUL.Event, DUL.Action, owl.Thing}\n", - "[INFO] [1712351066.430151]: Subclasses: []\n", - "[INFO] [1712351066.430462]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.430941]: Instances: []\n", - "[INFO] [1712351066.431203]: Direct Instances: []\n", - "[INFO] [1712351066.431492]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712351066.431746]: -------------------\n", - "[INFO] [1712351066.431985]: SOMA.MeshShape \n", - "[INFO] [1712351066.432231]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712351066.432472]: Ancestors: {SOMA.MeshShape, DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351066.432722]: Subclasses: []\n", - "[INFO] [1712351066.433032]: Properties: [rdf-schema.label, SOMA.hasFilePath, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351066.433551]: Instances: []\n", - "[INFO] [1712351066.433807]: Direct Instances: []\n", - "[INFO] [1712351066.434060]: Inverse Restrictions: []\n", - "[INFO] [1712351066.434300]: -------------------\n", - "[INFO] [1712351066.434529]: SOMA.MeshShapeData \n", - "[INFO] [1712351066.434764]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712351066.435004]: Ancestors: {DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing, SOMA.MeshShapeData}\n", - "[INFO] [1712351066.435251]: Subclasses: []\n", - "[INFO] [1712351066.435543]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.436017]: Instances: []\n", - "[INFO] [1712351066.436297]: Direct Instances: []\n", - "[INFO] [1712351066.436563]: Inverse Restrictions: []\n", - "[INFO] [1712351066.436806]: -------------------\n", - "[INFO] [1712351066.437042]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712351066.437272]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712351066.437521]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.MetaCognitionEvaluationTopic, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.437778]: Subclasses: []\n", - "[INFO] [1712351066.438068]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.438543]: Instances: []\n", - "[INFO] [1712351066.438815]: Direct Instances: []\n", - "[INFO] [1712351066.439078]: Inverse Restrictions: []\n", - "[INFO] [1712351066.439312]: -------------------\n", - "[INFO] [1712351066.439544]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712351066.439770]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351066.440013]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.440277]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712351066.440571]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.441064]: Instances: []\n", - "[INFO] [1712351066.441333]: Direct Instances: []\n", - "[INFO] [1712351066.441594]: Inverse Restrictions: []\n", - "[INFO] [1712351066.441841]: -------------------\n", - "[INFO] [1712351066.442081]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712351066.442314]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712351066.442558]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.MetaCognitionMemoryTopic, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.442795]: Subclasses: []\n", - "[INFO] [1712351066.443083]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.443572]: Instances: []\n", - "[INFO] [1712351066.443838]: Direct Instances: []\n", - "[INFO] [1712351066.444085]: Inverse Restrictions: []\n", - "[INFO] [1712351066.444314]: -------------------\n", - "[INFO] [1712351066.444556]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712351066.444813]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712351066.445195]: Ancestors: {SOMA.MetaCognitionPlanningTopic, DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MetaCognitionTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.445490]: Subclasses: []\n", - "[INFO] [1712351066.445811]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.446326]: Instances: []\n", - "[INFO] [1712351066.446603]: Direct Instances: []\n", - "[INFO] [1712351066.446876]: Inverse Restrictions: []\n", - "[INFO] [1712351066.447119]: -------------------\n", - "[INFO] [1712351066.447356]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712351066.447588]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712351066.447830]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.448097]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712351066.448506]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.449061]: Instances: []\n", - "[INFO] [1712351066.449353]: Direct Instances: []\n", - "[INFO] [1712351066.449628]: Inverse Restrictions: []\n", - "[INFO] [1712351066.449884]: -------------------\n", - "[INFO] [1712351066.450135]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712351066.450385]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712351066.450648]: Ancestors: {SOMA.MetacognitiveControlling, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.450902]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712351066.451189]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.451702]: Instances: []\n", - "[INFO] [1712351066.451974]: Direct Instances: []\n", - "[INFO] [1712351066.452235]: Inverse Restrictions: []\n", - "[INFO] [1712351066.452477]: -------------------\n", - "[INFO] [1712351066.452710]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712351066.452960]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712351066.453218]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, owl.Thing, SOMA.Introspecting}\n", - "[INFO] [1712351066.453466]: Subclasses: []\n", - "[INFO] [1712351066.453757]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.454237]: Instances: []\n", - "[INFO] [1712351066.454507]: Direct Instances: []\n", - "[INFO] [1712351066.454762]: Inverse Restrictions: []\n", - "[INFO] [1712351066.455001]: -------------------\n", - "[INFO] [1712351066.455239]: SOMA.Mixing \n", - "[INFO] [1712351066.455490]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712351066.455758]: Ancestors: {SOMA.Constructing, DUL.SocialObject, SOMA.Mixing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.456017]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712351066.456305]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.456795]: Instances: []\n", - "[INFO] [1712351066.457072]: Direct Instances: []\n", - "[INFO] [1712351066.457338]: Inverse Restrictions: []\n", - "[INFO] [1712351066.457585]: -------------------\n", - "[INFO] [1712351066.457822]: SOMA.MixingTheory \n", - "[INFO] [1712351066.458066]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712351066.458323]: Ancestors: {DUL.Description, SOMA.MixingTheory, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.458584]: Subclasses: []\n", - "[INFO] [1712351066.458882]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351066.459361]: Instances: []\n", - "[INFO] [1712351066.459635]: Direct Instances: []\n", - "[INFO] [1712351066.459894]: Inverse Restrictions: []\n", - "[INFO] [1712351066.460134]: -------------------\n", - "[INFO] [1712351066.460375]: SOMA.MonitoringJointState \n", - "[INFO] [1712351066.460611]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712351066.460874]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, owl.Thing, SOMA.Proprioceiving}\n", - "[INFO] [1712351066.461124]: Subclasses: []\n", - "[INFO] [1712351066.461416]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.461908]: Instances: []\n", - "[INFO] [1712351066.462183]: Direct Instances: []\n", - "[INFO] [1712351066.462441]: Inverse Restrictions: []\n", - "[INFO] [1712351066.462688]: -------------------\n", - "[INFO] [1712351066.462927]: SOMA.Proprioceiving \n", - "[INFO] [1712351066.463178]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712351066.463437]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Proprioceiving}\n", - "[INFO] [1712351066.463912]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712351066.464379]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.465013]: Instances: []\n", - "[INFO] [1712351066.465453]: Direct Instances: []\n", - "[INFO] [1712351066.465881]: Inverse Restrictions: []\n", - "[INFO] [1712351066.466295]: -------------------\n", - "[INFO] [1712351066.466705]: SOMA.MovingAway \n", - "[INFO] [1712351066.467128]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712351066.467565]: Ancestors: {DUL.SocialObject, SOMA.Locomotion, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, SOMA.MovingAway, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.467929]: Subclasses: []\n", - "[INFO] [1712351066.468321]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.468904]: Instances: []\n", - "[INFO] [1712351066.469281]: Direct Instances: []\n", - "[INFO] [1712351066.469634]: Inverse Restrictions: []\n", - "[INFO] [1712351066.469967]: -------------------\n", - "[INFO] [1712351066.470295]: SOMA.MovingTo \n", - "[INFO] [1712351066.470616]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712351066.470952]: Ancestors: {DUL.SocialObject, SOMA.Navigating, DUL.Object, SOMA.MovingTo, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.471294]: Subclasses: []\n", - "[INFO] [1712351066.471672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.472240]: Instances: []\n", - "[INFO] [1712351066.472581]: Direct Instances: []\n", - "[INFO] [1712351066.472924]: Inverse Restrictions: []\n", - "[INFO] [1712351066.473250]: -------------------\n", - "[INFO] [1712351066.473576]: SOMA.Natural_Language \n", - "[INFO] [1712351066.473860]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712351066.474137]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.Natural_Language, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.474400]: Subclasses: []\n", - "[INFO] [1712351066.474700]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.475203]: Instances: []\n", - "[INFO] [1712351066.475468]: Direct Instances: []\n", - "[INFO] [1712351066.475782]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712351066.476028]: -------------------\n", - "[INFO] [1712351066.476273]: SOMA.Natural_Language_Text \n", - "[INFO] [1712351066.476516]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.476758]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", - "[INFO] [1712351066.477031]: Subclasses: []\n", - "[INFO] [1712351066.477347]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.477858]: Instances: []\n", - "[INFO] [1712351066.478134]: Direct Instances: []\n", - "[INFO] [1712351066.478431]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712351066.478683]: -------------------\n", - "[INFO] [1712351066.478925]: SOMA.Ontology \n", - "[INFO] [1712351066.479163]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712351066.479418]: Ancestors: {SOMA.Ontology, owl.Thing, SOMA.Structured_Text}\n", - "[INFO] [1712351066.479691]: Subclasses: []\n", - "[INFO] [1712351066.480013]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.480512]: Instances: []\n", - "[INFO] [1712351066.480782]: Direct Instances: []\n", - "[INFO] [1712351066.481086]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712351066.481336]: -------------------\n", - "[INFO] [1712351066.481576]: SOMA.Ontology_Language \n", - "[INFO] [1712351066.481821]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712351066.482085]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, SOMA.KnowledgeRepresentationLanguage, DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.Ontology_Language, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351066.482332]: Subclasses: []\n", - "[INFO] [1712351066.482626]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.483154]: Instances: []\n", - "[INFO] [1712351066.483439]: Direct Instances: []\n", - "[INFO] [1712351066.483759]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712351066.484009]: -------------------\n", - "[INFO] [1712351066.484249]: SOMA.Option \n", - "[INFO] [1712351066.484487]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712351066.484763]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, DUL.Object, SOMA.Option, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.485022]: Subclasses: []\n", - "[INFO] [1712351066.485314]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.485795]: Instances: []\n", - "[INFO] [1712351066.486061]: Direct Instances: []\n", - "[INFO] [1712351066.486331]: Inverse Restrictions: []\n", - "[INFO] [1712351066.486573]: -------------------\n", - "[INFO] [1712351066.486812]: SOMA.Singleton \n", - "[INFO] [1712351066.487049]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.487287]: Ancestors: {owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712351066.487836]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712351066.488265]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", - "[INFO] [1712351066.488789]: Instances: []\n", - "[INFO] [1712351066.489146]: Direct Instances: []\n", - "[INFO] [1712351066.489434]: Inverse Restrictions: []\n", - "[INFO] [1712351066.489684]: -------------------\n", - "[INFO] [1712351066.489929]: SOMA.Orienting \n", - "[INFO] [1712351066.490187]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712351066.490457]: Ancestors: {SOMA.Orienting, DUL.SocialObject, SOMA.Positioning, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.490711]: Subclasses: []\n", - "[INFO] [1712351066.491006]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.491494]: Instances: []\n", - "[INFO] [1712351066.491770]: Direct Instances: []\n", - "[INFO] [1712351066.492030]: Inverse Restrictions: []\n", - "[INFO] [1712351066.492274]: -------------------\n", - "[INFO] [1712351066.492510]: SOMA.Positioning \n", - "[INFO] [1712351066.492741]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712351066.493008]: Ancestors: {DUL.SocialObject, SOMA.Positioning, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.493280]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712351066.493572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.494056]: Instances: []\n", - "[INFO] [1712351066.494331]: Direct Instances: []\n", - "[INFO] [1712351066.494591]: Inverse Restrictions: []\n", - "[INFO] [1712351066.494832]: -------------------\n", - "[INFO] [1712351066.495080]: SOMA.Origin \n", - "[INFO] [1712351066.495317]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712351066.495565]: Ancestors: {SOMA.Origin, SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Location, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.495825]: Subclasses: []\n", - "[INFO] [1712351066.496123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.496608]: Instances: []\n", - "[INFO] [1712351066.496870]: Direct Instances: []\n", - "[INFO] [1712351066.497154]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712351066.497414]: -------------------\n", - "[INFO] [1712351066.497658]: SOMA.ParkingArms \n", - "[INFO] [1712351066.497897]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712351066.498148]: Ancestors: {DUL.SocialObject, SOMA.ParkingArms, DUL.Object, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.AssumingArmPose, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.498401]: Subclasses: []\n", - "[INFO] [1712351066.498704]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.499202]: Instances: []\n", - "[INFO] [1712351066.499514]: Direct Instances: []\n", - "[INFO] [1712351066.499784]: Inverse Restrictions: []\n", - "[INFO] [1712351066.500030]: -------------------\n", - "[INFO] [1712351066.500270]: SOMA.PhaseTransition \n", - "[INFO] [1712351066.500513]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712351066.500774]: Ancestors: {SOMA.Alteration, DUL.SocialObject, DUL.Object, SOMA.PhaseTransition, DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.501037]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712351066.501335]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment]\n", - "[INFO] [1712351066.501825]: Instances: []\n", - "[INFO] [1712351066.502103]: Direct Instances: []\n", - "[INFO] [1712351066.502363]: Inverse Restrictions: []\n", - "[INFO] [1712351066.502608]: -------------------\n", - "[INFO] [1712351066.502846]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712351066.503090]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712351066.503351]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, SOMA.PhysicalAccessibility, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.503601]: Subclasses: []\n", - "[INFO] [1712351066.503901]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.504381]: Instances: []\n", - "[INFO] [1712351066.504653]: Direct Instances: []\n", - "[INFO] [1712351066.504909]: Inverse Restrictions: []\n", - "[INFO] [1712351066.505153]: -------------------\n", - "[INFO] [1712351066.505390]: SOMA.PhysicalBlockage \n", - "[INFO] [1712351066.505632]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712351066.505877]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.StateType, SOMA.PhysicalBlockage, DUL.Concept, DUL.Entity, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.506133]: Subclasses: []\n", - "[INFO] [1712351066.506434]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.506916]: Instances: []\n", - "[INFO] [1712351066.507174]: Direct Instances: []\n", - "[INFO] [1712351066.507435]: Inverse Restrictions: []\n", - "[INFO] [1712351066.507677]: -------------------\n", - "[INFO] [1712351066.507915]: SOMA.PhysicalExistence \n", - "[INFO] [1712351066.508147]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712351066.508391]: Ancestors: {SOMA.State, DUL.Entity, SOMA.PhysicalExistence, SOMA.PhysicalState, DUL.Event, owl.Thing}\n", - "[INFO] [1712351066.508645]: Subclasses: []\n", - "[INFO] [1712351066.508945]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.509428]: Instances: []\n", - "[INFO] [1712351066.509682]: Direct Instances: []\n", - "[INFO] [1712351066.509933]: Inverse Restrictions: []\n", - "[INFO] [1712351066.510185]: -------------------\n", - "[INFO] [1712351066.510429]: SOMA.PhysicalState \n", - "[INFO] [1712351066.510671]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712351066.510915]: Ancestors: {SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event, owl.Thing}\n", - "[INFO] [1712351066.511167]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712351066.511480]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.511975]: Instances: []\n", - "[INFO] [1712351066.512234]: Direct Instances: []\n", - "[INFO] [1712351066.512480]: Inverse Restrictions: []\n", - "[INFO] [1712351066.512731]: -------------------\n", - "[INFO] [1712351066.512976]: SOMA.PhysicsProcess \n", - "[INFO] [1712351066.513221]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712351066.513470]: Ancestors: {SOMA.PhysicsProcess, DUL.Entity, DUL.Event, owl.Thing, DUL.Process}\n", - "[INFO] [1712351066.513710]: Subclasses: []\n", - "[INFO] [1712351066.514010]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.514494]: Instances: []\n", - "[INFO] [1712351066.514750]: Direct Instances: []\n", - "[INFO] [1712351066.514993]: Inverse Restrictions: []\n", - "[INFO] [1712351066.515237]: -------------------\n", - "[INFO] [1712351066.515477]: SOMA.PlacingTheory \n", - "[INFO] [1712351066.515722]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712351066.515972]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.PlacingTheory, owl.Thing, DUL.Object, DUL.Entity, SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.516234]: Subclasses: []\n", - "[INFO] [1712351066.516535]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351066.517022]: Instances: []\n", - "[INFO] [1712351066.517282]: Direct Instances: []\n", - "[INFO] [1712351066.517545]: Inverse Restrictions: []\n", - "[INFO] [1712351066.517786]: -------------------\n", - "[INFO] [1712351066.518023]: SOMA.PlanarJoint \n", - "[INFO] [1712351066.518255]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712351066.518501]: Ancestors: {SOMA.MovableJoint, SOMA.PlanarJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.518757]: Subclasses: []\n", - "[INFO] [1712351066.519050]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.519531]: Instances: []\n", - "[INFO] [1712351066.519787]: Direct Instances: []\n", - "[INFO] [1712351066.520031]: Inverse Restrictions: []\n", - "[INFO] [1712351066.520278]: -------------------\n", - "[INFO] [1712351066.520520]: SOMA.PluginRole \n", - "[INFO] [1712351066.520762]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712351066.521015]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, SOMA.PluginRole, DUL.Entity, DUL.Concept, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing}\n", - "[INFO] [1712351066.521273]: Subclasses: []\n", - "[INFO] [1712351066.521576]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn]\n", - "[INFO] [1712351066.522064]: Instances: []\n", - "[INFO] [1712351066.522319]: Direct Instances: []\n", - "[INFO] [1712351066.522639]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712351066.522888]: -------------------\n", - "[INFO] [1712351066.523129]: SOMA.Pourable \n", - "[INFO] [1712351066.523370]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712351066.523628]: Ancestors: {SOMA.Extrinsic, SOMA.Pourable, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.523874]: Subclasses: []\n", - "[INFO] [1712351066.524165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.524645]: Instances: []\n", - "[INFO] [1712351066.524924]: Direct Instances: []\n", - "[INFO] [1712351066.525290]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712351066.525555]: -------------------\n", - "[INFO] [1712351066.525800]: SOMA.PouredObject \n", - "[INFO] [1712351066.526036]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712351066.526285]: Ancestors: {SOMA.PouredObject, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Patient, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.526540]: Subclasses: []\n", - "[INFO] [1712351066.526828]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.527308]: Instances: []\n", - "[INFO] [1712351066.527572]: Direct Instances: []\n", - "[INFO] [1712351066.527860]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712351066.528110]: -------------------\n", - "[INFO] [1712351066.528354]: SOMA.Pouring \n", - "[INFO] [1712351066.528594]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712351066.528847]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712351066.529109]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712351066.529401]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.529886]: Instances: []\n", - "[INFO] [1712351066.530145]: Direct Instances: []\n", - "[INFO] [1712351066.530401]: Inverse Restrictions: []\n", - "[INFO] [1712351066.530637]: -------------------\n", - "[INFO] [1712351066.530869]: SOMA.PouringInto \n", - "[INFO] [1712351066.531117]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712351066.531368]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PouringInto, DUL.EventType, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712351066.531608]: Subclasses: []\n", - "[INFO] [1712351066.531891]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.532381]: Instances: []\n", - "[INFO] [1712351066.532653]: Direct Instances: []\n", - "[INFO] [1712351066.532911]: Inverse Restrictions: []\n", - "[INFO] [1712351066.533152]: -------------------\n", - "[INFO] [1712351066.533387]: SOMA.PouringOnto \n", - "[INFO] [1712351066.533628]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712351066.533888]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, SOMA.PouringOnto, DUL.EventType, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712351066.534132]: Subclasses: []\n", - "[INFO] [1712351066.534415]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.534910]: Instances: []\n", - "[INFO] [1712351066.535174]: Direct Instances: []\n", - "[INFO] [1712351066.535423]: Inverse Restrictions: []\n", - "[INFO] [1712351066.535660]: -------------------\n", - "[INFO] [1712351066.535895]: SOMA.Prediction \n", - "[INFO] [1712351066.536131]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712351066.536383]: Ancestors: {SOMA.Prediction, SOMA.DerivingInformation, SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351066.536633]: Subclasses: []\n", - "[INFO] [1712351066.536929]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.537413]: Instances: []\n", - "[INFO] [1712351066.537691]: Direct Instances: []\n", - "[INFO] [1712351066.537951]: Inverse Restrictions: []\n", - "[INFO] [1712351066.538189]: -------------------\n", - "[INFO] [1712351066.538601]: SOMA.Prospecting \n", - "[INFO] [1712351066.538937]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712351066.539268]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Prospecting}\n", - "[INFO] [1712351066.539622]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712351066.540003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.540577]: Instances: []\n", - "[INFO] [1712351066.540934]: Direct Instances: []\n", - "[INFO] [1712351066.541289]: Inverse Restrictions: []\n", - "[INFO] [1712351066.541628]: -------------------\n", - "[INFO] [1712351066.541955]: SOMA.Predilection \n", - "[INFO] [1712351066.542296]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712351066.542633]: Ancestors: {SOMA.Predilection, DUL.Description, DUL.SocialRelation, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, DUL.Relation}\n", - "[INFO] [1712351066.542981]: Subclasses: []\n", - "[INFO] [1712351066.543366]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351066.543938]: Instances: []\n", - "[INFO] [1712351066.544285]: Direct Instances: []\n", - "[INFO] [1712351066.544630]: Inverse Restrictions: []\n", - "[INFO] [1712351066.544967]: -------------------\n", - "[INFO] [1712351066.545293]: SOMA.PreferenceOrder \n", - "[INFO] [1712351066.545650]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712351066.546087]: Ancestors: {DUL.Description, DUL.SocialRelation, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.PreferenceOrder, DUL.Relation}\n", - "[INFO] [1712351066.546525]: Subclasses: []\n", - "[INFO] [1712351066.547005]: Properties: [SOMA.orders, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712351066.547661]: Instances: []\n", - "[INFO] [1712351066.548101]: Direct Instances: []\n", - "[INFO] [1712351066.548527]: Inverse Restrictions: []\n", - "[INFO] [1712351066.548898]: -------------------\n", - "[INFO] [1712351066.549320]: SOMA.PreferenceRegion \n", - "[INFO] [1712351066.549742]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712351066.550162]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Entity, DUL.SocialObjectAttribute, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351066.550546]: Subclasses: []\n", - "[INFO] [1712351066.550962]: Properties: [rdf-schema.label, DUL.isRegionFor, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.551551]: Instances: []\n", - "[INFO] [1712351066.551931]: Direct Instances: []\n", - "[INFO] [1712351066.552289]: Inverse Restrictions: []\n", - "[INFO] [1712351066.552620]: -------------------\n", - "[INFO] [1712351066.552971]: SOMA.PrismaticJoint \n", - "[INFO] [1712351066.553271]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712351066.553556]: Ancestors: {SOMA.MovableJoint, SOMA.PrismaticJoint, DUL.Object, DUL.Entity, SOMA.Joint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.553818]: Subclasses: []\n", - "[INFO] [1712351066.554114]: Properties: [SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.554589]: Instances: []\n", - "[INFO] [1712351066.554867]: Direct Instances: []\n", - "[INFO] [1712351066.555119]: Inverse Restrictions: []\n", - "[INFO] [1712351066.555350]: -------------------\n", - "[INFO] [1712351066.555579]: SOMA.ProcessFlow \n", - "[INFO] [1712351066.555809]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712351066.556050]: Ancestors: {DUL.Description, DUL.SocialObject, SOMA.ProcessFlow, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.556306]: Subclasses: []\n", - "[INFO] [1712351066.556611]: Properties: [rdf-schema.label, SOMA.definesProcess, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.557100]: Instances: []\n", - "[INFO] [1712351066.557377]: Direct Instances: []\n", - "[INFO] [1712351066.557694]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712351066.557943]: -------------------\n", - "[INFO] [1712351066.558176]: SOMA.Progression \n", - "[INFO] [1712351066.558403]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712351066.558636]: Ancestors: {owl.Thing, DUL.Entity, SOMA.Progression, DUL.Situation}\n", - "[INFO] [1712351066.558884]: Subclasses: []\n", - "[INFO] [1712351066.559187]: Properties: [DUL.satisfies, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.559670]: Instances: []\n", - "[INFO] [1712351066.559938]: Direct Instances: []\n", - "[INFO] [1712351066.560200]: Inverse Restrictions: []\n", - "[INFO] [1712351066.560434]: -------------------\n", - "[INFO] [1712351066.560662]: SOMA.Protector \n", - "[INFO] [1712351066.560895]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712351066.561142]: Ancestors: {SOMA.Instrument, DUL.SocialObject, owl.Thing, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.EventAdjacentRole, SOMA.Protector}\n", - "[INFO] [1712351066.561411]: Subclasses: []\n", - "[INFO] [1712351066.561706]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.562199]: Instances: []\n", - "[INFO] [1712351066.562475]: Direct Instances: []\n", - "[INFO] [1712351066.562728]: Inverse Restrictions: []\n", - "[INFO] [1712351066.563048]: -------------------\n", - "[INFO] [1712351066.563285]: SOMA.ProximalTheory \n", - "[INFO] [1712351066.563522]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712351066.563783]: Ancestors: {DUL.Description, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ProximalTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.564030]: Subclasses: []\n", - "[INFO] [1712351066.564337]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines]\n", - "[INFO] [1712351066.564873]: Instances: []\n", - "[INFO] [1712351066.565268]: Direct Instances: []\n", - "[INFO] [1712351066.565650]: Inverse Restrictions: []\n", - "[INFO] [1712351066.566014]: -------------------\n", - "[INFO] [1712351066.566560]: SOMA.PushingAway \n", - "[INFO] [1712351066.566922]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712351066.567192]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, SOMA.PushingAway, DUL.Task, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.567617]: Subclasses: []\n", - "[INFO] [1712351066.568035]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.568641]: Instances: []\n", - "[INFO] [1712351066.569013]: Direct Instances: []\n", - "[INFO] [1712351066.569357]: Inverse Restrictions: []\n", - "[INFO] [1712351066.569684]: -------------------\n", - "[INFO] [1712351066.570014]: SOMA.PushingDown \n", - "[INFO] [1712351066.570346]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712351066.570701]: Ancestors: {DUL.SocialObject, SOMA.Pushing, SOMA.Actuating, DUL.Object, SOMA.PushingDown, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.571044]: Subclasses: []\n", - "[INFO] [1712351066.571425]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.571988]: Instances: []\n", - "[INFO] [1712351066.572351]: Direct Instances: []\n", - "[INFO] [1712351066.572700]: Inverse Restrictions: []\n", - "[INFO] [1712351066.573032]: -------------------\n", - "[INFO] [1712351066.573353]: SOMA.PuttingDown \n", - "[INFO] [1712351066.573668]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712351066.573993]: Ancestors: {DUL.SocialObject, SOMA.PuttingDown, SOMA.Manipulating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.574333]: Subclasses: []\n", - "[INFO] [1712351066.574713]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.575275]: Instances: []\n", - "[INFO] [1712351066.575636]: Direct Instances: []\n", - "[INFO] [1712351066.575975]: Inverse Restrictions: []\n", - "[INFO] [1712351066.576296]: -------------------\n", - "[INFO] [1712351066.576613]: SOMA.QualityTransition \n", - "[INFO] [1712351066.576944]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712351066.577215]: Ancestors: {SOMA.QualityTransition, DUL.Transition, DUL.Entity, DUL.Situation, owl.Thing}\n", - "[INFO] [1712351066.577456]: Subclasses: []\n", - "[INFO] [1712351066.577736]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.578203]: Instances: []\n", - "[INFO] [1712351066.578474]: Direct Instances: []\n", - "[INFO] [1712351066.578722]: Inverse Restrictions: []\n", - "[INFO] [1712351066.578950]: -------------------\n", - "[INFO] [1712351066.579175]: SOMA.Query \n", - "[INFO] [1712351066.579401]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712351066.579645]: Ancestors: {DUL.SocialObject, SOMA.Message, DUL.Object, SOMA.Item, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing, SOMA.Query}\n", - "[INFO] [1712351066.579888]: Subclasses: []\n", - "[INFO] [1712351066.580172]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.580672]: Instances: []\n", - "[INFO] [1712351066.580943]: Direct Instances: []\n", - "[INFO] [1712351066.581234]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712351066.581464]: -------------------\n", - "[INFO] [1712351066.581695]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712351066.581928]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.582162]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", - "[INFO] [1712351066.582395]: Subclasses: []\n", - "[INFO] [1712351066.582681]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.583178]: Instances: []\n", - "[INFO] [1712351066.583443]: Direct Instances: []\n", - "[INFO] [1712351066.583688]: Inverse Restrictions: []\n", - "[INFO] [1712351066.583914]: -------------------\n", - "[INFO] [1712351066.584140]: SOMA.QueryEngine \n", - "[INFO] [1712351066.584374]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351066.584612]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.QueryEngine, DUL.Role, owl.Thing}\n", - "[INFO] [1712351066.584851]: Subclasses: []\n", - "[INFO] [1712351066.585132]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.585620]: Instances: []\n", - "[INFO] [1712351066.585883]: Direct Instances: []\n", - "[INFO] [1712351066.586127]: Inverse Restrictions: []\n", - "[INFO] [1712351066.586353]: -------------------\n", - "[INFO] [1712351066.586580]: SOMA.Reaching \n", - "[INFO] [1712351066.586812]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712351066.587057]: Ancestors: {DUL.SocialObject, SOMA.Reaching, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.587292]: Subclasses: []\n", - "[INFO] [1712351066.587579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.588077]: Instances: []\n", - "[INFO] [1712351066.588336]: Direct Instances: []\n", - "[INFO] [1712351066.588576]: Inverse Restrictions: []\n", - "[INFO] [1712351066.588807]: -------------------\n", - "[INFO] [1712351066.589034]: SOMA.Retracting \n", - "[INFO] [1712351066.589260]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712351066.589495]: Ancestors: {SOMA.Retracting, DUL.SocialObject, SOMA.Manipulating, SOMA.EndEffectorPositioning, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.589742]: Subclasses: []\n", - "[INFO] [1712351066.590030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.590517]: Instances: []\n", - "[INFO] [1712351066.590800]: Direct Instances: []\n", - "[INFO] [1712351066.591060]: Inverse Restrictions: []\n", - "[INFO] [1712351066.591290]: -------------------\n", - "[INFO] [1712351066.591527]: SOMA.Reasoner \n", - "[INFO] [1712351066.591761]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712351066.592010]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing}\n", - "[INFO] [1712351066.592260]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712351066.592542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.593033]: Instances: []\n", - "[INFO] [1712351066.593305]: Direct Instances: []\n", - "[INFO] [1712351066.593565]: Inverse Restrictions: []\n", - "[INFO] [1712351066.593807]: -------------------\n", - "[INFO] [1712351066.594036]: SOMA.RecipientRole \n", - "[INFO] [1712351066.594266]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712351066.594511]: Ancestors: {SOMA.GoalRole, SOMA.RecipientRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, owl.Thing}\n", - "[INFO] [1712351066.594757]: Subclasses: []\n", - "[INFO] [1712351066.595042]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.595517]: Instances: []\n", - "[INFO] [1712351066.595790]: Direct Instances: []\n", - "[INFO] [1712351066.596040]: Inverse Restrictions: []\n", - "[INFO] [1712351066.596270]: -------------------\n", - "[INFO] [1712351066.596497]: SOMA.RecordedEpisode \n", - "[INFO] [1712351066.596725]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712351066.597054]: Ancestors: {SOMA.RecordedEpisode, DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing}\n", - "[INFO] [1712351066.597370]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712351066.597701]: Properties: [SOMA.includesRecord, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.598203]: Instances: []\n", - "[INFO] [1712351066.598475]: Direct Instances: []\n", - "[INFO] [1712351066.598735]: Inverse Restrictions: []\n", - "[INFO] [1712351066.598988]: -------------------\n", - "[INFO] [1712351066.599231]: SOMA.RedColor \n", - "[INFO] [1712351066.599467]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712351066.599706]: Ancestors: {SOMA.ColorRegion, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.RedColor, owl.Thing}\n", - "[INFO] [1712351066.599949]: Subclasses: []\n", - "[INFO] [1712351066.600256]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.600752]: Instances: []\n", - "[INFO] [1712351066.601036]: Direct Instances: []\n", - "[INFO] [1712351066.601284]: Inverse Restrictions: []\n", - "[INFO] [1712351066.601516]: -------------------\n", - "[INFO] [1712351066.601747]: SOMA.Reification \n", - "[INFO] [1712351066.601977]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712351066.602223]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Reification, owl.Thing}\n", - "[INFO] [1712351066.602469]: Subclasses: []\n", - "[INFO] [1712351066.602757]: Properties: [SOMA.isReificationOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.603246]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712351066.603533]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712351066.603800]: Inverse Restrictions: []\n", - "[INFO] [1712351066.604035]: -------------------\n", - "[INFO] [1712351066.604264]: SOMA.RelationalDatabase \n", - "[INFO] [1712351066.604501]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712351066.604751]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.RelationalDatabase, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, DUL.Role, owl.Thing}\n", - "[INFO] [1712351066.605001]: Subclasses: []\n", - "[INFO] [1712351066.605291]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.605794]: Instances: []\n", - "[INFO] [1712351066.606056]: Direct Instances: []\n", - "[INFO] [1712351066.606304]: Inverse Restrictions: []\n", - "[INFO] [1712351066.606536]: -------------------\n", - "[INFO] [1712351066.606765]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712351066.606995]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712351066.607247]: Ancestors: {SOMA.Language, SOMA.System, DUL.SocialObject, DUL.Object, SOMA.QueryLanguage, DUL.Entity, SOMA.Computer_Language, SOMA.RelationalQueryLanguage, SOMA.FormalLanguage, owl.Thing}\n", - "[INFO] [1712351066.607491]: Subclasses: []\n", - "[INFO] [1712351066.607778]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.608255]: Instances: []\n", - "[INFO] [1712351066.608528]: Direct Instances: []\n", - "[INFO] [1712351066.608784]: Inverse Restrictions: []\n", - "[INFO] [1712351066.609022]: -------------------\n", - "[INFO] [1712351066.609248]: SOMA.RelevantPart \n", - "[INFO] [1712351066.609497]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712351066.609747]: Ancestors: {SOMA.Feature, DUL.Object, DUL.Entity, SOMA.RelevantPart, owl.Thing}\n", - "[INFO] [1712351066.609993]: Subclasses: []\n", - "[INFO] [1712351066.610276]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.610750]: Instances: []\n", - "[INFO] [1712351066.611032]: Direct Instances: []\n", - "[INFO] [1712351066.611289]: Inverse Restrictions: []\n", - "[INFO] [1712351066.611624]: -------------------\n", - "[INFO] [1712351066.611867]: SOMA.Remembering \n", - "[INFO] [1712351066.612110]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712351066.612362]: Ancestors: {owl.Thing, SOMA.Remembering}\n", - "[INFO] [1712351066.612608]: Subclasses: []\n", - "[INFO] [1712351066.612902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.613413]: Instances: []\n", - "[INFO] [1712351066.613689]: Direct Instances: []\n", - "[INFO] [1712351066.613947]: Inverse Restrictions: []\n", - "[INFO] [1712351066.614183]: -------------------\n", - "[INFO] [1712351066.614412]: SOMA.Retrospecting \n", - "[INFO] [1712351066.614643]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712351066.614888]: Ancestors: {SOMA.Retrospecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351066.615132]: Subclasses: []\n", - "[INFO] [1712351066.615421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.615935]: Instances: []\n", - "[INFO] [1712351066.616217]: Direct Instances: []\n", - "[INFO] [1712351066.616518]: Inverse Restrictions: []\n", - "[INFO] [1712351066.616758]: -------------------\n", - "[INFO] [1712351066.616999]: SOMA.RemovedObject \n", - "[INFO] [1712351066.617228]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712351066.617478]: Ancestors: {SOMA.RemovedObject, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Patient, SOMA.ExcludedObject, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.617730]: Subclasses: []\n", - "[INFO] [1712351066.618021]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.618525]: Instances: []\n", - "[INFO] [1712351066.618793]: Direct Instances: []\n", - "[INFO] [1712351066.619044]: Inverse Restrictions: []\n", - "[INFO] [1712351066.619272]: -------------------\n", - "[INFO] [1712351066.619499]: SOMA.Replanning \n", - "[INFO] [1712351066.619730]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712351066.619975]: Ancestors: {SOMA.Planning, SOMA.Replanning, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351066.620217]: Subclasses: []\n", - "[INFO] [1712351066.620501]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.620977]: Instances: []\n", - "[INFO] [1712351066.621255]: Direct Instances: []\n", - "[INFO] [1712351066.621511]: Inverse Restrictions: []\n", - "[INFO] [1712351066.621746]: -------------------\n", - "[INFO] [1712351066.621974]: SOMA.RevoluteJoint \n", - "[INFO] [1712351066.622219]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712351066.622470]: Ancestors: {SOMA.MovableJoint, DUL.Object, DUL.Entity, SOMA.HingeJoint, SOMA.Joint, SOMA.RevoluteJoint, DUL.PhysicalBody, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.622709]: Subclasses: []\n", - "[INFO] [1712351066.622996]: Properties: [SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.623554]: Instances: []\n", - "[INFO] [1712351066.623851]: Direct Instances: []\n", - "[INFO] [1712351066.624124]: Inverse Restrictions: []\n", - "[INFO] [1712351066.624372]: -------------------\n", - "[INFO] [1712351066.624623]: SOMA.Surface \n", - "[INFO] [1712351066.624877]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712351066.625132]: Ancestors: {DUL.PhysicalPlace, SOMA.Surface, DUL.Object, DUL.Entity, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.625385]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712351066.625672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.626157]: Instances: []\n", - "[INFO] [1712351066.626430]: Direct Instances: []\n", - "[INFO] [1712351066.626686]: Inverse Restrictions: []\n", - "[INFO] [1712351066.626917]: -------------------\n", - "[INFO] [1712351066.627143]: SOMA.Rubbing \n", - "[INFO] [1712351066.627365]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712351066.627602]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, SOMA.Rubbing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.627849]: Subclasses: []\n", - "[INFO] [1712351066.628136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.628609]: Instances: []\n", - "[INFO] [1712351066.628869]: Direct Instances: []\n", - "[INFO] [1712351066.629115]: Inverse Restrictions: []\n", - "[INFO] [1712351066.629352]: -------------------\n", - "[INFO] [1712351066.629577]: SOMA.Scene \n", - "[INFO] [1712351066.629808]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712351066.630038]: Ancestors: {owl.Thing, DUL.Entity, SOMA.Scene, DUL.Situation}\n", - "[INFO] [1712351066.630285]: Subclasses: []\n", - "[INFO] [1712351066.630579]: Properties: [DUL.satisfies, DUL.includesEvent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.631073]: Instances: []\n", - "[INFO] [1712351066.631357]: Direct Instances: []\n", - "[INFO] [1712351066.631683]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712351066.631942]: -------------------\n", - "[INFO] [1712351066.632195]: SOMA.SelectedObject \n", - "[INFO] [1712351066.632456]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712351066.632745]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, owl.Thing, SOMA.SelectedObject}\n", - "[INFO] [1712351066.633034]: Subclasses: []\n", - "[INFO] [1712351066.633367]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.633892]: Instances: []\n", - "[INFO] [1712351066.634180]: Direct Instances: []\n", - "[INFO] [1712351066.634505]: Inverse Restrictions: []\n", - "[INFO] [1712351066.634744]: -------------------\n", - "[INFO] [1712351066.634975]: SOMA.Selecting \n", - "[INFO] [1712351066.635206]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712351066.635449]: Ancestors: {SOMA.Selecting, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351066.635687]: Subclasses: []\n", - "[INFO] [1712351066.635970]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.636439]: Instances: []\n", - "[INFO] [1712351066.636706]: Direct Instances: []\n", - "[INFO] [1712351066.637073]: Inverse Restrictions: []\n", - "[INFO] [1712351066.637370]: -------------------\n", - "[INFO] [1712351066.637630]: SOMA.SelectingItem \n", - "[INFO] [1712351066.637891]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712351066.638144]: Ancestors: {SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.SelectingItem, SOMA.GetTaskParameter}\n", - "[INFO] [1712351066.638405]: Subclasses: []\n", - "[INFO] [1712351066.638705]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.639190]: Instances: []\n", - "[INFO] [1712351066.639452]: Direct Instances: []\n", - "[INFO] [1712351066.639717]: Inverse Restrictions: []\n", - "[INFO] [1712351066.639952]: -------------------\n", - "[INFO] [1712351066.640181]: SOMA.SelfReflection \n", - "[INFO] [1712351066.640408]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712351066.640648]: Ancestors: {SOMA.MetacognitiveControlling, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.MentalTask, DUL.Task, SOMA.SelfReflection, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.640913]: Subclasses: []\n", - "[INFO] [1712351066.641207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351066.641690]: Instances: []\n", - "[INFO] [1712351066.641963]: Direct Instances: []\n", - "[INFO] [1712351066.642217]: Inverse Restrictions: []\n", - "[INFO] [1712351066.642449]: -------------------\n", - "[INFO] [1712351066.642678]: SOMA.Serving \n", - "[INFO] [1712351066.642921]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712351066.643182]: Ancestors: {DUL.SocialObject, SOMA.Actuating, DUL.Object, SOMA.PhysicalTask, DUL.Entity, SOMA.Serving, DUL.Task, DUL.Concept, DUL.EventType, SOMA.Delivering, owl.Thing}\n", - "[INFO] [1712351066.643430]: Subclasses: []\n", - "[INFO] [1712351066.643721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.644201]: Instances: []\n", - "[INFO] [1712351066.644467]: Direct Instances: []\n", - "[INFO] [1712351066.644718]: Inverse Restrictions: []\n", - "[INFO] [1712351066.644965]: -------------------\n", - "[INFO] [1712351066.645246]: SOMA.SettingGripper \n", - "[INFO] [1712351066.645492]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712351066.645744]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.SettingGripper, SOMA.AssumingPose, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.645999]: Subclasses: []\n", - "[INFO] [1712351066.646312]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.646806]: Instances: []\n", - "[INFO] [1712351066.647057]: Direct Instances: []\n", - "[INFO] [1712351066.647303]: Inverse Restrictions: []\n", - "[INFO] [1712351066.647545]: -------------------\n", - "[INFO] [1712351066.647779]: SOMA.6DPose \n", - "[INFO] [1712351066.648012]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712351066.648247]: Ancestors: {SOMA.6DPose, DUL.Entity, DUL.Region, DUL.SpaceRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351066.648483]: Subclasses: []\n", - "[INFO] [1712351066.648802]: Properties: [rdf-schema.label, SOMA.hasPositionData, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.649298]: Instances: []\n", - "[INFO] [1712351066.649563]: Direct Instances: []\n", - "[INFO] [1712351066.649858]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712351066.650111]: -------------------\n", - "[INFO] [1712351066.650350]: SOMA.Sharpness \n", - "[INFO] [1712351066.650580]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351066.650816]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, SOMA.Sharpness}\n", - "[INFO] [1712351066.651051]: Subclasses: []\n", - "[INFO] [1712351066.651330]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.651818]: Instances: []\n", - "[INFO] [1712351066.652076]: Direct Instances: []\n", - "[INFO] [1712351066.652322]: Inverse Restrictions: []\n", - "[INFO] [1712351066.652548]: -------------------\n", - "[INFO] [1712351066.652773]: SOMA.Simulating \n", - "[INFO] [1712351066.653028]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712351066.653277]: Ancestors: {SOMA.Simulating, SOMA.DerivingInformation, SOMA.Prospecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712351066.653517]: Subclasses: []\n", - "[INFO] [1712351066.653800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.654269]: Instances: []\n", - "[INFO] [1712351066.654545]: Direct Instances: []\n", - "[INFO] [1712351066.654799]: Inverse Restrictions: []\n", - "[INFO] [1712351066.655030]: -------------------\n", - "[INFO] [1712351066.655257]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712351066.655483]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712351066.655735]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing, SOMA.Simulation_Reasoner}\n", - "[INFO] [1712351066.655981]: Subclasses: []\n", - "[INFO] [1712351066.656269]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.656747]: Instances: []\n", - "[INFO] [1712351066.657025]: Direct Instances: []\n", - "[INFO] [1712351066.657276]: Inverse Restrictions: []\n", - "[INFO] [1712351066.657509]: -------------------\n", - "[INFO] [1712351066.657739]: SOMA.Size \n", - "[INFO] [1712351066.657966]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712351066.658211]: Ancestors: {SOMA.PhysicalQuality, DUL.Quality, SOMA.Size, DUL.Entity, SOMA.Intrinsic, owl.Thing}\n", - "[INFO] [1712351066.658453]: Subclasses: []\n", - "[INFO] [1712351066.658737]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.659212]: Instances: []\n", - "[INFO] [1712351066.659483]: Direct Instances: []\n", - "[INFO] [1712351066.659734]: Inverse Restrictions: []\n", - "[INFO] [1712351066.659970]: -------------------\n", - "[INFO] [1712351066.660199]: SOMA.Slicing \n", - "[INFO] [1712351066.660426]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712351066.660680]: Ancestors: {SOMA.ModifyingPhysicalObject, DUL.SocialObject, SOMA.Slicing, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing, SOMA.Cutting}\n", - "[INFO] [1712351066.660934]: Subclasses: []\n", - "[INFO] [1712351066.661218]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.661692]: Instances: []\n", - "[INFO] [1712351066.661949]: Direct Instances: []\n", - "[INFO] [1712351066.662196]: Inverse Restrictions: []\n", - "[INFO] [1712351066.662428]: -------------------\n", - "[INFO] [1712351066.662654]: SOMA.Sluggishness \n", - "[INFO] [1712351066.662879]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712351066.663139]: Ancestors: {DUL.Description, SOMA.Sluggishness, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Amateurish, owl.Thing, SOMA.DexterityDiagnosis}\n", - "[INFO] [1712351066.663410]: Subclasses: []\n", - "[INFO] [1712351066.663700]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.664175]: Instances: []\n", - "[INFO] [1712351066.664422]: Direct Instances: []\n", - "[INFO] [1712351066.664674]: Inverse Restrictions: []\n", - "[INFO] [1712351066.664931]: -------------------\n", - "[INFO] [1712351066.665169]: SOMA.SocialState \n", - "[INFO] [1712351066.665407]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712351066.665647]: Ancestors: {SOMA.State, DUL.Entity, DUL.Event, owl.Thing, SOMA.SocialState}\n", - "[INFO] [1712351066.665902]: Subclasses: []\n", - "[INFO] [1712351066.666197]: Properties: [rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.666669]: Instances: []\n", - "[INFO] [1712351066.666919]: Direct Instances: []\n", - "[INFO] [1712351066.667163]: Inverse Restrictions: []\n", - "[INFO] [1712351066.667401]: -------------------\n", - "[INFO] [1712351066.667631]: SOMA.Software_Configuration \n", - "[INFO] [1712351066.667863]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712351066.668105]: Ancestors: {DUL.Collection, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Software_Configuration, DUL.Configuration, owl.Thing}\n", - "[INFO] [1712351066.668357]: Subclasses: []\n", - "[INFO] [1712351066.668649]: Properties: [DUL.isDescribedBy, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351066.669138]: Instances: []\n", - "[INFO] [1712351066.669412]: Direct Instances: []\n", - "[INFO] [1712351066.669763]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712351066.670002]: -------------------\n", - "[INFO] [1712351066.670231]: SOMA.SoftwareLibrary \n", - "[INFO] [1712351066.670458]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712351066.670709]: Ancestors: {DUL.Description, DUL.Design, DUL.SocialObject, SOMA.SoftwareLibrary, DUL.Object, DUL.Entity, SOMA.Software, owl.Thing}\n", - "[INFO] [1712351066.670954]: Subclasses: []\n", - "[INFO] [1712351066.671242]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712351066.671723]: Instances: []\n", - "[INFO] [1712351066.671990]: Direct Instances: []\n", - "[INFO] [1712351066.672241]: Inverse Restrictions: []\n", - "[INFO] [1712351066.672472]: -------------------\n", - "[INFO] [1712351066.672698]: SOMA.SourceMaterialRole \n", - "[INFO] [1712351066.672930]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712351066.673172]: Ancestors: {DUL.SocialObject, owl.Thing, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.SourceMaterialRole}\n", - "[INFO] [1712351066.673424]: Subclasses: []\n", - "[INFO] [1712351066.673714]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.674190]: Instances: []\n", - "[INFO] [1712351066.674465]: Direct Instances: []\n", - "[INFO] [1712351066.674710]: Inverse Restrictions: []\n", - "[INFO] [1712351066.674942]: -------------------\n", - "[INFO] [1712351066.675172]: SOMA.SphereShape \n", - "[INFO] [1712351066.675404]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712351066.675643]: Ancestors: {SOMA.ShapeRegion, DUL.Region, SOMA.SphereShape, DUL.Entity, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351066.675897]: Subclasses: []\n", - "[INFO] [1712351066.676192]: Properties: [rdf-schema.label, SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.676671]: Instances: []\n", - "[INFO] [1712351066.676929]: Direct Instances: []\n", - "[INFO] [1712351066.677173]: Inverse Restrictions: []\n", - "[INFO] [1712351066.677418]: -------------------\n", - "[INFO] [1712351066.677653]: SOMA.Standing \n", - "[INFO] [1712351066.677881]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712351066.678120]: Ancestors: {DUL.SocialObject, SOMA.Standing, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", - "[INFO] [1712351066.678370]: Subclasses: []\n", - "[INFO] [1712351066.678672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.679147]: Instances: []\n", - "[INFO] [1712351066.679403]: Direct Instances: []\n", - "[INFO] [1712351066.679671]: Inverse Restrictions: []\n", - "[INFO] [1712351066.679917]: -------------------\n", - "[INFO] [1712351066.680165]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712351066.680401]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712351066.680639]: Ancestors: {SOMA.StaticFrictionAttribute, DUL.Entity, DUL.Region, DUL.PhysicalAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing}\n", - "[INFO] [1712351066.680881]: Subclasses: []\n", - "[INFO] [1712351066.681170]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.681669]: Instances: []\n", - "[INFO] [1712351066.681930]: Direct Instances: []\n", - "[INFO] [1712351066.682185]: Inverse Restrictions: []\n", - "[INFO] [1712351066.682425]: -------------------\n", - "[INFO] [1712351066.682667]: SOMA.Status \n", - "[INFO] [1712351066.682894]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712351066.683148]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, DUL.Entity, DUL.Concept, owl.Thing, SOMA.Status}\n", - "[INFO] [1712351066.683391]: Subclasses: []\n", - "[INFO] [1712351066.683673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.684140]: Instances: []\n", - "[INFO] [1712351066.684411]: Direct Instances: []\n", - "[INFO] [1712351066.684694]: Inverse Restrictions: []\n", - "[INFO] [1712351066.684938]: -------------------\n", - "[INFO] [1712351066.685168]: SOMA.StatusFailure \n", - "[INFO] [1712351066.685396]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351066.685634]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.StatusFailure, owl.Thing}\n", - "[INFO] [1712351066.685880]: Subclasses: []\n", - "[INFO] [1712351066.686167]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.686662]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712351066.686947]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712351066.687214]: Inverse Restrictions: []\n", - "[INFO] [1712351066.687449]: -------------------\n", - "[INFO] [1712351066.687677]: SOMA.StimulusRole \n", - "[INFO] [1712351066.687915]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712351066.688165]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.StimulusRole, DUL.Role, SOMA.EventAdjacentRole, SOMA.CausativeRole, owl.Thing}\n", - "[INFO] [1712351066.688406]: Subclasses: []\n", - "[INFO] [1712351066.688693]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.689420]: Instances: []\n", - "[INFO] [1712351066.689750]: Direct Instances: []\n", - "[INFO] [1712351066.690032]: Inverse Restrictions: []\n", - "[INFO] [1712351066.690289]: -------------------\n", - "[INFO] [1712351066.690600]: SOMA.Stirring \n", - "[INFO] [1712351066.690908]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712351066.691185]: Ancestors: {SOMA.Constructing, DUL.SocialObject, SOMA.Mixing, DUL.Object, SOMA.Stirring, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.691442]: Subclasses: []\n", - "[INFO] [1712351066.691744]: Properties: [SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.692249]: Instances: []\n", - "[INFO] [1712351066.692529]: Direct Instances: []\n", - "[INFO] [1712351066.692788]: Inverse Restrictions: []\n", - "[INFO] [1712351066.693032]: -------------------\n", - "[INFO] [1712351066.693262]: SOMA.Storage \n", - "[INFO] [1712351066.693494]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712351066.693750]: Ancestors: {SOMA.Extrinsic, SOMA.Storage, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, DUL.Entity, SOMA.Enclosing, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.693999]: Subclasses: []\n", - "[INFO] [1712351066.694289]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.694767]: Instances: []\n", - "[INFO] [1712351066.695050]: Direct Instances: []\n", - "[INFO] [1712351066.695471]: Inverse Restrictions: []\n", - "[INFO] [1712351066.695935]: -------------------\n", - "[INFO] [1712351066.696269]: SOMA.StructuralDesign \n", - "[INFO] [1712351066.696546]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712351066.696848]: Ancestors: {SOMA.StructuralDesign, DUL.Description, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.697130]: Subclasses: []\n", - "[INFO] [1712351066.697461]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.697989]: Instances: []\n", - "[INFO] [1712351066.698280]: Direct Instances: []\n", - "[INFO] [1712351066.698542]: Inverse Restrictions: []\n", - "[INFO] [1712351066.698782]: -------------------\n", - "[INFO] [1712351066.699033]: SOMA.TaskInvocation \n", - "[INFO] [1712351066.699289]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712351066.699562]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Workflow, SOMA.TaskInvocation, owl.Thing, DUL.Plan}\n", - "[INFO] [1712351066.699823]: Subclasses: []\n", - "[INFO] [1712351066.700132]: Properties: [rdf-schema.label, DUL.definesTask, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.700647]: Instances: []\n", - "[INFO] [1712351066.700943]: Direct Instances: []\n", - "[INFO] [1712351066.701283]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712351066.701531]: -------------------\n", - "[INFO] [1712351066.701766]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712351066.702004]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712351066.702260]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351066.702516]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712351066.702866]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.703482]: Instances: []\n", - "[INFO] [1712351066.703808]: Direct Instances: []\n", - "[INFO] [1712351066.704096]: Inverse Restrictions: []\n", - "[INFO] [1712351066.704358]: -------------------\n", - "[INFO] [1712351066.704602]: SOMA.Successfulness \n", - "[INFO] [1712351066.704848]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712351066.705101]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Successfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351066.705347]: Subclasses: []\n", - "[INFO] [1712351066.705644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.706148]: Instances: []\n", - "[INFO] [1712351066.706419]: Direct Instances: []\n", - "[INFO] [1712351066.706671]: Inverse Restrictions: []\n", - "[INFO] [1712351066.706905]: -------------------\n", - "[INFO] [1712351066.707135]: SOMA.SupportState \n", - "[INFO] [1712351066.707395]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712351066.707651]: Ancestors: {SOMA.SupportState, SOMA.FunctionalControl, DUL.SocialObject, DUL.Object, SOMA.StateType, DUL.Entity, DUL.Concept, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.707900]: Subclasses: []\n", - "[INFO] [1712351066.708193]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.708692]: Instances: []\n", - "[INFO] [1712351066.708962]: Direct Instances: []\n", - "[INFO] [1712351066.709209]: Inverse Restrictions: []\n", - "[INFO] [1712351066.709440]: -------------------\n", - "[INFO] [1712351066.709666]: SOMA.Supporter \n", - "[INFO] [1712351066.709897]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712351066.710147]: Ancestors: {SOMA.Instrument, DUL.SocialObject, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Restrictor, DUL.Role, SOMA.Supporter, owl.Thing}\n", - "[INFO] [1712351066.710388]: Subclasses: []\n", - "[INFO] [1712351066.710672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.711151]: Instances: []\n", - "[INFO] [1712351066.711436]: Direct Instances: []\n", - "[INFO] [1712351066.711751]: Inverse Restrictions: []\n", - "[INFO] [1712351066.711989]: -------------------\n", - "[INFO] [1712351066.712222]: SOMA.SupportTheory \n", - "[INFO] [1712351066.712454]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712351066.712714]: Ancestors: {DUL.Description, SOMA.ControlTheory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Object, DUL.Entity, SOMA.SupportTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Theory}\n", - "[INFO] [1712351066.712975]: Subclasses: []\n", - "[INFO] [1712351066.713274]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.713763]: Instances: []\n", - "[INFO] [1712351066.714044]: Direct Instances: []\n", - "[INFO] [1712351066.714307]: Inverse Restrictions: []\n", - "[INFO] [1712351066.714542]: -------------------\n", - "[INFO] [1712351066.714775]: SOMA.SupportedObject \n", - "[INFO] [1712351066.715004]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712351066.715248]: Ancestors: {DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.SupportedObject, DUL.Entity, SOMA.Patient, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.715509]: Subclasses: []\n", - "[INFO] [1712351066.715807]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.716318]: Instances: []\n", - "[INFO] [1712351066.716613]: Direct Instances: []\n", - "[INFO] [1712351066.716931]: Inverse Restrictions: []\n", - "[INFO] [1712351066.717309]: -------------------\n", - "[INFO] [1712351066.717591]: SOMA.SymbolicReasoner \n", - "[INFO] [1712351066.717851]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712351066.718112]: Ancestors: {SOMA.SoftwareRole, DUL.SocialObject, SOMA.SymbolicReasoner, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.Reasoner, owl.Thing}\n", - "[INFO] [1712351066.718369]: Subclasses: []\n", - "[INFO] [1712351066.718664]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.719167]: Instances: []\n", - "[INFO] [1712351066.719438]: Direct Instances: []\n", - "[INFO] [1712351066.719681]: Inverse Restrictions: []\n", - "[INFO] [1712351066.719910]: -------------------\n", - "[INFO] [1712351066.720136]: SOMA.Tapping \n", - "[INFO] [1712351066.720360]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712351066.720612]: Ancestors: {SOMA.Tapping, DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.720857]: Subclasses: []\n", - "[INFO] [1712351066.721142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.721612]: Instances: []\n", - "[INFO] [1712351066.721883]: Direct Instances: []\n", - "[INFO] [1712351066.722132]: Inverse Restrictions: []\n", - "[INFO] [1712351066.722361]: -------------------\n", - "[INFO] [1712351066.722587]: SOMA.Taxis \n", - "[INFO] [1712351066.722810]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712351066.723046]: Ancestors: {SOMA.Taxis, DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.723292]: Subclasses: []\n", - "[INFO] [1712351066.723577]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.724047]: Instances: []\n", - "[INFO] [1712351066.724293]: Direct Instances: []\n", - "[INFO] [1712351066.724527]: Inverse Restrictions: []\n", - "[INFO] [1712351066.724764]: -------------------\n", - "[INFO] [1712351066.724999]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712351066.725229]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712351066.725463]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.FunctionalDiagnosis, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.725706]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712351066.726001]: Properties: [rdf-schema.label, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.726490]: Instances: []\n", - "[INFO] [1712351066.726743]: Direct Instances: []\n", - "[INFO] [1712351066.726990]: Inverse Restrictions: []\n", - "[INFO] [1712351066.727225]: -------------------\n", - "[INFO] [1712351066.727453]: SOMA.Temperature \n", - "[INFO] [1712351066.727684]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712351066.727917]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Intrinsic, SOMA.Temperature}\n", - "[INFO] [1712351066.728149]: Subclasses: []\n", - "[INFO] [1712351066.728446]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.comment]\n", - "[INFO] [1712351066.728928]: Instances: []\n", - "[INFO] [1712351066.729194]: Direct Instances: []\n", - "[INFO] [1712351066.729483]: Inverse Restrictions: []\n", - "[INFO] [1712351066.729728]: -------------------\n", - "[INFO] [1712351066.729962]: SOMA.TemperatureRegion \n", - "[INFO] [1712351066.730192]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712351066.730473]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.TemperatureRegion, owl.Thing}\n", - "[INFO] [1712351066.730728]: Subclasses: []\n", - "[INFO] [1712351066.731028]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.731514]: Instances: []\n", - "[INFO] [1712351066.731786]: Direct Instances: []\n", - "[INFO] [1712351066.732110]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712351066.732345]: -------------------\n", - "[INFO] [1712351066.732571]: SOMA.Tempering \n", - "[INFO] [1712351066.732805]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712351066.733065]: Ancestors: {SOMA.Extrinsic, SOMA.Variability, SOMA.Tempering, SOMA.PhysicalQuality, DUL.Quality, DUL.Entity, SOMA.Disposition, owl.Thing}\n", - "[INFO] [1712351066.733319]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712351066.733602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.734080]: Instances: []\n", - "[INFO] [1712351066.734360]: Direct Instances: []\n", - "[INFO] [1712351066.734619]: Inverse Restrictions: []\n", - "[INFO] [1712351066.734851]: -------------------\n", - "[INFO] [1712351066.735075]: SOMA.ThinkAloud \n", - "[INFO] [1712351066.735298]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712351066.735540]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTask, owl.Thing, DUL.Object, DUL.Entity, DUL.Concept, DUL.Task, SOMA.ThinkAloud, DUL.EventType, SOMA.CommunicationReport}\n", - "[INFO] [1712351066.735785]: Subclasses: []\n", - "[INFO] [1712351066.736068]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.736535]: Instances: []\n", - "[INFO] [1712351066.736805]: Direct Instances: []\n", - "[INFO] [1712351066.737056]: Inverse Restrictions: []\n", - "[INFO] [1712351066.737284]: -------------------\n", - "[INFO] [1712351066.737512]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712351066.737740]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351066.737993]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, SOMA.ThinkAloudActionTopic, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.738241]: Subclasses: []\n", - "[INFO] [1712351066.738524]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.738991]: Instances: []\n", - "[INFO] [1712351066.739255]: Direct Instances: []\n", - "[INFO] [1712351066.739506]: Inverse Restrictions: []\n", - "[INFO] [1712351066.739732]: -------------------\n", - "[INFO] [1712351066.739954]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712351066.740173]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712351066.740419]: Ancestors: {DUL.SocialObject, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ResourceRole, SOMA.CommunicationTopic, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.740659]: Subclasses: []\n", - "[INFO] [1712351066.740956]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.741504]: Instances: []\n", - "[INFO] [1712351066.741785]: Direct Instances: []\n", - "[INFO] [1712351066.742045]: Inverse Restrictions: []\n", - "[INFO] [1712351066.742276]: -------------------\n", - "[INFO] [1712351066.742501]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712351066.742733]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351066.742975]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.743226]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712351066.743525]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.744022]: Instances: []\n", - "[INFO] [1712351066.744295]: Direct Instances: []\n", - "[INFO] [1712351066.744537]: Inverse Restrictions: []\n", - "[INFO] [1712351066.744762]: -------------------\n", - "[INFO] [1712351066.744998]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712351066.745229]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351066.745469]: Ancestors: {SOMA.ThinkAloudObstructionTopic, DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.745701]: Subclasses: []\n", - "[INFO] [1712351066.745986]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.746481]: Instances: []\n", - "[INFO] [1712351066.746742]: Direct Instances: []\n", - "[INFO] [1712351066.747046]: Inverse Restrictions: []\n", - "[INFO] [1712351066.747299]: -------------------\n", - "[INFO] [1712351066.747531]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712351066.747748]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351066.747989]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing, SOMA.ThinkAloudOpinionTopic}\n", - "[INFO] [1712351066.748222]: Subclasses: []\n", - "[INFO] [1712351066.748493]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.748965]: Instances: []\n", - "[INFO] [1712351066.749246]: Direct Instances: []\n", - "[INFO] [1712351066.749502]: Inverse Restrictions: []\n", - "[INFO] [1712351066.749752]: -------------------\n", - "[INFO] [1712351066.749987]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712351066.750211]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351066.750454]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudTopic, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudPerceptionTopic, owl.Thing}\n", - "[INFO] [1712351066.750690]: Subclasses: []\n", - "[INFO] [1712351066.750967]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.751426]: Instances: []\n", - "[INFO] [1712351066.751678]: Direct Instances: []\n", - "[INFO] [1712351066.751915]: Inverse Restrictions: []\n", - "[INFO] [1712351066.752138]: -------------------\n", - "[INFO] [1712351066.752358]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712351066.752587]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712351066.752837]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, DUL.Entity, DUL.Concept, SOMA.ThinkAloudPlanTopic, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.753083]: Subclasses: []\n", - "[INFO] [1712351066.753361]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.753857]: Instances: []\n", - "[INFO] [1712351066.754116]: Direct Instances: []\n", - "[INFO] [1712351066.754354]: Inverse Restrictions: []\n", - "[INFO] [1712351066.754577]: -------------------\n", - "[INFO] [1712351066.754795]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712351066.755024]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712351066.755266]: Ancestors: {DUL.SocialObject, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Object, SOMA.ThinkAloudKnowledgeTopic, DUL.Entity, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, owl.Thing}\n", - "[INFO] [1712351066.755500]: Subclasses: []\n", - "[INFO] [1712351066.755776]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.756257]: Instances: []\n", - "[INFO] [1712351066.756509]: Direct Instances: []\n", - "[INFO] [1712351066.756745]: Inverse Restrictions: []\n", - "[INFO] [1712351066.757158]: -------------------\n", - "[INFO] [1712351066.757529]: SOMA.Threshold \n", - "[INFO] [1712351066.757903]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712351066.758276]: Ancestors: {DUL.SocialObject, DUL.Parameter, DUL.Object, SOMA.Threshold, DUL.Entity, DUL.Concept, owl.Thing}\n", - "[INFO] [1712351066.758646]: Subclasses: []\n", - "[INFO] [1712351066.759062]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.759576]: Instances: []\n", - "[INFO] [1712351066.759853]: Direct Instances: []\n", - "[INFO] [1712351066.760221]: Inverse Restrictions: []\n", - "[INFO] [1712351066.760502]: -------------------\n", - "[INFO] [1712351066.760759]: SOMA.Throwing \n", - "[INFO] [1712351066.761017]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712351066.761270]: Ancestors: {DUL.SocialObject, SOMA.Throwing, SOMA.Actuating, DUL.Object, SOMA.Manipulating, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.761515]: Subclasses: []\n", - "[INFO] [1712351066.761802]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.762300]: Instances: []\n", - "[INFO] [1712351066.762568]: Direct Instances: []\n", - "[INFO] [1712351066.762826]: Inverse Restrictions: []\n", - "[INFO] [1712351066.763085]: -------------------\n", - "[INFO] [1712351066.763333]: SOMA.TimeRole \n", - "[INFO] [1712351066.763583]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712351066.763842]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, DUL.Role, SOMA.EventAdjacentRole, owl.Thing}\n", - "[INFO] [1712351066.764089]: Subclasses: []\n", - "[INFO] [1712351066.764381]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.764891]: Instances: []\n", - "[INFO] [1712351066.765163]: Direct Instances: []\n", - "[INFO] [1712351066.765425]: Inverse Restrictions: []\n", - "[INFO] [1712351066.765665]: -------------------\n", - "[INFO] [1712351066.765912]: SOMA.Transporting \n", - "[INFO] [1712351066.766155]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712351066.766408]: Ancestors: {SOMA.Transporting, SOMA.ModifyingPhysicalObject, DUL.SocialObject, DUL.Object, SOMA.PhysicalTask, DUL.Entity, DUL.Concept, DUL.Task, DUL.EventType, owl.Thing}\n", - "[INFO] [1712351066.766649]: Subclasses: []\n", - "[INFO] [1712351066.766931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.767409]: Instances: []\n", - "[INFO] [1712351066.767854]: Direct Instances: []\n", - "[INFO] [1712351066.768164]: Inverse Restrictions: []\n", - "[INFO] [1712351066.768431]: -------------------\n", - "[INFO] [1712351066.768671]: SOMA.Triplestore \n", - "[INFO] [1712351066.768925]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712351066.769190]: Ancestors: {SOMA.SoftwareRole, SOMA.Triplestore, DUL.SocialObject, DUL.Object, DUL.Entity, DUL.Concept, SOMA.Database, SOMA.GraphDatabase, DUL.Role, owl.Thing}\n", - "[INFO] [1712351066.769434]: Subclasses: []\n", - "[INFO] [1712351066.769745]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.770231]: Instances: []\n", - "[INFO] [1712351066.770490]: Direct Instances: []\n", - "[INFO] [1712351066.770745]: Inverse Restrictions: []\n", - "[INFO] [1712351066.770982]: -------------------\n", - "[INFO] [1712351066.771206]: SOMA.Turning \n", - "[INFO] [1712351066.771430]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712351066.771686]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.BodyMovement, SOMA.Turning, SOMA.ProcessType, DUL.Concept, SOMA.Motion, DUL.EventType, SOMA.PosturalMoving, owl.Thing}\n", - "[INFO] [1712351066.771927]: Subclasses: []\n", - "[INFO] [1712351066.772207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.772677]: Instances: []\n", - "[INFO] [1712351066.772959]: Direct Instances: []\n", - "[INFO] [1712351066.773210]: Inverse Restrictions: []\n", - "[INFO] [1712351066.773441]: -------------------\n", - "[INFO] [1712351066.773668]: SOMA.UnavailableSoftware \n", - "[INFO] [1712351066.773893]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712351066.774141]: Ancestors: {DUL.Description, DUL.SocialObject, DUL.Diagnosis, SOMA.SoftwareDiagnosis, SOMA.FunctionalDiagnosis, SOMA.UnavailableSoftware, DUL.Object, SOMA.TechnicalDiagnosis, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.774378]: Subclasses: []\n", - "[INFO] [1712351066.774657]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.775142]: Instances: []\n", - "[INFO] [1712351066.775401]: Direct Instances: []\n", - "[INFO] [1712351066.775642]: Inverse Restrictions: []\n", - "[INFO] [1712351066.775864]: -------------------\n", - "[INFO] [1712351066.776094]: SOMA.Unsuccessfulness \n", - "[INFO] [1712351066.776325]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712351066.776561]: Ancestors: {DUL.Description, SOMA.BehavioralDiagnosis, DUL.SocialObject, DUL.Diagnosis, DUL.Object, DUL.Entity, SOMA.Unsuccessfulness, SOMA.SuccessDiagnosis, owl.Thing}\n", - "[INFO] [1712351066.776805]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712351066.777085]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.777581]: Instances: []\n", - "[INFO] [1712351066.777841]: Direct Instances: []\n", - "[INFO] [1712351066.778093]: Inverse Restrictions: []\n", - "[INFO] [1712351066.778319]: -------------------\n", - "[INFO] [1712351066.778543]: SOMA.VideoData \n", - "[INFO] [1712351066.778780]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712351066.779018]: Ancestors: {DUL.InformationObject, DUL.SocialObject, SOMA.VideoData, DUL.InformationEntity, DUL.Object, DUL.Entity, owl.Thing}\n", - "[INFO] [1712351066.779257]: Subclasses: []\n", - "[INFO] [1712351066.779538]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.780034]: Instances: []\n", - "[INFO] [1712351066.780293]: Direct Instances: []\n", - "[INFO] [1712351066.780532]: Inverse Restrictions: []\n", - "[INFO] [1712351066.780760]: -------------------\n", - "[INFO] [1712351066.780993]: SOMA.3DPosition \n", - "[INFO] [1712351066.781237]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712351066.781478]: Ancestors: {SOMA.3DPosition, DUL.Entity, DUL.Region, DUL.SpaceRegion, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712351066.781718]: Subclasses: []\n", - "[INFO] [1712351066.782008]: Properties: [rdf-schema.label, SOMA.hasPositionData, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.782502]: Instances: []\n", - "[INFO] [1712351066.782762]: Direct Instances: []\n", - "[INFO] [1712351066.783001]: Inverse Restrictions: []\n" + "[INFO] [1712607558.344337]: -------------------\n", + "[INFO] [1712607558.345052]: SOMA.DesignedContainer \n", + "[INFO] [1712607558.345535]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712607558.346035]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.346615]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712607558.347133]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.404720]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712607558.405308]: Direct Instances: []\n", + "[INFO] [1712607558.405774]: Inverse Restrictions: []\n", + "[INFO] [1712607558.407346]: -------------------\n", + "[INFO] [1712607558.407762]: DUL.PhysicalObject \n", + "[INFO] [1712607558.408169]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607558.408559]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.408944]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712607558.409391]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.410317]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712607558.410637]: Direct Instances: []\n", + "[INFO] [1712607558.416413]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712607558.416840]: -------------------\n", + "[INFO] [1712607558.417231]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712607558.417602]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607558.418042]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.418360]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712607558.418702]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.419240]: Instances: []\n", + "[INFO] [1712607558.419521]: Direct Instances: []\n", + "[INFO] [1712607558.419794]: Inverse Restrictions: []\n", + "[INFO] [1712607558.420042]: -------------------\n", + "[INFO] [1712607558.420294]: DUL.PhysicalObject \n", + "[INFO] [1712607558.420550]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607558.420806]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.421066]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712607558.421373]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.422265]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712607558.422622]: Direct Instances: []\n", + "[INFO] [1712607558.425131]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712607558.425417]: -------------------\n", + "[INFO] [1712607558.425685]: DUL.PhysicalObject \n", + "[INFO] [1712607558.425940]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607558.426198]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.426458]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712607558.426768]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.427557]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712607558.427858]: Direct Instances: []\n", + "[INFO] [1712607558.430402]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712607558.430722]: -------------------\n", + "[INFO] [1712607558.430988]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712607558.431243]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607558.431535]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.431821]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712607558.432128]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.432647]: Instances: []\n", + "[INFO] [1712607558.432931]: Direct Instances: []\n", + "[INFO] [1712607558.433208]: Inverse Restrictions: []\n", + "[INFO] [1712607558.434231]: -------------------\n", + "[INFO] [1712607558.434514]: SOMA.Affordance \n", + "[INFO] [1712607558.434815]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712607558.435132]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Relation, DUL.Entity, SOMA.Affordance, DUL.SocialObject}\n", + "[INFO] [1712607558.435407]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712607558.435727]: Properties: [SOMA.definesTrigger, DUL.definesTask, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.definesBearer]\n", + "[INFO] [1712607558.436240]: Instances: []\n", + "[INFO] [1712607558.436525]: Direct Instances: []\n", + "[INFO] [1712607558.437649]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712607558.437913]: -------------------\n", + "[INFO] [1712607558.438159]: SOMA.Disposition \n", + "[INFO] [1712607558.439868]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712607558.440194]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.440479]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712607558.440803]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", + "[INFO] [1712607558.441365]: Instances: []\n", + "[INFO] [1712607558.441632]: Direct Instances: []\n", + "[INFO] [1712607558.441943]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712607558.442215]: -------------------\n", + "[INFO] [1712607558.442472]: SOMA.Setpoint \n", + "[INFO] [1712607558.442717]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712607558.442995]: Ancestors: {DUL.Object, DUL.Parameter, SOMA.Setpoint, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.443244]: Subclasses: []\n", + "[INFO] [1712607558.443551]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.444070]: Instances: []\n", + "[INFO] [1712607558.444375]: Direct Instances: []\n", + "[INFO] [1712607558.444665]: Inverse Restrictions: []\n", + "[INFO] [1712607558.444933]: -------------------\n", + "[INFO] [1712607558.445179]: SOMA.Answer \n", + "[INFO] [1712607558.445421]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712607558.445723]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Answer, owl.Thing, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.445992]: Subclasses: []\n", + "[INFO] [1712607558.446309]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.446812]: Instances: []\n", + "[INFO] [1712607558.447095]: Direct Instances: []\n", + "[INFO] [1712607558.447798]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712607558.448104]: -------------------\n", + "[INFO] [1712607558.448361]: SOMA.Message \n", + "[INFO] [1712607558.448636]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712607558.448918]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.449187]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712607558.449491]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.450006]: Instances: []\n", + "[INFO] [1712607558.450305]: Direct Instances: []\n", + "[INFO] [1712607558.452116]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607558.452399]: -------------------\n", + "[INFO] [1712607558.452669]: SOMA.ProcessType \n", + "[INFO] [1712607558.452965]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712607558.453270]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.453568]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712607558.453881]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.454483]: Instances: []\n", + "[INFO] [1712607558.454768]: Direct Instances: []\n", + "[INFO] [1712607558.455116]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712607558.455377]: -------------------\n", + "[INFO] [1712607558.455639]: SOMA.OrderedElement \n", + "[INFO] [1712607558.455930]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712607558.457278]: Ancestors: {SOMA.Singleton, SOMA.OrderedElement, owl.Thing}\n", + "[INFO] [1712607558.457577]: Subclasses: []\n", + "[INFO] [1712607558.457893]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isOrderedBy]\n", + "[INFO] [1712607558.458401]: Instances: []\n", + "[INFO] [1712607558.458665]: Direct Instances: []\n", + "[INFO] [1712607558.459050]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712607558.459323]: -------------------\n", + "[INFO] [1712607558.459579]: SOMA.System \n", + "[INFO] [1712607558.459823]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712607558.460090]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.460341]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712607558.460629]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.461195]: Instances: []\n", + "[INFO] [1712607558.461477]: Direct Instances: []\n", + "[INFO] [1712607558.461744]: Inverse Restrictions: []\n", + "[INFO] [1712607558.461993]: -------------------\n", + "[INFO] [1712607558.462242]: SOMA.Binding \n", + "[INFO] [1712607558.463010]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712607558.463329]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.463610]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712607558.463935]: Properties: [Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, SOMA.hasBindingRole, rdf-schema.comment, SOMA.hasBindingFiller]\n", + "[INFO] [1712607558.464448]: Instances: []\n", + "[INFO] [1712607558.464726]: Direct Instances: []\n", + "[INFO] [1712607558.464996]: Inverse Restrictions: []\n", + "[INFO] [1712607558.465254]: -------------------\n", + "[INFO] [1712607558.465501]: SOMA.Joint \n", + "[INFO] [1712607558.465772]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712607558.466648]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity, DUL.PhysicalBody, SOMA.Joint}\n", + "[INFO] [1712607558.466956]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712607558.467280]: Properties: [rdf-schema.comment, SOMA.hasParentLink, rdf-schema.isDefinedBy, SOMA.hasChildLink]\n", + "[INFO] [1712607558.467801]: Instances: []\n", + "[INFO] [1712607558.468067]: Direct Instances: []\n", + "[INFO] [1712607558.468329]: Inverse Restrictions: []\n", + "[INFO] [1712607558.468590]: -------------------\n", + "[INFO] [1712607558.468842]: SOMA.Color \n", + "[INFO] [1712607558.469114]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712607558.469388]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality}\n", + "[INFO] [1712607558.469644]: Subclasses: []\n", + "[INFO] [1712607558.469953]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.470457]: Instances: []\n", + "[INFO] [1712607558.470719]: Direct Instances: []\n", + "[INFO] [1712607558.471024]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712607558.471290]: -------------------\n", + "[INFO] [1712607558.471539]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712607558.471779]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607558.472797]: Ancestors: {DUL.Abstract, SOMA.ExecutionStateRegion, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.473095]: Subclasses: []\n", + "[INFO] [1712607558.473420]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.473949]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712607558.474254]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712607558.474535]: Inverse Restrictions: []\n", + "[INFO] [1712607558.474789]: -------------------\n", + "[INFO] [1712607558.475034]: SOMA.Feature \n", + "[INFO] [1712607558.475296]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712607558.475574]: Ancestors: {DUL.Object, owl.Thing, SOMA.Feature, DUL.Entity}\n", + "[INFO] [1712607558.475841]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712607558.476151]: Properties: [rdf-schema.comment, SOMA.isFeatureOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.476651]: Instances: []\n", + "[INFO] [1712607558.476928]: Direct Instances: []\n", + "[INFO] [1712607558.477231]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712607558.477481]: -------------------\n", + "[INFO] [1712607558.477768]: SOMA.FrictionAttribute \n", + "[INFO] [1712607558.478041]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712607558.478334]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.478611]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712607558.478917]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasFrictionValue, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.479436]: Instances: []\n", + "[INFO] [1712607558.479730]: Direct Instances: []\n", + "[INFO] [1712607558.480003]: Inverse Restrictions: []\n", + "[INFO] [1712607558.480255]: -------------------\n", + "[INFO] [1712607558.480497]: SOMA.SituationTransition \n", + "[INFO] [1712607558.480737]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712607558.481031]: Ancestors: {SOMA.SituationTransition, DUL.Transition, owl.Thing, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712607558.481289]: Subclasses: []\n", + "[INFO] [1712607558.481583]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.482079]: Instances: []\n", + "[INFO] [1712607558.482368]: Direct Instances: []\n", + "[INFO] [1712607558.484165]: Inverse Restrictions: []\n", + "[INFO] [1712607558.484436]: -------------------\n", + "[INFO] [1712607558.484694]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712607558.484944]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712607558.486263]: Ancestors: {owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation, DUL.Entity}\n", + "[INFO] [1712607558.486556]: Subclasses: []\n", + "[INFO] [1712607558.486876]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.487371]: Instances: []\n", + "[INFO] [1712607558.487638]: Direct Instances: []\n", + "[INFO] [1712607558.489027]: Inverse Restrictions: []\n", + "[INFO] [1712607558.489297]: -------------------\n", + "[INFO] [1712607558.489554]: SOMA.JointLimit \n", + "[INFO] [1712607558.489803]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712607558.490074]: Ancestors: {DUL.Abstract, SOMA.JointLimit, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.490345]: Subclasses: []\n", + "[INFO] [1712607558.490648]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.491148]: Instances: []\n", + "[INFO] [1712607558.491425]: Direct Instances: []\n", + "[INFO] [1712607558.491774]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712607558.492027]: -------------------\n", + "[INFO] [1712607558.492271]: SOMA.JointState \n", + "[INFO] [1712607558.492549]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712607558.492838]: Ancestors: {SOMA.JointState, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.493093]: Subclasses: []\n", + "[INFO] [1712607558.493390]: Properties: [SOMA.hasJointPosition, rdf-schema.isDefinedBy, SOMA.hasJointVelocity, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607558.493882]: Instances: []\n", + "[INFO] [1712607558.494160]: Direct Instances: []\n", + "[INFO] [1712607558.494538]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712607558.494791]: -------------------\n", + "[INFO] [1712607558.495031]: SOMA.Localization \n", + "[INFO] [1712607558.495297]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712607558.495581]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality}\n", + "[INFO] [1712607558.495837]: Subclasses: []\n", + "[INFO] [1712607558.496136]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.496633]: Instances: []\n", + "[INFO] [1712607558.496935]: Direct Instances: []\n", + "[INFO] [1712607558.499168]: Inverse Restrictions: []\n", + "[INFO] [1712607558.499439]: -------------------\n", + "[INFO] [1712607558.499694]: SOMA.MassAttribute \n", + "[INFO] [1712607558.499972]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712607558.500249]: Ancestors: {DUL.Abstract, DUL.PhysicalAttribute, SOMA.MassAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.500502]: Subclasses: []\n", + "[INFO] [1712607558.500798]: Properties: [rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.501304]: Instances: []\n", + "[INFO] [1712607558.501572]: Direct Instances: []\n", + "[INFO] [1712607558.501825]: Inverse Restrictions: []\n", + "[INFO] [1712607558.502062]: -------------------\n", + "[INFO] [1712607558.502302]: SOMA.NetForce \n", + "[INFO] [1712607558.502563]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712607558.502844]: Ancestors: {DUL.Abstract, SOMA.NetForce, DUL.PhysicalAttribute, owl.Thing, SOMA.ForceAttribute, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.503101]: Subclasses: []\n", + "[INFO] [1712607558.503397]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.503909]: Instances: []\n", + "[INFO] [1712607558.504179]: Direct Instances: []\n", + "[INFO] [1712607558.504441]: Inverse Restrictions: []\n", + "[INFO] [1712607558.504686]: -------------------\n", + "[INFO] [1712607558.504927]: SOMA.Succedence \n", + "[INFO] [1712607558.505215]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712607558.505505]: Ancestors: {DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.505771]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712607558.506073]: Properties: [rdf-schema.isDefinedBy, SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence), rdf-schema.comment, SOMA.hasPredecessor]\n", + "[INFO] [1712607558.506573]: Instances: []\n", + "[INFO] [1712607558.506853]: Direct Instances: []\n", + "[INFO] [1712607558.507120]: Inverse Restrictions: []\n", + "[INFO] [1712607558.507364]: -------------------\n", + "[INFO] [1712607558.507605]: SOMA.Preference \n", + "[INFO] [1712607558.507869]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712607558.508160]: Ancestors: {SOMA.SocialQuality, SOMA.Preference, owl.Thing, DUL.Entity, DUL.Quality}\n", + "[INFO] [1712607558.508422]: Subclasses: []\n", + "[INFO] [1712607558.508727]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.509239]: Instances: []\n", + "[INFO] [1712607558.509509]: Direct Instances: []\n", + "[INFO] [1712607558.510631]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712607558.510916]: -------------------\n", + "[INFO] [1712607558.511185]: SOMA.Shape \n", + "[INFO] [1712607558.511466]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712607558.511751]: Ancestors: {owl.Thing, SOMA.Intrinsic, SOMA.Shape, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.512025]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", + "[INFO] [1712607558.512351]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.512950]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712607558.513243]: Direct Instances: []\n", + "[INFO] [1712607558.515471]: Inverse Restrictions: []\n", + "[INFO] [1712607558.515749]: -------------------\n", + "[INFO] [1712607558.516004]: SOMA.ShapeRegion \n", + "[INFO] [1712607558.516282]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712607558.516654]: Ancestors: {DUL.Abstract, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607558.516941]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712607558.517246]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.517769]: Instances: []\n", + "[INFO] [1712607558.518045]: Direct Instances: []\n", + "[INFO] [1712607558.518786]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712607558.519046]: -------------------\n", + "[INFO] [1712607558.519305]: SOMA.SoftwareInstance \n", + "[INFO] [1712607558.519976]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712607558.520263]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", + "[INFO] [1712607558.520522]: Subclasses: []\n", + "[INFO] [1712607558.520822]: Properties: [SOMA.isDesignedBy, rdf-schema.isDefinedBy, DUL.actsFor, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607558.521313]: Instances: []\n", + "[INFO] [1712607558.521589]: Direct Instances: []\n", + "[INFO] [1712607558.522308]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712607558.522576]: -------------------\n", + "[INFO] [1712607558.522828]: SOMA.StateType \n", + "[INFO] [1712607558.523101]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712607558.523388]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.523662]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712607558.523961]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.524470]: Instances: []\n", + "[INFO] [1712607558.524748]: Direct Instances: []\n", + "[INFO] [1712607558.525091]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712607558.525345]: -------------------\n", + "[INFO] [1712607558.525594]: SOMA.PhysicalEffector \n", + "[INFO] [1712607558.525855]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712607558.526154]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607558.526422]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712607558.526723]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, Inverse(DUL.hasPart)]\n", + "[INFO] [1712607558.527233]: Instances: []\n", + "[INFO] [1712607558.527514]: Direct Instances: []\n", + "[INFO] [1712607558.527827]: Inverse Restrictions: []\n", + "[INFO] [1712607558.528083]: -------------------\n", + "[INFO] [1712607558.528329]: SOMA.QueryingTask \n", + "[INFO] [1712607558.528978]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712607558.529295]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing, SOMA.QueryingTask}\n", + "[INFO] [1712607558.529584]: Subclasses: []\n", + "[INFO] [1712607558.529894]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.530396]: Instances: []\n", + "[INFO] [1712607558.530675]: Direct Instances: []\n", + "[INFO] [1712607558.532099]: Inverse Restrictions: []\n", + "[INFO] [1712607558.532357]: -------------------\n", + "[INFO] [1712607558.532610]: SOMA.Order \n", + "[INFO] [1712607558.532856]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712607558.533136]: Ancestors: {DUL.Abstract, owl.Thing, SOMA.Order, DUL.FormalEntity, DUL.Entity}\n", + "[INFO] [1712607558.533415]: Subclasses: []\n", + "[INFO] [1712607558.533719]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.orders]\n", + "[INFO] [1712607558.534219]: Instances: []\n", + "[INFO] [1712607558.534503]: Direct Instances: []\n", + "[INFO] [1712607558.534867]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712607558.535120]: -------------------\n", + "[INFO] [1712607558.535368]: SOMA.State \n", + "[INFO] [1712607558.535604]: Super classes: [DUL.Event]\n", + "[INFO] [1712607558.535874]: Ancestors: {owl.Thing, DUL.Event, SOMA.State, DUL.Entity}\n", + "[INFO] [1712607558.536147]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712607558.536446]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.536948]: Instances: []\n", + "[INFO] [1712607558.537223]: Direct Instances: []\n", + "[INFO] [1712607558.537733]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712607558.537995]: -------------------\n", + "[INFO] [1712607558.538249]: SOMA.Transient \n", + "[INFO] [1712607558.538514]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712607558.538803]: Ancestors: {DUL.Object, owl.Thing, SOMA.Transient, DUL.Entity}\n", + "[INFO] [1712607558.539065]: Subclasses: []\n", + "[INFO] [1712607558.539364]: Properties: [rdf-schema.comment, SOMA.transitionsFrom, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.539871]: Instances: []\n", + "[INFO] [1712607558.540138]: Direct Instances: []\n", + "[INFO] [1712607558.540400]: Inverse Restrictions: []\n", + "[INFO] [1712607558.540654]: -------------------\n", + "[INFO] [1712607558.540896]: SOMA.ColorRegion \n", + "[INFO] [1712607558.541140]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712607558.541405]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.541658]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712607558.541948]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.542469]: Instances: []\n", + "[INFO] [1712607558.542738]: Direct Instances: []\n", + "[INFO] [1712607558.543067]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712607558.543316]: -------------------\n", + "[INFO] [1712607558.543558]: SOMA.ForceAttribute \n", + "[INFO] [1712607558.543891]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712607558.544172]: Ancestors: {DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, SOMA.ForceAttribute, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.544485]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712607558.544801]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasForceValue, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.545299]: Instances: []\n", + "[INFO] [1712607558.545567]: Direct Instances: []\n", + "[INFO] [1712607558.546237]: Inverse Restrictions: []\n", + "[INFO] [1712607558.546589]: -------------------\n", + "[INFO] [1712607558.546850]: SOMA.API_Specification \n", + "[INFO] [1712607558.547103]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712607558.547394]: Ancestors: {DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607558.547683]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712607558.547995]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.548497]: Instances: []\n", + "[INFO] [1712607558.548759]: Direct Instances: []\n", + "[INFO] [1712607558.549016]: Inverse Restrictions: []\n", + "[INFO] [1712607558.549273]: -------------------\n", + "[INFO] [1712607558.549525]: SOMA.InterfaceSpecification \n", + "[INFO] [1712607558.549770]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712607558.550019]: Ancestors: {DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607558.550273]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712607558.550570]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.551077]: Instances: []\n", + "[INFO] [1712607558.551344]: Direct Instances: []\n", + "[INFO] [1712607558.552402]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712607558.552686]: -------------------\n", + "[INFO] [1712607558.552946]: SOMA.AbductiveReasoning \n", + "[INFO] [1712607558.553198]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712607558.554458]: Ancestors: {SOMA.AbductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607558.554761]: Subclasses: []\n", + "[INFO] [1712607558.555074]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.555576]: Instances: []\n", + "[INFO] [1712607558.555843]: Direct Instances: []\n", + "[INFO] [1712607558.556116]: Inverse Restrictions: []\n", + "[INFO] [1712607558.556367]: -------------------\n", + "[INFO] [1712607558.556612]: SOMA.Reasoning \n", + "[INFO] [1712607558.556850]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607558.557092]: Ancestors: {owl.Thing, SOMA.Reasoning, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712607558.557361]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712607558.557655]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.558161]: Instances: []\n", + "[INFO] [1712607558.558444]: Direct Instances: []\n", + "[INFO] [1712607558.558711]: Inverse Restrictions: []\n", + "[INFO] [1712607558.558956]: -------------------\n", + "[INFO] [1712607558.559195]: SOMA.Accessor \n", + "[INFO] [1712607558.559427]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712607558.559718]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.559976]: Subclasses: []\n", + "[INFO] [1712607558.560268]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.560759]: Instances: []\n", + "[INFO] [1712607558.561055]: Direct Instances: []\n", + "[INFO] [1712607558.561343]: Inverse Restrictions: []\n", + "[INFO] [1712607558.561594]: -------------------\n", + "[INFO] [1712607558.561856]: SOMA.Instrument \n", + "[INFO] [1712607558.562105]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712607558.562363]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.562638]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712607558.562944]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.563502]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607558.563785]: Direct Instances: []\n", + "[INFO] [1712607558.564194]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607558.564449]: -------------------\n", + "[INFO] [1712607558.564694]: SOMA.Accident \n", + "[INFO] [1712607558.564930]: Super classes: [DUL.Event]\n", + "[INFO] [1712607558.565193]: Ancestors: {owl.Thing, DUL.Event, SOMA.Accident, DUL.Entity}\n", + "[INFO] [1712607558.565459]: Subclasses: []\n", + "[INFO] [1712607558.565770]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.566275]: Instances: []\n", + "[INFO] [1712607558.566558]: Direct Instances: []\n", + "[INFO] [1712607558.566823]: Inverse Restrictions: []\n", + "[INFO] [1712607558.567070]: -------------------\n", + "[INFO] [1712607558.567311]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712607558.567753]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712607558.568057]: Ancestors: {DUL.Object, DUL.Description, DUL.Plan, owl.Thing, DUL.Entity, SOMA.ActionExecutionPlan, DUL.SocialObject}\n", + "[INFO] [1712607558.568323]: Subclasses: []\n", + "[INFO] [1712607558.568624]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.569124]: Instances: []\n", + "[INFO] [1712607558.569404]: Direct Instances: []\n", + "[INFO] [1712607558.569666]: Inverse Restrictions: []\n", + "[INFO] [1712607558.569914]: -------------------\n", + "[INFO] [1712607558.570158]: SOMA.Actuating \n", + "[INFO] [1712607558.570400]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607558.570667]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.570960]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712607558.571259]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.571785]: Instances: []\n", + "[INFO] [1712607558.572064]: Direct Instances: []\n", + "[INFO] [1712607558.572336]: Inverse Restrictions: []\n", + "[INFO] [1712607558.572589]: -------------------\n", + "[INFO] [1712607558.572833]: SOMA.PhysicalTask \n", + "[INFO] [1712607558.574231]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712607558.574536]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", + "[INFO] [1712607558.574835]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712607558.575145]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.575846]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", + "[INFO] [1712607558.576142]: Direct Instances: []\n", + "[INFO] [1712607558.576483]: Inverse Restrictions: []\n", + "[INFO] [1712607558.576754]: -------------------\n", + "[INFO] [1712607558.577010]: SOMA.AestheticDesign \n", + "[INFO] [1712607558.577257]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712607558.577526]: Ancestors: {DUL.Object, DUL.Description, SOMA.AestheticDesign, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607558.577840]: Subclasses: []\n", + "[INFO] [1712607558.578151]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.578673]: Instances: []\n", + "[INFO] [1712607558.578951]: Direct Instances: []\n", + "[INFO] [1712607558.579225]: Inverse Restrictions: []\n", + "[INFO] [1712607558.579483]: -------------------\n", + "[INFO] [1712607558.579734]: SOMA.AffordsBeingSitOn \n", + "[INFO] [1712607558.580642]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", + "[INFO] [1712607558.580931]: Ancestors: {DUL.Object, DUL.Description, SOMA.AffordsBeingSitOn, owl.Thing, DUL.Relation, DUL.Entity, SOMA.Affordance, DUL.SocialObject}\n", + "[INFO] [1712607558.581186]: Subclasses: []\n", + "[INFO] [1712607558.581485]: Properties: [rdf-schema.comment, DUL.describes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.581990]: Instances: []\n", + "[INFO] [1712607558.582267]: Direct Instances: []\n", + "[INFO] [1712607558.582554]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", + "[INFO] [1712607558.582809]: -------------------\n", + "[INFO] [1712607558.583052]: SOMA.CanBeSatOn \n", + "[INFO] [1712607558.583304]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", + "[INFO] [1712607558.583592]: Ancestors: {SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.CanBeSatOn, DUL.Quality}\n", + "[INFO] [1712607558.583848]: Subclasses: []\n", + "[INFO] [1712607558.584141]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", + "[INFO] [1712607558.584630]: Instances: []\n", + "[INFO] [1712607558.584906]: Direct Instances: []\n", + "[INFO] [1712607558.585453]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712607558.585709]: -------------------\n", + "[INFO] [1712607558.585954]: SOMA.SittingDestination \n", + "[INFO] [1712607558.586214]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", + "[INFO] [1712607558.586524]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.SittingDestination, DUL.Role, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.586785]: Subclasses: []\n", + "[INFO] [1712607558.587079]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.587566]: Instances: []\n", + "[INFO] [1712607558.587833]: Direct Instances: []\n", + "[INFO] [1712607558.588122]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712607558.588378]: -------------------\n", + "[INFO] [1712607558.588623]: SOMA.CanSit \n", + "[INFO] [1712607558.588857]: Super classes: [SOMA.Capability]\n", + "[INFO] [1712607558.589130]: Ancestors: {SOMA.Capability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.CanSit, DUL.Quality}\n", + "[INFO] [1712607558.589396]: Subclasses: []\n", + "[INFO] [1712607558.589696]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.590188]: Instances: []\n", + "[INFO] [1712607558.590455]: Direct Instances: []\n", + "[INFO] [1712607558.590750]: Inverse Restrictions: []\n", + "[INFO] [1712607558.591010]: -------------------\n", + "[INFO] [1712607558.591260]: SOMA.AgentRole \n", + "[INFO] [1712607558.591525]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712607558.591812]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.AgentRole, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607558.592073]: Subclasses: []\n", + "[INFO] [1712607558.592385]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.592888]: Instances: []\n", + "[INFO] [1712607558.593153]: Direct Instances: []\n", + "[INFO] [1712607558.593431]: Inverse Restrictions: []\n", + "[INFO] [1712607558.593673]: -------------------\n", + "[INFO] [1712607558.593930]: SOMA.Sitting \n", + "[INFO] [1712607558.594180]: Super classes: [SOMA.AssumingPose]\n", + "[INFO] [1712607558.594532]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Sitting, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.594792]: Subclasses: []\n", + "[INFO] [1712607558.595099]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.595603]: Instances: []\n", + "[INFO] [1712607558.595888]: Direct Instances: []\n", + "[INFO] [1712607558.596165]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712607558.596420]: -------------------\n", + "[INFO] [1712607558.596671]: SOMA.CausativeRole \n", + "[INFO] [1712607558.596910]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607558.597156]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607558.597412]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712607558.597706]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.598231]: Instances: []\n", + "[INFO] [1712607558.598501]: Direct Instances: []\n", + "[INFO] [1712607558.598758]: Inverse Restrictions: []\n", + "[INFO] [1712607558.599000]: -------------------\n", + "[INFO] [1712607558.599244]: SOMA.Agonist \n", + "[INFO] [1712607558.599490]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607558.599757]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Agonist, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.600004]: Subclasses: []\n", + "[INFO] [1712607558.600290]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.600791]: Instances: []\n", + "[INFO] [1712607558.601059]: Direct Instances: []\n", + "[INFO] [1712607558.601359]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712607558.601608]: -------------------\n", + "[INFO] [1712607558.601847]: SOMA.Patient \n", + "[INFO] [1712607558.602088]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607558.602353]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.602641]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712607558.602937]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.603492]: Instances: []\n", + "[INFO] [1712607558.603773]: Direct Instances: []\n", + "[INFO] [1712607558.604221]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607558.604484]: -------------------\n", + "[INFO] [1712607558.604733]: SOMA.Algorithm \n", + "[INFO] [1712607558.604986]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712607558.605268]: Ancestors: {DUL.Object, SOMA.Algorithm, DUL.Description, owl.Thing, DUL.Entity, DUL.Plan, DUL.SocialObject}\n", + "[INFO] [1712607558.605526]: Subclasses: []\n", + "[INFO] [1712607558.605824]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.606323]: Instances: []\n", + "[INFO] [1712607558.606603]: Direct Instances: []\n", + "[INFO] [1712607558.607669]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712607558.607937]: -------------------\n", + "[INFO] [1712607558.608184]: SOMA.Alteration \n", + "[INFO] [1712607558.608427]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712607558.608707]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject}\n", + "[INFO] [1712607558.608970]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712607558.609264]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.609765]: Instances: []\n", + "[INFO] [1712607558.610044]: Direct Instances: []\n", + "[INFO] [1712607558.610320]: Inverse Restrictions: []\n", + "[INFO] [1712607558.610570]: -------------------\n", + "[INFO] [1712607558.610813]: SOMA.AlterativeInteraction \n", + "[INFO] [1712607558.611112]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712607558.612022]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.AlterativeInteraction, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607558.612310]: Subclasses: []\n", + "[INFO] [1712607558.612629]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.613137]: Instances: []\n", + "[INFO] [1712607558.613406]: Direct Instances: []\n", + "[INFO] [1712607558.613698]: Inverse Restrictions: []\n", + "[INFO] [1712607558.613944]: -------------------\n", + "[INFO] [1712607558.614200]: SOMA.ForceInteraction \n", + "[INFO] [1712607558.614476]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712607558.614765]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.615041]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712607558.615375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607558.615897]: Instances: []\n", + "[INFO] [1712607558.616185]: Direct Instances: []\n", + "[INFO] [1712607558.616468]: Inverse Restrictions: []\n", + "[INFO] [1712607558.616722]: -------------------\n", + "[INFO] [1712607558.616968]: SOMA.PreservativeInteraction \n", + "[INFO] [1712607558.617204]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712607558.617471]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PreservativeInteraction, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607558.617744]: Subclasses: []\n", + "[INFO] [1712607558.618051]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.618555]: Instances: []\n", + "[INFO] [1712607558.618822]: Direct Instances: []\n", + "[INFO] [1712607558.619116]: Inverse Restrictions: []\n", + "[INFO] [1712607558.619376]: -------------------\n", + "[INFO] [1712607558.619623]: SOMA.AlteredObject \n", + "[INFO] [1712607558.619866]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607558.620133]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.620389]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712607558.620677]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.621192]: Instances: []\n", + "[INFO] [1712607558.621461]: Direct Instances: []\n", + "[INFO] [1712607558.622183]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712607558.622461]: -------------------\n", + "[INFO] [1712607558.622716]: SOMA.Amateurish \n", + "[INFO] [1712607558.622962]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712607558.623255]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607558.623799]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712607558.624268]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.624793]: Instances: []\n", + "[INFO] [1712607558.625071]: Direct Instances: []\n", + "[INFO] [1712607558.625332]: Inverse Restrictions: []\n", + "[INFO] [1712607558.625585]: -------------------\n", + "[INFO] [1712607558.625855]: SOMA.AnsweringTask \n", + "[INFO] [1712607558.626105]: Super classes: [owl.Thing]\n", + "[INFO] [1712607558.628671]: Ancestors: {SOMA.AnsweringTask, owl.Thing}\n", + "[INFO] [1712607558.628982]: Subclasses: []\n", + "[INFO] [1712607558.629307]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.629836]: Instances: []\n", + "[INFO] [1712607558.630118]: Direct Instances: []\n", + "[INFO] [1712607558.630437]: Inverse Restrictions: []\n", + "[INFO] [1712607558.630697]: -------------------\n", + "[INFO] [1712607558.630948]: SOMA.CommandingTask \n", + "[INFO] [1712607558.631592]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712607558.631872]: Ancestors: {SOMA.CommandingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712607558.632141]: Subclasses: []\n", + "[INFO] [1712607558.632453]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.632953]: Instances: []\n", + "[INFO] [1712607558.633212]: Direct Instances: []\n", + "[INFO] [1712607558.633549]: Inverse Restrictions: []\n", + "[INFO] [1712607558.633815]: -------------------\n", + "[INFO] [1712607558.634068]: SOMA.IllocutionaryTask \n", + "[INFO] [1712607558.635464]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712607558.635762]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712607558.636044]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712607558.636356]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.636872]: Instances: []\n", + "[INFO] [1712607558.637137]: Direct Instances: []\n", + "[INFO] [1712607558.637425]: Inverse Restrictions: []\n", + "[INFO] [1712607558.637685]: -------------------\n", + "[INFO] [1712607558.637935]: SOMA.Antagonist \n", + "[INFO] [1712607558.638182]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607558.638456]: Ancestors: {DUL.Object, SOMA.Antagonist, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.638705]: Subclasses: []\n", + "[INFO] [1712607558.639011]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.639510]: Instances: []\n", + "[INFO] [1712607558.639770]: Direct Instances: []\n", + "[INFO] [1712607558.640054]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712607558.640304]: -------------------\n", + "[INFO] [1712607558.640551]: SOMA.Appliance \n", + "[INFO] [1712607558.640791]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712607558.641058]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.641314]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712607558.641618]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.642123]: Instances: []\n", + "[INFO] [1712607558.642390]: Direct Instances: []\n", + "[INFO] [1712607558.642640]: Inverse Restrictions: []\n", + "[INFO] [1712607558.642892]: -------------------\n", + "[INFO] [1712607558.643133]: SOMA.Approaching \n", + "[INFO] [1712607558.643373]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607558.643665]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Approaching, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607558.643934]: Subclasses: []\n", + "[INFO] [1712607558.644236]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.644776]: Instances: []\n", + "[INFO] [1712607558.645046]: Direct Instances: []\n", + "[INFO] [1712607558.645309]: Inverse Restrictions: []\n", + "[INFO] [1712607558.645591]: -------------------\n", + "[INFO] [1712607558.645855]: SOMA.Locomotion \n", + "[INFO] [1712607558.646104]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712607558.646380]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", + "[INFO] [1712607558.646654]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712607558.646964]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.647491]: Instances: []\n", + "[INFO] [1712607558.647773]: Direct Instances: []\n", + "[INFO] [1712607558.648040]: Inverse Restrictions: []\n", + "[INFO] [1712607558.648309]: -------------------\n", + "[INFO] [1712607558.648561]: SOMA.ArchiveFile \n", + "[INFO] [1712607558.648809]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712607558.650065]: Ancestors: {DUL.InformationRealization, owl.Thing, SOMA.ArchiveFile, DUL.Entity, DUL.InformationEntity, SOMA.Digital_File}\n", + "[INFO] [1712607558.650349]: Subclasses: []\n", + "[INFO] [1712607558.650672]: Properties: [DUL.realizes, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.651191]: Instances: []\n", + "[INFO] [1712607558.651468]: Direct Instances: []\n", + "[INFO] [1712607558.651744]: Inverse Restrictions: []\n", + "[INFO] [1712607558.652003]: -------------------\n", + "[INFO] [1712607558.652246]: SOMA.ArchiveText \n", + "[INFO] [1712607558.652483]: Super classes: [owl.Thing]\n", + "[INFO] [1712607558.654296]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", + "[INFO] [1712607558.654602]: Subclasses: []\n", + "[INFO] [1712607558.654928]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607558.655439]: Instances: []\n", + "[INFO] [1712607558.655725]: Direct Instances: []\n", + "[INFO] [1712607558.656160]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712607558.656432]: -------------------\n", + "[INFO] [1712607558.656686]: SOMA.Digital_File \n", + "[INFO] [1712607558.656968]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712607558.657245]: Ancestors: {DUL.InformationRealization, owl.Thing, DUL.Entity, DUL.InformationEntity, SOMA.Digital_File}\n", + "[INFO] [1712607558.657510]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712607558.657821]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasNameString]\n", + "[INFO] [1712607558.658328]: Instances: []\n", + "[INFO] [1712607558.658602]: Direct Instances: []\n", + "[INFO] [1712607558.661223]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712607558.661503]: -------------------\n", + "[INFO] [1712607558.661768]: SOMA.ArchiveFormat \n", + "[INFO] [1712607558.662029]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712607558.662486]: Ancestors: {DUL.Object, SOMA.ArchiveFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607558.662890]: Subclasses: []\n", + "[INFO] [1712607558.663327]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.663955]: Instances: []\n", + "[INFO] [1712607558.664331]: Direct Instances: []\n", + "[INFO] [1712607558.664747]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712607558.665113]: -------------------\n", + "[INFO] [1712607558.665393]: SOMA.File_format \n", + "[INFO] [1712607558.665646]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607558.665901]: Ancestors: {DUL.Object, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607558.666170]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712607558.666470]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.666988]: Instances: []\n", + "[INFO] [1712607558.667258]: Direct Instances: []\n", + "[INFO] [1712607558.667514]: Inverse Restrictions: []\n", + "[INFO] [1712607558.667763]: -------------------\n", + "[INFO] [1712607558.668012]: SOMA.FileConfiguration \n", + "[INFO] [1712607558.668250]: Super classes: [owl.Thing]\n", + "[INFO] [1712607558.668728]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", + "[INFO] [1712607558.668998]: Subclasses: []\n", + "[INFO] [1712607558.669313]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.669814]: Instances: []\n", + "[INFO] [1712607558.670075]: Direct Instances: []\n", + "[INFO] [1712607558.670391]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712607558.670652]: -------------------\n", + "[INFO] [1712607558.670902]: SOMA.Structured_Text \n", + "[INFO] [1712607558.671139]: Super classes: [owl.Thing]\n", + "[INFO] [1712607558.672353]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", + "[INFO] [1712607558.672647]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712607558.672961]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607558.673470]: Instances: []\n", + "[INFO] [1712607558.673752]: Direct Instances: []\n", + "[INFO] [1712607558.676408]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712607558.676687]: -------------------\n", + "[INFO] [1712607558.676965]: SOMA.AreaSurveying \n", + "[INFO] [1712607558.677217]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712607558.677492]: Ancestors: {owl.Thing, SOMA.Perceiving, SOMA.AreaSurveying}\n", + "[INFO] [1712607558.677741]: Subclasses: []\n", + "[INFO] [1712607558.678030]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.678544]: Instances: []\n", + "[INFO] [1712607558.678815]: Direct Instances: []\n", + "[INFO] [1712607558.679071]: Inverse Restrictions: []\n", + "[INFO] [1712607558.679316]: -------------------\n", + "[INFO] [1712607558.679554]: SOMA.Perceiving \n", + "[INFO] [1712607558.679809]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712607558.680061]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712607558.680316]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712607558.680602]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.681120]: Instances: []\n", + "[INFO] [1712607558.681400]: Direct Instances: []\n", + "[INFO] [1712607558.681668]: Inverse Restrictions: []\n", + "[INFO] [1712607558.681918]: -------------------\n", + "[INFO] [1712607558.682178]: SOMA.Arm \n", + "[INFO] [1712607558.682427]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712607558.683305]: Ancestors: {DUL.Object, SOMA.Arm, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607558.683600]: Subclasses: []\n", + "[INFO] [1712607558.683920]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.684428]: Instances: []\n", + "[INFO] [1712607558.684698]: Direct Instances: []\n", + "[INFO] [1712607558.684993]: Inverse Restrictions: []\n", + "[INFO] [1712607558.685256]: -------------------\n", + "[INFO] [1712607558.685522]: SOMA.Limb \n", + "[INFO] [1712607558.685773]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712607558.686027]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607558.686290]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712607558.686607]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.687143]: Instances: []\n", + "[INFO] [1712607558.687426]: Direct Instances: []\n", + "[INFO] [1712607558.688127]: Inverse Restrictions: []\n", + "[INFO] [1712607558.688390]: -------------------\n", + "[INFO] [1712607558.688645]: SOMA.Armchair \n", + "[INFO] [1712607558.688903]: Super classes: [SOMA.DesignedChair]\n", + "[INFO] [1712607558.689198]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Armchair, DUL.Entity, SOMA.DesignedChair}\n", + "[INFO] [1712607558.689455]: Subclasses: []\n", + "[INFO] [1712607558.689743]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.690263]: Instances: []\n", + "[INFO] [1712607558.690881]: Direct Instances: []\n", + "[INFO] [1712607558.691432]: Inverse Restrictions: []\n", + "[INFO] [1712607558.691969]: -------------------\n", + "[INFO] [1712607558.692512]: SOMA.DesignedChair \n", + "[INFO] [1712607558.693016]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712607558.693391]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.DesignedChair}\n", + "[INFO] [1712607558.693827]: Subclasses: [SOMA.Armchair]\n", + "[INFO] [1712607558.694260]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.694877]: Instances: []\n", + "[INFO] [1712607558.695321]: Direct Instances: []\n", + "[INFO] [1712607558.695756]: Inverse Restrictions: []\n", + "[INFO] [1712607558.696118]: -------------------\n", + "[INFO] [1712607558.696480]: SOMA.Arranging \n", + "[INFO] [1712607558.696824]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712607558.697202]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Arranging, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.697547]: Subclasses: []\n", + "[INFO] [1712607558.697929]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.698528]: Instances: []\n", + "[INFO] [1712607558.698901]: Direct Instances: []\n", + "[INFO] [1712607558.699270]: Inverse Restrictions: []\n", + "[INFO] [1712607558.699637]: -------------------\n", + "[INFO] [1712607558.700004]: SOMA.Constructing \n", + "[INFO] [1712607558.700393]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607558.700827]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.701274]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712607558.701783]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.702608]: Instances: []\n", + "[INFO] [1712607558.703161]: Direct Instances: []\n", + "[INFO] [1712607558.703713]: Inverse Restrictions: []\n", + "[INFO] [1712607558.704234]: -------------------\n", + "[INFO] [1712607558.704741]: SOMA.ArtificialAgent \n", + "[INFO] [1712607558.705260]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712607558.705829]: Ancestors: {DUL.Agent, DUL.Object, SOMA.ArtificialAgent, DUL.PhysicalAgent, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.706381]: Subclasses: []\n", + "[INFO] [1712607558.706979]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.707857]: Instances: []\n", + "[INFO] [1712607558.708390]: Direct Instances: []\n", + "[INFO] [1712607558.708900]: Inverse Restrictions: []\n", + "[INFO] [1712607558.709394]: -------------------\n", + "[INFO] [1712607558.709890]: SOMA.Assembling \n", + "[INFO] [1712607558.710368]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712607558.710875]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Assembling, DUL.EventType}\n", + "[INFO] [1712607558.711347]: Subclasses: []\n", + "[INFO] [1712607558.711863]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.712674]: Instances: []\n", + "[INFO] [1712607558.713158]: Direct Instances: []\n", + "[INFO] [1712607558.713624]: Inverse Restrictions: []\n", + "[INFO] [1712607558.714068]: -------------------\n", + "[INFO] [1712607558.714679]: SOMA.AssertionTask \n", + "[INFO] [1712607558.715693]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712607558.716242]: Ancestors: {SOMA.AssertionTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712607558.716756]: Subclasses: []\n", + "[INFO] [1712607558.717341]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.718232]: Instances: []\n", + "[INFO] [1712607558.718700]: Direct Instances: []\n", + "[INFO] [1712607558.719125]: Inverse Restrictions: []\n", + "[INFO] [1712607558.719530]: -------------------\n", + "[INFO] [1712607558.719927]: SOMA.DeclarativeClause \n", + "[INFO] [1712607558.720310]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712607558.720787]: Ancestors: {DUL.Object, SOMA.DeclarativeClause, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607558.721230]: Subclasses: []\n", + "[INFO] [1712607558.721735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.722571]: Instances: []\n", + "[INFO] [1712607558.723041]: Direct Instances: []\n", + "[INFO] [1712607558.723591]: Inverse Restrictions: []\n", + "[INFO] [1712607558.724040]: -------------------\n", + "[INFO] [1712607558.724483]: SOMA.AssumingArmPose \n", + "[INFO] [1712607558.724924]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712607558.725410]: Ancestors: {SOMA.AssumingArmPose, DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.725922]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712607558.726496]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.727462]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712607558.728032]: Direct Instances: []\n", + "[INFO] [1712607558.728507]: Inverse Restrictions: []\n", + "[INFO] [1712607558.728981]: -------------------\n", + "[INFO] [1712607558.729442]: SOMA.AssumingPose \n", + "[INFO] [1712607558.729868]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607558.730305]: Ancestors: {DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.730725]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712607558.731196]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.731992]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712607558.732388]: Direct Instances: []\n", + "[INFO] [1712607558.732758]: Inverse Restrictions: []\n", + "[INFO] [1712607558.733090]: -------------------\n", + "[INFO] [1712607558.733405]: SOMA.AttentionShift \n", + "[INFO] [1712607558.733736]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712607558.734096]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.AttentionShift, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.734427]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712607558.734809]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.735425]: Instances: []\n", + "[INFO] [1712607558.735741]: Direct Instances: []\n", + "[INFO] [1712607558.736039]: Inverse Restrictions: []\n", + "[INFO] [1712607558.736310]: -------------------\n", + "[INFO] [1712607558.736583]: SOMA.MentalTask \n", + "[INFO] [1712607558.736869]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712607558.737139]: Ancestors: {DUL.Object, SOMA.MentalTask, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", + "[INFO] [1712607558.737403]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712607558.737699]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.738230]: Instances: []\n", + "[INFO] [1712607558.738504]: Direct Instances: []\n", + "[INFO] [1712607558.738799]: Inverse Restrictions: []\n", + "[INFO] [1712607558.739048]: -------------------\n", + "[INFO] [1712607558.739296]: SOMA.AvoidedObject \n", + "[INFO] [1712607558.739542]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607558.739822]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.AvoidedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.740079]: Subclasses: []\n", + "[INFO] [1712607558.740377]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.740873]: Instances: []\n", + "[INFO] [1712607558.741145]: Direct Instances: []\n", + "[INFO] [1712607558.741400]: Inverse Restrictions: []\n", + "[INFO] [1712607558.741643]: -------------------\n", + "[INFO] [1712607558.741882]: SOMA.Avoiding \n", + "[INFO] [1712607558.742116]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712607558.742397]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Avoiding, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.742662]: Subclasses: []\n", + "[INFO] [1712607558.742958]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.743452]: Instances: []\n", + "[INFO] [1712607558.743709]: Direct Instances: []\n", + "[INFO] [1712607558.743962]: Inverse Restrictions: []\n", + "[INFO] [1712607558.744209]: -------------------\n", + "[INFO] [1712607558.744502]: SOMA.Navigating \n", + "[INFO] [1712607558.744751]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607558.745007]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.745258]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712607558.745548]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.746064]: Instances: [SOMA.navigating]\n", + "[INFO] [1712607558.746335]: Direct Instances: [SOMA.navigating]\n", + "[INFO] [1712607558.746597]: Inverse Restrictions: []\n", + "[INFO] [1712607558.747096]: -------------------\n", + "[INFO] [1712607558.747416]: SOMA.BakedGood \n", + "[INFO] [1712607558.747674]: Super classes: [SOMA.Dish]\n", + "[INFO] [1712607558.747958]: Ancestors: {DUL.Object, SOMA.BakedGood, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.748220]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", + "[INFO] [1712607558.748520]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.749035]: Instances: []\n", + "[INFO] [1712607558.749325]: Direct Instances: []\n", + "[INFO] [1712607558.749605]: Inverse Restrictions: []\n", + "[INFO] [1712607558.749938]: -------------------\n", + "[INFO] [1712607558.750248]: SOMA.Dish \n", + "[INFO] [1712607558.750525]: Super classes: [DUL.DesignedArtifact]\n", + "[INFO] [1712607558.750804]: Ancestors: {DUL.Object, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.751088]: Subclasses: [SOMA.BakedGood]\n", + "[INFO] [1712607558.751413]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.751941]: Instances: []\n", + "[INFO] [1712607558.752221]: Direct Instances: []\n", + "[INFO] [1712607558.752503]: Inverse Restrictions: []\n", + "[INFO] [1712607558.752773]: -------------------\n", + "[INFO] [1712607558.753042]: SOMA.Barrier \n", + "[INFO] [1712607558.753307]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712607558.753604]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Entity, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607558.753891]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712607558.754213]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.754740]: Instances: []\n", + "[INFO] [1712607558.755016]: Direct Instances: []\n", + "[INFO] [1712607558.755333]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712607558.755609]: -------------------\n", + "[INFO] [1712607558.755869]: SOMA.Restrictor \n", + "[INFO] [1712607558.756123]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712607558.756387]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607558.756675]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712607558.756990]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.757530]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607558.757829]: Direct Instances: []\n", + "[INFO] [1712607558.758295]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712607558.758649]: -------------------\n", + "[INFO] [1712607558.758954]: SOMA.BedsideTable \n", + "[INFO] [1712607558.759265]: Super classes: [SOMA.Table]\n", + "[INFO] [1712607558.759615]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.BedsideTable, DUL.PhysicalArtifact, owl.Thing, SOMA.Table, DUL.Entity}\n", + "[INFO] [1712607558.759927]: Subclasses: []\n", + "[INFO] [1712607558.760278]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.760860]: Instances: []\n", + "[INFO] [1712607558.761220]: Direct Instances: []\n", + "[INFO] [1712607558.761519]: Inverse Restrictions: []\n", + "[INFO] [1712607558.761791]: -------------------\n", + "[INFO] [1712607558.762056]: SOMA.Table \n", + "[INFO] [1712607558.762465]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712607558.762857]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Table, DUL.Entity}\n", + "[INFO] [1712607558.763254]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", + "[INFO] [1712607558.763679]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.764304]: Instances: []\n", + "[INFO] [1712607558.764692]: Direct Instances: []\n", + "[INFO] [1712607558.765060]: Inverse Restrictions: []\n", + "[INFO] [1712607558.765346]: -------------------\n", + "[INFO] [1712607558.765608]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712607558.766011]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712607558.766303]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607558.766571]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712607558.766890]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.767409]: Instances: []\n", + "[INFO] [1712607558.767674]: Direct Instances: []\n", + "[INFO] [1712607558.767939]: Inverse Restrictions: []\n", + "[INFO] [1712607558.768191]: -------------------\n", + "[INFO] [1712607558.768432]: SOMA.BeneficiaryRole \n", + "[INFO] [1712607558.768735]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712607558.769030]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.769306]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712607558.769611]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.770110]: Instances: []\n", + "[INFO] [1712607558.770380]: Direct Instances: []\n", + "[INFO] [1712607558.770638]: Inverse Restrictions: []\n", + "[INFO] [1712607558.770895]: -------------------\n", + "[INFO] [1712607558.771142]: SOMA.GoalRole \n", + "[INFO] [1712607558.771382]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607558.771629]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.771879]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712607558.772166]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.772672]: Instances: []\n", + "[INFO] [1712607558.772940]: Direct Instances: []\n", + "[INFO] [1712607558.773195]: Inverse Restrictions: []\n", + "[INFO] [1712607558.773436]: -------------------\n", + "[INFO] [1712607558.773677]: SOMA.CounterfactualBinding \n", + "[INFO] [1712607558.773926]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712607558.774201]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, SOMA.CounterfactualBinding, DUL.SocialObject}\n", + "[INFO] [1712607558.774454]: Subclasses: []\n", + "[INFO] [1712607558.774757]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.775265]: Instances: []\n", + "[INFO] [1712607558.775530]: Direct Instances: []\n", + "[INFO] [1712607558.775865]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712607558.776118]: -------------------\n", + "[INFO] [1712607558.776374]: SOMA.FactualBinding \n", + "[INFO] [1712607558.776620]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712607558.776888]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, SOMA.FactualBinding, DUL.SocialObject}\n", + "[INFO] [1712607558.777138]: Subclasses: []\n", + "[INFO] [1712607558.777444]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.778006]: Instances: []\n", + "[INFO] [1712607558.778286]: Direct Instances: []\n", + "[INFO] [1712607558.778623]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712607558.778888]: -------------------\n", + "[INFO] [1712607558.779140]: SOMA.RoleFillerBinding \n", + "[INFO] [1712607558.779386]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712607558.779655]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, SOMA.RoleFillerBinding, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.779901]: Subclasses: []\n", + "[INFO] [1712607558.780229]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.780766]: Instances: []\n", + "[INFO] [1712607558.781045]: Direct Instances: []\n", + "[INFO] [1712607558.781347]: Inverse Restrictions: []\n", + "[INFO] [1712607558.781600]: -------------------\n", + "[INFO] [1712607558.781845]: SOMA.RoleRoleBinding \n", + "[INFO] [1712607558.782516]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712607558.782823]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, SOMA.RoleRoleBinding, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.783089]: Subclasses: []\n", + "[INFO] [1712607558.783392]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.783894]: Instances: []\n", + "[INFO] [1712607558.784165]: Direct Instances: []\n", + "[INFO] [1712607558.784461]: Inverse Restrictions: []\n", + "[INFO] [1712607558.784712]: -------------------\n", + "[INFO] [1712607558.784959]: SOMA.Blade \n", + "[INFO] [1712607558.785198]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607558.785475]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Blade}\n", + "[INFO] [1712607558.785743]: Subclasses: []\n", + "[INFO] [1712607558.786036]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.786535]: Instances: []\n", + "[INFO] [1712607558.786794]: Direct Instances: []\n", + "[INFO] [1712607558.787079]: Inverse Restrictions: [SOMA.Knife]\n", + "[INFO] [1712607558.787321]: -------------------\n", + "[INFO] [1712607558.787561]: SOMA.DesignedComponent \n", + "[INFO] [1712607558.787815]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712607558.788067]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607558.788337]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712607558.788640]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.789163]: Instances: []\n", + "[INFO] [1712607558.789437]: Direct Instances: []\n", + "[INFO] [1712607558.789700]: Inverse Restrictions: []\n", + "[INFO] [1712607558.789947]: -------------------\n", + "[INFO] [1712607558.790188]: SOMA.Blockage \n", + "[INFO] [1712607558.790448]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712607558.790730]: Ancestors: {owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.790994]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712607558.791285]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.791778]: Instances: []\n", + "[INFO] [1712607558.792048]: Direct Instances: []\n", + "[INFO] [1712607558.792305]: Inverse Restrictions: []\n", + "[INFO] [1712607558.792545]: -------------------\n", + "[INFO] [1712607558.792779]: SOMA.BlockedObject \n", + "[INFO] [1712607558.793015]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607558.793287]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.793545]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712607558.793845]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.794355]: Instances: []\n", + "[INFO] [1712607558.794669]: Direct Instances: []\n", + "[INFO] [1712607558.794972]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712607558.795228]: -------------------\n", + "[INFO] [1712607558.795471]: SOMA.BodyMovement \n", + "[INFO] [1712607558.796510]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712607558.796817]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", + "[INFO] [1712607558.797094]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712607558.797400]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.797924]: Instances: []\n", + "[INFO] [1712607558.798203]: Direct Instances: []\n", + "[INFO] [1712607558.798465]: Inverse Restrictions: []\n", + "[INFO] [1712607558.798714]: -------------------\n", + "[INFO] [1712607558.798949]: SOMA.Motion \n", + "[INFO] [1712607558.799184]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712607558.799429]: Ancestors: {DUL.Object, SOMA.Motion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.799695]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712607558.799988]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.800528]: Instances: []\n", + "[INFO] [1712607558.800801]: Direct Instances: []\n", + "[INFO] [1712607558.801059]: Inverse Restrictions: []\n", + "[INFO] [1712607558.801300]: -------------------\n", + "[INFO] [1712607558.801533]: SOMA.Boiling \n", + "[INFO] [1712607558.801767]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712607558.802045]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PhaseTransition, SOMA.Vaporizing, owl.Thing, SOMA.ProcessType, SOMA.Boiling, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", + "[INFO] [1712607558.802316]: Subclasses: []\n", + "[INFO] [1712607558.802612]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.803103]: Instances: []\n", + "[INFO] [1712607558.803361]: Direct Instances: []\n", + "[INFO] [1712607558.803611]: Inverse Restrictions: []\n", + "[INFO] [1712607558.803854]: -------------------\n", + "[INFO] [1712607558.804091]: SOMA.Vaporizing \n", + "[INFO] [1712607558.804730]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712607558.804991]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Vaporizing, SOMA.PhaseTransition, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", + "[INFO] [1712607558.805257]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712607558.805556]: Properties: [SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712607558.806047]: Instances: []\n", + "[INFO] [1712607558.806301]: Direct Instances: []\n", + "[INFO] [1712607558.806548]: Inverse Restrictions: []\n", + "[INFO] [1712607558.806799]: -------------------\n", + "[INFO] [1712607558.807040]: SOMA.Bottle \n", + "[INFO] [1712607558.807270]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712607558.807531]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.807795]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", + "[INFO] [1712607558.808080]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.808571]: Instances: []\n", + "[INFO] [1712607558.808839]: Direct Instances: []\n", + "[INFO] [1712607558.809099]: Inverse Restrictions: []\n", + "[INFO] [1712607558.809339]: -------------------\n", + "[INFO] [1712607558.809580]: SOMA.DesignedContainer \n", + "[INFO] [1712607558.809820]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712607558.810078]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.810361]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712607558.810658]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.811298]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712607558.811588]: Direct Instances: []\n", + "[INFO] [1712607558.811864]: Inverse Restrictions: []\n", + "[INFO] [1712607558.812110]: -------------------\n", + "[INFO] [1712607558.812355]: SOMA.Bowl \n", + "[INFO] [1712607558.812590]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712607558.812880]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Bowl, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607558.813163]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", + "[INFO] [1712607558.813467]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.813963]: Instances: []\n", + "[INFO] [1712607558.814220]: Direct Instances: []\n", + "[INFO] [1712607558.814511]: Inverse Restrictions: [SOMA.Spoon]\n", + "[INFO] [1712607558.814770]: -------------------\n", + "[INFO] [1712607558.815013]: SOMA.Crockery \n", + "[INFO] [1712607558.815876]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712607558.816156]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607558.816420]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", + "[INFO] [1712607558.816717]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.817227]: Instances: []\n", + "[INFO] [1712607558.817497]: Direct Instances: []\n", + "[INFO] [1712607558.817764]: Inverse Restrictions: []\n", + "[INFO] [1712607558.818004]: -------------------\n", + "[INFO] [1712607558.818246]: SOMA.Box \n", + "[INFO] [1712607558.818496]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", + "[INFO] [1712607558.818776]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.Box, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.819032]: Subclasses: [SOMA.CerealBox]\n", + "[INFO] [1712607558.819322]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasShapeRegion]\n", + "[INFO] [1712607558.819813]: Instances: []\n", + "[INFO] [1712607558.820081]: Direct Instances: []\n", + "[INFO] [1712607558.820336]: Inverse Restrictions: []\n", + "[INFO] [1712607558.820576]: -------------------\n", + "[INFO] [1712607558.820813]: SOMA.BoxShape \n", + "[INFO] [1712607558.821089]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712607558.821370]: Ancestors: {DUL.Abstract, owl.Thing, SOMA.BoxShape, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607558.821626]: Subclasses: []\n", + "[INFO] [1712607558.821916]: Properties: [SOMA.hasHeight, rdf-schema.isDefinedBy, SOMA.hasLength, rdf-schema.comment, SOMA.hasWidth, rdf-schema.label]\n", + "[INFO] [1712607558.822408]: Instances: []\n", + "[INFO] [1712607558.822680]: Direct Instances: []\n", + "[INFO] [1712607558.822954]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712607558.823195]: -------------------\n", + "[INFO] [1712607558.823434]: SOMA.Bread \n", + "[INFO] [1712607558.823672]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712607558.823946]: Ancestors: {DUL.Object, SOMA.BakedGood, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Bread, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.824195]: Subclasses: []\n", + "[INFO] [1712607558.824801]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.825327]: Instances: []\n", + "[INFO] [1712607558.825620]: Direct Instances: []\n", + "[INFO] [1712607558.825894]: Inverse Restrictions: []\n", + "[INFO] [1712607558.826145]: -------------------\n", + "[INFO] [1712607558.826396]: SOMA.BreadKnife \n", + "[INFO] [1712607558.826667]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712607558.826981]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.BreadKnife}\n", + "[INFO] [1712607558.827244]: Subclasses: []\n", + "[INFO] [1712607558.827543]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.828073]: Instances: []\n", + "[INFO] [1712607558.828351]: Direct Instances: []\n", + "[INFO] [1712607558.828604]: Inverse Restrictions: []\n", + "[INFO] [1712607558.828844]: -------------------\n", + "[INFO] [1712607558.829080]: SOMA.KitchenKnife \n", + "[INFO] [1712607558.829315]: Super classes: [SOMA.Knife]\n", + "[INFO] [1712607558.829565]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.829826]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", + "[INFO] [1712607558.830122]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.830654]: Instances: []\n", + "[INFO] [1712607558.830938]: Direct Instances: []\n", + "[INFO] [1712607558.831208]: Inverse Restrictions: []\n", + "[INFO] [1712607558.831456]: -------------------\n", + "[INFO] [1712607558.831697]: SOMA.BreakfastPlate \n", + "[INFO] [1712607558.831935]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712607558.832209]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.BreakfastPlate, SOMA.Crockery, SOMA.Plate, SOMA.Tableware}\n", + "[INFO] [1712607558.832475]: Subclasses: []\n", + "[INFO] [1712607558.832769]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.833265]: Instances: []\n", + "[INFO] [1712607558.833543]: Direct Instances: []\n", + "[INFO] [1712607558.833833]: Inverse Restrictions: []\n", + "[INFO] [1712607558.834089]: -------------------\n", + "[INFO] [1712607558.834347]: SOMA.Plate \n", + "[INFO] [1712607558.834590]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712607558.834843]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Plate, SOMA.Tableware}\n", + "[INFO] [1712607558.835090]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", + "[INFO] [1712607558.835373]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.835917]: Instances: []\n", + "[INFO] [1712607558.836210]: Direct Instances: []\n", + "[INFO] [1712607558.836467]: Inverse Restrictions: []\n", + "[INFO] [1712607558.836704]: -------------------\n", + "[INFO] [1712607558.836956]: SOMA.Building \n", + "[INFO] [1712607558.837204]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712607558.837471]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.Building, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.837719]: Subclasses: []\n", + "[INFO] [1712607558.838004]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.838513]: Instances: []\n", + "[INFO] [1712607558.838777]: Direct Instances: []\n", + "[INFO] [1712607558.839029]: Inverse Restrictions: []\n", + "[INFO] [1712607558.839267]: -------------------\n", + "[INFO] [1712607558.839504]: SOMA.Deposition \n", + "[INFO] [1712607558.839779]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712607558.840039]: Ancestors: {SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.840291]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712607558.840580]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.841084]: Instances: []\n", + "[INFO] [1712607558.841356]: Direct Instances: []\n", + "[INFO] [1712607558.842051]: Inverse Restrictions: []\n", + "[INFO] [1712607558.842308]: -------------------\n", + "[INFO] [1712607558.842549]: SOMA.CanCut \n", + "[INFO] [1712607558.842824]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712607558.843114]: Ancestors: {SOMA.CanCut, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.843362]: Subclasses: []\n", + "[INFO] [1712607558.843652]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.844152]: Instances: []\n", + "[INFO] [1712607558.844466]: Direct Instances: []\n", + "[INFO] [1712607558.844726]: Inverse Restrictions: []\n", + "[INFO] [1712607558.844966]: -------------------\n", + "[INFO] [1712607558.845203]: SOMA.Variability \n", + "[INFO] [1712607558.845464]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712607558.845754]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.846029]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712607558.846339]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.846857]: Instances: []\n", + "[INFO] [1712607558.847137]: Direct Instances: []\n", + "[INFO] [1712607558.847399]: Inverse Restrictions: []\n", + "[INFO] [1712607558.847646]: -------------------\n", + "[INFO] [1712607558.847892]: SOMA.Cutter \n", + "[INFO] [1712607558.848129]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712607558.848415]: Ancestors: {SOMA.Tool, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Cutter, DUL.SocialObject}\n", + "[INFO] [1712607558.848672]: Subclasses: []\n", + "[INFO] [1712607558.848970]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.849453]: Instances: []\n", + "[INFO] [1712607558.849730]: Direct Instances: []\n", + "[INFO] [1712607558.850067]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712607558.850323]: -------------------\n", + "[INFO] [1712607558.850563]: SOMA.CutObject \n", + "[INFO] [1712607558.850793]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712607558.851054]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, SOMA.CutObject, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607558.851317]: Subclasses: []\n", + "[INFO] [1712607558.851612]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.852099]: Instances: []\n", + "[INFO] [1712607558.852356]: Direct Instances: []\n", + "[INFO] [1712607558.852686]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712607558.852935]: -------------------\n", + "[INFO] [1712607558.853176]: SOMA.Capability \n", + "[INFO] [1712607558.854883]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712607558.855194]: Ancestors: {SOMA.Capability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.855473]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712607558.855778]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", + "[INFO] [1712607558.856278]: Instances: []\n", + "[INFO] [1712607558.856557]: Direct Instances: []\n", + "[INFO] [1712607558.856824]: Inverse Restrictions: []\n", + "[INFO] [1712607558.857067]: -------------------\n", + "[INFO] [1712607558.857305]: SOMA.Capacity \n", + "[INFO] [1712607558.857538]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607558.857800]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Capacity, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607558.858064]: Subclasses: []\n", + "[INFO] [1712607558.858365]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.858855]: Instances: []\n", + "[INFO] [1712607558.859109]: Direct Instances: []\n", + "[INFO] [1712607558.859771]: Inverse Restrictions: []\n", + "[INFO] [1712607558.860050]: -------------------\n", + "[INFO] [1712607558.860307]: SOMA.Intrinsic \n", + "[INFO] [1712607558.860544]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712607558.860792]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607558.861115]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712607558.861427]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.861957]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712607558.862285]: Direct Instances: []\n", + "[INFO] [1712607558.862698]: Inverse Restrictions: []\n", + "[INFO] [1712607558.863056]: -------------------\n", + "[INFO] [1712607558.863342]: SOMA.Carafe \n", + "[INFO] [1712607558.863607]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712607558.863911]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Carafe, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607558.864181]: Subclasses: [SOMA.CoffeeCarafe]\n", + "[INFO] [1712607558.864507]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.865009]: Instances: []\n", + "[INFO] [1712607558.865293]: Direct Instances: []\n", + "[INFO] [1712607558.865549]: Inverse Restrictions: []\n", + "[INFO] [1712607558.865787]: -------------------\n", + "[INFO] [1712607558.866023]: SOMA.Catching \n", + "[INFO] [1712607558.866275]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607558.866545]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Catching, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.866792]: Subclasses: []\n", + "[INFO] [1712607558.867090]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.867589]: Instances: []\n", + "[INFO] [1712607558.867851]: Direct Instances: []\n", + "[INFO] [1712607558.868100]: Inverse Restrictions: []\n", + "[INFO] [1712607558.868339]: -------------------\n", + "[INFO] [1712607558.868579]: SOMA.PickingUp \n", + "[INFO] [1712607558.868818]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607558.869099]: Ancestors: {SOMA.PickingUp, DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.869356]: Subclasses: []\n", + "[INFO] [1712607558.869650]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.870177]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712607558.870453]: Direct Instances: [SOMA.picking_up]\n", + "[INFO] [1712607558.870708]: Inverse Restrictions: []\n", + "[INFO] [1712607558.870944]: -------------------\n", + "[INFO] [1712607558.871180]: SOMA.CausalEventRole \n", + "[INFO] [1712607558.871431]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712607558.871698]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.CausalEventRole, DUL.SocialObject}\n", + "[INFO] [1712607558.871945]: Subclasses: []\n", + "[INFO] [1712607558.872230]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.872735]: Instances: []\n", + "[INFO] [1712607558.872999]: Direct Instances: []\n", + "[INFO] [1712607558.873381]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607558.873665]: -------------------\n", + "[INFO] [1712607558.873921]: SOMA.EventAdjacentRole \n", + "[INFO] [1712607558.874169]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712607558.874416]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.874672]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712607558.874963]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.875650]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607558.875932]: Direct Instances: []\n", + "[INFO] [1712607558.876202]: Inverse Restrictions: []\n", + "[INFO] [1712607558.876447]: -------------------\n", + "[INFO] [1712607558.876689]: SOMA.CausedMotionTheory \n", + "[INFO] [1712607558.876965]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712607558.877277]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, SOMA.CausedMotionTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.877534]: Subclasses: []\n", + "[INFO] [1712607558.877905]: Properties: [rdf-schema.isDefinedBy, DUL.hasPart, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712607558.878404]: Instances: []\n", + "[INFO] [1712607558.878680]: Direct Instances: []\n", + "[INFO] [1712607558.878939]: Inverse Restrictions: []\n", + "[INFO] [1712607558.879198]: -------------------\n", + "[INFO] [1712607558.879455]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712607558.879692]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712607558.879945]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.880217]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712607558.880509]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.881022]: Instances: []\n", + "[INFO] [1712607558.881292]: Direct Instances: []\n", + "[INFO] [1712607558.881634]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", + "[INFO] [1712607558.881883]: -------------------\n", + "[INFO] [1712607558.882122]: SOMA.PerformerRole \n", + "[INFO] [1712607558.882377]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712607558.882648]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607558.882910]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712607558.883206]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.883707]: Instances: []\n", + "[INFO] [1712607558.883971]: Direct Instances: []\n", + "[INFO] [1712607558.884304]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607558.884552]: -------------------\n", + "[INFO] [1712607558.884786]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712607558.885067]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712607558.885346]: Ancestors: {SOMA.SourcePathGoalTheory, DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.885593]: Subclasses: []\n", + "[INFO] [1712607558.885884]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607558.886373]: Instances: []\n", + "[INFO] [1712607558.886651]: Direct Instances: []\n", + "[INFO] [1712607558.886953]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607558.887201]: -------------------\n", + "[INFO] [1712607558.887435]: SOMA.Ceiling \n", + "[INFO] [1712607558.887666]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712607558.887956]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Ceiling, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607558.888210]: Subclasses: []\n", + "[INFO] [1712607558.888505]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.888989]: Instances: []\n", + "[INFO] [1712607558.889262]: Direct Instances: []\n", + "[INFO] [1712607558.889525]: Inverse Restrictions: []\n", + "[INFO] [1712607558.889766]: -------------------\n", + "[INFO] [1712607558.890000]: SOMA.RoomSurface \n", + "[INFO] [1712607558.890239]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712607558.890492]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607558.890753]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712607558.891043]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.891535]: Instances: []\n", + "[INFO] [1712607558.891807]: Direct Instances: []\n", + "[INFO] [1712607558.892070]: Inverse Restrictions: []\n", + "[INFO] [1712607558.892311]: -------------------\n", + "[INFO] [1712607558.892544]: SOMA.Floor \n", + "[INFO] [1712607558.892775]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712607558.893037]: Ancestors: {DUL.Object, SOMA.Floor, DUL.PhysicalObject, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607558.893291]: Subclasses: []\n", + "[INFO] [1712607558.893585]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.894068]: Instances: []\n", + "[INFO] [1712607558.894346]: Direct Instances: []\n", + "[INFO] [1712607558.894644]: Inverse Restrictions: []\n", + "[INFO] [1712607558.894891]: -------------------\n", + "[INFO] [1712607558.895130]: SOMA.Wall \n", + "[INFO] [1712607558.895367]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712607558.895630]: Ancestors: {DUL.Object, SOMA.Wall, DUL.PhysicalObject, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607558.895902]: Subclasses: []\n", + "[INFO] [1712607558.896200]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.896697]: Instances: []\n", + "[INFO] [1712607558.896952]: Direct Instances: []\n", + "[INFO] [1712607558.897200]: Inverse Restrictions: []\n", + "[INFO] [1712607558.897445]: -------------------\n", + "[INFO] [1712607558.897683]: SOMA.CeramicCooktop \n", + "[INFO] [1712607558.897920]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712607558.898198]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, SOMA.CeramicCooktop, DUL.Entity, SOMA.ElectricCooktop, DUL.PhysicalBody, SOMA.Cooktop}\n", + "[INFO] [1712607558.898467]: Subclasses: []\n", + "[INFO] [1712607558.898761]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.899248]: Instances: []\n", + "[INFO] [1712607558.899501]: Direct Instances: []\n", + "[INFO] [1712607558.899743]: Inverse Restrictions: []\n", + "[INFO] [1712607558.899986]: -------------------\n", + "[INFO] [1712607558.900230]: SOMA.ElectricCooktop \n", + "[INFO] [1712607558.900464]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712607558.900708]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.ElectricCooktop, DUL.PhysicalBody, SOMA.Cooktop}\n", + "[INFO] [1712607558.900954]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", + "[INFO] [1712607558.901232]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.901742]: Instances: []\n", + "[INFO] [1712607558.902004]: Direct Instances: []\n", + "[INFO] [1712607558.902262]: Inverse Restrictions: []\n", + "[INFO] [1712607558.902501]: -------------------\n", + "[INFO] [1712607558.902734]: SOMA.CerealBox \n", + "[INFO] [1712607558.902972]: Super classes: [SOMA.Box]\n", + "[INFO] [1712607558.903240]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.Box, owl.Thing, SOMA.CerealBox, DUL.Entity}\n", + "[INFO] [1712607558.903486]: Subclasses: []\n", + "[INFO] [1712607558.903768]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.904258]: Instances: []\n", + "[INFO] [1712607558.904512]: Direct Instances: []\n", + "[INFO] [1712607558.904758]: Inverse Restrictions: []\n", + "[INFO] [1712607558.904986]: -------------------\n", + "[INFO] [1712607558.905212]: SOMA.Channel \n", + "[INFO] [1712607558.905468]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712607558.905751]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Channel, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, SOMA.PathRole, DUL.SocialObject}\n", + "[INFO] [1712607558.905999]: Subclasses: []\n", + "[INFO] [1712607558.906290]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.906793]: Instances: []\n", + "[INFO] [1712607558.907059]: Direct Instances: []\n", + "[INFO] [1712607558.907362]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607558.907603]: -------------------\n", + "[INFO] [1712607558.907834]: SOMA.PathRole \n", + "[INFO] [1712607558.908075]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712607558.908322]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, SOMA.PathRole, DUL.SocialObject}\n", + "[INFO] [1712607558.908570]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712607558.908859]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.909350]: Instances: []\n", + "[INFO] [1712607558.909616]: Direct Instances: []\n", + "[INFO] [1712607558.909907]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712607558.910151]: -------------------\n", + "[INFO] [1712607558.910388]: SOMA.CommunicationTask \n", + "[INFO] [1712607558.911462]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712607558.911783]: Ancestors: {DUL.Object, DUL.EventType, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", + "[INFO] [1712607558.912061]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712607558.912375]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.912888]: Instances: []\n", + "[INFO] [1712607558.913167]: Direct Instances: []\n", + "[INFO] [1712607558.914038]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", + "[INFO] [1712607558.914314]: -------------------\n", + "[INFO] [1712607558.914568]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712607558.914814]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712607558.915074]: Ancestors: {SOMA.CheckingObjectPresence, SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712607558.915314]: Subclasses: []\n", + "[INFO] [1712607558.915596]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.916097]: Instances: []\n", + "[INFO] [1712607558.916358]: Direct Instances: []\n", + "[INFO] [1712607558.916606]: Inverse Restrictions: []\n", + "[INFO] [1712607558.916857]: -------------------\n", + "[INFO] [1712607558.917090]: SOMA.ChemicalProcess \n", + "[INFO] [1712607558.917334]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712607558.917607]: Ancestors: {DUL.Process, owl.Thing, DUL.Event, DUL.Entity, SOMA.ChemicalProcess}\n", + "[INFO] [1712607558.917851]: Subclasses: []\n", + "[INFO] [1712607558.918137]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.918625]: Instances: []\n", + "[INFO] [1712607558.918892]: Direct Instances: []\n", + "[INFO] [1712607558.919148]: Inverse Restrictions: []\n", + "[INFO] [1712607558.919384]: -------------------\n", + "[INFO] [1712607558.919619]: SOMA.Choice \n", + "[INFO] [1712607558.919846]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712607558.920126]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.GoalRole, DUL.Role, owl.Thing, SOMA.Choice, DUL.Concept, SOMA.ResultRole, DUL.SocialObject}\n", + "[INFO] [1712607558.920377]: Subclasses: []\n", + "[INFO] [1712607558.920663]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.921152]: Instances: []\n", + "[INFO] [1712607558.921420]: Direct Instances: []\n", + "[INFO] [1712607558.921672]: Inverse Restrictions: []\n", + "[INFO] [1712607558.921907]: -------------------\n", + "[INFO] [1712607558.922159]: SOMA.ResultRole \n", + "[INFO] [1712607558.922604]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712607558.923005]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.ResultRole, DUL.SocialObject}\n", + "[INFO] [1712607558.923401]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712607558.923819]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.924432]: Instances: []\n", + "[INFO] [1712607558.924839]: Direct Instances: []\n", + "[INFO] [1712607558.925228]: Inverse Restrictions: []\n", + "[INFO] [1712607558.925610]: -------------------\n", + "[INFO] [1712607558.925879]: SOMA.CircularCylinder \n", + "[INFO] [1712607558.926176]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712607558.926471]: Ancestors: {DUL.Abstract, SOMA.CircularCylinder, SOMA.CylinderShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607558.926725]: Subclasses: []\n", + "[INFO] [1712607558.927020]: Properties: [rdf-schema.comment, SOMA.hasRadius, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.927514]: Instances: []\n", + "[INFO] [1712607558.927859]: Direct Instances: []\n", + "[INFO] [1712607558.928127]: Inverse Restrictions: []\n", + "[INFO] [1712607558.928369]: -------------------\n", + "[INFO] [1712607558.928604]: SOMA.CylinderShape \n", + "[INFO] [1712607558.928871]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712607558.929184]: Ancestors: {DUL.Abstract, SOMA.CylinderShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607558.929448]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712607558.929750]: Properties: [rdf-schema.isDefinedBy, SOMA.hasLength, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", + "[INFO] [1712607558.930248]: Instances: []\n", + "[INFO] [1712607558.930527]: Direct Instances: []\n", + "[INFO] [1712607558.930787]: Inverse Restrictions: []\n", + "[INFO] [1712607558.931033]: -------------------\n", + "[INFO] [1712607558.931273]: SOMA.Classifier \n", + "[INFO] [1712607558.931508]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712607558.931797]: Ancestors: {DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Classifier, DUL.SocialObject}\n", + "[INFO] [1712607558.932058]: Subclasses: []\n", + "[INFO] [1712607558.932350]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.932838]: Instances: []\n", + "[INFO] [1712607558.933109]: Direct Instances: []\n", + "[INFO] [1712607558.933364]: Inverse Restrictions: []\n", + "[INFO] [1712607558.933613]: -------------------\n", + "[INFO] [1712607558.933850]: SOMA.StatisticalReasoner \n", + "[INFO] [1712607558.934079]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712607558.934321]: Ancestors: {DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.934581]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712607558.934872]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.935356]: Instances: []\n", + "[INFO] [1712607558.935616]: Direct Instances: []\n", + "[INFO] [1712607558.935881]: Inverse Restrictions: []\n", + "[INFO] [1712607558.936123]: -------------------\n", + "[INFO] [1712607558.936356]: SOMA.ClausalObject \n", + "[INFO] [1712607558.936585]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712607558.936825]: Ancestors: {DUL.Object, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607558.937085]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712607558.937371]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.937864]: Instances: []\n", + "[INFO] [1712607558.938112]: Direct Instances: []\n", + "[INFO] [1712607558.938386]: Inverse Restrictions: []\n", + "[INFO] [1712607558.938633]: -------------------\n", + "[INFO] [1712607558.938875]: SOMA.Phrase \n", + "[INFO] [1712607558.939106]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712607558.939347]: Ancestors: {DUL.Object, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607558.939589]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712607558.939885]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.940380]: Instances: []\n", + "[INFO] [1712607558.940638]: Direct Instances: []\n", + "[INFO] [1712607558.940885]: Inverse Restrictions: []\n", + "[INFO] [1712607558.941119]: -------------------\n", + "[INFO] [1712607558.941363]: SOMA.Clean \n", + "[INFO] [1712607558.941595]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712607558.941860]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, SOMA.Clean, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.942114]: Subclasses: []\n", + "[INFO] [1712607558.942408]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.942894]: Instances: []\n", + "[INFO] [1712607558.943156]: Direct Instances: []\n", + "[INFO] [1712607558.943851]: Inverse Restrictions: []\n", + "[INFO] [1712607558.944102]: -------------------\n", + "[INFO] [1712607558.944426]: SOMA.CleanlinessRegion \n", + "[INFO] [1712607558.944673]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607558.944927]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607558.945189]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712607558.945482]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.945975]: Instances: []\n", + "[INFO] [1712607558.946251]: Direct Instances: []\n", + "[INFO] [1712607558.946594]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712607558.946847]: -------------------\n", + "[INFO] [1712607558.947091]: SOMA.Cleaning \n", + "[INFO] [1712607558.947348]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712607558.947631]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Cleaning, DUL.EventType}\n", + "[INFO] [1712607558.947884]: Subclasses: []\n", + "[INFO] [1712607558.948493]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607558.949043]: Instances: []\n", + "[INFO] [1712607558.949323]: Direct Instances: []\n", + "[INFO] [1712607558.949585]: Inverse Restrictions: []\n", + "[INFO] [1712607558.949831]: -------------------\n", + "[INFO] [1712607558.950074]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712607558.950316]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607558.950569]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.950840]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712607558.951137]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.951650]: Instances: []\n", + "[INFO] [1712607558.951923]: Direct Instances: []\n", + "[INFO] [1712607558.952180]: Inverse Restrictions: []\n", + "[INFO] [1712607558.952418]: -------------------\n", + "[INFO] [1712607558.952654]: SOMA.Purification \n", + "[INFO] [1712607558.953670]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712607558.953965]: Ancestors: {SOMA.Purification, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.954234]: Subclasses: []\n", + "[INFO] [1712607558.954533]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.955033]: Instances: []\n", + "[INFO] [1712607558.955306]: Direct Instances: []\n", + "[INFO] [1712607558.955598]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712607558.955838]: -------------------\n", + "[INFO] [1712607558.956077]: SOMA.Cleanliness \n", + "[INFO] [1712607558.956314]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712607558.956591]: Ancestors: {SOMA.SocialQuality, owl.Thing, SOMA.Cleanliness, DUL.Entity, DUL.Quality}\n", + "[INFO] [1712607558.956846]: Subclasses: []\n", + "[INFO] [1712607558.957142]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.957632]: Instances: []\n", + "[INFO] [1712607558.957905]: Direct Instances: []\n", + "[INFO] [1712607558.958242]: Inverse Restrictions: []\n", + "[INFO] [1712607558.958488]: -------------------\n", + "[INFO] [1712607558.958729]: SOMA.SocialQuality \n", + "[INFO] [1712607558.958963]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712607558.959201]: Ancestors: {owl.Thing, SOMA.SocialQuality, DUL.Entity, DUL.Quality}\n", + "[INFO] [1712607558.959461]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712607558.959754]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.960244]: Instances: []\n", + "[INFO] [1712607558.960508]: Direct Instances: []\n", + "[INFO] [1712607558.960764]: Inverse Restrictions: []\n", + "[INFO] [1712607558.961089]: -------------------\n", + "[INFO] [1712607558.961341]: SOMA.Client-Server_Specification \n", + "[INFO] [1712607558.962407]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712607558.962749]: Ancestors: {DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, SOMA.Client-Server_Specification, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607558.963021]: Subclasses: []\n", + "[INFO] [1712607558.963331]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole]\n", + "[INFO] [1712607558.963815]: Instances: []\n", + "[INFO] [1712607558.964076]: Direct Instances: []\n", + "[INFO] [1712607558.964409]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712607558.964674]: -------------------\n", + "[INFO] [1712607558.964927]: SOMA.ClientRole \n", + "[INFO] [1712607558.965175]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712607558.966416]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.ClientRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.966697]: Subclasses: []\n", + "[INFO] [1712607558.967009]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607558.967502]: Instances: []\n", + "[INFO] [1712607558.967757]: Direct Instances: []\n", + "[INFO] [1712607558.968059]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712607558.968323]: -------------------\n", + "[INFO] [1712607558.968572]: SOMA.ServerRole \n", + "[INFO] [1712607558.968818]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712607558.969085]: Ancestors: {DUL.Object, SOMA.ServerRole, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.969329]: Subclasses: []\n", + "[INFO] [1712607558.969630]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607558.970136]: Instances: []\n", + "[INFO] [1712607558.970411]: Direct Instances: []\n", + "[INFO] [1712607558.970727]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712607558.970971]: -------------------\n", + "[INFO] [1712607558.971212]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712607558.971463]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607558.971719]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607558.971975]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712607558.972278]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.972779]: Instances: []\n", + "[INFO] [1712607558.973050]: Direct Instances: []\n", + "[INFO] [1712607558.973305]: Inverse Restrictions: []\n", + "[INFO] [1712607558.973546]: -------------------\n", + "[INFO] [1712607558.973779]: SOMA.Closing \n", + "[INFO] [1712607558.974013]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607558.974568]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Closing, DUL.EventType}\n", + "[INFO] [1712607558.975182]: Subclasses: []\n", + "[INFO] [1712607558.975873]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.976820]: Instances: []\n", + "[INFO] [1712607558.977348]: Direct Instances: []\n", + "[INFO] [1712607558.977882]: Inverse Restrictions: []\n", + "[INFO] [1712607558.978268]: -------------------\n", + "[INFO] [1712607558.978555]: SOMA.Delivering \n", + "[INFO] [1712607558.978840]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712607558.979131]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.Delivering, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.979415]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712607558.979743]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607558.980266]: Instances: []\n", + "[INFO] [1712607558.980541]: Direct Instances: []\n", + "[INFO] [1712607558.980806]: Inverse Restrictions: []\n", + "[INFO] [1712607558.981051]: -------------------\n", + "[INFO] [1712607558.981291]: SOMA.Fetching \n", + "[INFO] [1712607558.981530]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712607558.981821]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, SOMA.Fetching, owl.Thing, SOMA.PhysicalTask, SOMA.PhysicalAcquiring, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.982078]: Subclasses: []\n", + "[INFO] [1712607558.982387]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.982879]: Instances: []\n", + "[INFO] [1712607558.983160]: Direct Instances: []\n", + "[INFO] [1712607558.983422]: Inverse Restrictions: []\n", + "[INFO] [1712607558.983666]: -------------------\n", + "[INFO] [1712607558.983907]: SOMA.Lifting \n", + "[INFO] [1712607558.984143]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607558.984410]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Lifting, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.984677]: Subclasses: []\n", + "[INFO] [1712607558.984990]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.985481]: Instances: []\n", + "[INFO] [1712607558.985738]: Direct Instances: []\n", + "[INFO] [1712607558.985990]: Inverse Restrictions: []\n", + "[INFO] [1712607558.986245]: -------------------\n", + "[INFO] [1712607558.986491]: SOMA.Opening \n", + "[INFO] [1712607558.986729]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607558.986994]: Ancestors: {DUL.Object, SOMA.Opening, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.987240]: Subclasses: []\n", + "[INFO] [1712607558.987545]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.988038]: Instances: []\n", + "[INFO] [1712607558.988292]: Direct Instances: []\n", + "[INFO] [1712607558.988538]: Inverse Restrictions: []\n", + "[INFO] [1712607558.988778]: -------------------\n", + "[INFO] [1712607558.989021]: SOMA.Pulling \n", + "[INFO] [1712607558.989256]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607558.989519]: Ancestors: {SOMA.Pulling, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.989765]: Subclasses: []\n", + "[INFO] [1712607558.990077]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.990570]: Instances: []\n", + "[INFO] [1712607558.990834]: Direct Instances: []\n", + "[INFO] [1712607558.991089]: Inverse Restrictions: []\n", + "[INFO] [1712607558.991341]: -------------------\n", + "[INFO] [1712607558.991583]: SOMA.Pushing \n", + "[INFO] [1712607558.991820]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607558.992080]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", + "[INFO] [1712607558.992328]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712607558.992635]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.993131]: Instances: []\n", + "[INFO] [1712607558.993395]: Direct Instances: []\n", + "[INFO] [1712607558.993659]: Inverse Restrictions: []\n", + "[INFO] [1712607558.993899]: -------------------\n", + "[INFO] [1712607558.994137]: SOMA.Squeezing \n", + "[INFO] [1712607558.994376]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607558.994658]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Squeezing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607558.994920]: Subclasses: []\n", + "[INFO] [1712607558.995215]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.995706]: Instances: []\n", + "[INFO] [1712607558.995988]: Direct Instances: []\n", + "[INFO] [1712607558.996242]: Inverse Restrictions: []\n", + "[INFO] [1712607558.996492]: -------------------\n", + "[INFO] [1712607558.996735]: SOMA.ClosingDisposition \n", + "[INFO] [1712607558.996970]: Super classes: [SOMA.Linkage]\n", + "[INFO] [1712607558.997243]: Ancestors: {SOMA.ClosingDisposition, SOMA.Linkage, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607558.997483]: Subclasses: []\n", + "[INFO] [1712607558.997765]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607558.998292]: Instances: []\n", + "[INFO] [1712607558.998734]: Direct Instances: []\n", + "[INFO] [1712607558.999129]: Inverse Restrictions: []\n", + "[INFO] [1712607558.999503]: -------------------\n", + "[INFO] [1712607558.999868]: SOMA.Linkage \n", + "[INFO] [1712607559.000264]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712607559.000646]: Ancestors: {SOMA.Linkage, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.001033]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712607559.001459]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.002083]: Instances: []\n", + "[INFO] [1712607559.002390]: Direct Instances: []\n", + "[INFO] [1712607559.002673]: Inverse Restrictions: []\n", + "[INFO] [1712607559.002925]: -------------------\n", + "[INFO] [1712607559.003163]: SOMA.Clumsiness \n", + "[INFO] [1712607559.003398]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712607559.003666]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Clumsiness, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.003936]: Subclasses: []\n", + "[INFO] [1712607559.004231]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.004718]: Instances: []\n", + "[INFO] [1712607559.004976]: Direct Instances: []\n", + "[INFO] [1712607559.005227]: Inverse Restrictions: []\n", + "[INFO] [1712607559.005468]: -------------------\n", + "[INFO] [1712607559.005716]: SOMA.CoffeeCarafe \n", + "[INFO] [1712607559.005953]: Super classes: [SOMA.Carafe]\n", + "[INFO] [1712607559.006223]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Carafe, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.CoffeeCarafe}\n", + "[INFO] [1712607559.006469]: Subclasses: []\n", + "[INFO] [1712607559.006751]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.007257]: Instances: []\n", + "[INFO] [1712607559.007519]: Direct Instances: []\n", + "[INFO] [1712607559.007768]: Inverse Restrictions: []\n", + "[INFO] [1712607559.008004]: -------------------\n", + "[INFO] [1712607559.008234]: SOMA.CoffeeTable \n", + "[INFO] [1712607559.008469]: Super classes: [SOMA.Table]\n", + "[INFO] [1712607559.008741]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Table, DUL.Entity, SOMA.CoffeeTable}\n", + "[INFO] [1712607559.008989]: Subclasses: []\n", + "[INFO] [1712607559.009273]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.009774]: Instances: []\n", + "[INFO] [1712607559.010035]: Direct Instances: []\n", + "[INFO] [1712607559.010291]: Inverse Restrictions: []\n", + "[INFO] [1712607559.010530]: -------------------\n", + "[INFO] [1712607559.010764]: SOMA.CognitiveAgent \n", + "[INFO] [1712607559.011016]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712607559.011318]: Ancestors: {DUL.Agent, DUL.Object, owl.Thing, SOMA.CognitiveAgent, DUL.Entity}\n", + "[INFO] [1712607559.011572]: Subclasses: []\n", + "[INFO] [1712607559.011872]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.012357]: Instances: []\n", + "[INFO] [1712607559.012628]: Direct Instances: []\n", + "[INFO] [1712607559.012885]: Inverse Restrictions: []\n", + "[INFO] [1712607559.013125]: -------------------\n", + "[INFO] [1712607559.013359]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712607559.013589]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712607559.013849]: Ancestors: {DUL.Agent, DUL.Object, SOMA.SubCognitiveAgent, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.014102]: Subclasses: []\n", + "[INFO] [1712607559.014394]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.014877]: Instances: []\n", + "[INFO] [1712607559.015145]: Direct Instances: []\n", + "[INFO] [1712607559.015402]: Inverse Restrictions: []\n", + "[INFO] [1712607559.015641]: -------------------\n", + "[INFO] [1712607559.015873]: SOMA.CoilCooktop \n", + "[INFO] [1712607559.016103]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712607559.016369]: Ancestors: {DUL.Object, SOMA.CoilCooktop, SOMA.DesignedComponent, DUL.PhysicalObject, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.ElectricCooktop, DUL.PhysicalBody, SOMA.Cooktop}\n", + "[INFO] [1712607559.016629]: Subclasses: []\n", + "[INFO] [1712607559.016916]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.017419]: Instances: []\n", + "[INFO] [1712607559.017682]: Direct Instances: []\n", + "[INFO] [1712607559.017934]: Inverse Restrictions: []\n", + "[INFO] [1712607559.018190]: -------------------\n", + "[INFO] [1712607559.018435]: SOMA.Collision \n", + "[INFO] [1712607559.018674]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712607559.018932]: Ancestors: {DUL.Object, SOMA.Collision, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.019179]: Subclasses: []\n", + "[INFO] [1712607559.019461]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.019958]: Instances: []\n", + "[INFO] [1712607559.020220]: Direct Instances: []\n", + "[INFO] [1712607559.020466]: Inverse Restrictions: []\n", + "[INFO] [1712607559.020698]: -------------------\n", + "[INFO] [1712607559.020927]: SOMA.Extrinsic \n", + "[INFO] [1712607559.021164]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712607559.021416]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.021670]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712607559.021971]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.022536]: Instances: []\n", + "[INFO] [1712607559.022804]: Direct Instances: []\n", + "[INFO] [1712607559.023062]: Inverse Restrictions: []\n", + "[INFO] [1712607559.023301]: -------------------\n", + "[INFO] [1712607559.023535]: SOMA.ImperativeClause \n", + "[INFO] [1712607559.023812]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712607559.024096]: Ancestors: {DUL.Object, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, SOMA.ImperativeClause, DUL.SocialObject}\n", + "[INFO] [1712607559.024353]: Subclasses: []\n", + "[INFO] [1712607559.024659]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.025152]: Instances: []\n", + "[INFO] [1712607559.025409]: Direct Instances: []\n", + "[INFO] [1712607559.025700]: Inverse Restrictions: []\n", + "[INFO] [1712607559.026097]: -------------------\n", + "[INFO] [1712607559.026495]: SOMA.CommitedObject \n", + "[INFO] [1712607559.026754]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712607559.027040]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CommitedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.027381]: Subclasses: []\n", + "[INFO] [1712607559.027714]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.028249]: Instances: []\n", + "[INFO] [1712607559.028529]: Direct Instances: []\n", + "[INFO] [1712607559.028789]: Inverse Restrictions: []\n", + "[INFO] [1712607559.029034]: -------------------\n", + "[INFO] [1712607559.029273]: SOMA.ConnectedObject \n", + "[INFO] [1712607559.029518]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.029768]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.030020]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712607559.030318]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.030832]: Instances: []\n", + "[INFO] [1712607559.031096]: Direct Instances: []\n", + "[INFO] [1712607559.031464]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712607559.031711]: -------------------\n", + "[INFO] [1712607559.031950]: SOMA.CommunicationAction \n", + "[INFO] [1712607559.032220]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712607559.032503]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.CommunicationAction, DUL.Entity}\n", + "[INFO] [1712607559.032752]: Subclasses: []\n", + "[INFO] [1712607559.033042]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.033540]: Instances: []\n", + "[INFO] [1712607559.033808]: Direct Instances: []\n", + "[INFO] [1712607559.034873]: Inverse Restrictions: []\n", + "[INFO] [1712607559.035142]: -------------------\n", + "[INFO] [1712607559.035391]: SOMA.LinguisticObject \n", + "[INFO] [1712607559.035639]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712607559.035896]: Ancestors: {DUL.Object, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607559.036150]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712607559.036455]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.036967]: Instances: []\n", + "[INFO] [1712607559.037225]: Direct Instances: []\n", + "[INFO] [1712607559.037511]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712607559.037766]: -------------------\n", + "[INFO] [1712607559.038010]: SOMA.CommunicationReport \n", + "[INFO] [1712607559.038253]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607559.038519]: Ancestors: {DUL.Object, DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.038770]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712607559.039069]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.039570]: Instances: []\n", + "[INFO] [1712607559.039827]: Direct Instances: []\n", + "[INFO] [1712607559.040089]: Inverse Restrictions: []\n", + "[INFO] [1712607559.040332]: -------------------\n", + "[INFO] [1712607559.040573]: SOMA.Receiver \n", + "[INFO] [1712607559.040809]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712607559.041083]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Receiver, SOMA.ExperiencerRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607559.041343]: Subclasses: []\n", + "[INFO] [1712607559.041642]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.042137]: Instances: []\n", + "[INFO] [1712607559.042414]: Direct Instances: []\n", + "[INFO] [1712607559.042735]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607559.042982]: -------------------\n", + "[INFO] [1712607559.043219]: SOMA.Sender \n", + "[INFO] [1712607559.043453]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712607559.043734]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.Sender, DUL.SocialObject}\n", + "[INFO] [1712607559.043985]: Subclasses: []\n", + "[INFO] [1712607559.044277]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.044829]: Instances: []\n", + "[INFO] [1712607559.045107]: Direct Instances: []\n", + "[INFO] [1712607559.045438]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607559.045686]: -------------------\n", + "[INFO] [1712607559.045928]: SOMA.CommunicationTopic \n", + "[INFO] [1712607559.046943]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712607559.047252]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.047523]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607559.047831]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.048348]: Instances: []\n", + "[INFO] [1712607559.048625]: Direct Instances: []\n", + "[INFO] [1712607559.048889]: Inverse Restrictions: []\n", + "[INFO] [1712607559.049128]: -------------------\n", + "[INFO] [1712607559.049366]: SOMA.ResourceRole \n", + "[INFO] [1712607559.049602]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607559.049850]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.050123]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712607559.050432]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.050983]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607559.051257]: Direct Instances: []\n", + "[INFO] [1712607559.051524]: Inverse Restrictions: []\n", + "[INFO] [1712607559.051767]: -------------------\n", + "[INFO] [1712607559.052005]: SOMA.Compartment \n", + "[INFO] [1712607559.052241]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.052514]: Ancestors: {DUL.Object, SOMA.Compartment, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.052768]: Subclasses: [SOMA.FreezerCompartment]\n", + "[INFO] [1712607559.053061]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.053551]: Instances: []\n", + "[INFO] [1712607559.053822]: Direct Instances: []\n", + "[INFO] [1712607559.054077]: Inverse Restrictions: []\n", + "[INFO] [1712607559.054326]: -------------------\n", + "[INFO] [1712607559.054565]: SOMA.Composing \n", + "[INFO] [1712607559.054805]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712607559.055064]: Ancestors: {SOMA.Composing, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.055323]: Subclasses: []\n", + "[INFO] [1712607559.055624]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.056114]: Instances: []\n", + "[INFO] [1712607559.056383]: Direct Instances: []\n", + "[INFO] [1712607559.056689]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712607559.056933]: -------------------\n", + "[INFO] [1712607559.057168]: SOMA.Computer_Language \n", + "[INFO] [1712607559.057400]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712607559.057653]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607559.057914]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712607559.058209]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.058736]: Instances: []\n", + "[INFO] [1712607559.059007]: Direct Instances: []\n", + "[INFO] [1712607559.059268]: Inverse Restrictions: []\n", + "[INFO] [1712607559.059507]: -------------------\n", + "[INFO] [1712607559.059745]: SOMA.FormalLanguage \n", + "[INFO] [1712607559.059997]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712607559.060252]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607559.060504]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607559.060799]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.061329]: Instances: []\n", + "[INFO] [1712607559.061612]: Direct Instances: []\n", + "[INFO] [1712607559.061932]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712607559.062196]: -------------------\n", + "[INFO] [1712607559.062468]: SOMA.Computer_Program \n", + "[INFO] [1712607559.062732]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.064900]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712607559.065206]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712607559.065526]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607559.066040]: Instances: []\n", + "[INFO] [1712607559.066312]: Direct Instances: []\n", + "[INFO] [1712607559.068147]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712607559.068435]: -------------------\n", + "[INFO] [1712607559.068694]: SOMA.Programming_Language \n", + "[INFO] [1712607559.068950]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712607559.069230]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.Language, SOMA.FormalLanguage, DUL.Entity, SOMA.Programming_Language, DUL.SocialObject}\n", + "[INFO] [1712607559.069502]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712607559.069822]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.070330]: Instances: []\n", + "[INFO] [1712607559.070598]: Direct Instances: []\n", + "[INFO] [1712607559.070916]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712607559.071168]: -------------------\n", + "[INFO] [1712607559.071426]: SOMA.Conclusion \n", + "[INFO] [1712607559.071677]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712607559.071963]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Conclusion, DUL.Role, SOMA.Knowledge, owl.Thing, SOMA.CreatedObject, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.072213]: Subclasses: []\n", + "[INFO] [1712607559.072505]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.073008]: Instances: []\n", + "[INFO] [1712607559.073276]: Direct Instances: []\n", + "[INFO] [1712607559.074337]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607559.074601]: -------------------\n", + "[INFO] [1712607559.074860]: SOMA.CreatedObject \n", + "[INFO] [1712607559.075108]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.075362]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.CreatedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.075615]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712607559.075907]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.076412]: Instances: []\n", + "[INFO] [1712607559.076679]: Direct Instances: []\n", + "[INFO] [1712607559.077048]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712607559.077309]: -------------------\n", + "[INFO] [1712607559.077564]: SOMA.Knowledge \n", + "[INFO] [1712607559.077859]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712607559.078127]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.078391]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712607559.078692]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.079206]: Instances: []\n", + "[INFO] [1712607559.079500]: Direct Instances: []\n", + "[INFO] [1712607559.080674]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712607559.080959]: -------------------\n", + "[INFO] [1712607559.081214]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712607559.081464]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712607559.081734]: Ancestors: {DUL.Object, DUL.Description, SOMA.ConditionalSuccedence, SOMA.Succedence, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.081982]: Subclasses: []\n", + "[INFO] [1712607559.082342]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.083014]: Instances: []\n", + "[INFO] [1712607559.083412]: Direct Instances: []\n", + "[INFO] [1712607559.083809]: Inverse Restrictions: []\n", + "[INFO] [1712607559.084175]: -------------------\n", + "[INFO] [1712607559.084536]: SOMA.Configuration \n", + "[INFO] [1712607559.084906]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712607559.085315]: Ancestors: {DUL.Object, SOMA.Configuration, DUL.Description, owl.Thing, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.085693]: Subclasses: []\n", + "[INFO] [1712607559.086018]: Properties: [rdf-schema.comment, DUL.describes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.086525]: Instances: []\n", + "[INFO] [1712607559.086920]: Direct Instances: []\n", + "[INFO] [1712607559.087213]: Inverse Restrictions: []\n", + "[INFO] [1712607559.087476]: -------------------\n", + "[INFO] [1712607559.087724]: SOMA.Connectivity \n", + "[INFO] [1712607559.087969]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712607559.088219]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.088485]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712607559.088784]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.089280]: Instances: []\n", + "[INFO] [1712607559.089545]: Direct Instances: []\n", + "[INFO] [1712607559.089844]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712607559.090093]: -------------------\n", + "[INFO] [1712607559.090344]: SOMA.ContactState \n", + "[INFO] [1712607559.090605]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712607559.090879]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ContactState, DUL.SocialObject}\n", + "[INFO] [1712607559.091144]: Subclasses: []\n", + "[INFO] [1712607559.091438]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.091930]: Instances: []\n", + "[INFO] [1712607559.092183]: Direct Instances: []\n", + "[INFO] [1712607559.092430]: Inverse Restrictions: []\n", + "[INFO] [1712607559.092679]: -------------------\n", + "[INFO] [1712607559.092920]: SOMA.Container \n", + "[INFO] [1712607559.093151]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712607559.093413]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.Container, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607559.093675]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", + "[INFO] [1712607559.093966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.094500]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607559.094790]: Direct Instances: []\n", + "[INFO] [1712607559.095520]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712607559.095796]: -------------------\n", + "[INFO] [1712607559.096048]: SOMA.Containment \n", + "[INFO] [1712607559.096325]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712607559.096616]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", + "[INFO] [1712607559.096880]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712607559.097179]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.097678]: Instances: []\n", + "[INFO] [1712607559.097952]: Direct Instances: []\n", + "[INFO] [1712607559.098356]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712607559.098608]: -------------------\n", + "[INFO] [1712607559.098849]: SOMA.IncludedObject \n", + "[INFO] [1712607559.099087]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.099348]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.099615]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712607559.099912]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.100404]: Instances: []\n", + "[INFO] [1712607559.100660]: Direct Instances: []\n", + "[INFO] [1712607559.100946]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712607559.101200]: -------------------\n", + "[INFO] [1712607559.101442]: SOMA.ContainmentState \n", + "[INFO] [1712607559.102460]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712607559.102805]: Ancestors: {DUL.Object, DUL.Entity, SOMA.StateType, SOMA.ContainmentState, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607559.103076]: Subclasses: []\n", + "[INFO] [1712607559.103380]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.103871]: Instances: []\n", + "[INFO] [1712607559.104144]: Direct Instances: []\n", + "[INFO] [1712607559.104404]: Inverse Restrictions: []\n", + "[INFO] [1712607559.104644]: -------------------\n", + "[INFO] [1712607559.104877]: SOMA.FunctionalControl \n", + "[INFO] [1712607559.105132]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712607559.105398]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.105654]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712607559.105947]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.106443]: Instances: []\n", + "[INFO] [1712607559.106715]: Direct Instances: []\n", + "[INFO] [1712607559.106972]: Inverse Restrictions: []\n", + "[INFO] [1712607559.107217]: -------------------\n", + "[INFO] [1712607559.107452]: SOMA.ContainmentTheory \n", + "[INFO] [1712607559.107681]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712607559.107959]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.SocialObject, SOMA.ContainmentTheory}\n", + "[INFO] [1712607559.108220]: Subclasses: []\n", + "[INFO] [1712607559.108517]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.109010]: Instances: []\n", + "[INFO] [1712607559.109266]: Direct Instances: []\n", + "[INFO] [1712607559.109526]: Inverse Restrictions: []\n", + "[INFO] [1712607559.109767]: -------------------\n", + "[INFO] [1712607559.110000]: SOMA.ControlTheory \n", + "[INFO] [1712607559.110235]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712607559.110484]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.110744]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712607559.111083]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.111588]: Instances: []\n", + "[INFO] [1712607559.111857]: Direct Instances: []\n", + "[INFO] [1712607559.112120]: Inverse Restrictions: []\n", + "[INFO] [1712607559.112362]: -------------------\n", + "[INFO] [1712607559.112595]: SOMA.ContinuousJoint \n", + "[INFO] [1712607559.112823]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712607559.113096]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.ContinuousJoint, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607559.113361]: Subclasses: []\n", + "[INFO] [1712607559.113659]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.114151]: Instances: []\n", + "[INFO] [1712607559.114411]: Direct Instances: []\n", + "[INFO] [1712607559.114675]: Inverse Restrictions: []\n", + "[INFO] [1712607559.114916]: -------------------\n", + "[INFO] [1712607559.115150]: SOMA.HingeJoint \n", + "[INFO] [1712607559.115381]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712607559.115638]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607559.115889]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712607559.116177]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.116673]: Instances: []\n", + "[INFO] [1712607559.116941]: Direct Instances: []\n", + "[INFO] [1712607559.117206]: Inverse Restrictions: []\n", + "[INFO] [1712607559.117446]: -------------------\n", + "[INFO] [1712607559.117678]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712607559.117942]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712607559.118215]: Ancestors: {DUL.Object, DUL.Description, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.118477]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712607559.118770]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.119260]: Instances: []\n", + "[INFO] [1712607559.119531]: Direct Instances: []\n", + "[INFO] [1712607559.119797]: Inverse Restrictions: []\n", + "[INFO] [1712607559.120037]: -------------------\n", + "[INFO] [1712607559.120272]: SOMA.Cooktop \n", + "[INFO] [1712607559.120504]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.120749]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Cooktop}\n", + "[INFO] [1712607559.121006]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", + "[INFO] [1712607559.121297]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.121796]: Instances: []\n", + "[INFO] [1712607559.122064]: Direct Instances: []\n", + "[INFO] [1712607559.122320]: Inverse Restrictions: []\n", + "[INFO] [1712607559.122561]: -------------------\n", + "[INFO] [1712607559.122792]: SOMA.Countertop \n", + "[INFO] [1712607559.123018]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.123281]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Countertop}\n", + "[INFO] [1712607559.123535]: Subclasses: []\n", + "[INFO] [1712607559.123821]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.124300]: Instances: []\n", + "[INFO] [1712607559.124564]: Direct Instances: []\n", + "[INFO] [1712607559.124820]: Inverse Restrictions: []\n", + "[INFO] [1712607559.125056]: -------------------\n", + "[INFO] [1712607559.125290]: SOMA.Cover \n", + "[INFO] [1712607559.125520]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712607559.125782]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, SOMA.Cover}\n", + "[INFO] [1712607559.126041]: Subclasses: []\n", + "[INFO] [1712607559.126341]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.126830]: Instances: []\n", + "[INFO] [1712607559.127091]: Direct Instances: []\n", + "[INFO] [1712607559.127397]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712607559.127650]: -------------------\n", + "[INFO] [1712607559.127922]: SOMA.Coverage \n", + "[INFO] [1712607559.128186]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712607559.128460]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.Coverage, DUL.Quality}\n", + "[INFO] [1712607559.128720]: Subclasses: []\n", + "[INFO] [1712607559.129020]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.129639]: Instances: []\n", + "[INFO] [1712607559.129978]: Direct Instances: []\n", + "[INFO] [1712607559.130316]: Inverse Restrictions: []\n", + "[INFO] [1712607559.130638]: -------------------\n", + "[INFO] [1712607559.130910]: SOMA.CoveredObject \n", + "[INFO] [1712607559.131152]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712607559.131417]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.CoveredObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.131660]: Subclasses: []\n", + "[INFO] [1712607559.131951]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.132456]: Instances: []\n", + "[INFO] [1712607559.132723]: Direct Instances: []\n", + "[INFO] [1712607559.133016]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712607559.133260]: -------------------\n", + "[INFO] [1712607559.133498]: SOMA.CoverageTheory \n", + "[INFO] [1712607559.133736]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712607559.134012]: Ancestors: {DUL.Object, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.CoverageTheory, DUL.SocialObject}\n", + "[INFO] [1712607559.134263]: Subclasses: []\n", + "[INFO] [1712607559.134557]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.135040]: Instances: []\n", + "[INFO] [1712607559.135306]: Direct Instances: []\n", + "[INFO] [1712607559.135562]: Inverse Restrictions: []\n", + "[INFO] [1712607559.135802]: -------------------\n", + "[INFO] [1712607559.136038]: SOMA.CoveringTheory \n", + "[INFO] [1712607559.136276]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712607559.136562]: Ancestors: {DUL.Object, SOMA.CoveringTheory, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.136816]: Subclasses: []\n", + "[INFO] [1712607559.137107]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.137590]: Instances: []\n", + "[INFO] [1712607559.137862]: Direct Instances: []\n", + "[INFO] [1712607559.138114]: Inverse Restrictions: []\n", + "[INFO] [1712607559.138362]: -------------------\n", + "[INFO] [1712607559.138595]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712607559.138833]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712607559.139092]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.139350]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712607559.139643]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.140144]: Instances: []\n", + "[INFO] [1712607559.140407]: Direct Instances: []\n", + "[INFO] [1712607559.140664]: Inverse Restrictions: []\n", + "[INFO] [1712607559.140902]: -------------------\n", + "[INFO] [1712607559.141136]: SOMA.CrackingTheory \n", + "[INFO] [1712607559.141377]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712607559.141649]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, SOMA.CrackingTheory, DUL.SocialObject}\n", + "[INFO] [1712607559.141896]: Subclasses: []\n", + "[INFO] [1712607559.142188]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.142671]: Instances: []\n", + "[INFO] [1712607559.142942]: Direct Instances: []\n", + "[INFO] [1712607559.143196]: Inverse Restrictions: []\n", + "[INFO] [1712607559.143435]: -------------------\n", + "[INFO] [1712607559.143668]: SOMA.Creation \n", + "[INFO] [1712607559.143898]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712607559.144167]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Creation, DUL.SocialObject}\n", + "[INFO] [1712607559.144480]: Subclasses: []\n", + "[INFO] [1712607559.144786]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.145272]: Instances: []\n", + "[INFO] [1712607559.145529]: Direct Instances: []\n", + "[INFO] [1712607559.145807]: Inverse Restrictions: []\n", + "[INFO] [1712607559.146056]: -------------------\n", + "[INFO] [1712607559.146297]: SOMA.Tableware \n", + "[INFO] [1712607559.146530]: Super classes: [SOMA.DesignedTool]\n", + "[INFO] [1712607559.146779]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Tableware}\n", + "[INFO] [1712607559.147038]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", + "[INFO] [1712607559.147326]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.147845]: Instances: []\n", + "[INFO] [1712607559.148095]: Direct Instances: []\n", + "[INFO] [1712607559.148349]: Inverse Restrictions: []\n", + "[INFO] [1712607559.148589]: -------------------\n", + "[INFO] [1712607559.148824]: SOMA.Insertion \n", + "[INFO] [1712607559.149074]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712607559.149350]: Ancestors: {SOMA.Insertion, owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", + "[INFO] [1712607559.149955]: Subclasses: []\n", + "[INFO] [1712607559.150327]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.150945]: Instances: []\n", + "[INFO] [1712607559.151414]: Direct Instances: []\n", + "[INFO] [1712607559.152107]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712607559.152480]: -------------------\n", + "[INFO] [1712607559.152767]: SOMA.Cup \n", + "[INFO] [1712607559.153044]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712607559.153337]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Cup, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607559.153593]: Subclasses: []\n", + "[INFO] [1712607559.153884]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.154408]: Instances: []\n", + "[INFO] [1712607559.154735]: Direct Instances: []\n", + "[INFO] [1712607559.155018]: Inverse Restrictions: []\n", + "[INFO] [1712607559.155285]: -------------------\n", + "[INFO] [1712607559.155538]: SOMA.DesignedHandle \n", + "[INFO] [1712607559.155800]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", + "[INFO] [1712607559.156078]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.DesignedHandle}\n", + "[INFO] [1712607559.156327]: Subclasses: []\n", + "[INFO] [1712607559.156621]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.157131]: Instances: []\n", + "[INFO] [1712607559.157399]: Direct Instances: []\n", + "[INFO] [1712607559.157747]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", + "[INFO] [1712607559.157997]: -------------------\n", + "[INFO] [1712607559.158245]: SOMA.Cupboard \n", + "[INFO] [1712607559.158502]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", + "[INFO] [1712607559.158790]: Ancestors: {DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Cupboard}\n", + "[INFO] [1712607559.159063]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", + "[INFO] [1712607559.159362]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.159867]: Instances: []\n", + "[INFO] [1712607559.160135]: Direct Instances: []\n", + "[INFO] [1712607559.160390]: Inverse Restrictions: []\n", + "[INFO] [1712607559.160631]: -------------------\n", + "[INFO] [1712607559.160866]: SOMA.DesignedFurniture \n", + "[INFO] [1712607559.161113]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712607559.161383]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.161659]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712607559.161956]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.162471]: Instances: []\n", + "[INFO] [1712607559.162755]: Direct Instances: []\n", + "[INFO] [1712607559.163021]: Inverse Restrictions: []\n", + "[INFO] [1712607559.163268]: -------------------\n", + "[INFO] [1712607559.163505]: SOMA.Rack \n", + "[INFO] [1712607559.163734]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.163997]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, SOMA.Rack, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.164256]: Subclasses: []\n", + "[INFO] [1712607559.164545]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.165041]: Instances: []\n", + "[INFO] [1712607559.165311]: Direct Instances: []\n", + "[INFO] [1712607559.165588]: Inverse Restrictions: [SOMA.Cupboard]\n", + "[INFO] [1712607559.165833]: -------------------\n", + "[INFO] [1712607559.166070]: SOMA.Cutlery \n", + "[INFO] [1712607559.166306]: Super classes: [SOMA.Tableware]\n", + "[INFO] [1712607559.166566]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware}\n", + "[INFO] [1712607559.166837]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", + "[INFO] [1712607559.167128]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.167631]: Instances: []\n", + "[INFO] [1712607559.167890]: Direct Instances: []\n", + "[INFO] [1712607559.168136]: Inverse Restrictions: []\n", + "[INFO] [1712607559.168390]: -------------------\n", + "[INFO] [1712607559.168631]: SOMA.Cuttability \n", + "[INFO] [1712607559.168869]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712607559.169127]: Ancestors: {SOMA.Cuttability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.169374]: Subclasses: []\n", + "[INFO] [1712607559.169674]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.170173]: Instances: []\n", + "[INFO] [1712607559.170429]: Direct Instances: []\n", + "[INFO] [1712607559.170678]: Inverse Restrictions: []\n", + "[INFO] [1712607559.170915]: -------------------\n", + "[INFO] [1712607559.171164]: SOMA.Tool \n", + "[INFO] [1712607559.171414]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712607559.171667]: Ancestors: {SOMA.Tool, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.171914]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712607559.172215]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.172720]: Instances: []\n", + "[INFO] [1712607559.172982]: Direct Instances: []\n", + "[INFO] [1712607559.173270]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712607559.173526]: -------------------\n", + "[INFO] [1712607559.173777]: SOMA.Cutting \n", + "[INFO] [1712607559.174016]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712607559.174281]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.174530]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712607559.174828]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.175319]: Instances: []\n", + "[INFO] [1712607559.175579]: Direct Instances: []\n", + "[INFO] [1712607559.175827]: Inverse Restrictions: []\n", + "[INFO] [1712607559.176065]: -------------------\n", + "[INFO] [1712607559.176310]: SOMA.CuttingTool \n", + "[INFO] [1712607559.176558]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", + "[INFO] [1712607559.176806]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.177047]: Subclasses: [SOMA.Knife]\n", + "[INFO] [1712607559.177327]: Properties: [SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.177831]: Instances: []\n", + "[INFO] [1712607559.178111]: Direct Instances: []\n", + "[INFO] [1712607559.178376]: Inverse Restrictions: []\n", + "[INFO] [1712607559.178620]: -------------------\n", + "[INFO] [1712607559.178858]: SOMA.DesignedTool \n", + "[INFO] [1712607559.179106]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712607559.179382]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.179643]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712607559.179935]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.180484]: Instances: []\n", + "[INFO] [1712607559.180755]: Direct Instances: []\n", + "[INFO] [1712607559.181015]: Inverse Restrictions: []\n", + "[INFO] [1712607559.181254]: -------------------\n", + "[INFO] [1712607559.181488]: SOMA.Shaping \n", + "[INFO] [1712607559.181758]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712607559.182042]: Ancestors: {SOMA.Shaping, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.182309]: Subclasses: []\n", + "[INFO] [1712607559.182607]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.183097]: Instances: []\n", + "[INFO] [1712607559.183354]: Direct Instances: []\n", + "[INFO] [1712607559.183637]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712607559.183884]: -------------------\n", + "[INFO] [1712607559.184120]: SOMA.Database \n", + "[INFO] [1712607559.184355]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607559.184620]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", + "[INFO] [1712607559.184890]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712607559.185187]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.185684]: Instances: []\n", + "[INFO] [1712607559.185956]: Direct Instances: []\n", + "[INFO] [1712607559.186219]: Inverse Restrictions: []\n", + "[INFO] [1712607559.186466]: -------------------\n", + "[INFO] [1712607559.186696]: SOMA.SoftwareRole \n", + "[INFO] [1712607559.186951]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712607559.187212]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.187469]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712607559.187760]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.188281]: Instances: []\n", + "[INFO] [1712607559.188555]: Direct Instances: []\n", + "[INFO] [1712607559.188852]: Inverse Restrictions: []\n", + "[INFO] [1712607559.189102]: -------------------\n", + "[INFO] [1712607559.189345]: SOMA.Deciding \n", + "[INFO] [1712607559.189578]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607559.189836]: Ancestors: {owl.Thing, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712607559.190104]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712607559.190409]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.190908]: Instances: []\n", + "[INFO] [1712607559.191160]: Direct Instances: []\n", + "[INFO] [1712607559.191417]: Inverse Restrictions: []\n", + "[INFO] [1712607559.191665]: -------------------\n", + "[INFO] [1712607559.191900]: SOMA.DerivingInformation \n", + "[INFO] [1712607559.192144]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712607559.192383]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712607559.192652]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712607559.192951]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712607559.193471]: Instances: []\n", + "[INFO] [1712607559.193739]: Direct Instances: []\n", + "[INFO] [1712607559.193999]: Inverse Restrictions: []\n", + "[INFO] [1712607559.194241]: -------------------\n", + "[INFO] [1712607559.194532]: SOMA.DeductiveReasoning \n", + "[INFO] [1712607559.194766]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712607559.195030]: Ancestors: {SOMA.DeductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.195286]: Subclasses: []\n", + "[INFO] [1712607559.195575]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.196093]: Instances: []\n", + "[INFO] [1712607559.196355]: Direct Instances: []\n", + "[INFO] [1712607559.196614]: Inverse Restrictions: []\n", + "[INFO] [1712607559.196851]: -------------------\n", + "[INFO] [1712607559.197086]: SOMA.Deformation \n", + "[INFO] [1712607559.197339]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712607559.197622]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, SOMA.Deformation, DUL.EventType}\n", + "[INFO] [1712607559.197873]: Subclasses: []\n", + "[INFO] [1712607559.198174]: Properties: [SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.198664]: Instances: []\n", + "[INFO] [1712607559.198936]: Direct Instances: []\n", + "[INFO] [1712607559.199194]: Inverse Restrictions: []\n", + "[INFO] [1712607559.199432]: -------------------\n", + "[INFO] [1712607559.199663]: SOMA.ShapedObject \n", + "[INFO] [1712607559.199930]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712607559.200220]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ShapedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.200483]: Subclasses: []\n", + "[INFO] [1712607559.200781]: Properties: [SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.201270]: Instances: []\n", + "[INFO] [1712607559.201538]: Direct Instances: []\n", + "[INFO] [1712607559.201859]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712607559.202108]: -------------------\n", + "[INFO] [1712607559.202362]: SOMA.FluidFlow \n", + "[INFO] [1712607559.202638]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712607559.202917]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.FluidFlow, SOMA.Motion}\n", + "[INFO] [1712607559.203166]: Subclasses: []\n", + "[INFO] [1712607559.203453]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.203958]: Instances: []\n", + "[INFO] [1712607559.204223]: Direct Instances: []\n", + "[INFO] [1712607559.204477]: Inverse Restrictions: []\n", + "[INFO] [1712607559.204715]: -------------------\n", + "[INFO] [1712607559.204948]: SOMA.Shifting \n", + "[INFO] [1712607559.205211]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712607559.205494]: Ancestors: {SOMA.Shifting, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.205748]: Subclasses: []\n", + "[INFO] [1712607559.206039]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.206537]: Instances: []\n", + "[INFO] [1712607559.206852]: Direct Instances: []\n", + "[INFO] [1712607559.207225]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712607559.207486]: -------------------\n", + "[INFO] [1712607559.207724]: SOMA.DependentPlace \n", + "[INFO] [1712607559.207961]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712607559.208219]: Ancestors: {DUL.Object, owl.Thing, DUL.Entity, SOMA.DependentPlace, SOMA.Feature}\n", + "[INFO] [1712607559.208473]: Subclasses: []\n", + "[INFO] [1712607559.208762]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.209244]: Instances: []\n", + "[INFO] [1712607559.209519]: Direct Instances: []\n", + "[INFO] [1712607559.209775]: Inverse Restrictions: []\n", + "[INFO] [1712607559.210012]: -------------------\n", + "[INFO] [1712607559.210256]: SOMA.Deposit \n", + "[INFO] [1712607559.210495]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712607559.210756]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Deposit, DUL.SocialObject}\n", + "[INFO] [1712607559.211015]: Subclasses: []\n", + "[INFO] [1712607559.211334]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.211824]: Instances: []\n", + "[INFO] [1712607559.212077]: Direct Instances: []\n", + "[INFO] [1712607559.212365]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712607559.212628]: -------------------\n", + "[INFO] [1712607559.212873]: SOMA.DepositedObject \n", + "[INFO] [1712607559.213112]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.213374]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.DepositedObject, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.213614]: Subclasses: []\n", + "[INFO] [1712607559.213895]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.214403]: Instances: []\n", + "[INFO] [1712607559.214668]: Direct Instances: []\n", + "[INFO] [1712607559.214958]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712607559.215199]: -------------------\n", + "[INFO] [1712607559.215441]: SOMA.InformationAcquisition \n", + "[INFO] [1712607559.215682]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.215920]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712607559.216175]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712607559.216463]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712607559.217004]: Instances: []\n", + "[INFO] [1712607559.217272]: Direct Instances: []\n", + "[INFO] [1712607559.217561]: Inverse Restrictions: []\n", + "[INFO] [1712607559.217798]: -------------------\n", + "[INFO] [1712607559.218032]: SOMA.Premise \n", + "[INFO] [1712607559.218278]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712607559.218552]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Premise, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.218798]: Subclasses: []\n", + "[INFO] [1712607559.219087]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.219569]: Instances: []\n", + "[INFO] [1712607559.219834]: Direct Instances: []\n", + "[INFO] [1712607559.220140]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607559.220385]: -------------------\n", + "[INFO] [1712607559.220622]: SOMA.FunctionalPart \n", + "[INFO] [1712607559.221262]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712607559.221541]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.221811]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712607559.222106]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.222653]: Instances: []\n", + "[INFO] [1712607559.222929]: Direct Instances: []\n", + "[INFO] [1712607559.223191]: Inverse Restrictions: []\n", + "[INFO] [1712607559.223435]: -------------------\n", + "[INFO] [1712607559.223670]: SOMA.Graspability \n", + "[INFO] [1712607559.223907]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712607559.224183]: Ancestors: {SOMA.Graspability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.224435]: Subclasses: []\n", + "[INFO] [1712607559.224720]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.225197]: Instances: []\n", + "[INFO] [1712607559.225464]: Direct Instances: []\n", + "[INFO] [1712607559.225746]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712607559.225990]: -------------------\n", + "[INFO] [1712607559.226230]: SOMA.DesignedSpade \n", + "[INFO] [1712607559.226464]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.226724]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, SOMA.DesignedSpade, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.226978]: Subclasses: []\n", + "[INFO] [1712607559.227534]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.228231]: Instances: []\n", + "[INFO] [1712607559.228677]: Direct Instances: []\n", + "[INFO] [1712607559.229141]: Inverse Restrictions: [SOMA.Spatula]\n", + "[INFO] [1712607559.229531]: -------------------\n", + "[INFO] [1712607559.229907]: SOMA.DessertFork \n", + "[INFO] [1712607559.230189]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712607559.230598]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.DessertFork, SOMA.Tableware, SOMA.Fork}\n", + "[INFO] [1712607559.230988]: Subclasses: []\n", + "[INFO] [1712607559.231408]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.231930]: Instances: []\n", + "[INFO] [1712607559.232202]: Direct Instances: []\n", + "[INFO] [1712607559.232459]: Inverse Restrictions: []\n", + "[INFO] [1712607559.232707]: -------------------\n", + "[INFO] [1712607559.232953]: SOMA.Fork \n", + "[INFO] [1712607559.233202]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712607559.233455]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Fork}\n", + "[INFO] [1712607559.233706]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", + "[INFO] [1712607559.233996]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.234517]: Instances: []\n", + "[INFO] [1712607559.234799]: Direct Instances: []\n", + "[INFO] [1712607559.235062]: Inverse Restrictions: []\n", + "[INFO] [1712607559.235304]: -------------------\n", + "[INFO] [1712607559.235543]: SOMA.Destination \n", + "[INFO] [1712607559.235793]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712607559.236043]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.236293]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712607559.236609]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.237098]: Instances: []\n", + "[INFO] [1712607559.237362]: Direct Instances: []\n", + "[INFO] [1712607559.237706]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712607559.237964]: -------------------\n", + "[INFO] [1712607559.238220]: SOMA.Location \n", + "[INFO] [1712607559.238463]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712607559.238712]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.238962]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712607559.239248]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.239763]: Instances: []\n", + "[INFO] [1712607559.240029]: Direct Instances: []\n", + "[INFO] [1712607559.240284]: Inverse Restrictions: []\n", + "[INFO] [1712607559.240535]: -------------------\n", + "[INFO] [1712607559.240778]: SOMA.DestroyedObject \n", + "[INFO] [1712607559.241016]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.241280]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.DestroyedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.241528]: Subclasses: []\n", + "[INFO] [1712607559.241823]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.242324]: Instances: []\n", + "[INFO] [1712607559.242588]: Direct Instances: []\n", + "[INFO] [1712607559.242886]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712607559.243150]: -------------------\n", + "[INFO] [1712607559.243398]: SOMA.Destruction \n", + "[INFO] [1712607559.243644]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712607559.243910]: Ancestors: {DUL.Object, DUL.EventType, SOMA.Destruction, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.244153]: Subclasses: []\n", + "[INFO] [1712607559.244505]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.245020]: Instances: []\n", + "[INFO] [1712607559.245285]: Direct Instances: []\n", + "[INFO] [1712607559.245538]: Inverse Restrictions: []\n", + "[INFO] [1712607559.245807]: -------------------\n", + "[INFO] [1712607559.246058]: SOMA.DetectedObject \n", + "[INFO] [1712607559.246306]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.246572]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.DetectedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.246818]: Subclasses: []\n", + "[INFO] [1712607559.247113]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.247617]: Instances: []\n", + "[INFO] [1712607559.247881]: Direct Instances: []\n", + "[INFO] [1712607559.248130]: Inverse Restrictions: []\n", + "[INFO] [1712607559.248367]: -------------------\n", + "[INFO] [1712607559.248603]: SOMA.DeviceState \n", + "[INFO] [1712607559.248839]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607559.249113]: Ancestors: {SOMA.DeviceState, SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607559.249362]: Subclasses: []\n", + "[INFO] [1712607559.249651]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.250133]: Instances: []\n", + "[INFO] [1712607559.250411]: Direct Instances: []\n", + "[INFO] [1712607559.250666]: Inverse Restrictions: []\n", + "[INFO] [1712607559.250908]: -------------------\n", + "[INFO] [1712607559.251144]: SOMA.DeviceStateRange \n", + "[INFO] [1712607559.251384]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607559.252253]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607559.252525]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712607559.252825]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.253313]: Instances: []\n", + "[INFO] [1712607559.253588]: Direct Instances: []\n", + "[INFO] [1712607559.253850]: Inverse Restrictions: []\n", + "[INFO] [1712607559.254092]: -------------------\n", + "[INFO] [1712607559.254334]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712607559.254566]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712607559.254828]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceTurnedOff, DUL.Region}\n", + "[INFO] [1712607559.255088]: Subclasses: []\n", + "[INFO] [1712607559.255382]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.255871]: Instances: []\n", + "[INFO] [1712607559.256127]: Direct Instances: []\n", + "[INFO] [1712607559.256410]: Inverse Restrictions: []\n", + "[INFO] [1712607559.256665]: -------------------\n", + "[INFO] [1712607559.256903]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712607559.257137]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712607559.257397]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceTurnedOn, DUL.Region}\n", + "[INFO] [1712607559.257656]: Subclasses: []\n", + "[INFO] [1712607559.257948]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.258444]: Instances: []\n", + "[INFO] [1712607559.258705]: Direct Instances: []\n", + "[INFO] [1712607559.258992]: Inverse Restrictions: []\n", + "[INFO] [1712607559.259231]: -------------------\n", + "[INFO] [1712607559.259475]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712607559.259711]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712607559.259953]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, owl.Thing, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.260196]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712607559.260478]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.261009]: Instances: []\n", + "[INFO] [1712607559.261312]: Direct Instances: []\n", + "[INFO] [1712607559.261576]: Inverse Restrictions: []\n", + "[INFO] [1712607559.261838]: -------------------\n", + "[INFO] [1712607559.262085]: SOMA.Dicing \n", + "[INFO] [1712607559.262327]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712607559.262613]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, SOMA.Dicing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.262866]: Subclasses: []\n", + "[INFO] [1712607559.263157]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.263648]: Instances: []\n", + "[INFO] [1712607559.263922]: Direct Instances: []\n", + "[INFO] [1712607559.264176]: Inverse Restrictions: []\n", + "[INFO] [1712607559.264412]: -------------------\n", + "[INFO] [1712607559.264646]: SOMA.DinnerPlate \n", + "[INFO] [1712607559.264880]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712607559.265155]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.DinnerPlate, SOMA.Crockery, SOMA.Plate, SOMA.Tableware}\n", + "[INFO] [1712607559.265405]: Subclasses: []\n", + "[INFO] [1712607559.265687]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.266173]: Instances: []\n", + "[INFO] [1712607559.266446]: Direct Instances: []\n", + "[INFO] [1712607559.266701]: Inverse Restrictions: []\n", + "[INFO] [1712607559.266943]: -------------------\n", + "[INFO] [1712607559.267178]: SOMA.DirectedMotion \n", + "[INFO] [1712607559.267412]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712607559.267660]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607559.267930]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712607559.268233]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.268749]: Instances: []\n", + "[INFO] [1712607559.269021]: Direct Instances: []\n", + "[INFO] [1712607559.269285]: Inverse Restrictions: []\n", + "[INFO] [1712607559.269524]: -------------------\n", + "[INFO] [1712607559.269765]: SOMA.UndirectedMotion \n", + "[INFO] [1712607559.269999]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712607559.270268]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, SOMA.UndirectedMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607559.270528]: Subclasses: []\n", + "[INFO] [1712607559.270823]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.271311]: Instances: []\n", + "[INFO] [1712607559.271567]: Direct Instances: []\n", + "[INFO] [1712607559.271808]: Inverse Restrictions: []\n", + "[INFO] [1712607559.272056]: -------------------\n", + "[INFO] [1712607559.272293]: SOMA.Dirty \n", + "[INFO] [1712607559.272526]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712607559.272785]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, SOMA.Dirty, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607559.273043]: Subclasses: []\n", + "[INFO] [1712607559.273331]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.273815]: Instances: []\n", + "[INFO] [1712607559.274067]: Direct Instances: []\n", + "[INFO] [1712607559.274334]: Inverse Restrictions: []\n", + "[INFO] [1712607559.274577]: -------------------\n", + "[INFO] [1712607559.274814]: SOMA.Discourse \n", + "[INFO] [1712607559.275044]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607559.275304]: Ancestors: {DUL.Object, SOMA.Discourse, DUL.Entity, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.275560]: Subclasses: []\n", + "[INFO] [1712607559.275848]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.276331]: Instances: []\n", + "[INFO] [1712607559.276582]: Direct Instances: []\n", + "[INFO] [1712607559.276838]: Inverse Restrictions: []\n", + "[INFO] [1712607559.277079]: -------------------\n", + "[INFO] [1712607559.277310]: SOMA.Dishwasher \n", + "[INFO] [1712607559.277537]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", + "[INFO] [1712607559.277861]: Ancestors: {DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Dishwasher}\n", + "[INFO] [1712607559.278128]: Subclasses: []\n", + "[INFO] [1712607559.278423]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.278913]: Instances: []\n", + "[INFO] [1712607559.279191]: Direct Instances: []\n", + "[INFO] [1712607559.279450]: Inverse Restrictions: []\n", + "[INFO] [1712607559.279693]: -------------------\n", + "[INFO] [1712607559.279932]: SOMA.DishwasherTab \n", + "[INFO] [1712607559.280165]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712607559.280455]: Ancestors: {DUL.Object, DUL.FunctionalSubstance, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.Substance, SOMA.DishwasherTab, DUL.PhysicalArtifact, owl.Thing, DUL.DesignedSubstance, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.280716]: Subclasses: []\n", + "[INFO] [1712607559.281007]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.281495]: Instances: []\n", + "[INFO] [1712607559.281766]: Direct Instances: []\n", + "[INFO] [1712607559.282024]: Inverse Restrictions: []\n", + "[INFO] [1712607559.282344]: -------------------\n", + "[INFO] [1712607559.282708]: SOMA.Dispenser \n", + "[INFO] [1712607559.283062]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712607559.283442]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Dispenser, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.283833]: Subclasses: [SOMA.SugarDispenser]\n", + "[INFO] [1712607559.284242]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.284854]: Instances: []\n", + "[INFO] [1712607559.285153]: Direct Instances: []\n", + "[INFO] [1712607559.285427]: Inverse Restrictions: []\n", + "[INFO] [1712607559.285671]: -------------------\n", + "[INFO] [1712607559.286031]: SOMA.Distancing \n", + "[INFO] [1712607559.286304]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712607559.286590]: Ancestors: {DUL.Object, SOMA.Distancing, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.286845]: Subclasses: []\n", + "[INFO] [1712607559.287135]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.287638]: Instances: []\n", + "[INFO] [1712607559.287901]: Direct Instances: []\n", + "[INFO] [1712607559.288154]: Inverse Restrictions: []\n", + "[INFO] [1712607559.288388]: -------------------\n", + "[INFO] [1712607559.288618]: SOMA.Door \n", + "[INFO] [1712607559.288862]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.289131]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Door}\n", + "[INFO] [1712607559.289378]: Subclasses: []\n", + "[INFO] [1712607559.289659]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.290159]: Instances: []\n", + "[INFO] [1712607559.290423]: Direct Instances: []\n", + "[INFO] [1712607559.290702]: Inverse Restrictions: [SOMA.Refrigerator]\n", + "[INFO] [1712607559.290941]: -------------------\n", + "[INFO] [1712607559.291180]: SOMA.Drawer \n", + "[INFO] [1712607559.291413]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", + "[INFO] [1712607559.291687]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.Drawer, DUL.PhysicalBody}\n", + "[INFO] [1712607559.291937]: Subclasses: []\n", + "[INFO] [1712607559.292217]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.292696]: Instances: []\n", + "[INFO] [1712607559.292960]: Direct Instances: []\n", + "[INFO] [1712607559.293214]: Inverse Restrictions: []\n", + "[INFO] [1712607559.293450]: -------------------\n", + "[INFO] [1712607559.293682]: SOMA.Dreaming \n", + "[INFO] [1712607559.293912]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607559.294181]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", + "[INFO] [1712607559.294487]: Subclasses: []\n", + "[INFO] [1712607559.294784]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.295298]: Instances: []\n", + "[INFO] [1712607559.295586]: Direct Instances: []\n", + "[INFO] [1712607559.295850]: Inverse Restrictions: []\n", + "[INFO] [1712607559.296093]: -------------------\n", + "[INFO] [1712607559.296334]: SOMA.Driving \n", + "[INFO] [1712607559.296565]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607559.296830]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, DUL.EventType, SOMA.Driving, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607559.297092]: Subclasses: []\n", + "[INFO] [1712607559.297399]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.297887]: Instances: []\n", + "[INFO] [1712607559.298149]: Direct Instances: []\n", + "[INFO] [1712607559.298403]: Inverse Restrictions: []\n", + "[INFO] [1712607559.298648]: -------------------\n", + "[INFO] [1712607559.298889]: SOMA.Flying \n", + "[INFO] [1712607559.299120]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607559.299392]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Flying, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607559.299645]: Subclasses: []\n", + "[INFO] [1712607559.299947]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.300439]: Instances: []\n", + "[INFO] [1712607559.300709]: Direct Instances: []\n", + "[INFO] [1712607559.300966]: Inverse Restrictions: []\n", + "[INFO] [1712607559.301206]: -------------------\n", + "[INFO] [1712607559.301444]: SOMA.Swimming \n", + "[INFO] [1712607559.301677]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607559.301941]: Ancestors: {DUL.Object, SOMA.DirectedMotion, SOMA.Swimming, DUL.Entity, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607559.302236]: Subclasses: []\n", + "[INFO] [1712607559.302548]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.303045]: Instances: []\n", + "[INFO] [1712607559.303299]: Direct Instances: []\n", + "[INFO] [1712607559.303558]: Inverse Restrictions: []\n", + "[INFO] [1712607559.303801]: -------------------\n", + "[INFO] [1712607559.304037]: SOMA.Walking \n", + "[INFO] [1712607559.304276]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607559.304548]: Ancestors: {SOMA.Walking, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607559.304798]: Subclasses: []\n", + "[INFO] [1712607559.305081]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.305569]: Instances: []\n", + "[INFO] [1712607559.305843]: Direct Instances: []\n", + "[INFO] [1712607559.306105]: Inverse Restrictions: []\n", + "[INFO] [1712607559.306353]: -------------------\n", + "[INFO] [1712607559.306592]: SOMA.Dropping \n", + "[INFO] [1712607559.306832]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607559.307104]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Dropping, DUL.EventType}\n", + "[INFO] [1712607559.307352]: Subclasses: []\n", + "[INFO] [1712607559.307647]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.308130]: Instances: []\n", + "[INFO] [1712607559.308402]: Direct Instances: []\n", + "[INFO] [1712607559.308654]: Inverse Restrictions: []\n", + "[INFO] [1712607559.308897]: -------------------\n", + "[INFO] [1712607559.309129]: SOMA.Placing \n", + "[INFO] [1712607559.309362]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607559.309623]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Placing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.309880]: Subclasses: []\n", + "[INFO] [1712607559.310177]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.310673]: Instances: [SOMA.placing]\n", + "[INFO] [1712607559.310935]: Direct Instances: [SOMA.placing]\n", + "[INFO] [1712607559.311234]: Inverse Restrictions: []\n", + "[INFO] [1712607559.311487]: -------------------\n", + "[INFO] [1712607559.311729]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712607559.311999]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712607559.312303]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.ESTSchemaTheory, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.312577]: Subclasses: []\n", + "[INFO] [1712607559.312878]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.313366]: Instances: []\n", + "[INFO] [1712607559.313625]: Direct Instances: []\n", + "[INFO] [1712607559.313881]: Inverse Restrictions: []\n", + "[INFO] [1712607559.314121]: -------------------\n", + "[INFO] [1712607559.314362]: SOMA.ExistingObjectRole \n", + "[INFO] [1712607559.314607]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607559.314881]: Ancestors: {DUL.Object, SOMA.ExistingObjectRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.315143]: Subclasses: []\n", + "[INFO] [1712607559.315444]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.315934]: Instances: []\n", + "[INFO] [1712607559.316204]: Direct Instances: []\n", + "[INFO] [1712607559.316500]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712607559.316746]: -------------------\n", + "[INFO] [1712607559.316983]: SOMA.Effort \n", + "[INFO] [1712607559.317214]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712607559.317488]: Ancestors: {DUL.Object, SOMA.Effort, DUL.Parameter, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.317735]: Subclasses: []\n", + "[INFO] [1712607559.318021]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.318508]: Instances: []\n", + "[INFO] [1712607559.318784]: Direct Instances: []\n", + "[INFO] [1712607559.319042]: Inverse Restrictions: []\n", + "[INFO] [1712607559.319288]: -------------------\n", + "[INFO] [1712607559.319523]: SOMA.EnclosedObject \n", + "[INFO] [1712607559.319760]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712607559.320022]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.320289]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712607559.320583]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.321073]: Instances: []\n", + "[INFO] [1712607559.321340]: Direct Instances: []\n", + "[INFO] [1712607559.321645]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712607559.321891]: -------------------\n", + "[INFO] [1712607559.322132]: SOMA.Enclosing \n", + "[INFO] [1712607559.322370]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712607559.322651]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", + "[INFO] [1712607559.322912]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712607559.323210]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.323702]: Instances: []\n", + "[INFO] [1712607559.323975]: Direct Instances: []\n", + "[INFO] [1712607559.324234]: Inverse Restrictions: []\n", + "[INFO] [1712607559.324471]: -------------------\n", + "[INFO] [1712607559.324708]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712607559.324938]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607559.325196]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.325464]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712607559.325758]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.326267]: Instances: []\n", + "[INFO] [1712607559.326535]: Direct Instances: []\n", + "[INFO] [1712607559.326792]: Inverse Restrictions: []\n", + "[INFO] [1712607559.327030]: -------------------\n", + "[INFO] [1712607559.327261]: SOMA.Manipulating \n", + "[INFO] [1712607559.327513]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712607559.327835]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.328114]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712607559.328412]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.328923]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712607559.329194]: Direct Instances: []\n", + "[INFO] [1712607559.329454]: Inverse Restrictions: []\n", + "[INFO] [1712607559.329695]: -------------------\n", + "[INFO] [1712607559.329930]: SOMA.Episode \n", + "[INFO] [1712607559.330163]: Super classes: [DUL.Situation]\n", + "[INFO] [1712607559.330423]: Ancestors: {DUL.Situation, SOMA.Episode, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.330679]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712607559.330966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.331446]: Instances: []\n", + "[INFO] [1712607559.331719]: Direct Instances: []\n", + "[INFO] [1712607559.331975]: Inverse Restrictions: []\n", + "[INFO] [1712607559.332213]: -------------------\n", + "[INFO] [1712607559.332447]: SOMA.ExcludedObject \n", + "[INFO] [1712607559.332683]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.332954]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.ExcludedObject, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.333207]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712607559.333496]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.333983]: Instances: []\n", + "[INFO] [1712607559.334270]: Direct Instances: []\n", + "[INFO] [1712607559.334583]: Inverse Restrictions: []\n", + "[INFO] [1712607559.334893]: -------------------\n", + "[INFO] [1712607559.335137]: SOMA.ExecutableFile \n", + "[INFO] [1712607559.335373]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.336585]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", + "[INFO] [1712607559.336865]: Subclasses: []\n", + "[INFO] [1712607559.337173]: Properties: [DUL.realizes, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.337672]: Instances: []\n", + "[INFO] [1712607559.337929]: Direct Instances: []\n", + "[INFO] [1712607559.338993]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712607559.339258]: -------------------\n", + "[INFO] [1712607559.339506]: SOMA.Executable_Code \n", + "[INFO] [1712607559.339743]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712607559.340943]: Ancestors: {owl.Thing, SOMA.Executable_Code, SOMA.Computer_Program}\n", + "[INFO] [1712607559.341221]: Subclasses: []\n", + "[INFO] [1712607559.341537]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607559.342039]: Instances: []\n", + "[INFO] [1712607559.342304]: Direct Instances: []\n", + "[INFO] [1712607559.342645]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712607559.342916]: -------------------\n", + "[INFO] [1712607559.343166]: SOMA.ExecutableFormat \n", + "[INFO] [1712607559.343410]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712607559.343683]: Ancestors: {DUL.Object, SOMA.ExecutableFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607559.343945]: Subclasses: []\n", + "[INFO] [1712607559.344251]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.344764]: Instances: []\n", + "[INFO] [1712607559.345030]: Direct Instances: []\n", + "[INFO] [1712607559.345335]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712607559.345588]: -------------------\n", + "[INFO] [1712607559.345832]: SOMA.SchematicTheory \n", + "[INFO] [1712607559.346066]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712607559.346313]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.346557]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712607559.346847]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.347374]: Instances: []\n", + "[INFO] [1712607559.347632]: Direct Instances: []\n", + "[INFO] [1712607559.347883]: Inverse Restrictions: []\n", + "[INFO] [1712607559.348116]: -------------------\n", + "[INFO] [1712607559.348346]: SOMA.ExecutableSoftware \n", + "[INFO] [1712607559.348582]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.349068]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", + "[INFO] [1712607559.349319]: Subclasses: []\n", + "[INFO] [1712607559.349610]: Properties: [DUL.hasMember, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.350113]: Instances: []\n", + "[INFO] [1712607559.350384]: Direct Instances: []\n", + "[INFO] [1712607559.350633]: Inverse Restrictions: []\n", + "[INFO] [1712607559.351266]: -------------------\n", + "[INFO] [1712607559.351733]: SOMA.Software \n", + "[INFO] [1712607559.352132]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712607559.352618]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, DUL.Design, SOMA.Software, DUL.SocialObject}\n", + "[INFO] [1712607559.352993]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712607559.353344]: Properties: [rdf-schema.label, DUL.describes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.353861]: Instances: []\n", + "[INFO] [1712607559.354155]: Direct Instances: []\n", + "[INFO] [1712607559.354633]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607559.354921]: -------------------\n", + "[INFO] [1712607559.355180]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712607559.355426]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712607559.355682]: Ancestors: {DUL.Object, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.355934]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712607559.356229]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.356742]: Instances: []\n", + "[INFO] [1712607559.357013]: Direct Instances: []\n", + "[INFO] [1712607559.357272]: Inverse Restrictions: []\n", + "[INFO] [1712607559.357512]: -------------------\n", + "[INFO] [1712607559.357756]: SOMA.ExperiencerRole \n", + "[INFO] [1712607559.358004]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712607559.358259]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.ExperiencerRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607559.358514]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712607559.358804]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.359313]: Instances: []\n", + "[INFO] [1712607559.359576]: Direct Instances: []\n", + "[INFO] [1712607559.359826]: Inverse Restrictions: []\n", + "[INFO] [1712607559.360066]: -------------------\n", + "[INFO] [1712607559.360301]: SOMA.ExtractedObject \n", + "[INFO] [1712607559.360530]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.360796]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.ExtractedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.361048]: Subclasses: []\n", + "[INFO] [1712607559.361353]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.361849]: Instances: []\n", + "[INFO] [1712607559.362105]: Direct Instances: []\n", + "[INFO] [1712607559.362359]: Inverse Restrictions: []\n", + "[INFO] [1712607559.362612]: -------------------\n", + "[INFO] [1712607559.362853]: SOMA.PhysicalQuality \n", + "[INFO] [1712607559.363090]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712607559.363391]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Entity, DUL.Quality}\n", + "[INFO] [1712607559.363669]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712607559.363975]: Properties: [rdf-schema.comment, DUL.isQualityOf, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.364588]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712607559.364884]: Direct Instances: []\n", + "[INFO] [1712607559.365150]: Inverse Restrictions: []\n", + "[INFO] [1712607559.365395]: -------------------\n", + "[INFO] [1712607559.365640]: SOMA.FailedAttempt \n", + "[INFO] [1712607559.365889]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712607559.366191]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, SOMA.FailedAttempt, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.366452]: Subclasses: []\n", + "[INFO] [1712607559.366760]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.367286]: Instances: []\n", + "[INFO] [1712607559.367566]: Direct Instances: []\n", + "[INFO] [1712607559.367818]: Inverse Restrictions: []\n", + "[INFO] [1712607559.368054]: -------------------\n", + "[INFO] [1712607559.368293]: SOMA.FaultySoftware \n", + "[INFO] [1712607559.368548]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712607559.368844]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.369094]: Subclasses: []\n", + "[INFO] [1712607559.369392]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.369898]: Instances: []\n", + "[INFO] [1712607559.370186]: Direct Instances: []\n", + "[INFO] [1712607559.370586]: Inverse Restrictions: []\n", + "[INFO] [1712607559.370886]: -------------------\n", + "[INFO] [1712607559.371161]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712607559.371423]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712607559.371683]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.371952]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712607559.372260]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.372837]: Instances: []\n", + "[INFO] [1712607559.373127]: Direct Instances: []\n", + "[INFO] [1712607559.373397]: Inverse Restrictions: []\n", + "[INFO] [1712607559.373648]: -------------------\n", + "[INFO] [1712607559.373898]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712607559.374141]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712607559.374394]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, SOMA.PhysicalAcquiring, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.374641]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712607559.374943]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.375437]: Instances: []\n", + "[INFO] [1712607559.375696]: Direct Instances: []\n", + "[INFO] [1712607559.375942]: Inverse Restrictions: []\n", + "[INFO] [1712607559.376190]: -------------------\n", + "[INFO] [1712607559.376430]: SOMA.Finger \n", + "[INFO] [1712607559.376686]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712607559.376956]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Finger}\n", + "[INFO] [1712607559.377195]: Subclasses: []\n", + "[INFO] [1712607559.377488]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isPartOf]\n", + "[INFO] [1712607559.378038]: Instances: []\n", + "[INFO] [1712607559.378371]: Direct Instances: []\n", + "[INFO] [1712607559.378679]: Inverse Restrictions: []\n", + "[INFO] [1712607559.378956]: -------------------\n", + "[INFO] [1712607559.379222]: SOMA.Hand \n", + "[INFO] [1712607559.379475]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712607559.379755]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, SOMA.Hand, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", + "[INFO] [1712607559.380018]: Subclasses: []\n", + "[INFO] [1712607559.380314]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.380811]: Instances: []\n", + "[INFO] [1712607559.381082]: Direct Instances: []\n", + "[INFO] [1712607559.381377]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712607559.381627]: -------------------\n", + "[INFO] [1712607559.381863]: SOMA.FixedJoint \n", + "[INFO] [1712607559.382122]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712607559.382412]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FixedJoint, DUL.Entity, DUL.PhysicalBody, SOMA.Joint}\n", + "[INFO] [1712607559.382665]: Subclasses: []\n", + "[INFO] [1712607559.382968]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.383453]: Instances: []\n", + "[INFO] [1712607559.383726]: Direct Instances: []\n", + "[INFO] [1712607559.384017]: Inverse Restrictions: []\n", + "[INFO] [1712607559.384259]: -------------------\n", + "[INFO] [1712607559.384493]: SOMA.MovableJoint \n", + "[INFO] [1712607559.384727]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712607559.384966]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607559.385234]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712607559.385532]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasJointState, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.386033]: Instances: []\n", + "[INFO] [1712607559.386307]: Direct Instances: []\n", + "[INFO] [1712607559.386608]: Inverse Restrictions: []\n", + "[INFO] [1712607559.386850]: -------------------\n", + "[INFO] [1712607559.387083]: SOMA.Flipping \n", + "[INFO] [1712607559.387320]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712607559.387586]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Flipping, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.387841]: Subclasses: []\n", + "[INFO] [1712607559.388133]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607559.388614]: Instances: []\n", + "[INFO] [1712607559.388865]: Direct Instances: []\n", + "[INFO] [1712607559.389117]: Inverse Restrictions: []\n", + "[INFO] [1712607559.389361]: -------------------\n", + "[INFO] [1712607559.389600]: SOMA.FloatingJoint \n", + "[INFO] [1712607559.389829]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712607559.390087]: Ancestors: {DUL.Object, SOMA.FloatingJoint, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607559.390333]: Subclasses: []\n", + "[INFO] [1712607559.390627]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.391120]: Instances: []\n", + "[INFO] [1712607559.391392]: Direct Instances: []\n", + "[INFO] [1712607559.391650]: Inverse Restrictions: []\n", + "[INFO] [1712607559.391887]: -------------------\n", + "[INFO] [1712607559.392125]: SOMA.Fluid \n", + "[INFO] [1712607559.392354]: Super classes: [DUL.Substance]\n", + "[INFO] [1712607559.392614]: Ancestors: {DUL.Object, DUL.Substance, DUL.PhysicalObject, SOMA.Fluid, owl.Thing, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.392877]: Subclasses: []\n", + "[INFO] [1712607559.393167]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.393662]: Instances: []\n", + "[INFO] [1712607559.393923]: Direct Instances: []\n", + "[INFO] [1712607559.394181]: Inverse Restrictions: []\n", + "[INFO] [1712607559.394492]: -------------------\n", + "[INFO] [1712607559.394743]: SOMA.MovedObject \n", + "[INFO] [1712607559.395014]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712607559.395287]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, SOMA.MovedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.395555]: Subclasses: []\n", + "[INFO] [1712607559.395874]: Properties: [SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.396378]: Instances: []\n", + "[INFO] [1712607559.396634]: Direct Instances: []\n", + "[INFO] [1712607559.397404]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712607559.397679]: -------------------\n", + "[INFO] [1712607559.397935]: SOMA.Focusing \n", + "[INFO] [1712607559.398182]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712607559.398449]: Ancestors: {DUL.Object, SOMA.Focusing, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.398696]: Subclasses: []\n", + "[INFO] [1712607559.398987]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.399489]: Instances: []\n", + "[INFO] [1712607559.399753]: Direct Instances: []\n", + "[INFO] [1712607559.400008]: Inverse Restrictions: []\n", + "[INFO] [1712607559.400243]: -------------------\n", + "[INFO] [1712607559.400476]: SOMA.Foolishness \n", + "[INFO] [1712607559.400723]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712607559.400990]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.Foolishness, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.401233]: Subclasses: []\n", + "[INFO] [1712607559.401510]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.402001]: Instances: []\n", + "[INFO] [1712607559.402286]: Direct Instances: []\n", + "[INFO] [1712607559.402542]: Inverse Restrictions: []\n", + "[INFO] [1712607559.402778]: -------------------\n", + "[INFO] [1712607559.403018]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712607559.403250]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712607559.403530]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.ForgettingIncorrectInformation, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.403788]: Subclasses: []\n", + "[INFO] [1712607559.404083]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.404571]: Instances: []\n", + "[INFO] [1712607559.404833]: Direct Instances: []\n", + "[INFO] [1712607559.405083]: Inverse Restrictions: []\n", + "[INFO] [1712607559.405318]: -------------------\n", + "[INFO] [1712607559.405548]: SOMA.InformationDismissal \n", + "[INFO] [1712607559.405815]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712607559.406090]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.406359]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712607559.406653]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.407150]: Instances: []\n", + "[INFO] [1712607559.407424]: Direct Instances: []\n", + "[INFO] [1712607559.407681]: Inverse Restrictions: []\n", + "[INFO] [1712607559.407923]: -------------------\n", + "[INFO] [1712607559.408155]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712607559.408385]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712607559.408657]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.ForgettingIrrelevantInformation, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.408910]: Subclasses: []\n", + "[INFO] [1712607559.409196]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.409676]: Instances: []\n", + "[INFO] [1712607559.409951]: Direct Instances: []\n", + "[INFO] [1712607559.410212]: Inverse Restrictions: []\n", + "[INFO] [1712607559.410450]: -------------------\n", + "[INFO] [1712607559.410686]: SOMA.Language \n", + "[INFO] [1712607559.410938]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712607559.411224]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607559.411488]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712607559.411783]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.412296]: Instances: []\n", + "[INFO] [1712607559.412585]: Direct Instances: []\n", + "[INFO] [1712607559.413648]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712607559.413915]: -------------------\n", + "[INFO] [1712607559.414167]: SOMA.FreezerCompartment \n", + "[INFO] [1712607559.414421]: Super classes: [SOMA.Compartment]\n", + "[INFO] [1712607559.414699]: Ancestors: {DUL.Object, SOMA.Compartment, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, SOMA.FreezerCompartment, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.414949]: Subclasses: []\n", + "[INFO] [1712607559.415232]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.415720]: Instances: []\n", + "[INFO] [1712607559.415989]: Direct Instances: []\n", + "[INFO] [1712607559.416247]: Inverse Restrictions: []\n", + "[INFO] [1712607559.416481]: -------------------\n", + "[INFO] [1712607559.416716]: SOMA.Item \n", + "[INFO] [1712607559.416947]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.417184]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.417450]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712607559.417743]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.418250]: Instances: []\n", + "[INFO] [1712607559.418520]: Direct Instances: []\n", + "[INFO] [1712607559.418877]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712607559.419126]: -------------------\n", + "[INFO] [1712607559.419358]: SOMA.FunctionalDesign \n", + "[INFO] [1712607559.419589]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712607559.419858]: Ancestors: {DUL.Object, DUL.Description, SOMA.FunctionalDesign, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607559.420103]: Subclasses: []\n", + "[INFO] [1712607559.420384]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.420866]: Instances: []\n", + "[INFO] [1712607559.421134]: Direct Instances: []\n", + "[INFO] [1712607559.421389]: Inverse Restrictions: []\n", + "[INFO] [1712607559.421623]: -------------------\n", + "[INFO] [1712607559.421853]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712607559.422079]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712607559.422328]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.422583]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712607559.422867]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.423360]: Instances: []\n", + "[INFO] [1712607559.423632]: Direct Instances: []\n", + "[INFO] [1712607559.423884]: Inverse Restrictions: []\n", + "[INFO] [1712607559.424125]: -------------------\n", + "[INFO] [1712607559.424360]: SOMA.LocatumRole \n", + "[INFO] [1712607559.424597]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607559.424875]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.LocatumRole, DUL.SocialObject}\n", + "[INFO] [1712607559.425122]: Subclasses: []\n", + "[INFO] [1712607559.425406]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.425889]: Instances: []\n", + "[INFO] [1712607559.426165]: Direct Instances: []\n", + "[INFO] [1712607559.426497]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712607559.426750]: -------------------\n", + "[INFO] [1712607559.426990]: SOMA.RelatumRole \n", + "[INFO] [1712607559.427226]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607559.427498]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.RelatumRole, DUL.SocialObject}\n", + "[INFO] [1712607559.427800]: Subclasses: []\n", + "[INFO] [1712607559.428102]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.428616]: Instances: []\n", + "[INFO] [1712607559.428990]: Direct Instances: []\n", + "[INFO] [1712607559.429354]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712607559.429617]: -------------------\n", + "[INFO] [1712607559.429866]: SOMA.GasCooktop \n", + "[INFO] [1712607559.430117]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712607559.430411]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, SOMA.GasCooktop, DUL.Entity, DUL.PhysicalBody, SOMA.Cooktop}\n", + "[INFO] [1712607559.430687]: Subclasses: []\n", + "[INFO] [1712607559.430983]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.431476]: Instances: []\n", + "[INFO] [1712607559.431749]: Direct Instances: []\n", + "[INFO] [1712607559.432001]: Inverse Restrictions: []\n", + "[INFO] [1712607559.432238]: -------------------\n", + "[INFO] [1712607559.432482]: SOMA.GetTaskParameter \n", + "[INFO] [1712607559.432720]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712607559.432986]: Ancestors: {SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.433237]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712607559.433537]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.434061]: Instances: []\n", + "[INFO] [1712607559.434495]: Direct Instances: []\n", + "[INFO] [1712607559.434819]: Inverse Restrictions: []\n", + "[INFO] [1712607559.435099]: -------------------\n", + "[INFO] [1712607559.435361]: SOMA.Planning \n", + "[INFO] [1712607559.435999]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712607559.436265]: Ancestors: {SOMA.Deciding, owl.Thing, SOMA.Planning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.436525]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712607559.436827]: Properties: [rdf-schema.comment, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.437337]: Instances: []\n", + "[INFO] [1712607559.437615]: Direct Instances: []\n", + "[INFO] [1712607559.437875]: Inverse Restrictions: []\n", + "[INFO] [1712607559.438117]: -------------------\n", + "[INFO] [1712607559.438359]: SOMA.Glass \n", + "[INFO] [1712607559.438592]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712607559.438856]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Glass, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607559.439123]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", + "[INFO] [1712607559.439413]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.439903]: Instances: []\n", + "[INFO] [1712607559.440156]: Direct Instances: []\n", + "[INFO] [1712607559.440403]: Inverse Restrictions: []\n", + "[INFO] [1712607559.440648]: -------------------\n", + "[INFO] [1712607559.440881]: SOMA.GraphDatabase \n", + "[INFO] [1712607559.441110]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712607559.441373]: Ancestors: {SOMA.GraphDatabase, DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", + "[INFO] [1712607559.441634]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712607559.441926]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.442420]: Instances: []\n", + "[INFO] [1712607559.442674]: Direct Instances: []\n", + "[INFO] [1712607559.442920]: Inverse Restrictions: []\n", + "[INFO] [1712607559.443166]: -------------------\n", + "[INFO] [1712607559.443405]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712607559.443639]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712607559.443905]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.GraphQueryLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", + "[INFO] [1712607559.444156]: Subclasses: []\n", + "[INFO] [1712607559.444446]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.444947]: Instances: []\n", + "[INFO] [1712607559.445205]: Direct Instances: []\n", + "[INFO] [1712607559.445458]: Inverse Restrictions: []\n", + "[INFO] [1712607559.445694]: -------------------\n", + "[INFO] [1712607559.445924]: SOMA.QueryLanguage \n", + "[INFO] [1712607559.446154]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607559.446410]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", + "[INFO] [1712607559.446662]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712607559.446953]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.447457]: Instances: []\n", + "[INFO] [1712607559.447714]: Direct Instances: []\n", + "[INFO] [1712607559.447963]: Inverse Restrictions: []\n", + "[INFO] [1712607559.448197]: -------------------\n", + "[INFO] [1712607559.448430]: SOMA.GraspTransfer \n", + "[INFO] [1712607559.448672]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712607559.448948]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.GraspTransfer, owl.Thing, SOMA.Grasping, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.449191]: Subclasses: []\n", + "[INFO] [1712607559.449471]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.449964]: Instances: []\n", + "[INFO] [1712607559.450232]: Direct Instances: []\n", + "[INFO] [1712607559.450483]: Inverse Restrictions: []\n", + "[INFO] [1712607559.450714]: -------------------\n", + "[INFO] [1712607559.450947]: SOMA.Grasping \n", + "[INFO] [1712607559.451176]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607559.451426]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.Grasping, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.451675]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712607559.451973]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.452486]: Instances: []\n", + "[INFO] [1712607559.452756]: Direct Instances: []\n", + "[INFO] [1712607559.453019]: Inverse Restrictions: []\n", + "[INFO] [1712607559.453264]: -------------------\n", + "[INFO] [1712607559.453515]: SOMA.Releasing \n", + "[INFO] [1712607559.453760]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607559.454028]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.Releasing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.454279]: Subclasses: []\n", + "[INFO] [1712607559.454563]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.455061]: Instances: []\n", + "[INFO] [1712607559.455327]: Direct Instances: []\n", + "[INFO] [1712607559.455585]: Inverse Restrictions: []\n", + "[INFO] [1712607559.455825]: -------------------\n", + "[INFO] [1712607559.456069]: SOMA.GraspingMotion \n", + "[INFO] [1712607559.456315]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712607559.457760]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", + "[INFO] [1712607559.458048]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712607559.458373]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.458880]: Instances: []\n", + "[INFO] [1712607559.459140]: Direct Instances: []\n", + "[INFO] [1712607559.459424]: Inverse Restrictions: []\n", + "[INFO] [1712607559.459667]: -------------------\n", + "[INFO] [1712607559.459914]: SOMA.IntermediateGrasp \n", + "[INFO] [1712607559.460160]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712607559.460427]: Ancestors: {DUL.Object, SOMA.IntermediateGrasp, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", + "[INFO] [1712607559.460675]: Subclasses: []\n", + "[INFO] [1712607559.460974]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.461524]: Instances: []\n", + "[INFO] [1712607559.461805]: Direct Instances: []\n", + "[INFO] [1712607559.462110]: Inverse Restrictions: []\n", + "[INFO] [1712607559.462515]: -------------------\n", + "[INFO] [1712607559.462872]: SOMA.PowerGrasp \n", + "[INFO] [1712607559.463230]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712607559.463637]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.PowerGrasp, SOMA.Motion}\n", + "[INFO] [1712607559.464008]: Subclasses: []\n", + "[INFO] [1712607559.464426]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.464942]: Instances: []\n", + "[INFO] [1712607559.465334]: Direct Instances: []\n", + "[INFO] [1712607559.465830]: Inverse Restrictions: []\n", + "[INFO] [1712607559.466165]: -------------------\n", + "[INFO] [1712607559.466452]: SOMA.PrecisionGrasp \n", + "[INFO] [1712607559.466715]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712607559.467006]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.PrecisionGrasp, SOMA.Motion}\n", + "[INFO] [1712607559.467264]: Subclasses: []\n", + "[INFO] [1712607559.467576]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.468074]: Instances: []\n", + "[INFO] [1712607559.468426]: Direct Instances: []\n", + "[INFO] [1712607559.468753]: Inverse Restrictions: []\n", + "[INFO] [1712607559.469017]: -------------------\n", + "[INFO] [1712607559.469273]: SOMA.PrehensileMotion \n", + "[INFO] [1712607559.469935]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712607559.470209]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607559.470477]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712607559.470796]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.471321]: Instances: []\n", + "[INFO] [1712607559.471594]: Direct Instances: []\n", + "[INFO] [1712607559.471855]: Inverse Restrictions: []\n", + "[INFO] [1712607559.472098]: -------------------\n", + "[INFO] [1712607559.472335]: SOMA.ReleasingMotion \n", + "[INFO] [1712607559.472586]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712607559.472873]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, SOMA.ReleasingMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", + "[INFO] [1712607559.473126]: Subclasses: []\n", + "[INFO] [1712607559.473421]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.473927]: Instances: []\n", + "[INFO] [1712607559.474198]: Direct Instances: []\n", + "[INFO] [1712607559.474500]: Inverse Restrictions: []\n", + "[INFO] [1712607559.474757]: -------------------\n", + "[INFO] [1712607559.474999]: SOMA.GreenColor \n", + "[INFO] [1712607559.475239]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712607559.475516]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, SOMA.GreenColor, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607559.475767]: Subclasses: []\n", + "[INFO] [1712607559.476058]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.476542]: Instances: []\n", + "[INFO] [1712607559.476813]: Direct Instances: []\n", + "[INFO] [1712607559.477068]: Inverse Restrictions: []\n", + "[INFO] [1712607559.477309]: -------------------\n", + "[INFO] [1712607559.477541]: SOMA.Gripper \n", + "[INFO] [1712607559.477831]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712607559.478117]: Ancestors: {DUL.Object, SOMA.Gripper, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", + "[INFO] [1712607559.478375]: Subclasses: []\n", + "[INFO] [1712607559.478666]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.479156]: Instances: []\n", + "[INFO] [1712607559.479422]: Direct Instances: []\n", + "[INFO] [1712607559.479671]: Inverse Restrictions: []\n", + "[INFO] [1712607559.479909]: -------------------\n", + "[INFO] [1712607559.480146]: SOMA.PrehensileEffector \n", + "[INFO] [1712607559.480379]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712607559.480623]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", + "[INFO] [1712607559.480889]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712607559.481208]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.481700]: Instances: []\n", + "[INFO] [1712607559.481956]: Direct Instances: []\n", + "[INFO] [1712607559.482276]: Inverse Restrictions: []\n", + "[INFO] [1712607559.482525]: -------------------\n", + "[INFO] [1712607559.482763]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712607559.482994]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712607559.483270]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.HardwareDiagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.483532]: Subclasses: []\n", + "[INFO] [1712607559.483823]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.484305]: Instances: []\n", + "[INFO] [1712607559.484582]: Direct Instances: []\n", + "[INFO] [1712607559.484836]: Inverse Restrictions: []\n", + "[INFO] [1712607559.485072]: -------------------\n", + "[INFO] [1712607559.485308]: SOMA.HasQualityRegion \n", + "[INFO] [1712607559.485573]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712607559.485857]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Relation, DUL.Entity, SOMA.HasQualityRegion, DUL.SocialObject}\n", + "[INFO] [1712607559.486112]: Subclasses: []\n", + "[INFO] [1712607559.486415]: Properties: [rdf-schema.isDefinedBy, DUL.hasQuality, DUL.hasRegion, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607559.486908]: Instances: []\n", + "[INFO] [1712607559.487179]: Direct Instances: []\n", + "[INFO] [1712607559.487432]: Inverse Restrictions: []\n", + "[INFO] [1712607559.487672]: -------------------\n", + "[INFO] [1712607559.487906]: SOMA.Head \n", + "[INFO] [1712607559.488148]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712607559.488415]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.Head, DUL.PhysicalBody}\n", + "[INFO] [1712607559.488674]: Subclasses: []\n", + "[INFO] [1712607559.488966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.489448]: Instances: []\n", + "[INFO] [1712607559.489698]: Direct Instances: []\n", + "[INFO] [1712607559.489941]: Inverse Restrictions: []\n", + "[INFO] [1712607559.490189]: -------------------\n", + "[INFO] [1712607559.490435]: SOMA.HeadMovement \n", + "[INFO] [1712607559.490672]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712607559.490938]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.HeadMovement, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", + "[INFO] [1712607559.491201]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712607559.491497]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.491983]: Instances: []\n", + "[INFO] [1712607559.492237]: Direct Instances: []\n", + "[INFO] [1712607559.492492]: Inverse Restrictions: []\n", + "[INFO] [1712607559.492734]: -------------------\n", + "[INFO] [1712607559.492966]: SOMA.HeadTurning \n", + "[INFO] [1712607559.493195]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712607559.493456]: Ancestors: {DUL.Object, DUL.Entity, DUL.EventType, SOMA.HeadTurning, owl.Thing, SOMA.ProcessType, SOMA.HeadMovement, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607559.493719]: Subclasses: []\n", + "[INFO] [1712607559.494014]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.494557]: Instances: []\n", + "[INFO] [1712607559.494840]: Direct Instances: []\n", + "[INFO] [1712607559.495109]: Inverse Restrictions: []\n", + "[INFO] [1712607559.495354]: -------------------\n", + "[INFO] [1712607559.495599]: SOMA.Holding \n", + "[INFO] [1712607559.495836]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607559.496101]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Holding, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.496365]: Subclasses: []\n", + "[INFO] [1712607559.496665]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.497155]: Instances: []\n", + "[INFO] [1712607559.497420]: Direct Instances: []\n", + "[INFO] [1712607559.497668]: Inverse Restrictions: []\n", + "[INFO] [1712607559.497916]: -------------------\n", + "[INFO] [1712607559.498166]: SOMA.HostRole \n", + "[INFO] [1712607559.498426]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712607559.498696]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.HostRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.498939]: Subclasses: []\n", + "[INFO] [1712607559.499227]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.499730]: Instances: []\n", + "[INFO] [1712607559.500000]: Direct Instances: []\n", + "[INFO] [1712607559.501043]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712607559.501302]: -------------------\n", + "[INFO] [1712607559.501560]: SOMA.PluginSpecification \n", + "[INFO] [1712607559.501821]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712607559.502094]: Ancestors: {SOMA.PluginSpecification, SOMA.API_Specification, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607559.502346]: Subclasses: []\n", + "[INFO] [1712607559.502641]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole]\n", + "[INFO] [1712607559.503147]: Instances: []\n", + "[INFO] [1712607559.503415]: Direct Instances: []\n", + "[INFO] [1712607559.503744]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712607559.503993]: -------------------\n", + "[INFO] [1712607559.504235]: SOMA.Hotplate \n", + "[INFO] [1712607559.504474]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.504750]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Hotplate}\n", + "[INFO] [1712607559.504999]: Subclasses: []\n", + "[INFO] [1712607559.505280]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.505758]: Instances: []\n", + "[INFO] [1712607559.506028]: Direct Instances: []\n", + "[INFO] [1712607559.506423]: Inverse Restrictions: [SOMA.Stove]\n", + "[INFO] [1712607559.506768]: -------------------\n", + "[INFO] [1712607559.507062]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712607559.507353]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712607559.507645]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.Language, SOMA.FormalLanguage, SOMA.Human-readable_Programming_Language, DUL.Entity, SOMA.Programming_Language, DUL.SocialObject}\n", + "[INFO] [1712607559.507908]: Subclasses: []\n", + "[INFO] [1712607559.508214]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.508717]: Instances: []\n", + "[INFO] [1712607559.508988]: Direct Instances: []\n", + "[INFO] [1712607559.510043]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712607559.510305]: -------------------\n", + "[INFO] [1712607559.510548]: SOMA.Source_Code \n", + "[INFO] [1712607559.510799]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712607559.511279]: Ancestors: {owl.Thing, SOMA.Source_Code, SOMA.Computer_Program}\n", + "[INFO] [1712607559.511540]: Subclasses: []\n", + "[INFO] [1712607559.511842]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607559.512340]: Instances: []\n", + "[INFO] [1712607559.512604]: Direct Instances: []\n", + "[INFO] [1712607559.512888]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712607559.513131]: -------------------\n", + "[INFO] [1712607559.513380]: SOMA.HumanActivityRecording \n", + "[INFO] [1712607559.513622]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712607559.513891]: Ancestors: {SOMA.RecordedEpisode, owl.Thing, SOMA.Episode, SOMA.HumanActivityRecording, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712607559.514136]: Subclasses: []\n", + "[INFO] [1712607559.514429]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.514923]: Instances: []\n", + "[INFO] [1712607559.515183]: Direct Instances: []\n", + "[INFO] [1712607559.515437]: Inverse Restrictions: []\n", + "[INFO] [1712607559.515675]: -------------------\n", + "[INFO] [1712607559.515904]: SOMA.Imagining \n", + "[INFO] [1712607559.516146]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712607559.516407]: Ancestors: {SOMA.Imagining, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712607559.516651]: Subclasses: []\n", + "[INFO] [1712607559.516931]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.517425]: Instances: []\n", + "[INFO] [1712607559.517687]: Direct Instances: []\n", + "[INFO] [1712607559.517936]: Inverse Restrictions: []\n", + "[INFO] [1712607559.518174]: -------------------\n", + "[INFO] [1712607559.518409]: SOMA.Impediment \n", + "[INFO] [1712607559.518687]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712607559.518959]: Ancestors: {SOMA.Impediment, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.519201]: Subclasses: []\n", + "[INFO] [1712607559.519489]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.519982]: Instances: []\n", + "[INFO] [1712607559.520252]: Direct Instances: []\n", + "[INFO] [1712607559.520502]: Inverse Restrictions: []\n", + "[INFO] [1712607559.520740]: -------------------\n", + "[INFO] [1712607559.520972]: SOMA.Obstacle \n", + "[INFO] [1712607559.521206]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712607559.521490]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Entity, SOMA.Obstacle, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607559.521740]: Subclasses: []\n", + "[INFO] [1712607559.522023]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.522508]: Instances: []\n", + "[INFO] [1712607559.522777]: Direct Instances: []\n", + "[INFO] [1712607559.523062]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712607559.523303]: -------------------\n", + "[INFO] [1712607559.523535]: SOMA.RestrictedObject \n", + "[INFO] [1712607559.523767]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712607559.524027]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.RestrictedObject, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.524284]: Subclasses: []\n", + "[INFO] [1712607559.524580]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.525064]: Instances: []\n", + "[INFO] [1712607559.525333]: Direct Instances: []\n", + "[INFO] [1712607559.525621]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712607559.525863]: -------------------\n", + "[INFO] [1712607559.526097]: SOMA.StateTransition \n", + "[INFO] [1712607559.526369]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712607559.526650]: Ancestors: {DUL.Transition, owl.Thing, DUL.Entity, DUL.Situation, SOMA.StateTransition}\n", + "[INFO] [1712607559.526900]: Subclasses: []\n", + "[INFO] [1712607559.527194]: Properties: [DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, SOMA.hasInitialScene, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607559.527673]: Instances: []\n", + "[INFO] [1712607559.527940]: Direct Instances: []\n", + "[INFO] [1712607559.528257]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712607559.528505]: -------------------\n", + "[INFO] [1712607559.528739]: SOMA.Inability \n", + "[INFO] [1712607559.528968]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712607559.529228]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, SOMA.Inability, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.529486]: Subclasses: []\n", + "[INFO] [1712607559.529777]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.530267]: Instances: []\n", + "[INFO] [1712607559.530522]: Direct Instances: []\n", + "[INFO] [1712607559.530779]: Inverse Restrictions: []\n", + "[INFO] [1712607559.531024]: -------------------\n", + "[INFO] [1712607559.531263]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712607559.531496]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712607559.531755]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, SOMA.IncompatibleSoftware, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.532013]: Subclasses: []\n", + "[INFO] [1712607559.532306]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.532789]: Instances: []\n", + "[INFO] [1712607559.533059]: Direct Instances: []\n", + "[INFO] [1712607559.533312]: Inverse Restrictions: []\n", + "[INFO] [1712607559.533546]: -------------------\n", + "[INFO] [1712607559.533780]: SOMA.InductionCooktop \n", + "[INFO] [1712607559.534011]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712607559.534291]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, SOMA.InductionCooktop, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.ElectricCooktop, DUL.PhysicalBody, SOMA.Cooktop}\n", + "[INFO] [1712607559.534548]: Subclasses: []\n", + "[INFO] [1712607559.534845]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.535337]: Instances: []\n", + "[INFO] [1712607559.535599]: Direct Instances: []\n", + "[INFO] [1712607559.535856]: Inverse Restrictions: []\n", + "[INFO] [1712607559.536096]: -------------------\n", + "[INFO] [1712607559.536334]: SOMA.InductiveReasoning \n", + "[INFO] [1712607559.536567]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712607559.536833]: Ancestors: {SOMA.InductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.537076]: Subclasses: []\n", + "[INFO] [1712607559.537358]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.537835]: Instances: []\n", + "[INFO] [1712607559.538104]: Direct Instances: []\n", + "[INFO] [1712607559.538363]: Inverse Restrictions: []\n", + "[INFO] [1712607559.538598]: -------------------\n", + "[INFO] [1712607559.538837]: SOMA.Infeasibility \n", + "[INFO] [1712607559.539083]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712607559.539351]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.539593]: Subclasses: []\n", + "[INFO] [1712607559.539874]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.540364]: Instances: []\n", + "[INFO] [1712607559.540624]: Direct Instances: []\n", + "[INFO] [1712607559.540870]: Inverse Restrictions: []\n", + "[INFO] [1712607559.541100]: -------------------\n", + "[INFO] [1712607559.541618]: SOMA.InferenceRules \n", + "[INFO] [1712607559.542059]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712607559.542523]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.InferenceRules, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.542945]: Subclasses: []\n", + "[INFO] [1712607559.543409]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.544094]: Instances: []\n", + "[INFO] [1712607559.544529]: Direct Instances: []\n", + "[INFO] [1712607559.544946]: Inverse Restrictions: []\n", + "[INFO] [1712607559.545298]: -------------------\n", + "[INFO] [1712607559.545642]: SOMA.InformationRetrieval \n", + "[INFO] [1712607559.545991]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712607559.546368]: Ancestors: {SOMA.InformationRetrieval, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712607559.546661]: Subclasses: []\n", + "[INFO] [1712607559.546972]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712607559.547478]: Instances: []\n", + "[INFO] [1712607559.547746]: Direct Instances: []\n", + "[INFO] [1712607559.548057]: Inverse Restrictions: []\n", + "[INFO] [1712607559.548300]: -------------------\n", + "[INFO] [1712607559.548541]: SOMA.InformationStorage \n", + "[INFO] [1712607559.548831]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712607559.549185]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", + "[INFO] [1712607559.549449]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712607559.549748]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.550262]: Instances: []\n", + "[INFO] [1712607559.550533]: Direct Instances: []\n", + "[INFO] [1712607559.550790]: Inverse Restrictions: []\n", + "[INFO] [1712607559.551031]: -------------------\n", + "[INFO] [1712607559.551276]: SOMA.StoredObject \n", + "[INFO] [1712607559.551517]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712607559.551788]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.EnclosedObject, DUL.Role, owl.Thing, DUL.Concept, SOMA.StoredObject, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.552253]: Subclasses: []\n", + "[INFO] [1712607559.552676]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.553185]: Instances: []\n", + "[INFO] [1712607559.553454]: Direct Instances: []\n", + "[INFO] [1712607559.553803]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712607559.554072]: -------------------\n", + "[INFO] [1712607559.554331]: SOMA.InsertedObject \n", + "[INFO] [1712607559.554578]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712607559.554849]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Role, owl.Thing, SOMA.InsertedObject, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.555098]: Subclasses: []\n", + "[INFO] [1712607559.555386]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.555886]: Instances: []\n", + "[INFO] [1712607559.556152]: Direct Instances: []\n", + "[INFO] [1712607559.556440]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712607559.556685]: -------------------\n", + "[INFO] [1712607559.556924]: SOMA.Instructions \n", + "[INFO] [1712607559.557161]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712607559.557441]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Instructions, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.557695]: Subclasses: []\n", + "[INFO] [1712607559.557986]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.558480]: Instances: []\n", + "[INFO] [1712607559.558757]: Direct Instances: []\n", + "[INFO] [1712607559.559015]: Inverse Restrictions: []\n", + "[INFO] [1712607559.559258]: -------------------\n", + "[INFO] [1712607559.559494]: SOMA.Interpreting \n", + "[INFO] [1712607559.559731]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607559.560002]: Ancestors: {SOMA.Interpreting, owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712607559.560264]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712607559.560560]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.561067]: Instances: []\n", + "[INFO] [1712607559.561333]: Direct Instances: []\n", + "[INFO] [1712607559.561590]: Inverse Restrictions: []\n", + "[INFO] [1712607559.561829]: -------------------\n", + "[INFO] [1712607559.562069]: SOMA.InterrogativeClause \n", + "[INFO] [1712607559.562322]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712607559.562602]: Ancestors: {DUL.Object, SOMA.InterrogativeClause, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607559.562855]: Subclasses: []\n", + "[INFO] [1712607559.563152]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.563658]: Instances: []\n", + "[INFO] [1712607559.563926]: Direct Instances: []\n", + "[INFO] [1712607559.564219]: Inverse Restrictions: []\n", + "[INFO] [1712607559.564462]: -------------------\n", + "[INFO] [1712607559.564699]: SOMA.Introspecting \n", + "[INFO] [1712607559.564949]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712607559.565216]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.565469]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712607559.565771]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.566267]: Instances: []\n", + "[INFO] [1712607559.566526]: Direct Instances: []\n", + "[INFO] [1712607559.566773]: Inverse Restrictions: []\n", + "[INFO] [1712607559.567023]: -------------------\n", + "[INFO] [1712607559.567272]: SOMA.JamJar \n", + "[INFO] [1712607559.567510]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712607559.567786]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.JamJar, SOMA.Jar}\n", + "[INFO] [1712607559.568051]: Subclasses: [SOMA.RaspberryJamJar]\n", + "[INFO] [1712607559.568342]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.568831]: Instances: []\n", + "[INFO] [1712607559.569103]: Direct Instances: []\n", + "[INFO] [1712607559.569367]: Inverse Restrictions: []\n", + "[INFO] [1712607559.569611]: -------------------\n", + "[INFO] [1712607559.569845]: SOMA.Jar \n", + "[INFO] [1712607559.570081]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712607559.570341]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Jar}\n", + "[INFO] [1712607559.570601]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", + "[INFO] [1712607559.570889]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.571379]: Instances: []\n", + "[INFO] [1712607559.571652]: Direct Instances: []\n", + "[INFO] [1712607559.571912]: Inverse Restrictions: []\n", + "[INFO] [1712607559.572159]: -------------------\n", + "[INFO] [1712607559.572399]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712607559.572634]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712607559.572899]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, SOMA.KineticFrictionAttribute, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607559.573160]: Subclasses: []\n", + "[INFO] [1712607559.573469]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.573960]: Instances: []\n", + "[INFO] [1712607559.574222]: Direct Instances: []\n", + "[INFO] [1712607559.574472]: Inverse Restrictions: []\n", + "[INFO] [1712607559.574719]: -------------------\n", + "[INFO] [1712607559.574966]: SOMA.KinoDynamicData \n", + "[INFO] [1712607559.575206]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607559.575469]: Ancestors: {DUL.Object, owl.Thing, SOMA.KinoDynamicData, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607559.575710]: Subclasses: []\n", + "[INFO] [1712607559.576007]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.576509]: Instances: []\n", + "[INFO] [1712607559.576779]: Direct Instances: []\n", + "[INFO] [1712607559.577039]: Inverse Restrictions: []\n", + "[INFO] [1712607559.577287]: -------------------\n", + "[INFO] [1712607559.577529]: SOMA.Kitchen \n", + "[INFO] [1712607559.577766]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712607559.578043]: Ancestors: {DUL.Object, SOMA.Kitchen, DUL.PhysicalObject, SOMA.Room, owl.Thing, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607559.578322]: Subclasses: []\n", + "[INFO] [1712607559.578632]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.579134]: Instances: []\n", + "[INFO] [1712607559.579400]: Direct Instances: []\n", + "[INFO] [1712607559.579653]: Inverse Restrictions: []\n", + "[INFO] [1712607559.579903]: -------------------\n", + "[INFO] [1712607559.580146]: SOMA.Room \n", + "[INFO] [1712607559.580380]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712607559.580638]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Room, owl.Thing, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607559.580889]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712607559.581177]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.581663]: Instances: []\n", + "[INFO] [1712607559.581936]: Direct Instances: []\n", + "[INFO] [1712607559.582237]: Inverse Restrictions: []\n", + "[INFO] [1712607559.582612]: -------------------\n", + "[INFO] [1712607559.582902]: SOMA.KitchenCabinet \n", + "[INFO] [1712607559.583171]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712607559.583468]: Ancestors: {SOMA.KitchenCabinet, DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Cupboard}\n", + "[INFO] [1712607559.583754]: Subclasses: []\n", + "[INFO] [1712607559.584061]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.584560]: Instances: []\n", + "[INFO] [1712607559.584827]: Direct Instances: []\n", + "[INFO] [1712607559.585077]: Inverse Restrictions: []\n", + "[INFO] [1712607559.585318]: -------------------\n", + "[INFO] [1712607559.585568]: SOMA.Knife \n", + "[INFO] [1712607559.585815]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712607559.586060]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Knife, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.586320]: Subclasses: [SOMA.KitchenKnife]\n", + "[INFO] [1712607559.586628]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.587133]: Instances: []\n", + "[INFO] [1712607559.587394]: Direct Instances: []\n", + "[INFO] [1712607559.587643]: Inverse Restrictions: []\n", + "[INFO] [1712607559.587877]: -------------------\n", + "[INFO] [1712607559.588121]: SOMA.KitchenUnit \n", + "[INFO] [1712607559.588369]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712607559.588637]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.KitchenUnit}\n", + "[INFO] [1712607559.588885]: Subclasses: []\n", + "[INFO] [1712607559.589170]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.589669]: Instances: []\n", + "[INFO] [1712607559.589933]: Direct Instances: []\n", + "[INFO] [1712607559.590191]: Inverse Restrictions: []\n", + "[INFO] [1712607559.590444]: -------------------\n", + "[INFO] [1712607559.590688]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712607559.590927]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607559.591191]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.KnowledgeRepresentationLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607559.591456]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712607559.591750]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.592239]: Instances: []\n", + "[INFO] [1712607559.592494]: Direct Instances: []\n", + "[INFO] [1712607559.592743]: Inverse Restrictions: []\n", + "[INFO] [1712607559.592996]: -------------------\n", + "[INFO] [1712607559.593241]: SOMA.Labeling \n", + "[INFO] [1712607559.593476]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712607559.593735]: Ancestors: {SOMA.Interpreting, owl.Thing, SOMA.Labeling, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.593976]: Subclasses: []\n", + "[INFO] [1712607559.594278]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.594764]: Instances: []\n", + "[INFO] [1712607559.595020]: Direct Instances: []\n", + "[INFO] [1712607559.595264]: Inverse Restrictions: []\n", + "[INFO] [1712607559.595510]: -------------------\n", + "[INFO] [1712607559.595757]: SOMA.Text \n", + "[INFO] [1712607559.595996]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.597209]: Ancestors: {SOMA.Text, owl.Thing}\n", + "[INFO] [1712607559.597496]: Subclasses: []\n", + "[INFO] [1712607559.597807]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607559.598308]: Instances: []\n", + "[INFO] [1712607559.598581]: Direct Instances: []\n", + "[INFO] [1712607559.599686]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712607559.599951]: -------------------\n", + "[INFO] [1712607559.600199]: SOMA.Leaning \n", + "[INFO] [1712607559.600439]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712607559.600719]: Ancestors: {DUL.Object, SOMA.Leaning, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607559.600980]: Subclasses: []\n", + "[INFO] [1712607559.601272]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.601757]: Instances: []\n", + "[INFO] [1712607559.602030]: Direct Instances: []\n", + "[INFO] [1712607559.602291]: Inverse Restrictions: []\n", + "[INFO] [1712607559.602538]: -------------------\n", + "[INFO] [1712607559.602777]: SOMA.PosturalMoving \n", + "[INFO] [1712607559.603010]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712607559.603261]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607559.603533]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712607559.603829]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.604321]: Instances: []\n", + "[INFO] [1712607559.604594]: Direct Instances: []\n", + "[INFO] [1712607559.604856]: Inverse Restrictions: []\n", + "[INFO] [1712607559.605100]: -------------------\n", + "[INFO] [1712607559.605339]: SOMA.Learning \n", + "[INFO] [1712607559.605581]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712607559.605863]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Learning, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", + "[INFO] [1712607559.606126]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712607559.606515]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.607045]: Instances: []\n", + "[INFO] [1712607559.607335]: Direct Instances: []\n", + "[INFO] [1712607559.607601]: Inverse Restrictions: []\n", + "[INFO] [1712607559.607935]: -------------------\n", + "[INFO] [1712607559.608209]: SOMA.Leg \n", + "[INFO] [1712607559.608467]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712607559.608749]: Ancestors: {DUL.Object, SOMA.Leg, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.609004]: Subclasses: []\n", + "[INFO] [1712607559.609292]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.609778]: Instances: []\n", + "[INFO] [1712607559.610027]: Direct Instances: []\n", + "[INFO] [1712607559.610323]: Inverse Restrictions: []\n", + "[INFO] [1712607559.610571]: -------------------\n", + "[INFO] [1712607559.610807]: SOMA.Lid \n", + "[INFO] [1712607559.611039]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.611308]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Lid}\n", + "[INFO] [1712607559.611567]: Subclasses: []\n", + "[INFO] [1712607559.611853]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.612336]: Instances: []\n", + "[INFO] [1712607559.612628]: Direct Instances: []\n", + "[INFO] [1712607559.612883]: Inverse Restrictions: []\n", + "[INFO] [1712607559.613129]: -------------------\n", + "[INFO] [1712607559.613367]: SOMA.LimbMotion \n", + "[INFO] [1712607559.614016]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712607559.614322]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.LimbMotion, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607559.614581]: Subclasses: []\n", + "[INFO] [1712607559.614887]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.615375]: Instances: []\n", + "[INFO] [1712607559.615646]: Direct Instances: []\n", + "[INFO] [1712607559.615903]: Inverse Restrictions: []\n", + "[INFO] [1712607559.616143]: -------------------\n", + "[INFO] [1712607559.616378]: SOMA.LinkedObject \n", + "[INFO] [1712607559.616616]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712607559.616888]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.LinkedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.617137]: Subclasses: []\n", + "[INFO] [1712607559.617424]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.617923]: Instances: []\n", + "[INFO] [1712607559.618206]: Direct Instances: []\n", + "[INFO] [1712607559.618565]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712607559.618816]: -------------------\n", + "[INFO] [1712607559.619061]: SOMA.LinkageState \n", + "[INFO] [1712607559.619305]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712607559.619583]: Ancestors: {DUL.Object, SOMA.LinkageState, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.619833]: Subclasses: []\n", + "[INFO] [1712607559.620126]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.620609]: Instances: []\n", + "[INFO] [1712607559.620877]: Direct Instances: []\n", + "[INFO] [1712607559.621132]: Inverse Restrictions: []\n", + "[INFO] [1712607559.621366]: -------------------\n", + "[INFO] [1712607559.621602]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712607559.621835]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607559.622073]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.622345]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712607559.622639]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.623140]: Instances: []\n", + "[INFO] [1712607559.623393]: Direct Instances: []\n", + "[INFO] [1712607559.623644]: Inverse Restrictions: []\n", + "[INFO] [1712607559.623889]: -------------------\n", + "[INFO] [1712607559.624124]: SOMA.SpatialRelationRole \n", + "[INFO] [1712607559.624357]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712607559.624598]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.624840]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712607559.625134]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.625631]: Instances: []\n", + "[INFO] [1712607559.625900]: Direct Instances: []\n", + "[INFO] [1712607559.626163]: Inverse Restrictions: []\n", + "[INFO] [1712607559.626412]: -------------------\n", + "[INFO] [1712607559.626646]: SOMA.LocutionaryAction \n", + "[INFO] [1712607559.626875]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.628093]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", + "[INFO] [1712607559.628371]: Subclasses: []\n", + "[INFO] [1712607559.628671]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.629164]: Instances: []\n", + "[INFO] [1712607559.629438]: Direct Instances: []\n", + "[INFO] [1712607559.629884]: Inverse Restrictions: []\n", + "[INFO] [1712607559.630195]: -------------------\n", + "[INFO] [1712607559.630618]: SOMA.LookingAt \n", + "[INFO] [1712607559.630903]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607559.631204]: Ancestors: {DUL.Object, SOMA.LookingAt, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.631469]: Subclasses: []\n", + "[INFO] [1712607559.631764]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.632252]: Instances: []\n", + "[INFO] [1712607559.632514]: Direct Instances: []\n", + "[INFO] [1712607559.632781]: Inverse Restrictions: []\n", + "[INFO] [1712607559.633038]: -------------------\n", + "[INFO] [1712607559.633347]: SOMA.LookingFor \n", + "[INFO] [1712607559.633629]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712607559.633917]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", + "[INFO] [1712607559.634186]: Subclasses: []\n", + "[INFO] [1712607559.634499]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.635006]: Instances: []\n", + "[INFO] [1712607559.635273]: Direct Instances: []\n", + "[INFO] [1712607559.635536]: Inverse Restrictions: []\n", + "[INFO] [1712607559.635784]: -------------------\n", + "[INFO] [1712607559.636116]: SOMA.Lowering \n", + "[INFO] [1712607559.636393]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607559.636698]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Lowering, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.636975]: Subclasses: []\n", + "[INFO] [1712607559.637277]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.637770]: Instances: []\n", + "[INFO] [1712607559.638027]: Direct Instances: []\n", + "[INFO] [1712607559.638282]: Inverse Restrictions: []\n", + "[INFO] [1712607559.638529]: -------------------\n", + "[INFO] [1712607559.638769]: SOMA.PhysicalAction \n", + "[INFO] [1712607559.639000]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712607559.639255]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.PhysicalAction, DUL.Entity}\n", + "[INFO] [1712607559.639512]: Subclasses: []\n", + "[INFO] [1712607559.639804]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.640296]: Instances: []\n", + "[INFO] [1712607559.640567]: Direct Instances: []\n", + "[INFO] [1712607559.640862]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607559.641109]: -------------------\n", + "[INFO] [1712607559.641347]: SOMA.Markup_Language \n", + "[INFO] [1712607559.641579]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607559.641850]: Ancestors: {DUL.Object, SOMA.Markup_Language, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607559.642102]: Subclasses: []\n", + "[INFO] [1712607559.642396]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.642879]: Instances: []\n", + "[INFO] [1712607559.643130]: Direct Instances: []\n", + "[INFO] [1712607559.643390]: Inverse Restrictions: []\n", + "[INFO] [1712607559.643632]: -------------------\n", + "[INFO] [1712607559.643866]: SOMA.Masterful \n", + "[INFO] [1712607559.644095]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712607559.644387]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.Masterful, owl.Thing, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.644666]: Subclasses: []\n", + "[INFO] [1712607559.644966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.645452]: Instances: []\n", + "[INFO] [1712607559.645740]: Direct Instances: []\n", + "[INFO] [1712607559.646011]: Inverse Restrictions: []\n", + "[INFO] [1712607559.646260]: -------------------\n", + "[INFO] [1712607559.646500]: SOMA.Material \n", + "[INFO] [1712607559.646737]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607559.646999]: Ancestors: {SOMA.Material, SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607559.647259]: Subclasses: []\n", + "[INFO] [1712607559.647555]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.648046]: Instances: []\n", + "[INFO] [1712607559.648298]: Direct Instances: []\n", + "[INFO] [1712607559.648543]: Inverse Restrictions: []\n", + "[INFO] [1712607559.648772]: -------------------\n", + "[INFO] [1712607559.649014]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712607559.649270]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712607559.649538]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.MedicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.649782]: Subclasses: []\n", + "[INFO] [1712607559.650082]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.650586]: Instances: []\n", + "[INFO] [1712607559.650851]: Direct Instances: []\n", + "[INFO] [1712607559.651101]: Inverse Restrictions: []\n", + "[INFO] [1712607559.651345]: -------------------\n", + "[INFO] [1712607559.651602]: SOMA.Memorizing \n", + "[INFO] [1712607559.651851]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712607559.652124]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Learning, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, SOMA.Memorizing, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", + "[INFO] [1712607559.652375]: Subclasses: []\n", + "[INFO] [1712607559.652671]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.653180]: Instances: []\n", + "[INFO] [1712607559.653454]: Direct Instances: []\n", + "[INFO] [1712607559.653705]: Inverse Restrictions: []\n", + "[INFO] [1712607559.653947]: -------------------\n", + "[INFO] [1712607559.654197]: SOMA.MentalAction \n", + "[INFO] [1712607559.654870]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712607559.655159]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.MentalAction, DUL.Entity}\n", + "[INFO] [1712607559.655409]: Subclasses: []\n", + "[INFO] [1712607559.655708]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.656207]: Instances: []\n", + "[INFO] [1712607559.656474]: Direct Instances: []\n", + "[INFO] [1712607559.656765]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712607559.657009]: -------------------\n", + "[INFO] [1712607559.657246]: SOMA.MeshShape \n", + "[INFO] [1712607559.657530]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712607559.657803]: Ancestors: {DUL.Abstract, SOMA.MeshShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607559.658050]: Subclasses: []\n", + "[INFO] [1712607559.658409]: Properties: [SOMA.hasFilePath, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.658946]: Instances: []\n", + "[INFO] [1712607559.659240]: Direct Instances: []\n", + "[INFO] [1712607559.659507]: Inverse Restrictions: []\n", + "[INFO] [1712607559.659759]: -------------------\n", + "[INFO] [1712607559.659998]: SOMA.MeshShapeData \n", + "[INFO] [1712607559.660243]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607559.660528]: Ancestors: {DUL.Object, SOMA.MeshShapeData, owl.Thing, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607559.660784]: Subclasses: []\n", + "[INFO] [1712607559.661119]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.661629]: Instances: []\n", + "[INFO] [1712607559.661904]: Direct Instances: []\n", + "[INFO] [1712607559.662260]: Inverse Restrictions: []\n", + "[INFO] [1712607559.662583]: -------------------\n", + "[INFO] [1712607559.662853]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712607559.663111]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712607559.663429]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.663701]: Subclasses: []\n", + "[INFO] [1712607559.664005]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.664503]: Instances: []\n", + "[INFO] [1712607559.664776]: Direct Instances: []\n", + "[INFO] [1712607559.665030]: Inverse Restrictions: []\n", + "[INFO] [1712607559.665275]: -------------------\n", + "[INFO] [1712607559.665512]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712607559.665751]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607559.665997]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.666268]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712607559.666577]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.667079]: Instances: []\n", + "[INFO] [1712607559.667337]: Direct Instances: []\n", + "[INFO] [1712607559.667593]: Inverse Restrictions: []\n", + "[INFO] [1712607559.667843]: -------------------\n", + "[INFO] [1712607559.668084]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712607559.668325]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712607559.668594]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.MetaCognitionMemoryTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.668856]: Subclasses: []\n", + "[INFO] [1712607559.669158]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.669658]: Instances: []\n", + "[INFO] [1712607559.669920]: Direct Instances: []\n", + "[INFO] [1712607559.670179]: Inverse Restrictions: []\n", + "[INFO] [1712607559.670429]: -------------------\n", + "[INFO] [1712607559.670667]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712607559.670903]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712607559.671170]: Ancestors: {DUL.Object, SOMA.MetaCognitionPlanningTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.671427]: Subclasses: []\n", + "[INFO] [1712607559.671721]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.672212]: Instances: []\n", + "[INFO] [1712607559.672481]: Direct Instances: []\n", + "[INFO] [1712607559.672744]: Inverse Restrictions: []\n", + "[INFO] [1712607559.672985]: -------------------\n", + "[INFO] [1712607559.673225]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712607559.673541]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712607559.673810]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.674100]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712607559.674435]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.674969]: Instances: []\n", + "[INFO] [1712607559.675247]: Direct Instances: []\n", + "[INFO] [1712607559.675509]: Inverse Restrictions: []\n", + "[INFO] [1712607559.675743]: -------------------\n", + "[INFO] [1712607559.675979]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712607559.676208]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712607559.676466]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.MetacognitiveControlling, DUL.EventType}\n", + "[INFO] [1712607559.676730]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712607559.677021]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.677507]: Instances: []\n", + "[INFO] [1712607559.677809]: Direct Instances: []\n", + "[INFO] [1712607559.678060]: Inverse Restrictions: []\n", + "[INFO] [1712607559.678315]: -------------------\n", + "[INFO] [1712607559.678560]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712607559.678794]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712607559.679050]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Introspecting, SOMA.MetacognitiveMonitoring}\n", + "[INFO] [1712607559.679309]: Subclasses: []\n", + "[INFO] [1712607559.679620]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.680136]: Instances: []\n", + "[INFO] [1712607559.680408]: Direct Instances: []\n", + "[INFO] [1712607559.680666]: Inverse Restrictions: []\n", + "[INFO] [1712607559.680905]: -------------------\n", + "[INFO] [1712607559.681139]: SOMA.MilkBottle \n", + "[INFO] [1712607559.681367]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712607559.681628]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.MilkBottle, DUL.Entity}\n", + "[INFO] [1712607559.681889]: Subclasses: []\n", + "[INFO] [1712607559.682183]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.682670]: Instances: []\n", + "[INFO] [1712607559.682924]: Direct Instances: []\n", + "[INFO] [1712607559.683177]: Inverse Restrictions: []\n", + "[INFO] [1712607559.683420]: -------------------\n", + "[INFO] [1712607559.683654]: SOMA.MilkPack \n", + "[INFO] [1712607559.683888]: Super classes: [SOMA.Pack]\n", + "[INFO] [1712607559.684153]: Ancestors: {SOMA.MilkPack, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Pack, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.684414]: Subclasses: []\n", + "[INFO] [1712607559.684708]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.685197]: Instances: []\n", + "[INFO] [1712607559.685467]: Direct Instances: []\n", + "[INFO] [1712607559.685722]: Inverse Restrictions: []\n", + "[INFO] [1712607559.685961]: -------------------\n", + "[INFO] [1712607559.686197]: SOMA.Pack \n", + "[INFO] [1712607559.686429]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712607559.686672]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Pack, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.686927]: Subclasses: [SOMA.MilkPack]\n", + "[INFO] [1712607559.687217]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.687707]: Instances: []\n", + "[INFO] [1712607559.687961]: Direct Instances: []\n", + "[INFO] [1712607559.688219]: Inverse Restrictions: []\n", + "[INFO] [1712607559.688457]: -------------------\n", + "[INFO] [1712607559.688689]: SOMA.Mixing \n", + "[INFO] [1712607559.688915]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712607559.689172]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, SOMA.Mixing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.689433]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712607559.689721]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.690213]: Instances: []\n", + "[INFO] [1712607559.690467]: Direct Instances: []\n", + "[INFO] [1712607559.690714]: Inverse Restrictions: []\n", + "[INFO] [1712607559.690944]: -------------------\n", + "[INFO] [1712607559.691184]: SOMA.MixingTheory \n", + "[INFO] [1712607559.691431]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712607559.691696]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, SOMA.MixingTheory, DUL.SocialObject}\n", + "[INFO] [1712607559.691938]: Subclasses: []\n", + "[INFO] [1712607559.692235]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.692724]: Instances: []\n", + "[INFO] [1712607559.692980]: Direct Instances: []\n", + "[INFO] [1712607559.693217]: Inverse Restrictions: []\n", + "[INFO] [1712607559.693457]: -------------------\n", + "[INFO] [1712607559.693693]: SOMA.MonitoringJointState \n", + "[INFO] [1712607559.693923]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712607559.694193]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.MonitoringJointState, SOMA.PhysicalTask, SOMA.Proprioceiving, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.694485]: Subclasses: []\n", + "[INFO] [1712607559.694783]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.695269]: Instances: []\n", + "[INFO] [1712607559.695523]: Direct Instances: []\n", + "[INFO] [1712607559.695794]: Inverse Restrictions: []\n", + "[INFO] [1712607559.696046]: -------------------\n", + "[INFO] [1712607559.696289]: SOMA.Proprioceiving \n", + "[INFO] [1712607559.696529]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607559.696773]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Proprioceiving, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.697028]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712607559.697320]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.697812]: Instances: []\n", + "[INFO] [1712607559.698082]: Direct Instances: []\n", + "[INFO] [1712607559.698343]: Inverse Restrictions: []\n", + "[INFO] [1712607559.698582]: -------------------\n", + "[INFO] [1712607559.698812]: SOMA.MovingAway \n", + "[INFO] [1712607559.699046]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607559.699322]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.MovingAway, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607559.699570]: Subclasses: []\n", + "[INFO] [1712607559.699853]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.700335]: Instances: []\n", + "[INFO] [1712607559.700600]: Direct Instances: []\n", + "[INFO] [1712607559.700855]: Inverse Restrictions: []\n", + "[INFO] [1712607559.701095]: -------------------\n", + "[INFO] [1712607559.701327]: SOMA.MovingTo \n", + "[INFO] [1712607559.701556]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712607559.701823]: Ancestors: {DUL.Object, SOMA.MovingTo, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.702075]: Subclasses: []\n", + "[INFO] [1712607559.702361]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.702933]: Instances: []\n", + "[INFO] [1712607559.703220]: Direct Instances: []\n", + "[INFO] [1712607559.703479]: Inverse Restrictions: []\n", + "[INFO] [1712607559.703741]: -------------------\n", + "[INFO] [1712607559.703984]: SOMA.Natural_Language \n", + "[INFO] [1712607559.704244]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712607559.704509]: Ancestors: {DUL.Object, SOMA.Natural_Language, SOMA.System, owl.Thing, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607559.704768]: Subclasses: []\n", + "[INFO] [1712607559.705064]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.705547]: Instances: []\n", + "[INFO] [1712607559.705817]: Direct Instances: []\n", + "[INFO] [1712607559.706136]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712607559.706386]: -------------------\n", + "[INFO] [1712607559.706624]: SOMA.Natural_Language_Text \n", + "[INFO] [1712607559.706857]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.707332]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", + "[INFO] [1712607559.707601]: Subclasses: []\n", + "[INFO] [1712607559.707903]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607559.708391]: Instances: []\n", + "[INFO] [1712607559.708645]: Direct Instances: []\n", + "[INFO] [1712607559.708922]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712607559.709177]: -------------------\n", + "[INFO] [1712607559.709419]: SOMA.NutellaJar \n", + "[INFO] [1712607559.709650]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712607559.709908]: Ancestors: {DUL.Object, SOMA.NutellaJar, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Jar}\n", + "[INFO] [1712607559.710171]: Subclasses: []\n", + "[INFO] [1712607559.710464]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.710952]: Instances: []\n", + "[INFO] [1712607559.711228]: Direct Instances: []\n", + "[INFO] [1712607559.711488]: Inverse Restrictions: []\n", + "[INFO] [1712607559.711729]: -------------------\n", + "[INFO] [1712607559.711967]: SOMA.Ontology \n", + "[INFO] [1712607559.712225]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712607559.713456]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", + "[INFO] [1712607559.713734]: Subclasses: []\n", + "[INFO] [1712607559.714051]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607559.714563]: Instances: []\n", + "[INFO] [1712607559.714842]: Direct Instances: []\n", + "[INFO] [1712607559.715153]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712607559.715407]: -------------------\n", + "[INFO] [1712607559.715651]: SOMA.Ontology_Language \n", + "[INFO] [1712607559.715894]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712607559.716162]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607559.716433]: Subclasses: []\n", + "[INFO] [1712607559.716741]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.717234]: Instances: []\n", + "[INFO] [1712607559.717491]: Direct Instances: []\n", + "[INFO] [1712607559.717798]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712607559.718066]: -------------------\n", + "[INFO] [1712607559.718325]: SOMA.Option \n", + "[INFO] [1712607559.718575]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712607559.718848]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Option, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.719095]: Subclasses: []\n", + "[INFO] [1712607559.719387]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.719887]: Instances: []\n", + "[INFO] [1712607559.720158]: Direct Instances: []\n", + "[INFO] [1712607559.720413]: Inverse Restrictions: []\n", + "[INFO] [1712607559.720659]: -------------------\n", + "[INFO] [1712607559.720908]: SOMA.Singleton \n", + "[INFO] [1712607559.721153]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.721392]: Ancestors: {SOMA.Singleton, owl.Thing}\n", + "[INFO] [1712607559.721639]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712607559.721924]: Properties: [rdf-schema.comment, SOMA.encapsulates, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.722445]: Instances: []\n", + "[INFO] [1712607559.722717]: Direct Instances: []\n", + "[INFO] [1712607559.722973]: Inverse Restrictions: []\n", + "[INFO] [1712607559.723218]: -------------------\n", + "[INFO] [1712607559.723460]: SOMA.Orienting \n", + "[INFO] [1712607559.723710]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712607559.723991]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Orienting, SOMA.Positioning, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.724243]: Subclasses: []\n", + "[INFO] [1712607559.724530]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.725032]: Instances: []\n", + "[INFO] [1712607559.725295]: Direct Instances: []\n", + "[INFO] [1712607559.725547]: Inverse Restrictions: []\n", + "[INFO] [1712607559.725785]: -------------------\n", + "[INFO] [1712607559.726023]: SOMA.Positioning \n", + "[INFO] [1712607559.726261]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607559.726519]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Positioning, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.726774]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712607559.727061]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.727552]: Instances: []\n", + "[INFO] [1712607559.727843]: Direct Instances: []\n", + "[INFO] [1712607559.728109]: Inverse Restrictions: []\n", + "[INFO] [1712607559.728357]: -------------------\n", + "[INFO] [1712607559.728596]: SOMA.Origin \n", + "[INFO] [1712607559.728863]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712607559.729161]: Ancestors: {DUL.Object, SOMA.Origin, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.729433]: Subclasses: []\n", + "[INFO] [1712607559.729729]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.730231]: Instances: []\n", + "[INFO] [1712607559.730510]: Direct Instances: []\n", + "[INFO] [1712607559.730810]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712607559.731059]: -------------------\n", + "[INFO] [1712607559.731300]: SOMA.Oven \n", + "[INFO] [1712607559.731556]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", + "[INFO] [1712607559.731841]: Ancestors: {DUL.Object, SOMA.Oven, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.732098]: Subclasses: []\n", + "[INFO] [1712607559.732388]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.732875]: Instances: []\n", + "[INFO] [1712607559.733144]: Direct Instances: []\n", + "[INFO] [1712607559.733403]: Inverse Restrictions: []\n", + "[INFO] [1712607559.733641]: -------------------\n", + "[INFO] [1712607559.733878]: SOMA.TemperingByHeating \n", + "[INFO] [1712607559.734110]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712607559.734390]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.TemperingByHeating, SOMA.PhysicalQuality, SOMA.Tempering, DUL.Quality}\n", + "[INFO] [1712607559.734663]: Subclasses: []\n", + "[INFO] [1712607559.734960]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.735453]: Instances: []\n", + "[INFO] [1712607559.735731]: Direct Instances: []\n", + "[INFO] [1712607559.736013]: Inverse Restrictions: [SOMA.Oven]\n", + "[INFO] [1712607559.736259]: -------------------\n", + "[INFO] [1712607559.736497]: SOMA.Pan \n", + "[INFO] [1712607559.736732]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712607559.737007]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Pan, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607559.737269]: Subclasses: []\n", + "[INFO] [1712607559.737559]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.738046]: Instances: []\n", + "[INFO] [1712607559.738303]: Direct Instances: []\n", + "[INFO] [1712607559.738563]: Inverse Restrictions: []\n", + "[INFO] [1712607559.738807]: -------------------\n", + "[INFO] [1712607559.739042]: SOMA.Pancake \n", + "[INFO] [1712607559.739271]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712607559.739532]: Ancestors: {DUL.Object, SOMA.BakedGood, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.Pancake, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.739795]: Subclasses: []\n", + "[INFO] [1712607559.740083]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.740577]: Instances: []\n", + "[INFO] [1712607559.740854]: Direct Instances: []\n", + "[INFO] [1712607559.741114]: Inverse Restrictions: []\n", + "[INFO] [1712607559.741361]: -------------------\n", + "[INFO] [1712607559.741601]: SOMA.PancakeMix \n", + "[INFO] [1712607559.741835]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712607559.742101]: Ancestors: {DUL.Object, DUL.FunctionalSubstance, DUL.DesignedArtifact, SOMA.PancakeMix, DUL.PhysicalObject, DUL.Substance, DUL.PhysicalArtifact, owl.Thing, DUL.DesignedSubstance, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607559.742369]: Subclasses: []\n", + "[INFO] [1712607559.742663]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.743155]: Instances: []\n", + "[INFO] [1712607559.743411]: Direct Instances: []\n", + "[INFO] [1712607559.743657]: Inverse Restrictions: []\n", + "[INFO] [1712607559.743908]: -------------------\n", + "[INFO] [1712607559.744157]: SOMA.ParkingArms \n", + "[INFO] [1712607559.744444]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712607559.744724]: Ancestors: {DUL.Object, SOMA.ParkingArms, DUL.Entity, DUL.EventType, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingArmPose}\n", + "[INFO] [1712607559.744983]: Subclasses: []\n", + "[INFO] [1712607559.745285]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.745804]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712607559.746072]: Direct Instances: [SOMA.parking_arms]\n", + "[INFO] [1712607559.746334]: Inverse Restrictions: []\n", + "[INFO] [1712607559.746586]: -------------------\n", + "[INFO] [1712607559.746828]: SOMA.PastaBowl \n", + "[INFO] [1712607559.747063]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712607559.747328]: Ancestors: {SOMA.PastaBowl, DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Bowl, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607559.747570]: Subclasses: []\n", + "[INFO] [1712607559.747868]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.748364]: Instances: []\n", + "[INFO] [1712607559.748623]: Direct Instances: []\n", + "[INFO] [1712607559.748879]: Inverse Restrictions: []\n", + "[INFO] [1712607559.749117]: -------------------\n", + "[INFO] [1712607559.749356]: SOMA.PepperShaker \n", + "[INFO] [1712607559.749586]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712607559.749857]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.PepperShaker, DUL.Entity, SOMA.Shaker}\n", + "[INFO] [1712607559.750126]: Subclasses: []\n", + "[INFO] [1712607559.750433]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.750928]: Instances: []\n", + "[INFO] [1712607559.751185]: Direct Instances: []\n", + "[INFO] [1712607559.751435]: Inverse Restrictions: []\n", + "[INFO] [1712607559.751684]: -------------------\n", + "[INFO] [1712607559.751926]: SOMA.Shaker \n", + "[INFO] [1712607559.752160]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712607559.752402]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Shaker}\n", + "[INFO] [1712607559.752650]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", + "[INFO] [1712607559.752957]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.753748]: Instances: []\n", + "[INFO] [1712607559.754041]: Direct Instances: []\n", + "[INFO] [1712607559.754304]: Inverse Restrictions: []\n", + "[INFO] [1712607559.754557]: -------------------\n", + "[INFO] [1712607559.754808]: SOMA.PhaseTransition \n", + "[INFO] [1712607559.755056]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712607559.755315]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PhaseTransition, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", + "[INFO] [1712607559.755570]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712607559.755862]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712607559.756381]: Instances: []\n", + "[INFO] [1712607559.756659]: Direct Instances: []\n", + "[INFO] [1712607559.756917]: Inverse Restrictions: []\n", + "[INFO] [1712607559.757157]: -------------------\n", + "[INFO] [1712607559.757393]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712607559.757635]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712607559.757910]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, SOMA.PhysicalAccessibility, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.758168]: Subclasses: []\n", + "[INFO] [1712607559.758466]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.758950]: Instances: []\n", + "[INFO] [1712607559.759221]: Direct Instances: []\n", + "[INFO] [1712607559.759478]: Inverse Restrictions: []\n", + "[INFO] [1712607559.759718]: -------------------\n", + "[INFO] [1712607559.759963]: SOMA.PhysicalBlockage \n", + "[INFO] [1712607559.760206]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712607559.760469]: Ancestors: {DUL.Object, SOMA.StateType, SOMA.PhysicalBlockage, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.760734]: Subclasses: []\n", + "[INFO] [1712607559.761074]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.761576]: Instances: []\n", + "[INFO] [1712607559.761868]: Direct Instances: []\n", + "[INFO] [1712607559.762144]: Inverse Restrictions: []\n", + "[INFO] [1712607559.762403]: -------------------\n", + "[INFO] [1712607559.762655]: SOMA.PhysicalExistence \n", + "[INFO] [1712607559.762895]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712607559.763179]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicalExistence, SOMA.PhysicalState}\n", + "[INFO] [1712607559.763432]: Subclasses: []\n", + "[INFO] [1712607559.763731]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.764224]: Instances: []\n", + "[INFO] [1712607559.764502]: Direct Instances: []\n", + "[INFO] [1712607559.764766]: Inverse Restrictions: []\n", + "[INFO] [1712607559.765007]: -------------------\n", + "[INFO] [1712607559.765247]: SOMA.PhysicalState \n", + "[INFO] [1712607559.765486]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712607559.765743]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicalState}\n", + "[INFO] [1712607559.765998]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712607559.766299]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.766798]: Instances: []\n", + "[INFO] [1712607559.767075]: Direct Instances: []\n", + "[INFO] [1712607559.767339]: Inverse Restrictions: []\n", + "[INFO] [1712607559.767578]: -------------------\n", + "[INFO] [1712607559.767813]: SOMA.PhysicsProcess \n", + "[INFO] [1712607559.768058]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712607559.768318]: Ancestors: {DUL.Process, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicsProcess}\n", + "[INFO] [1712607559.768578]: Subclasses: []\n", + "[INFO] [1712607559.768880]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.769369]: Instances: []\n", + "[INFO] [1712607559.769623]: Direct Instances: []\n", + "[INFO] [1712607559.769882]: Inverse Restrictions: []\n", + "[INFO] [1712607559.770137]: -------------------\n", + "[INFO] [1712607559.770378]: SOMA.PlacingTheory \n", + "[INFO] [1712607559.770622]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712607559.770888]: Ancestors: {DUL.Object, SOMA.PlacingTheory, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.771149]: Subclasses: []\n", + "[INFO] [1712607559.771452]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.771944]: Instances: []\n", + "[INFO] [1712607559.772204]: Direct Instances: []\n", + "[INFO] [1712607559.772453]: Inverse Restrictions: []\n", + "[INFO] [1712607559.772702]: -------------------\n", + "[INFO] [1712607559.772949]: SOMA.PlanarJoint \n", + "[INFO] [1712607559.773183]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712607559.773447]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Joint, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.PlanarJoint}\n", + "[INFO] [1712607559.773690]: Subclasses: []\n", + "[INFO] [1712607559.773989]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.774487]: Instances: []\n", + "[INFO] [1712607559.774746]: Direct Instances: []\n", + "[INFO] [1712607559.775007]: Inverse Restrictions: []\n", + "[INFO] [1712607559.775254]: -------------------\n", + "[INFO] [1712607559.775507]: SOMA.PluginRole \n", + "[INFO] [1712607559.775784]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712607559.776069]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.PluginRole, DUL.SocialObject}\n", + "[INFO] [1712607559.776349]: Subclasses: []\n", + "[INFO] [1712607559.776665]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.777159]: Instances: []\n", + "[INFO] [1712607559.777416]: Direct Instances: []\n", + "[INFO] [1712607559.777779]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712607559.778053]: -------------------\n", + "[INFO] [1712607559.778394]: SOMA.Pot \n", + "[INFO] [1712607559.778790]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712607559.779227]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Pot, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607559.779613]: Subclasses: [SOMA.SoupPot]\n", + "[INFO] [1712607559.780029]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.780640]: Instances: []\n", + "[INFO] [1712607559.781016]: Direct Instances: []\n", + "[INFO] [1712607559.781411]: Inverse Restrictions: []\n", + "[INFO] [1712607559.781698]: -------------------\n", + "[INFO] [1712607559.781956]: SOMA.Pourable \n", + "[INFO] [1712607559.782281]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712607559.782724]: Ancestors: {SOMA.Pourable, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607559.783030]: Subclasses: []\n", + "[INFO] [1712607559.783351]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.783857]: Instances: []\n", + "[INFO] [1712607559.784124]: Direct Instances: []\n", + "[INFO] [1712607559.784426]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712607559.784760]: -------------------\n", + "[INFO] [1712607559.785017]: SOMA.PouredObject \n", + "[INFO] [1712607559.785263]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607559.785533]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.PouredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.785794]: Subclasses: []\n", + "[INFO] [1712607559.786093]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.786591]: Instances: []\n", + "[INFO] [1712607559.786853]: Direct Instances: []\n", + "[INFO] [1712607559.787137]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712607559.787396]: -------------------\n", + "[INFO] [1712607559.787640]: SOMA.Pouring \n", + "[INFO] [1712607559.787879]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712607559.788145]: Ancestors: {DUL.Object, SOMA.Pouring, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.788393]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712607559.788689]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607559.789188]: Instances: []\n", + "[INFO] [1712607559.789456]: Direct Instances: []\n", + "[INFO] [1712607559.789719]: Inverse Restrictions: []\n", + "[INFO] [1712607559.789962]: -------------------\n", + "[INFO] [1712607559.790201]: SOMA.PouringInto \n", + "[INFO] [1712607559.790432]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712607559.790693]: Ancestors: {DUL.Object, SOMA.Pouring, DUL.Entity, DUL.EventType, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.PouringInto}\n", + "[INFO] [1712607559.790950]: Subclasses: []\n", + "[INFO] [1712607559.791243]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.791732]: Instances: []\n", + "[INFO] [1712607559.792004]: Direct Instances: []\n", + "[INFO] [1712607559.792260]: Inverse Restrictions: []\n", + "[INFO] [1712607559.792498]: -------------------\n", + "[INFO] [1712607559.792732]: SOMA.PouringOnto \n", + "[INFO] [1712607559.792965]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712607559.793232]: Ancestors: {DUL.Object, SOMA.Pouring, SOMA.PouringOnto, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.793488]: Subclasses: []\n", + "[INFO] [1712607559.793775]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.794265]: Instances: []\n", + "[INFO] [1712607559.794536]: Direct Instances: []\n", + "[INFO] [1712607559.794795]: Inverse Restrictions: []\n", + "[INFO] [1712607559.795033]: -------------------\n", + "[INFO] [1712607559.795268]: SOMA.Prediction \n", + "[INFO] [1712607559.795506]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712607559.795771]: Ancestors: {owl.Thing, SOMA.Prediction, SOMA.Prospecting, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.796032]: Subclasses: []\n", + "[INFO] [1712607559.796327]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.796809]: Instances: []\n", + "[INFO] [1712607559.797066]: Direct Instances: []\n", + "[INFO] [1712607559.797319]: Inverse Restrictions: []\n", + "[INFO] [1712607559.797559]: -------------------\n", + "[INFO] [1712607559.797808]: SOMA.Prospecting \n", + "[INFO] [1712607559.798042]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607559.798281]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Prospecting, SOMA.DerivingInformation}\n", + "[INFO] [1712607559.798525]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712607559.798806]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.799312]: Instances: []\n", + "[INFO] [1712607559.799575]: Direct Instances: []\n", + "[INFO] [1712607559.799825]: Inverse Restrictions: []\n", + "[INFO] [1712607559.800062]: -------------------\n", + "[INFO] [1712607559.800293]: SOMA.Predilection \n", + "[INFO] [1712607559.801303]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712607559.801598]: Ancestors: {DUL.Object, DUL.Description, SOMA.Predilection, DUL.SocialRelation, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.801856]: Subclasses: []\n", + "[INFO] [1712607559.802144]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.802640]: Instances: []\n", + "[INFO] [1712607559.802919]: Direct Instances: []\n", + "[INFO] [1712607559.803221]: Inverse Restrictions: []\n", + "[INFO] [1712607559.803465]: -------------------\n", + "[INFO] [1712607559.803710]: SOMA.PreferenceOrder \n", + "[INFO] [1712607559.804350]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712607559.804636]: Ancestors: {DUL.Object, SOMA.PreferenceOrder, DUL.Description, DUL.SocialRelation, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.804888]: Subclasses: []\n", + "[INFO] [1712607559.805187]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.orders]\n", + "[INFO] [1712607559.805687]: Instances: []\n", + "[INFO] [1712607559.805959]: Direct Instances: []\n", + "[INFO] [1712607559.806219]: Inverse Restrictions: []\n", + "[INFO] [1712607559.806466]: -------------------\n", + "[INFO] [1712607559.806714]: SOMA.PreferenceRegion \n", + "[INFO] [1712607559.806970]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712607559.807245]: Ancestors: {DUL.Abstract, SOMA.PreferenceRegion, owl.Thing, DUL.Entity, DUL.SocialObjectAttribute, DUL.Region}\n", + "[INFO] [1712607559.807497]: Subclasses: []\n", + "[INFO] [1712607559.807794]: Properties: [rdf-schema.comment, DUL.isRegionFor, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.808297]: Instances: []\n", + "[INFO] [1712607559.808573]: Direct Instances: []\n", + "[INFO] [1712607559.808832]: Inverse Restrictions: []\n", + "[INFO] [1712607559.809080]: -------------------\n", + "[INFO] [1712607559.809323]: SOMA.PrismaticJoint \n", + "[INFO] [1712607559.809583]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712607559.809858]: Ancestors: {DUL.Object, SOMA.PrismaticJoint, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607559.810114]: Subclasses: []\n", + "[INFO] [1712607559.810412]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointLimit]\n", + "[INFO] [1712607559.810908]: Instances: []\n", + "[INFO] [1712607559.811172]: Direct Instances: []\n", + "[INFO] [1712607559.811422]: Inverse Restrictions: []\n", + "[INFO] [1712607559.811658]: -------------------\n", + "[INFO] [1712607559.811910]: SOMA.ProcessFlow \n", + "[INFO] [1712607559.812166]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712607559.812497]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, SOMA.ProcessFlow, DUL.SocialObject}\n", + "[INFO] [1712607559.812787]: Subclasses: []\n", + "[INFO] [1712607559.813105]: Properties: [SOMA.definesProcess, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.813604]: Instances: []\n", + "[INFO] [1712607559.813867]: Direct Instances: []\n", + "[INFO] [1712607559.814529]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712607559.814816]: -------------------\n", + "[INFO] [1712607559.815077]: SOMA.Progression \n", + "[INFO] [1712607559.815329]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712607559.816166]: Ancestors: {SOMA.Progression, DUL.Situation, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.816447]: Subclasses: []\n", + "[INFO] [1712607559.816771]: Properties: [DUL.satisfies, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.817270]: Instances: []\n", + "[INFO] [1712607559.817529]: Direct Instances: []\n", + "[INFO] [1712607559.817784]: Inverse Restrictions: []\n", + "[INFO] [1712607559.818031]: -------------------\n", + "[INFO] [1712607559.818291]: SOMA.Protector \n", + "[INFO] [1712607559.818536]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712607559.818805]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, SOMA.Protector, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607559.819068]: Subclasses: []\n", + "[INFO] [1712607559.819367]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.819860]: Instances: []\n", + "[INFO] [1712607559.820131]: Direct Instances: []\n", + "[INFO] [1712607559.820390]: Inverse Restrictions: []\n", + "[INFO] [1712607559.820642]: -------------------\n", + "[INFO] [1712607559.820883]: SOMA.ProximalTheory \n", + "[INFO] [1712607559.821126]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712607559.821395]: Ancestors: {DUL.Object, DUL.Description, DUL.Entity, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ProximalTheory, DUL.SocialObject}\n", + "[INFO] [1712607559.821655]: Subclasses: []\n", + "[INFO] [1712607559.821963]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.822495]: Instances: []\n", + "[INFO] [1712607559.822773]: Direct Instances: []\n", + "[INFO] [1712607559.823055]: Inverse Restrictions: []\n", + "[INFO] [1712607559.823345]: -------------------\n", + "[INFO] [1712607559.823629]: SOMA.PushingAway \n", + "[INFO] [1712607559.823920]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712607559.824265]: Ancestors: {DUL.Object, SOMA.PushingAway, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", + "[INFO] [1712607559.824582]: Subclasses: []\n", + "[INFO] [1712607559.824955]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.825540]: Instances: []\n", + "[INFO] [1712607559.825842]: Direct Instances: []\n", + "[INFO] [1712607559.826128]: Inverse Restrictions: []\n", + "[INFO] [1712607559.826394]: -------------------\n", + "[INFO] [1712607559.826656]: SOMA.PushingDown \n", + "[INFO] [1712607559.826931]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712607559.827218]: Ancestors: {SOMA.PushingDown, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", + "[INFO] [1712607559.827472]: Subclasses: []\n", + "[INFO] [1712607559.827809]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.828325]: Instances: []\n", + "[INFO] [1712607559.828594]: Direct Instances: []\n", + "[INFO] [1712607559.828851]: Inverse Restrictions: []\n", + "[INFO] [1712607559.829104]: -------------------\n", + "[INFO] [1712607559.829350]: SOMA.PuttingDown \n", + "[INFO] [1712607559.829589]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607559.829867]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.PuttingDown, DUL.EventType}\n", + "[INFO] [1712607559.830122]: Subclasses: []\n", + "[INFO] [1712607559.830423]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.830917]: Instances: []\n", + "[INFO] [1712607559.831465]: Direct Instances: []\n", + "[INFO] [1712607559.831816]: Inverse Restrictions: []\n", + "[INFO] [1712607559.832063]: -------------------\n", + "[INFO] [1712607559.832305]: SOMA.QualityTransition \n", + "[INFO] [1712607559.832546]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712607559.832811]: Ancestors: {DUL.Transition, owl.Thing, SOMA.QualityTransition, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712607559.833079]: Subclasses: []\n", + "[INFO] [1712607559.833383]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.833875]: Instances: []\n", + "[INFO] [1712607559.834224]: Direct Instances: []\n", + "[INFO] [1712607559.834501]: Inverse Restrictions: []\n", + "[INFO] [1712607559.834775]: -------------------\n", + "[INFO] [1712607559.835034]: SOMA.Query \n", + "[INFO] [1712607559.835282]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712607559.835554]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Query, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.835804]: Subclasses: []\n", + "[INFO] [1712607559.836112]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.836612]: Instances: []\n", + "[INFO] [1712607559.836878]: Direct Instances: []\n", + "[INFO] [1712607559.837189]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712607559.837453]: -------------------\n", + "[INFO] [1712607559.837708]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712607559.837955]: Super classes: [owl.Thing]\n", + "[INFO] [1712607559.839887]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", + "[INFO] [1712607559.840178]: Subclasses: []\n", + "[INFO] [1712607559.840492]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.840999]: Instances: []\n", + "[INFO] [1712607559.841265]: Direct Instances: []\n", + "[INFO] [1712607559.841527]: Inverse Restrictions: []\n", + "[INFO] [1712607559.841791]: -------------------\n", + "[INFO] [1712607559.842041]: SOMA.QueryEngine \n", + "[INFO] [1712607559.842290]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607559.842557]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.QueryEngine, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.842819]: Subclasses: []\n", + "[INFO] [1712607559.843121]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.843611]: Instances: []\n", + "[INFO] [1712607559.843869]: Direct Instances: []\n", + "[INFO] [1712607559.844124]: Inverse Restrictions: []\n", + "[INFO] [1712607559.844407]: -------------------\n", + "[INFO] [1712607559.844661]: SOMA.RaspberryJamJar \n", + "[INFO] [1712607559.844905]: Super classes: [SOMA.JamJar]\n", + "[INFO] [1712607559.845174]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.RaspberryJamJar, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.JamJar, SOMA.Jar}\n", + "[INFO] [1712607559.845420]: Subclasses: []\n", + "[INFO] [1712607559.845736]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.846258]: Instances: []\n", + "[INFO] [1712607559.846538]: Direct Instances: []\n", + "[INFO] [1712607559.846803]: Inverse Restrictions: []\n", + "[INFO] [1712607559.847055]: -------------------\n", + "[INFO] [1712607559.847298]: SOMA.Reaching \n", + "[INFO] [1712607559.847541]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712607559.847825]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Reaching, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.848079]: Subclasses: []\n", + "[INFO] [1712607559.848378]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.848865]: Instances: []\n", + "[INFO] [1712607559.849140]: Direct Instances: []\n", + "[INFO] [1712607559.849402]: Inverse Restrictions: []\n", + "[INFO] [1712607559.849648]: -------------------\n", + "[INFO] [1712607559.849890]: SOMA.Retracting \n", + "[INFO] [1712607559.850133]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712607559.850424]: Ancestors: {DUL.Object, SOMA.Retracting, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.850685]: Subclasses: []\n", + "[INFO] [1712607559.850981]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.851474]: Instances: []\n", + "[INFO] [1712607559.851747]: Direct Instances: []\n", + "[INFO] [1712607559.852012]: Inverse Restrictions: []\n", + "[INFO] [1712607559.852263]: -------------------\n", + "[INFO] [1712607559.852503]: SOMA.Reasoner \n", + "[INFO] [1712607559.852737]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607559.852983]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.853262]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712607559.853578]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.854086]: Instances: []\n", + "[INFO] [1712607559.854353]: Direct Instances: []\n", + "[INFO] [1712607559.854623]: Inverse Restrictions: []\n", + "[INFO] [1712607559.854872]: -------------------\n", + "[INFO] [1712607559.855113]: SOMA.RecipientRole \n", + "[INFO] [1712607559.855352]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712607559.855624]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.RecipientRole, DUL.SocialObject}\n", + "[INFO] [1712607559.855888]: Subclasses: []\n", + "[INFO] [1712607559.856192]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.856684]: Instances: []\n", + "[INFO] [1712607559.856941]: Direct Instances: []\n", + "[INFO] [1712607559.857198]: Inverse Restrictions: []\n", + "[INFO] [1712607559.857440]: -------------------\n", + "[INFO] [1712607559.857683]: SOMA.RecordedEpisode \n", + "[INFO] [1712607559.857940]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712607559.858198]: Ancestors: {SOMA.RecordedEpisode, owl.Thing, SOMA.Episode, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712607559.858463]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712607559.858764]: Properties: [rdf-schema.comment, SOMA.includesRecord, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.859258]: Instances: []\n", + "[INFO] [1712607559.859517]: Direct Instances: []\n", + "[INFO] [1712607559.859770]: Inverse Restrictions: []\n", + "[INFO] [1712607559.860023]: -------------------\n", + "[INFO] [1712607559.860267]: SOMA.RedColor \n", + "[INFO] [1712607559.860502]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712607559.860763]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, SOMA.RedColor, DUL.Region}\n", + "[INFO] [1712607559.861034]: Subclasses: []\n", + "[INFO] [1712607559.861359]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.861855]: Instances: []\n", + "[INFO] [1712607559.862132]: Direct Instances: []\n", + "[INFO] [1712607559.862418]: Inverse Restrictions: []\n", + "[INFO] [1712607559.862662]: -------------------\n", + "[INFO] [1712607559.862906]: SOMA.Refrigerator \n", + "[INFO] [1712607559.863157]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", + "[INFO] [1712607559.863427]: Ancestors: {DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Refrigerator, DUL.Entity}\n", + "[INFO] [1712607559.863675]: Subclasses: []\n", + "[INFO] [1712607559.863961]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.864450]: Instances: []\n", + "[INFO] [1712607559.864737]: Direct Instances: []\n", + "[INFO] [1712607559.865005]: Inverse Restrictions: []\n", + "[INFO] [1712607559.865260]: -------------------\n", + "[INFO] [1712607559.865517]: SOMA.Reification \n", + "[INFO] [1712607559.866026]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712607559.866590]: Ancestors: {DUL.Object, DUL.Description, SOMA.Reification, owl.Thing, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.867009]: Subclasses: []\n", + "[INFO] [1712607559.867471]: Properties: [SOMA.isReificationOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.868167]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712607559.868555]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712607559.868843]: Inverse Restrictions: []\n", + "[INFO] [1712607559.869097]: -------------------\n", + "[INFO] [1712607559.869343]: SOMA.RelationalDatabase \n", + "[INFO] [1712607559.869583]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712607559.869848]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.RelationalDatabase, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", + "[INFO] [1712607559.870098]: Subclasses: []\n", + "[INFO] [1712607559.870404]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.870909]: Instances: []\n", + "[INFO] [1712607559.871178]: Direct Instances: []\n", + "[INFO] [1712607559.871440]: Inverse Restrictions: []\n", + "[INFO] [1712607559.871681]: -------------------\n", + "[INFO] [1712607559.871921]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712607559.872159]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712607559.872437]: Ancestors: {DUL.Object, SOMA.RelationalQueryLanguage, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", + "[INFO] [1712607559.872688]: Subclasses: []\n", + "[INFO] [1712607559.872978]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.873472]: Instances: []\n", + "[INFO] [1712607559.873750]: Direct Instances: []\n", + "[INFO] [1712607559.874008]: Inverse Restrictions: []\n", + "[INFO] [1712607559.874255]: -------------------\n", + "[INFO] [1712607559.874503]: SOMA.RelevantPart \n", + "[INFO] [1712607559.874743]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712607559.875007]: Ancestors: {DUL.Object, SOMA.RelevantPart, owl.Thing, DUL.Entity, SOMA.Feature}\n", + "[INFO] [1712607559.875268]: Subclasses: []\n", + "[INFO] [1712607559.875565]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.876060]: Instances: []\n", + "[INFO] [1712607559.876318]: Direct Instances: []\n", + "[INFO] [1712607559.876565]: Inverse Restrictions: []\n", + "[INFO] [1712607559.876812]: -------------------\n", + "[INFO] [1712607559.877053]: SOMA.Remembering \n", + "[INFO] [1712607559.877301]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712607559.877559]: Ancestors: {owl.Thing, SOMA.Remembering}\n", + "[INFO] [1712607559.877831]: Subclasses: []\n", + "[INFO] [1712607559.878145]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.878716]: Instances: []\n", + "[INFO] [1712607559.879009]: Direct Instances: []\n", + "[INFO] [1712607559.879307]: Inverse Restrictions: []\n", + "[INFO] [1712607559.879563]: -------------------\n", + "[INFO] [1712607559.879812]: SOMA.Retrospecting \n", + "[INFO] [1712607559.880065]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712607559.880354]: Ancestors: {SOMA.Retrospecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712607559.880608]: Subclasses: []\n", + "[INFO] [1712607559.880903]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.881390]: Instances: []\n", + "[INFO] [1712607559.881668]: Direct Instances: []\n", + "[INFO] [1712607559.881969]: Inverse Restrictions: []\n", + "[INFO] [1712607559.882222]: -------------------\n", + "[INFO] [1712607559.882466]: SOMA.RemovedObject \n", + "[INFO] [1712607559.882700]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712607559.882968]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.ExcludedObject, owl.Thing, SOMA.RemovedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607559.883234]: Subclasses: []\n", + "[INFO] [1712607559.883533]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.884031]: Instances: []\n", + "[INFO] [1712607559.884307]: Direct Instances: []\n", + "[INFO] [1712607559.884571]: Inverse Restrictions: []\n", + "[INFO] [1712607559.884819]: -------------------\n", + "[INFO] [1712607559.885061]: SOMA.Replanning \n", + "[INFO] [1712607559.885299]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712607559.885574]: Ancestors: {SOMA.Deciding, SOMA.Planning, SOMA.Replanning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.885829]: Subclasses: []\n", + "[INFO] [1712607559.886118]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.886611]: Instances: []\n", + "[INFO] [1712607559.886887]: Direct Instances: []\n", + "[INFO] [1712607559.887149]: Inverse Restrictions: []\n", + "[INFO] [1712607559.887388]: -------------------\n", + "[INFO] [1712607559.887627]: SOMA.RevoluteJoint \n", + "[INFO] [1712607559.887864]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712607559.888131]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.RevoluteJoint, owl.Thing, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607559.888402]: Subclasses: []\n", + "[INFO] [1712607559.888709]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointLimit]\n", + "[INFO] [1712607559.889206]: Instances: []\n", + "[INFO] [1712607559.889462]: Direct Instances: []\n", + "[INFO] [1712607559.889716]: Inverse Restrictions: []\n", + "[INFO] [1712607559.889967]: -------------------\n", + "[INFO] [1712607559.890219]: SOMA.Surface \n", + "[INFO] [1712607559.890458]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712607559.890706]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607559.890951]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712607559.891252]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.891754]: Instances: []\n", + "[INFO] [1712607559.892011]: Direct Instances: []\n", + "[INFO] [1712607559.892260]: Inverse Restrictions: []\n", + "[INFO] [1712607559.892507]: -------------------\n", + "[INFO] [1712607559.892749]: SOMA.Rubbing \n", + "[INFO] [1712607559.892988]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712607559.893250]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, SOMA.Rubbing, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607559.893505]: Subclasses: []\n", + "[INFO] [1712607559.893801]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.894293]: Instances: []\n", + "[INFO] [1712607559.894583]: Direct Instances: []\n", + "[INFO] [1712607559.894832]: Inverse Restrictions: []\n", + "[INFO] [1712607559.895070]: -------------------\n", + "[INFO] [1712607559.895319]: SOMA.SaladBowl \n", + "[INFO] [1712607559.895559]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712607559.895854]: Ancestors: {DUL.Object, SOMA.SaladBowl, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Bowl, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607559.896127]: Subclasses: []\n", + "[INFO] [1712607559.896421]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.896904]: Instances: []\n", + "[INFO] [1712607559.897158]: Direct Instances: []\n", + "[INFO] [1712607559.897403]: Inverse Restrictions: []\n", + "[INFO] [1712607559.897650]: -------------------\n", + "[INFO] [1712607559.897892]: SOMA.SaltShaker \n", + "[INFO] [1712607559.898136]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712607559.898407]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Shaker, SOMA.SaltShaker}\n", + "[INFO] [1712607559.898655]: Subclasses: []\n", + "[INFO] [1712607559.898948]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.899447]: Instances: []\n", + "[INFO] [1712607559.899706]: Direct Instances: []\n", + "[INFO] [1712607559.899954]: Inverse Restrictions: []\n", + "[INFO] [1712607559.900192]: -------------------\n", + "[INFO] [1712607559.900440]: SOMA.Scene \n", + "[INFO] [1712607559.900686]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712607559.900945]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Scene}\n", + "[INFO] [1712607559.901190]: Subclasses: []\n", + "[INFO] [1712607559.901477]: Properties: [DUL.satisfies, DUL.includesEvent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712607559.901978]: Instances: []\n", + "[INFO] [1712607559.902244]: Direct Instances: []\n", + "[INFO] [1712607559.902553]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712607559.902811]: -------------------\n", + "[INFO] [1712607559.903060]: SOMA.SelectedObject \n", + "[INFO] [1712607559.903304]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712607559.903572]: Ancestors: {DUL.Object, DUL.Role, owl.Thing, SOMA.SelectedObject, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.903820]: Subclasses: []\n", + "[INFO] [1712607559.904117]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.904604]: Instances: []\n", + "[INFO] [1712607559.904859]: Direct Instances: []\n", + "[INFO] [1712607559.905164]: Inverse Restrictions: []\n", + "[INFO] [1712607559.905420]: -------------------\n", + "[INFO] [1712607559.905670]: SOMA.Selecting \n", + "[INFO] [1712607559.905915]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712607559.906182]: Ancestors: {SOMA.Deciding, SOMA.Selecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.906448]: Subclasses: []\n", + "[INFO] [1712607559.906750]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.907237]: Instances: []\n", + "[INFO] [1712607559.907500]: Direct Instances: []\n", + "[INFO] [1712607559.907751]: Inverse Restrictions: []\n", + "[INFO] [1712607559.908005]: -------------------\n", + "[INFO] [1712607559.908249]: SOMA.SelectingItem \n", + "[INFO] [1712607559.908905]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712607559.909204]: Ancestors: {SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.909470]: Subclasses: []\n", + "[INFO] [1712607559.909768]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712607559.910264]: Instances: []\n", + "[INFO] [1712607559.910546]: Direct Instances: []\n", + "[INFO] [1712607559.910810]: Inverse Restrictions: []\n", + "[INFO] [1712607559.911053]: -------------------\n", + "[INFO] [1712607559.911299]: SOMA.SelfReflection \n", + "[INFO] [1712607559.911540]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712607559.911813]: Ancestors: {DUL.Object, SOMA.SelfReflection, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.MetacognitiveControlling, DUL.EventType}\n", + "[INFO] [1712607559.912082]: Subclasses: []\n", + "[INFO] [1712607559.912385]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.912916]: Instances: []\n", + "[INFO] [1712607559.913190]: Direct Instances: []\n", + "[INFO] [1712607559.913460]: Inverse Restrictions: []\n", + "[INFO] [1712607559.913706]: -------------------\n", + "[INFO] [1712607559.913944]: SOMA.Serving \n", + "[INFO] [1712607559.915311]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712607559.915632]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.Delivering, DUL.Task, SOMA.Serving, DUL.EventType}\n", + "[INFO] [1712607559.915900]: Subclasses: []\n", + "[INFO] [1712607559.916203]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.916701]: Instances: []\n", + "[INFO] [1712607559.916977]: Direct Instances: []\n", + "[INFO] [1712607559.917237]: Inverse Restrictions: []\n", + "[INFO] [1712607559.917481]: -------------------\n", + "[INFO] [1712607559.917724]: SOMA.SettingGripper \n", + "[INFO] [1712607559.917967]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712607559.918246]: Ancestors: {DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.SettingGripper, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.918510]: Subclasses: []\n", + "[INFO] [1712607559.918807]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.919301]: Instances: []\n", + "[INFO] [1712607559.919562]: Direct Instances: []\n", + "[INFO] [1712607559.919830]: Inverse Restrictions: []\n", + "[INFO] [1712607559.920072]: -------------------\n", + "[INFO] [1712607559.920310]: SOMA.6DPose \n", + "[INFO] [1712607559.920570]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712607559.920848]: Ancestors: {DUL.Abstract, owl.Thing, DUL.SpaceRegion, SOMA.6DPose, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607559.921108]: Subclasses: []\n", + "[INFO] [1712607559.921406]: Properties: [rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.921895]: Instances: []\n", + "[INFO] [1712607559.922178]: Direct Instances: []\n", + "[INFO] [1712607559.922479]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712607559.922726]: -------------------\n", + "[INFO] [1712607559.922965]: SOMA.Sharpness \n", + "[INFO] [1712607559.923201]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607559.923470]: Ancestors: {SOMA.PhysicalQuality, SOMA.Sharpness, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607559.923728]: Subclasses: []\n", + "[INFO] [1712607559.924022]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.924507]: Instances: []\n", + "[INFO] [1712607559.924783]: Direct Instances: []\n", + "[INFO] [1712607559.925042]: Inverse Restrictions: []\n", + "[INFO] [1712607559.925287]: -------------------\n", + "[INFO] [1712607559.925524]: SOMA.Simulating \n", + "[INFO] [1712607559.925762]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712607559.926021]: Ancestors: {SOMA.Simulating, owl.Thing, SOMA.Prospecting, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607559.926289]: Subclasses: []\n", + "[INFO] [1712607559.926593]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.927086]: Instances: []\n", + "[INFO] [1712607559.927347]: Direct Instances: []\n", + "[INFO] [1712607559.927611]: Inverse Restrictions: []\n", + "[INFO] [1712607559.927900]: -------------------\n", + "[INFO] [1712607559.928146]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712607559.928384]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712607559.928648]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Simulation_Reasoner, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.928907]: Subclasses: []\n", + "[INFO] [1712607559.929218]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.929709]: Instances: []\n", + "[INFO] [1712607559.929986]: Direct Instances: []\n", + "[INFO] [1712607559.930249]: Inverse Restrictions: []\n", + "[INFO] [1712607559.930494]: -------------------\n", + "[INFO] [1712607559.930737]: SOMA.Sink \n", + "[INFO] [1712607559.930978]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607559.931257]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Sink}\n", + "[INFO] [1712607559.931515]: Subclasses: []\n", + "[INFO] [1712607559.931803]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.932303]: Instances: []\n", + "[INFO] [1712607559.932569]: Direct Instances: []\n", + "[INFO] [1712607559.932819]: Inverse Restrictions: []\n", + "[INFO] [1712607559.933060]: -------------------\n", + "[INFO] [1712607559.933299]: SOMA.Size \n", + "[INFO] [1712607559.933541]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607559.933811]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Size, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607559.934059]: Subclasses: []\n", + "[INFO] [1712607559.934350]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.934842]: Instances: []\n", + "[INFO] [1712607559.935119]: Direct Instances: []\n", + "[INFO] [1712607559.935381]: Inverse Restrictions: []\n", + "[INFO] [1712607559.935634]: -------------------\n", + "[INFO] [1712607559.935877]: SOMA.Slicing \n", + "[INFO] [1712607559.936113]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712607559.936384]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, SOMA.Slicing, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607559.936647]: Subclasses: []\n", + "[INFO] [1712607559.936944]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.937438]: Instances: []\n", + "[INFO] [1712607559.937694]: Direct Instances: []\n", + "[INFO] [1712607559.937942]: Inverse Restrictions: []\n", + "[INFO] [1712607559.938182]: -------------------\n", + "[INFO] [1712607559.938434]: SOMA.Sluggishness \n", + "[INFO] [1712607559.938686]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712607559.938957]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Sluggishness, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.939203]: Subclasses: []\n", + "[INFO] [1712607559.939484]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.939990]: Instances: []\n", + "[INFO] [1712607559.940256]: Direct Instances: []\n", + "[INFO] [1712607559.940508]: Inverse Restrictions: []\n", + "[INFO] [1712607559.940742]: -------------------\n", + "[INFO] [1712607559.940988]: SOMA.SocialState \n", + "[INFO] [1712607559.941254]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712607559.941524]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.SocialState}\n", + "[INFO] [1712607559.941767]: Subclasses: []\n", + "[INFO] [1712607559.942060]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607559.942577]: Instances: []\n", + "[INFO] [1712607559.942850]: Direct Instances: []\n", + "[INFO] [1712607559.943104]: Inverse Restrictions: []\n", + "[INFO] [1712607559.943347]: -------------------\n", + "[INFO] [1712607559.943590]: SOMA.Sofa \n", + "[INFO] [1712607559.943841]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712607559.944117]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Sofa}\n", + "[INFO] [1712607559.944370]: Subclasses: []\n", + "[INFO] [1712607559.944664]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.945147]: Instances: []\n", + "[INFO] [1712607559.945420]: Direct Instances: []\n", + "[INFO] [1712607559.945679]: Inverse Restrictions: []\n", + "[INFO] [1712607559.945921]: -------------------\n", + "[INFO] [1712607559.946167]: SOMA.Software_Configuration \n", + "[INFO] [1712607559.946426]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712607559.946712]: Ancestors: {DUL.Object, DUL.Collection, DUL.Configuration, owl.Thing, SOMA.Software_Configuration, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.946966]: Subclasses: []\n", + "[INFO] [1712607559.947259]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", + "[INFO] [1712607559.947748]: Instances: []\n", + "[INFO] [1712607559.948021]: Direct Instances: []\n", + "[INFO] [1712607559.948374]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712607559.948620]: -------------------\n", + "[INFO] [1712607559.948859]: SOMA.SoftwareLibrary \n", + "[INFO] [1712607559.949099]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712607559.949371]: Ancestors: {DUL.Object, DUL.Description, SOMA.SoftwareLibrary, owl.Thing, DUL.Entity, DUL.Design, SOMA.Software, DUL.SocialObject}\n", + "[INFO] [1712607559.949631]: Subclasses: []\n", + "[INFO] [1712607559.949922]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.950407]: Instances: []\n", + "[INFO] [1712607559.950664]: Direct Instances: []\n", + "[INFO] [1712607559.950929]: Inverse Restrictions: []\n", + "[INFO] [1712607559.951174]: -------------------\n", + "[INFO] [1712607559.951411]: SOMA.SoupPot \n", + "[INFO] [1712607559.951642]: Super classes: [SOMA.Pot]\n", + "[INFO] [1712607559.951911]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.SoupPot, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Pot, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607559.952178]: Subclasses: []\n", + "[INFO] [1712607559.952470]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.952960]: Instances: []\n", + "[INFO] [1712607559.953217]: Direct Instances: []\n", + "[INFO] [1712607559.953475]: Inverse Restrictions: []\n", + "[INFO] [1712607559.953728]: -------------------\n", + "[INFO] [1712607559.953967]: SOMA.SourceMaterialRole \n", + "[INFO] [1712607559.954211]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712607559.954485]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.SourceMaterialRole, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.954747]: Subclasses: []\n", + "[INFO] [1712607559.955277]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.955792]: Instances: []\n", + "[INFO] [1712607559.956066]: Direct Instances: []\n", + "[INFO] [1712607559.956327]: Inverse Restrictions: []\n", + "[INFO] [1712607559.956569]: -------------------\n", + "[INFO] [1712607559.956815]: SOMA.Spatula \n", + "[INFO] [1712607559.957060]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", + "[INFO] [1712607559.957327]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Spatula, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware}\n", + "[INFO] [1712607559.957593]: Subclasses: []\n", + "[INFO] [1712607559.957893]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.958388]: Instances: []\n", + "[INFO] [1712607559.958651]: Direct Instances: []\n", + "[INFO] [1712607559.958890]: Inverse Restrictions: []\n", + "[INFO] [1712607559.959126]: -------------------\n", + "[INFO] [1712607559.959368]: SOMA.SphereShape \n", + "[INFO] [1712607559.959629]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712607559.959887]: Ancestors: {SOMA.SphereShape, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607559.960131]: Subclasses: []\n", + "[INFO] [1712607559.960421]: Properties: [rdf-schema.comment, SOMA.hasRadius, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.960922]: Instances: []\n", + "[INFO] [1712607559.961235]: Direct Instances: []\n", + "[INFO] [1712607559.961494]: Inverse Restrictions: []\n", + "[INFO] [1712607559.961736]: -------------------\n", + "[INFO] [1712607559.961972]: SOMA.Spoon \n", + "[INFO] [1712607559.962648]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712607559.962963]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Spoon}\n", + "[INFO] [1712607559.963243]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", + "[INFO] [1712607559.963547]: Properties: [SOMA.hasPhysicalComponent, SOMA.hasDisposition, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712607559.964045]: Instances: []\n", + "[INFO] [1712607559.964313]: Direct Instances: []\n", + "[INFO] [1712607559.964574]: Inverse Restrictions: []\n", + "[INFO] [1712607559.964817]: -------------------\n", + "[INFO] [1712607559.965056]: SOMA.Standing \n", + "[INFO] [1712607559.965294]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712607559.965568]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Standing, SOMA.Motion}\n", + "[INFO] [1712607559.965836]: Subclasses: []\n", + "[INFO] [1712607559.966139]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.966633]: Instances: []\n", + "[INFO] [1712607559.966898]: Direct Instances: []\n", + "[INFO] [1712607559.967152]: Inverse Restrictions: []\n", + "[INFO] [1712607559.967402]: -------------------\n", + "[INFO] [1712607559.967649]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712607559.967887]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712607559.968152]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, SOMA.StaticFrictionAttribute, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607559.968412]: Subclasses: []\n", + "[INFO] [1712607559.968704]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.969196]: Instances: []\n", + "[INFO] [1712607559.969449]: Direct Instances: []\n", + "[INFO] [1712607559.969691]: Inverse Restrictions: []\n", + "[INFO] [1712607559.969940]: -------------------\n", + "[INFO] [1712607559.970188]: SOMA.Status \n", + "[INFO] [1712607559.970427]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712607559.970688]: Ancestors: {DUL.Object, DUL.Parameter, SOMA.Status, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607559.970932]: Subclasses: []\n", + "[INFO] [1712607559.971216]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.971721]: Instances: []\n", + "[INFO] [1712607559.971988]: Direct Instances: []\n", + "[INFO] [1712607559.972264]: Inverse Restrictions: []\n", + "[INFO] [1712607559.972507]: -------------------\n", + "[INFO] [1712607559.972745]: SOMA.StatusFailure \n", + "[INFO] [1712607559.972998]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607559.973270]: Ancestors: {DUL.Abstract, SOMA.StatusFailure, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607559.973519]: Subclasses: []\n", + "[INFO] [1712607559.973803]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.974387]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712607559.974692]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712607559.974963]: Inverse Restrictions: []\n", + "[INFO] [1712607559.975214]: -------------------\n", + "[INFO] [1712607559.975461]: SOMA.StimulusRole \n", + "[INFO] [1712607559.975720]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712607559.976002]: Ancestors: {DUL.Object, SOMA.StimulusRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607559.976259]: Subclasses: []\n", + "[INFO] [1712607559.976554]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.977047]: Instances: []\n", + "[INFO] [1712607559.977320]: Direct Instances: []\n", + "[INFO] [1712607559.977592]: Inverse Restrictions: []\n", + "[INFO] [1712607559.977884]: -------------------\n", + "[INFO] [1712607559.978122]: SOMA.Stirring \n", + "[INFO] [1712607559.978373]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712607559.978648]: Ancestors: {DUL.Object, DUL.Entity, DUL.EventType, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Stirring, SOMA.Mixing}\n", + "[INFO] [1712607559.978906]: Subclasses: []\n", + "[INFO] [1712607559.979216]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607559.979696]: Instances: []\n", + "[INFO] [1712607559.979983]: Direct Instances: []\n", + "[INFO] [1712607559.980247]: Inverse Restrictions: []\n", + "[INFO] [1712607559.980494]: -------------------\n", + "[INFO] [1712607559.980731]: SOMA.Storage \n", + "[INFO] [1712607559.980970]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712607559.981246]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.Storage, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", + "[INFO] [1712607559.981499]: Subclasses: []\n", + "[INFO] [1712607559.981792]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.982291]: Instances: []\n", + "[INFO] [1712607559.982569]: Direct Instances: []\n", + "[INFO] [1712607559.982830]: Inverse Restrictions: []\n", + "[INFO] [1712607559.983074]: -------------------\n", + "[INFO] [1712607559.983312]: SOMA.Stove \n", + "[INFO] [1712607559.983551]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", + "[INFO] [1712607559.983843]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Stove}\n", + "[INFO] [1712607559.984104]: Subclasses: []\n", + "[INFO] [1712607559.984402]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.984886]: Instances: []\n", + "[INFO] [1712607559.985145]: Direct Instances: []\n", + "[INFO] [1712607559.985391]: Inverse Restrictions: []\n", + "[INFO] [1712607559.985641]: -------------------\n", + "[INFO] [1712607559.985884]: SOMA.StructuralDesign \n", + "[INFO] [1712607559.986119]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712607559.986392]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, SOMA.StructuralDesign, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607559.986655]: Subclasses: []\n", + "[INFO] [1712607559.986952]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.987449]: Instances: []\n", + "[INFO] [1712607559.987708]: Direct Instances: []\n", + "[INFO] [1712607559.987952]: Inverse Restrictions: []\n", + "[INFO] [1712607559.988201]: -------------------\n", + "[INFO] [1712607559.988446]: SOMA.TaskInvocation \n", + "[INFO] [1712607559.988708]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712607559.988986]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.TaskInvocation, DUL.Workflow, DUL.Entity, DUL.Plan, DUL.SocialObject}\n", + "[INFO] [1712607559.989233]: Subclasses: []\n", + "[INFO] [1712607559.989535]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesTask]\n", + "[INFO] [1712607559.990043]: Instances: []\n", + "[INFO] [1712607559.990316]: Direct Instances: []\n", + "[INFO] [1712607559.990635]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712607559.990884]: -------------------\n", + "[INFO] [1712607559.991128]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712607559.991378]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712607559.991630]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.991883]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712607559.992172]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.992672]: Instances: []\n", + "[INFO] [1712607559.992947]: Direct Instances: []\n", + "[INFO] [1712607559.993206]: Inverse Restrictions: []\n", + "[INFO] [1712607559.993454]: -------------------\n", + "[INFO] [1712607559.993689]: SOMA.Successfulness \n", + "[INFO] [1712607559.993928]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712607559.994194]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, SOMA.Successfulness, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607559.994479]: Subclasses: []\n", + "[INFO] [1712607559.994790]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.995283]: Instances: []\n", + "[INFO] [1712607559.995538]: Direct Instances: []\n", + "[INFO] [1712607559.995790]: Inverse Restrictions: []\n", + "[INFO] [1712607559.996032]: -------------------\n", + "[INFO] [1712607559.996274]: SOMA.SugarDispenser \n", + "[INFO] [1712607559.996505]: Super classes: [SOMA.Dispenser]\n", + "[INFO] [1712607559.996767]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Dispenser, SOMA.SugarDispenser, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607559.997004]: Subclasses: []\n", + "[INFO] [1712607559.997295]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607559.997856]: Instances: []\n", + "[INFO] [1712607559.998118]: Direct Instances: []\n", + "[INFO] [1712607559.998373]: Inverse Restrictions: []\n", + "[INFO] [1712607559.998612]: -------------------\n", + "[INFO] [1712607559.998858]: SOMA.SupportState \n", + "[INFO] [1712607559.999861]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712607560.000148]: Ancestors: {DUL.Object, SOMA.SupportState, DUL.Entity, SOMA.StateType, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607560.000419]: Subclasses: []\n", + "[INFO] [1712607560.000726]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.001221]: Instances: []\n", + "[INFO] [1712607560.001495]: Direct Instances: []\n", + "[INFO] [1712607560.001751]: Inverse Restrictions: []\n", + "[INFO] [1712607560.001994]: -------------------\n", + "[INFO] [1712607560.002234]: SOMA.Supporter \n", + "[INFO] [1712607560.002471]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712607560.002738]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, SOMA.Supporter, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607560.003006]: Subclasses: []\n", + "[INFO] [1712607560.003311]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.003803]: Instances: []\n", + "[INFO] [1712607560.004065]: Direct Instances: []\n", + "[INFO] [1712607560.004363]: Inverse Restrictions: []\n", + "[INFO] [1712607560.004612]: -------------------\n", + "[INFO] [1712607560.004847]: SOMA.SupportTheory \n", + "[INFO] [1712607560.005077]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712607560.005345]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.SocialObject, SOMA.SupportTheory}\n", + "[INFO] [1712607560.005586]: Subclasses: []\n", + "[INFO] [1712607560.005885]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.006375]: Instances: []\n", + "[INFO] [1712607560.006629]: Direct Instances: []\n", + "[INFO] [1712607560.006893]: Inverse Restrictions: []\n", + "[INFO] [1712607560.007127]: -------------------\n", + "[INFO] [1712607560.007370]: SOMA.SupportedObject \n", + "[INFO] [1712607560.007608]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712607560.007877]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.SupportedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.008120]: Subclasses: []\n", + "[INFO] [1712607560.008403]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.008906]: Instances: []\n", + "[INFO] [1712607560.009166]: Direct Instances: []\n", + "[INFO] [1712607560.009424]: Inverse Restrictions: []\n", + "[INFO] [1712607560.009667]: -------------------\n", + "[INFO] [1712607560.009902]: SOMA.SymbolicReasoner \n", + "[INFO] [1712607560.010134]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712607560.010400]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, SOMA.SymbolicReasoner, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.010640]: Subclasses: []\n", + "[INFO] [1712607560.010931]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.011462]: Instances: []\n", + "[INFO] [1712607560.011723]: Direct Instances: []\n", + "[INFO] [1712607560.011969]: Inverse Restrictions: []\n", + "[INFO] [1712607560.012212]: -------------------\n", + "[INFO] [1712607560.012449]: SOMA.TableFork \n", + "[INFO] [1712607560.012688]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712607560.012963]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.TableFork, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Fork}\n", + "[INFO] [1712607560.013201]: Subclasses: []\n", + "[INFO] [1712607560.013481]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.013972]: Instances: []\n", + "[INFO] [1712607560.014234]: Direct Instances: []\n", + "[INFO] [1712607560.014480]: Inverse Restrictions: []\n", + "[INFO] [1712607560.014710]: -------------------\n", + "[INFO] [1712607560.014934]: SOMA.TableKnife \n", + "[INFO] [1712607560.015157]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712607560.015434]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.TableKnife, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607560.015677]: Subclasses: []\n", + "[INFO] [1712607560.015962]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.016442]: Instances: []\n", + "[INFO] [1712607560.016697]: Direct Instances: []\n", + "[INFO] [1712607560.016954]: Inverse Restrictions: []\n", + "[INFO] [1712607560.017189]: -------------------\n", + "[INFO] [1712607560.017416]: SOMA.TableSpoon \n", + "[INFO] [1712607560.017641]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712607560.017903]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.TableSpoon, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Spoon}\n", + "[INFO] [1712607560.018178]: Subclasses: []\n", + "[INFO] [1712607560.018487]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.018979]: Instances: []\n", + "[INFO] [1712607560.019235]: Direct Instances: []\n", + "[INFO] [1712607560.019484]: Inverse Restrictions: []\n", + "[INFO] [1712607560.019732]: -------------------\n", + "[INFO] [1712607560.019968]: SOMA.TeaSpoon \n", + "[INFO] [1712607560.020196]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712607560.020465]: Ancestors: {DUL.Object, SOMA.TeaSpoon, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Spoon}\n", + "[INFO] [1712607560.020715]: Subclasses: []\n", + "[INFO] [1712607560.021007]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.021488]: Instances: []\n", + "[INFO] [1712607560.021739]: Direct Instances: []\n", + "[INFO] [1712607560.022005]: Inverse Restrictions: []\n", + "[INFO] [1712607560.022250]: -------------------\n", + "[INFO] [1712607560.022482]: SOMA.Tap \n", + "[INFO] [1712607560.022707]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712607560.022972]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Tap}\n", + "[INFO] [1712607560.023227]: Subclasses: []\n", + "[INFO] [1712607560.023517]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.024001]: Instances: []\n", + "[INFO] [1712607560.024258]: Direct Instances: []\n", + "[INFO] [1712607560.024499]: Inverse Restrictions: []\n", + "[INFO] [1712607560.024743]: -------------------\n", + "[INFO] [1712607560.024975]: SOMA.Tapping \n", + "[INFO] [1712607560.025203]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712607560.025467]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.Tapping, SOMA.Motion}\n", + "[INFO] [1712607560.025710]: Subclasses: []\n", + "[INFO] [1712607560.026001]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.026485]: Instances: []\n", + "[INFO] [1712607560.026750]: Direct Instances: []\n", + "[INFO] [1712607560.027007]: Inverse Restrictions: []\n", + "[INFO] [1712607560.027243]: -------------------\n", + "[INFO] [1712607560.027472]: SOMA.Taxis \n", + "[INFO] [1712607560.027697]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712607560.027968]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Taxis, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", + "[INFO] [1712607560.028218]: Subclasses: []\n", + "[INFO] [1712607560.028512]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.028994]: Instances: []\n", + "[INFO] [1712607560.029270]: Direct Instances: []\n", + "[INFO] [1712607560.029519]: Inverse Restrictions: []\n", + "[INFO] [1712607560.029750]: -------------------\n", + "[INFO] [1712607560.029977]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712607560.030229]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712607560.030469]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.030727]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712607560.031021]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.031507]: Instances: []\n", + "[INFO] [1712607560.031784]: Direct Instances: []\n", + "[INFO] [1712607560.032047]: Inverse Restrictions: []\n", + "[INFO] [1712607560.032279]: -------------------\n", + "[INFO] [1712607560.032670]: SOMA.Temperature \n", + "[INFO] [1712607560.033019]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712607560.033296]: Ancestors: {SOMA.Temperature, owl.Thing, SOMA.Intrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.033564]: Subclasses: []\n", + "[INFO] [1712607560.033869]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.034359]: Instances: []\n", + "[INFO] [1712607560.034781]: Direct Instances: []\n", + "[INFO] [1712607560.035587]: Inverse Restrictions: []\n", + "[INFO] [1712607560.035968]: -------------------\n", + "[INFO] [1712607560.036352]: SOMA.TemperatureRegion \n", + "[INFO] [1712607560.036705]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607560.037112]: Ancestors: {DUL.Abstract, SOMA.TemperatureRegion, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.037491]: Subclasses: []\n", + "[INFO] [1712607560.037905]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.038419]: Instances: []\n", + "[INFO] [1712607560.038793]: Direct Instances: []\n", + "[INFO] [1712607560.039235]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712607560.039525]: -------------------\n", + "[INFO] [1712607560.039783]: SOMA.Tempering \n", + "[INFO] [1712607560.040052]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712607560.040307]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Tempering, DUL.Quality}\n", + "[INFO] [1712607560.040556]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712607560.040844]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.041351]: Instances: []\n", + "[INFO] [1712607560.041617]: Direct Instances: []\n", + "[INFO] [1712607560.041869]: Inverse Restrictions: []\n", + "[INFO] [1712607560.042102]: -------------------\n", + "[INFO] [1712607560.042348]: SOMA.TemperingByCooling \n", + "[INFO] [1712607560.042595]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712607560.042864]: Ancestors: {SOMA.TemperingByCooling, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Tempering, DUL.Quality}\n", + "[INFO] [1712607560.043110]: Subclasses: []\n", + "[INFO] [1712607560.043392]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.043882]: Instances: []\n", + "[INFO] [1712607560.044152]: Direct Instances: []\n", + "[INFO] [1712607560.044403]: Inverse Restrictions: []\n", + "[INFO] [1712607560.044644]: -------------------\n", + "[INFO] [1712607560.044872]: SOMA.ThinkAloud \n", + "[INFO] [1712607560.045100]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712607560.045370]: Ancestors: {DUL.Object, DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.ThinkAloud, DUL.EventType}\n", + "[INFO] [1712607560.045620]: Subclasses: []\n", + "[INFO] [1712607560.045909]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.046398]: Instances: []\n", + "[INFO] [1712607560.046652]: Direct Instances: []\n", + "[INFO] [1712607560.046911]: Inverse Restrictions: []\n", + "[INFO] [1712607560.047154]: -------------------\n", + "[INFO] [1712607560.047386]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712607560.047619]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607560.047881]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ThinkAloudActionTopic, DUL.SocialObject}\n", + "[INFO] [1712607560.048144]: Subclasses: []\n", + "[INFO] [1712607560.048438]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.048927]: Instances: []\n", + "[INFO] [1712607560.049180]: Direct Instances: []\n", + "[INFO] [1712607560.049425]: Inverse Restrictions: []\n", + "[INFO] [1712607560.049672]: -------------------\n", + "[INFO] [1712607560.049914]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712607560.050154]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712607560.050428]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, SOMA.ThinkAloudGeneralKnowledgeTopic, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.050670]: Subclasses: []\n", + "[INFO] [1712607560.050972]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.051464]: Instances: []\n", + "[INFO] [1712607560.051717]: Direct Instances: []\n", + "[INFO] [1712607560.051966]: Inverse Restrictions: []\n", + "[INFO] [1712607560.052210]: -------------------\n", + "[INFO] [1712607560.052450]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712607560.052683]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607560.052924]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.053175]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712607560.053476]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.053970]: Instances: []\n", + "[INFO] [1712607560.054227]: Direct Instances: []\n", + "[INFO] [1712607560.054490]: Inverse Restrictions: []\n", + "[INFO] [1712607560.054735]: -------------------\n", + "[INFO] [1712607560.054969]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712607560.055197]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607560.055461]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.055720]: Subclasses: []\n", + "[INFO] [1712607560.056013]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.056490]: Instances: []\n", + "[INFO] [1712607560.056742]: Direct Instances: []\n", + "[INFO] [1712607560.056985]: Inverse Restrictions: []\n", + "[INFO] [1712607560.057225]: -------------------\n", + "[INFO] [1712607560.057458]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712607560.057690]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607560.057957]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudOpinionTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.058223]: Subclasses: []\n", + "[INFO] [1712607560.058516]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.058990]: Instances: []\n", + "[INFO] [1712607560.059240]: Direct Instances: []\n", + "[INFO] [1712607560.059489]: Inverse Restrictions: []\n", + "[INFO] [1712607560.059727]: -------------------\n", + "[INFO] [1712607560.059959]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712607560.060187]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607560.060455]: Ancestors: {SOMA.ThinkAloudPerceptionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.060707]: Subclasses: []\n", + "[INFO] [1712607560.060999]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.061484]: Instances: []\n", + "[INFO] [1712607560.061743]: Direct Instances: []\n", + "[INFO] [1712607560.061984]: Inverse Restrictions: []\n", + "[INFO] [1712607560.062236]: -------------------\n", + "[INFO] [1712607560.062476]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712607560.062707]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607560.062973]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ThinkAloudPlanTopic, DUL.SocialObject}\n", + "[INFO] [1712607560.063215]: Subclasses: []\n", + "[INFO] [1712607560.063514]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.063999]: Instances: []\n", + "[INFO] [1712607560.064256]: Direct Instances: []\n", + "[INFO] [1712607560.064509]: Inverse Restrictions: []\n", + "[INFO] [1712607560.064740]: -------------------\n", + "[INFO] [1712607560.064984]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712607560.065220]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712607560.065495]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.065742]: Subclasses: []\n", + "[INFO] [1712607560.066029]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.066660]: Instances: []\n", + "[INFO] [1712607560.067018]: Direct Instances: []\n", + "[INFO] [1712607560.067312]: Inverse Restrictions: []\n", + "[INFO] [1712607560.067570]: -------------------\n", + "[INFO] [1712607560.067820]: SOMA.Threshold \n", + "[INFO] [1712607560.068064]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712607560.068341]: Ancestors: {DUL.Object, DUL.Parameter, owl.Thing, SOMA.Threshold, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.068619]: Subclasses: []\n", + "[INFO] [1712607560.068924]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.069422]: Instances: []\n", + "[INFO] [1712607560.069681]: Direct Instances: []\n", + "[INFO] [1712607560.069927]: Inverse Restrictions: []\n", + "[INFO] [1712607560.070185]: -------------------\n", + "[INFO] [1712607560.070432]: SOMA.Throwing \n", + "[INFO] [1712607560.070670]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712607560.070947]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Throwing, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.071195]: Subclasses: []\n", + "[INFO] [1712607560.071498]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.071986]: Instances: []\n", + "[INFO] [1712607560.072242]: Direct Instances: []\n", + "[INFO] [1712607560.072488]: Inverse Restrictions: []\n", + "[INFO] [1712607560.072729]: -------------------\n", + "[INFO] [1712607560.072965]: SOMA.TimeRole \n", + "[INFO] [1712607560.073195]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712607560.073459]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.TimeRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.073690]: Subclasses: []\n", + "[INFO] [1712607560.073975]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.074476]: Instances: []\n", + "[INFO] [1712607560.074734]: Direct Instances: []\n", + "[INFO] [1712607560.074977]: Inverse Restrictions: []\n", + "[INFO] [1712607560.075211]: -------------------\n", + "[INFO] [1712607560.075440]: SOMA.Transporting \n", + "[INFO] [1712607560.075680]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712607560.075953]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Transporting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.076193]: Subclasses: []\n", + "[INFO] [1712607560.076478]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.076985]: Instances: []\n", + "[INFO] [1712607560.077256]: Direct Instances: []\n", + "[INFO] [1712607560.077510]: Inverse Restrictions: []\n", + "[INFO] [1712607560.077786]: -------------------\n", + "[INFO] [1712607560.078020]: SOMA.TrashContainer \n", + "[INFO] [1712607560.078268]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712607560.078545]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.TrashContainer}\n", + "[INFO] [1712607560.078786]: Subclasses: []\n", + "[INFO] [1712607560.079081]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.079567]: Instances: []\n", + "[INFO] [1712607560.079913]: Direct Instances: []\n", + "[INFO] [1712607560.080173]: Inverse Restrictions: []\n", + "[INFO] [1712607560.080409]: -------------------\n", + "[INFO] [1712607560.080641]: SOMA.Triplestore \n", + "[INFO] [1712607560.080869]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712607560.081138]: Ancestors: {SOMA.GraphDatabase, DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Triplestore, SOMA.Database, DUL.SocialObject}\n", + "[INFO] [1712607560.081391]: Subclasses: []\n", + "[INFO] [1712607560.081685]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.082174]: Instances: []\n", + "[INFO] [1712607560.082430]: Direct Instances: []\n", + "[INFO] [1712607560.082673]: Inverse Restrictions: []\n", + "[INFO] [1712607560.082919]: -------------------\n", + "[INFO] [1712607560.083152]: SOMA.Turning \n", + "[INFO] [1712607560.083387]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712607560.083659]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, SOMA.Turning, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607560.083914]: Subclasses: []\n", + "[INFO] [1712607560.084206]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.084685]: Instances: []\n", + "[INFO] [1712607560.084941]: Direct Instances: []\n", + "[INFO] [1712607560.085189]: Inverse Restrictions: []\n", + "[INFO] [1712607560.085429]: -------------------\n", + "[INFO] [1712607560.085663]: SOMA.UnavailableSoftware \n", + "[INFO] [1712607560.085890]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712607560.086159]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.UnavailableSoftware, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.086422]: Subclasses: []\n", + "[INFO] [1712607560.086719]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.087205]: Instances: []\n", + "[INFO] [1712607560.087458]: Direct Instances: []\n", + "[INFO] [1712607560.087695]: Inverse Restrictions: []\n", + "[INFO] [1712607560.087930]: -------------------\n", + "[INFO] [1712607560.088174]: SOMA.Unsuccessfulness \n", + "[INFO] [1712607560.088409]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712607560.088651]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.088917]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712607560.089211]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.089705]: Instances: []\n", + "[INFO] [1712607560.089980]: Direct Instances: []\n", + "[INFO] [1712607560.090249]: Inverse Restrictions: []\n", + "[INFO] [1712607560.090486]: -------------------\n", + "[INFO] [1712607560.090717]: SOMA.VideoData \n", + "[INFO] [1712607560.090946]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712607560.091209]: Ancestors: {DUL.Object, SOMA.VideoData, owl.Thing, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607560.091462]: Subclasses: []\n", + "[INFO] [1712607560.091756]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.092241]: Instances: []\n", + "[INFO] [1712607560.092492]: Direct Instances: []\n", + "[INFO] [1712607560.092726]: Inverse Restrictions: []\n", + "[INFO] [1712607560.092972]: -------------------\n", + "[INFO] [1712607560.093205]: SOMA.Wardrobe \n", + "[INFO] [1712607560.093431]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712607560.093694]: Ancestors: {DUL.Object, SOMA.DesignedFurniture, SOMA.Wardrobe, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Cupboard}\n", + "[INFO] [1712607560.093926]: Subclasses: []\n", + "[INFO] [1712607560.094223]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.094731]: Instances: []\n", + "[INFO] [1712607560.094988]: Direct Instances: []\n", + "[INFO] [1712607560.095222]: Inverse Restrictions: []\n", + "[INFO] [1712607560.095453]: -------------------\n", + "[INFO] [1712607560.095688]: SOMA.WaterBottle \n", + "[INFO] [1712607560.095924]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712607560.096192]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.WaterBottle}\n", + "[INFO] [1712607560.096427]: Subclasses: []\n", + "[INFO] [1712607560.096706]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.097206]: Instances: []\n", + "[INFO] [1712607560.097465]: Direct Instances: []\n", + "[INFO] [1712607560.097708]: Inverse Restrictions: []\n", + "[INFO] [1712607560.097939]: -------------------\n", + "[INFO] [1712607560.098184]: SOMA.WaterGlass \n", + "[INFO] [1712607560.098418]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712607560.098690]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Glass, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.WaterGlass, SOMA.Tableware}\n", + "[INFO] [1712607560.098927]: Subclasses: []\n", + "[INFO] [1712607560.099207]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.099698]: Instances: []\n", + "[INFO] [1712607560.099962]: Direct Instances: []\n", + "[INFO] [1712607560.100206]: Inverse Restrictions: []\n", + "[INFO] [1712607560.100434]: -------------------\n", + "[INFO] [1712607560.100659]: SOMA.WineBottle \n", + "[INFO] [1712607560.100891]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712607560.101164]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.WineBottle, DUL.Entity}\n", + "[INFO] [1712607560.101400]: Subclasses: []\n", + "[INFO] [1712607560.101683]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.102162]: Instances: []\n", + "[INFO] [1712607560.102440]: Direct Instances: []\n", + "[INFO] [1712607560.102700]: Inverse Restrictions: []\n", + "[INFO] [1712607560.102942]: -------------------\n", + "[INFO] [1712607560.103173]: SOMA.WineGlass \n", + "[INFO] [1712607560.103401]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712607560.103679]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Glass, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.WineGlass, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607560.103926]: Subclasses: []\n", + "[INFO] [1712607560.104208]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.104676]: Instances: []\n", + "[INFO] [1712607560.104941]: Direct Instances: []\n", + "[INFO] [1712607560.105193]: Inverse Restrictions: []\n", + "[INFO] [1712607560.105428]: -------------------\n", + "[INFO] [1712607560.105663]: SOMA.3DPosition \n", + "[INFO] [1712607560.105927]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712607560.106204]: Ancestors: {DUL.Abstract, SOMA.3DPosition, owl.Thing, DUL.SpaceRegion, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.106467]: Subclasses: []\n", + "[INFO] [1712607560.106765]: Properties: [rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.107256]: Instances: []\n", + "[INFO] [1712607560.107531]: Direct Instances: []\n", + "[INFO] [1712607560.107782]: Inverse Restrictions: []\n", + "[INFO] [1712607560.108018]: -------------------\n", + "[INFO] [1712607560.108251]: SOMA.Affordance \n", + "[INFO] [1712607560.108506]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712607560.108757]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Relation, DUL.Entity, SOMA.Affordance, DUL.SocialObject}\n", + "[INFO] [1712607560.109005]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712607560.109300]: Properties: [SOMA.definesTrigger, DUL.definesTask, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.definesBearer]\n", + "[INFO] [1712607560.109803]: Instances: []\n", + "[INFO] [1712607560.110070]: Direct Instances: []\n", + "[INFO] [1712607560.110455]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712607560.110695]: -------------------\n", + "[INFO] [1712607560.110939]: SOMA.Disposition \n", + "[INFO] [1712607560.111206]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712607560.111452]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.111721]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712607560.112023]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", + "[INFO] [1712607560.112576]: Instances: []\n", + "[INFO] [1712607560.112851]: Direct Instances: []\n", + "[INFO] [1712607560.113175]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712607560.113427]: -------------------\n", + "[INFO] [1712607560.113664]: SOMA.Setpoint \n", + "[INFO] [1712607560.113891]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712607560.114130]: Ancestors: {DUL.Object, DUL.Parameter, SOMA.Setpoint, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.114399]: Subclasses: []\n", + "[INFO] [1712607560.114695]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.115187]: Instances: []\n", + "[INFO] [1712607560.115446]: Direct Instances: []\n", + "[INFO] [1712607560.115702]: Inverse Restrictions: []\n", + "[INFO] [1712607560.115946]: -------------------\n", + "[INFO] [1712607560.116182]: SOMA.Answer \n", + "[INFO] [1712607560.116412]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712607560.116655]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Answer, owl.Thing, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.116893]: Subclasses: []\n", + "[INFO] [1712607560.117177]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.117668]: Instances: []\n", + "[INFO] [1712607560.117928]: Direct Instances: []\n", + "[INFO] [1712607560.118226]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712607560.118470]: -------------------\n", + "[INFO] [1712607560.118703]: SOMA.Message \n", + "[INFO] [1712607560.118953]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712607560.119206]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.119460]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712607560.119764]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.120263]: Instances: []\n", + "[INFO] [1712607560.120533]: Direct Instances: []\n", + "[INFO] [1712607560.120856]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607560.121094]: -------------------\n", + "[INFO] [1712607560.121334]: SOMA.ProcessType \n", + "[INFO] [1712607560.121581]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712607560.121824]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.122087]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712607560.122385]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.122956]: Instances: []\n", + "[INFO] [1712607560.123220]: Direct Instances: []\n", + "[INFO] [1712607560.123547]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712607560.123794]: -------------------\n", + "[INFO] [1712607560.124038]: SOMA.OrderedElement \n", + "[INFO] [1712607560.124285]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712607560.124523]: Ancestors: {SOMA.Singleton, SOMA.OrderedElement, owl.Thing}\n", + "[INFO] [1712607560.124763]: Subclasses: []\n", + "[INFO] [1712607560.125064]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isOrderedBy]\n", + "[INFO] [1712607560.125558]: Instances: []\n", + "[INFO] [1712607560.125822]: Direct Instances: []\n", + "[INFO] [1712607560.126201]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712607560.126464]: -------------------\n", + "[INFO] [1712607560.126709]: SOMA.System \n", + "[INFO] [1712607560.126942]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712607560.127184]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.127437]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712607560.127758]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.128294]: Instances: []\n", + "[INFO] [1712607560.128558]: Direct Instances: []\n", + "[INFO] [1712607560.128818]: Inverse Restrictions: []\n", + "[INFO] [1712607560.129069]: -------------------\n", + "[INFO] [1712607560.129309]: SOMA.Binding \n", + "[INFO] [1712607560.129581]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712607560.129834]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.130095]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712607560.130399]: Properties: [Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, SOMA.hasBindingRole, rdf-schema.comment, SOMA.hasBindingFiller]\n", + "[INFO] [1712607560.130906]: Instances: []\n", + "[INFO] [1712607560.131183]: Direct Instances: []\n", + "[INFO] [1712607560.131447]: Inverse Restrictions: []\n", + "[INFO] [1712607560.131682]: -------------------\n", + "[INFO] [1712607560.131912]: SOMA.Joint \n", + "[INFO] [1712607560.132156]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712607560.132411]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity, DUL.PhysicalBody, SOMA.Joint}\n", + "[INFO] [1712607560.132669]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712607560.132972]: Properties: [rdf-schema.comment, SOMA.hasParentLink, rdf-schema.isDefinedBy, SOMA.hasChildLink]\n", + "[INFO] [1712607560.133493]: Instances: []\n", + "[INFO] [1712607560.133767]: Direct Instances: []\n", + "[INFO] [1712607560.134032]: Inverse Restrictions: []\n", + "[INFO] [1712607560.134272]: -------------------\n", + "[INFO] [1712607560.134519]: SOMA.Color \n", + "[INFO] [1712607560.134760]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712607560.135001]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality}\n", + "[INFO] [1712607560.135242]: Subclasses: []\n", + "[INFO] [1712607560.135535]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.136031]: Instances: []\n", + "[INFO] [1712607560.136290]: Direct Instances: []\n", + "[INFO] [1712607560.136588]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712607560.136825]: -------------------\n", + "[INFO] [1712607560.137060]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712607560.137301]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607560.137542]: Ancestors: {DUL.Abstract, SOMA.ExecutionStateRegion, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.137780]: Subclasses: []\n", + "[INFO] [1712607560.138079]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.138610]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712607560.138900]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712607560.139173]: Inverse Restrictions: []\n", + "[INFO] [1712607560.139407]: -------------------\n", + "[INFO] [1712607560.139638]: SOMA.Feature \n", + "[INFO] [1712607560.139881]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712607560.140129]: Ancestors: {DUL.Object, owl.Thing, SOMA.Feature, DUL.Entity}\n", + "[INFO] [1712607560.140381]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712607560.140680]: Properties: [rdf-schema.comment, SOMA.isFeatureOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.141165]: Instances: []\n", + "[INFO] [1712607560.141437]: Direct Instances: []\n", + "[INFO] [1712607560.141744]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712607560.141985]: -------------------\n", + "[INFO] [1712607560.142223]: SOMA.FrictionAttribute \n", + "[INFO] [1712607560.142463]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712607560.142710]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.142975]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712607560.143270]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasFrictionValue, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.143754]: Instances: []\n", + "[INFO] [1712607560.144032]: Direct Instances: []\n", + "[INFO] [1712607560.144299]: Inverse Restrictions: []\n", + "[INFO] [1712607560.144561]: -------------------\n", + "[INFO] [1712607560.144793]: SOMA.SituationTransition \n", + "[INFO] [1712607560.145028]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712607560.145273]: Ancestors: {SOMA.SituationTransition, DUL.Transition, owl.Thing, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712607560.145517]: Subclasses: []\n", + "[INFO] [1712607560.145817]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.146306]: Instances: []\n", + "[INFO] [1712607560.146573]: Direct Instances: []\n", + "[INFO] [1712607560.148335]: Inverse Restrictions: []\n", + "[INFO] [1712607560.148612]: -------------------\n", + "[INFO] [1712607560.148860]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712607560.149097]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712607560.149334]: Ancestors: {owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation, DUL.Entity}\n", + "[INFO] [1712607560.149574]: Subclasses: []\n", + "[INFO] [1712607560.149882]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.150379]: Instances: []\n", + "[INFO] [1712607560.150643]: Direct Instances: []\n", + "[INFO] [1712607560.152035]: Inverse Restrictions: []\n", + "[INFO] [1712607560.152293]: -------------------\n", + "[INFO] [1712607560.152551]: SOMA.JointLimit \n", + "[INFO] [1712607560.152793]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712607560.153034]: Ancestors: {DUL.Abstract, SOMA.JointLimit, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.153274]: Subclasses: []\n", + "[INFO] [1712607560.153558]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.154064]: Instances: []\n", + "[INFO] [1712607560.154339]: Direct Instances: []\n", + "[INFO] [1712607560.154665]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712607560.154913]: -------------------\n", + "[INFO] [1712607560.155153]: SOMA.JointState \n", + "[INFO] [1712607560.155397]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712607560.155638]: Ancestors: {SOMA.JointState, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.155887]: Subclasses: []\n", + "[INFO] [1712607560.156572]: Properties: [SOMA.hasJointPosition, rdf-schema.isDefinedBy, SOMA.hasJointVelocity, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607560.157143]: Instances: []\n", + "[INFO] [1712607560.157429]: Direct Instances: []\n", + "[INFO] [1712607560.157768]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712607560.158018]: -------------------\n", + "[INFO] [1712607560.158268]: SOMA.Localization \n", + "[INFO] [1712607560.158511]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712607560.158755]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality}\n", + "[INFO] [1712607560.159017]: Subclasses: []\n", + "[INFO] [1712607560.159319]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.159810]: Instances: []\n", + "[INFO] [1712607560.160099]: Direct Instances: []\n", + "[INFO] [1712607560.161249]: Inverse Restrictions: []\n", + "[INFO] [1712607560.161513]: -------------------\n", + "[INFO] [1712607560.161752]: SOMA.MassAttribute \n", + "[INFO] [1712607560.161988]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712607560.162241]: Ancestors: {DUL.Abstract, DUL.PhysicalAttribute, SOMA.MassAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.162506]: Subclasses: []\n", + "[INFO] [1712607560.162812]: Properties: [rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.163303]: Instances: []\n", + "[INFO] [1712607560.163589]: Direct Instances: []\n", + "[INFO] [1712607560.163859]: Inverse Restrictions: []\n", + "[INFO] [1712607560.164094]: -------------------\n", + "[INFO] [1712607560.164347]: SOMA.NetForce \n", + "[INFO] [1712607560.164587]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712607560.164829]: Ancestors: {DUL.Abstract, SOMA.NetForce, DUL.PhysicalAttribute, owl.Thing, SOMA.ForceAttribute, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.165093]: Subclasses: []\n", + "[INFO] [1712607560.165392]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.165888]: Instances: []\n", + "[INFO] [1712607560.166166]: Direct Instances: []\n", + "[INFO] [1712607560.166434]: Inverse Restrictions: []\n", + "[INFO] [1712607560.166669]: -------------------\n", + "[INFO] [1712607560.166900]: SOMA.Succedence \n", + "[INFO] [1712607560.167141]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712607560.167397]: Ancestors: {DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.167657]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712607560.167956]: Properties: [rdf-schema.isDefinedBy, SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence), rdf-schema.comment, SOMA.hasPredecessor]\n", + "[INFO] [1712607560.168447]: Instances: []\n", + "[INFO] [1712607560.168725]: Direct Instances: []\n", + "[INFO] [1712607560.168990]: Inverse Restrictions: []\n", + "[INFO] [1712607560.169228]: -------------------\n", + "[INFO] [1712607560.169460]: SOMA.Preference \n", + "[INFO] [1712607560.169693]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712607560.169938]: Ancestors: {SOMA.SocialQuality, SOMA.Preference, owl.Thing, DUL.Entity, DUL.Quality}\n", + "[INFO] [1712607560.170192]: Subclasses: []\n", + "[INFO] [1712607560.170489]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.170983]: Instances: []\n", + "[INFO] [1712607560.171262]: Direct Instances: []\n", + "[INFO] [1712607560.171638]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712607560.171880]: -------------------\n", + "[INFO] [1712607560.172114]: SOMA.Shape \n", + "[INFO] [1712607560.172350]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712607560.172590]: Ancestors: {owl.Thing, SOMA.Intrinsic, SOMA.Shape, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.172857]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", + "[INFO] [1712607560.173156]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.173666]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712607560.173920]: Direct Instances: []\n", + "[INFO] [1712607560.175062]: Inverse Restrictions: []\n", + "[INFO] [1712607560.175323]: -------------------\n", + "[INFO] [1712607560.175567]: SOMA.ShapeRegion \n", + "[INFO] [1712607560.175804]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712607560.176045]: Ancestors: {DUL.Abstract, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607560.176318]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712607560.176620]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.177115]: Instances: []\n", + "[INFO] [1712607560.177364]: Direct Instances: []\n", + "[INFO] [1712607560.178109]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712607560.178388]: -------------------\n", + "[INFO] [1712607560.178631]: SOMA.SoftwareInstance \n", + "[INFO] [1712607560.178913]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712607560.179160]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", + "[INFO] [1712607560.179401]: Subclasses: []\n", + "[INFO] [1712607560.179704]: Properties: [SOMA.isDesignedBy, rdf-schema.isDefinedBy, DUL.actsFor, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607560.180196]: Instances: []\n", + "[INFO] [1712607560.180464]: Direct Instances: []\n", + "[INFO] [1712607560.180782]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712607560.181018]: -------------------\n", + "[INFO] [1712607560.181251]: SOMA.StateType \n", + "[INFO] [1712607560.181504]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712607560.181752]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.182016]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712607560.182317]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.182828]: Instances: []\n", + "[INFO] [1712607560.183098]: Direct Instances: []\n", + "[INFO] [1712607560.183423]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712607560.183659]: -------------------\n", + "[INFO] [1712607560.183888]: SOMA.PhysicalEffector \n", + "[INFO] [1712607560.184122]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712607560.184375]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607560.184654]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712607560.184958]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, Inverse(DUL.hasPart)]\n", + "[INFO] [1712607560.185457]: Instances: []\n", + "[INFO] [1712607560.185735]: Direct Instances: []\n", + "[INFO] [1712607560.186004]: Inverse Restrictions: []\n", + "[INFO] [1712607560.186253]: -------------------\n", + "[INFO] [1712607560.186489]: SOMA.QueryingTask \n", + "[INFO] [1712607560.186729]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712607560.186981]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing, SOMA.QueryingTask}\n", + "[INFO] [1712607560.187228]: Subclasses: []\n", + "[INFO] [1712607560.187523]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.188013]: Instances: []\n", + "[INFO] [1712607560.188290]: Direct Instances: []\n", + "[INFO] [1712607560.188626]: Inverse Restrictions: []\n", + "[INFO] [1712607560.188865]: -------------------\n", + "[INFO] [1712607560.189098]: SOMA.Order \n", + "[INFO] [1712607560.189331]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712607560.189582]: Ancestors: {DUL.Abstract, owl.Thing, SOMA.Order, DUL.FormalEntity, DUL.Entity}\n", + "[INFO] [1712607560.189830]: Subclasses: []\n", + "[INFO] [1712607560.190127]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.orders]\n", + "[INFO] [1712607560.190619]: Instances: []\n", + "[INFO] [1712607560.190892]: Direct Instances: []\n", + "[INFO] [1712607560.191253]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712607560.191493]: -------------------\n", + "[INFO] [1712607560.191723]: SOMA.State \n", + "[INFO] [1712607560.191951]: Super classes: [DUL.Event]\n", + "[INFO] [1712607560.192183]: Ancestors: {owl.Thing, DUL.Event, SOMA.State, DUL.Entity}\n", + "[INFO] [1712607560.192447]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712607560.192738]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.193228]: Instances: []\n", + "[INFO] [1712607560.193493]: Direct Instances: []\n", + "[INFO] [1712607560.194008]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712607560.194267]: -------------------\n", + "[INFO] [1712607560.194510]: SOMA.Transient \n", + "[INFO] [1712607560.194747]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712607560.194995]: Ancestors: {DUL.Object, owl.Thing, SOMA.Transient, DUL.Entity}\n", + "[INFO] [1712607560.195246]: Subclasses: []\n", + "[INFO] [1712607560.195567]: Properties: [rdf-schema.comment, SOMA.transitionsFrom, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.196063]: Instances: []\n", + "[INFO] [1712607560.196320]: Direct Instances: []\n", + "[INFO] [1712607560.196585]: Inverse Restrictions: []\n", + "[INFO] [1712607560.196824]: -------------------\n", + "[INFO] [1712607560.197055]: SOMA.ColorRegion \n", + "[INFO] [1712607560.197293]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712607560.197532]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.197796]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712607560.198092]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.198592]: Instances: []\n", + "[INFO] [1712607560.198859]: Direct Instances: []\n", + "[INFO] [1712607560.199174]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712607560.199425]: -------------------\n", + "[INFO] [1712607560.199667]: SOMA.ForceAttribute \n", + "[INFO] [1712607560.199909]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712607560.200151]: Ancestors: {DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, SOMA.ForceAttribute, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.200406]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712607560.200709]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasForceValue, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.201205]: Instances: []\n", + "[INFO] [1712607560.201461]: Direct Instances: []\n", + "[INFO] [1712607560.201721]: Inverse Restrictions: []\n", + "[INFO] [1712607560.201957]: -------------------\n", + "[INFO] [1712607560.202199]: SOMA.API_Specification \n", + "[INFO] [1712607560.202434]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712607560.202675]: Ancestors: {DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607560.202927]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712607560.203230]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.203721]: Instances: []\n", + "[INFO] [1712607560.203983]: Direct Instances: []\n", + "[INFO] [1712607560.204235]: Inverse Restrictions: []\n", + "[INFO] [1712607560.204463]: -------------------\n", + "[INFO] [1712607560.204696]: SOMA.InterfaceSpecification \n", + "[INFO] [1712607560.204934]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712607560.205175]: Ancestors: {DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607560.205429]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712607560.205718]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.206209]: Instances: []\n", + "[INFO] [1712607560.206487]: Direct Instances: []\n", + "[INFO] [1712607560.206810]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712607560.207050]: -------------------\n", + "[INFO] [1712607560.207294]: SOMA.AbductiveReasoning \n", + "[INFO] [1712607560.207536]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712607560.207777]: Ancestors: {SOMA.AbductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607560.208020]: Subclasses: []\n", + "[INFO] [1712607560.208308]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.208816]: Instances: []\n", + "[INFO] [1712607560.209079]: Direct Instances: []\n", + "[INFO] [1712607560.209326]: Inverse Restrictions: []\n", + "[INFO] [1712607560.209559]: -------------------\n", + "[INFO] [1712607560.209788]: SOMA.Reasoning \n", + "[INFO] [1712607560.210014]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607560.210251]: Ancestors: {owl.Thing, SOMA.Reasoning, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712607560.210514]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712607560.210807]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.211333]: Instances: []\n", + "[INFO] [1712607560.211600]: Direct Instances: []\n", + "[INFO] [1712607560.211876]: Inverse Restrictions: []\n", + "[INFO] [1712607560.212127]: -------------------\n", + "[INFO] [1712607560.212366]: SOMA.Accessor \n", + "[INFO] [1712607560.212596]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712607560.212837]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.213094]: Subclasses: []\n", + "[INFO] [1712607560.213386]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.213867]: Instances: []\n", + "[INFO] [1712607560.214113]: Direct Instances: []\n", + "[INFO] [1712607560.214382]: Inverse Restrictions: []\n", + "[INFO] [1712607560.214620]: -------------------\n", + "[INFO] [1712607560.214853]: SOMA.Instrument \n", + "[INFO] [1712607560.215082]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712607560.215322]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.215592]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712607560.215884]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.216400]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607560.216681]: Direct Instances: []\n", + "[INFO] [1712607560.217062]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607560.217301]: -------------------\n", + "[INFO] [1712607560.217534]: SOMA.Accident \n", + "[INFO] [1712607560.217762]: Super classes: [DUL.Event]\n", + "[INFO] [1712607560.217999]: Ancestors: {owl.Thing, DUL.Event, SOMA.Accident, DUL.Entity}\n", + "[INFO] [1712607560.218255]: Subclasses: []\n", + "[INFO] [1712607560.218563]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.219045]: Instances: []\n", + "[INFO] [1712607560.219291]: Direct Instances: []\n", + "[INFO] [1712607560.219542]: Inverse Restrictions: []\n", + "[INFO] [1712607560.219783]: -------------------\n", + "[INFO] [1712607560.220017]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712607560.220250]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712607560.220485]: Ancestors: {DUL.Object, DUL.Description, DUL.Plan, owl.Thing, DUL.Entity, SOMA.ActionExecutionPlan, DUL.SocialObject}\n", + "[INFO] [1712607560.220720]: Subclasses: []\n", + "[INFO] [1712607560.221008]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.221495]: Instances: []\n", + "[INFO] [1712607560.221748]: Direct Instances: []\n", + "[INFO] [1712607560.221994]: Inverse Restrictions: []\n", + "[INFO] [1712607560.222225]: -------------------\n", + "[INFO] [1712607560.222452]: SOMA.Actuating \n", + "[INFO] [1712607560.222691]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607560.222937]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.223212]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712607560.223502]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.224027]: Instances: []\n", + "[INFO] [1712607560.224295]: Direct Instances: []\n", + "[INFO] [1712607560.224566]: Inverse Restrictions: []\n", + "[INFO] [1712607560.224811]: -------------------\n", + "[INFO] [1712607560.225048]: SOMA.PhysicalTask \n", + "[INFO] [1712607560.225293]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712607560.225536]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", + "[INFO] [1712607560.225808]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712607560.226108]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.226722]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", + "[INFO] [1712607560.227007]: Direct Instances: []\n", + "[INFO] [1712607560.227328]: Inverse Restrictions: []\n", + "[INFO] [1712607560.227574]: -------------------\n", + "[INFO] [1712607560.227830]: SOMA.AestheticDesign \n", + "[INFO] [1712607560.228076]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712607560.228325]: Ancestors: {DUL.Object, DUL.Description, SOMA.AestheticDesign, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607560.228569]: Subclasses: []\n", + "[INFO] [1712607560.228878]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.229374]: Instances: []\n", + "[INFO] [1712607560.229650]: Direct Instances: []\n", + "[INFO] [1712607560.229900]: Inverse Restrictions: []\n", + "[INFO] [1712607560.230140]: -------------------\n", + "[INFO] [1712607560.230376]: SOMA.AgentRole \n", + "[INFO] [1712607560.230610]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712607560.230861]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.AgentRole, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607560.231113]: Subclasses: []\n", + "[INFO] [1712607560.231408]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.231890]: Instances: []\n", + "[INFO] [1712607560.232144]: Direct Instances: []\n", + "[INFO] [1712607560.232440]: Inverse Restrictions: []\n", + "[INFO] [1712607560.232681]: -------------------\n", + "[INFO] [1712607560.232915]: SOMA.CausativeRole \n", + "[INFO] [1712607560.233144]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607560.233382]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607560.233655]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712607560.234213]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.234758]: Instances: []\n", + "[INFO] [1712607560.235026]: Direct Instances: []\n", + "[INFO] [1712607560.235313]: Inverse Restrictions: []\n", + "[INFO] [1712607560.235558]: -------------------\n", + "[INFO] [1712607560.235796]: SOMA.Agonist \n", + "[INFO] [1712607560.236032]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.236288]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Agonist, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.236536]: Subclasses: []\n", + "[INFO] [1712607560.236827]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.237313]: Instances: []\n", + "[INFO] [1712607560.237593]: Direct Instances: []\n", + "[INFO] [1712607560.237908]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712607560.238159]: -------------------\n", + "[INFO] [1712607560.238395]: SOMA.Patient \n", + "[INFO] [1712607560.238636]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607560.238884]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.239166]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712607560.239457]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.240028]: Instances: []\n", + "[INFO] [1712607560.240307]: Direct Instances: []\n", + "[INFO] [1712607560.240718]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607560.240963]: -------------------\n", + "[INFO] [1712607560.241197]: SOMA.Algorithm \n", + "[INFO] [1712607560.241441]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712607560.241690]: Ancestors: {DUL.Object, SOMA.Algorithm, DUL.Description, owl.Thing, DUL.Entity, DUL.Plan, DUL.SocialObject}\n", + "[INFO] [1712607560.241936]: Subclasses: []\n", + "[INFO] [1712607560.242226]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.242712]: Instances: []\n", + "[INFO] [1712607560.242990]: Direct Instances: []\n", + "[INFO] [1712607560.243312]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712607560.243557]: -------------------\n", + "[INFO] [1712607560.243792]: SOMA.Alteration \n", + "[INFO] [1712607560.244024]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712607560.244266]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject}\n", + "[INFO] [1712607560.244549]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712607560.244849]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.245359]: Instances: []\n", + "[INFO] [1712607560.245644]: Direct Instances: []\n", + "[INFO] [1712607560.245915]: Inverse Restrictions: []\n", + "[INFO] [1712607560.246156]: -------------------\n", + "[INFO] [1712607560.246394]: SOMA.AlterativeInteraction \n", + "[INFO] [1712607560.246623]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712607560.246864]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.AlterativeInteraction, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607560.247121]: Subclasses: []\n", + "[INFO] [1712607560.247426]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.247910]: Instances: []\n", + "[INFO] [1712607560.248157]: Direct Instances: []\n", + "[INFO] [1712607560.248449]: Inverse Restrictions: []\n", + "[INFO] [1712607560.248692]: -------------------\n", + "[INFO] [1712607560.248927]: SOMA.ForceInteraction \n", + "[INFO] [1712607560.249166]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712607560.249406]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.249655]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712607560.249971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607560.250475]: Instances: []\n", + "[INFO] [1712607560.250731]: Direct Instances: []\n", + "[INFO] [1712607560.250992]: Inverse Restrictions: []\n", + "[INFO] [1712607560.251228]: -------------------\n", + "[INFO] [1712607560.251464]: SOMA.PreservativeInteraction \n", + "[INFO] [1712607560.251703]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712607560.251945]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PreservativeInteraction, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607560.252186]: Subclasses: []\n", + "[INFO] [1712607560.252471]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.252979]: Instances: []\n", + "[INFO] [1712607560.253257]: Direct Instances: []\n", + "[INFO] [1712607560.253559]: Inverse Restrictions: []\n", + "[INFO] [1712607560.253800]: -------------------\n", + "[INFO] [1712607560.254035]: SOMA.AlteredObject \n", + "[INFO] [1712607560.254287]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.254539]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.254799]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712607560.255090]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.255593]: Instances: []\n", + "[INFO] [1712607560.255864]: Direct Instances: []\n", + "[INFO] [1712607560.256214]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712607560.256455]: -------------------\n", + "[INFO] [1712607560.256692]: SOMA.Amateurish \n", + "[INFO] [1712607560.256937]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712607560.257183]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.257440]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712607560.257740]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.258227]: Instances: []\n", + "[INFO] [1712607560.258513]: Direct Instances: []\n", + "[INFO] [1712607560.258783]: Inverse Restrictions: []\n", + "[INFO] [1712607560.259021]: -------------------\n", + "[INFO] [1712607560.259255]: SOMA.AnsweringTask \n", + "[INFO] [1712607560.259494]: Super classes: [owl.Thing]\n", + "[INFO] [1712607560.259733]: Ancestors: {SOMA.AnsweringTask, owl.Thing}\n", + "[INFO] [1712607560.259973]: Subclasses: []\n", + "[INFO] [1712607560.260263]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.260757]: Instances: []\n", + "[INFO] [1712607560.261049]: Direct Instances: []\n", + "[INFO] [1712607560.261344]: Inverse Restrictions: []\n", + "[INFO] [1712607560.261580]: -------------------\n", + "[INFO] [1712607560.261814]: SOMA.CommandingTask \n", + "[INFO] [1712607560.262058]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712607560.262312]: Ancestors: {SOMA.CommandingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712607560.262563]: Subclasses: []\n", + "[INFO] [1712607560.262859]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.263344]: Instances: []\n", + "[INFO] [1712607560.263645]: Direct Instances: []\n", + "[INFO] [1712607560.263993]: Inverse Restrictions: []\n", + "[INFO] [1712607560.264247]: -------------------\n", + "[INFO] [1712607560.264510]: SOMA.IllocutionaryTask \n", + "[INFO] [1712607560.264764]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712607560.265004]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712607560.265260]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712607560.265551]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.266063]: Instances: []\n", + "[INFO] [1712607560.266339]: Direct Instances: []\n", + "[INFO] [1712607560.266637]: Inverse Restrictions: []\n", + "[INFO] [1712607560.266876]: -------------------\n", + "[INFO] [1712607560.267120]: SOMA.Antagonist \n", + "[INFO] [1712607560.267356]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.267595]: Ancestors: {DUL.Object, SOMA.Antagonist, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.267833]: Subclasses: []\n", + "[INFO] [1712607560.268119]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.268614]: Instances: []\n", + "[INFO] [1712607560.268879]: Direct Instances: []\n", + "[INFO] [1712607560.269169]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712607560.269402]: -------------------\n", + "[INFO] [1712607560.269634]: SOMA.Appliance \n", + "[INFO] [1712607560.269873]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712607560.270116]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607560.270379]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712607560.270665]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.271169]: Instances: []\n", + "[INFO] [1712607560.271433]: Direct Instances: []\n", + "[INFO] [1712607560.271686]: Inverse Restrictions: []\n", + "[INFO] [1712607560.271914]: -------------------\n", + "[INFO] [1712607560.272139]: SOMA.Approaching \n", + "[INFO] [1712607560.272374]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607560.272623]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Approaching, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607560.272867]: Subclasses: []\n", + "[INFO] [1712607560.273155]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.273660]: Instances: []\n", + "[INFO] [1712607560.273925]: Direct Instances: []\n", + "[INFO] [1712607560.274183]: Inverse Restrictions: []\n", + "[INFO] [1712607560.274416]: -------------------\n", + "[INFO] [1712607560.274645]: SOMA.Locomotion \n", + "[INFO] [1712607560.274876]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712607560.275129]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", + "[INFO] [1712607560.275393]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712607560.275691]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.276183]: Instances: []\n", + "[INFO] [1712607560.276461]: Direct Instances: []\n", + "[INFO] [1712607560.276734]: Inverse Restrictions: []\n", + "[INFO] [1712607560.276971]: -------------------\n", + "[INFO] [1712607560.277205]: SOMA.ArchiveFile \n", + "[INFO] [1712607560.277437]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712607560.277707]: Ancestors: {DUL.InformationRealization, owl.Thing, SOMA.ArchiveFile, DUL.Entity, DUL.InformationEntity, SOMA.Digital_File}\n", + "[INFO] [1712607560.277980]: Subclasses: []\n", + "[INFO] [1712607560.278296]: Properties: [DUL.realizes, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.278795]: Instances: []\n", + "[INFO] [1712607560.279070]: Direct Instances: []\n", + "[INFO] [1712607560.279322]: Inverse Restrictions: []\n", + "[INFO] [1712607560.279563]: -------------------\n", + "[INFO] [1712607560.279798]: SOMA.ArchiveText \n", + "[INFO] [1712607560.280027]: Super classes: [owl.Thing]\n", + "[INFO] [1712607560.280257]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", + "[INFO] [1712607560.280489]: Subclasses: []\n", + "[INFO] [1712607560.280793]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607560.281281]: Instances: []\n", + "[INFO] [1712607560.281533]: Direct Instances: []\n", + "[INFO] [1712607560.281865]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712607560.282128]: -------------------\n", + "[INFO] [1712607560.282376]: SOMA.Digital_File \n", + "[INFO] [1712607560.282619]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712607560.282861]: Ancestors: {DUL.InformationRealization, owl.Thing, DUL.Entity, DUL.InformationEntity, SOMA.Digital_File}\n", + "[INFO] [1712607560.283110]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712607560.283416]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasNameString]\n", + "[INFO] [1712607560.283910]: Instances: []\n", + "[INFO] [1712607560.284173]: Direct Instances: []\n", + "[INFO] [1712607560.285277]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712607560.285541]: -------------------\n", + "[INFO] [1712607560.285791]: SOMA.ArchiveFormat \n", + "[INFO] [1712607560.286030]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712607560.286280]: Ancestors: {DUL.Object, SOMA.ArchiveFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607560.286523]: Subclasses: []\n", + "[INFO] [1712607560.286825]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.287312]: Instances: []\n", + "[INFO] [1712607560.287565]: Direct Instances: []\n", + "[INFO] [1712607560.287852]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712607560.288087]: -------------------\n", + "[INFO] [1712607560.288332]: SOMA.File_format \n", + "[INFO] [1712607560.288566]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607560.288807]: Ancestors: {DUL.Object, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607560.289058]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712607560.289344]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.289853]: Instances: []\n", + "[INFO] [1712607560.290118]: Direct Instances: []\n", + "[INFO] [1712607560.290384]: Inverse Restrictions: []\n", + "[INFO] [1712607560.290620]: -------------------\n", + "[INFO] [1712607560.290859]: SOMA.FileConfiguration \n", + "[INFO] [1712607560.291098]: Super classes: [owl.Thing]\n", + "[INFO] [1712607560.291336]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", + "[INFO] [1712607560.291577]: Subclasses: []\n", + "[INFO] [1712607560.291863]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.292356]: Instances: []\n", + "[INFO] [1712607560.292617]: Direct Instances: []\n", + "[INFO] [1712607560.292927]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712607560.293164]: -------------------\n", + "[INFO] [1712607560.293404]: SOMA.Structured_Text \n", + "[INFO] [1712607560.293642]: Super classes: [owl.Thing]\n", + "[INFO] [1712607560.293880]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", + "[INFO] [1712607560.294136]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712607560.294472]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607560.294991]: Instances: []\n", + "[INFO] [1712607560.295258]: Direct Instances: []\n", + "[INFO] [1712607560.295697]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712607560.295947]: -------------------\n", + "[INFO] [1712607560.296178]: SOMA.AreaSurveying \n", + "[INFO] [1712607560.296411]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712607560.296656]: Ancestors: {owl.Thing, SOMA.Perceiving, SOMA.AreaSurveying}\n", + "[INFO] [1712607560.296903]: Subclasses: []\n", + "[INFO] [1712607560.297191]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.297670]: Instances: []\n", + "[INFO] [1712607560.297945]: Direct Instances: []\n", + "[INFO] [1712607560.298201]: Inverse Restrictions: []\n", + "[INFO] [1712607560.298441]: -------------------\n", + "[INFO] [1712607560.298673]: SOMA.Perceiving \n", + "[INFO] [1712607560.298903]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712607560.299133]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712607560.299398]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712607560.299690]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.300173]: Instances: []\n", + "[INFO] [1712607560.300444]: Direct Instances: []\n", + "[INFO] [1712607560.300709]: Inverse Restrictions: []\n", + "[INFO] [1712607560.300943]: -------------------\n", + "[INFO] [1712607560.301175]: SOMA.Arm \n", + "[INFO] [1712607560.301416]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712607560.301663]: Ancestors: {DUL.Object, SOMA.Arm, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607560.301904]: Subclasses: []\n", + "[INFO] [1712607560.302188]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.302689]: Instances: []\n", + "[INFO] [1712607560.302963]: Direct Instances: []\n", + "[INFO] [1712607560.303249]: Inverse Restrictions: []\n", + "[INFO] [1712607560.303484]: -------------------\n", + "[INFO] [1712607560.303716]: SOMA.Limb \n", + "[INFO] [1712607560.303945]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712607560.304193]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607560.304448]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712607560.304745]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.305228]: Instances: []\n", + "[INFO] [1712607560.305505]: Direct Instances: []\n", + "[INFO] [1712607560.305827]: Inverse Restrictions: []\n", + "[INFO] [1712607560.306064]: -------------------\n", + "[INFO] [1712607560.306307]: SOMA.Arranging \n", + "[INFO] [1712607560.306537]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712607560.306786]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Arranging, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.307041]: Subclasses: []\n", + "[INFO] [1712607560.307332]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.307813]: Instances: []\n", + "[INFO] [1712607560.308065]: Direct Instances: []\n", + "[INFO] [1712607560.308307]: Inverse Restrictions: []\n", + "[INFO] [1712607560.308549]: -------------------\n", + "[INFO] [1712607560.308785]: SOMA.Constructing \n", + "[INFO] [1712607560.309014]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607560.309251]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.309516]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712607560.309823]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.310322]: Instances: []\n", + "[INFO] [1712607560.310589]: Direct Instances: []\n", + "[INFO] [1712607560.310855]: Inverse Restrictions: []\n", + "[INFO] [1712607560.311130]: -------------------\n", + "[INFO] [1712607560.311369]: SOMA.ArtificialAgent \n", + "[INFO] [1712607560.311602]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712607560.311842]: Ancestors: {DUL.Agent, DUL.Object, SOMA.ArtificialAgent, DUL.PhysicalAgent, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607560.312096]: Subclasses: []\n", + "[INFO] [1712607560.312388]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.312888]: Instances: []\n", + "[INFO] [1712607560.313171]: Direct Instances: []\n", + "[INFO] [1712607560.313424]: Inverse Restrictions: []\n", + "[INFO] [1712607560.313666]: -------------------\n", + "[INFO] [1712607560.313897]: SOMA.Assembling \n", + "[INFO] [1712607560.314122]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712607560.314386]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Assembling, DUL.EventType}\n", + "[INFO] [1712607560.314634]: Subclasses: []\n", + "[INFO] [1712607560.314921]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.315398]: Instances: []\n", + "[INFO] [1712607560.315671]: Direct Instances: []\n", + "[INFO] [1712607560.315924]: Inverse Restrictions: []\n", + "[INFO] [1712607560.316158]: -------------------\n", + "[INFO] [1712607560.316388]: SOMA.AssertionTask \n", + "[INFO] [1712607560.316624]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712607560.316873]: Ancestors: {SOMA.AssertionTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712607560.317121]: Subclasses: []\n", + "[INFO] [1712607560.317411]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.317895]: Instances: []\n", + "[INFO] [1712607560.318177]: Direct Instances: []\n", + "[INFO] [1712607560.318434]: Inverse Restrictions: []\n", + "[INFO] [1712607560.318672]: -------------------\n", + "[INFO] [1712607560.318902]: SOMA.DeclarativeClause \n", + "[INFO] [1712607560.319137]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712607560.319392]: Ancestors: {DUL.Object, SOMA.DeclarativeClause, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607560.319638]: Subclasses: []\n", + "[INFO] [1712607560.319929]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.320431]: Instances: []\n", + "[INFO] [1712607560.320701]: Direct Instances: []\n", + "[INFO] [1712607560.321069]: Inverse Restrictions: []\n", + "[INFO] [1712607560.321311]: -------------------\n", + "[INFO] [1712607560.321543]: SOMA.AssumingArmPose \n", + "[INFO] [1712607560.321774]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712607560.322026]: Ancestors: {SOMA.AssumingArmPose, DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.322288]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712607560.322599]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.323122]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712607560.323394]: Direct Instances: []\n", + "[INFO] [1712607560.323654]: Inverse Restrictions: []\n", + "[INFO] [1712607560.323885]: -------------------\n", + "[INFO] [1712607560.324114]: SOMA.AssumingPose \n", + "[INFO] [1712607560.324348]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607560.324595]: Ancestors: {DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.324847]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712607560.325137]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.325634]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712607560.325913]: Direct Instances: []\n", + "[INFO] [1712607560.326186]: Inverse Restrictions: []\n", + "[INFO] [1712607560.326426]: -------------------\n", + "[INFO] [1712607560.326660]: SOMA.AttentionShift \n", + "[INFO] [1712607560.326889]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712607560.327130]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.AttentionShift, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.327396]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712607560.327729]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.328223]: Instances: []\n", + "[INFO] [1712607560.328488]: Direct Instances: []\n", + "[INFO] [1712607560.328742]: Inverse Restrictions: []\n", + "[INFO] [1712607560.329006]: -------------------\n", + "[INFO] [1712607560.329248]: SOMA.MentalTask \n", + "[INFO] [1712607560.329487]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712607560.329727]: Ancestors: {DUL.Object, SOMA.MentalTask, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", + "[INFO] [1712607560.329983]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712607560.330298]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.330808]: Instances: []\n", + "[INFO] [1712607560.331064]: Direct Instances: []\n", + "[INFO] [1712607560.331361]: Inverse Restrictions: []\n", + "[INFO] [1712607560.331611]: -------------------\n", + "[INFO] [1712607560.331853]: SOMA.AvoidedObject \n", + "[INFO] [1712607560.332087]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.332328]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.AvoidedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.332567]: Subclasses: []\n", + "[INFO] [1712607560.332854]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.333353]: Instances: []\n", + "[INFO] [1712607560.333614]: Direct Instances: []\n", + "[INFO] [1712607560.333864]: Inverse Restrictions: []\n", + "[INFO] [1712607560.334097]: -------------------\n", + "[INFO] [1712607560.334342]: SOMA.Avoiding \n", + "[INFO] [1712607560.334579]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712607560.334838]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Avoiding, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.335086]: Subclasses: []\n", + "[INFO] [1712607560.335373]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.335851]: Instances: []\n", + "[INFO] [1712607560.336124]: Direct Instances: []\n", + "[INFO] [1712607560.336375]: Inverse Restrictions: []\n", + "[INFO] [1712607560.336612]: -------------------\n", + "[INFO] [1712607560.336842]: SOMA.Navigating \n", + "[INFO] [1712607560.337068]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607560.337317]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.337580]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712607560.337869]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.338365]: Instances: [SOMA.navigating]\n", + "[INFO] [1712607560.338650]: Direct Instances: [SOMA.navigating]\n", + "[INFO] [1712607560.338920]: Inverse Restrictions: []\n", + "[INFO] [1712607560.339158]: -------------------\n", + "[INFO] [1712607560.339388]: SOMA.Barrier \n", + "[INFO] [1712607560.339618]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712607560.339874]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Entity, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607560.340134]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712607560.340423]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.340909]: Instances: []\n", + "[INFO] [1712607560.341179]: Direct Instances: []\n", + "[INFO] [1712607560.341489]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712607560.341736]: -------------------\n", + "[INFO] [1712607560.341970]: SOMA.Restrictor \n", + "[INFO] [1712607560.342205]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712607560.342463]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607560.342727]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712607560.343016]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.343529]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607560.343807]: Direct Instances: []\n", + "[INFO] [1712607560.344168]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712607560.344457]: -------------------\n", + "[INFO] [1712607560.344698]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712607560.344932]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712607560.345174]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.345442]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712607560.345741]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.346258]: Instances: []\n", + "[INFO] [1712607560.346542]: Direct Instances: []\n", + "[INFO] [1712607560.346808]: Inverse Restrictions: []\n", + "[INFO] [1712607560.347042]: -------------------\n", + "[INFO] [1712607560.347271]: SOMA.BeneficiaryRole \n", + "[INFO] [1712607560.347500]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712607560.347751]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.348011]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712607560.348300]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.348787]: Instances: []\n", + "[INFO] [1712607560.349060]: Direct Instances: []\n", + "[INFO] [1712607560.349322]: Inverse Restrictions: []\n", + "[INFO] [1712607560.349557]: -------------------\n", + "[INFO] [1712607560.349801]: SOMA.GoalRole \n", + "[INFO] [1712607560.350039]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607560.350283]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.350535]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712607560.350820]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.351327]: Instances: []\n", + "[INFO] [1712607560.351590]: Direct Instances: []\n", + "[INFO] [1712607560.351855]: Inverse Restrictions: []\n", + "[INFO] [1712607560.352087]: -------------------\n", + "[INFO] [1712607560.352319]: SOMA.CounterfactualBinding \n", + "[INFO] [1712607560.352558]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712607560.352811]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, SOMA.CounterfactualBinding, DUL.SocialObject}\n", + "[INFO] [1712607560.353058]: Subclasses: []\n", + "[INFO] [1712607560.353362]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.353843]: Instances: []\n", + "[INFO] [1712607560.354127]: Direct Instances: []\n", + "[INFO] [1712607560.354458]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712607560.354698]: -------------------\n", + "[INFO] [1712607560.354933]: SOMA.FactualBinding \n", + "[INFO] [1712607560.355165]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712607560.355419]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, SOMA.FactualBinding, DUL.SocialObject}\n", + "[INFO] [1712607560.355666]: Subclasses: []\n", + "[INFO] [1712607560.355958]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.356462]: Instances: []\n", + "[INFO] [1712607560.356725]: Direct Instances: []\n", + "[INFO] [1712607560.357055]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712607560.357298]: -------------------\n", + "[INFO] [1712607560.357545]: SOMA.RoleFillerBinding \n", + "[INFO] [1712607560.358049]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712607560.358454]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, SOMA.RoleFillerBinding, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.358774]: Subclasses: []\n", + "[INFO] [1712607560.359118]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.359631]: Instances: []\n", + "[INFO] [1712607560.359925]: Direct Instances: []\n", + "[INFO] [1712607560.360223]: Inverse Restrictions: []\n", + "[INFO] [1712607560.360480]: -------------------\n", + "[INFO] [1712607560.360727]: SOMA.RoleRoleBinding \n", + "[INFO] [1712607560.360973]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712607560.361243]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, SOMA.RoleRoleBinding, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.361487]: Subclasses: []\n", + "[INFO] [1712607560.361789]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.362275]: Instances: []\n", + "[INFO] [1712607560.362553]: Direct Instances: []\n", + "[INFO] [1712607560.362851]: Inverse Restrictions: []\n", + "[INFO] [1712607560.363098]: -------------------\n", + "[INFO] [1712607560.363336]: SOMA.DesignedComponent \n", + "[INFO] [1712607560.363573]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712607560.363815]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607560.364079]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712607560.364386]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.364930]: Instances: []\n", + "[INFO] [1712607560.365206]: Direct Instances: []\n", + "[INFO] [1712607560.365461]: Inverse Restrictions: []\n", + "[INFO] [1712607560.365698]: -------------------\n", + "[INFO] [1712607560.365951]: SOMA.Blockage \n", + "[INFO] [1712607560.366213]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712607560.366484]: Ancestors: {owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.366770]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712607560.367126]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.367659]: Instances: []\n", + "[INFO] [1712607560.367940]: Direct Instances: []\n", + "[INFO] [1712607560.368208]: Inverse Restrictions: []\n", + "[INFO] [1712607560.368447]: -------------------\n", + "[INFO] [1712607560.368691]: SOMA.BlockedObject \n", + "[INFO] [1712607560.368927]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.369184]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.369470]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712607560.369794]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.370393]: Instances: []\n", + "[INFO] [1712607560.370774]: Direct Instances: []\n", + "[INFO] [1712607560.371189]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712607560.371573]: -------------------\n", + "[INFO] [1712607560.371848]: SOMA.BodyMovement \n", + "[INFO] [1712607560.372226]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712607560.372510]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", + "[INFO] [1712607560.372787]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712607560.373109]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.373635]: Instances: []\n", + "[INFO] [1712607560.373903]: Direct Instances: []\n", + "[INFO] [1712607560.374171]: Inverse Restrictions: []\n", + "[INFO] [1712607560.374427]: -------------------\n", + "[INFO] [1712607560.374669]: SOMA.Motion \n", + "[INFO] [1712607560.374903]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712607560.375147]: Ancestors: {DUL.Object, SOMA.Motion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.375402]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712607560.375701]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.376247]: Instances: []\n", + "[INFO] [1712607560.376520]: Direct Instances: []\n", + "[INFO] [1712607560.376779]: Inverse Restrictions: []\n", + "[INFO] [1712607560.377021]: -------------------\n", + "[INFO] [1712607560.377258]: SOMA.Boiling \n", + "[INFO] [1712607560.377488]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712607560.377730]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PhaseTransition, SOMA.Vaporizing, owl.Thing, SOMA.ProcessType, SOMA.Boiling, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", + "[INFO] [1712607560.377967]: Subclasses: []\n", + "[INFO] [1712607560.378264]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.378753]: Instances: []\n", + "[INFO] [1712607560.379031]: Direct Instances: []\n", + "[INFO] [1712607560.379286]: Inverse Restrictions: []\n", + "[INFO] [1712607560.379525]: -------------------\n", + "[INFO] [1712607560.379763]: SOMA.Vaporizing \n", + "[INFO] [1712607560.380006]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712607560.380248]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Vaporizing, SOMA.PhaseTransition, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", + "[INFO] [1712607560.380513]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712607560.380815]: Properties: [SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712607560.381296]: Instances: []\n", + "[INFO] [1712607560.381549]: Direct Instances: []\n", + "[INFO] [1712607560.381801]: Inverse Restrictions: []\n", + "[INFO] [1712607560.382044]: -------------------\n", + "[INFO] [1712607560.382287]: SOMA.DesignedContainer \n", + "[INFO] [1712607560.382526]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712607560.382772]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607560.383043]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712607560.383335]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.383940]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712607560.384214]: Direct Instances: []\n", + "[INFO] [1712607560.384489]: Inverse Restrictions: []\n", + "[INFO] [1712607560.384729]: -------------------\n", + "[INFO] [1712607560.384971]: SOMA.BoxShape \n", + "[INFO] [1712607560.385225]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712607560.385473]: Ancestors: {DUL.Abstract, owl.Thing, SOMA.BoxShape, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607560.385719]: Subclasses: []\n", + "[INFO] [1712607560.386017]: Properties: [SOMA.hasHeight, rdf-schema.isDefinedBy, SOMA.hasLength, rdf-schema.comment, SOMA.hasWidth, rdf-schema.label]\n", + "[INFO] [1712607560.386534]: Instances: []\n", + "[INFO] [1712607560.386809]: Direct Instances: []\n", + "[INFO] [1712607560.387099]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712607560.387338]: -------------------\n", + "[INFO] [1712607560.387573]: SOMA.Deposition \n", + "[INFO] [1712607560.387812]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712607560.388068]: Ancestors: {SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.388324]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712607560.388618]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.389103]: Instances: []\n", + "[INFO] [1712607560.389383]: Direct Instances: []\n", + "[INFO] [1712607560.389719]: Inverse Restrictions: []\n", + "[INFO] [1712607560.389959]: -------------------\n", + "[INFO] [1712607560.390198]: SOMA.CanCut \n", + "[INFO] [1712607560.390438]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712607560.390695]: Ancestors: {SOMA.CanCut, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.390944]: Subclasses: []\n", + "[INFO] [1712607560.391237]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.391723]: Instances: []\n", + "[INFO] [1712607560.392000]: Direct Instances: []\n", + "[INFO] [1712607560.392246]: Inverse Restrictions: []\n", + "[INFO] [1712607560.392485]: -------------------\n", + "[INFO] [1712607560.392718]: SOMA.Variability \n", + "[INFO] [1712607560.392953]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712607560.393203]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.393475]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712607560.393773]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.394284]: Instances: []\n", + "[INFO] [1712607560.394561]: Direct Instances: []\n", + "[INFO] [1712607560.394833]: Inverse Restrictions: []\n", + "[INFO] [1712607560.395067]: -------------------\n", + "[INFO] [1712607560.395298]: SOMA.Cutter \n", + "[INFO] [1712607560.395540]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712607560.395796]: Ancestors: {SOMA.Tool, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Cutter, DUL.SocialObject}\n", + "[INFO] [1712607560.396046]: Subclasses: []\n", + "[INFO] [1712607560.396334]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.396835]: Instances: []\n", + "[INFO] [1712607560.397095]: Direct Instances: []\n", + "[INFO] [1712607560.397409]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712607560.397644]: -------------------\n", + "[INFO] [1712607560.397872]: SOMA.CutObject \n", + "[INFO] [1712607560.398111]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712607560.398365]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, SOMA.CutObject, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.398607]: Subclasses: []\n", + "[INFO] [1712607560.398893]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.399386]: Instances: []\n", + "[INFO] [1712607560.399638]: Direct Instances: []\n", + "[INFO] [1712607560.399958]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712607560.400192]: -------------------\n", + "[INFO] [1712607560.400424]: SOMA.Capability \n", + "[INFO] [1712607560.400682]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712607560.400929]: Ancestors: {SOMA.Capability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.401179]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712607560.401469]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", + "[INFO] [1712607560.401973]: Instances: []\n", + "[INFO] [1712607560.402245]: Direct Instances: []\n", + "[INFO] [1712607560.402505]: Inverse Restrictions: []\n", + "[INFO] [1712607560.402744]: -------------------\n", + "[INFO] [1712607560.402977]: SOMA.Capacity \n", + "[INFO] [1712607560.403220]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607560.403475]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Capacity, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607560.403724]: Subclasses: []\n", + "[INFO] [1712607560.404022]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.404498]: Instances: []\n", + "[INFO] [1712607560.404780]: Direct Instances: []\n", + "[INFO] [1712607560.405086]: Inverse Restrictions: []\n", + "[INFO] [1712607560.405326]: -------------------\n", + "[INFO] [1712607560.405562]: SOMA.Intrinsic \n", + "[INFO] [1712607560.405793]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712607560.406032]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607560.406479]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712607560.406950]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.407626]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712607560.408021]: Direct Instances: []\n", + "[INFO] [1712607560.408329]: Inverse Restrictions: []\n", + "[INFO] [1712607560.408586]: -------------------\n", + "[INFO] [1712607560.408827]: SOMA.Catching \n", + "[INFO] [1712607560.409064]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607560.409306]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Catching, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.409544]: Subclasses: []\n", + "[INFO] [1712607560.409851]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.410345]: Instances: []\n", + "[INFO] [1712607560.410603]: Direct Instances: []\n", + "[INFO] [1712607560.410840]: Inverse Restrictions: []\n", + "[INFO] [1712607560.411118]: -------------------\n", + "[INFO] [1712607560.411357]: SOMA.PickingUp \n", + "[INFO] [1712607560.411606]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607560.411857]: Ancestors: {SOMA.PickingUp, DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.412101]: Subclasses: []\n", + "[INFO] [1712607560.412407]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.412943]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712607560.413219]: Direct Instances: [SOMA.picking_up]\n", + "[INFO] [1712607560.413483]: Inverse Restrictions: []\n", + "[INFO] [1712607560.413723]: -------------------\n", + "[INFO] [1712607560.413955]: SOMA.CausalEventRole \n", + "[INFO] [1712607560.414207]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712607560.414460]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.CausalEventRole, DUL.SocialObject}\n", + "[INFO] [1712607560.414706]: Subclasses: []\n", + "[INFO] [1712607560.414999]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.415490]: Instances: []\n", + "[INFO] [1712607560.415762]: Direct Instances: []\n", + "[INFO] [1712607560.416070]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607560.416312]: -------------------\n", + "[INFO] [1712607560.416545]: SOMA.EventAdjacentRole \n", + "[INFO] [1712607560.416780]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712607560.417021]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.417299]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712607560.417598]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.418267]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607560.418560]: Direct Instances: []\n", + "[INFO] [1712607560.418837]: Inverse Restrictions: []\n", + "[INFO] [1712607560.419080]: -------------------\n", + "[INFO] [1712607560.419317]: SOMA.CausedMotionTheory \n", + "[INFO] [1712607560.419567]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712607560.419834]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, SOMA.CausedMotionTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.420084]: Subclasses: []\n", + "[INFO] [1712607560.420381]: Properties: [rdf-schema.isDefinedBy, DUL.hasPart, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712607560.420862]: Instances: []\n", + "[INFO] [1712607560.421123]: Direct Instances: []\n", + "[INFO] [1712607560.421379]: Inverse Restrictions: []\n", + "[INFO] [1712607560.421613]: -------------------\n", + "[INFO] [1712607560.421844]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712607560.422070]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712607560.422313]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.422589]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712607560.422885]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.423387]: Instances: []\n", + "[INFO] [1712607560.423671]: Direct Instances: []\n", + "[INFO] [1712607560.424004]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", + "[INFO] [1712607560.424252]: -------------------\n", + "[INFO] [1712607560.424489]: SOMA.PerformerRole \n", + "[INFO] [1712607560.424723]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712607560.424972]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607560.425234]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712607560.425530]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.426044]: Instances: []\n", + "[INFO] [1712607560.426313]: Direct Instances: []\n", + "[INFO] [1712607560.426642]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607560.426886]: -------------------\n", + "[INFO] [1712607560.427120]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712607560.427361]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712607560.427621]: Ancestors: {SOMA.SourcePathGoalTheory, DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.427898]: Subclasses: []\n", + "[INFO] [1712607560.428200]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.428683]: Instances: []\n", + "[INFO] [1712607560.428960]: Direct Instances: []\n", + "[INFO] [1712607560.429269]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712607560.429519]: -------------------\n", + "[INFO] [1712607560.429754]: SOMA.RoomSurface \n", + "[INFO] [1712607560.429988]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712607560.430240]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607560.430515]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712607560.430815]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.431306]: Instances: []\n", + "[INFO] [1712607560.431572]: Direct Instances: []\n", + "[INFO] [1712607560.431838]: Inverse Restrictions: []\n", + "[INFO] [1712607560.432074]: -------------------\n", + "[INFO] [1712607560.432304]: SOMA.Channel \n", + "[INFO] [1712607560.432536]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712607560.432776]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Channel, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, SOMA.PathRole, DUL.SocialObject}\n", + "[INFO] [1712607560.433028]: Subclasses: []\n", + "[INFO] [1712607560.433324]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.433811]: Instances: []\n", + "[INFO] [1712607560.434065]: Direct Instances: []\n", + "[INFO] [1712607560.434376]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607560.434634]: -------------------\n", + "[INFO] [1712607560.434877]: SOMA.PathRole \n", + "[INFO] [1712607560.435114]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712607560.435654]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, SOMA.PathRole, DUL.SocialObject}\n", + "[INFO] [1712607560.436006]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712607560.436334]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.436845]: Instances: []\n", + "[INFO] [1712607560.437114]: Direct Instances: []\n", + "[INFO] [1712607560.437423]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712607560.437679]: -------------------\n", + "[INFO] [1712607560.437926]: SOMA.CommunicationTask \n", + "[INFO] [1712607560.438191]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712607560.438450]: Ancestors: {DUL.Object, DUL.EventType, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", + "[INFO] [1712607560.438718]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712607560.439022]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.439524]: Instances: []\n", + "[INFO] [1712607560.439794]: Direct Instances: []\n", + "[INFO] [1712607560.440255]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", + "[INFO] [1712607560.440514]: -------------------\n", + "[INFO] [1712607560.440755]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712607560.440991]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712607560.441223]: Ancestors: {SOMA.CheckingObjectPresence, SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712607560.441460]: Subclasses: []\n", + "[INFO] [1712607560.441758]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.442258]: Instances: []\n", + "[INFO] [1712607560.442523]: Direct Instances: []\n", + "[INFO] [1712607560.442776]: Inverse Restrictions: []\n", + "[INFO] [1712607560.443022]: -------------------\n", + "[INFO] [1712607560.443260]: SOMA.ChemicalProcess \n", + "[INFO] [1712607560.443492]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712607560.443727]: Ancestors: {DUL.Process, owl.Thing, DUL.Event, DUL.Entity, SOMA.ChemicalProcess}\n", + "[INFO] [1712607560.443962]: Subclasses: []\n", + "[INFO] [1712607560.444257]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.444753]: Instances: []\n", + "[INFO] [1712607560.445013]: Direct Instances: []\n", + "[INFO] [1712607560.445277]: Inverse Restrictions: []\n", + "[INFO] [1712607560.445515]: -------------------\n", + "[INFO] [1712607560.445748]: SOMA.Choice \n", + "[INFO] [1712607560.445980]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712607560.446228]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.GoalRole, DUL.Role, owl.Thing, SOMA.Choice, DUL.Concept, SOMA.ResultRole, DUL.SocialObject}\n", + "[INFO] [1712607560.446491]: Subclasses: []\n", + "[INFO] [1712607560.446795]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.447282]: Instances: []\n", + "[INFO] [1712607560.447550]: Direct Instances: []\n", + "[INFO] [1712607560.447801]: Inverse Restrictions: []\n", + "[INFO] [1712607560.448049]: -------------------\n", + "[INFO] [1712607560.448312]: SOMA.ResultRole \n", + "[INFO] [1712607560.448570]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712607560.448836]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.ResultRole, DUL.SocialObject}\n", + "[INFO] [1712607560.449113]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712607560.449457]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.450005]: Instances: []\n", + "[INFO] [1712607560.450290]: Direct Instances: []\n", + "[INFO] [1712607560.450559]: Inverse Restrictions: []\n", + "[INFO] [1712607560.450807]: -------------------\n", + "[INFO] [1712607560.451056]: SOMA.CircularCylinder \n", + "[INFO] [1712607560.451298]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712607560.451538]: Ancestors: {DUL.Abstract, SOMA.CircularCylinder, SOMA.CylinderShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607560.451777]: Subclasses: []\n", + "[INFO] [1712607560.452078]: Properties: [rdf-schema.comment, SOMA.hasRadius, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.452570]: Instances: []\n", + "[INFO] [1712607560.452835]: Direct Instances: []\n", + "[INFO] [1712607560.453098]: Inverse Restrictions: []\n", + "[INFO] [1712607560.453341]: -------------------\n", + "[INFO] [1712607560.453571]: SOMA.CylinderShape \n", + "[INFO] [1712607560.453805]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712607560.454057]: Ancestors: {DUL.Abstract, SOMA.CylinderShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607560.454315]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712607560.454606]: Properties: [rdf-schema.isDefinedBy, SOMA.hasLength, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", + "[INFO] [1712607560.455087]: Instances: []\n", + "[INFO] [1712607560.455363]: Direct Instances: []\n", + "[INFO] [1712607560.455625]: Inverse Restrictions: []\n", + "[INFO] [1712607560.455862]: -------------------\n", + "[INFO] [1712607560.456093]: SOMA.Classifier \n", + "[INFO] [1712607560.456322]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712607560.456577]: Ancestors: {DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Classifier, DUL.SocialObject}\n", + "[INFO] [1712607560.456823]: Subclasses: []\n", + "[INFO] [1712607560.457113]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.457612]: Instances: []\n", + "[INFO] [1712607560.457894]: Direct Instances: []\n", + "[INFO] [1712607560.458153]: Inverse Restrictions: []\n", + "[INFO] [1712607560.458397]: -------------------\n", + "[INFO] [1712607560.458630]: SOMA.StatisticalReasoner \n", + "[INFO] [1712607560.458856]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712607560.459096]: Ancestors: {DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.459358]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712607560.459652]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.460135]: Instances: []\n", + "[INFO] [1712607560.460411]: Direct Instances: []\n", + "[INFO] [1712607560.460669]: Inverse Restrictions: []\n", + "[INFO] [1712607560.460900]: -------------------\n", + "[INFO] [1712607560.461130]: SOMA.ClausalObject \n", + "[INFO] [1712607560.461358]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712607560.461595]: Ancestors: {DUL.Object, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607560.461861]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712607560.462157]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.462657]: Instances: []\n", + "[INFO] [1712607560.462939]: Direct Instances: []\n", + "[INFO] [1712607560.463201]: Inverse Restrictions: []\n", + "[INFO] [1712607560.463436]: -------------------\n", + "[INFO] [1712607560.463670]: SOMA.Phrase \n", + "[INFO] [1712607560.463896]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712607560.464133]: Ancestors: {DUL.Object, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607560.464393]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712607560.464681]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.465179]: Instances: []\n", + "[INFO] [1712607560.465446]: Direct Instances: []\n", + "[INFO] [1712607560.465751]: Inverse Restrictions: []\n", + "[INFO] [1712607560.466014]: -------------------\n", + "[INFO] [1712607560.466284]: SOMA.Clean \n", + "[INFO] [1712607560.466527]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712607560.466774]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, SOMA.Clean, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.467010]: Subclasses: []\n", + "[INFO] [1712607560.467305]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.467795]: Instances: []\n", + "[INFO] [1712607560.468068]: Direct Instances: []\n", + "[INFO] [1712607560.468393]: Inverse Restrictions: []\n", + "[INFO] [1712607560.468642]: -------------------\n", + "[INFO] [1712607560.468885]: SOMA.CleanlinessRegion \n", + "[INFO] [1712607560.469117]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607560.469352]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.469599]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712607560.469889]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.470389]: Instances: []\n", + "[INFO] [1712607560.470665]: Direct Instances: []\n", + "[INFO] [1712607560.470996]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712607560.471235]: -------------------\n", + "[INFO] [1712607560.471477]: SOMA.Cleaning \n", + "[INFO] [1712607560.471716]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712607560.471961]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Cleaning, DUL.EventType}\n", + "[INFO] [1712607560.472199]: Subclasses: []\n", + "[INFO] [1712607560.472486]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607560.472988]: Instances: []\n", + "[INFO] [1712607560.473256]: Direct Instances: []\n", + "[INFO] [1712607560.473508]: Inverse Restrictions: []\n", + "[INFO] [1712607560.473742]: -------------------\n", + "[INFO] [1712607560.473973]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712607560.474208]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607560.474462]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.474726]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712607560.475019]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.475511]: Instances: []\n", + "[INFO] [1712607560.475790]: Direct Instances: []\n", + "[INFO] [1712607560.476057]: Inverse Restrictions: []\n", + "[INFO] [1712607560.476296]: -------------------\n", + "[INFO] [1712607560.476530]: SOMA.Purification \n", + "[INFO] [1712607560.476776]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712607560.477031]: Ancestors: {SOMA.Purification, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.477279]: Subclasses: []\n", + "[INFO] [1712607560.477568]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.478047]: Instances: []\n", + "[INFO] [1712607560.478334]: Direct Instances: []\n", + "[INFO] [1712607560.478637]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712607560.478880]: -------------------\n", + "[INFO] [1712607560.479115]: SOMA.Cleanliness \n", + "[INFO] [1712607560.479351]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712607560.479600]: Ancestors: {SOMA.SocialQuality, owl.Thing, SOMA.Cleanliness, DUL.Entity, DUL.Quality}\n", + "[INFO] [1712607560.479845]: Subclasses: []\n", + "[INFO] [1712607560.480137]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.480620]: Instances: []\n", + "[INFO] [1712607560.480890]: Direct Instances: []\n", + "[INFO] [1712607560.481224]: Inverse Restrictions: []\n", + "[INFO] [1712607560.481460]: -------------------\n", + "[INFO] [1712607560.481705]: SOMA.SocialQuality \n", + "[INFO] [1712607560.481942]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712607560.482183]: Ancestors: {owl.Thing, SOMA.SocialQuality, DUL.Entity, DUL.Quality}\n", + "[INFO] [1712607560.482441]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712607560.482730]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.483227]: Instances: []\n", + "[INFO] [1712607560.483494]: Direct Instances: []\n", + "[INFO] [1712607560.483753]: Inverse Restrictions: []\n", + "[INFO] [1712607560.483988]: -------------------\n", + "[INFO] [1712607560.484226]: SOMA.Client-Server_Specification \n", + "[INFO] [1712607560.484469]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712607560.484709]: Ancestors: {DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, SOMA.Client-Server_Specification, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607560.484947]: Subclasses: []\n", + "[INFO] [1712607560.485238]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole]\n", + "[INFO] [1712607560.485739]: Instances: []\n", + "[INFO] [1712607560.486007]: Direct Instances: []\n", + "[INFO] [1712607560.486330]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712607560.486570]: -------------------\n", + "[INFO] [1712607560.486802]: SOMA.ClientRole \n", + "[INFO] [1712607560.487041]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712607560.487295]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.ClientRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.487540]: Subclasses: []\n", + "[INFO] [1712607560.487829]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.488305]: Instances: []\n", + "[INFO] [1712607560.488580]: Direct Instances: []\n", + "[INFO] [1712607560.488888]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712607560.489131]: -------------------\n", + "[INFO] [1712607560.489363]: SOMA.ServerRole \n", + "[INFO] [1712607560.489596]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712607560.489834]: Ancestors: {DUL.Object, SOMA.ServerRole, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.490083]: Subclasses: []\n", + "[INFO] [1712607560.490384]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.490867]: Instances: []\n", + "[INFO] [1712607560.491126]: Direct Instances: []\n", + "[INFO] [1712607560.491440]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712607560.491677]: -------------------\n", + "[INFO] [1712607560.491910]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712607560.492136]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607560.492370]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.492636]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712607560.492936]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.493422]: Instances: []\n", + "[INFO] [1712607560.493674]: Direct Instances: []\n", + "[INFO] [1712607560.493936]: Inverse Restrictions: []\n", + "[INFO] [1712607560.494175]: -------------------\n", + "[INFO] [1712607560.494407]: SOMA.Closing \n", + "[INFO] [1712607560.494633]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607560.494876]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Closing, DUL.EventType}\n", + "[INFO] [1712607560.495119]: Subclasses: []\n", + "[INFO] [1712607560.495414]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.495909]: Instances: []\n", + "[INFO] [1712607560.496171]: Direct Instances: []\n", + "[INFO] [1712607560.496418]: Inverse Restrictions: []\n", + "[INFO] [1712607560.496646]: -------------------\n", + "[INFO] [1712607560.496873]: SOMA.Delivering \n", + "[INFO] [1712607560.497106]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712607560.497364]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.Delivering, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.497621]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712607560.497920]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607560.498407]: Instances: []\n", + "[INFO] [1712607560.498680]: Direct Instances: []\n", + "[INFO] [1712607560.498946]: Inverse Restrictions: []\n", + "[INFO] [1712607560.499182]: -------------------\n", + "[INFO] [1712607560.499416]: SOMA.Fetching \n", + "[INFO] [1712607560.499644]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712607560.499886]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, SOMA.Fetching, owl.Thing, SOMA.PhysicalTask, SOMA.PhysicalAcquiring, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.500139]: Subclasses: []\n", + "[INFO] [1712607560.500440]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.500917]: Instances: []\n", + "[INFO] [1712607560.501193]: Direct Instances: []\n", + "[INFO] [1712607560.501455]: Inverse Restrictions: []\n", + "[INFO] [1712607560.501690]: -------------------\n", + "[INFO] [1712607560.501922]: SOMA.Lifting \n", + "[INFO] [1712607560.502152]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607560.502390]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Lifting, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.502636]: Subclasses: []\n", + "[INFO] [1712607560.502939]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.503417]: Instances: []\n", + "[INFO] [1712607560.503664]: Direct Instances: []\n", + "[INFO] [1712607560.503923]: Inverse Restrictions: []\n", + "[INFO] [1712607560.504158]: -------------------\n", + "[INFO] [1712607560.504388]: SOMA.Opening \n", + "[INFO] [1712607560.504614]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607560.504850]: Ancestors: {DUL.Object, SOMA.Opening, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.505100]: Subclasses: []\n", + "[INFO] [1712607560.505400]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.505875]: Instances: []\n", + "[INFO] [1712607560.506148]: Direct Instances: []\n", + "[INFO] [1712607560.506595]: Inverse Restrictions: []\n", + "[INFO] [1712607560.506959]: -------------------\n", + "[INFO] [1712607560.507312]: SOMA.Pulling \n", + "[INFO] [1712607560.507660]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607560.507925]: Ancestors: {SOMA.Pulling, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.508185]: Subclasses: []\n", + "[INFO] [1712607560.508489]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.509098]: Instances: []\n", + "[INFO] [1712607560.509394]: Direct Instances: []\n", + "[INFO] [1712607560.509775]: Inverse Restrictions: []\n", + "[INFO] [1712607560.510033]: -------------------\n", + "[INFO] [1712607560.510281]: SOMA.Pushing \n", + "[INFO] [1712607560.510520]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607560.510774]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", + "[INFO] [1712607560.511030]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712607560.511327]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.511808]: Instances: []\n", + "[INFO] [1712607560.512080]: Direct Instances: []\n", + "[INFO] [1712607560.512352]: Inverse Restrictions: []\n", + "[INFO] [1712607560.512590]: -------------------\n", + "[INFO] [1712607560.512821]: SOMA.Squeezing \n", + "[INFO] [1712607560.513051]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607560.513290]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Squeezing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.513542]: Subclasses: []\n", + "[INFO] [1712607560.513833]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.514314]: Instances: []\n", + "[INFO] [1712607560.514589]: Direct Instances: []\n", + "[INFO] [1712607560.514852]: Inverse Restrictions: []\n", + "[INFO] [1712607560.515086]: -------------------\n", + "[INFO] [1712607560.515316]: SOMA.Linkage \n", + "[INFO] [1712607560.515548]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712607560.515798]: Ancestors: {SOMA.Linkage, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.516055]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712607560.516342]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.516832]: Instances: []\n", + "[INFO] [1712607560.517100]: Direct Instances: []\n", + "[INFO] [1712607560.517356]: Inverse Restrictions: []\n", + "[INFO] [1712607560.517586]: -------------------\n", + "[INFO] [1712607560.517814]: SOMA.Clumsiness \n", + "[INFO] [1712607560.518039]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712607560.518287]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Clumsiness, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.518533]: Subclasses: []\n", + "[INFO] [1712607560.518821]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.519293]: Instances: []\n", + "[INFO] [1712607560.519569]: Direct Instances: []\n", + "[INFO] [1712607560.519822]: Inverse Restrictions: []\n", + "[INFO] [1712607560.520056]: -------------------\n", + "[INFO] [1712607560.520285]: SOMA.CognitiveAgent \n", + "[INFO] [1712607560.520510]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712607560.520759]: Ancestors: {DUL.Agent, DUL.Object, owl.Thing, SOMA.CognitiveAgent, DUL.Entity}\n", + "[INFO] [1712607560.521007]: Subclasses: []\n", + "[INFO] [1712607560.521306]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.521787]: Instances: []\n", + "[INFO] [1712607560.522059]: Direct Instances: []\n", + "[INFO] [1712607560.522318]: Inverse Restrictions: []\n", + "[INFO] [1712607560.522553]: -------------------\n", + "[INFO] [1712607560.522784]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712607560.523009]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712607560.523239]: Ancestors: {DUL.Agent, DUL.Object, SOMA.SubCognitiveAgent, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607560.523484]: Subclasses: []\n", + "[INFO] [1712607560.523774]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.524255]: Instances: []\n", + "[INFO] [1712607560.524529]: Direct Instances: []\n", + "[INFO] [1712607560.524789]: Inverse Restrictions: []\n", + "[INFO] [1712607560.525023]: -------------------\n", + "[INFO] [1712607560.525253]: SOMA.Collision \n", + "[INFO] [1712607560.525479]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712607560.525716]: Ancestors: {DUL.Object, SOMA.Collision, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.525965]: Subclasses: []\n", + "[INFO] [1712607560.526326]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.526868]: Instances: []\n", + "[INFO] [1712607560.527161]: Direct Instances: []\n", + "[INFO] [1712607560.527441]: Inverse Restrictions: []\n", + "[INFO] [1712607560.527734]: -------------------\n", + "[INFO] [1712607560.527985]: SOMA.Extrinsic \n", + "[INFO] [1712607560.528224]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712607560.528466]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.528724]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712607560.529040]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.529591]: Instances: []\n", + "[INFO] [1712607560.529873]: Direct Instances: []\n", + "[INFO] [1712607560.530164]: Inverse Restrictions: []\n", + "[INFO] [1712607560.530412]: -------------------\n", + "[INFO] [1712607560.530651]: SOMA.ImperativeClause \n", + "[INFO] [1712607560.530889]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712607560.531134]: Ancestors: {DUL.Object, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, SOMA.ImperativeClause, DUL.SocialObject}\n", + "[INFO] [1712607560.531391]: Subclasses: []\n", + "[INFO] [1712607560.531694]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.532177]: Instances: []\n", + "[INFO] [1712607560.532431]: Direct Instances: []\n", + "[INFO] [1712607560.532731]: Inverse Restrictions: []\n", + "[INFO] [1712607560.532977]: -------------------\n", + "[INFO] [1712607560.533211]: SOMA.CommitedObject \n", + "[INFO] [1712607560.533439]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712607560.533682]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CommitedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.533931]: Subclasses: []\n", + "[INFO] [1712607560.534226]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.534725]: Instances: []\n", + "[INFO] [1712607560.535004]: Direct Instances: []\n", + "[INFO] [1712607560.535254]: Inverse Restrictions: []\n", + "[INFO] [1712607560.535489]: -------------------\n", + "[INFO] [1712607560.535718]: SOMA.ConnectedObject \n", + "[INFO] [1712607560.535945]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.536181]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.536448]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712607560.536743]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.537226]: Instances: []\n", + "[INFO] [1712607560.537502]: Direct Instances: []\n", + "[INFO] [1712607560.537857]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712607560.538101]: -------------------\n", + "[INFO] [1712607560.538343]: SOMA.CommunicationAction \n", + "[INFO] [1712607560.538578]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712607560.538824]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.CommunicationAction, DUL.Entity}\n", + "[INFO] [1712607560.539069]: Subclasses: []\n", + "[INFO] [1712607560.539361]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.539844]: Instances: []\n", + "[INFO] [1712607560.540124]: Direct Instances: []\n", + "[INFO] [1712607560.540426]: Inverse Restrictions: []\n", + "[INFO] [1712607560.540669]: -------------------\n", + "[INFO] [1712607560.540901]: SOMA.LinguisticObject \n", + "[INFO] [1712607560.541131]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712607560.541371]: Ancestors: {DUL.Object, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607560.541633]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712607560.541926]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.542429]: Instances: []\n", + "[INFO] [1712607560.542698]: Direct Instances: []\n", + "[INFO] [1712607560.543004]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712607560.543245]: -------------------\n", + "[INFO] [1712607560.543479]: SOMA.CommunicationReport \n", + "[INFO] [1712607560.543708]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607560.543947]: Ancestors: {DUL.Object, DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.544211]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712607560.544534]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.545022]: Instances: []\n", + "[INFO] [1712607560.545284]: Direct Instances: []\n", + "[INFO] [1712607560.545546]: Inverse Restrictions: []\n", + "[INFO] [1712607560.545782]: -------------------\n", + "[INFO] [1712607560.546014]: SOMA.Receiver \n", + "[INFO] [1712607560.546248]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712607560.546489]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Receiver, SOMA.ExperiencerRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607560.546738]: Subclasses: []\n", + "[INFO] [1712607560.547029]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.547527]: Instances: []\n", + "[INFO] [1712607560.547810]: Direct Instances: []\n", + "[INFO] [1712607560.548134]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607560.548380]: -------------------\n", + "[INFO] [1712607560.548620]: SOMA.Sender \n", + "[INFO] [1712607560.548857]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712607560.549112]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.Sender, DUL.SocialObject}\n", + "[INFO] [1712607560.549357]: Subclasses: []\n", + "[INFO] [1712607560.549649]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.550136]: Instances: []\n", + "[INFO] [1712607560.550413]: Direct Instances: []\n", + "[INFO] [1712607560.550738]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607560.550976]: -------------------\n", + "[INFO] [1712607560.551208]: SOMA.CommunicationTopic \n", + "[INFO] [1712607560.551448]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712607560.551706]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.551963]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607560.552256]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.552777]: Instances: []\n", + "[INFO] [1712607560.553047]: Direct Instances: []\n", + "[INFO] [1712607560.553308]: Inverse Restrictions: []\n", + "[INFO] [1712607560.553543]: -------------------\n", + "[INFO] [1712607560.553777]: SOMA.ResourceRole \n", + "[INFO] [1712607560.554017]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607560.554291]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.554564]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712607560.554868]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.555424]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607560.555697]: Direct Instances: []\n", + "[INFO] [1712607560.555962]: Inverse Restrictions: []\n", + "[INFO] [1712607560.556195]: -------------------\n", + "[INFO] [1712607560.556422]: SOMA.Composing \n", + "[INFO] [1712607560.556651]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712607560.556888]: Ancestors: {SOMA.Composing, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.557139]: Subclasses: []\n", + "[INFO] [1712607560.557429]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.557924]: Instances: []\n", + "[INFO] [1712607560.558196]: Direct Instances: []\n", + "[INFO] [1712607560.558488]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712607560.558729]: -------------------\n", + "[INFO] [1712607560.558973]: SOMA.Computer_Language \n", + "[INFO] [1712607560.559561]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712607560.560042]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607560.560490]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712607560.560959]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.561682]: Instances: []\n", + "[INFO] [1712607560.562122]: Direct Instances: []\n", + "[INFO] [1712607560.562589]: Inverse Restrictions: []\n", + "[INFO] [1712607560.562995]: -------------------\n", + "[INFO] [1712607560.563426]: SOMA.FormalLanguage \n", + "[INFO] [1712607560.563849]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712607560.564220]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607560.564585]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607560.564976]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.565602]: Instances: []\n", + "[INFO] [1712607560.565968]: Direct Instances: []\n", + "[INFO] [1712607560.566401]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712607560.566737]: -------------------\n", + "[INFO] [1712607560.567068]: SOMA.Computer_Program \n", + "[INFO] [1712607560.567406]: Super classes: [owl.Thing]\n", + "[INFO] [1712607560.567744]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712607560.568095]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712607560.568480]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607560.569056]: Instances: []\n", + "[INFO] [1712607560.569421]: Direct Instances: []\n", + "[INFO] [1712607560.569891]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712607560.570241]: -------------------\n", + "[INFO] [1712607560.570577]: SOMA.Programming_Language \n", + "[INFO] [1712607560.570907]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712607560.571242]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.Language, SOMA.FormalLanguage, DUL.Entity, SOMA.Programming_Language, DUL.SocialObject}\n", + "[INFO] [1712607560.571602]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712607560.571986]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.572559]: Instances: []\n", + "[INFO] [1712607560.572895]: Direct Instances: []\n", + "[INFO] [1712607560.573291]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712607560.573632]: -------------------\n", + "[INFO] [1712607560.573961]: SOMA.Conclusion \n", + "[INFO] [1712607560.574291]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712607560.574628]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Conclusion, DUL.Role, SOMA.Knowledge, owl.Thing, SOMA.CreatedObject, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.574960]: Subclasses: []\n", + "[INFO] [1712607560.575334]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.575906]: Instances: []\n", + "[INFO] [1712607560.576249]: Direct Instances: []\n", + "[INFO] [1712607560.576649]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607560.576982]: -------------------\n", + "[INFO] [1712607560.577310]: SOMA.CreatedObject \n", + "[INFO] [1712607560.577630]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.577990]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.CreatedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.578332]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712607560.578704]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.579289]: Instances: []\n", + "[INFO] [1712607560.579646]: Direct Instances: []\n", + "[INFO] [1712607560.580024]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712607560.580374]: -------------------\n", + "[INFO] [1712607560.580718]: SOMA.Knowledge \n", + "[INFO] [1712607560.581044]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712607560.581372]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.581714]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712607560.582078]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.582668]: Instances: []\n", + "[INFO] [1712607560.583021]: Direct Instances: []\n", + "[INFO] [1712607560.583536]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712607560.583878]: -------------------\n", + "[INFO] [1712607560.584207]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712607560.584545]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712607560.584879]: Ancestors: {DUL.Object, DUL.Description, SOMA.ConditionalSuccedence, SOMA.Succedence, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.585204]: Subclasses: []\n", + "[INFO] [1712607560.585581]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.586179]: Instances: []\n", + "[INFO] [1712607560.586562]: Direct Instances: []\n", + "[INFO] [1712607560.586900]: Inverse Restrictions: []\n", + "[INFO] [1712607560.587224]: -------------------\n", + "[INFO] [1712607560.587544]: SOMA.Configuration \n", + "[INFO] [1712607560.587873]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712607560.588209]: Ancestors: {DUL.Object, SOMA.Configuration, DUL.Description, owl.Thing, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.588540]: Subclasses: []\n", + "[INFO] [1712607560.588917]: Properties: [rdf-schema.comment, DUL.describes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.589503]: Instances: []\n", + "[INFO] [1712607560.589854]: Direct Instances: []\n", + "[INFO] [1712607560.590189]: Inverse Restrictions: []\n", + "[INFO] [1712607560.590514]: -------------------\n", + "[INFO] [1712607560.590835]: SOMA.Connectivity \n", + "[INFO] [1712607560.591167]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712607560.591506]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.591845]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712607560.592218]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.592798]: Instances: []\n", + "[INFO] [1712607560.593140]: Direct Instances: []\n", + "[INFO] [1712607560.593521]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712607560.593861]: -------------------\n", + "[INFO] [1712607560.594195]: SOMA.ContactState \n", + "[INFO] [1712607560.594552]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712607560.594886]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ContactState, DUL.SocialObject}\n", + "[INFO] [1712607560.595222]: Subclasses: []\n", + "[INFO] [1712607560.595608]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.596188]: Instances: []\n", + "[INFO] [1712607560.596536]: Direct Instances: []\n", + "[INFO] [1712607560.596872]: Inverse Restrictions: []\n", + "[INFO] [1712607560.597203]: -------------------\n", + "[INFO] [1712607560.597533]: SOMA.Container \n", + "[INFO] [1712607560.597864]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712607560.598205]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.Container, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607560.598547]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", + "[INFO] [1712607560.598940]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.599521]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607560.599877]: Direct Instances: []\n", + "[INFO] [1712607560.600304]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712607560.600631]: -------------------\n", + "[INFO] [1712607560.600953]: SOMA.Containment \n", + "[INFO] [1712607560.601286]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712607560.601626]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", + "[INFO] [1712607560.601977]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712607560.602398]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.602961]: Instances: []\n", + "[INFO] [1712607560.603277]: Direct Instances: []\n", + "[INFO] [1712607560.603685]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712607560.603938]: -------------------\n", + "[INFO] [1712607560.604181]: SOMA.IncludedObject \n", + "[INFO] [1712607560.604417]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.604667]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.604936]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712607560.605236]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.605733]: Instances: []\n", + "[INFO] [1712607560.606021]: Direct Instances: []\n", + "[INFO] [1712607560.606324]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712607560.606565]: -------------------\n", + "[INFO] [1712607560.606802]: SOMA.ContainmentState \n", + "[INFO] [1712607560.607049]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712607560.607300]: Ancestors: {DUL.Object, DUL.Entity, SOMA.StateType, SOMA.ContainmentState, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607560.607558]: Subclasses: []\n", + "[INFO] [1712607560.607853]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.608336]: Instances: []\n", + "[INFO] [1712607560.608585]: Direct Instances: []\n", + "[INFO] [1712607560.608834]: Inverse Restrictions: []\n", + "[INFO] [1712607560.609072]: -------------------\n", + "[INFO] [1712607560.609303]: SOMA.FunctionalControl \n", + "[INFO] [1712607560.609538]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712607560.609772]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.610036]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712607560.610338]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.610823]: Instances: []\n", + "[INFO] [1712607560.611148]: Direct Instances: []\n", + "[INFO] [1712607560.611418]: Inverse Restrictions: []\n", + "[INFO] [1712607560.611654]: -------------------\n", + "[INFO] [1712607560.611886]: SOMA.ContainmentTheory \n", + "[INFO] [1712607560.612149]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712607560.612420]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.SocialObject, SOMA.ContainmentTheory}\n", + "[INFO] [1712607560.612675]: Subclasses: []\n", + "[INFO] [1712607560.612972]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.613472]: Instances: []\n", + "[INFO] [1712607560.613740]: Direct Instances: []\n", + "[INFO] [1712607560.613990]: Inverse Restrictions: []\n", + "[INFO] [1712607560.614233]: -------------------\n", + "[INFO] [1712607560.614465]: SOMA.ControlTheory \n", + "[INFO] [1712607560.614691]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712607560.614942]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.615198]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712607560.615486]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.615980]: Instances: []\n", + "[INFO] [1712607560.616264]: Direct Instances: []\n", + "[INFO] [1712607560.616528]: Inverse Restrictions: []\n", + "[INFO] [1712607560.616771]: -------------------\n", + "[INFO] [1712607560.617002]: SOMA.ContinuousJoint \n", + "[INFO] [1712607560.617232]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712607560.617472]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.ContinuousJoint, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607560.617728]: Subclasses: []\n", + "[INFO] [1712607560.618020]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.618507]: Instances: []\n", + "[INFO] [1712607560.618778]: Direct Instances: []\n", + "[INFO] [1712607560.619031]: Inverse Restrictions: []\n", + "[INFO] [1712607560.619264]: -------------------\n", + "[INFO] [1712607560.619493]: SOMA.HingeJoint \n", + "[INFO] [1712607560.619719]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712607560.619951]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607560.620213]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712607560.620503]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.620983]: Instances: []\n", + "[INFO] [1712607560.621254]: Direct Instances: []\n", + "[INFO] [1712607560.621519]: Inverse Restrictions: []\n", + "[INFO] [1712607560.621754]: -------------------\n", + "[INFO] [1712607560.621985]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712607560.622221]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712607560.622473]: Ancestors: {DUL.Object, DUL.Description, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.622734]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712607560.623029]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.623518]: Instances: []\n", + "[INFO] [1712607560.623793]: Direct Instances: []\n", + "[INFO] [1712607560.624054]: Inverse Restrictions: []\n", + "[INFO] [1712607560.624288]: -------------------\n", + "[INFO] [1712607560.624519]: SOMA.Cover \n", + "[INFO] [1712607560.624744]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712607560.624984]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, SOMA.Cover}\n", + "[INFO] [1712607560.625236]: Subclasses: []\n", + "[INFO] [1712607560.625525]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.626005]: Instances: []\n", + "[INFO] [1712607560.626261]: Direct Instances: []\n", + "[INFO] [1712607560.626555]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712607560.626802]: -------------------\n", + "[INFO] [1712607560.627040]: SOMA.Coverage \n", + "[INFO] [1712607560.627279]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712607560.627523]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.Coverage, DUL.Quality}\n", + "[INFO] [1712607560.627815]: Subclasses: []\n", + "[INFO] [1712607560.628127]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.628618]: Instances: []\n", + "[INFO] [1712607560.628889]: Direct Instances: []\n", + "[INFO] [1712607560.629179]: Inverse Restrictions: []\n", + "[INFO] [1712607560.629423]: -------------------\n", + "[INFO] [1712607560.629657]: SOMA.CoveredObject \n", + "[INFO] [1712607560.629887]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712607560.630128]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.CoveredObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.630395]: Subclasses: []\n", + "[INFO] [1712607560.630692]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.631173]: Instances: []\n", + "[INFO] [1712607560.631446]: Direct Instances: []\n", + "[INFO] [1712607560.631737]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712607560.631972]: -------------------\n", + "[INFO] [1712607560.632202]: SOMA.CoverageTheory \n", + "[INFO] [1712607560.632429]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712607560.632666]: Ancestors: {DUL.Object, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.CoverageTheory, DUL.SocialObject}\n", + "[INFO] [1712607560.632915]: Subclasses: []\n", + "[INFO] [1712607560.633207]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.633690]: Instances: []\n", + "[INFO] [1712607560.633952]: Direct Instances: []\n", + "[INFO] [1712607560.634198]: Inverse Restrictions: []\n", + "[INFO] [1712607560.634440]: -------------------\n", + "[INFO] [1712607560.634676]: SOMA.CoveringTheory \n", + "[INFO] [1712607560.634913]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712607560.635153]: Ancestors: {DUL.Object, SOMA.CoveringTheory, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.635388]: Subclasses: []\n", + "[INFO] [1712607560.635689]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.636176]: Instances: []\n", + "[INFO] [1712607560.636432]: Direct Instances: []\n", + "[INFO] [1712607560.636673]: Inverse Restrictions: []\n", + "[INFO] [1712607560.637044]: -------------------\n", + "[INFO] [1712607560.637480]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712607560.637763]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712607560.638023]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.638301]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712607560.638603]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.639118]: Instances: []\n", + "[INFO] [1712607560.639388]: Direct Instances: []\n", + "[INFO] [1712607560.639656]: Inverse Restrictions: []\n", + "[INFO] [1712607560.639892]: -------------------\n", + "[INFO] [1712607560.640125]: SOMA.CrackingTheory \n", + "[INFO] [1712607560.640373]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712607560.640641]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, SOMA.CrackingTheory, DUL.SocialObject}\n", + "[INFO] [1712607560.640891]: Subclasses: []\n", + "[INFO] [1712607560.641199]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.641684]: Instances: []\n", + "[INFO] [1712607560.641943]: Direct Instances: []\n", + "[INFO] [1712607560.642212]: Inverse Restrictions: []\n", + "[INFO] [1712607560.642450]: -------------------\n", + "[INFO] [1712607560.642682]: SOMA.Creation \n", + "[INFO] [1712607560.642913]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712607560.643152]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Creation, DUL.SocialObject}\n", + "[INFO] [1712607560.643403]: Subclasses: []\n", + "[INFO] [1712607560.643698]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.644174]: Instances: []\n", + "[INFO] [1712607560.644480]: Direct Instances: []\n", + "[INFO] [1712607560.644729]: Inverse Restrictions: []\n", + "[INFO] [1712607560.644979]: -------------------\n", + "[INFO] [1712607560.645215]: SOMA.Insertion \n", + "[INFO] [1712607560.645452]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712607560.645747]: Ancestors: {SOMA.Insertion, owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", + "[INFO] [1712607560.646075]: Subclasses: []\n", + "[INFO] [1712607560.646403]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.646901]: Instances: []\n", + "[INFO] [1712607560.647167]: Direct Instances: []\n", + "[INFO] [1712607560.647498]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712607560.647748]: -------------------\n", + "[INFO] [1712607560.647988]: SOMA.DesignedFurniture \n", + "[INFO] [1712607560.648221]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712607560.648461]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607560.648729]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712607560.649025]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.649530]: Instances: []\n", + "[INFO] [1712607560.649799]: Direct Instances: []\n", + "[INFO] [1712607560.650071]: Inverse Restrictions: []\n", + "[INFO] [1712607560.650454]: -------------------\n", + "[INFO] [1712607560.650766]: SOMA.Cuttability \n", + "[INFO] [1712607560.651046]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712607560.651332]: Ancestors: {SOMA.Cuttability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.651598]: Subclasses: []\n", + "[INFO] [1712607560.651909]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.652420]: Instances: []\n", + "[INFO] [1712607560.652688]: Direct Instances: []\n", + "[INFO] [1712607560.652940]: Inverse Restrictions: []\n", + "[INFO] [1712607560.653177]: -------------------\n", + "[INFO] [1712607560.653409]: SOMA.Tool \n", + "[INFO] [1712607560.653644]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712607560.653898]: Ancestors: {SOMA.Tool, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.654154]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712607560.654450]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.654937]: Instances: []\n", + "[INFO] [1712607560.655213]: Direct Instances: []\n", + "[INFO] [1712607560.655513]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712607560.655761]: -------------------\n", + "[INFO] [1712607560.656003]: SOMA.Cutting \n", + "[INFO] [1712607560.656235]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712607560.656485]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.656751]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712607560.657045]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.657541]: Instances: []\n", + "[INFO] [1712607560.657811]: Direct Instances: []\n", + "[INFO] [1712607560.658067]: Inverse Restrictions: []\n", + "[INFO] [1712607560.658313]: -------------------\n", + "[INFO] [1712607560.658552]: SOMA.DesignedTool \n", + "[INFO] [1712607560.658785]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712607560.659043]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607560.659297]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712607560.659599]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.660137]: Instances: []\n", + "[INFO] [1712607560.660399]: Direct Instances: []\n", + "[INFO] [1712607560.660649]: Inverse Restrictions: []\n", + "[INFO] [1712607560.660889]: -------------------\n", + "[INFO] [1712607560.661156]: SOMA.Shaping \n", + "[INFO] [1712607560.661399]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712607560.661658]: Ancestors: {SOMA.Shaping, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.661904]: Subclasses: []\n", + "[INFO] [1712607560.662202]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.662686]: Instances: []\n", + "[INFO] [1712607560.662964]: Direct Instances: []\n", + "[INFO] [1712607560.663250]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712607560.663493]: -------------------\n", + "[INFO] [1712607560.663727]: SOMA.Database \n", + "[INFO] [1712607560.663955]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607560.664217]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", + "[INFO] [1712607560.664480]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712607560.664774]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.665271]: Instances: []\n", + "[INFO] [1712607560.665555]: Direct Instances: []\n", + "[INFO] [1712607560.665828]: Inverse Restrictions: []\n", + "[INFO] [1712607560.666072]: -------------------\n", + "[INFO] [1712607560.666323]: SOMA.SoftwareRole \n", + "[INFO] [1712607560.666561]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712607560.666801]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.667073]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712607560.667375]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.667888]: Instances: []\n", + "[INFO] [1712607560.668162]: Direct Instances: []\n", + "[INFO] [1712607560.668468]: Inverse Restrictions: []\n", + "[INFO] [1712607560.668705]: -------------------\n", + "[INFO] [1712607560.668936]: SOMA.Deciding \n", + "[INFO] [1712607560.669165]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607560.669401]: Ancestors: {owl.Thing, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712607560.669667]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712607560.669961]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.670465]: Instances: []\n", + "[INFO] [1712607560.670727]: Direct Instances: []\n", + "[INFO] [1712607560.670991]: Inverse Restrictions: []\n", + "[INFO] [1712607560.671226]: -------------------\n", + "[INFO] [1712607560.671460]: SOMA.DerivingInformation \n", + "[INFO] [1712607560.671700]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712607560.671948]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712607560.672215]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712607560.672509]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712607560.673016]: Instances: []\n", + "[INFO] [1712607560.673303]: Direct Instances: []\n", + "[INFO] [1712607560.673574]: Inverse Restrictions: []\n", + "[INFO] [1712607560.673812]: -------------------\n", + "[INFO] [1712607560.674046]: SOMA.DeductiveReasoning \n", + "[INFO] [1712607560.674291]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712607560.674542]: Ancestors: {SOMA.DeductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607560.674798]: Subclasses: []\n", + "[INFO] [1712607560.675089]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.675585]: Instances: []\n", + "[INFO] [1712607560.675845]: Direct Instances: []\n", + "[INFO] [1712607560.676092]: Inverse Restrictions: []\n", + "[INFO] [1712607560.676322]: -------------------\n", + "[INFO] [1712607560.676550]: SOMA.Deformation \n", + "[INFO] [1712607560.676794]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712607560.677039]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, SOMA.Deformation, DUL.EventType}\n", + "[INFO] [1712607560.677277]: Subclasses: []\n", + "[INFO] [1712607560.677573]: Properties: [SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.678120]: Instances: []\n", + "[INFO] [1712607560.678550]: Direct Instances: []\n", + "[INFO] [1712607560.678883]: Inverse Restrictions: []\n", + "[INFO] [1712607560.679172]: -------------------\n", + "[INFO] [1712607560.679429]: SOMA.ShapedObject \n", + "[INFO] [1712607560.679691]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712607560.679950]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ShapedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.680200]: Subclasses: []\n", + "[INFO] [1712607560.680514]: Properties: [SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.681015]: Instances: []\n", + "[INFO] [1712607560.681279]: Direct Instances: []\n", + "[INFO] [1712607560.681599]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712607560.681862]: -------------------\n", + "[INFO] [1712607560.682103]: SOMA.FluidFlow \n", + "[INFO] [1712607560.682353]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712607560.682605]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.FluidFlow, SOMA.Motion}\n", + "[INFO] [1712607560.682846]: Subclasses: []\n", + "[INFO] [1712607560.683140]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.683639]: Instances: []\n", + "[INFO] [1712607560.683897]: Direct Instances: []\n", + "[INFO] [1712607560.684154]: Inverse Restrictions: []\n", + "[INFO] [1712607560.684385]: -------------------\n", + "[INFO] [1712607560.684615]: SOMA.Shifting \n", + "[INFO] [1712607560.684862]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712607560.685116]: Ancestors: {SOMA.Shifting, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.685362]: Subclasses: []\n", + "[INFO] [1712607560.685652]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.686153]: Instances: []\n", + "[INFO] [1712607560.686436]: Direct Instances: []\n", + "[INFO] [1712607560.686756]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712607560.686994]: -------------------\n", + "[INFO] [1712607560.687226]: SOMA.DependentPlace \n", + "[INFO] [1712607560.687466]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712607560.687721]: Ancestors: {DUL.Object, owl.Thing, DUL.Entity, SOMA.DependentPlace, SOMA.Feature}\n", + "[INFO] [1712607560.687966]: Subclasses: []\n", + "[INFO] [1712607560.688258]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.688735]: Instances: []\n", + "[INFO] [1712607560.689003]: Direct Instances: []\n", + "[INFO] [1712607560.689261]: Inverse Restrictions: []\n", + "[INFO] [1712607560.689493]: -------------------\n", + "[INFO] [1712607560.689723]: SOMA.Deposit \n", + "[INFO] [1712607560.689953]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712607560.690206]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Deposit, DUL.SocialObject}\n", + "[INFO] [1712607560.690454]: Subclasses: []\n", + "[INFO] [1712607560.690739]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.691215]: Instances: []\n", + "[INFO] [1712607560.691494]: Direct Instances: []\n", + "[INFO] [1712607560.691794]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712607560.692031]: -------------------\n", + "[INFO] [1712607560.692261]: SOMA.DepositedObject \n", + "[INFO] [1712607560.692488]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.692728]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.DepositedObject, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.692980]: Subclasses: []\n", + "[INFO] [1712607560.693271]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.693751]: Instances: []\n", + "[INFO] [1712607560.694020]: Direct Instances: []\n", + "[INFO] [1712607560.694332]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712607560.694594]: -------------------\n", + "[INFO] [1712607560.694827]: SOMA.InformationAcquisition \n", + "[INFO] [1712607560.695053]: Super classes: [owl.Thing]\n", + "[INFO] [1712607560.695284]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712607560.695575]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712607560.695879]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712607560.696409]: Instances: []\n", + "[INFO] [1712607560.696683]: Direct Instances: []\n", + "[INFO] [1712607560.696990]: Inverse Restrictions: []\n", + "[INFO] [1712607560.697225]: -------------------\n", + "[INFO] [1712607560.697453]: SOMA.Premise \n", + "[INFO] [1712607560.697681]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712607560.697932]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Premise, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.698178]: Subclasses: []\n", + "[INFO] [1712607560.698468]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.698950]: Instances: []\n", + "[INFO] [1712607560.699222]: Direct Instances: []\n", + "[INFO] [1712607560.699538]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607560.699779]: -------------------\n", + "[INFO] [1712607560.700011]: SOMA.FunctionalPart \n", + "[INFO] [1712607560.700248]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712607560.700497]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607560.700757]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712607560.701045]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.701576]: Instances: []\n", + "[INFO] [1712607560.701858]: Direct Instances: []\n", + "[INFO] [1712607560.702122]: Inverse Restrictions: []\n", + "[INFO] [1712607560.702362]: -------------------\n", + "[INFO] [1712607560.702593]: SOMA.Graspability \n", + "[INFO] [1712607560.702822]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712607560.703082]: Ancestors: {SOMA.Graspability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.703330]: Subclasses: []\n", + "[INFO] [1712607560.703626]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.704114]: Instances: []\n", + "[INFO] [1712607560.704392]: Direct Instances: []\n", + "[INFO] [1712607560.704679]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712607560.704918]: -------------------\n", + "[INFO] [1712607560.705149]: SOMA.Destination \n", + "[INFO] [1712607560.705377]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712607560.705614]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.705879]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712607560.706180]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.706673]: Instances: []\n", + "[INFO] [1712607560.706930]: Direct Instances: []\n", + "[INFO] [1712607560.707257]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712607560.707495]: -------------------\n", + "[INFO] [1712607560.707726]: SOMA.Location \n", + "[INFO] [1712607560.707952]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712607560.708204]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.708460]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712607560.708746]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.709232]: Instances: []\n", + "[INFO] [1712607560.709499]: Direct Instances: []\n", + "[INFO] [1712607560.709760]: Inverse Restrictions: []\n", + "[INFO] [1712607560.709991]: -------------------\n", + "[INFO] [1712607560.710223]: SOMA.DestroyedObject \n", + "[INFO] [1712607560.710450]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.710702]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.DestroyedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.710952]: Subclasses: []\n", + "[INFO] [1712607560.711260]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.711746]: Instances: []\n", + "[INFO] [1712607560.712024]: Direct Instances: []\n", + "[INFO] [1712607560.712332]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712607560.712582]: -------------------\n", + "[INFO] [1712607560.712817]: SOMA.Destruction \n", + "[INFO] [1712607560.713051]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712607560.713300]: Ancestors: {DUL.Object, DUL.EventType, SOMA.Destruction, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.713549]: Subclasses: []\n", + "[INFO] [1712607560.713844]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.714326]: Instances: []\n", + "[INFO] [1712607560.714605]: Direct Instances: []\n", + "[INFO] [1712607560.714862]: Inverse Restrictions: []\n", + "[INFO] [1712607560.715096]: -------------------\n", + "[INFO] [1712607560.715328]: SOMA.DetectedObject \n", + "[INFO] [1712607560.715557]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.715807]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.DetectedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.716050]: Subclasses: []\n", + "[INFO] [1712607560.716343]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.716823]: Instances: []\n", + "[INFO] [1712607560.717095]: Direct Instances: []\n", + "[INFO] [1712607560.717340]: Inverse Restrictions: []\n", + "[INFO] [1712607560.717570]: -------------------\n", + "[INFO] [1712607560.717795]: SOMA.DeviceState \n", + "[INFO] [1712607560.718019]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607560.718419]: Ancestors: {SOMA.DeviceState, SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607560.718862]: Subclasses: []\n", + "[INFO] [1712607560.719301]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.719917]: Instances: []\n", + "[INFO] [1712607560.720301]: Direct Instances: []\n", + "[INFO] [1712607560.720587]: Inverse Restrictions: []\n", + "[INFO] [1712607560.720838]: -------------------\n", + "[INFO] [1712607560.721079]: SOMA.DeviceStateRange \n", + "[INFO] [1712607560.721316]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607560.721555]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.721809]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712607560.722129]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.722636]: Instances: []\n", + "[INFO] [1712607560.722897]: Direct Instances: []\n", + "[INFO] [1712607560.723156]: Inverse Restrictions: []\n", + "[INFO] [1712607560.723384]: -------------------\n", + "[INFO] [1712607560.723612]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712607560.723848]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712607560.724087]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceTurnedOff, DUL.Region}\n", + "[INFO] [1712607560.724334]: Subclasses: []\n", + "[INFO] [1712607560.724629]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.725112]: Instances: []\n", + "[INFO] [1712607560.725364]: Direct Instances: []\n", + "[INFO] [1712607560.725651]: Inverse Restrictions: []\n", + "[INFO] [1712607560.725895]: -------------------\n", + "[INFO] [1712607560.726135]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712607560.726366]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712607560.726601]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceTurnedOn, DUL.Region}\n", + "[INFO] [1712607560.726837]: Subclasses: []\n", + "[INFO] [1712607560.727118]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.727610]: Instances: []\n", + "[INFO] [1712607560.727914]: Direct Instances: []\n", + "[INFO] [1712607560.728219]: Inverse Restrictions: []\n", + "[INFO] [1712607560.728458]: -------------------\n", + "[INFO] [1712607560.728692]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712607560.728939]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712607560.729179]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, owl.Thing, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.729446]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712607560.729734]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.730227]: Instances: []\n", + "[INFO] [1712607560.730483]: Direct Instances: []\n", + "[INFO] [1712607560.730740]: Inverse Restrictions: []\n", + "[INFO] [1712607560.730978]: -------------------\n", + "[INFO] [1712607560.731212]: SOMA.Dicing \n", + "[INFO] [1712607560.731439]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712607560.731680]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, SOMA.Dicing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.731921]: Subclasses: []\n", + "[INFO] [1712607560.732215]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.732699]: Instances: []\n", + "[INFO] [1712607560.732945]: Direct Instances: []\n", + "[INFO] [1712607560.733189]: Inverse Restrictions: []\n", + "[INFO] [1712607560.733420]: -------------------\n", + "[INFO] [1712607560.733660]: SOMA.DirectedMotion \n", + "[INFO] [1712607560.733889]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712607560.734128]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607560.734387]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712607560.734680]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.735216]: Instances: []\n", + "[INFO] [1712607560.735487]: Direct Instances: []\n", + "[INFO] [1712607560.735752]: Inverse Restrictions: []\n", + "[INFO] [1712607560.735986]: -------------------\n", + "[INFO] [1712607560.736218]: SOMA.UndirectedMotion \n", + "[INFO] [1712607560.736459]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712607560.736705]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, SOMA.UndirectedMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607560.736946]: Subclasses: []\n", + "[INFO] [1712607560.737233]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.737730]: Instances: []\n", + "[INFO] [1712607560.737989]: Direct Instances: []\n", + "[INFO] [1712607560.738246]: Inverse Restrictions: []\n", + "[INFO] [1712607560.738475]: -------------------\n", + "[INFO] [1712607560.738714]: SOMA.Dirty \n", + "[INFO] [1712607560.738945]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712607560.739180]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, SOMA.Dirty, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.739419]: Subclasses: []\n", + "[INFO] [1712607560.739701]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.740196]: Instances: []\n", + "[INFO] [1712607560.740458]: Direct Instances: []\n", + "[INFO] [1712607560.740703]: Inverse Restrictions: []\n", + "[INFO] [1712607560.740932]: -------------------\n", + "[INFO] [1712607560.741164]: SOMA.Discourse \n", + "[INFO] [1712607560.741405]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712607560.741647]: Ancestors: {DUL.Object, SOMA.Discourse, DUL.Entity, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.741891]: Subclasses: []\n", + "[INFO] [1712607560.742205]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.742800]: Instances: []\n", + "[INFO] [1712607560.743110]: Direct Instances: []\n", + "[INFO] [1712607560.743379]: Inverse Restrictions: []\n", + "[INFO] [1712607560.743625]: -------------------\n", + "[INFO] [1712607560.743865]: SOMA.Distancing \n", + "[INFO] [1712607560.744100]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712607560.744393]: Ancestors: {DUL.Object, SOMA.Distancing, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.744650]: Subclasses: []\n", + "[INFO] [1712607560.744943]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.745424]: Instances: []\n", + "[INFO] [1712607560.745703]: Direct Instances: []\n", + "[INFO] [1712607560.745950]: Inverse Restrictions: []\n", + "[INFO] [1712607560.746192]: -------------------\n", + "[INFO] [1712607560.746428]: SOMA.Dreaming \n", + "[INFO] [1712607560.746656]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607560.746894]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", + "[INFO] [1712607560.747144]: Subclasses: []\n", + "[INFO] [1712607560.747432]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.747911]: Instances: []\n", + "[INFO] [1712607560.748158]: Direct Instances: []\n", + "[INFO] [1712607560.748406]: Inverse Restrictions: []\n", + "[INFO] [1712607560.748640]: -------------------\n", + "[INFO] [1712607560.748870]: SOMA.Driving \n", + "[INFO] [1712607560.749096]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607560.749335]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, DUL.EventType, SOMA.Driving, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607560.749565]: Subclasses: []\n", + "[INFO] [1712607560.749866]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.750352]: Instances: []\n", + "[INFO] [1712607560.750629]: Direct Instances: []\n", + "[INFO] [1712607560.750884]: Inverse Restrictions: []\n", + "[INFO] [1712607560.751123]: -------------------\n", + "[INFO] [1712607560.751365]: SOMA.Flying \n", + "[INFO] [1712607560.751596]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607560.751840]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Flying, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607560.752094]: Subclasses: []\n", + "[INFO] [1712607560.752394]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.752885]: Instances: []\n", + "[INFO] [1712607560.753149]: Direct Instances: []\n", + "[INFO] [1712607560.753407]: Inverse Restrictions: []\n", + "[INFO] [1712607560.753638]: -------------------\n", + "[INFO] [1712607560.753866]: SOMA.Swimming \n", + "[INFO] [1712607560.754092]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607560.754349]: Ancestors: {DUL.Object, SOMA.DirectedMotion, SOMA.Swimming, DUL.Entity, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607560.754597]: Subclasses: []\n", + "[INFO] [1712607560.754893]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.755376]: Instances: []\n", + "[INFO] [1712607560.755650]: Direct Instances: []\n", + "[INFO] [1712607560.755914]: Inverse Restrictions: []\n", + "[INFO] [1712607560.756151]: -------------------\n", + "[INFO] [1712607560.756382]: SOMA.Walking \n", + "[INFO] [1712607560.756611]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607560.756854]: Ancestors: {SOMA.Walking, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607560.757105]: Subclasses: []\n", + "[INFO] [1712607560.757393]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.757887]: Instances: []\n", + "[INFO] [1712607560.758153]: Direct Instances: []\n", + "[INFO] [1712607560.758410]: Inverse Restrictions: []\n", + "[INFO] [1712607560.758643]: -------------------\n", + "[INFO] [1712607560.758869]: SOMA.Dropping \n", + "[INFO] [1712607560.759099]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607560.759346]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Dropping, DUL.EventType}\n", + "[INFO] [1712607560.759586]: Subclasses: []\n", + "[INFO] [1712607560.759877]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.760370]: Instances: []\n", + "[INFO] [1712607560.760931]: Direct Instances: []\n", + "[INFO] [1712607560.761494]: Inverse Restrictions: []\n", + "[INFO] [1712607560.761774]: -------------------\n", + "[INFO] [1712607560.762016]: SOMA.Placing \n", + "[INFO] [1712607560.762359]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607560.762652]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Placing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.762913]: Subclasses: []\n", + "[INFO] [1712607560.763227]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.763729]: Instances: [SOMA.placing]\n", + "[INFO] [1712607560.763995]: Direct Instances: [SOMA.placing]\n", + "[INFO] [1712607560.764251]: Inverse Restrictions: []\n", + "[INFO] [1712607560.764491]: -------------------\n", + "[INFO] [1712607560.764727]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712607560.764971]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712607560.765234]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.ESTSchemaTheory, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.765486]: Subclasses: []\n", + "[INFO] [1712607560.765787]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.766274]: Instances: []\n", + "[INFO] [1712607560.766549]: Direct Instances: []\n", + "[INFO] [1712607560.766808]: Inverse Restrictions: []\n", + "[INFO] [1712607560.767051]: -------------------\n", + "[INFO] [1712607560.767285]: SOMA.ExistingObjectRole \n", + "[INFO] [1712607560.767520]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607560.767760]: Ancestors: {DUL.Object, SOMA.ExistingObjectRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.768016]: Subclasses: []\n", + "[INFO] [1712607560.768310]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.768792]: Instances: []\n", + "[INFO] [1712607560.769040]: Direct Instances: []\n", + "[INFO] [1712607560.769329]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712607560.769571]: -------------------\n", + "[INFO] [1712607560.769801]: SOMA.Effort \n", + "[INFO] [1712607560.770029]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712607560.770395]: Ancestors: {DUL.Object, SOMA.Effort, DUL.Parameter, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.770736]: Subclasses: []\n", + "[INFO] [1712607560.771073]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.771593]: Instances: []\n", + "[INFO] [1712607560.771863]: Direct Instances: []\n", + "[INFO] [1712607560.772120]: Inverse Restrictions: []\n", + "[INFO] [1712607560.772358]: -------------------\n", + "[INFO] [1712607560.772597]: SOMA.EnclosedObject \n", + "[INFO] [1712607560.772842]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712607560.773100]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.773355]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712607560.773648]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.774144]: Instances: []\n", + "[INFO] [1712607560.774419]: Direct Instances: []\n", + "[INFO] [1712607560.774716]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712607560.774964]: -------------------\n", + "[INFO] [1712607560.775205]: SOMA.Enclosing \n", + "[INFO] [1712607560.775452]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712607560.775704]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", + "[INFO] [1712607560.775955]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712607560.776239]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.776747]: Instances: []\n", + "[INFO] [1712607560.777014]: Direct Instances: []\n", + "[INFO] [1712607560.777263]: Inverse Restrictions: []\n", + "[INFO] [1712607560.777499]: -------------------\n", + "[INFO] [1712607560.777729]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712607560.777971]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607560.778231]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.778483]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712607560.778792]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.779302]: Instances: []\n", + "[INFO] [1712607560.779570]: Direct Instances: []\n", + "[INFO] [1712607560.779827]: Inverse Restrictions: []\n", + "[INFO] [1712607560.780064]: -------------------\n", + "[INFO] [1712607560.780296]: SOMA.Manipulating \n", + "[INFO] [1712607560.780551]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712607560.780806]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.781066]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712607560.781350]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.781856]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712607560.782136]: Direct Instances: []\n", + "[INFO] [1712607560.782398]: Inverse Restrictions: []\n", + "[INFO] [1712607560.782639]: -------------------\n", + "[INFO] [1712607560.782934]: SOMA.Episode \n", + "[INFO] [1712607560.783228]: Super classes: [DUL.Situation]\n", + "[INFO] [1712607560.783501]: Ancestors: {DUL.Situation, SOMA.Episode, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607560.783765]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712607560.784058]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.784553]: Instances: []\n", + "[INFO] [1712607560.784831]: Direct Instances: []\n", + "[INFO] [1712607560.785100]: Inverse Restrictions: []\n", + "[INFO] [1712607560.785352]: -------------------\n", + "[INFO] [1712607560.785591]: SOMA.ExcludedObject \n", + "[INFO] [1712607560.785828]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.786073]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.ExcludedObject, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.786344]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712607560.786642]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.787135]: Instances: []\n", + "[INFO] [1712607560.787400]: Direct Instances: []\n", + "[INFO] [1712607560.787716]: Inverse Restrictions: []\n", + "[INFO] [1712607560.787962]: -------------------\n", + "[INFO] [1712607560.788201]: SOMA.ExecutableFile \n", + "[INFO] [1712607560.788433]: Super classes: [owl.Thing]\n", + "[INFO] [1712607560.788667]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", + "[INFO] [1712607560.788905]: Subclasses: []\n", + "[INFO] [1712607560.789203]: Properties: [DUL.realizes, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.789708]: Instances: []\n", + "[INFO] [1712607560.789969]: Direct Instances: []\n", + "[INFO] [1712607560.790342]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712607560.790641]: -------------------\n", + "[INFO] [1712607560.790907]: SOMA.Executable_Code \n", + "[INFO] [1712607560.791162]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712607560.791425]: Ancestors: {owl.Thing, SOMA.Executable_Code, SOMA.Computer_Program}\n", + "[INFO] [1712607560.791685]: Subclasses: []\n", + "[INFO] [1712607560.791997]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607560.792501]: Instances: []\n", + "[INFO] [1712607560.792761]: Direct Instances: []\n", + "[INFO] [1712607560.793088]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712607560.793352]: -------------------\n", + "[INFO] [1712607560.793608]: SOMA.ExecutableFormat \n", + "[INFO] [1712607560.793860]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712607560.794241]: Ancestors: {DUL.Object, SOMA.ExecutableFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607560.794554]: Subclasses: []\n", + "[INFO] [1712607560.794902]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.795457]: Instances: []\n", + "[INFO] [1712607560.795762]: Direct Instances: []\n", + "[INFO] [1712607560.796157]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712607560.796474]: -------------------\n", + "[INFO] [1712607560.796801]: SOMA.SchematicTheory \n", + "[INFO] [1712607560.797099]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712607560.797398]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.797704]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712607560.798080]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.798765]: Instances: []\n", + "[INFO] [1712607560.799105]: Direct Instances: []\n", + "[INFO] [1712607560.799439]: Inverse Restrictions: []\n", + "[INFO] [1712607560.799768]: -------------------\n", + "[INFO] [1712607560.800087]: SOMA.ExecutableSoftware \n", + "[INFO] [1712607560.800403]: Super classes: [owl.Thing]\n", + "[INFO] [1712607560.800719]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", + "[INFO] [1712607560.801057]: Subclasses: []\n", + "[INFO] [1712607560.801461]: Properties: [DUL.hasMember, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.802151]: Instances: []\n", + "[INFO] [1712607560.802538]: Direct Instances: []\n", + "[INFO] [1712607560.802927]: Inverse Restrictions: []\n", + "[INFO] [1712607560.803284]: -------------------\n", + "[INFO] [1712607560.803699]: SOMA.Software \n", + "[INFO] [1712607560.804065]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712607560.804415]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, DUL.Design, SOMA.Software, DUL.SocialObject}\n", + "[INFO] [1712607560.804782]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712607560.805185]: Properties: [rdf-schema.label, DUL.describes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.805822]: Instances: []\n", + "[INFO] [1712607560.806147]: Direct Instances: []\n", + "[INFO] [1712607560.806601]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607560.806913]: -------------------\n", + "[INFO] [1712607560.807200]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712607560.807470]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712607560.807724]: Ancestors: {DUL.Object, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.807984]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712607560.808297]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.808815]: Instances: []\n", + "[INFO] [1712607560.809090]: Direct Instances: []\n", + "[INFO] [1712607560.809348]: Inverse Restrictions: []\n", + "[INFO] [1712607560.809580]: -------------------\n", + "[INFO] [1712607560.809817]: SOMA.ExperiencerRole \n", + "[INFO] [1712607560.810048]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712607560.810299]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.ExperiencerRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607560.810547]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712607560.810827]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.811299]: Instances: []\n", + "[INFO] [1712607560.811565]: Direct Instances: []\n", + "[INFO] [1712607560.811818]: Inverse Restrictions: []\n", + "[INFO] [1712607560.812052]: -------------------\n", + "[INFO] [1712607560.812283]: SOMA.ExtractedObject \n", + "[INFO] [1712607560.812507]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.812748]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.ExtractedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.812998]: Subclasses: []\n", + "[INFO] [1712607560.813288]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.813776]: Instances: []\n", + "[INFO] [1712607560.814037]: Direct Instances: []\n", + "[INFO] [1712607560.814378]: Inverse Restrictions: []\n", + "[INFO] [1712607560.814695]: -------------------\n", + "[INFO] [1712607560.814976]: SOMA.PhysicalQuality \n", + "[INFO] [1712607560.815240]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712607560.815503]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Entity, DUL.Quality}\n", + "[INFO] [1712607560.815766]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712607560.816067]: Properties: [rdf-schema.comment, DUL.isQualityOf, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.816676]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712607560.816952]: Direct Instances: []\n", + "[INFO] [1712607560.817213]: Inverse Restrictions: []\n", + "[INFO] [1712607560.817465]: -------------------\n", + "[INFO] [1712607560.817713]: SOMA.FailedAttempt \n", + "[INFO] [1712607560.817955]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712607560.818207]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, SOMA.FailedAttempt, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.818451]: Subclasses: []\n", + "[INFO] [1712607560.818735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.819239]: Instances: []\n", + "[INFO] [1712607560.819507]: Direct Instances: []\n", + "[INFO] [1712607560.819757]: Inverse Restrictions: []\n", + "[INFO] [1712607560.820004]: -------------------\n", + "[INFO] [1712607560.820246]: SOMA.FaultySoftware \n", + "[INFO] [1712607560.820491]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712607560.820744]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.820989]: Subclasses: []\n", + "[INFO] [1712607560.821271]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.821754]: Instances: []\n", + "[INFO] [1712607560.822024]: Direct Instances: []\n", + "[INFO] [1712607560.822287]: Inverse Restrictions: []\n", + "[INFO] [1712607560.822527]: -------------------\n", + "[INFO] [1712607560.822760]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712607560.822993]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712607560.823236]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.823498]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712607560.823789]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.824280]: Instances: []\n", + "[INFO] [1712607560.824548]: Direct Instances: []\n", + "[INFO] [1712607560.824808]: Inverse Restrictions: []\n", + "[INFO] [1712607560.825042]: -------------------\n", + "[INFO] [1712607560.825280]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712607560.825507]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712607560.825763]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, SOMA.PhysicalAcquiring, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.826013]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712607560.826303]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.826787]: Instances: []\n", + "[INFO] [1712607560.827057]: Direct Instances: []\n", + "[INFO] [1712607560.827318]: Inverse Restrictions: []\n", + "[INFO] [1712607560.827555]: -------------------\n", + "[INFO] [1712607560.827788]: SOMA.Finger \n", + "[INFO] [1712607560.828022]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712607560.828269]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Finger}\n", + "[INFO] [1712607560.828519]: Subclasses: []\n", + "[INFO] [1712607560.828809]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isPartOf]\n", + "[INFO] [1712607560.829296]: Instances: []\n", + "[INFO] [1712607560.829560]: Direct Instances: []\n", + "[INFO] [1712607560.829810]: Inverse Restrictions: []\n", + "[INFO] [1712607560.830047]: -------------------\n", + "[INFO] [1712607560.830287]: SOMA.Hand \n", + "[INFO] [1712607560.830521]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712607560.830777]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, SOMA.Hand, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", + "[INFO] [1712607560.831021]: Subclasses: []\n", + "[INFO] [1712607560.831305]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.831780]: Instances: []\n", + "[INFO] [1712607560.832050]: Direct Instances: []\n", + "[INFO] [1712607560.832344]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712607560.832588]: -------------------\n", + "[INFO] [1712607560.832823]: SOMA.FixedJoint \n", + "[INFO] [1712607560.833071]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712607560.833321]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FixedJoint, DUL.Entity, DUL.PhysicalBody, SOMA.Joint}\n", + "[INFO] [1712607560.833563]: Subclasses: []\n", + "[INFO] [1712607560.833857]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.834370]: Instances: []\n", + "[INFO] [1712607560.834640]: Direct Instances: []\n", + "[INFO] [1712607560.834928]: Inverse Restrictions: []\n", + "[INFO] [1712607560.835171]: -------------------\n", + "[INFO] [1712607560.835408]: SOMA.MovableJoint \n", + "[INFO] [1712607560.835654]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712607560.835912]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607560.836170]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712607560.836460]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasJointState, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.836956]: Instances: []\n", + "[INFO] [1712607560.837260]: Direct Instances: []\n", + "[INFO] [1712607560.837806]: Inverse Restrictions: []\n", + "[INFO] [1712607560.838138]: -------------------\n", + "[INFO] [1712607560.838464]: SOMA.Flipping \n", + "[INFO] [1712607560.838809]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712607560.839110]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Flipping, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.839620]: Subclasses: []\n", + "[INFO] [1712607560.840159]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607560.840696]: Instances: []\n", + "[INFO] [1712607560.840974]: Direct Instances: []\n", + "[INFO] [1712607560.841237]: Inverse Restrictions: []\n", + "[INFO] [1712607560.841503]: -------------------\n", + "[INFO] [1712607560.841752]: SOMA.FloatingJoint \n", + "[INFO] [1712607560.842287]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712607560.842815]: Ancestors: {DUL.Object, SOMA.FloatingJoint, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607560.843256]: Subclasses: []\n", + "[INFO] [1712607560.843735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.844431]: Instances: []\n", + "[INFO] [1712607560.844813]: Direct Instances: []\n", + "[INFO] [1712607560.845166]: Inverse Restrictions: []\n", + "[INFO] [1712607560.845607]: -------------------\n", + "[INFO] [1712607560.846036]: SOMA.Fluid \n", + "[INFO] [1712607560.846394]: Super classes: [DUL.Substance]\n", + "[INFO] [1712607560.846686]: Ancestors: {DUL.Object, DUL.Substance, DUL.PhysicalObject, SOMA.Fluid, owl.Thing, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607560.846948]: Subclasses: []\n", + "[INFO] [1712607560.847248]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.847764]: Instances: []\n", + "[INFO] [1712607560.848035]: Direct Instances: []\n", + "[INFO] [1712607560.848293]: Inverse Restrictions: []\n", + "[INFO] [1712607560.848546]: -------------------\n", + "[INFO] [1712607560.848788]: SOMA.MovedObject \n", + "[INFO] [1712607560.849040]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712607560.849316]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, SOMA.MovedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.849573]: Subclasses: []\n", + "[INFO] [1712607560.849874]: Properties: [SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.850404]: Instances: []\n", + "[INFO] [1712607560.850714]: Direct Instances: []\n", + "[INFO] [1712607560.851190]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712607560.851494]: -------------------\n", + "[INFO] [1712607560.851793]: SOMA.Focusing \n", + "[INFO] [1712607560.852089]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712607560.852413]: Ancestors: {DUL.Object, SOMA.Focusing, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.852752]: Subclasses: []\n", + "[INFO] [1712607560.853160]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.853855]: Instances: []\n", + "[INFO] [1712607560.854251]: Direct Instances: []\n", + "[INFO] [1712607560.854634]: Inverse Restrictions: []\n", + "[INFO] [1712607560.855011]: -------------------\n", + "[INFO] [1712607560.855388]: SOMA.Foolishness \n", + "[INFO] [1712607560.855754]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712607560.856135]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.Foolishness, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.856523]: Subclasses: []\n", + "[INFO] [1712607560.856956]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.857658]: Instances: []\n", + "[INFO] [1712607560.858017]: Direct Instances: []\n", + "[INFO] [1712607560.858346]: Inverse Restrictions: []\n", + "[INFO] [1712607560.858676]: -------------------\n", + "[INFO] [1712607560.858989]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712607560.859288]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712607560.859602]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.ForgettingIncorrectInformation, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.859913]: Subclasses: []\n", + "[INFO] [1712607560.860283]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.860860]: Instances: []\n", + "[INFO] [1712607560.861176]: Direct Instances: []\n", + "[INFO] [1712607560.861465]: Inverse Restrictions: []\n", + "[INFO] [1712607560.861742]: -------------------\n", + "[INFO] [1712607560.862014]: SOMA.InformationDismissal \n", + "[INFO] [1712607560.862331]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712607560.862649]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.862989]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712607560.863322]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.863838]: Instances: []\n", + "[INFO] [1712607560.864105]: Direct Instances: []\n", + "[INFO] [1712607560.864368]: Inverse Restrictions: []\n", + "[INFO] [1712607560.864614]: -------------------\n", + "[INFO] [1712607560.864855]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712607560.865107]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712607560.865361]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.ForgettingIrrelevantInformation, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.865604]: Subclasses: []\n", + "[INFO] [1712607560.865891]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.866397]: Instances: []\n", + "[INFO] [1712607560.866663]: Direct Instances: []\n", + "[INFO] [1712607560.866918]: Inverse Restrictions: []\n", + "[INFO] [1712607560.867157]: -------------------\n", + "[INFO] [1712607560.867391]: SOMA.Language \n", + "[INFO] [1712607560.867631]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712607560.867887]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607560.868147]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712607560.868460]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.869020]: Instances: []\n", + "[INFO] [1712607560.869332]: Direct Instances: []\n", + "[INFO] [1712607560.869694]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712607560.869984]: -------------------\n", + "[INFO] [1712607560.870344]: SOMA.Item \n", + "[INFO] [1712607560.870630]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607560.870917]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.871189]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712607560.871487]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.872005]: Instances: []\n", + "[INFO] [1712607560.872283]: Direct Instances: []\n", + "[INFO] [1712607560.872633]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712607560.872886]: -------------------\n", + "[INFO] [1712607560.873130]: SOMA.FunctionalDesign \n", + "[INFO] [1712607560.873367]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712607560.873615]: Ancestors: {DUL.Object, DUL.Description, SOMA.FunctionalDesign, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607560.873874]: Subclasses: []\n", + "[INFO] [1712607560.874170]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.874674]: Instances: []\n", + "[INFO] [1712607560.874931]: Direct Instances: []\n", + "[INFO] [1712607560.875173]: Inverse Restrictions: []\n", + "[INFO] [1712607560.875409]: -------------------\n", + "[INFO] [1712607560.875650]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712607560.875889]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712607560.876127]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.876371]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712607560.876670]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.877173]: Instances: []\n", + "[INFO] [1712607560.877438]: Direct Instances: []\n", + "[INFO] [1712607560.877718]: Inverse Restrictions: []\n", + "[INFO] [1712607560.877980]: -------------------\n", + "[INFO] [1712607560.878230]: SOMA.LocatumRole \n", + "[INFO] [1712607560.878471]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607560.878745]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.LocatumRole, DUL.SocialObject}\n", + "[INFO] [1712607560.879002]: Subclasses: []\n", + "[INFO] [1712607560.879314]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.879804]: Instances: []\n", + "[INFO] [1712607560.880065]: Direct Instances: []\n", + "[INFO] [1712607560.880378]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712607560.880634]: -------------------\n", + "[INFO] [1712607560.880879]: SOMA.RelatumRole \n", + "[INFO] [1712607560.881119]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607560.881360]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.RelatumRole, DUL.SocialObject}\n", + "[INFO] [1712607560.881598]: Subclasses: []\n", + "[INFO] [1712607560.881882]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.882388]: Instances: []\n", + "[INFO] [1712607560.882650]: Direct Instances: []\n", + "[INFO] [1712607560.882967]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712607560.883211]: -------------------\n", + "[INFO] [1712607560.883445]: SOMA.GetTaskParameter \n", + "[INFO] [1712607560.883693]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712607560.883949]: Ancestors: {SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607560.884198]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712607560.884488]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.884976]: Instances: []\n", + "[INFO] [1712607560.885257]: Direct Instances: []\n", + "[INFO] [1712607560.885519]: Inverse Restrictions: []\n", + "[INFO] [1712607560.885761]: -------------------\n", + "[INFO] [1712607560.885997]: SOMA.Planning \n", + "[INFO] [1712607560.886241]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712607560.886485]: Ancestors: {SOMA.Deciding, owl.Thing, SOMA.Planning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607560.886746]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712607560.887041]: Properties: [rdf-schema.comment, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.887536]: Instances: []\n", + "[INFO] [1712607560.887791]: Direct Instances: []\n", + "[INFO] [1712607560.888055]: Inverse Restrictions: []\n", + "[INFO] [1712607560.888299]: -------------------\n", + "[INFO] [1712607560.888538]: SOMA.GraphDatabase \n", + "[INFO] [1712607560.888768]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712607560.889013]: Ancestors: {SOMA.GraphDatabase, DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", + "[INFO] [1712607560.889273]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712607560.889568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.890059]: Instances: []\n", + "[INFO] [1712607560.890312]: Direct Instances: []\n", + "[INFO] [1712607560.890553]: Inverse Restrictions: []\n", + "[INFO] [1712607560.890801]: -------------------\n", + "[INFO] [1712607560.891036]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712607560.891263]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712607560.891503]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.GraphQueryLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", + "[INFO] [1712607560.891754]: Subclasses: []\n", + "[INFO] [1712607560.892041]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.892522]: Instances: []\n", + "[INFO] [1712607560.892775]: Direct Instances: []\n", + "[INFO] [1712607560.893028]: Inverse Restrictions: []\n", + "[INFO] [1712607560.893263]: -------------------\n", + "[INFO] [1712607560.893496]: SOMA.QueryLanguage \n", + "[INFO] [1712607560.893720]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607560.893956]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", + "[INFO] [1712607560.894207]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712607560.894537]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.895036]: Instances: []\n", + "[INFO] [1712607560.895286]: Direct Instances: []\n", + "[INFO] [1712607560.895530]: Inverse Restrictions: []\n", + "[INFO] [1712607560.895801]: -------------------\n", + "[INFO] [1712607560.896054]: SOMA.GraspTransfer \n", + "[INFO] [1712607560.896291]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712607560.896539]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.GraspTransfer, owl.Thing, SOMA.Grasping, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.896776]: Subclasses: []\n", + "[INFO] [1712607560.897062]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.897562]: Instances: []\n", + "[INFO] [1712607560.897822]: Direct Instances: []\n", + "[INFO] [1712607560.898071]: Inverse Restrictions: []\n", + "[INFO] [1712607560.898312]: -------------------\n", + "[INFO] [1712607560.898543]: SOMA.Grasping \n", + "[INFO] [1712607560.898791]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607560.899045]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.Grasping, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.899292]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712607560.899589]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.900108]: Instances: []\n", + "[INFO] [1712607560.900369]: Direct Instances: []\n", + "[INFO] [1712607560.900616]: Inverse Restrictions: []\n", + "[INFO] [1712607560.900854]: -------------------\n", + "[INFO] [1712607560.901085]: SOMA.Releasing \n", + "[INFO] [1712607560.901317]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607560.901573]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.Releasing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.901819]: Subclasses: []\n", + "[INFO] [1712607560.902097]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.902588]: Instances: []\n", + "[INFO] [1712607560.902856]: Direct Instances: []\n", + "[INFO] [1712607560.903120]: Inverse Restrictions: []\n", + "[INFO] [1712607560.903356]: -------------------\n", + "[INFO] [1712607560.903588]: SOMA.GraspingMotion \n", + "[INFO] [1712607560.903824]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712607560.904066]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", + "[INFO] [1712607560.904324]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712607560.904630]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.905119]: Instances: []\n", + "[INFO] [1712607560.905370]: Direct Instances: []\n", + "[INFO] [1712607560.905658]: Inverse Restrictions: []\n", + "[INFO] [1712607560.905909]: -------------------\n", + "[INFO] [1712607560.906150]: SOMA.IntermediateGrasp \n", + "[INFO] [1712607560.906384]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712607560.906630]: Ancestors: {DUL.Object, SOMA.IntermediateGrasp, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", + "[INFO] [1712607560.906883]: Subclasses: []\n", + "[INFO] [1712607560.907185]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.907671]: Instances: []\n", + "[INFO] [1712607560.907923]: Direct Instances: []\n", + "[INFO] [1712607560.908212]: Inverse Restrictions: []\n", + "[INFO] [1712607560.908453]: -------------------\n", + "[INFO] [1712607560.908684]: SOMA.PowerGrasp \n", + "[INFO] [1712607560.908912]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712607560.909167]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.PowerGrasp, SOMA.Motion}\n", + "[INFO] [1712607560.909414]: Subclasses: []\n", + "[INFO] [1712607560.909710]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.910207]: Instances: []\n", + "[INFO] [1712607560.910469]: Direct Instances: []\n", + "[INFO] [1712607560.910759]: Inverse Restrictions: []\n", + "[INFO] [1712607560.911007]: -------------------\n", + "[INFO] [1712607560.911265]: SOMA.PrecisionGrasp \n", + "[INFO] [1712607560.911508]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712607560.911786]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.PrecisionGrasp, SOMA.Motion}\n", + "[INFO] [1712607560.912040]: Subclasses: []\n", + "[INFO] [1712607560.912343]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.912841]: Instances: []\n", + "[INFO] [1712607560.913105]: Direct Instances: []\n", + "[INFO] [1712607560.913399]: Inverse Restrictions: []\n", + "[INFO] [1712607560.913635]: -------------------\n", + "[INFO] [1712607560.913867]: SOMA.PrehensileMotion \n", + "[INFO] [1712607560.914108]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712607560.914376]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607560.914633]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712607560.914936]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.915445]: Instances: []\n", + "[INFO] [1712607560.915715]: Direct Instances: []\n", + "[INFO] [1712607560.915972]: Inverse Restrictions: []\n", + "[INFO] [1712607560.916214]: -------------------\n", + "[INFO] [1712607560.916449]: SOMA.ReleasingMotion \n", + "[INFO] [1712607560.916686]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712607560.916940]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, SOMA.ReleasingMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", + "[INFO] [1712607560.917187]: Subclasses: []\n", + "[INFO] [1712607560.917473]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.917956]: Instances: []\n", + "[INFO] [1712607560.918231]: Direct Instances: []\n", + "[INFO] [1712607560.918532]: Inverse Restrictions: []\n", + "[INFO] [1712607560.918775]: -------------------\n", + "[INFO] [1712607560.919012]: SOMA.GreenColor \n", + "[INFO] [1712607560.919250]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712607560.919508]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, SOMA.GreenColor, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607560.919757]: Subclasses: []\n", + "[INFO] [1712607560.920049]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.920535]: Instances: []\n", + "[INFO] [1712607560.920786]: Direct Instances: []\n", + "[INFO] [1712607560.921047]: Inverse Restrictions: []\n", + "[INFO] [1712607560.921285]: -------------------\n", + "[INFO] [1712607560.921519]: SOMA.Gripper \n", + "[INFO] [1712607560.921749]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712607560.921991]: Ancestors: {DUL.Object, SOMA.Gripper, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", + "[INFO] [1712607560.922249]: Subclasses: []\n", + "[INFO] [1712607560.922545]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.923036]: Instances: []\n", + "[INFO] [1712607560.923303]: Direct Instances: []\n", + "[INFO] [1712607560.923559]: Inverse Restrictions: []\n", + "[INFO] [1712607560.923796]: -------------------\n", + "[INFO] [1712607560.924028]: SOMA.PrehensileEffector \n", + "[INFO] [1712607560.924258]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712607560.924513]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", + "[INFO] [1712607560.924765]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712607560.925047]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.925533]: Instances: []\n", + "[INFO] [1712607560.925807]: Direct Instances: []\n", + "[INFO] [1712607560.926128]: Inverse Restrictions: []\n", + "[INFO] [1712607560.926379]: -------------------\n", + "[INFO] [1712607560.926617]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712607560.926853]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712607560.927106]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.HardwareDiagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.927362]: Subclasses: []\n", + "[INFO] [1712607560.927663]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.928173]: Instances: []\n", + "[INFO] [1712607560.928430]: Direct Instances: []\n", + "[INFO] [1712607560.928691]: Inverse Restrictions: []\n", + "[INFO] [1712607560.928950]: -------------------\n", + "[INFO] [1712607560.929198]: SOMA.HasQualityRegion \n", + "[INFO] [1712607560.929440]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712607560.929683]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Relation, DUL.Entity, SOMA.HasQualityRegion, DUL.SocialObject}\n", + "[INFO] [1712607560.929936]: Subclasses: []\n", + "[INFO] [1712607560.930236]: Properties: [rdf-schema.isDefinedBy, DUL.hasQuality, DUL.hasRegion, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607560.930723]: Instances: []\n", + "[INFO] [1712607560.930972]: Direct Instances: []\n", + "[INFO] [1712607560.931211]: Inverse Restrictions: []\n", + "[INFO] [1712607560.931465]: -------------------\n", + "[INFO] [1712607560.931707]: SOMA.Head \n", + "[INFO] [1712607560.931943]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712607560.932193]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.Head, DUL.PhysicalBody}\n", + "[INFO] [1712607560.932494]: Subclasses: []\n", + "[INFO] [1712607560.932813]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.933319]: Instances: []\n", + "[INFO] [1712607560.933582]: Direct Instances: []\n", + "[INFO] [1712607560.933833]: Inverse Restrictions: []\n", + "[INFO] [1712607560.934078]: -------------------\n", + "[INFO] [1712607560.934339]: SOMA.HeadMovement \n", + "[INFO] [1712607560.934592]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712607560.934848]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.HeadMovement, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", + "[INFO] [1712607560.935102]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712607560.935393]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.935905]: Instances: []\n", + "[INFO] [1712607560.936178]: Direct Instances: []\n", + "[INFO] [1712607560.936434]: Inverse Restrictions: []\n", + "[INFO] [1712607560.936675]: -------------------\n", + "[INFO] [1712607560.936915]: SOMA.HeadTurning \n", + "[INFO] [1712607560.937156]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712607560.937455]: Ancestors: {DUL.Object, DUL.Entity, DUL.EventType, SOMA.HeadTurning, owl.Thing, SOMA.ProcessType, SOMA.HeadMovement, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607560.937711]: Subclasses: []\n", + "[INFO] [1712607560.937998]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.938494]: Instances: []\n", + "[INFO] [1712607560.938824]: Direct Instances: []\n", + "[INFO] [1712607560.939079]: Inverse Restrictions: []\n", + "[INFO] [1712607560.939321]: -------------------\n", + "[INFO] [1712607560.939556]: SOMA.Holding \n", + "[INFO] [1712607560.939787]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607560.940032]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Holding, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607560.940288]: Subclasses: []\n", + "[INFO] [1712607560.940580]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.941068]: Instances: []\n", + "[INFO] [1712607560.941329]: Direct Instances: []\n", + "[INFO] [1712607560.941587]: Inverse Restrictions: []\n", + "[INFO] [1712607560.941828]: -------------------\n", + "[INFO] [1712607560.942066]: SOMA.HostRole \n", + "[INFO] [1712607560.942309]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712607560.942557]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.HostRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607560.942812]: Subclasses: []\n", + "[INFO] [1712607560.943107]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607560.943596]: Instances: []\n", + "[INFO] [1712607560.943864]: Direct Instances: []\n", + "[INFO] [1712607560.944171]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712607560.944457]: -------------------\n", + "[INFO] [1712607560.944701]: SOMA.PluginSpecification \n", + "[INFO] [1712607560.944950]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712607560.945211]: Ancestors: {SOMA.PluginSpecification, SOMA.API_Specification, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607560.945461]: Subclasses: []\n", + "[INFO] [1712607560.945760]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole]\n", + "[INFO] [1712607560.946252]: Instances: []\n", + "[INFO] [1712607560.946521]: Direct Instances: []\n", + "[INFO] [1712607560.946843]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712607560.947090]: -------------------\n", + "[INFO] [1712607560.947325]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712607560.947566]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712607560.947808]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.Language, SOMA.FormalLanguage, SOMA.Human-readable_Programming_Language, DUL.Entity, SOMA.Programming_Language, DUL.SocialObject}\n", + "[INFO] [1712607560.948062]: Subclasses: []\n", + "[INFO] [1712607560.948358]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.948859]: Instances: []\n", + "[INFO] [1712607560.949129]: Direct Instances: []\n", + "[INFO] [1712607560.949436]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712607560.949680]: -------------------\n", + "[INFO] [1712607560.949917]: SOMA.Source_Code \n", + "[INFO] [1712607560.950153]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712607560.950400]: Ancestors: {owl.Thing, SOMA.Source_Code, SOMA.Computer_Program}\n", + "[INFO] [1712607560.950653]: Subclasses: []\n", + "[INFO] [1712607560.950957]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607560.951440]: Instances: []\n", + "[INFO] [1712607560.951698]: Direct Instances: []\n", + "[INFO] [1712607560.951989]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712607560.952243]: -------------------\n", + "[INFO] [1712607560.952485]: SOMA.HumanActivityRecording \n", + "[INFO] [1712607560.952719]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712607560.952962]: Ancestors: {SOMA.RecordedEpisode, owl.Thing, SOMA.Episode, SOMA.HumanActivityRecording, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712607560.953217]: Subclasses: []\n", + "[INFO] [1712607560.953511]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.953998]: Instances: []\n", + "[INFO] [1712607560.954253]: Direct Instances: []\n", + "[INFO] [1712607560.954498]: Inverse Restrictions: []\n", + "[INFO] [1712607560.954743]: -------------------\n", + "[INFO] [1712607560.954981]: SOMA.Imagining \n", + "[INFO] [1712607560.955216]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712607560.955454]: Ancestors: {SOMA.Imagining, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712607560.955686]: Subclasses: []\n", + "[INFO] [1712607560.955963]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.956464]: Instances: []\n", + "[INFO] [1712607560.956728]: Direct Instances: []\n", + "[INFO] [1712607560.956978]: Inverse Restrictions: []\n", + "[INFO] [1712607560.957218]: -------------------\n", + "[INFO] [1712607560.957455]: SOMA.Impediment \n", + "[INFO] [1712607560.957696]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712607560.957953]: Ancestors: {SOMA.Impediment, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607560.958203]: Subclasses: []\n", + "[INFO] [1712607560.958500]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.959008]: Instances: []\n", + "[INFO] [1712607560.959278]: Direct Instances: []\n", + "[INFO] [1712607560.959533]: Inverse Restrictions: []\n", + "[INFO] [1712607560.959772]: -------------------\n", + "[INFO] [1712607560.960014]: SOMA.Obstacle \n", + "[INFO] [1712607560.960258]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712607560.960508]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Entity, SOMA.Obstacle, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607560.960750]: Subclasses: []\n", + "[INFO] [1712607560.961071]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.961582]: Instances: []\n", + "[INFO] [1712607560.961848]: Direct Instances: []\n", + "[INFO] [1712607560.962482]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712607560.962802]: -------------------\n", + "[INFO] [1712607560.963059]: SOMA.RestrictedObject \n", + "[INFO] [1712607560.963311]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712607560.963594]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.RestrictedObject, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.963875]: Subclasses: []\n", + "[INFO] [1712607560.964178]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.964677]: Instances: []\n", + "[INFO] [1712607560.964956]: Direct Instances: []\n", + "[INFO] [1712607560.965263]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712607560.965519]: -------------------\n", + "[INFO] [1712607560.965765]: SOMA.StateTransition \n", + "[INFO] [1712607560.966084]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712607560.966365]: Ancestors: {DUL.Transition, owl.Thing, DUL.Entity, DUL.Situation, SOMA.StateTransition}\n", + "[INFO] [1712607560.966642]: Subclasses: []\n", + "[INFO] [1712607560.966957]: Properties: [DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, SOMA.hasInitialScene, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712607560.967457]: Instances: []\n", + "[INFO] [1712607560.967738]: Direct Instances: []\n", + "[INFO] [1712607560.968062]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712607560.968314]: -------------------\n", + "[INFO] [1712607560.968552]: SOMA.Inability \n", + "[INFO] [1712607560.968786]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712607560.969032]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, SOMA.Inability, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.969288]: Subclasses: []\n", + "[INFO] [1712607560.969584]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.970075]: Instances: []\n", + "[INFO] [1712607560.970345]: Direct Instances: []\n", + "[INFO] [1712607560.970609]: Inverse Restrictions: []\n", + "[INFO] [1712607560.970853]: -------------------\n", + "[INFO] [1712607560.971091]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712607560.971325]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712607560.971569]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, SOMA.IncompatibleSoftware, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.971823]: Subclasses: []\n", + "[INFO] [1712607560.972118]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.972613]: Instances: []\n", + "[INFO] [1712607560.972867]: Direct Instances: []\n", + "[INFO] [1712607560.973106]: Inverse Restrictions: []\n", + "[INFO] [1712607560.973350]: -------------------\n", + "[INFO] [1712607560.973592]: SOMA.InductiveReasoning \n", + "[INFO] [1712607560.973826]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712607560.974070]: Ancestors: {SOMA.InductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607560.974317]: Subclasses: []\n", + "[INFO] [1712607560.974600]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.975104]: Instances: []\n", + "[INFO] [1712607560.975369]: Direct Instances: []\n", + "[INFO] [1712607560.975621]: Inverse Restrictions: []\n", + "[INFO] [1712607560.975865]: -------------------\n", + "[INFO] [1712607560.976097]: SOMA.Infeasibility \n", + "[INFO] [1712607560.976337]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712607560.976594]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607560.976841]: Subclasses: []\n", + "[INFO] [1712607560.977127]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.977608]: Instances: []\n", + "[INFO] [1712607560.977898]: Direct Instances: []\n", + "[INFO] [1712607560.978165]: Inverse Restrictions: []\n", + "[INFO] [1712607560.978425]: -------------------\n", + "[INFO] [1712607560.978665]: SOMA.InferenceRules \n", + "[INFO] [1712607560.978935]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712607560.979215]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.InferenceRules, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.979473]: Subclasses: []\n", + "[INFO] [1712607560.979772]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.980263]: Instances: []\n", + "[INFO] [1712607560.980536]: Direct Instances: []\n", + "[INFO] [1712607560.980797]: Inverse Restrictions: []\n", + "[INFO] [1712607560.981045]: -------------------\n", + "[INFO] [1712607560.981286]: SOMA.InformationRetrieval \n", + "[INFO] [1712607560.981534]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712607560.981791]: Ancestors: {SOMA.InformationRetrieval, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712607560.982044]: Subclasses: []\n", + "[INFO] [1712607560.982355]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712607560.982848]: Instances: []\n", + "[INFO] [1712607560.983124]: Direct Instances: []\n", + "[INFO] [1712607560.983423]: Inverse Restrictions: []\n", + "[INFO] [1712607560.983679]: -------------------\n", + "[INFO] [1712607560.983927]: SOMA.InformationStorage \n", + "[INFO] [1712607560.984188]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712607560.984445]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", + "[INFO] [1712607560.984713]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712607560.985018]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.985551]: Instances: []\n", + "[INFO] [1712607560.985811]: Direct Instances: []\n", + "[INFO] [1712607560.986061]: Inverse Restrictions: []\n", + "[INFO] [1712607560.986318]: -------------------\n", + "[INFO] [1712607560.986566]: SOMA.StoredObject \n", + "[INFO] [1712607560.986811]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712607560.987061]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.EnclosedObject, DUL.Role, owl.Thing, DUL.Concept, SOMA.StoredObject, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.987304]: Subclasses: []\n", + "[INFO] [1712607560.987589]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.988100]: Instances: []\n", + "[INFO] [1712607560.988374]: Direct Instances: []\n", + "[INFO] [1712607560.988712]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712607560.988959]: -------------------\n", + "[INFO] [1712607560.989199]: SOMA.InsertedObject \n", + "[INFO] [1712607560.989451]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712607560.989705]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Role, owl.Thing, SOMA.InsertedObject, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.989953]: Subclasses: []\n", + "[INFO] [1712607560.990251]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.990744]: Instances: []\n", + "[INFO] [1712607560.991021]: Direct Instances: []\n", + "[INFO] [1712607560.991321]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712607560.991570]: -------------------\n", + "[INFO] [1712607560.991811]: SOMA.Instructions \n", + "[INFO] [1712607560.992053]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712607560.992317]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Instructions, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607560.992567]: Subclasses: []\n", + "[INFO] [1712607560.992861]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.993349]: Instances: []\n", + "[INFO] [1712607560.993626]: Direct Instances: []\n", + "[INFO] [1712607560.993886]: Inverse Restrictions: []\n", + "[INFO] [1712607560.994129]: -------------------\n", + "[INFO] [1712607560.994420]: SOMA.Interpreting \n", + "[INFO] [1712607560.994664]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607560.994920]: Ancestors: {SOMA.Interpreting, owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", + "[INFO] [1712607560.995190]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712607560.995486]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.996017]: Instances: []\n", + "[INFO] [1712607560.996315]: Direct Instances: []\n", + "[INFO] [1712607560.996583]: Inverse Restrictions: []\n", + "[INFO] [1712607560.996827]: -------------------\n", + "[INFO] [1712607560.997068]: SOMA.InterrogativeClause \n", + "[INFO] [1712607560.997318]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712607560.997580]: Ancestors: {DUL.Object, SOMA.InterrogativeClause, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607560.997833]: Subclasses: []\n", + "[INFO] [1712607560.998127]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607560.998619]: Instances: []\n", + "[INFO] [1712607560.998877]: Direct Instances: []\n", + "[INFO] [1712607560.999184]: Inverse Restrictions: []\n", + "[INFO] [1712607560.999429]: -------------------\n", + "[INFO] [1712607560.999668]: SOMA.Introspecting \n", + "[INFO] [1712607560.999904]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712607561.000140]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition}\n", + "[INFO] [1712607561.000399]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712607561.000693]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.001184]: Instances: []\n", + "[INFO] [1712607561.001437]: Direct Instances: []\n", + "[INFO] [1712607561.001702]: Inverse Restrictions: []\n", + "[INFO] [1712607561.001948]: -------------------\n", + "[INFO] [1712607561.002186]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712607561.002431]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712607561.002686]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, SOMA.KineticFrictionAttribute, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607561.002944]: Subclasses: []\n", + "[INFO] [1712607561.003241]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.003722]: Instances: []\n", + "[INFO] [1712607561.003987]: Direct Instances: []\n", + "[INFO] [1712607561.004234]: Inverse Restrictions: []\n", + "[INFO] [1712607561.004469]: -------------------\n", + "[INFO] [1712607561.004700]: SOMA.KinoDynamicData \n", + "[INFO] [1712607561.004941]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607561.005183]: Ancestors: {DUL.Object, owl.Thing, SOMA.KinoDynamicData, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607561.005436]: Subclasses: []\n", + "[INFO] [1712607561.005728]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.006214]: Instances: []\n", + "[INFO] [1712607561.006470]: Direct Instances: []\n", + "[INFO] [1712607561.006728]: Inverse Restrictions: []\n", + "[INFO] [1712607561.006969]: -------------------\n", + "[INFO] [1712607561.007201]: SOMA.Room \n", + "[INFO] [1712607561.007431]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712607561.007673]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Room, owl.Thing, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607561.007931]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712607561.008222]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.008728]: Instances: []\n", + "[INFO] [1712607561.008981]: Direct Instances: []\n", + "[INFO] [1712607561.009222]: Inverse Restrictions: []\n", + "[INFO] [1712607561.009470]: -------------------\n", + "[INFO] [1712607561.009704]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712607561.009937]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607561.010183]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.KnowledgeRepresentationLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607561.010429]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712607561.010721]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.011242]: Instances: []\n", + "[INFO] [1712607561.011501]: Direct Instances: []\n", + "[INFO] [1712607561.011767]: Inverse Restrictions: []\n", + "[INFO] [1712607561.012012]: -------------------\n", + "[INFO] [1712607561.012274]: SOMA.Labeling \n", + "[INFO] [1712607561.012537]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712607561.012796]: Ancestors: {SOMA.Interpreting, owl.Thing, SOMA.Labeling, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607561.013050]: Subclasses: []\n", + "[INFO] [1712607561.013343]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.013852]: Instances: []\n", + "[INFO] [1712607561.014127]: Direct Instances: []\n", + "[INFO] [1712607561.014383]: Inverse Restrictions: []\n", + "[INFO] [1712607561.014620]: -------------------\n", + "[INFO] [1712607561.014854]: SOMA.Text \n", + "[INFO] [1712607561.015088]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.015338]: Ancestors: {SOMA.Text, owl.Thing}\n", + "[INFO] [1712607561.015584]: Subclasses: []\n", + "[INFO] [1712607561.015878]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607561.016370]: Instances: []\n", + "[INFO] [1712607561.016643]: Direct Instances: []\n", + "[INFO] [1712607561.016995]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712607561.017245]: -------------------\n", + "[INFO] [1712607561.017484]: SOMA.Leaning \n", + "[INFO] [1712607561.017722]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712607561.017983]: Ancestors: {DUL.Object, SOMA.Leaning, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607561.018242]: Subclasses: []\n", + "[INFO] [1712607561.018548]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.019037]: Instances: []\n", + "[INFO] [1712607561.019297]: Direct Instances: []\n", + "[INFO] [1712607561.019557]: Inverse Restrictions: []\n", + "[INFO] [1712607561.019798]: -------------------\n", + "[INFO] [1712607561.020040]: SOMA.PosturalMoving \n", + "[INFO] [1712607561.020284]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712607561.020530]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607561.020799]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712607561.021091]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.021589]: Instances: []\n", + "[INFO] [1712607561.021850]: Direct Instances: []\n", + "[INFO] [1712607561.022107]: Inverse Restrictions: []\n", + "[INFO] [1712607561.022363]: -------------------\n", + "[INFO] [1712607561.022603]: SOMA.Learning \n", + "[INFO] [1712607561.022839]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712607561.023083]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Learning, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", + "[INFO] [1712607561.023346]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712607561.023644]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.024141]: Instances: []\n", + "[INFO] [1712607561.024416]: Direct Instances: []\n", + "[INFO] [1712607561.024680]: Inverse Restrictions: []\n", + "[INFO] [1712607561.024925]: -------------------\n", + "[INFO] [1712607561.025170]: SOMA.Leg \n", + "[INFO] [1712607561.025406]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712607561.025657]: Ancestors: {DUL.Object, SOMA.Leg, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", + "[INFO] [1712607561.025918]: Subclasses: []\n", + "[INFO] [1712607561.026218]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.026714]: Instances: []\n", + "[INFO] [1712607561.026988]: Direct Instances: []\n", + "[INFO] [1712607561.027287]: Inverse Restrictions: []\n", + "[INFO] [1712607561.027534]: -------------------\n", + "[INFO] [1712607561.027808]: SOMA.LimbMotion \n", + "[INFO] [1712607561.028077]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712607561.028333]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.LimbMotion, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607561.028580]: Subclasses: []\n", + "[INFO] [1712607561.028891]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.029421]: Instances: []\n", + "[INFO] [1712607561.029692]: Direct Instances: []\n", + "[INFO] [1712607561.029949]: Inverse Restrictions: []\n", + "[INFO] [1712607561.030201]: -------------------\n", + "[INFO] [1712607561.030443]: SOMA.LinkedObject \n", + "[INFO] [1712607561.030697]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712607561.030955]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.LinkedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607561.031203]: Subclasses: []\n", + "[INFO] [1712607561.031493]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.031998]: Instances: []\n", + "[INFO] [1712607561.032261]: Direct Instances: []\n", + "[INFO] [1712607561.032602]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712607561.032854]: -------------------\n", + "[INFO] [1712607561.033099]: SOMA.LinkageState \n", + "[INFO] [1712607561.033353]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712607561.033608]: Ancestors: {DUL.Object, SOMA.LinkageState, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.033852]: Subclasses: []\n", + "[INFO] [1712607561.034149]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.034654]: Instances: []\n", + "[INFO] [1712607561.034915]: Direct Instances: []\n", + "[INFO] [1712607561.035167]: Inverse Restrictions: []\n", + "[INFO] [1712607561.035404]: -------------------\n", + "[INFO] [1712607561.035649]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712607561.035891]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712607561.036150]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.036407]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712607561.036694]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.037212]: Instances: []\n", + "[INFO] [1712607561.037481]: Direct Instances: []\n", + "[INFO] [1712607561.037744]: Inverse Restrictions: []\n", + "[INFO] [1712607561.038047]: -------------------\n", + "[INFO] [1712607561.038393]: SOMA.SpatialRelationRole \n", + "[INFO] [1712607561.038842]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712607561.039232]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.039534]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712607561.039849]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.040354]: Instances: []\n", + "[INFO] [1712607561.040629]: Direct Instances: []\n", + "[INFO] [1712607561.040892]: Inverse Restrictions: []\n", + "[INFO] [1712607561.041161]: -------------------\n", + "[INFO] [1712607561.041483]: SOMA.LocutionaryAction \n", + "[INFO] [1712607561.041755]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.042016]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", + "[INFO] [1712607561.042286]: Subclasses: []\n", + "[INFO] [1712607561.042608]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607561.043117]: Instances: []\n", + "[INFO] [1712607561.043383]: Direct Instances: []\n", + "[INFO] [1712607561.043634]: Inverse Restrictions: []\n", + "[INFO] [1712607561.043890]: -------------------\n", + "[INFO] [1712607561.044139]: SOMA.LookingAt \n", + "[INFO] [1712607561.044380]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607561.044631]: Ancestors: {DUL.Object, SOMA.LookingAt, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.044870]: Subclasses: []\n", + "[INFO] [1712607561.045161]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.045671]: Instances: []\n", + "[INFO] [1712607561.045946]: Direct Instances: []\n", + "[INFO] [1712607561.046207]: Inverse Restrictions: []\n", + "[INFO] [1712607561.046450]: -------------------\n", + "[INFO] [1712607561.046692]: SOMA.LookingFor \n", + "[INFO] [1712607561.046933]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712607561.047186]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", + "[INFO] [1712607561.047429]: Subclasses: []\n", + "[INFO] [1712607561.047721]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.048200]: Instances: []\n", + "[INFO] [1712607561.048476]: Direct Instances: []\n", + "[INFO] [1712607561.048734]: Inverse Restrictions: []\n", + "[INFO] [1712607561.048974]: -------------------\n", + "[INFO] [1712607561.049216]: SOMA.Lowering \n", + "[INFO] [1712607561.049451]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607561.049701]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Lowering, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.049967]: Subclasses: []\n", + "[INFO] [1712607561.050269]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.050769]: Instances: []\n", + "[INFO] [1712607561.051043]: Direct Instances: []\n", + "[INFO] [1712607561.051311]: Inverse Restrictions: []\n", + "[INFO] [1712607561.051564]: -------------------\n", + "[INFO] [1712607561.051810]: SOMA.PhysicalAction \n", + "[INFO] [1712607561.052063]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712607561.052346]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.PhysicalAction, DUL.Entity}\n", + "[INFO] [1712607561.052747]: Subclasses: []\n", + "[INFO] [1712607561.053126]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.053737]: Instances: []\n", + "[INFO] [1712607561.054065]: Direct Instances: []\n", + "[INFO] [1712607561.054435]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607561.054729]: -------------------\n", + "[INFO] [1712607561.055044]: SOMA.Markup_Language \n", + "[INFO] [1712607561.055316]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712607561.055598]: Ancestors: {DUL.Object, SOMA.Markup_Language, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607561.055882]: Subclasses: []\n", + "[INFO] [1712607561.056212]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.056735]: Instances: []\n", + "[INFO] [1712607561.057024]: Direct Instances: []\n", + "[INFO] [1712607561.057293]: Inverse Restrictions: []\n", + "[INFO] [1712607561.057541]: -------------------\n", + "[INFO] [1712607561.057777]: SOMA.Masterful \n", + "[INFO] [1712607561.058009]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712607561.058265]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.Masterful, owl.Thing, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607561.058519]: Subclasses: []\n", + "[INFO] [1712607561.058806]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.059297]: Instances: []\n", + "[INFO] [1712607561.059550]: Direct Instances: []\n", + "[INFO] [1712607561.059804]: Inverse Restrictions: []\n", + "[INFO] [1712607561.060049]: -------------------\n", + "[INFO] [1712607561.060288]: SOMA.Material \n", + "[INFO] [1712607561.060520]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607561.060766]: Ancestors: {SOMA.Material, SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607561.061019]: Subclasses: []\n", + "[INFO] [1712607561.061312]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.061802]: Instances: []\n", + "[INFO] [1712607561.062058]: Direct Instances: []\n", + "[INFO] [1712607561.062328]: Inverse Restrictions: []\n", + "[INFO] [1712607561.062579]: -------------------\n", + "[INFO] [1712607561.062837]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712607561.063083]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712607561.063333]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.MedicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607561.063589]: Subclasses: []\n", + "[INFO] [1712607561.063897]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.064386]: Instances: []\n", + "[INFO] [1712607561.064656]: Direct Instances: []\n", + "[INFO] [1712607561.064912]: Inverse Restrictions: []\n", + "[INFO] [1712607561.065153]: -------------------\n", + "[INFO] [1712607561.065391]: SOMA.Memorizing \n", + "[INFO] [1712607561.065624]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712607561.065891]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Learning, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, SOMA.Memorizing, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", + "[INFO] [1712607561.066146]: Subclasses: []\n", + "[INFO] [1712607561.066447]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.066943]: Instances: []\n", + "[INFO] [1712607561.067217]: Direct Instances: []\n", + "[INFO] [1712607561.067470]: Inverse Restrictions: []\n", + "[INFO] [1712607561.067712]: -------------------\n", + "[INFO] [1712607561.067948]: SOMA.MentalAction \n", + "[INFO] [1712607561.068189]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712607561.068436]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.MentalAction, DUL.Entity}\n", + "[INFO] [1712607561.068688]: Subclasses: []\n", + "[INFO] [1712607561.068986]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.069494]: Instances: []\n", + "[INFO] [1712607561.069762]: Direct Instances: []\n", + "[INFO] [1712607561.070055]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712607561.070309]: -------------------\n", + "[INFO] [1712607561.070564]: SOMA.MeshShape \n", + "[INFO] [1712607561.070825]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712607561.071081]: Ancestors: {DUL.Abstract, SOMA.MeshShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607561.071330]: Subclasses: []\n", + "[INFO] [1712607561.071631]: Properties: [SOMA.hasFilePath, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.072142]: Instances: []\n", + "[INFO] [1712607561.072413]: Direct Instances: []\n", + "[INFO] [1712607561.072667]: Inverse Restrictions: []\n", + "[INFO] [1712607561.072914]: -------------------\n", + "[INFO] [1712607561.073150]: SOMA.MeshShapeData \n", + "[INFO] [1712607561.073406]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712607561.073663]: Ancestors: {DUL.Object, SOMA.MeshShapeData, owl.Thing, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607561.073911]: Subclasses: []\n", + "[INFO] [1712607561.074204]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.074707]: Instances: []\n", + "[INFO] [1712607561.074985]: Direct Instances: []\n", + "[INFO] [1712607561.075242]: Inverse Restrictions: []\n", + "[INFO] [1712607561.075488]: -------------------\n", + "[INFO] [1712607561.075728]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712607561.075963]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712607561.076233]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.076483]: Subclasses: []\n", + "[INFO] [1712607561.076775]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.077262]: Instances: []\n", + "[INFO] [1712607561.077535]: Direct Instances: []\n", + "[INFO] [1712607561.077792]: Inverse Restrictions: []\n", + "[INFO] [1712607561.078033]: -------------------\n", + "[INFO] [1712607561.078281]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712607561.078528]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607561.078781]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.079039]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712607561.079331]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.079841]: Instances: []\n", + "[INFO] [1712607561.080112]: Direct Instances: []\n", + "[INFO] [1712607561.080369]: Inverse Restrictions: []\n", + "[INFO] [1712607561.080616]: -------------------\n", + "[INFO] [1712607561.080852]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712607561.081102]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712607561.081362]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.MetaCognitionMemoryTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.081614]: Subclasses: []\n", + "[INFO] [1712607561.081904]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.082393]: Instances: []\n", + "[INFO] [1712607561.082665]: Direct Instances: []\n", + "[INFO] [1712607561.082927]: Inverse Restrictions: []\n", + "[INFO] [1712607561.083169]: -------------------\n", + "[INFO] [1712607561.083408]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712607561.083645]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712607561.083904]: Ancestors: {DUL.Object, SOMA.MetaCognitionPlanningTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.084160]: Subclasses: []\n", + "[INFO] [1712607561.084453]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.084943]: Instances: []\n", + "[INFO] [1712607561.085215]: Direct Instances: []\n", + "[INFO] [1712607561.085484]: Inverse Restrictions: []\n", + "[INFO] [1712607561.085727]: -------------------\n", + "[INFO] [1712607561.085966]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712607561.086207]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712607561.086470]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.086742]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712607561.087039]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.087569]: Instances: []\n", + "[INFO] [1712607561.087835]: Direct Instances: []\n", + "[INFO] [1712607561.088091]: Inverse Restrictions: []\n", + "[INFO] [1712607561.088331]: -------------------\n", + "[INFO] [1712607561.088567]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712607561.088800]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712607561.089057]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.MetacognitiveControlling, DUL.EventType}\n", + "[INFO] [1712607561.089312]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712607561.089602]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.090090]: Instances: []\n", + "[INFO] [1712607561.090371]: Direct Instances: []\n", + "[INFO] [1712607561.090631]: Inverse Restrictions: []\n", + "[INFO] [1712607561.090872]: -------------------\n", + "[INFO] [1712607561.091108]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712607561.091340]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712607561.091592]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Introspecting, SOMA.MetacognitiveMonitoring}\n", + "[INFO] [1712607561.091839]: Subclasses: []\n", + "[INFO] [1712607561.092126]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.092611]: Instances: []\n", + "[INFO] [1712607561.092882]: Direct Instances: []\n", + "[INFO] [1712607561.093138]: Inverse Restrictions: []\n", + "[INFO] [1712607561.093378]: -------------------\n", + "[INFO] [1712607561.093616]: SOMA.Mixing \n", + "[INFO] [1712607561.093849]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712607561.094096]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, SOMA.Mixing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.094367]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712607561.094668]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.095164]: Instances: []\n", + "[INFO] [1712607561.095423]: Direct Instances: []\n", + "[INFO] [1712607561.095681]: Inverse Restrictions: []\n", + "[INFO] [1712607561.095920]: -------------------\n", + "[INFO] [1712607561.096157]: SOMA.MixingTheory \n", + "[INFO] [1712607561.096398]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712607561.096643]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, SOMA.MixingTheory, DUL.SocialObject}\n", + "[INFO] [1712607561.096898]: Subclasses: []\n", + "[INFO] [1712607561.097198]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607561.097690]: Instances: []\n", + "[INFO] [1712607561.097961]: Direct Instances: []\n", + "[INFO] [1712607561.098227]: Inverse Restrictions: []\n", + "[INFO] [1712607561.098473]: -------------------\n", + "[INFO] [1712607561.098708]: SOMA.MonitoringJointState \n", + "[INFO] [1712607561.098945]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712607561.099189]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.MonitoringJointState, SOMA.PhysicalTask, SOMA.Proprioceiving, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.099446]: Subclasses: []\n", + "[INFO] [1712607561.099741]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.100230]: Instances: []\n", + "[INFO] [1712607561.100504]: Direct Instances: []\n", + "[INFO] [1712607561.100759]: Inverse Restrictions: []\n", + "[INFO] [1712607561.101007]: -------------------\n", + "[INFO] [1712607561.101248]: SOMA.Proprioceiving \n", + "[INFO] [1712607561.101484]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712607561.101733]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Proprioceiving, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.102004]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712607561.102303]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.102805]: Instances: []\n", + "[INFO] [1712607561.103072]: Direct Instances: []\n", + "[INFO] [1712607561.103325]: Inverse Restrictions: []\n", + "[INFO] [1712607561.103571]: -------------------\n", + "[INFO] [1712607561.103814]: SOMA.MovingAway \n", + "[INFO] [1712607561.104050]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712607561.104300]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.MovingAway, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607561.104539]: Subclasses: []\n", + "[INFO] [1712607561.104832]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.105317]: Instances: []\n", + "[INFO] [1712607561.105579]: Direct Instances: []\n", + "[INFO] [1712607561.105840]: Inverse Restrictions: []\n", + "[INFO] [1712607561.106087]: -------------------\n", + "[INFO] [1712607561.106331]: SOMA.MovingTo \n", + "[INFO] [1712607561.106569]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712607561.106846]: Ancestors: {DUL.Object, SOMA.MovingTo, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.107111]: Subclasses: []\n", + "[INFO] [1712607561.107404]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.107891]: Instances: []\n", + "[INFO] [1712607561.108165]: Direct Instances: []\n", + "[INFO] [1712607561.108420]: Inverse Restrictions: []\n", + "[INFO] [1712607561.108661]: -------------------\n", + "[INFO] [1712607561.108896]: SOMA.Natural_Language \n", + "[INFO] [1712607561.109138]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712607561.109396]: Ancestors: {DUL.Object, SOMA.Natural_Language, SOMA.System, owl.Thing, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607561.109640]: Subclasses: []\n", + "[INFO] [1712607561.109931]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.110425]: Instances: []\n", + "[INFO] [1712607561.110700]: Direct Instances: []\n", + "[INFO] [1712607561.111017]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712607561.111264]: -------------------\n", + "[INFO] [1712607561.111501]: SOMA.Natural_Language_Text \n", + "[INFO] [1712607561.111738]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.111973]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", + "[INFO] [1712607561.112226]: Subclasses: []\n", + "[INFO] [1712607561.112528]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607561.113028]: Instances: []\n", + "[INFO] [1712607561.113304]: Direct Instances: []\n", + "[INFO] [1712607561.113599]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712607561.113847]: -------------------\n", + "[INFO] [1712607561.114091]: SOMA.Ontology \n", + "[INFO] [1712607561.114334]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712607561.114587]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", + "[INFO] [1712607561.114833]: Subclasses: []\n", + "[INFO] [1712607561.115132]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712607561.115628]: Instances: []\n", + "[INFO] [1712607561.115901]: Direct Instances: []\n", + "[INFO] [1712607561.116194]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712607561.116446]: -------------------\n", + "[INFO] [1712607561.116686]: SOMA.Ontology_Language \n", + "[INFO] [1712607561.116926]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712607561.117184]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.Language, DUL.SocialObject}\n", + "[INFO] [1712607561.117439]: Subclasses: []\n", + "[INFO] [1712607561.117737]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.118230]: Instances: []\n", + "[INFO] [1712607561.118492]: Direct Instances: []\n", + "[INFO] [1712607561.118815]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712607561.119072]: -------------------\n", + "[INFO] [1712607561.119317]: SOMA.Option \n", + "[INFO] [1712607561.119561]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712607561.119807]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Option, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.120063]: Subclasses: []\n", + "[INFO] [1712607561.120357]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.120841]: Instances: []\n", + "[INFO] [1712607561.121104]: Direct Instances: []\n", + "[INFO] [1712607561.121356]: Inverse Restrictions: []\n", + "[INFO] [1712607561.121601]: -------------------\n", + "[INFO] [1712607561.121845]: SOMA.Singleton \n", + "[INFO] [1712607561.122077]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.122320]: Ancestors: {SOMA.Singleton, owl.Thing}\n", + "[INFO] [1712607561.122568]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712607561.122865]: Properties: [rdf-schema.comment, SOMA.encapsulates, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.123366]: Instances: []\n", + "[INFO] [1712607561.123638]: Direct Instances: []\n", + "[INFO] [1712607561.123896]: Inverse Restrictions: []\n", + "[INFO] [1712607561.124138]: -------------------\n", + "[INFO] [1712607561.124372]: SOMA.Orienting \n", + "[INFO] [1712607561.124604]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712607561.124847]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Orienting, SOMA.Positioning, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.125102]: Subclasses: []\n", + "[INFO] [1712607561.125392]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.125878]: Instances: []\n", + "[INFO] [1712607561.126147]: Direct Instances: []\n", + "[INFO] [1712607561.126412]: Inverse Restrictions: []\n", + "[INFO] [1712607561.126657]: -------------------\n", + "[INFO] [1712607561.126895]: SOMA.Positioning \n", + "[INFO] [1712607561.127133]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712607561.127377]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Positioning, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.127623]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712607561.127921]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.128412]: Instances: []\n", + "[INFO] [1712607561.128684]: Direct Instances: []\n", + "[INFO] [1712607561.128941]: Inverse Restrictions: []\n", + "[INFO] [1712607561.129189]: -------------------\n", + "[INFO] [1712607561.129423]: SOMA.Origin \n", + "[INFO] [1712607561.129656]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712607561.129902]: Ancestors: {DUL.Object, SOMA.Origin, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.130162]: Subclasses: []\n", + "[INFO] [1712607561.130455]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.130942]: Instances: []\n", + "[INFO] [1712607561.131200]: Direct Instances: []\n", + "[INFO] [1712607561.131505]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712607561.131757]: -------------------\n", + "[INFO] [1712607561.131996]: SOMA.ParkingArms \n", + "[INFO] [1712607561.132231]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712607561.132482]: Ancestors: {DUL.Object, SOMA.ParkingArms, DUL.Entity, DUL.EventType, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingArmPose}\n", + "[INFO] [1712607561.132740]: Subclasses: []\n", + "[INFO] [1712607561.133036]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.133535]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712607561.133798]: Direct Instances: [SOMA.parking_arms]\n", + "[INFO] [1712607561.134056]: Inverse Restrictions: []\n", + "[INFO] [1712607561.134314]: -------------------\n", + "[INFO] [1712607561.134559]: SOMA.PhaseTransition \n", + "[INFO] [1712607561.134795]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712607561.135039]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PhaseTransition, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", + "[INFO] [1712607561.135284]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712607561.135584]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712607561.136081]: Instances: []\n", + "[INFO] [1712607561.136340]: Direct Instances: []\n", + "[INFO] [1712607561.136586]: Inverse Restrictions: []\n", + "[INFO] [1712607561.136827]: -------------------\n", + "[INFO] [1712607561.137072]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712607561.137321]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712607561.137566]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, SOMA.PhysicalAccessibility, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.137813]: Subclasses: []\n", + "[INFO] [1712607561.138143]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.138786]: Instances: []\n", + "[INFO] [1712607561.139099]: Direct Instances: []\n", + "[INFO] [1712607561.139379]: Inverse Restrictions: []\n", + "[INFO] [1712607561.139633]: -------------------\n", + "[INFO] [1712607561.140121]: SOMA.PhysicalBlockage \n", + "[INFO] [1712607561.140574]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712607561.141055]: Ancestors: {DUL.Object, SOMA.StateType, SOMA.PhysicalBlockage, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.141481]: Subclasses: []\n", + "[INFO] [1712607561.141893]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.142504]: Instances: []\n", + "[INFO] [1712607561.143011]: Direct Instances: []\n", + "[INFO] [1712607561.143439]: Inverse Restrictions: []\n", + "[INFO] [1712607561.143849]: -------------------\n", + "[INFO] [1712607561.144264]: SOMA.PhysicalExistence \n", + "[INFO] [1712607561.144689]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712607561.145043]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicalExistence, SOMA.PhysicalState}\n", + "[INFO] [1712607561.145402]: Subclasses: []\n", + "[INFO] [1712607561.145795]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.146381]: Instances: []\n", + "[INFO] [1712607561.146731]: Direct Instances: []\n", + "[INFO] [1712607561.147070]: Inverse Restrictions: []\n", + "[INFO] [1712607561.147404]: -------------------\n", + "[INFO] [1712607561.147732]: SOMA.PhysicalState \n", + "[INFO] [1712607561.148070]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712607561.148395]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicalState}\n", + "[INFO] [1712607561.148738]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712607561.149142]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607561.149770]: Instances: []\n", + "[INFO] [1712607561.150157]: Direct Instances: []\n", + "[INFO] [1712607561.150542]: Inverse Restrictions: []\n", + "[INFO] [1712607561.150919]: -------------------\n", + "[INFO] [1712607561.151292]: SOMA.PhysicsProcess \n", + "[INFO] [1712607561.151661]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712607561.152035]: Ancestors: {DUL.Process, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicsProcess}\n", + "[INFO] [1712607561.152402]: Subclasses: []\n", + "[INFO] [1712607561.152839]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607561.153484]: Instances: []\n", + "[INFO] [1712607561.153845]: Direct Instances: []\n", + "[INFO] [1712607561.154197]: Inverse Restrictions: []\n", + "[INFO] [1712607561.154489]: -------------------\n", + "[INFO] [1712607561.154735]: SOMA.PlacingTheory \n", + "[INFO] [1712607561.154974]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712607561.155214]: Ancestors: {DUL.Object, SOMA.PlacingTheory, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.155461]: Subclasses: []\n", + "[INFO] [1712607561.155758]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607561.156241]: Instances: []\n", + "[INFO] [1712607561.156498]: Direct Instances: []\n", + "[INFO] [1712607561.156744]: Inverse Restrictions: []\n", + "[INFO] [1712607561.156987]: -------------------\n", + "[INFO] [1712607561.157221]: SOMA.PlanarJoint \n", + "[INFO] [1712607561.157454]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712607561.157692]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Joint, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.PlanarJoint}\n", + "[INFO] [1712607561.157923]: Subclasses: []\n", + "[INFO] [1712607561.158207]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.158708]: Instances: []\n", + "[INFO] [1712607561.158970]: Direct Instances: []\n", + "[INFO] [1712607561.159216]: Inverse Restrictions: []\n", + "[INFO] [1712607561.159445]: -------------------\n", + "[INFO] [1712607561.159673]: SOMA.PluginRole \n", + "[INFO] [1712607561.159905]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712607561.160157]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.PluginRole, DUL.SocialObject}\n", + "[INFO] [1712607561.160400]: Subclasses: []\n", + "[INFO] [1712607561.160690]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607561.161178]: Instances: []\n", + "[INFO] [1712607561.161446]: Direct Instances: []\n", + "[INFO] [1712607561.161764]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712607561.161999]: -------------------\n", + "[INFO] [1712607561.162234]: SOMA.Pourable \n", + "[INFO] [1712607561.162474]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712607561.162735]: Ancestors: {SOMA.Pourable, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607561.163074]: Subclasses: []\n", + "[INFO] [1712607561.163657]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.164206]: Instances: []\n", + "[INFO] [1712607561.164491]: Direct Instances: []\n", + "[INFO] [1712607561.164800]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712607561.165049]: -------------------\n", + "[INFO] [1712607561.165289]: SOMA.PouredObject \n", + "[INFO] [1712607561.165520]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712607561.165759]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.PouredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607561.166020]: Subclasses: []\n", + "[INFO] [1712607561.166325]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.166820]: Instances: []\n", + "[INFO] [1712607561.167097]: Direct Instances: []\n", + "[INFO] [1712607561.167395]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712607561.167635]: -------------------\n", + "[INFO] [1712607561.167866]: SOMA.Pouring \n", + "[INFO] [1712607561.168098]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712607561.168340]: Ancestors: {DUL.Object, SOMA.Pouring, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.168606]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712607561.168900]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607561.169384]: Instances: []\n", + "[INFO] [1712607561.169637]: Direct Instances: []\n", + "[INFO] [1712607561.169888]: Inverse Restrictions: []\n", + "[INFO] [1712607561.170132]: -------------------\n", + "[INFO] [1712607561.170375]: SOMA.PouringInto \n", + "[INFO] [1712607561.170608]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712607561.170854]: Ancestors: {DUL.Object, SOMA.Pouring, DUL.Entity, DUL.EventType, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.PouringInto}\n", + "[INFO] [1712607561.171093]: Subclasses: []\n", + "[INFO] [1712607561.171405]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.171927]: Instances: []\n", + "[INFO] [1712607561.172208]: Direct Instances: []\n", + "[INFO] [1712607561.172490]: Inverse Restrictions: []\n", + "[INFO] [1712607561.172753]: -------------------\n", + "[INFO] [1712607561.173022]: SOMA.PouringOnto \n", + "[INFO] [1712607561.173308]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712607561.173599]: Ancestors: {DUL.Object, SOMA.Pouring, SOMA.PouringOnto, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.173879]: Subclasses: []\n", + "[INFO] [1712607561.174210]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.174784]: Instances: []\n", + "[INFO] [1712607561.175081]: Direct Instances: []\n", + "[INFO] [1712607561.175345]: Inverse Restrictions: []\n", + "[INFO] [1712607561.175595]: -------------------\n", + "[INFO] [1712607561.175841]: SOMA.Prediction \n", + "[INFO] [1712607561.176080]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712607561.176332]: Ancestors: {owl.Thing, SOMA.Prediction, SOMA.Prospecting, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607561.176582]: Subclasses: []\n", + "[INFO] [1712607561.176875]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.177357]: Instances: []\n", + "[INFO] [1712607561.177619]: Direct Instances: []\n", + "[INFO] [1712607561.177876]: Inverse Restrictions: []\n", + "[INFO] [1712607561.178111]: -------------------\n", + "[INFO] [1712607561.178345]: SOMA.Prospecting \n", + "[INFO] [1712607561.178573]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712607561.178819]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Prospecting, SOMA.DerivingInformation}\n", + "[INFO] [1712607561.179096]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712607561.179388]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.179874]: Instances: []\n", + "[INFO] [1712607561.180125]: Direct Instances: []\n", + "[INFO] [1712607561.180380]: Inverse Restrictions: []\n", + "[INFO] [1712607561.180625]: -------------------\n", + "[INFO] [1712607561.180860]: SOMA.Predilection \n", + "[INFO] [1712607561.181106]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712607561.181347]: Ancestors: {DUL.Object, DUL.Description, SOMA.Predilection, DUL.SocialRelation, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.181583]: Subclasses: []\n", + "[INFO] [1712607561.181882]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.182364]: Instances: []\n", + "[INFO] [1712607561.182630]: Direct Instances: []\n", + "[INFO] [1712607561.182877]: Inverse Restrictions: []\n", + "[INFO] [1712607561.183105]: -------------------\n", + "[INFO] [1712607561.183341]: SOMA.PreferenceOrder \n", + "[INFO] [1712607561.183590]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712607561.183841]: Ancestors: {DUL.Object, SOMA.PreferenceOrder, DUL.Description, DUL.SocialRelation, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.184084]: Subclasses: []\n", + "[INFO] [1712607561.184374]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.orders]\n", + "[INFO] [1712607561.184880]: Instances: []\n", + "[INFO] [1712607561.185158]: Direct Instances: []\n", + "[INFO] [1712607561.185416]: Inverse Restrictions: []\n", + "[INFO] [1712607561.185667]: -------------------\n", + "[INFO] [1712607561.185899]: SOMA.PreferenceRegion \n", + "[INFO] [1712607561.186138]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712607561.186393]: Ancestors: {DUL.Abstract, SOMA.PreferenceRegion, owl.Thing, DUL.Entity, DUL.SocialObjectAttribute, DUL.Region}\n", + "[INFO] [1712607561.186643]: Subclasses: []\n", + "[INFO] [1712607561.186935]: Properties: [rdf-schema.comment, DUL.isRegionFor, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.187414]: Instances: []\n", + "[INFO] [1712607561.187689]: Direct Instances: []\n", + "[INFO] [1712607561.187945]: Inverse Restrictions: []\n", + "[INFO] [1712607561.188178]: -------------------\n", + "[INFO] [1712607561.188410]: SOMA.PrismaticJoint \n", + "[INFO] [1712607561.188645]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712607561.188902]: Ancestors: {DUL.Object, SOMA.PrismaticJoint, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607561.189158]: Subclasses: []\n", + "[INFO] [1712607561.189449]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointLimit]\n", + "[INFO] [1712607561.189926]: Instances: []\n", + "[INFO] [1712607561.190241]: Direct Instances: []\n", + "[INFO] [1712607561.190545]: Inverse Restrictions: []\n", + "[INFO] [1712607561.190802]: -------------------\n", + "[INFO] [1712607561.191054]: SOMA.ProcessFlow \n", + "[INFO] [1712607561.191302]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712607561.191554]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, SOMA.ProcessFlow, DUL.SocialObject}\n", + "[INFO] [1712607561.191814]: Subclasses: []\n", + "[INFO] [1712607561.192116]: Properties: [SOMA.definesProcess, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.192606]: Instances: []\n", + "[INFO] [1712607561.192868]: Direct Instances: []\n", + "[INFO] [1712607561.193166]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712607561.193414]: -------------------\n", + "[INFO] [1712607561.193652]: SOMA.Progression \n", + "[INFO] [1712607561.193885]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712607561.194122]: Ancestors: {SOMA.Progression, DUL.Situation, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607561.194390]: Subclasses: []\n", + "[INFO] [1712607561.194697]: Properties: [DUL.satisfies, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.195183]: Instances: []\n", + "[INFO] [1712607561.195445]: Direct Instances: []\n", + "[INFO] [1712607561.195700]: Inverse Restrictions: []\n", + "[INFO] [1712607561.195943]: -------------------\n", + "[INFO] [1712607561.196181]: SOMA.Protector \n", + "[INFO] [1712607561.196408]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712607561.196647]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, SOMA.Protector, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607561.196900]: Subclasses: []\n", + "[INFO] [1712607561.197193]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.197687]: Instances: []\n", + "[INFO] [1712607561.197963]: Direct Instances: []\n", + "[INFO] [1712607561.198238]: Inverse Restrictions: []\n", + "[INFO] [1712607561.198493]: -------------------\n", + "[INFO] [1712607561.198910]: SOMA.ProximalTheory \n", + "[INFO] [1712607561.199301]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712607561.199714]: Ancestors: {DUL.Object, DUL.Description, DUL.Entity, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ProximalTheory, DUL.SocialObject}\n", + "[INFO] [1712607561.200115]: Subclasses: []\n", + "[INFO] [1712607561.200541]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607561.201453]: Instances: []\n", + "[INFO] [1712607561.201848]: Direct Instances: []\n", + "[INFO] [1712607561.202204]: Inverse Restrictions: []\n", + "[INFO] [1712607561.202542]: -------------------\n", + "[INFO] [1712607561.202885]: SOMA.PushingAway \n", + "[INFO] [1712607561.203227]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712607561.203574]: Ancestors: {DUL.Object, SOMA.PushingAway, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", + "[INFO] [1712607561.203910]: Subclasses: []\n", + "[INFO] [1712607561.204296]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.204862]: Instances: []\n", + "[INFO] [1712607561.205217]: Direct Instances: []\n", + "[INFO] [1712607561.205560]: Inverse Restrictions: []\n", + "[INFO] [1712607561.205889]: -------------------\n", + "[INFO] [1712607561.206214]: SOMA.PushingDown \n", + "[INFO] [1712607561.206534]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712607561.206876]: Ancestors: {SOMA.PushingDown, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", + "[INFO] [1712607561.207212]: Subclasses: []\n", + "[INFO] [1712607561.207583]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.208149]: Instances: []\n", + "[INFO] [1712607561.208504]: Direct Instances: []\n", + "[INFO] [1712607561.208842]: Inverse Restrictions: []\n", + "[INFO] [1712607561.209114]: -------------------\n", + "[INFO] [1712607561.209471]: SOMA.PuttingDown \n", + "[INFO] [1712607561.209786]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712607561.210120]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.PuttingDown, DUL.EventType}\n", + "[INFO] [1712607561.210473]: Subclasses: []\n", + "[INFO] [1712607561.210853]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.211430]: Instances: []\n", + "[INFO] [1712607561.211787]: Direct Instances: []\n", + "[INFO] [1712607561.212126]: Inverse Restrictions: []\n", + "[INFO] [1712607561.212451]: -------------------\n", + "[INFO] [1712607561.212778]: SOMA.QualityTransition \n", + "[INFO] [1712607561.213092]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712607561.213424]: Ancestors: {DUL.Transition, owl.Thing, SOMA.QualityTransition, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712607561.213756]: Subclasses: []\n", + "[INFO] [1712607561.214132]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.214709]: Instances: []\n", + "[INFO] [1712607561.215048]: Direct Instances: []\n", + "[INFO] [1712607561.215378]: Inverse Restrictions: []\n", + "[INFO] [1712607561.215711]: -------------------\n", + "[INFO] [1712607561.216033]: SOMA.Query \n", + "[INFO] [1712607561.216356]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712607561.216683]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Query, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607561.217007]: Subclasses: []\n", + "[INFO] [1712607561.217383]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.217954]: Instances: []\n", + "[INFO] [1712607561.218431]: Direct Instances: []\n", + "[INFO] [1712607561.218816]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712607561.219093]: -------------------\n", + "[INFO] [1712607561.219356]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712607561.219603]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.219848]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", + "[INFO] [1712607561.220086]: Subclasses: []\n", + "[INFO] [1712607561.220397]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.220895]: Instances: []\n", + "[INFO] [1712607561.221153]: Direct Instances: []\n", + "[INFO] [1712607561.221401]: Inverse Restrictions: []\n", + "[INFO] [1712607561.221635]: -------------------\n", + "[INFO] [1712607561.221863]: SOMA.QueryEngine \n", + "[INFO] [1712607561.222103]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607561.222354]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.QueryEngine, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.222589]: Subclasses: []\n", + "[INFO] [1712607561.222867]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.223363]: Instances: []\n", + "[INFO] [1712607561.223624]: Direct Instances: []\n", + "[INFO] [1712607561.223867]: Inverse Restrictions: []\n", + "[INFO] [1712607561.224100]: -------------------\n", + "[INFO] [1712607561.224327]: SOMA.Reaching \n", + "[INFO] [1712607561.224555]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712607561.224808]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Reaching, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.225052]: Subclasses: []\n", + "[INFO] [1712607561.225343]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.225835]: Instances: []\n", + "[INFO] [1712607561.226095]: Direct Instances: []\n", + "[INFO] [1712607561.226350]: Inverse Restrictions: []\n", + "[INFO] [1712607561.226585]: -------------------\n", + "[INFO] [1712607561.226813]: SOMA.Retracting \n", + "[INFO] [1712607561.227040]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712607561.227280]: Ancestors: {DUL.Object, SOMA.Retracting, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.227530]: Subclasses: []\n", + "[INFO] [1712607561.227851]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.228347]: Instances: []\n", + "[INFO] [1712607561.228610]: Direct Instances: []\n", + "[INFO] [1712607561.228880]: Inverse Restrictions: []\n", + "[INFO] [1712607561.229134]: -------------------\n", + "[INFO] [1712607561.229372]: SOMA.Reasoner \n", + "[INFO] [1712607561.229606]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712607561.229844]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.230108]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712607561.230410]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.230910]: Instances: []\n", + "[INFO] [1712607561.231182]: Direct Instances: []\n", + "[INFO] [1712607561.231444]: Inverse Restrictions: []\n", + "[INFO] [1712607561.231684]: -------------------\n", + "[INFO] [1712607561.231920]: SOMA.RecipientRole \n", + "[INFO] [1712607561.232148]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712607561.232398]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.RecipientRole, DUL.SocialObject}\n", + "[INFO] [1712607561.232656]: Subclasses: []\n", + "[INFO] [1712607561.232956]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.233505]: Instances: []\n", + "[INFO] [1712607561.233778]: Direct Instances: []\n", + "[INFO] [1712607561.234040]: Inverse Restrictions: []\n", + "[INFO] [1712607561.234303]: -------------------\n", + "[INFO] [1712607561.234559]: SOMA.RecordedEpisode \n", + "[INFO] [1712607561.234819]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712607561.235095]: Ancestors: {SOMA.RecordedEpisode, owl.Thing, SOMA.Episode, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712607561.235370]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712607561.235676]: Properties: [rdf-schema.comment, SOMA.includesRecord, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.236185]: Instances: []\n", + "[INFO] [1712607561.236470]: Direct Instances: []\n", + "[INFO] [1712607561.236734]: Inverse Restrictions: []\n", + "[INFO] [1712607561.236979]: -------------------\n", + "[INFO] [1712607561.237220]: SOMA.RedColor \n", + "[INFO] [1712607561.237451]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712607561.237753]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, SOMA.RedColor, DUL.Region}\n", + "[INFO] [1712607561.238031]: Subclasses: []\n", + "[INFO] [1712607561.238355]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.238858]: Instances: []\n", + "[INFO] [1712607561.239127]: Direct Instances: []\n", + "[INFO] [1712607561.239379]: Inverse Restrictions: []\n", + "[INFO] [1712607561.239615]: -------------------\n", + "[INFO] [1712607561.240008]: SOMA.Reification \n", + "[INFO] [1712607561.240339]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712607561.240669]: Ancestors: {DUL.Object, DUL.Description, SOMA.Reification, owl.Thing, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.240949]: Subclasses: []\n", + "[INFO] [1712607561.241323]: Properties: [SOMA.isReificationOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.241889]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712607561.242218]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712607561.242506]: Inverse Restrictions: []\n", + "[INFO] [1712607561.242757]: -------------------\n", + "[INFO] [1712607561.242998]: SOMA.RelationalDatabase \n", + "[INFO] [1712607561.243237]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712607561.243494]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.RelationalDatabase, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", + "[INFO] [1712607561.243743]: Subclasses: []\n", + "[INFO] [1712607561.244123]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.244626]: Instances: []\n", + "[INFO] [1712607561.244916]: Direct Instances: []\n", + "[INFO] [1712607561.245174]: Inverse Restrictions: []\n", + "[INFO] [1712607561.245413]: -------------------\n", + "[INFO] [1712607561.245646]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712607561.245874]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712607561.246119]: Ancestors: {DUL.Object, SOMA.RelationalQueryLanguage, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", + "[INFO] [1712607561.246389]: Subclasses: []\n", + "[INFO] [1712607561.246692]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.247178]: Instances: []\n", + "[INFO] [1712607561.247454]: Direct Instances: []\n", + "[INFO] [1712607561.247708]: Inverse Restrictions: []\n", + "[INFO] [1712607561.247943]: -------------------\n", + "[INFO] [1712607561.248176]: SOMA.RelevantPart \n", + "[INFO] [1712607561.248406]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712607561.248646]: Ancestors: {DUL.Object, SOMA.RelevantPart, owl.Thing, DUL.Entity, SOMA.Feature}\n", + "[INFO] [1712607561.248901]: Subclasses: []\n", + "[INFO] [1712607561.249194]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.249675]: Instances: []\n", + "[INFO] [1712607561.249920]: Direct Instances: []\n", + "[INFO] [1712607561.250159]: Inverse Restrictions: []\n", + "[INFO] [1712607561.250408]: -------------------\n", + "[INFO] [1712607561.250644]: SOMA.Remembering \n", + "[INFO] [1712607561.250881]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712607561.251114]: Ancestors: {owl.Thing, SOMA.Remembering}\n", + "[INFO] [1712607561.251356]: Subclasses: []\n", + "[INFO] [1712607561.251690]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.252183]: Instances: []\n", + "[INFO] [1712607561.252454]: Direct Instances: []\n", + "[INFO] [1712607561.252697]: Inverse Restrictions: []\n", + "[INFO] [1712607561.252960]: -------------------\n", + "[INFO] [1712607561.253202]: SOMA.Retrospecting \n", + "[INFO] [1712607561.253438]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712607561.253687]: Ancestors: {SOMA.Retrospecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712607561.253932]: Subclasses: []\n", + "[INFO] [1712607561.254238]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.254736]: Instances: []\n", + "[INFO] [1712607561.255000]: Direct Instances: []\n", + "[INFO] [1712607561.255296]: Inverse Restrictions: []\n", + "[INFO] [1712607561.255532]: -------------------\n", + "[INFO] [1712607561.255772]: SOMA.RemovedObject \n", + "[INFO] [1712607561.256007]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712607561.256250]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.ExcludedObject, owl.Thing, SOMA.RemovedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607561.256489]: Subclasses: []\n", + "[INFO] [1712607561.256775]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.257270]: Instances: []\n", + "[INFO] [1712607561.257529]: Direct Instances: []\n", + "[INFO] [1712607561.257781]: Inverse Restrictions: []\n", + "[INFO] [1712607561.258010]: -------------------\n", + "[INFO] [1712607561.258245]: SOMA.Replanning \n", + "[INFO] [1712607561.258490]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712607561.258733]: Ancestors: {SOMA.Deciding, SOMA.Planning, SOMA.Replanning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607561.258976]: Subclasses: []\n", + "[INFO] [1712607561.259263]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.259765]: Instances: []\n", + "[INFO] [1712607561.260028]: Direct Instances: []\n", + "[INFO] [1712607561.260274]: Inverse Restrictions: []\n", + "[INFO] [1712607561.260510]: -------------------\n", + "[INFO] [1712607561.260739]: SOMA.RevoluteJoint \n", + "[INFO] [1712607561.260975]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712607561.261265]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.RevoluteJoint, owl.Thing, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", + "[INFO] [1712607561.261517]: Subclasses: []\n", + "[INFO] [1712607561.261813]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointLimit]\n", + "[INFO] [1712607561.262309]: Instances: []\n", + "[INFO] [1712607561.262582]: Direct Instances: []\n", + "[INFO] [1712607561.262827]: Inverse Restrictions: []\n", + "[INFO] [1712607561.263058]: -------------------\n", + "[INFO] [1712607561.263284]: SOMA.Surface \n", + "[INFO] [1712607561.263520]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712607561.263766]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", + "[INFO] [1712607561.264019]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712607561.264305]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.264810]: Instances: []\n", + "[INFO] [1712607561.265079]: Direct Instances: []\n", + "[INFO] [1712607561.265337]: Inverse Restrictions: []\n", + "[INFO] [1712607561.265570]: -------------------\n", + "[INFO] [1712607561.265800]: SOMA.Rubbing \n", + "[INFO] [1712607561.266038]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712607561.266287]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, SOMA.Rubbing, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607561.266526]: Subclasses: []\n", + "[INFO] [1712607561.266805]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.267274]: Instances: []\n", + "[INFO] [1712607561.267542]: Direct Instances: []\n", + "[INFO] [1712607561.267792]: Inverse Restrictions: []\n", + "[INFO] [1712607561.268022]: -------------------\n", + "[INFO] [1712607561.268252]: SOMA.Scene \n", + "[INFO] [1712607561.268488]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712607561.268738]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Scene}\n", + "[INFO] [1712607561.268982]: Subclasses: []\n", + "[INFO] [1712607561.269277]: Properties: [DUL.satisfies, DUL.includesEvent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712607561.269756]: Instances: []\n", + "[INFO] [1712607561.270029]: Direct Instances: []\n", + "[INFO] [1712607561.270338]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712607561.270579]: -------------------\n", + "[INFO] [1712607561.270809]: SOMA.SelectedObject \n", + "[INFO] [1712607561.271036]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712607561.271275]: Ancestors: {DUL.Object, DUL.Role, owl.Thing, SOMA.SelectedObject, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.271522]: Subclasses: []\n", + "[INFO] [1712607561.271813]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.272294]: Instances: []\n", + "[INFO] [1712607561.272546]: Direct Instances: []\n", + "[INFO] [1712607561.272864]: Inverse Restrictions: []\n", + "[INFO] [1712607561.273103]: -------------------\n", + "[INFO] [1712607561.273334]: SOMA.Selecting \n", + "[INFO] [1712607561.273560]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712607561.273807]: Ancestors: {SOMA.Deciding, SOMA.Selecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607561.274052]: Subclasses: []\n", + "[INFO] [1712607561.274345]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.274840]: Instances: []\n", + "[INFO] [1712607561.275107]: Direct Instances: []\n", + "[INFO] [1712607561.275353]: Inverse Restrictions: []\n", + "[INFO] [1712607561.275583]: -------------------\n", + "[INFO] [1712607561.275810]: SOMA.SelectingItem \n", + "[INFO] [1712607561.276049]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712607561.276302]: Ancestors: {SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607561.276546]: Subclasses: []\n", + "[INFO] [1712607561.276839]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712607561.277335]: Instances: []\n", + "[INFO] [1712607561.277593]: Direct Instances: []\n", + "[INFO] [1712607561.277894]: Inverse Restrictions: []\n", + "[INFO] [1712607561.278126]: -------------------\n", + "[INFO] [1712607561.278361]: SOMA.SelfReflection \n", + "[INFO] [1712607561.278591]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712607561.278843]: Ancestors: {DUL.Object, SOMA.SelfReflection, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.MetacognitiveControlling, DUL.EventType}\n", + "[INFO] [1712607561.279121]: Subclasses: []\n", + "[INFO] [1712607561.279414]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.279906]: Instances: []\n", + "[INFO] [1712607561.280177]: Direct Instances: []\n", + "[INFO] [1712607561.280428]: Inverse Restrictions: []\n", + "[INFO] [1712607561.280659]: -------------------\n", + "[INFO] [1712607561.280887]: SOMA.Serving \n", + "[INFO] [1712607561.281126]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712607561.281371]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.Delivering, DUL.Task, SOMA.Serving, DUL.EventType}\n", + "[INFO] [1712607561.281620]: Subclasses: []\n", + "[INFO] [1712607561.281911]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.282400]: Instances: []\n", + "[INFO] [1712607561.282678]: Direct Instances: []\n", + "[INFO] [1712607561.282938]: Inverse Restrictions: []\n", + "[INFO] [1712607561.283170]: -------------------\n", + "[INFO] [1712607561.283402]: SOMA.SettingGripper \n", + "[INFO] [1712607561.283628]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712607561.283873]: Ancestors: {DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.SettingGripper, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.284121]: Subclasses: []\n", + "[INFO] [1712607561.284408]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.284892]: Instances: []\n", + "[INFO] [1712607561.285163]: Direct Instances: []\n", + "[INFO] [1712607561.285414]: Inverse Restrictions: []\n", + "[INFO] [1712607561.285650]: -------------------\n", + "[INFO] [1712607561.285881]: SOMA.6DPose \n", + "[INFO] [1712607561.286132]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712607561.286381]: Ancestors: {DUL.Abstract, owl.Thing, DUL.SpaceRegion, SOMA.6DPose, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607561.286622]: Subclasses: []\n", + "[INFO] [1712607561.286911]: Properties: [rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.287397]: Instances: []\n", + "[INFO] [1712607561.287665]: Direct Instances: []\n", + "[INFO] [1712607561.287954]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712607561.288188]: -------------------\n", + "[INFO] [1712607561.288416]: SOMA.Sharpness \n", + "[INFO] [1712607561.288640]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607561.288886]: Ancestors: {SOMA.PhysicalQuality, SOMA.Sharpness, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607561.289130]: Subclasses: []\n", + "[INFO] [1712607561.289415]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.289894]: Instances: []\n", + "[INFO] [1712607561.290171]: Direct Instances: []\n", + "[INFO] [1712607561.290435]: Inverse Restrictions: []\n", + "[INFO] [1712607561.290670]: -------------------\n", + "[INFO] [1712607561.290899]: SOMA.Simulating \n", + "[INFO] [1712607561.291126]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712607561.291373]: Ancestors: {SOMA.Simulating, owl.Thing, SOMA.Prospecting, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712607561.291616]: Subclasses: []\n", + "[INFO] [1712607561.291904]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.292386]: Instances: []\n", + "[INFO] [1712607561.292650]: Direct Instances: []\n", + "[INFO] [1712607561.292906]: Inverse Restrictions: []\n", + "[INFO] [1712607561.293137]: -------------------\n", + "[INFO] [1712607561.293365]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712607561.293590]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712607561.293825]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Simulation_Reasoner, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.294075]: Subclasses: []\n", + "[INFO] [1712607561.294370]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.294853]: Instances: []\n", + "[INFO] [1712607561.295105]: Direct Instances: []\n", + "[INFO] [1712607561.295368]: Inverse Restrictions: []\n", + "[INFO] [1712607561.295612]: -------------------\n", + "[INFO] [1712607561.295841]: SOMA.Size \n", + "[INFO] [1712607561.296073]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712607561.296305]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Size, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", + "[INFO] [1712607561.296553]: Subclasses: []\n", + "[INFO] [1712607561.296843]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.297338]: Instances: []\n", + "[INFO] [1712607561.297607]: Direct Instances: []\n", + "[INFO] [1712607561.297851]: Inverse Restrictions: []\n", + "[INFO] [1712607561.298080]: -------------------\n", + "[INFO] [1712607561.298316]: SOMA.Slicing \n", + "[INFO] [1712607561.298548]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712607561.298805]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, SOMA.Slicing, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.299051]: Subclasses: []\n", + "[INFO] [1712607561.299338]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.299838]: Instances: []\n", + "[INFO] [1712607561.300099]: Direct Instances: []\n", + "[INFO] [1712607561.300345]: Inverse Restrictions: []\n", + "[INFO] [1712607561.300580]: -------------------\n", + "[INFO] [1712607561.300816]: SOMA.Sluggishness \n", + "[INFO] [1712607561.301052]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712607561.301302]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Sluggishness, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607561.301544]: Subclasses: []\n", + "[INFO] [1712607561.301829]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.302312]: Instances: []\n", + "[INFO] [1712607561.302586]: Direct Instances: []\n", + "[INFO] [1712607561.302839]: Inverse Restrictions: []\n", + "[INFO] [1712607561.303070]: -------------------\n", + "[INFO] [1712607561.303303]: SOMA.SocialState \n", + "[INFO] [1712607561.303532]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712607561.303781]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.SocialState}\n", + "[INFO] [1712607561.304031]: Subclasses: []\n", + "[INFO] [1712607561.304320]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712607561.304792]: Instances: []\n", + "[INFO] [1712607561.305060]: Direct Instances: []\n", + "[INFO] [1712607561.305314]: Inverse Restrictions: []\n", + "[INFO] [1712607561.305548]: -------------------\n", + "[INFO] [1712607561.305779]: SOMA.Software_Configuration \n", + "[INFO] [1712607561.306011]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712607561.306256]: Ancestors: {DUL.Object, DUL.Collection, DUL.Configuration, owl.Thing, SOMA.Software_Configuration, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.306514]: Subclasses: []\n", + "[INFO] [1712607561.306807]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", + "[INFO] [1712607561.307286]: Instances: []\n", + "[INFO] [1712607561.307537]: Direct Instances: []\n", + "[INFO] [1712607561.307885]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712607561.308137]: -------------------\n", + "[INFO] [1712607561.308375]: SOMA.SoftwareLibrary \n", + "[INFO] [1712607561.308607]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712607561.308846]: Ancestors: {DUL.Object, DUL.Description, SOMA.SoftwareLibrary, owl.Thing, DUL.Entity, DUL.Design, SOMA.Software, DUL.SocialObject}\n", + "[INFO] [1712607561.309082]: Subclasses: []\n", + "[INFO] [1712607561.309367]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.309867]: Instances: []\n", + "[INFO] [1712607561.310136]: Direct Instances: []\n", + "[INFO] [1712607561.310389]: Inverse Restrictions: []\n", + "[INFO] [1712607561.310624]: -------------------\n", + "[INFO] [1712607561.310858]: SOMA.SourceMaterialRole \n", + "[INFO] [1712607561.311100]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712607561.311368]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.SourceMaterialRole, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.311614]: Subclasses: []\n", + "[INFO] [1712607561.311905]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.312387]: Instances: []\n", + "[INFO] [1712607561.312680]: Direct Instances: []\n", + "[INFO] [1712607561.312948]: Inverse Restrictions: []\n", + "[INFO] [1712607561.313186]: -------------------\n", + "[INFO] [1712607561.313418]: SOMA.SphereShape \n", + "[INFO] [1712607561.313651]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712607561.313896]: Ancestors: {SOMA.SphereShape, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", + "[INFO] [1712607561.314147]: Subclasses: []\n", + "[INFO] [1712607561.314597]: Properties: [rdf-schema.comment, SOMA.hasRadius, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.315209]: Instances: []\n", + "[INFO] [1712607561.315592]: Direct Instances: []\n", + "[INFO] [1712607561.315969]: Inverse Restrictions: []\n", + "[INFO] [1712607561.316243]: -------------------\n", + "[INFO] [1712607561.316492]: SOMA.Standing \n", + "[INFO] [1712607561.316731]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712607561.316977]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Standing, SOMA.Motion}\n", + "[INFO] [1712607561.317216]: Subclasses: []\n", + "[INFO] [1712607561.317502]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.318007]: Instances: []\n", + "[INFO] [1712607561.318274]: Direct Instances: []\n", + "[INFO] [1712607561.318526]: Inverse Restrictions: []\n", + "[INFO] [1712607561.318758]: -------------------\n", + "[INFO] [1712607561.318987]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712607561.319223]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712607561.319469]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, SOMA.StaticFrictionAttribute, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607561.319722]: Subclasses: []\n", + "[INFO] [1712607561.320028]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.320521]: Instances: []\n", + "[INFO] [1712607561.320779]: Direct Instances: []\n", + "[INFO] [1712607561.321022]: Inverse Restrictions: []\n", + "[INFO] [1712607561.321250]: -------------------\n", + "[INFO] [1712607561.321485]: SOMA.Status \n", + "[INFO] [1712607561.321731]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712607561.321976]: Ancestors: {DUL.Object, DUL.Parameter, SOMA.Status, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.322231]: Subclasses: []\n", + "[INFO] [1712607561.322519]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.323045]: Instances: []\n", + "[INFO] [1712607561.323308]: Direct Instances: []\n", + "[INFO] [1712607561.323588]: Inverse Restrictions: []\n", + "[INFO] [1712607561.323824]: -------------------\n", + "[INFO] [1712607561.324053]: SOMA.StatusFailure \n", + "[INFO] [1712607561.324280]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607561.324527]: Ancestors: {DUL.Abstract, SOMA.StatusFailure, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607561.324775]: Subclasses: []\n", + "[INFO] [1712607561.325063]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.325559]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712607561.325847]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712607561.326111]: Inverse Restrictions: []\n", + "[INFO] [1712607561.326358]: -------------------\n", + "[INFO] [1712607561.326594]: SOMA.StimulusRole \n", + "[INFO] [1712607561.326826]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712607561.327081]: Ancestors: {DUL.Object, SOMA.StimulusRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", + "[INFO] [1712607561.327346]: Subclasses: []\n", + "[INFO] [1712607561.327664]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.328206]: Instances: []\n", + "[INFO] [1712607561.328532]: Direct Instances: []\n", + "[INFO] [1712607561.328838]: Inverse Restrictions: []\n", + "[INFO] [1712607561.329126]: -------------------\n", + "[INFO] [1712607561.329397]: SOMA.Stirring \n", + "[INFO] [1712607561.329663]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712607561.329943]: Ancestors: {DUL.Object, DUL.Entity, DUL.EventType, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Stirring, SOMA.Mixing}\n", + "[INFO] [1712607561.330236]: Subclasses: []\n", + "[INFO] [1712607561.330565]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712607561.331093]: Instances: []\n", + "[INFO] [1712607561.331374]: Direct Instances: []\n", + "[INFO] [1712607561.331624]: Inverse Restrictions: []\n", + "[INFO] [1712607561.331857]: -------------------\n", + "[INFO] [1712607561.332087]: SOMA.Storage \n", + "[INFO] [1712607561.332316]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712607561.332564]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.Storage, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", + "[INFO] [1712607561.332816]: Subclasses: []\n", + "[INFO] [1712607561.333106]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.333588]: Instances: []\n", + "[INFO] [1712607561.333837]: Direct Instances: []\n", + "[INFO] [1712607561.334081]: Inverse Restrictions: []\n", + "[INFO] [1712607561.334328]: -------------------\n", + "[INFO] [1712607561.334562]: SOMA.StructuralDesign \n", + "[INFO] [1712607561.334789]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712607561.335025]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, SOMA.StructuralDesign, DUL.Design, DUL.SocialObject}\n", + "[INFO] [1712607561.335278]: Subclasses: []\n", + "[INFO] [1712607561.335568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.336054]: Instances: []\n", + "[INFO] [1712607561.336324]: Direct Instances: []\n", + "[INFO] [1712607561.336584]: Inverse Restrictions: []\n", + "[INFO] [1712607561.336819]: -------------------\n", + "[INFO] [1712607561.337046]: SOMA.TaskInvocation \n", + "[INFO] [1712607561.337283]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712607561.337537]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.TaskInvocation, DUL.Workflow, DUL.Entity, DUL.Plan, DUL.SocialObject}\n", + "[INFO] [1712607561.337782]: Subclasses: []\n", + "[INFO] [1712607561.338083]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesTask]\n", + "[INFO] [1712607561.338586]: Instances: []\n", + "[INFO] [1712607561.338865]: Direct Instances: []\n", + "[INFO] [1712607561.339190]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712607561.339432]: -------------------\n", + "[INFO] [1712607561.339669]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712607561.339893]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712607561.340129]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607561.340397]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712607561.340687]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.341176]: Instances: []\n", + "[INFO] [1712607561.341447]: Direct Instances: []\n", + "[INFO] [1712607561.341703]: Inverse Restrictions: []\n", + "[INFO] [1712607561.341933]: -------------------\n", + "[INFO] [1712607561.342162]: SOMA.Successfulness \n", + "[INFO] [1712607561.342388]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712607561.342623]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, SOMA.Successfulness, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607561.342871]: Subclasses: []\n", + "[INFO] [1712607561.343166]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.343644]: Instances: []\n", + "[INFO] [1712607561.343894]: Direct Instances: []\n", + "[INFO] [1712607561.344145]: Inverse Restrictions: []\n", + "[INFO] [1712607561.344379]: -------------------\n", + "[INFO] [1712607561.344614]: SOMA.SupportState \n", + "[INFO] [1712607561.344851]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712607561.345107]: Ancestors: {DUL.Object, SOMA.SupportState, DUL.Entity, SOMA.StateType, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", + "[INFO] [1712607561.345352]: Subclasses: []\n", + "[INFO] [1712607561.345640]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.346117]: Instances: []\n", + "[INFO] [1712607561.346397]: Direct Instances: []\n", + "[INFO] [1712607561.346649]: Inverse Restrictions: []\n", + "[INFO] [1712607561.346879]: -------------------\n", + "[INFO] [1712607561.347104]: SOMA.Supporter \n", + "[INFO] [1712607561.347327]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712607561.347562]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, SOMA.Supporter, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607561.347953]: Subclasses: []\n", + "[INFO] [1712607561.348342]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.348962]: Instances: []\n", + "[INFO] [1712607561.349357]: Direct Instances: []\n", + "[INFO] [1712607561.349815]: Inverse Restrictions: []\n", + "[INFO] [1712607561.350102]: -------------------\n", + "[INFO] [1712607561.350386]: SOMA.SupportTheory \n", + "[INFO] [1712607561.350632]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712607561.350882]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.SocialObject, SOMA.SupportTheory}\n", + "[INFO] [1712607561.351123]: Subclasses: []\n", + "[INFO] [1712607561.351413]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.351919]: Instances: []\n", + "[INFO] [1712607561.352187]: Direct Instances: []\n", + "[INFO] [1712607561.352443]: Inverse Restrictions: []\n", + "[INFO] [1712607561.352684]: -------------------\n", + "[INFO] [1712607561.352914]: SOMA.SupportedObject \n", + "[INFO] [1712607561.353142]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712607561.353389]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.SupportedObject, SOMA.Patient, DUL.SocialObject}\n", + "[INFO] [1712607561.353631]: Subclasses: []\n", + "[INFO] [1712607561.353924]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.354427]: Instances: []\n", + "[INFO] [1712607561.354695]: Direct Instances: []\n", + "[INFO] [1712607561.354941]: Inverse Restrictions: []\n", + "[INFO] [1712607561.355173]: -------------------\n", + "[INFO] [1712607561.355402]: SOMA.SymbolicReasoner \n", + "[INFO] [1712607561.355634]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712607561.355873]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, SOMA.SymbolicReasoner, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.356127]: Subclasses: []\n", + "[INFO] [1712607561.356418]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.356918]: Instances: []\n", + "[INFO] [1712607561.357171]: Direct Instances: []\n", + "[INFO] [1712607561.357432]: Inverse Restrictions: []\n", + "[INFO] [1712607561.357669]: -------------------\n", + "[INFO] [1712607561.357901]: SOMA.Tapping \n", + "[INFO] [1712607561.358134]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712607561.358384]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.Tapping, SOMA.Motion}\n", + "[INFO] [1712607561.358633]: Subclasses: []\n", + "[INFO] [1712607561.358921]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.359405]: Instances: []\n", + "[INFO] [1712607561.359679]: Direct Instances: []\n", + "[INFO] [1712607561.359934]: Inverse Restrictions: []\n", + "[INFO] [1712607561.360168]: -------------------\n", + "[INFO] [1712607561.360397]: SOMA.Taxis \n", + "[INFO] [1712607561.360628]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712607561.360873]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Taxis, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", + "[INFO] [1712607561.361146]: Subclasses: []\n", + "[INFO] [1712607561.361428]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.361925]: Instances: []\n", + "[INFO] [1712607561.362202]: Direct Instances: []\n", + "[INFO] [1712607561.362455]: Inverse Restrictions: []\n", + "[INFO] [1712607561.362691]: -------------------\n", + "[INFO] [1712607561.362921]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712607561.363153]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712607561.363401]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607561.363655]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712607561.363942]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.364549]: Instances: []\n", + "[INFO] [1712607561.365122]: Direct Instances: []\n", + "[INFO] [1712607561.365543]: Inverse Restrictions: []\n", + "[INFO] [1712607561.365960]: -------------------\n", + "[INFO] [1712607561.366265]: SOMA.Temperature \n", + "[INFO] [1712607561.366638]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712607561.367010]: Ancestors: {SOMA.Temperature, owl.Thing, SOMA.Intrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", + "[INFO] [1712607561.367381]: Subclasses: []\n", + "[INFO] [1712607561.367709]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.368211]: Instances: []\n", + "[INFO] [1712607561.368491]: Direct Instances: []\n", + "[INFO] [1712607561.368794]: Inverse Restrictions: []\n", + "[INFO] [1712607561.369032]: -------------------\n", + "[INFO] [1712607561.369262]: SOMA.TemperatureRegion \n", + "[INFO] [1712607561.369491]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712607561.369729]: Ancestors: {DUL.Abstract, SOMA.TemperatureRegion, owl.Thing, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607561.369994]: Subclasses: []\n", + "[INFO] [1712607561.370345]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.370909]: Instances: []\n", + "[INFO] [1712607561.371383]: Direct Instances: []\n", + "[INFO] [1712607561.371850]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712607561.372230]: -------------------\n", + "[INFO] [1712607561.372575]: SOMA.Tempering \n", + "[INFO] [1712607561.372854]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712607561.373122]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Tempering, DUL.Quality}\n", + "[INFO] [1712607561.373395]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712607561.373722]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.374238]: Instances: []\n", + "[INFO] [1712607561.374518]: Direct Instances: []\n", + "[INFO] [1712607561.374790]: Inverse Restrictions: []\n", + "[INFO] [1712607561.375030]: -------------------\n", + "[INFO] [1712607561.375265]: SOMA.ThinkAloud \n", + "[INFO] [1712607561.375495]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712607561.375736]: Ancestors: {DUL.Object, DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.ThinkAloud, DUL.EventType}\n", + "[INFO] [1712607561.375998]: Subclasses: []\n", + "[INFO] [1712607561.376297]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.376786]: Instances: []\n", + "[INFO] [1712607561.377043]: Direct Instances: []\n", + "[INFO] [1712607561.377287]: Inverse Restrictions: []\n", + "[INFO] [1712607561.377533]: -------------------\n", + "[INFO] [1712607561.377807]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712607561.378041]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607561.378418]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ThinkAloudActionTopic, DUL.SocialObject}\n", + "[INFO] [1712607561.378759]: Subclasses: []\n", + "[INFO] [1712607561.379122]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.379663]: Instances: []\n", + "[INFO] [1712607561.379948]: Direct Instances: []\n", + "[INFO] [1712607561.380210]: Inverse Restrictions: []\n", + "[INFO] [1712607561.380452]: -------------------\n", + "[INFO] [1712607561.380690]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712607561.380922]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712607561.381189]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, SOMA.ThinkAloudGeneralKnowledgeTopic, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.381437]: Subclasses: []\n", + "[INFO] [1712607561.381725]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.382217]: Instances: []\n", + "[INFO] [1712607561.382492]: Direct Instances: []\n", + "[INFO] [1712607561.382746]: Inverse Restrictions: []\n", + "[INFO] [1712607561.382985]: -------------------\n", + "[INFO] [1712607561.383223]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712607561.383453]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607561.383704]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.383963]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712607561.384255]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.384767]: Instances: []\n", + "[INFO] [1712607561.385032]: Direct Instances: []\n", + "[INFO] [1712607561.385288]: Inverse Restrictions: []\n", + "[INFO] [1712607561.385526]: -------------------\n", + "[INFO] [1712607561.385761]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712607561.385991]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607561.386261]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.386528]: Subclasses: []\n", + "[INFO] [1712607561.386820]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.387303]: Instances: []\n", + "[INFO] [1712607561.387568]: Direct Instances: []\n", + "[INFO] [1712607561.387820]: Inverse Restrictions: []\n", + "[INFO] [1712607561.388056]: -------------------\n", + "[INFO] [1712607561.388295]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712607561.388526]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607561.388781]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudOpinionTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.389026]: Subclasses: []\n", + "[INFO] [1712607561.389312]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.389789]: Instances: []\n", + "[INFO] [1712607561.390057]: Direct Instances: []\n", + "[INFO] [1712607561.390312]: Inverse Restrictions: []\n", + "[INFO] [1712607561.390548]: -------------------\n", + "[INFO] [1712607561.390783]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712607561.391011]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607561.391258]: Ancestors: {SOMA.ThinkAloudPerceptionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.391505]: Subclasses: []\n", + "[INFO] [1712607561.391790]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.392266]: Instances: []\n", + "[INFO] [1712607561.392515]: Direct Instances: []\n", + "[INFO] [1712607561.392753]: Inverse Restrictions: []\n", + "[INFO] [1712607561.393000]: -------------------\n", + "[INFO] [1712607561.393237]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712607561.393469]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712607561.393717]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ThinkAloudPlanTopic, DUL.SocialObject}\n", + "[INFO] [1712607561.393954]: Subclasses: []\n", + "[INFO] [1712607561.394247]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.394803]: Instances: []\n", + "[INFO] [1712607561.395062]: Direct Instances: []\n", + "[INFO] [1712607561.395313]: Inverse Restrictions: []\n", + "[INFO] [1712607561.395562]: -------------------\n", + "[INFO] [1712607561.395827]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712607561.396086]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712607561.396346]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.396590]: Subclasses: []\n", + "[INFO] [1712607561.396876]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.397377]: Instances: []\n", + "[INFO] [1712607561.397638]: Direct Instances: []\n", + "[INFO] [1712607561.397886]: Inverse Restrictions: []\n", + "[INFO] [1712607561.398122]: -------------------\n", + "[INFO] [1712607561.398359]: SOMA.Threshold \n", + "[INFO] [1712607561.398593]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712607561.398842]: Ancestors: {DUL.Object, DUL.Parameter, owl.Thing, SOMA.Threshold, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.399093]: Subclasses: []\n", + "[INFO] [1712607561.399379]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.399861]: Instances: []\n", + "[INFO] [1712607561.400112]: Direct Instances: []\n", + "[INFO] [1712607561.400373]: Inverse Restrictions: []\n", + "[INFO] [1712607561.400617]: -------------------\n", + "[INFO] [1712607561.400851]: SOMA.Throwing \n", + "[INFO] [1712607561.401088]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712607561.401331]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Throwing, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.401588]: Subclasses: []\n", + "[INFO] [1712607561.401884]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.402376]: Instances: []\n", + "[INFO] [1712607561.402639]: Direct Instances: []\n", + "[INFO] [1712607561.402886]: Inverse Restrictions: []\n", + "[INFO] [1712607561.403134]: -------------------\n", + "[INFO] [1712607561.403374]: SOMA.TimeRole \n", + "[INFO] [1712607561.403612]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712607561.403853]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.TimeRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", + "[INFO] [1712607561.404086]: Subclasses: []\n", + "[INFO] [1712607561.404361]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.404858]: Instances: []\n", + "[INFO] [1712607561.405116]: Direct Instances: []\n", + "[INFO] [1712607561.405364]: Inverse Restrictions: []\n", + "[INFO] [1712607561.405602]: -------------------\n", + "[INFO] [1712607561.405837]: SOMA.Transporting \n", + "[INFO] [1712607561.406078]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712607561.406342]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Transporting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", + "[INFO] [1712607561.406588]: Subclasses: []\n", + "[INFO] [1712607561.406871]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.407361]: Instances: []\n", + "[INFO] [1712607561.407635]: Direct Instances: []\n", + "[INFO] [1712607561.407892]: Inverse Restrictions: []\n", + "[INFO] [1712607561.408131]: -------------------\n", + "[INFO] [1712607561.408365]: SOMA.Triplestore \n", + "[INFO] [1712607561.408597]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712607561.408845]: Ancestors: {SOMA.GraphDatabase, DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Triplestore, SOMA.Database, DUL.SocialObject}\n", + "[INFO] [1712607561.409099]: Subclasses: []\n", + "[INFO] [1712607561.409386]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.409868]: Instances: []\n", + "[INFO] [1712607561.410138]: Direct Instances: []\n", + "[INFO] [1712607561.410393]: Inverse Restrictions: []\n", + "[INFO] [1712607561.410627]: -------------------\n", + "[INFO] [1712607561.410857]: SOMA.Turning \n", + "[INFO] [1712607561.411107]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712607561.411353]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, SOMA.Turning, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", + "[INFO] [1712607561.411615]: Subclasses: []\n", + "[INFO] [1712607561.411908]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.412400]: Instances: []\n", + "[INFO] [1712607561.412688]: Direct Instances: []\n", + "[INFO] [1712607561.412951]: Inverse Restrictions: []\n", + "[INFO] [1712607561.413191]: -------------------\n", + "[INFO] [1712607561.413430]: SOMA.UnavailableSoftware \n", + "[INFO] [1712607561.413658]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712607561.413899]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.UnavailableSoftware, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607561.414155]: Subclasses: []\n", + "[INFO] [1712607561.414449]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.414935]: Instances: []\n", + "[INFO] [1712607561.415184]: Direct Instances: []\n", + "[INFO] [1712607561.415426]: Inverse Restrictions: []\n", + "[INFO] [1712607561.415665]: -------------------\n", + "[INFO] [1712607561.415898]: SOMA.Unsuccessfulness \n", + "[INFO] [1712607561.416128]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712607561.416368]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", + "[INFO] [1712607561.416628]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712607561.416919]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.417422]: Instances: []\n", + "[INFO] [1712607561.417679]: Direct Instances: []\n", + "[INFO] [1712607561.417929]: Inverse Restrictions: []\n", + "[INFO] [1712607561.418167]: -------------------\n", + "[INFO] [1712607561.418397]: SOMA.VideoData \n", + "[INFO] [1712607561.418640]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712607561.418888]: Ancestors: {DUL.Object, SOMA.VideoData, owl.Thing, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", + "[INFO] [1712607561.419127]: Subclasses: []\n", + "[INFO] [1712607561.419411]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.419921]: Instances: []\n", + "[INFO] [1712607561.420194]: Direct Instances: []\n", + "[INFO] [1712607561.420447]: Inverse Restrictions: []\n", + "[INFO] [1712607561.420679]: -------------------\n", + "[INFO] [1712607561.420914]: SOMA.3DPosition \n", + "[INFO] [1712607561.421150]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712607561.421407]: Ancestors: {DUL.Abstract, SOMA.3DPosition, owl.Thing, DUL.SpaceRegion, DUL.Entity, DUL.Region}\n", + "[INFO] [1712607561.421652]: Subclasses: []\n", + "[INFO] [1712607561.421942]: Properties: [rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.422429]: Instances: []\n", + "[INFO] [1712607561.422701]: Direct Instances: []\n", + "[INFO] [1712607561.422955]: Inverse Restrictions: []\n", + "[INFO] [1712607561.423196]: -------------------\n", + "[INFO] [1712607561.423426]: SOMA.OntologyPlaceHolderObject \n", + "[INFO] [1712607561.423656]: Super classes: [SOMA.Container, owl.Thing]\n", + "[INFO] [1712607561.423926]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.Container, SOMA.EventAdjacentRole, SOMA.Instrument, SOMA.OntologyPlaceHolderObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607561.424189]: Subclasses: [SOMA.Ontoegg_tray]\n", + "[INFO] [1712607561.424472]: Properties: []\n", + "[INFO] [1712607561.424966]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607561.425219]: Direct Instances: []\n", + "[INFO] [1712607561.425468]: Inverse Restrictions: []\n", + "[INFO] [1712607561.425716]: -------------------\n", + "[INFO] [1712607561.425955]: SOMA.OntologyHandheldObject \n", + "[INFO] [1712607561.426190]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.426447]: Ancestors: {SOMA.OntologyHandheldObject, owl.Thing}\n", + "[INFO] [1712607561.426689]: Subclasses: [SOMA.Ontoegg]\n", + "[INFO] [1712607561.426960]: Properties: []\n", + "[INFO] [1712607561.427500]: Instances: [SOMA.egg_concept]\n", + "[INFO] [1712607561.427766]: Direct Instances: []\n", + "[INFO] [1712607561.428021]: Inverse Restrictions: []\n", + "[INFO] [1712607561.428258]: -------------------\n", + "[INFO] [1712607561.428489]: SOMA.OntologySubject \n", + "[INFO] [1712607561.428734]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.428992]: Ancestors: {SOMA.OntologySubject, owl.Thing}\n", + "[INFO] [1712607561.429237]: Subclasses: []\n", + "[INFO] [1712607561.429522]: Properties: []\n", + "[INFO] [1712607561.430045]: Instances: [SOMA.subject]\n", + "[INFO] [1712607561.430313]: Direct Instances: [SOMA.subject]\n", + "[INFO] [1712607561.430573]: Inverse Restrictions: []\n", + "[INFO] [1712607561.430818]: -------------------\n", + "[INFO] [1712607561.431053]: SOMA.OntologyObject \n", + "[INFO] [1712607561.431282]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.431530]: Ancestors: {owl.Thing, SOMA.OntologyObject}\n", + "[INFO] [1712607561.431770]: Subclasses: []\n", + "[INFO] [1712607561.432064]: Properties: []\n", + "[INFO] [1712607561.432588]: Instances: [SOMA.object]\n", + "[INFO] [1712607561.432852]: Direct Instances: [SOMA.object]\n", + "[INFO] [1712607561.433096]: Inverse Restrictions: []\n", + "[INFO] [1712607561.433327]: -------------------\n", + "[INFO] [1712607561.433564]: SOMA.Ontoegg \n", + "[INFO] [1712607561.433801]: Super classes: [SOMA.OntologyHandheldObject, owl.Thing]\n", + "[INFO] [1712607561.434053]: Ancestors: {SOMA.Ontoegg, SOMA.OntologyHandheldObject, owl.Thing}\n", + "[INFO] [1712607561.434311]: Subclasses: []\n", + "[INFO] [1712607561.434596]: Properties: []\n", + "[INFO] [1712607561.435088]: Instances: [SOMA.egg_concept]\n", + "[INFO] [1712607561.435341]: Direct Instances: [SOMA.egg_concept]\n", + "[INFO] [1712607561.435587]: Inverse Restrictions: []\n", + "[INFO] [1712607561.435830]: -------------------\n", + "[INFO] [1712607561.436069]: SOMA.Ontoegg_tray \n", + "[INFO] [1712607561.436306]: Super classes: [SOMA.OntologyPlaceHolderObject, owl.Thing]\n", + "[INFO] [1712607561.436575]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.Container, SOMA.EventAdjacentRole, SOMA.Instrument, SOMA.OntologyPlaceHolderObject, DUL.Role, SOMA.Ontoegg_tray, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", + "[INFO] [1712607561.436828]: Subclasses: []\n", + "[INFO] [1712607561.437109]: Properties: []\n", + "[INFO] [1712607561.437609]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607561.437863]: Direct Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712607561.438118]: Inverse Restrictions: []\n", + "[INFO] [1712607561.438368]: -------------------\n", + "[INFO] [1712607561.438604]: SOMA.DynamicOntologyConcept \n", + "[INFO] [1712607561.438841]: Super classes: [owl.Thing]\n", + "[INFO] [1712607561.439122]: Ancestors: {SOMA.DynamicOntologyConcept, owl.Thing}\n", + "[INFO] [1712607561.439359]: Subclasses: []\n", + "[INFO] [1712607561.439630]: Properties: []\n", + "[INFO] [1712607561.440170]: Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", + "[INFO] [1712607561.440437]: Direct Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", + "[INFO] [1712607561.440690]: Inverse Restrictions: []\n" ] }, { @@ -11031,8 +11095,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.801512Z", - "start_time": "2024-04-05T21:04:26.791174Z" + "end_time": "2024-04-08T20:19:21.459777Z", + "start_time": "2024-04-08T20:19:21.448902Z" } }, "outputs": [ @@ -11081,7 +11145,18 @@ " SOMA.WaterBottle,\n", " SOMA.WaterGlass,\n", " SOMA.WineBottle,\n", - " SOMA.WineGlass]" + " SOMA.WineGlass,\n", + " SOMA-HOME.CustomContainerConcept,\n", + " SOMA-HOME.AnotherCustomContainerConcept,\n", + " SOMA-HOME.OntologyPlaceHolderObject,\n", + " SOMA-HOME.Ontotable,\n", + " SOMA-HOME.Ontostool,\n", + " SOMA-HOME.Ontoshelf,\n", + " SOMA-HOME.Ontoegg_tray,\n", + " SOMA-HOME.OntologyLiquidHolderObject,\n", + " SOMA-HOME.Ontocup,\n", + " SOMA-HOME.Ontobowl,\n", + " SOMA-HOME.Ontopitcher]" ] }, "execution_count": 5, @@ -11097,7 +11172,7 @@ "## Create a new ontology class and its individual\n", "\n", "A new ontology class can be created dynamically as inheriting from an existing class in the loaded ontology.\n", - "Here we create the class and its instance, also known as [__individual__](https://owlready2.readthedocs.io/en/latest/class.html#creating-equivalent-classes) in ontology terms." + "Here we create the class and its instance, also known as [__individual__](https://owlready2.readthedocs.io/en/latest/class.html#creating-equivalent-classes) in ontology terms, which is then wrapped inside an `OntologyConceptHolder`." ], "metadata": { "collapsed": false @@ -11107,14 +11182,15 @@ "cell_type": "code", "source": [ "ontology_custom_container_class = ontology_manager.create_ontology_concept_class('CustomContainerConcept',\n", - " ontology_designed_container_class)\n", - "custom_container_concept = ontology_custom_container_class('ontology_custom_container_concept')" + " ontology_designed_container_class)\n", + "custom_container_concept_holder = OntologyConceptHolder(ontology_custom_container_class(name='ontology_custom_container_concept',\n", + " namespace=main_ontology))" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.815550Z", - "start_time": "2024-04-05T21:04:26.801984Z" + "end_time": "2024-04-08T20:19:21.473229Z", + "start_time": "2024-04-08T20:19:21.460326Z" } }, "outputs": [], @@ -11134,15 +11210,14 @@ { "cell_type": "code", "source": [ - "ontology_manager.print_ontology_class(main_ontology.OntologyConcept)\n", "ontology_manager.print_ontology_class(main_ontology.CustomContainerConcept)\n", - "print(f\"custom_container_concept is {main_ontology.ontology_custom_container_concept}: {custom_container_concept is main_ontology.ontology_custom_container_concept}\")" + "print(f\"custom_container_concept is {main_ontology.ontology_custom_container_concept}: {custom_container_concept_holder is main_ontology.ontology_custom_container_concept}\")" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.832178Z", - "start_time": "2024-04-05T21:04:26.816143Z" + "end_time": "2024-04-08T20:19:21.486962Z", + "start_time": "2024-04-08T20:19:21.473816Z" } }, "outputs": [ @@ -11150,25 +11225,16 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712351066.824120]: -------------------\n", - "[INFO] [1712351066.824774]: SOMA-HOME.OntologyConcept \n", - "[INFO] [1712351066.825103]: Super classes: [owl.Thing]\n", - "[INFO] [1712351066.825396]: Ancestors: {owl.Thing, SOMA-HOME.OntologyConcept}\n", - "[INFO] [1712351066.825686]: Subclasses: [SOMA-HOME.CustomContainerConcept]\n", - "[INFO] [1712351066.826022]: Properties: []\n", - "[INFO] [1712351066.826570]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712351066.826862]: Direct Instances: []\n", - "[INFO] [1712351066.827132]: Inverse Restrictions: []\n", - "[INFO] [1712351066.827420]: -------------------\n", - "[INFO] [1712351066.827688]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712351066.827935]: Super classes: [SOMA-HOME.OntologyConcept, SOMA.DesignedContainer]\n", - "[INFO] [1712351066.828234]: Ancestors: {DUL.DesignedArtifact, SOMA-HOME.OntologyConcept, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedContainer, SOMA-HOME.CustomContainerConcept, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712351066.828498]: Subclasses: []\n", - "[INFO] [1712351066.829096]: Properties: []\n", - "[INFO] [1712351066.829772]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712351066.830201]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712351066.830585]: Inverse Restrictions: []\n", - "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" + "[INFO] [1712607561.482569]: -------------------\n", + "[INFO] [1712607561.483311]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712607561.483681]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712607561.483981]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA-HOME.CustomContainerConcept, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", + "[INFO] [1712607561.484249]: Subclasses: []\n", + "[INFO] [1712607561.484563]: Properties: []\n", + "[INFO] [1712607561.485100]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712607561.485413]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712607561.485694]: Inverse Restrictions: []\n", + "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: False\n" ] } ], @@ -11191,8 +11257,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.843844Z", - "start_time": "2024-04-05T21:04:26.832791Z" + "end_time": "2024-04-08T20:19:21.504095Z", + "start_time": "2024-04-08T20:19:21.487574Z" } }, "outputs": [ @@ -11200,15 +11266,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712351066.839870]: -------------------\n", - "[INFO] [1712351066.840372]: SOMA.Cup \n", - "[INFO] [1712351066.840687]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712351066.840988]: Ancestors: {DUL.DesignedArtifact, SOMA.Tableware, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Cup, owl.Thing, SOMA.Crockery}\n", - "[INFO] [1712351066.841264]: Subclasses: []\n", - "[INFO] [1712351066.841602]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712351066.842129]: Instances: []\n", - "[INFO] [1712351066.842414]: Direct Instances: []\n", - "[INFO] [1712351066.842675]: Inverse Restrictions: []\n" + "[INFO] [1712607561.498476]: -------------------\n", + "[INFO] [1712607561.499129]: SOMA.Cup \n", + "[INFO] [1712607561.499622]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712607561.500095]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Cup, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Tableware}\n", + "[INFO] [1712607561.500509]: Subclasses: []\n", + "[INFO] [1712607561.500985]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712607561.501739]: Instances: []\n", + "[INFO] [1712607561.502129]: Direct Instances: []\n", + "[INFO] [1712607561.502671]: Inverse Restrictions: []\n" ] } ], @@ -11219,8 +11285,8 @@ "source": [ "## Connect ontology class individuals with designators\n", "After creating `custom_container_concept` class, we connect it to a designator (say `obj_designator`) by:\n", - "- Append to `obj_designator.ontology_concepts` with `custom_container_concept`\n", - "- Append to `custom_container_concept.designators` with `obj_designator`" + "- Append to `obj_designator.ontology_concept_holders` with `custom_container_concept_holder`\n", + "- Append to `custom_container_concept_holder.designators` with `obj_designator`" ], "metadata": { "collapsed": false @@ -11230,14 +11296,14 @@ "cell_type": "code", "source": [ "custom_container_designator = ObjectDesignatorDescription(names=[\"obj\"])\n", - "custom_container_designator.ontology_concepts.append(custom_container_concept)\n", - "custom_container_concept.designators.append(custom_container_designator)" + "custom_container_designator.ontology_concept_holders.append(custom_container_concept_holder)\n", + "custom_container_concept_holder.designators.append(custom_container_designator)" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.856719Z", - "start_time": "2024-04-05T21:04:26.844287Z" + "end_time": "2024-04-08T20:19:21.515447Z", + "start_time": "2024-04-08T20:19:21.504681Z" } }, "outputs": [], @@ -11259,14 +11325,14 @@ " designator_class=ObjectDesignatorDescription,\n", " ontology_concept_name=\"AnotherCustomContainerConcept\",\n", " ontology_parent_class=ontology_designed_container_class)\n", - "print(another_custom_container_designator.ontology_concepts)\n", - "print(main_ontology.AnotherCustomContainerConcept.instances()[0].get_default_designator().names)" + "print(another_custom_container_designator.ontology_concept_holders)\n", + "print(OntologyConceptHolder.get_ontology_concept_holder_by_name(main_ontology.AnotherCustomContainerConcept.instances()[0].name).get_default_designator().names)" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.867909Z", - "start_time": "2024-04-05T21:04:26.857827Z" + "end_time": "2024-04-08T20:19:21.526134Z", + "start_time": "2024-04-08T20:19:21.517103Z" } }, "outputs": [ @@ -11274,7 +11340,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[SOMA-HOME.another_custom_container_concept]\n", + "[]\n", "['another_custom_container']\n" ] } @@ -11309,8 +11375,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.881065Z", - "start_time": "2024-04-05T21:04:26.868497Z" + "end_time": "2024-04-08T20:19:21.540589Z", + "start_time": "2024-04-08T20:19:21.526582Z" } }, "outputs": [], @@ -11320,7 +11386,7 @@ "cell_type": "markdown", "source": [ "There, we use `soma.DesignedContainer` & `soma.Shape`, existing concept in SOMA ontology, as the parent classes for the subject & object concepts respectively.\n", - "There is also a note that those classes, as inheriting from ##owlready2##-provided classes, are automatically given the namespace `onto`, so later on to be accessible through it.\n", + "There is also a note that those classes, as inheriting from __owlready2__-provided classes, are automatically given the same namespace of `main_ontology`, so later on to be accessible through it.\n", "\n", "Then now we define some instances of the newly created triple classes, and link them to object designators, again using __`ontology_manager.create_ontology_linked_designator()`__" ], @@ -11349,12 +11415,12 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.891442Z", - "start_time": "2024-04-05T21:04:26.881644Z" + "end_time": "2024-04-08T20:19:21.555967Z", + "start_time": "2024-04-08T20:19:21.541054Z" } }, - "execution_count": 12, - "outputs": [] + "outputs": [], + "execution_count": 12 }, { "cell_type": "markdown", @@ -11380,8 +11446,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.904715Z", - "start_time": "2024-04-05T21:04:26.892014Z" + "end_time": "2024-04-08T20:19:21.569965Z", + "start_time": "2024-04-08T20:19:21.556396Z" } }, "outputs": [], @@ -11425,8 +11491,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.915253Z", - "start_time": "2024-04-05T21:04:26.905338Z" + "end_time": "2024-04-08T20:19:21.580594Z", + "start_time": "2024-04-08T20:19:21.570590Z" } }, "outputs": [ @@ -11474,13 +11540,14 @@ "\n", "print(f'{generic_edible_class.name} object types:')\n", "for edible_ontology_concept in generic_edible_class.direct_instances():\n", - " print(edible_ontology_concept, [des.types for des in edible_ontology_concept.designators])\n" + " print(edible_ontology_concept,\n", + " [des.types for des in OntologyConceptHolder.get_ontology_concept_holder_by_name(edible_ontology_concept.name).designators])\n" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-05T21:04:26.929839Z", - "start_time": "2024-04-05T21:04:26.915854Z" + "end_time": "2024-04-08T20:19:21.595442Z", + "start_time": "2024-04-08T20:19:21.581131Z" } }, "outputs": [ @@ -11520,8 +11587,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T21:04:27.428263Z", - "start_time": "2024-04-05T21:04:26.930449Z" + "end_time": "2024-04-08T20:19:22.117139Z", + "start_time": "2024-04-08T20:19:21.596067Z" } }, "cell_type": "code", @@ -11560,8 +11627,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T21:04:27.539322Z", - "start_time": "2024-04-05T21:04:27.428937Z" + "end_time": "2024-04-08T20:19:22.201066Z", + "start_time": "2024-04-08T20:19:22.117778Z" } }, "cell_type": "code", @@ -11588,8 +11655,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T21:04:27.604392Z", - "start_time": "2024-04-05T21:04:27.540049Z" + "end_time": "2024-04-08T20:19:22.285452Z", + "start_time": "2024-04-08T20:19:22.201699Z" } }, "cell_type": "code", @@ -11617,8 +11684,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T21:04:27.642142Z", - "start_time": "2024-04-05T21:04:27.605001Z" + "end_time": "2024-04-08T20:19:22.304063Z", + "start_time": "2024-04-08T20:19:22.286248Z" } }, "cell_type": "code", @@ -11638,8 +11705,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T21:04:27.652307Z", - "start_time": "2024-04-05T21:04:27.642814Z" + "end_time": "2024-04-08T20:19:22.314279Z", + "start_time": "2024-04-08T20:19:22.304909Z" } }, "cell_type": "code", @@ -11666,8 +11733,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T21:04:27.667215Z", - "start_time": "2024-04-05T21:04:27.652796Z" + "end_time": "2024-04-08T20:19:22.328800Z", + "start_time": "2024-04-08T20:19:22.314856Z" } }, "cell_type": "code", @@ -11694,8 +11761,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T21:04:36.314980Z", - "start_time": "2024-04-05T21:04:27.667776Z" + "end_time": "2024-04-08T20:19:30.967449Z", + "start_time": "2024-04-08T20:19:22.329292Z" } }, "cell_type": "code", @@ -11735,8 +11802,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712351069\n", - " nsecs: 135382413\n", + " secs: 1712607563\n", + " nsecs: 781843185\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -11747,7 +11814,20 @@ " x: -0.0\n", " y: 0.0\n", " z: 0.15234391170286138\n", - " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n", + " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[ERROR] [1712607566.984047]: OntologyConceptHolder for [parking_arms] was already created!\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", "Remove body failed\n", "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", @@ -11755,6 +11835,14 @@ "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", "Remove body failed\n" ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[ERROR] [1712607568.361305]: OntologyConceptHolder for [navigating] was already created!\n", + "[ERROR] [1712607570.444021]: OntologyConceptHolder for [parking_arms] was already created!\n" + ] } ], "execution_count": 22 @@ -11770,8 +11858,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-05T21:04:36.365453Z", - "start_time": "2024-04-05T21:04:36.316168Z" + "end_time": "2024-04-08T20:19:31.021847Z", + "start_time": "2024-04-08T20:19:30.969015Z" } }, "cell_type": "code", @@ -11781,7 +11869,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712351076.363730]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712607571.019298]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], diff --git a/src/pycram/designator.py b/src/pycram/designator.py index d0f09bf77..353d29253 100644 --- a/src/pycram/designator.py +++ b/src/pycram/designator.py @@ -19,7 +19,7 @@ from .helper import GeneratorList, bcolors from threading import Lock from time import time -from typing_extensions import List, Dict, Any, Optional, Union, get_type_hints, Callable, Iterable +from typing_extensions import Type, List, Dict, Any, Optional, Union, get_type_hints, Callable, Iterable from pycram.datastructures.local_transformer import LocalTransformer from .language import Language @@ -324,17 +324,18 @@ class DesignatorDescription(ABC): :ivar resolve: The resolver function to use for this designator, defaults to self.ground """ - def __init__(self, resolver: Optional[Callable] = None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + def __init__(self, resolver: Optional[Callable] = None, ontology_concept_holders: Optional[List[OntologyConceptHolder]] = None): """ Create a Designator description. - :param resolver: The grounding method used for the description. The grounding method creates a location instance that matches the description. - :param ontology_concepts: A list of ontology concepts that the designator is categorized as or associated with + :param resolver: The grounding method used for the description. The grounding method creates a location instance + that matches the description. + :param ontology_concept_holders: A list of holders of ontology concepts that the designator is categorized as or associated with """ if resolver is None: self.resolve = self.ground - self.ontology_concepts = [] if ontology_concepts is None else ontology_concepts + self.ontology_concept_holders = [] if ontology_concept_holders is None else ontology_concept_holders def make_dictionary(self, properties: List[str]): """ @@ -371,9 +372,9 @@ def copy(self) -> DesignatorDescription: def get_default_ontology_concept(self) -> owlready2.Thing: """ - Returns the first element of ontology_concepts if there is, else None + Returns the first element of ontology_concept_holders if there is, else None """ - return self.ontology_concepts[0] if len(self.ontology_concepts) > 0 else None + return self.ontology_concept_holders[0] if len(self.ontology_concept_holders) > 0 else None class ActionDesignatorDescription(DesignatorDescription, Language): """ @@ -449,20 +450,36 @@ def insert(self, session: Session, *args, **kwargs) -> ORMAction: return action - def __init__(self, resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + def __init__(self, resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Base of all action designator descriptions. :param resolver: An alternative resolver that returns an action designator - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) Language.__init__(self) + from .ontology.ontology import OntologyManager + self.soma = OntologyManager().soma def ground(self) -> Action: """Fill all missing parameters and chose plan to execute. """ raise NotImplementedError(f"{type(self)}.ground() is not implemented.") + def init_ontology_concepts(self, ontology_concept_classes: Dict[str, Type[owlready2.Thing]]): + """ + Initialize the ontology concept holders for this action designator + :param ontology_concept_classes: The ontology concept classes that the action is categorized as or associated with + :param ontology_concept_name: The name of the ontology concept instance to be created + """ + from .ontology.ontology_common import OntologyConceptHolder + if not self.ontology_concept_holders: + for concept_name, concept_class in ontology_concept_classes.items(): + if concept_class: + existing_holders = OntologyConceptHolder.get_ontology_concept_holders_by_class(concept_class) + self.ontology_concept_holders.extend(existing_holders if existing_holders \ + else [OntologyConceptHolder(concept_class(concept_name))]) + def __iter__(self): """ Iterate through all possible actions fitting this description @@ -488,8 +505,8 @@ class Location: The resolved pose of the location designator. Pose is inherited by all location designator. """ - def __init__(self, resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): - super().__init__(resolver, ontology_concepts) + def __init__(self, resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): + super().__init__(resolver, ontology_concept_holders) def ground(self) -> Location: """ @@ -635,16 +652,16 @@ def special_knowledge_adjustment_pose(self, grasp: str, pose: Pose) -> Pose: return pose def __init__(self, names: Optional[List[str]] = None, types: Optional[List[ObjectType]] = None, - resolver: Optional[Callable] = None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + resolver: Optional[Callable] = None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Base of all object designator descriptions. Every object designator has the name and type of the object. :param names: A list of names that could describe the object :param types: A list of types that could represent the object :param resolver: An alternative resolver that returns an object designator for the list of names and types - :param ontology_concepts: A list of ontology concepts that the object is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the object is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.types: Optional[List[ObjectType]] = types self.names: Optional[List[str]] = names diff --git a/src/pycram/designators/action_designator.py b/src/pycram/designators/action_designator.py index b5b58e938..eeabfb9a6 100644 --- a/src/pycram/designators/action_designator.py +++ b/src/pycram/designators/action_designator.py @@ -2,6 +2,12 @@ from typing_extensions import List, Union, Callable, Optional from typing_extensions import Any, Union +try: + import owlready2 + from owlready2 import * +except ImportError: + owlready2 = None + from .object_designator import ObjectDesignatorDescription, BelieveObject, ObjectPart from ..datastructures.enums import Arms from ..designator import ActionDesignatorDescription @@ -13,30 +19,25 @@ CloseActionPerformable, GraspingActionPerformable, ReleaseActionPerformable) from ..datastructures.pose import Pose -try: - import owlready2 -except ImportError: - owlready2 = None - -from pycram.ontology import OntologyManager class MoveTorsoAction(ActionDesignatorDescription): """ Action Designator for Moving the torso of the robot up and down """ - def __init__(self, positions: List[float], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + def __init__(self, positions: List[float], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Create a designator description to move the torso of the robot up and down. :param positions: List of possible positions of the robots torso, possible position is a float of height in metres :param resolver: An optional resolver that returns a performable designator for a designator description. - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.positions: List[float] = positions - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.MoveTorso] + + if self.soma: + self.init_ontology_concepts({"move_torso": self.soma.MoveTorso}) def ground(self) -> MoveTorsoActionPerformable: """ @@ -62,20 +63,21 @@ class SetGripperAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], motions: List[str], resolver=None, - ontology_concepts: Optional[List[owlready2.Thing]] = None): + ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Sets the gripper state, the desired state is given with the motion. Motion can either be 'open' or 'close'. :param grippers: A list of possible grippers :param motions: A list of possible motions :param resolver: An alternative resolver that returns a performable designator for a designator description - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.grippers: List[str] = grippers self.motions: List[str] = motions - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.SettingGripper] + + if self.soma: + self.init_ontology_concepts({"setting_gripper": self.soma.SettingGripper}) def ground(self) -> SetGripperActionPerformable: """ @@ -103,12 +105,13 @@ class ReleaseAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], object_designator_description: ObjectDesignatorDescription, - resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): - super().__init__(resolver, ontology_concepts) + resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): + super().__init__(resolver, ontology_concept_holders) self.grippers: List[str] = grippers self.object_designator_description = object_designator_description - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.Releasing] + + if self.soma: + self.init_ontology_concepts({"releasing": self.soma.Releasing}) def ground(self) -> ReleaseActionPerformable: return ReleaseActionPerformable(self.grippers[0], self.object_designator_description.ground()) @@ -126,13 +129,14 @@ class GripAction(ActionDesignatorDescription): """ def __init__(self, grippers: List[str], object_designator_description: ObjectDesignatorDescription, - efforts: List[float], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): - super().__init__(resolver, ontology_concepts) + efforts: List[float], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): + super().__init__(resolver, ontology_concept_holders) self.grippers: List[str] = grippers self.object_designator_description: ObjectDesignatorDescription = object_designator_description self.efforts: List[float] = efforts - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.Holding] + + if self.soma: + self.init_ontology_concepts({"holding": self.soma.Holding}) def ground(self) -> GripActionPerformable: return GripActionPerformable(self.grippers[0], self.object_designator_description.ground(), self.efforts[0]) @@ -142,18 +146,19 @@ class ParkArmsAction(ActionDesignatorDescription): Park the arms of the robot. """ - def __init__(self, arms: List[Arms], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + def __init__(self, arms: List[Arms], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Moves the arms in the pre-defined parking position. Arms are taken from pycram.enum.Arms :param arms: A list of possible arms, that could be used :param resolver: An optional resolver that returns a performable designator from the designator description - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.arms: List[Arms] = arms - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = OntologyManager().soma.ParkingArms + + if self.soma: + self.init_ontology_concepts({"parking_arms": self.soma.ParkingArms}) def ground(self) -> ParkArmsActionPerformable: """ @@ -170,7 +175,7 @@ class PickUpAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], - arms: List[str], grasps: List[str], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + arms: List[str], grasps: List[str], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Lets the robot pick up an object. The description needs an object designator describing the object that should be picked up, an arm that should be used as well as the grasp from which side the object should be picked up. @@ -179,15 +184,16 @@ def __init__(self, object_designator_description: Union[ObjectDesignatorDescrip :param arms: List of possible arms that could be used :param grasps: List of possible grasps for the object :param resolver: An optional resolver that returns a performable designator with elements from the lists of possible paramter - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.grasps: List[str] = grasps - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.PickingUp] + + if self.soma: + self.init_ontology_concepts({"picking_up": self.soma.PickingUp}) def ground(self) -> PickUpActionPerformable: """ @@ -211,7 +217,7 @@ class PlaceAction(ActionDesignatorDescription): def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], target_locations: List[Pose], - arms: List[str], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + arms: List[str], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Create an Action Description to place an object @@ -219,15 +225,16 @@ def __init__(self, :param target_locations: List of possible positions/orientations to place the object :param arms: List of possible arms to use :param resolver: Grounding method to resolve this designator - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.target_locations: List[Pose] = target_locations self.arms: List[str] = arms - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.Placing] + + if self.soma: + self.init_ontology_concepts({"placing": self.soma.Placing}) def ground(self) -> PlaceActionPerformable: """ @@ -246,18 +253,19 @@ class NavigateAction(ActionDesignatorDescription): Navigates the Robot to a position. """ - def __init__(self, target_locations: List[Pose], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + def __init__(self, target_locations: List[Pose], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Navigates the robot to a location. :param target_locations: A list of possible target locations for the navigation. :param resolver: An alternative resolver that creates a performable designator from the list of possible parameter - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.target_locations: List[Pose] = target_locations - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.Navigating] + + if self.soma: + self.init_ontology_concepts({"navigating": self.soma.Navigating}) def ground(self) -> NavigateActionPerformable: """ @@ -276,7 +284,7 @@ class TransportAction(ActionDesignatorDescription): def __init__(self, object_designator_description: Union[ObjectDesignatorDescription, ObjectDesignatorDescription.Object], arms: List[str], - target_locations: List[Pose], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + target_locations: List[Pose], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Designator representing a pick and place plan. @@ -284,15 +292,16 @@ def __init__(self, :param arms: A List of possible arms that could be used for transporting :param target_locations: A list of possible target locations for the object to be placed :param resolver: An alternative resolver that returns a performable designator for the list of possible parameter - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.object_designator_description: Union[ ObjectDesignatorDescription, ObjectDesignatorDescription.Object] = object_designator_description self.arms: List[str] = arms self.target_locations: List[Pose] = target_locations - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.Transporting] + + if self.soma: + self.init_ontology_concepts({"transporting": self.soma.Transporting}) def ground(self) -> TransportActionPerformable: """ @@ -312,18 +321,19 @@ class LookAtAction(ActionDesignatorDescription): Lets the robot look at a position. """ - def __init__(self, targets: List[Pose], resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + def __init__(self, targets: List[Pose], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Moves the head of the robot such that it points towards the given target location. :param targets: A list of possible locations to look at :param resolver: An alternative resolver that returns a performable designator for a list of possible target locations - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.targets: List[Pose] = targets - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.LookingAt] + + if self.soma: + self.init_ontology_concepts({"looking_at": self.soma.LookingAt}) def ground(self) -> LookAtActionPerformable: """ @@ -340,18 +350,20 @@ class DetectAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: ObjectDesignatorDescription, resolver=None, - ontology_concepts: Optional[List[owlready2.Thing]] = None): + ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Tries to detect an object in the field of view (FOV) of the robot. :param object_designator_description: Object designator describing the object :param resolver: An alternative resolver - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.object_designator_description: ObjectDesignatorDescription = object_designator_description - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.LookingFor, OntologyManager().soma.CheckingObjectPresence] + + if self.soma: + self.init_ontology_concepts({"looking_for": self.soma.LookingFor, + "checking_object_presence": self.soma.CheckingObjectPresence}) def ground(self) -> DetectActionPerformable: """ @@ -370,20 +382,21 @@ class OpenAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: ObjectPart, arms: List[str], resolver=None, - ontology_concepts: Optional[List[owlready2.Thing]] = None): + ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Moves the arm of the robot to open a container. :param object_designator_description: Object designator describing the handle that should be used to open :param arms: A list of possible arms that should be used :param resolver: A alternative resolver that returns a performable designator for the lists of possible parameter. - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.Opening] + + if self.soma: + self.init_ontology_concepts({"opening": self.soma.Opening}) def ground(self) -> OpenActionPerformable: """ @@ -403,20 +416,21 @@ class CloseAction(ActionDesignatorDescription): """ def __init__(self, object_designator_description: ObjectPart, arms: List[str], - resolver=None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Attempts to close an open container :param object_designator_description: Object designator description of the handle that should be used :param arms: A list of possible arms to use :param resolver: An alternative resolver that returns a performable designator for the list of possible parameter - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.object_designator_description: ObjectPart = object_designator_description self.arms: List[str] = arms - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.Closing] + + if self.soma: + self.init_ontology_concepts({"closing": self.soma.Closing}) def ground(self) -> CloseActionPerformable: """ @@ -434,7 +448,7 @@ class GraspingAction(ActionDesignatorDescription): """ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDescription, ObjectPart], - resolver: Callable = None, ontology_concepts: Optional[List[owlready2.Thing]] = None): + resolver: Callable = None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Will try to grasp the object described by the given description. Grasping is done by moving into a pre grasp position 10 cm before the object, opening the gripper, moving to the object and then closing the gripper. @@ -442,13 +456,14 @@ def __init__(self, arms: List[str], object_description: Union[ObjectDesignatorDe :param arms: List of Arms that should be used for grasping :param object_description: Description of the object that should be grasped :param resolver: An alternative resolver to get a specified designator from the designator description - :param ontology_concepts: A list of ontology concepts that the action is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the action is categorized as or associated with """ - super().__init__(resolver, ontology_concepts) + super().__init__(resolver, ontology_concept_holders) self.arms: List[str] = arms self.object_description: ObjectDesignatorDescription = object_description - if not self.ontology_concepts and OntologyManager().soma is not None: - self.ontology_concepts = [OntologyManager().soma.Grasping] + + if self.soma: + self.init_ontology_concepts({"grasping": self.soma.Grasping}) def ground(self) -> GraspingActionPerformable: """ diff --git a/src/pycram/designators/object_designator.py b/src/pycram/designators/object_designator.py index 4ce388c4b..ea73ec96f 100644 --- a/src/pycram/designators/object_designator.py +++ b/src/pycram/designators/object_designator.py @@ -72,7 +72,7 @@ def __init__(self, names: List[str], :param part_of: Parent object of which the part should be described :param type: Type of the part :param resolver: An alternative resolver to resolve the input parameter to an object designator - :param ontology_concepts: A list of ontology concepts that the object part is categorized as or associated with + :param ontology_concept_holders: A list of ontology concepts that the object part is categorized as or associated with """ super().__init__(names, type, resolver) @@ -122,7 +122,7 @@ class Object(ObjectDesignatorDescription.Object): def __init__(self, names: List[str], types: List[str], reference_frames: List[str], timestamps: List[float], resolver: Optional[Callable] = None, - ontology_concepts: Optional[List[owlready2.Thing]] = None): + ontology_concept_holders: Optional[List[owlready2.Thing]] = None): """ Describing an object resolved through knowrob. @@ -131,9 +131,9 @@ def __init__(self, names: List[str], types: List[str], :param reference_frames: Frame of reference in which the object position should be :param timestamps: Timestamps for which positions should be returned :param resolver: An alternative resolver that resolves the input parameter to an object designator. - :param ontology_concepts: A list of ontology concepts that the object is categorized as + :param ontology_concept_holders: A list of ontology concepts that the object is categorized as """ - super(LocatedObject, self).__init__(names, types, resolver, ontology_concepts) + super(LocatedObject, self).__init__(names, types, resolver, ontology_concept_holders) self.reference_frames: List[str] = reference_frames self.timestamps: List[float] = timestamps diff --git a/src/pycram/ontology.py b/src/pycram/ontology/ontology.py similarity index 80% rename from src/pycram/ontology.py rename to src/pycram/ontology/ontology.py index accdbe02a..d3c4b9784 100644 --- a/src/pycram/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -16,9 +16,12 @@ from pycram.helper import Singleton from pycram.designator import DesignatorDescription, ObjectDesignatorDescription +from pycram.ontology.ontology_common import OntologyConceptHolder + SOMA_HOME_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA-HOME.owl" SOMA_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA.owl" + class OntologyManager(object, metaclass=Singleton): """ Singleton class as the adapter accessing data of an OWL ontology, largely based on owlready2. @@ -105,32 +108,6 @@ def set_dul(ontology__, ontology_name): rospy.logerr(f"Ontology [{ontology_.base_iri}]\'s name: {ontology_.name} failed being loaded") return - ontology_concept_class = self.get_ontology_class_by_ontology(ontology_, "OntologyConcept") - if ontology_concept_class: - del ontology_concept_class - with ontology_: - class OntologyConcept(owlready2.Thing): - """ - A default ontology concept class that inherits from owlready2.Thing with a list of designators as its attribute - """ - namespace = ontology_ - - def __init__(self, name: str): - """ - Create a new ontology concept - - :param name: concept name - """ - super().__init__(name) - self.designators: List[DesignatorDescription] = [] - self.resolve: Callable = None - - def get_default_designator(self) -> DesignatorDescription: - """ - Return the first element of designators if there is, else None - """ - return self.designators[0] if len(self.designators) > 0 else None - @staticmethod def print_ontology_class(ontology_class): """ @@ -177,10 +154,11 @@ def browse_ontologies(self, condition: Optional[Callable] = None, func: Optional func(sub_onto, **kwargs) break - def save(self, target_filename: str = ""): + def save(self, target_filename: str = "", overwrite: bool = False): """ Save the current ontology to disk :param target_filename: full name path of a file which the ontologies are saved into. + :param overwrite: overwrite an existing file if it exists If empty, they are saved to the same original OWL file from which the main ontology was loaded, or a file at the same folder with ontology search path specified at constructor if it was loaded from a remote IRI. """ @@ -190,11 +168,19 @@ def save(self, target_filename: str = ""): self.ontology_world.save() # Save ontologies to OWL - current_ontology_filename = self.main_ontology_iri if Path(self.main_ontology_iri).exists() \ + is_current_ontology_local = Path(self.main_ontology_iri).exists() + current_ontology_filename = self.main_ontology_iri if is_current_ontology_local \ else f"{Path(self.ontology_world.filename).parent.absolute()}/{Path(self.main_ontology_iri).stem}.owl" - save_filename = target_filename if target_filename else current_ontology_filename - self.main_ontology.save(save_filename) - rospy.loginfo(f"Ontologies have been saved to {save_filename}") + save_to_same_file = is_current_ontology_local and (target_filename == current_ontology_filename) + if save_to_same_file and not overwrite: + rospy.logerr(f"Ontologies cannot be saved to the originally loaded [{target_filename}] if not by overwriting") + else: + save_filename = target_filename if target_filename else current_ontology_filename + self.main_ontology.save(save_filename) + if save_to_same_file and overwrite: + rospy.logwarn(f"Ontologies have been overwritten to {save_filename}") + else: + rospy.loginfo(f"Ontologies have been saved to {save_filename}") def create_ontology_concept_class(self, class_name: str, ontology_parent_concept_class: Optional[owlready2.Thing] = None) \ @@ -209,9 +195,10 @@ def create_ontology_concept_class(self, class_name: str, ontology_concept_class = self.get_ontology_class_by_ontology(self.main_ontology, class_name) if ontology_concept_class: return ontology_concept_class - else: - return types.new_class(class_name, (self.main_ontology.OntologyConcept, ontology_parent_concept_class,) - if inspect.isclass(ontology_parent_concept_class) else (self.main_ontology.OntologyConcept,)) + + with self.main_ontology: + return types.new_class(class_name, (owlready2.Thing, ontology_parent_concept_class,) + if inspect.isclass(ontology_parent_concept_class) else (owlready2.Thing,)) @staticmethod def create_ontology_property_class(class_name: str, @@ -225,8 +212,9 @@ def create_ontology_property_class(class_name: str, :return: The created ontology class """ parent_class = ontology_parent_property_class if (ontology_parent_property_class and - issubclass(ontology_parent_property_class, owlready2.Property)) \ - else None + issubclass(ontology_parent_property_class, + owlready2.Property)) \ + else None return types.new_class(class_name, (parent_class,) if parent_class else (owlready2.Property,)) def get_ontology_classes_by_condition(self, condition: Callable, first_match_only=False, **kwargs) \ @@ -389,34 +377,46 @@ def create_ontology_linked_designator(self, designator_name: str, designator_cla def create_ontology_linked_designator_by_concept(self, designator_name: str, designator_class: Type[DesignatorDescription], - ontology_concept_class: Type[ - owlready2.Thing]) -> DesignatorDescription: + ontology_concept_class: Type[owlready2.Thing]) -> DesignatorDescription: """ - Create an object designator that belongs to a given ontology concept class + Create a designator that belongs to a given ontology concept class :param designator_name: Designator name :param designator_class: Designator class - :param ontology_concept_class: Ontology concept class which the output designator is associated with + :param ontology_concept_class: An ontology concept class which the output designator is associated with :return: An object designator associated with the given ontology concept class """ - designator = designator_class(names=[designator_name]) if issubclass(designator_class, - ObjectDesignatorDescription) \ - else designator_class() - designator_ontology_concept = ontology_concept_class(name=f'{designator_name}_concept') - self.set_ontology_concept_designator_connection(designator, designator_ontology_concept) + ontology_concept_name = f'{designator_name}_concept' + if len(OntologyConceptHolder.get_designators_of_ontology_concept(ontology_concept_name)) > 0: + rospy.logerr(f"A designator named [{designator_name}] is already created for ontology concept [{ontology_concept_name}]") + return None + + # Create a designator of `designator_class` + designator = designator_class(names=[designator_name]) if issubclass(designator_class, ObjectDesignatorDescription) \ + else designator_class() + + # Link designator with an ontology concept of `ontology_concept_class` + ontology_concept_holder = OntologyConceptHolder.get_ontology_concept_holder_by_name(ontology_concept_name) + if ontology_concept_holder is None: + ontology_concept_holder = OntologyConceptHolder(ontology_concept_class(name=ontology_concept_name, + namespace=self.main_ontology)) + self.set_ontology_concept_designator_connection(designator, ontology_concept_holder) return designator @staticmethod def set_ontology_concept_designator_connection(designator: DesignatorDescription, - ontology_concept: owlready2.Thing): + ontology_concept_holder: OntologyConceptHolder): """ Set two-way connection between a designator and an ontology concept :param designator: Designator - :param ontology_concept: Ontology concept + :param ontology_concept_holder: Ontology concept holder """ - designator.ontology_concepts.append(ontology_concept) - ontology_concept.designators.append(designator) + if ontology_concept_holder not in designator.ontology_concept_holders: + designator.ontology_concept_holders.append(ontology_concept_holder) + + if not ontology_concept_holder.has_designator(designator): + ontology_concept_holder.designators.append(designator) @staticmethod def set_ontology_relation(subject_designator: DesignatorDescription, @@ -429,27 +429,32 @@ def set_ontology_relation(subject_designator: DesignatorDescription, :param object_designator: An object designator as the ontology object :param predicate_name: Name of the predicate """ - for subject_ontology_concept in subject_designator.ontology_concepts: - if hasattr(subject_ontology_concept, predicate_name): - getattr(subject_ontology_concept, predicate_name).extend(object_designator.ontology_concepts) + for subject_concept_holder in subject_designator.ontology_concept_holders: + subject_concept = subject_concept_holder.ontology_concept + if hasattr(subject_concept, predicate_name): + object_concepts_list = getattr(subject_concept, predicate_name) + object_concepts_names = [concept.name for concept in object_concepts_list] + for holder in object_designator.ontology_concept_holders: + if holder.ontology_concept.name not in object_concepts_names: + object_concepts_list.append(holder.ontology_concept) else: - rospy.logerr(f"[{subject_ontology_concept.name}] has no predicate [{predicate_name}]") + rospy.logerr(f"Ontology concept [{subject_concept.name}] has no predicate named [{predicate_name}]") @staticmethod def get_designators_by_subject_predicate(subject: DesignatorDescription, predicate_name: str) -> List[DesignatorDescription]: """ - Get list of designators for a given subject designator and predicate + Get list of designators of an ontology-object concept given a subject designator and predicate - :param subject: The subject designator - :param predicate_name: The predicate name of the relation + :param subject: The ontology-subject designator + :param predicate_name: The ontology-predicate name of the relation :return: List of object designators """ - designators = list(itertools.chain( - *[ontology_subject.designators for subject_ontology_concept in subject.ontology_concepts - for ontology_subject in getattr(subject_ontology_concept, predicate_name) - if hasattr(subject_ontology_concept, predicate_name)])) - return designators + return list(itertools.chain( + *[OntologyConceptHolder.get_designators_of_ontology_concept(object_concept.name) + for subject_concept_holder in subject.ontology_concept_holders + for object_concept in getattr(subject_concept_holder.ontology_concept, predicate_name) + if hasattr(subject_concept_holder.ontology_concept, predicate_name)])) def create_ontology_object_designator_from_type(self, object_type: ObjectType, ontology_concept_class=Type[owlready2.Thing]) \ @@ -462,3 +467,15 @@ def create_ontology_object_designator_from_type(self, object_type: ObjectType, object_designator.types = [object_type_name] return object_designator + @staticmethod + def destroy_ontology_class(ontology_class, destroy_instances: bool = True): + """ + Destroy all classes of an ontology + :param ontology_class: The ontology class to be destroyed + :param destroy_instances: Whether to destroy instances of those ontology classes + """ + if destroy_instances: + for ontology_individual in ontology_class.instances(): + destroy_entity(ontology_individual) + OntologyConceptHolder.remove_ontology_concept(ontology_class.name) + destroy_entity(ontology_class) diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py new file mode 100644 index 000000000..83054ae3d --- /dev/null +++ b/src/pycram/ontology/ontology_common.py @@ -0,0 +1,140 @@ +import logging +from typing import Optional, List, Type +import rospy + +try: + import owlready2 + from owlready2 import * +except ImportError: + owlready2 = None + logging.warn("Could not import owlready2") + + +class OntologyConceptHolder(object): + """ + Wrapper of an ontology concept that is either dynamically created or loaded from an ontology. + NOTE: Since an ontology concept class, after being saved into an ontology file, must be reusable in the next time + the ontology is loaded, there must be no other attributes should be created for it aside from ones inherited from `owlready2.Thing`! + + Attributes + ---------- + designators: List[DesignatorDescription] + List of designators associated with this ontology concept + resolve: Callable + A callable used to resolve the designators to whatever of interest, like designators or their resolving results + ontology_concept: owlready2.Thing + An ontology concept, either dynamically created, or loaded from an ontology + """ + __all_ontology_concept_holders = {} + + def __init__(self, ontology_concept: owlready2.Thing): + """ + :param ontology_concept: An ontology concept instance + """ + self.ontology_concept = ontology_concept + self.designators = [] + self.resolve = None + if ontology_concept.name in self.__all_ontology_concept_holders: + rospy.logerr(f"OntologyConceptHolder for [{ontology_concept.name}] was already created!") + self.__all_ontology_concept_holders.setdefault(ontology_concept.name, self) + + @property + def name(self): + """ + :return: Ontology concept name + """ + return self.ontology_concept.name if self.ontology_concept else "" + + @classmethod + def remove_ontology_concept(cls, ontology_concept_name: str): + """ + Remove an ontology concept from `__all_ontology_concept_holders` + """ + if ontology_concept_name in cls.__all_ontology_concept_holders: + del cls.__all_ontology_concept_holders[ontology_concept_name] + + def __eq__(self, other): + """ + Equality check based on name of the ontology concept + :param other: Other ontology concept instance to check against + """ + return ((self.ontology_concept == other.ontology_concept) or + (self.ontology_concept.name == other.ontology_concept.name)) + + def get_default_designator(self): + """ + :return: The first element of designators if there is, else None + """ + return self.designators[0] if len(self.designators) > 0 else None + + @classmethod + def get_ontology_concepts_by_class(cls, ontology_concept_class: Type[owlready2.Thing]) -> List[owlready2.Thing]: + """ + :ontology_concept_class: An ontology concept class + :return: A list of ontology concepts for a given class + """ + return list(itertools.chain( + *[concept_holder.ontology_concept + for concept_holder in cls.__all_ontology_concept_holders.values() + if issubclass(concept_holder.ontology_concept, ontology_concept_class)])) + + @classmethod + def get_ontology_concept_by_name(cls, ontology_concept_name: str) -> owlready2.Thing: + """ + :ontology_concept_name: Name of an ontology concept + Return the ontology concept holder for one of a given name if exists, otherwise None + """ + concept_holder = cls.__all_ontology_concept_holders.get(ontology_concept_name) + return concept_holder.ontology_concept if concept_holder else None + + @classmethod + def get_ontology_concept_holders_by_class(cls, ontology_concept_class: Type[owlready2.Thing]): + """ + :ontology_concept_class: An ontology concept class + Return a list of ontology concept holders for the given ontology concept class + """ + return list(itertools.chain( + *[concept_holder for concept_holder in cls.__all_ontology_concept_holders.values() + if issubclass(concept_holder.ontology_concept, ontology_concept_class)])) + + @classmethod + def get_ontology_concept_holder_by_name(cls, ontology_concept_name: str): + """ + :ontology_concept_name: Name of an ontology concept + Return the ontology concept holder for one of a given name if exists, otherwise None + """ + return cls.__all_ontology_concept_holders.get(ontology_concept_name) + + @classmethod + def get_ontology_concept_of_designator(cls, designator): + """ + :param designator: A designator associated with an ontology concept + :return: The corresponding ontology concept for a given designator + """ + for ontology_concept_holder in cls.__all_ontology_concept_holders.values(): + if designator in ontology_concept_holder.designators: + return ontology_concept_holder.ontology_concept + return None + + @classmethod + def get_designators_of_ontology_concept(cls, ontology_concept_name: str): + """ + :param ontology_concept_name: An ontology concept name + :return: The corresponding designators associated with the given ontology concept + """ + return cls.__all_ontology_concept_holders[ontology_concept_name].designators \ + if ontology_concept_name in cls.__all_ontology_concept_holders else [] + + def has_designator(self, designator): + """ + :return: True if a given designator was registered by this ontology concept holder, either by itself or under + another of the same name + """ + if designator in self.designators: + return True + if not hasattr(designator, "name"): + return False + for our_designator in self.designators: + if hasattr(our_designator, "name") and (getattr(our_designator, "name") == getattr(designator, "name")): + return True + return False diff --git a/test/bullet_world_testcase.py b/test/bullet_world_testcase.py index 63976cd92..520d74fda 100644 --- a/test/bullet_world_testcase.py +++ b/test/bullet_world_testcase.py @@ -10,7 +10,7 @@ from pycram.datastructures.enums import ObjectType, WorldMode from pycram.object_descriptors.urdf import ObjectDescription from pycram.ros.viz_marker_publisher import VizMarkerPublisher -from pycram.ontology import OntologyManager, SOMA_ONTOLOGY_IRI +from pycram.ontology.ontology import OntologyManager, SOMA_ONTOLOGY_IRI class BulletWorldTestCase(unittest.TestCase): diff --git a/test/test_action_designator.py b/test/test_action_designator.py index d1d4b5401..4ca2157a6 100644 --- a/test/test_action_designator.py +++ b/test/test_action_designator.py @@ -17,7 +17,7 @@ class TestActionDesignatorGrounding(BulletWorldTestCase): def test_move_torso(self): description = action_designator.MoveTorsoAction([0.3]) # SOMA ontology seems not provide a corresponding concept yet for MoveTorso - #self.assertTrue(description.ontology_concepts) + #self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().position, 0.3) with simulated_robot: description.resolve().perform() @@ -25,7 +25,7 @@ def test_move_torso(self): def test_set_gripper(self): description = action_designator.SetGripperAction(["left"], ["open", "close"]) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().motion, "open") self.assertEqual(len(list(iter(description))), 2) @@ -37,21 +37,21 @@ def test_set_gripper(self): def test_release(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.ReleaseAction(["left"], object_description) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().object_designator.name, "milk") def test_grip(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.GripAction(["left"], object_description, [0.5]) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().gripper, "left") self.assertEqual(description.ground().object_designator.name, "milk") def test_park_arms(self): description = action_designator.ParkArmsAction([Arms.BOTH]) self.assertEqual(description.ground().arm, Arms.BOTH) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) with simulated_robot: description.resolve().perform() for joint, pose in robot_description.get_static_joint_chain("right", "park").items(): @@ -63,12 +63,12 @@ def test_park_arms(self): def test_navigate(self): description = action_designator.NavigateAction([Pose([1, 0, 0], [0, 0, 0, 1])]) self.assertEqual(description.ground().target_location, Pose([1, 0, 0], [0, 0, 0, 1])) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) def test_pick_up(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.PickUpAction(object_description, ["left"], ["front"]) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: NavigateActionPerformable(Pose([0.6, 0.4, 0], [0, 0, 0, 1])).perform() @@ -79,7 +79,7 @@ def test_pick_up(self): def test_place(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.PlaceAction(object_description, [Pose([1.3, 1, 0.9], [0, 0, 0, 1])], ["left"]) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: NavigateActionPerformable(Pose([0.6, 0.4, 0], [0, 0, 0, 1])).perform() @@ -90,7 +90,7 @@ def test_place(self): def test_look_at(self): description = action_designator.LookAtAction([Pose([1, 0, 1])]) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().target, Pose([1, 0, 1])) with simulated_robot: description.resolve().perform() @@ -101,7 +101,7 @@ def test_detect(self): self.milk.set_pose(Pose([1.5, 0, 1.2])) object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.DetectAction(object_description) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().object_designator.name, "milk") with simulated_robot: detected_object = description.resolve().perform() @@ -114,14 +114,14 @@ def test_detect(self): def test_open(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.OpenAction(object_description, ["left"], [1]) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().object_designator.name, "milk") @unittest.skip def test_close(self): object_description = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.CloseAction(object_description, ["left"]) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) self.assertEqual(description.ground().object_designator.name, "milk") def test_transport(self): @@ -130,7 +130,7 @@ def test_transport(self): ["left"], [Pose([-1.35, 0.78, 0.95], [0.0, 0.0, 0.16439898301071468, 0.9863939245479175])]) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) with simulated_robot: action_designator.MoveTorsoAction([0.2]).resolve().perform() description.resolve().perform() @@ -144,7 +144,7 @@ def test_grasping(self): self.robot.set_pose(Pose([-2.14, 1.06, 0])) milk_desig = object_designator.ObjectDesignatorDescription(names=["milk"]) description = action_designator.GraspingAction(["right"], milk_desig) - self.assertTrue(description.ontology_concepts) + self.assertTrue(description.ontology_concept_holders) with simulated_robot: description.resolve().perform() dist = np.linalg.norm( diff --git a/test/test_ontology.py b/test/test_ontology.py new file mode 100644 index 000000000..3a1585a5b --- /dev/null +++ b/test/test_ontology.py @@ -0,0 +1,141 @@ +import unittest +import inspect +import logging +from pathlib import Path +from typing import Optional, List, Type, Callable + +import rospy +from pycram.datastructures.enums import ObjectType +from pycram.designator import DesignatorDescription, ObjectDesignatorDescription +from pycram.task import with_tree + +try: + import owlready2 + from owlready2 import * +except ImportError: + owlready2 = None + logging.warn("Could not import owlready2, ontology unit-tests could not run") + +from pycram.ontology.ontology import OntologyManager, SOMA_ONTOLOGY_IRI +from pycram.ontology.ontology_common import OntologyConceptHolder + + +class TestOntologyManager(unittest.TestCase): + ontology_manager: OntologyManager + main_ontology: owlready2.Ontology + soma: owlready2.Ontology + dul: owlready2.Ontology + + @classmethod + def setUpClass(cls): + cls.ontology_manager = OntologyManager(SOMA_ONTOLOGY_IRI) + cls.main_ontology = cls.ontology_manager.main_ontology + cls.soma = cls.ontology_manager.soma + cls.dul = cls.ontology_manager.dul + + @classmethod + def tearDownClass(cls): + save_dir = Path(f"{Path.home()}/ontologies") + save_dir.mkdir(parents=True, exist_ok=True) + cls.ontology_manager.save(f"{save_dir}/{Path(cls.ontology_manager.main_ontology_iri).stem}.owl") + + def test_ontology_manager(self): + self.assertIs(self.ontology_manager, OntologyManager()) + + def test_ontology_concept_holder(self): + dynamic_ontology_concept_class = self.ontology_manager.create_ontology_concept_class('DynamicOntologyConcept') + dynamic_ontology_concept_holder = OntologyConceptHolder(dynamic_ontology_concept_class(name='dynamic_ontology_concept1', + namespace=self.main_ontology)) + self.assertTrue(owlready2.isinstance_python(dynamic_ontology_concept_holder.ontology_concept, owlready2.Thing)) + + def test_loaded_ontologies(self): + self.assertIsNotNone(self.main_ontology) + self.assertTrue(self.main_ontology.loaded) + self.assertIsNotNone(self.soma) + self.assertTrue(self.soma.loaded) + self.assertIsNotNone(self.dul) + self.assertTrue(self.dul.loaded) + + def test_ontology_concept_class_dynamic_creation(self): + dynamic_ontology_concept_class = self.ontology_manager.create_ontology_concept_class('DynamicOntologyConcept') + self.assertIsNotNone(dynamic_ontology_concept_class) + self.assertEqual(dynamic_ontology_concept_class.namespace, self.main_ontology) + self.assertIs(dynamic_ontology_concept_class, self.main_ontology.DynamicOntologyConcept) + self.assertIs(issubclass(dynamic_ontology_concept_class, owlready2.Thing), True) + dynamic_ontology_concept = dynamic_ontology_concept_class(name='dynamic_ontology_concept2', + namespace=self.main_ontology) + self.assertTrue(owlready2.isinstance_python(dynamic_ontology_concept, owlready2.Thing)) + + def test_ontology_triple_classes_dynamic_creation(self): + # Test dynamic triple classes creation without inheritance from existing parent ontology classes + self.ontology_manager.create_ontology_triple_classes(subject_class_name="OntologySubject", + object_class_name="OntologyObject", + predicate_name="predicate", + inverse_predicate_name="inverse_predicate") + + subject_class = self.main_ontology.OntologySubject + self.assertIsNotNone(subject_class) + subject_individual = subject_class("subject") + self.assertIsNotNone(subject_individual.predicate) + + object_class = self.main_ontology.OntologyObject + self.assertIsNotNone(object_class) + object_individual = object_class("object") + self.assertIsNotNone(object_individual.inverse_predicate) + + # Test dynamic triple classes creation as inheriting from existing parent ontology classes + PLACEABLE_ON_PREDICATE_NAME = "placeable_on" + HOLD_OBJ_PREDICATE_NAME = "hold_obj" + self.ontology_manager.create_ontology_triple_classes(ontology_subject_parent_class=self.soma.Container, + subject_class_name="OntologyPlaceHolderObject", + ontology_object_parent_class=self.dul.PhysicalObject, + object_class_name="OntologyHandheldObject", + predicate_name=PLACEABLE_ON_PREDICATE_NAME, + inverse_predicate_name=HOLD_OBJ_PREDICATE_NAME, + ontology_property_parent_class=self.soma.affordsBearer, + ontology_inverse_property_parent_class=self.soma.isBearerAffordedBy) + + def create_ontology_handheld_object(object_name: str, ontology_parent_class: Type[owlready2.Thing]): + return self.ontology_manager.create_ontology_linked_designator(designator_name=object_name, + designator_class=ObjectDesignatorDescription, + ontology_concept_name=f"Onto{object_name}", + ontology_parent_class=ontology_parent_class) + + # Holdable object + egg = create_ontology_handheld_object("egg", self.main_ontology.OntologyHandheldObject) + # Placeholder object + egg_tray = create_ontology_handheld_object("egg_tray", self.main_ontology.OntologyPlaceHolderObject) + + # Create ontology relation between [Place-holder] and [Holdable obj] + self.ontology_manager.set_ontology_relation(subject_designator=egg, object_designator=egg_tray, + predicate_name=PLACEABLE_ON_PREDICATE_NAME) + + self.ontology_manager.set_ontology_relation(subject_designator=egg_tray, object_designator=egg, + predicate_name=HOLD_OBJ_PREDICATE_NAME) + + # Query potential designator candidates based on above-set ontology relations among them + egg_placeholders = [placeholder.names for placeholder in \ + self.ontology_manager.get_designators_by_subject_predicate(subject=egg, + predicate_name=PLACEABLE_ON_PREDICATE_NAME)] + self.assertTrue(len(egg_placeholders) == 1) + self.assertEqual(egg_placeholders[0], ["egg_tray"]) + + egg_tray_holdables = [placeholder.names for placeholder in \ + self.ontology_manager.get_designators_by_subject_predicate(subject=egg_tray, + predicate_name=HOLD_OBJ_PREDICATE_NAME)] + self.assertTrue(len(egg_tray_holdables) == 1) + self.assertEqual(egg_tray_holdables[0], ["egg"]) + + def test_ontology_class_destruction(self): + concept_class_name = 'DynamicOntologyConcept' + dynamic_ontology_concept_class = self.ontology_manager.create_ontology_concept_class(concept_class_name) + OntologyConceptHolder(dynamic_ontology_concept_class(name='dynamic_ontology_concept3', + namespace=self.main_ontology)) + + self.ontology_manager.destroy_ontology_class(dynamic_ontology_concept_class) + self.assertIsNone(self.ontology_manager.get_ontology_class(concept_class_name)) + self.assertFalse(OntologyConceptHolder.get_ontology_concepts_by_class(dynamic_ontology_concept_class)) + + +if __name__ == '__main__': + unittest.main() From f85d0bac357a6485d3c19b8edca4ac30c3f2de76 Mon Sep 17 00:00:00 2001 From: duc than Date: Mon, 8 Apr 2024 22:50:39 +0200 Subject: [PATCH 11/26] OntologyConceptHolder fix get_ontology_concept_holders_by_class() --- examples/ontology.ipynb | 19964 +++++++++++------------ src/pycram/ontology/ontology_common.py | 9 +- 2 files changed, 9979 insertions(+), 9994 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 057f7533d..1fa7ac7b7 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:18.087745Z", - "start_time": "2024-04-08T20:19:17.538901Z" + "end_time": "2024-04-08T20:55:57.383627Z", + "start_time": "2024-04-08T20:55:56.838138Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:18.102332Z", - "start_time": "2024-04-08T20:19:18.090445Z" + "end_time": "2024-04-08T20:55:57.390252Z", + "start_time": "2024-04-08T20:55:57.384452Z" } }, "outputs": [], @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:18.224362Z", - "start_time": "2024-04-08T20:19:18.102939Z" + "end_time": "2024-04-08T20:55:57.519038Z", + "start_time": "2024-04-08T20:55:57.390735Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712607558.220567]: Main Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712607558.221251]: Main Ontology namespace: SOMA-HOME\n", - "[INFO] [1712607558.221646]: Loaded ontologies:\n", - "[INFO] [1712607558.222010]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712607558.222345]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712607558.222734]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712609757.515278]: Main Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712609757.516029]: Main Ontology namespace: SOMA-HOME\n", + "[INFO] [1712609757.516432]: Loaded ontologies:\n", + "[INFO] [1712609757.516794]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712609757.517148]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712609757.517496]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -165,8 +165,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.448439Z", - "start_time": "2024-04-08T20:19:18.225227Z" + "end_time": "2024-04-08T20:56:00.885640Z", + "start_time": "2024-04-08T20:55:57.519577Z" } }, "outputs": [ @@ -174,9897 +174,9897 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712607558.344337]: -------------------\n", - "[INFO] [1712607558.345052]: SOMA.DesignedContainer \n", - "[INFO] [1712607558.345535]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712607558.346035]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.346615]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712607558.347133]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.404720]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712607558.405308]: Direct Instances: []\n", - "[INFO] [1712607558.405774]: Inverse Restrictions: []\n", - "[INFO] [1712607558.407346]: -------------------\n", - "[INFO] [1712607558.407762]: DUL.PhysicalObject \n", - "[INFO] [1712607558.408169]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607558.408559]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.408944]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712607558.409391]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.410317]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712607558.410637]: Direct Instances: []\n", - "[INFO] [1712607558.416413]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712607558.416840]: -------------------\n", - "[INFO] [1712607558.417231]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712607558.417602]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607558.418042]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.418360]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712607558.418702]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.419240]: Instances: []\n", - "[INFO] [1712607558.419521]: Direct Instances: []\n", - "[INFO] [1712607558.419794]: Inverse Restrictions: []\n", - "[INFO] [1712607558.420042]: -------------------\n", - "[INFO] [1712607558.420294]: DUL.PhysicalObject \n", - "[INFO] [1712607558.420550]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607558.420806]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.421066]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712607558.421373]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.422265]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712607558.422622]: Direct Instances: []\n", - "[INFO] [1712607558.425131]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712607558.425417]: -------------------\n", - "[INFO] [1712607558.425685]: DUL.PhysicalObject \n", - "[INFO] [1712607558.425940]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607558.426198]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.426458]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712607558.426768]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.427557]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712607558.427858]: Direct Instances: []\n", - "[INFO] [1712607558.430402]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712607558.430722]: -------------------\n", - "[INFO] [1712607558.430988]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712607558.431243]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607558.431535]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.431821]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712607558.432128]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.432647]: Instances: []\n", - "[INFO] [1712607558.432931]: Direct Instances: []\n", - "[INFO] [1712607558.433208]: Inverse Restrictions: []\n", - "[INFO] [1712607558.434231]: -------------------\n", - "[INFO] [1712607558.434514]: SOMA.Affordance \n", - "[INFO] [1712607558.434815]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712607558.435132]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Relation, DUL.Entity, SOMA.Affordance, DUL.SocialObject}\n", - "[INFO] [1712607558.435407]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712607558.435727]: Properties: [SOMA.definesTrigger, DUL.definesTask, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.definesBearer]\n", - "[INFO] [1712607558.436240]: Instances: []\n", - "[INFO] [1712607558.436525]: Direct Instances: []\n", - "[INFO] [1712607558.437649]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712607558.437913]: -------------------\n", - "[INFO] [1712607558.438159]: SOMA.Disposition \n", - "[INFO] [1712607558.439868]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712607558.440194]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.440479]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712607558.440803]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", - "[INFO] [1712607558.441365]: Instances: []\n", - "[INFO] [1712607558.441632]: Direct Instances: []\n", - "[INFO] [1712607558.441943]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712607558.442215]: -------------------\n", - "[INFO] [1712607558.442472]: SOMA.Setpoint \n", - "[INFO] [1712607558.442717]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712607558.442995]: Ancestors: {DUL.Object, DUL.Parameter, SOMA.Setpoint, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.443244]: Subclasses: []\n", - "[INFO] [1712607558.443551]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.444070]: Instances: []\n", - "[INFO] [1712607558.444375]: Direct Instances: []\n", - "[INFO] [1712607558.444665]: Inverse Restrictions: []\n", - "[INFO] [1712607558.444933]: -------------------\n", - "[INFO] [1712607558.445179]: SOMA.Answer \n", - "[INFO] [1712607558.445421]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712607558.445723]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Answer, owl.Thing, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.445992]: Subclasses: []\n", - "[INFO] [1712607558.446309]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.446812]: Instances: []\n", - "[INFO] [1712607558.447095]: Direct Instances: []\n", - "[INFO] [1712607558.447798]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712607558.448104]: -------------------\n", - "[INFO] [1712607558.448361]: SOMA.Message \n", - "[INFO] [1712607558.448636]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712607558.448918]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.449187]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712607558.449491]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.450006]: Instances: []\n", - "[INFO] [1712607558.450305]: Direct Instances: []\n", - "[INFO] [1712607558.452116]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607558.452399]: -------------------\n", - "[INFO] [1712607558.452669]: SOMA.ProcessType \n", - "[INFO] [1712607558.452965]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712607558.453270]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.453568]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712607558.453881]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.454483]: Instances: []\n", - "[INFO] [1712607558.454768]: Direct Instances: []\n", - "[INFO] [1712607558.455116]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712607558.455377]: -------------------\n", - "[INFO] [1712607558.455639]: SOMA.OrderedElement \n", - "[INFO] [1712607558.455930]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712607558.457278]: Ancestors: {SOMA.Singleton, SOMA.OrderedElement, owl.Thing}\n", - "[INFO] [1712607558.457577]: Subclasses: []\n", - "[INFO] [1712607558.457893]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isOrderedBy]\n", - "[INFO] [1712607558.458401]: Instances: []\n", - "[INFO] [1712607558.458665]: Direct Instances: []\n", - "[INFO] [1712607558.459050]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712607558.459323]: -------------------\n", - "[INFO] [1712607558.459579]: SOMA.System \n", - "[INFO] [1712607558.459823]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712607558.460090]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.460341]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712607558.460629]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.461195]: Instances: []\n", - "[INFO] [1712607558.461477]: Direct Instances: []\n", - "[INFO] [1712607558.461744]: Inverse Restrictions: []\n", - "[INFO] [1712607558.461993]: -------------------\n", - "[INFO] [1712607558.462242]: SOMA.Binding \n", - "[INFO] [1712607558.463010]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712607558.463329]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.463610]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712607558.463935]: Properties: [Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, SOMA.hasBindingRole, rdf-schema.comment, SOMA.hasBindingFiller]\n", - "[INFO] [1712607558.464448]: Instances: []\n", - "[INFO] [1712607558.464726]: Direct Instances: []\n", - "[INFO] [1712607558.464996]: Inverse Restrictions: []\n", - "[INFO] [1712607558.465254]: -------------------\n", - "[INFO] [1712607558.465501]: SOMA.Joint \n", - "[INFO] [1712607558.465772]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712607558.466648]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity, DUL.PhysicalBody, SOMA.Joint}\n", - "[INFO] [1712607558.466956]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712607558.467280]: Properties: [rdf-schema.comment, SOMA.hasParentLink, rdf-schema.isDefinedBy, SOMA.hasChildLink]\n", - "[INFO] [1712607558.467801]: Instances: []\n", - "[INFO] [1712607558.468067]: Direct Instances: []\n", - "[INFO] [1712607558.468329]: Inverse Restrictions: []\n", - "[INFO] [1712607558.468590]: -------------------\n", - "[INFO] [1712607558.468842]: SOMA.Color \n", - "[INFO] [1712607558.469114]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712607558.469388]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality}\n", - "[INFO] [1712607558.469644]: Subclasses: []\n", - "[INFO] [1712607558.469953]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.470457]: Instances: []\n", - "[INFO] [1712607558.470719]: Direct Instances: []\n", - "[INFO] [1712607558.471024]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712607558.471290]: -------------------\n", - "[INFO] [1712607558.471539]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712607558.471779]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607558.472797]: Ancestors: {DUL.Abstract, SOMA.ExecutionStateRegion, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.473095]: Subclasses: []\n", - "[INFO] [1712607558.473420]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.473949]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712607558.474254]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712607558.474535]: Inverse Restrictions: []\n", - "[INFO] [1712607558.474789]: -------------------\n", - "[INFO] [1712607558.475034]: SOMA.Feature \n", - "[INFO] [1712607558.475296]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712607558.475574]: Ancestors: {DUL.Object, owl.Thing, SOMA.Feature, DUL.Entity}\n", - "[INFO] [1712607558.475841]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712607558.476151]: Properties: [rdf-schema.comment, SOMA.isFeatureOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.476651]: Instances: []\n", - "[INFO] [1712607558.476928]: Direct Instances: []\n", - "[INFO] [1712607558.477231]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712607558.477481]: -------------------\n", - "[INFO] [1712607558.477768]: SOMA.FrictionAttribute \n", - "[INFO] [1712607558.478041]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712607558.478334]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.478611]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712607558.478917]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasFrictionValue, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.479436]: Instances: []\n", - "[INFO] [1712607558.479730]: Direct Instances: []\n", - "[INFO] [1712607558.480003]: Inverse Restrictions: []\n", - "[INFO] [1712607558.480255]: -------------------\n", - "[INFO] [1712607558.480497]: SOMA.SituationTransition \n", - "[INFO] [1712607558.480737]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712607558.481031]: Ancestors: {SOMA.SituationTransition, DUL.Transition, owl.Thing, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712607558.481289]: Subclasses: []\n", - "[INFO] [1712607558.481583]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.482079]: Instances: []\n", - "[INFO] [1712607558.482368]: Direct Instances: []\n", - "[INFO] [1712607558.484165]: Inverse Restrictions: []\n", - "[INFO] [1712607558.484436]: -------------------\n", - "[INFO] [1712607558.484694]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712607558.484944]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712607558.486263]: Ancestors: {owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation, DUL.Entity}\n", - "[INFO] [1712607558.486556]: Subclasses: []\n", - "[INFO] [1712607558.486876]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.487371]: Instances: []\n", - "[INFO] [1712607558.487638]: Direct Instances: []\n", - "[INFO] [1712607558.489027]: Inverse Restrictions: []\n", - "[INFO] [1712607558.489297]: -------------------\n", - "[INFO] [1712607558.489554]: SOMA.JointLimit \n", - "[INFO] [1712607558.489803]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712607558.490074]: Ancestors: {DUL.Abstract, SOMA.JointLimit, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.490345]: Subclasses: []\n", - "[INFO] [1712607558.490648]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.491148]: Instances: []\n", - "[INFO] [1712607558.491425]: Direct Instances: []\n", - "[INFO] [1712607558.491774]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712607558.492027]: -------------------\n", - "[INFO] [1712607558.492271]: SOMA.JointState \n", - "[INFO] [1712607558.492549]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712607558.492838]: Ancestors: {SOMA.JointState, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.493093]: Subclasses: []\n", - "[INFO] [1712607558.493390]: Properties: [SOMA.hasJointPosition, rdf-schema.isDefinedBy, SOMA.hasJointVelocity, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607558.493882]: Instances: []\n", - "[INFO] [1712607558.494160]: Direct Instances: []\n", - "[INFO] [1712607558.494538]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712607558.494791]: -------------------\n", - "[INFO] [1712607558.495031]: SOMA.Localization \n", - "[INFO] [1712607558.495297]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712607558.495581]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality}\n", - "[INFO] [1712607558.495837]: Subclasses: []\n", - "[INFO] [1712607558.496136]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.496633]: Instances: []\n", - "[INFO] [1712607558.496935]: Direct Instances: []\n", - "[INFO] [1712607558.499168]: Inverse Restrictions: []\n", - "[INFO] [1712607558.499439]: -------------------\n", - "[INFO] [1712607558.499694]: SOMA.MassAttribute \n", - "[INFO] [1712607558.499972]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712607558.500249]: Ancestors: {DUL.Abstract, DUL.PhysicalAttribute, SOMA.MassAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.500502]: Subclasses: []\n", - "[INFO] [1712607558.500798]: Properties: [rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.501304]: Instances: []\n", - "[INFO] [1712607558.501572]: Direct Instances: []\n", - "[INFO] [1712607558.501825]: Inverse Restrictions: []\n", - "[INFO] [1712607558.502062]: -------------------\n", - "[INFO] [1712607558.502302]: SOMA.NetForce \n", - "[INFO] [1712607558.502563]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712607558.502844]: Ancestors: {DUL.Abstract, SOMA.NetForce, DUL.PhysicalAttribute, owl.Thing, SOMA.ForceAttribute, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.503101]: Subclasses: []\n", - "[INFO] [1712607558.503397]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.503909]: Instances: []\n", - "[INFO] [1712607558.504179]: Direct Instances: []\n", - "[INFO] [1712607558.504441]: Inverse Restrictions: []\n", - "[INFO] [1712607558.504686]: -------------------\n", - "[INFO] [1712607558.504927]: SOMA.Succedence \n", - "[INFO] [1712607558.505215]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712607558.505505]: Ancestors: {DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.505771]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712607558.506073]: Properties: [rdf-schema.isDefinedBy, SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence), rdf-schema.comment, SOMA.hasPredecessor]\n", - "[INFO] [1712607558.506573]: Instances: []\n", - "[INFO] [1712607558.506853]: Direct Instances: []\n", - "[INFO] [1712607558.507120]: Inverse Restrictions: []\n", - "[INFO] [1712607558.507364]: -------------------\n", - "[INFO] [1712607558.507605]: SOMA.Preference \n", - "[INFO] [1712607558.507869]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712607558.508160]: Ancestors: {SOMA.SocialQuality, SOMA.Preference, owl.Thing, DUL.Entity, DUL.Quality}\n", - "[INFO] [1712607558.508422]: Subclasses: []\n", - "[INFO] [1712607558.508727]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.509239]: Instances: []\n", - "[INFO] [1712607558.509509]: Direct Instances: []\n", - "[INFO] [1712607558.510631]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712607558.510916]: -------------------\n", - "[INFO] [1712607558.511185]: SOMA.Shape \n", - "[INFO] [1712607558.511466]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712607558.511751]: Ancestors: {owl.Thing, SOMA.Intrinsic, SOMA.Shape, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.512025]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", - "[INFO] [1712607558.512351]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.512950]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712607558.513243]: Direct Instances: []\n", - "[INFO] [1712607558.515471]: Inverse Restrictions: []\n", - "[INFO] [1712607558.515749]: -------------------\n", - "[INFO] [1712607558.516004]: SOMA.ShapeRegion \n", - "[INFO] [1712607558.516282]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712607558.516654]: Ancestors: {DUL.Abstract, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607558.516941]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712607558.517246]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.517769]: Instances: []\n", - "[INFO] [1712607558.518045]: Direct Instances: []\n", - "[INFO] [1712607558.518786]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712607558.519046]: -------------------\n", - "[INFO] [1712607558.519305]: SOMA.SoftwareInstance \n", - "[INFO] [1712607558.519976]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712607558.520263]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", - "[INFO] [1712607558.520522]: Subclasses: []\n", - "[INFO] [1712607558.520822]: Properties: [SOMA.isDesignedBy, rdf-schema.isDefinedBy, DUL.actsFor, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607558.521313]: Instances: []\n", - "[INFO] [1712607558.521589]: Direct Instances: []\n", - "[INFO] [1712607558.522308]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712607558.522576]: -------------------\n", - "[INFO] [1712607558.522828]: SOMA.StateType \n", - "[INFO] [1712607558.523101]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712607558.523388]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.523662]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712607558.523961]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.524470]: Instances: []\n", - "[INFO] [1712607558.524748]: Direct Instances: []\n", - "[INFO] [1712607558.525091]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712607558.525345]: -------------------\n", - "[INFO] [1712607558.525594]: SOMA.PhysicalEffector \n", - "[INFO] [1712607558.525855]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712607558.526154]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607558.526422]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712607558.526723]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, Inverse(DUL.hasPart)]\n", - "[INFO] [1712607558.527233]: Instances: []\n", - "[INFO] [1712607558.527514]: Direct Instances: []\n", - "[INFO] [1712607558.527827]: Inverse Restrictions: []\n", - "[INFO] [1712607558.528083]: -------------------\n", - "[INFO] [1712607558.528329]: SOMA.QueryingTask \n", - "[INFO] [1712607558.528978]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712607558.529295]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing, SOMA.QueryingTask}\n", - "[INFO] [1712607558.529584]: Subclasses: []\n", - "[INFO] [1712607558.529894]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.530396]: Instances: []\n", - "[INFO] [1712607558.530675]: Direct Instances: []\n", - "[INFO] [1712607558.532099]: Inverse Restrictions: []\n", - "[INFO] [1712607558.532357]: -------------------\n", - "[INFO] [1712607558.532610]: SOMA.Order \n", - "[INFO] [1712607558.532856]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712607558.533136]: Ancestors: {DUL.Abstract, owl.Thing, SOMA.Order, DUL.FormalEntity, DUL.Entity}\n", - "[INFO] [1712607558.533415]: Subclasses: []\n", - "[INFO] [1712607558.533719]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.orders]\n", - "[INFO] [1712607558.534219]: Instances: []\n", - "[INFO] [1712607558.534503]: Direct Instances: []\n", - "[INFO] [1712607558.534867]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712607558.535120]: -------------------\n", - "[INFO] [1712607558.535368]: SOMA.State \n", - "[INFO] [1712607558.535604]: Super classes: [DUL.Event]\n", - "[INFO] [1712607558.535874]: Ancestors: {owl.Thing, DUL.Event, SOMA.State, DUL.Entity}\n", - "[INFO] [1712607558.536147]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712607558.536446]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.536948]: Instances: []\n", - "[INFO] [1712607558.537223]: Direct Instances: []\n", - "[INFO] [1712607558.537733]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712607558.537995]: -------------------\n", - "[INFO] [1712607558.538249]: SOMA.Transient \n", - "[INFO] [1712607558.538514]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712607558.538803]: Ancestors: {DUL.Object, owl.Thing, SOMA.Transient, DUL.Entity}\n", - "[INFO] [1712607558.539065]: Subclasses: []\n", - "[INFO] [1712607558.539364]: Properties: [rdf-schema.comment, SOMA.transitionsFrom, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.539871]: Instances: []\n", - "[INFO] [1712607558.540138]: Direct Instances: []\n", - "[INFO] [1712607558.540400]: Inverse Restrictions: []\n", - "[INFO] [1712607558.540654]: -------------------\n", - "[INFO] [1712607558.540896]: SOMA.ColorRegion \n", - "[INFO] [1712607558.541140]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712607558.541405]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.541658]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712607558.541948]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.542469]: Instances: []\n", - "[INFO] [1712607558.542738]: Direct Instances: []\n", - "[INFO] [1712607558.543067]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712607558.543316]: -------------------\n", - "[INFO] [1712607558.543558]: SOMA.ForceAttribute \n", - "[INFO] [1712607558.543891]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712607558.544172]: Ancestors: {DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, SOMA.ForceAttribute, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.544485]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712607558.544801]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasForceValue, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.545299]: Instances: []\n", - "[INFO] [1712607558.545567]: Direct Instances: []\n", - "[INFO] [1712607558.546237]: Inverse Restrictions: []\n", - "[INFO] [1712607558.546589]: -------------------\n", - "[INFO] [1712607558.546850]: SOMA.API_Specification \n", - "[INFO] [1712607558.547103]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712607558.547394]: Ancestors: {DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607558.547683]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712607558.547995]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.548497]: Instances: []\n", - "[INFO] [1712607558.548759]: Direct Instances: []\n", - "[INFO] [1712607558.549016]: Inverse Restrictions: []\n", - "[INFO] [1712607558.549273]: -------------------\n", - "[INFO] [1712607558.549525]: SOMA.InterfaceSpecification \n", - "[INFO] [1712607558.549770]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712607558.550019]: Ancestors: {DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607558.550273]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712607558.550570]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.551077]: Instances: []\n", - "[INFO] [1712607558.551344]: Direct Instances: []\n", - "[INFO] [1712607558.552402]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712607558.552686]: -------------------\n", - "[INFO] [1712607558.552946]: SOMA.AbductiveReasoning \n", - "[INFO] [1712607558.553198]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712607558.554458]: Ancestors: {SOMA.AbductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607558.554761]: Subclasses: []\n", - "[INFO] [1712607558.555074]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.555576]: Instances: []\n", - "[INFO] [1712607558.555843]: Direct Instances: []\n", - "[INFO] [1712607558.556116]: Inverse Restrictions: []\n", - "[INFO] [1712607558.556367]: -------------------\n", - "[INFO] [1712607558.556612]: SOMA.Reasoning \n", - "[INFO] [1712607558.556850]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607558.557092]: Ancestors: {owl.Thing, SOMA.Reasoning, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712607558.557361]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712607558.557655]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.558161]: Instances: []\n", - "[INFO] [1712607558.558444]: Direct Instances: []\n", - "[INFO] [1712607558.558711]: Inverse Restrictions: []\n", - "[INFO] [1712607558.558956]: -------------------\n", - "[INFO] [1712607558.559195]: SOMA.Accessor \n", - "[INFO] [1712607558.559427]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712607558.559718]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.559976]: Subclasses: []\n", - "[INFO] [1712607558.560268]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.560759]: Instances: []\n", - "[INFO] [1712607558.561055]: Direct Instances: []\n", - "[INFO] [1712607558.561343]: Inverse Restrictions: []\n", - "[INFO] [1712607558.561594]: -------------------\n", - "[INFO] [1712607558.561856]: SOMA.Instrument \n", - "[INFO] [1712607558.562105]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712607558.562363]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.562638]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712607558.562944]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.563502]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607558.563785]: Direct Instances: []\n", - "[INFO] [1712607558.564194]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607558.564449]: -------------------\n", - "[INFO] [1712607558.564694]: SOMA.Accident \n", - "[INFO] [1712607558.564930]: Super classes: [DUL.Event]\n", - "[INFO] [1712607558.565193]: Ancestors: {owl.Thing, DUL.Event, SOMA.Accident, DUL.Entity}\n", - "[INFO] [1712607558.565459]: Subclasses: []\n", - "[INFO] [1712607558.565770]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.566275]: Instances: []\n", - "[INFO] [1712607558.566558]: Direct Instances: []\n", - "[INFO] [1712607558.566823]: Inverse Restrictions: []\n", - "[INFO] [1712607558.567070]: -------------------\n", - "[INFO] [1712607558.567311]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712607558.567753]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712607558.568057]: Ancestors: {DUL.Object, DUL.Description, DUL.Plan, owl.Thing, DUL.Entity, SOMA.ActionExecutionPlan, DUL.SocialObject}\n", - "[INFO] [1712607558.568323]: Subclasses: []\n", - "[INFO] [1712607558.568624]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.569124]: Instances: []\n", - "[INFO] [1712607558.569404]: Direct Instances: []\n", - "[INFO] [1712607558.569666]: Inverse Restrictions: []\n", - "[INFO] [1712607558.569914]: -------------------\n", - "[INFO] [1712607558.570158]: SOMA.Actuating \n", - "[INFO] [1712607558.570400]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607558.570667]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.570960]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712607558.571259]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.571785]: Instances: []\n", - "[INFO] [1712607558.572064]: Direct Instances: []\n", - "[INFO] [1712607558.572336]: Inverse Restrictions: []\n", - "[INFO] [1712607558.572589]: -------------------\n", - "[INFO] [1712607558.572833]: SOMA.PhysicalTask \n", - "[INFO] [1712607558.574231]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712607558.574536]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", - "[INFO] [1712607558.574835]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712607558.575145]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.575846]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", - "[INFO] [1712607558.576142]: Direct Instances: []\n", - "[INFO] [1712607558.576483]: Inverse Restrictions: []\n", - "[INFO] [1712607558.576754]: -------------------\n", - "[INFO] [1712607558.577010]: SOMA.AestheticDesign \n", - "[INFO] [1712607558.577257]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712607558.577526]: Ancestors: {DUL.Object, DUL.Description, SOMA.AestheticDesign, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607558.577840]: Subclasses: []\n", - "[INFO] [1712607558.578151]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.578673]: Instances: []\n", - "[INFO] [1712607558.578951]: Direct Instances: []\n", - "[INFO] [1712607558.579225]: Inverse Restrictions: []\n", - "[INFO] [1712607558.579483]: -------------------\n", - "[INFO] [1712607558.579734]: SOMA.AffordsBeingSitOn \n", - "[INFO] [1712607558.580642]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", - "[INFO] [1712607558.580931]: Ancestors: {DUL.Object, DUL.Description, SOMA.AffordsBeingSitOn, owl.Thing, DUL.Relation, DUL.Entity, SOMA.Affordance, DUL.SocialObject}\n", - "[INFO] [1712607558.581186]: Subclasses: []\n", - "[INFO] [1712607558.581485]: Properties: [rdf-schema.comment, DUL.describes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.581990]: Instances: []\n", - "[INFO] [1712607558.582267]: Direct Instances: []\n", - "[INFO] [1712607558.582554]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", - "[INFO] [1712607558.582809]: -------------------\n", - "[INFO] [1712607558.583052]: SOMA.CanBeSatOn \n", - "[INFO] [1712607558.583304]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", - "[INFO] [1712607558.583592]: Ancestors: {SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.CanBeSatOn, DUL.Quality}\n", - "[INFO] [1712607558.583848]: Subclasses: []\n", - "[INFO] [1712607558.584141]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", - "[INFO] [1712607558.584630]: Instances: []\n", - "[INFO] [1712607558.584906]: Direct Instances: []\n", - "[INFO] [1712607558.585453]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712607558.585709]: -------------------\n", - "[INFO] [1712607558.585954]: SOMA.SittingDestination \n", - "[INFO] [1712607558.586214]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", - "[INFO] [1712607558.586524]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.SittingDestination, DUL.Role, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.586785]: Subclasses: []\n", - "[INFO] [1712607558.587079]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.587566]: Instances: []\n", - "[INFO] [1712607558.587833]: Direct Instances: []\n", - "[INFO] [1712607558.588122]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712607558.588378]: -------------------\n", - "[INFO] [1712607558.588623]: SOMA.CanSit \n", - "[INFO] [1712607558.588857]: Super classes: [SOMA.Capability]\n", - "[INFO] [1712607558.589130]: Ancestors: {SOMA.Capability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.CanSit, DUL.Quality}\n", - "[INFO] [1712607558.589396]: Subclasses: []\n", - "[INFO] [1712607558.589696]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.590188]: Instances: []\n", - "[INFO] [1712607558.590455]: Direct Instances: []\n", - "[INFO] [1712607558.590750]: Inverse Restrictions: []\n", - "[INFO] [1712607558.591010]: -------------------\n", - "[INFO] [1712607558.591260]: SOMA.AgentRole \n", - "[INFO] [1712607558.591525]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712607558.591812]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.AgentRole, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607558.592073]: Subclasses: []\n", - "[INFO] [1712607558.592385]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.592888]: Instances: []\n", - "[INFO] [1712607558.593153]: Direct Instances: []\n", - "[INFO] [1712607558.593431]: Inverse Restrictions: []\n", - "[INFO] [1712607558.593673]: -------------------\n", - "[INFO] [1712607558.593930]: SOMA.Sitting \n", - "[INFO] [1712607558.594180]: Super classes: [SOMA.AssumingPose]\n", - "[INFO] [1712607558.594532]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Sitting, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.594792]: Subclasses: []\n", - "[INFO] [1712607558.595099]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.595603]: Instances: []\n", - "[INFO] [1712607558.595888]: Direct Instances: []\n", - "[INFO] [1712607558.596165]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712607558.596420]: -------------------\n", - "[INFO] [1712607558.596671]: SOMA.CausativeRole \n", - "[INFO] [1712607558.596910]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607558.597156]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607558.597412]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712607558.597706]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.598231]: Instances: []\n", - "[INFO] [1712607558.598501]: Direct Instances: []\n", - "[INFO] [1712607558.598758]: Inverse Restrictions: []\n", - "[INFO] [1712607558.599000]: -------------------\n", - "[INFO] [1712607558.599244]: SOMA.Agonist \n", - "[INFO] [1712607558.599490]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607558.599757]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Agonist, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.600004]: Subclasses: []\n", - "[INFO] [1712607558.600290]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.600791]: Instances: []\n", - "[INFO] [1712607558.601059]: Direct Instances: []\n", - "[INFO] [1712607558.601359]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712607558.601608]: -------------------\n", - "[INFO] [1712607558.601847]: SOMA.Patient \n", - "[INFO] [1712607558.602088]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607558.602353]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.602641]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712607558.602937]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.603492]: Instances: []\n", - "[INFO] [1712607558.603773]: Direct Instances: []\n", - "[INFO] [1712607558.604221]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607558.604484]: -------------------\n", - "[INFO] [1712607558.604733]: SOMA.Algorithm \n", - "[INFO] [1712607558.604986]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712607558.605268]: Ancestors: {DUL.Object, SOMA.Algorithm, DUL.Description, owl.Thing, DUL.Entity, DUL.Plan, DUL.SocialObject}\n", - "[INFO] [1712607558.605526]: Subclasses: []\n", - "[INFO] [1712607558.605824]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.606323]: Instances: []\n", - "[INFO] [1712607558.606603]: Direct Instances: []\n", - "[INFO] [1712607558.607669]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712607558.607937]: -------------------\n", - "[INFO] [1712607558.608184]: SOMA.Alteration \n", - "[INFO] [1712607558.608427]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712607558.608707]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject}\n", - "[INFO] [1712607558.608970]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712607558.609264]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.609765]: Instances: []\n", - "[INFO] [1712607558.610044]: Direct Instances: []\n", - "[INFO] [1712607558.610320]: Inverse Restrictions: []\n", - "[INFO] [1712607558.610570]: -------------------\n", - "[INFO] [1712607558.610813]: SOMA.AlterativeInteraction \n", - "[INFO] [1712607558.611112]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712607558.612022]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.AlterativeInteraction, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607558.612310]: Subclasses: []\n", - "[INFO] [1712607558.612629]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.613137]: Instances: []\n", - "[INFO] [1712607558.613406]: Direct Instances: []\n", - "[INFO] [1712607558.613698]: Inverse Restrictions: []\n", - "[INFO] [1712607558.613944]: -------------------\n", - "[INFO] [1712607558.614200]: SOMA.ForceInteraction \n", - "[INFO] [1712607558.614476]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712607558.614765]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.615041]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712607558.615375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607558.615897]: Instances: []\n", - "[INFO] [1712607558.616185]: Direct Instances: []\n", - "[INFO] [1712607558.616468]: Inverse Restrictions: []\n", - "[INFO] [1712607558.616722]: -------------------\n", - "[INFO] [1712607558.616968]: SOMA.PreservativeInteraction \n", - "[INFO] [1712607558.617204]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712607558.617471]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PreservativeInteraction, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607558.617744]: Subclasses: []\n", - "[INFO] [1712607558.618051]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.618555]: Instances: []\n", - "[INFO] [1712607558.618822]: Direct Instances: []\n", - "[INFO] [1712607558.619116]: Inverse Restrictions: []\n", - "[INFO] [1712607558.619376]: -------------------\n", - "[INFO] [1712607558.619623]: SOMA.AlteredObject \n", - "[INFO] [1712607558.619866]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607558.620133]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.620389]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712607558.620677]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.621192]: Instances: []\n", - "[INFO] [1712607558.621461]: Direct Instances: []\n", - "[INFO] [1712607558.622183]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712607558.622461]: -------------------\n", - "[INFO] [1712607558.622716]: SOMA.Amateurish \n", - "[INFO] [1712607558.622962]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712607558.623255]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607558.623799]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712607558.624268]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.624793]: Instances: []\n", - "[INFO] [1712607558.625071]: Direct Instances: []\n", - "[INFO] [1712607558.625332]: Inverse Restrictions: []\n", - "[INFO] [1712607558.625585]: -------------------\n", - "[INFO] [1712607558.625855]: SOMA.AnsweringTask \n", - "[INFO] [1712607558.626105]: Super classes: [owl.Thing]\n", - "[INFO] [1712607558.628671]: Ancestors: {SOMA.AnsweringTask, owl.Thing}\n", - "[INFO] [1712607558.628982]: Subclasses: []\n", - "[INFO] [1712607558.629307]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.629836]: Instances: []\n", - "[INFO] [1712607558.630118]: Direct Instances: []\n", - "[INFO] [1712607558.630437]: Inverse Restrictions: []\n", - "[INFO] [1712607558.630697]: -------------------\n", - "[INFO] [1712607558.630948]: SOMA.CommandingTask \n", - "[INFO] [1712607558.631592]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712607558.631872]: Ancestors: {SOMA.CommandingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712607558.632141]: Subclasses: []\n", - "[INFO] [1712607558.632453]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.632953]: Instances: []\n", - "[INFO] [1712607558.633212]: Direct Instances: []\n", - "[INFO] [1712607558.633549]: Inverse Restrictions: []\n", - "[INFO] [1712607558.633815]: -------------------\n", - "[INFO] [1712607558.634068]: SOMA.IllocutionaryTask \n", - "[INFO] [1712607558.635464]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712607558.635762]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712607558.636044]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712607558.636356]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.636872]: Instances: []\n", - "[INFO] [1712607558.637137]: Direct Instances: []\n", - "[INFO] [1712607558.637425]: Inverse Restrictions: []\n", - "[INFO] [1712607558.637685]: -------------------\n", - "[INFO] [1712607558.637935]: SOMA.Antagonist \n", - "[INFO] [1712607558.638182]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607558.638456]: Ancestors: {DUL.Object, SOMA.Antagonist, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.638705]: Subclasses: []\n", - "[INFO] [1712607558.639011]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.639510]: Instances: []\n", - "[INFO] [1712607558.639770]: Direct Instances: []\n", - "[INFO] [1712607558.640054]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712607558.640304]: -------------------\n", - "[INFO] [1712607558.640551]: SOMA.Appliance \n", - "[INFO] [1712607558.640791]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712607558.641058]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.641314]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712607558.641618]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.642123]: Instances: []\n", - "[INFO] [1712607558.642390]: Direct Instances: []\n", - "[INFO] [1712607558.642640]: Inverse Restrictions: []\n", - "[INFO] [1712607558.642892]: -------------------\n", - "[INFO] [1712607558.643133]: SOMA.Approaching \n", - "[INFO] [1712607558.643373]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607558.643665]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Approaching, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607558.643934]: Subclasses: []\n", - "[INFO] [1712607558.644236]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.644776]: Instances: []\n", - "[INFO] [1712607558.645046]: Direct Instances: []\n", - "[INFO] [1712607558.645309]: Inverse Restrictions: []\n", - "[INFO] [1712607558.645591]: -------------------\n", - "[INFO] [1712607558.645855]: SOMA.Locomotion \n", - "[INFO] [1712607558.646104]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712607558.646380]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", - "[INFO] [1712607558.646654]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712607558.646964]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.647491]: Instances: []\n", - "[INFO] [1712607558.647773]: Direct Instances: []\n", - "[INFO] [1712607558.648040]: Inverse Restrictions: []\n", - "[INFO] [1712607558.648309]: -------------------\n", - "[INFO] [1712607558.648561]: SOMA.ArchiveFile \n", - "[INFO] [1712607558.648809]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712607558.650065]: Ancestors: {DUL.InformationRealization, owl.Thing, SOMA.ArchiveFile, DUL.Entity, DUL.InformationEntity, SOMA.Digital_File}\n", - "[INFO] [1712607558.650349]: Subclasses: []\n", - "[INFO] [1712607558.650672]: Properties: [DUL.realizes, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.651191]: Instances: []\n", - "[INFO] [1712607558.651468]: Direct Instances: []\n", - "[INFO] [1712607558.651744]: Inverse Restrictions: []\n", - "[INFO] [1712607558.652003]: -------------------\n", - "[INFO] [1712607558.652246]: SOMA.ArchiveText \n", - "[INFO] [1712607558.652483]: Super classes: [owl.Thing]\n", - "[INFO] [1712607558.654296]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", - "[INFO] [1712607558.654602]: Subclasses: []\n", - "[INFO] [1712607558.654928]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607558.655439]: Instances: []\n", - "[INFO] [1712607558.655725]: Direct Instances: []\n", - "[INFO] [1712607558.656160]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712607558.656432]: -------------------\n", - "[INFO] [1712607558.656686]: SOMA.Digital_File \n", - "[INFO] [1712607558.656968]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712607558.657245]: Ancestors: {DUL.InformationRealization, owl.Thing, DUL.Entity, DUL.InformationEntity, SOMA.Digital_File}\n", - "[INFO] [1712607558.657510]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712607558.657821]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasNameString]\n", - "[INFO] [1712607558.658328]: Instances: []\n", - "[INFO] [1712607558.658602]: Direct Instances: []\n", - "[INFO] [1712607558.661223]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712607558.661503]: -------------------\n", - "[INFO] [1712607558.661768]: SOMA.ArchiveFormat \n", - "[INFO] [1712607558.662029]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712607558.662486]: Ancestors: {DUL.Object, SOMA.ArchiveFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607558.662890]: Subclasses: []\n", - "[INFO] [1712607558.663327]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.663955]: Instances: []\n", - "[INFO] [1712607558.664331]: Direct Instances: []\n", - "[INFO] [1712607558.664747]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712607558.665113]: -------------------\n", - "[INFO] [1712607558.665393]: SOMA.File_format \n", - "[INFO] [1712607558.665646]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607558.665901]: Ancestors: {DUL.Object, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607558.666170]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712607558.666470]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.666988]: Instances: []\n", - "[INFO] [1712607558.667258]: Direct Instances: []\n", - "[INFO] [1712607558.667514]: Inverse Restrictions: []\n", - "[INFO] [1712607558.667763]: -------------------\n", - "[INFO] [1712607558.668012]: SOMA.FileConfiguration \n", - "[INFO] [1712607558.668250]: Super classes: [owl.Thing]\n", - "[INFO] [1712607558.668728]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", - "[INFO] [1712607558.668998]: Subclasses: []\n", - "[INFO] [1712607558.669313]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.669814]: Instances: []\n", - "[INFO] [1712607558.670075]: Direct Instances: []\n", - "[INFO] [1712607558.670391]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712607558.670652]: -------------------\n", - "[INFO] [1712607558.670902]: SOMA.Structured_Text \n", - "[INFO] [1712607558.671139]: Super classes: [owl.Thing]\n", - "[INFO] [1712607558.672353]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", - "[INFO] [1712607558.672647]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712607558.672961]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607558.673470]: Instances: []\n", - "[INFO] [1712607558.673752]: Direct Instances: []\n", - "[INFO] [1712607558.676408]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712607558.676687]: -------------------\n", - "[INFO] [1712607558.676965]: SOMA.AreaSurveying \n", - "[INFO] [1712607558.677217]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712607558.677492]: Ancestors: {owl.Thing, SOMA.Perceiving, SOMA.AreaSurveying}\n", - "[INFO] [1712607558.677741]: Subclasses: []\n", - "[INFO] [1712607558.678030]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.678544]: Instances: []\n", - "[INFO] [1712607558.678815]: Direct Instances: []\n", - "[INFO] [1712607558.679071]: Inverse Restrictions: []\n", - "[INFO] [1712607558.679316]: -------------------\n", - "[INFO] [1712607558.679554]: SOMA.Perceiving \n", - "[INFO] [1712607558.679809]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712607558.680061]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712607558.680316]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712607558.680602]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.681120]: Instances: []\n", - "[INFO] [1712607558.681400]: Direct Instances: []\n", - "[INFO] [1712607558.681668]: Inverse Restrictions: []\n", - "[INFO] [1712607558.681918]: -------------------\n", - "[INFO] [1712607558.682178]: SOMA.Arm \n", - "[INFO] [1712607558.682427]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712607558.683305]: Ancestors: {DUL.Object, SOMA.Arm, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607558.683600]: Subclasses: []\n", - "[INFO] [1712607558.683920]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.684428]: Instances: []\n", - "[INFO] [1712607558.684698]: Direct Instances: []\n", - "[INFO] [1712607558.684993]: Inverse Restrictions: []\n", - "[INFO] [1712607558.685256]: -------------------\n", - "[INFO] [1712607558.685522]: SOMA.Limb \n", - "[INFO] [1712607558.685773]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712607558.686027]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607558.686290]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712607558.686607]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.687143]: Instances: []\n", - "[INFO] [1712607558.687426]: Direct Instances: []\n", - "[INFO] [1712607558.688127]: Inverse Restrictions: []\n", - "[INFO] [1712607558.688390]: -------------------\n", - "[INFO] [1712607558.688645]: SOMA.Armchair \n", - "[INFO] [1712607558.688903]: Super classes: [SOMA.DesignedChair]\n", - "[INFO] [1712607558.689198]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Armchair, DUL.Entity, SOMA.DesignedChair}\n", - "[INFO] [1712607558.689455]: Subclasses: []\n", - "[INFO] [1712607558.689743]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.690263]: Instances: []\n", - "[INFO] [1712607558.690881]: Direct Instances: []\n", - "[INFO] [1712607558.691432]: Inverse Restrictions: []\n", - "[INFO] [1712607558.691969]: -------------------\n", - "[INFO] [1712607558.692512]: SOMA.DesignedChair \n", - "[INFO] [1712607558.693016]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712607558.693391]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.DesignedChair}\n", - "[INFO] [1712607558.693827]: Subclasses: [SOMA.Armchair]\n", - "[INFO] [1712607558.694260]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.694877]: Instances: []\n", - "[INFO] [1712607558.695321]: Direct Instances: []\n", - "[INFO] [1712607558.695756]: Inverse Restrictions: []\n", - "[INFO] [1712607558.696118]: -------------------\n", - "[INFO] [1712607558.696480]: SOMA.Arranging \n", - "[INFO] [1712607558.696824]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712607558.697202]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Arranging, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.697547]: Subclasses: []\n", - "[INFO] [1712607558.697929]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.698528]: Instances: []\n", - "[INFO] [1712607558.698901]: Direct Instances: []\n", - "[INFO] [1712607558.699270]: Inverse Restrictions: []\n", - "[INFO] [1712607558.699637]: -------------------\n", - "[INFO] [1712607558.700004]: SOMA.Constructing \n", - "[INFO] [1712607558.700393]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607558.700827]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.701274]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712607558.701783]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.702608]: Instances: []\n", - "[INFO] [1712607558.703161]: Direct Instances: []\n", - "[INFO] [1712607558.703713]: Inverse Restrictions: []\n", - "[INFO] [1712607558.704234]: -------------------\n", - "[INFO] [1712607558.704741]: SOMA.ArtificialAgent \n", - "[INFO] [1712607558.705260]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712607558.705829]: Ancestors: {DUL.Agent, DUL.Object, SOMA.ArtificialAgent, DUL.PhysicalAgent, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.706381]: Subclasses: []\n", - "[INFO] [1712607558.706979]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.707857]: Instances: []\n", - "[INFO] [1712607558.708390]: Direct Instances: []\n", - "[INFO] [1712607558.708900]: Inverse Restrictions: []\n", - "[INFO] [1712607558.709394]: -------------------\n", - "[INFO] [1712607558.709890]: SOMA.Assembling \n", - "[INFO] [1712607558.710368]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712607558.710875]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Assembling, DUL.EventType}\n", - "[INFO] [1712607558.711347]: Subclasses: []\n", - "[INFO] [1712607558.711863]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.712674]: Instances: []\n", - "[INFO] [1712607558.713158]: Direct Instances: []\n", - "[INFO] [1712607558.713624]: Inverse Restrictions: []\n", - "[INFO] [1712607558.714068]: -------------------\n", - "[INFO] [1712607558.714679]: SOMA.AssertionTask \n", - "[INFO] [1712607558.715693]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712607558.716242]: Ancestors: {SOMA.AssertionTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712607558.716756]: Subclasses: []\n", - "[INFO] [1712607558.717341]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.718232]: Instances: []\n", - "[INFO] [1712607558.718700]: Direct Instances: []\n", - "[INFO] [1712607558.719125]: Inverse Restrictions: []\n", - "[INFO] [1712607558.719530]: -------------------\n", - "[INFO] [1712607558.719927]: SOMA.DeclarativeClause \n", - "[INFO] [1712607558.720310]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712607558.720787]: Ancestors: {DUL.Object, SOMA.DeclarativeClause, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607558.721230]: Subclasses: []\n", - "[INFO] [1712607558.721735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.722571]: Instances: []\n", - "[INFO] [1712607558.723041]: Direct Instances: []\n", - "[INFO] [1712607558.723591]: Inverse Restrictions: []\n", - "[INFO] [1712607558.724040]: -------------------\n", - "[INFO] [1712607558.724483]: SOMA.AssumingArmPose \n", - "[INFO] [1712607558.724924]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712607558.725410]: Ancestors: {SOMA.AssumingArmPose, DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.725922]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712607558.726496]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.727462]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712607558.728032]: Direct Instances: []\n", - "[INFO] [1712607558.728507]: Inverse Restrictions: []\n", - "[INFO] [1712607558.728981]: -------------------\n", - "[INFO] [1712607558.729442]: SOMA.AssumingPose \n", - "[INFO] [1712607558.729868]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607558.730305]: Ancestors: {DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.730725]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712607558.731196]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.731992]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712607558.732388]: Direct Instances: []\n", - "[INFO] [1712607558.732758]: Inverse Restrictions: []\n", - "[INFO] [1712607558.733090]: -------------------\n", - "[INFO] [1712607558.733405]: SOMA.AttentionShift \n", - "[INFO] [1712607558.733736]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712607558.734096]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.AttentionShift, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.734427]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712607558.734809]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.735425]: Instances: []\n", - "[INFO] [1712607558.735741]: Direct Instances: []\n", - "[INFO] [1712607558.736039]: Inverse Restrictions: []\n", - "[INFO] [1712607558.736310]: -------------------\n", - "[INFO] [1712607558.736583]: SOMA.MentalTask \n", - "[INFO] [1712607558.736869]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712607558.737139]: Ancestors: {DUL.Object, SOMA.MentalTask, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", - "[INFO] [1712607558.737403]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712607558.737699]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.738230]: Instances: []\n", - "[INFO] [1712607558.738504]: Direct Instances: []\n", - "[INFO] [1712607558.738799]: Inverse Restrictions: []\n", - "[INFO] [1712607558.739048]: -------------------\n", - "[INFO] [1712607558.739296]: SOMA.AvoidedObject \n", - "[INFO] [1712607558.739542]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607558.739822]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.AvoidedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.740079]: Subclasses: []\n", - "[INFO] [1712607558.740377]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.740873]: Instances: []\n", - "[INFO] [1712607558.741145]: Direct Instances: []\n", - "[INFO] [1712607558.741400]: Inverse Restrictions: []\n", - "[INFO] [1712607558.741643]: -------------------\n", - "[INFO] [1712607558.741882]: SOMA.Avoiding \n", - "[INFO] [1712607558.742116]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712607558.742397]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Avoiding, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.742662]: Subclasses: []\n", - "[INFO] [1712607558.742958]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.743452]: Instances: []\n", - "[INFO] [1712607558.743709]: Direct Instances: []\n", - "[INFO] [1712607558.743962]: Inverse Restrictions: []\n", - "[INFO] [1712607558.744209]: -------------------\n", - "[INFO] [1712607558.744502]: SOMA.Navigating \n", - "[INFO] [1712607558.744751]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607558.745007]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.745258]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712607558.745548]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.746064]: Instances: [SOMA.navigating]\n", - "[INFO] [1712607558.746335]: Direct Instances: [SOMA.navigating]\n", - "[INFO] [1712607558.746597]: Inverse Restrictions: []\n", - "[INFO] [1712607558.747096]: -------------------\n", - "[INFO] [1712607558.747416]: SOMA.BakedGood \n", - "[INFO] [1712607558.747674]: Super classes: [SOMA.Dish]\n", - "[INFO] [1712607558.747958]: Ancestors: {DUL.Object, SOMA.BakedGood, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.748220]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", - "[INFO] [1712607558.748520]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.749035]: Instances: []\n", - "[INFO] [1712607558.749325]: Direct Instances: []\n", - "[INFO] [1712607558.749605]: Inverse Restrictions: []\n", - "[INFO] [1712607558.749938]: -------------------\n", - "[INFO] [1712607558.750248]: SOMA.Dish \n", - "[INFO] [1712607558.750525]: Super classes: [DUL.DesignedArtifact]\n", - "[INFO] [1712607558.750804]: Ancestors: {DUL.Object, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.751088]: Subclasses: [SOMA.BakedGood]\n", - "[INFO] [1712607558.751413]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.751941]: Instances: []\n", - "[INFO] [1712607558.752221]: Direct Instances: []\n", - "[INFO] [1712607558.752503]: Inverse Restrictions: []\n", - "[INFO] [1712607558.752773]: -------------------\n", - "[INFO] [1712607558.753042]: SOMA.Barrier \n", - "[INFO] [1712607558.753307]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712607558.753604]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Entity, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607558.753891]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712607558.754213]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.754740]: Instances: []\n", - "[INFO] [1712607558.755016]: Direct Instances: []\n", - "[INFO] [1712607558.755333]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712607558.755609]: -------------------\n", - "[INFO] [1712607558.755869]: SOMA.Restrictor \n", - "[INFO] [1712607558.756123]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712607558.756387]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607558.756675]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712607558.756990]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.757530]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607558.757829]: Direct Instances: []\n", - "[INFO] [1712607558.758295]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712607558.758649]: -------------------\n", - "[INFO] [1712607558.758954]: SOMA.BedsideTable \n", - "[INFO] [1712607558.759265]: Super classes: [SOMA.Table]\n", - "[INFO] [1712607558.759615]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.BedsideTable, DUL.PhysicalArtifact, owl.Thing, SOMA.Table, DUL.Entity}\n", - "[INFO] [1712607558.759927]: Subclasses: []\n", - "[INFO] [1712607558.760278]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.760860]: Instances: []\n", - "[INFO] [1712607558.761220]: Direct Instances: []\n", - "[INFO] [1712607558.761519]: Inverse Restrictions: []\n", - "[INFO] [1712607558.761791]: -------------------\n", - "[INFO] [1712607558.762056]: SOMA.Table \n", - "[INFO] [1712607558.762465]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712607558.762857]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Table, DUL.Entity}\n", - "[INFO] [1712607558.763254]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", - "[INFO] [1712607558.763679]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.764304]: Instances: []\n", - "[INFO] [1712607558.764692]: Direct Instances: []\n", - "[INFO] [1712607558.765060]: Inverse Restrictions: []\n", - "[INFO] [1712607558.765346]: -------------------\n", - "[INFO] [1712607558.765608]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712607558.766011]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712607558.766303]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607558.766571]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712607558.766890]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.767409]: Instances: []\n", - "[INFO] [1712607558.767674]: Direct Instances: []\n", - "[INFO] [1712607558.767939]: Inverse Restrictions: []\n", - "[INFO] [1712607558.768191]: -------------------\n", - "[INFO] [1712607558.768432]: SOMA.BeneficiaryRole \n", - "[INFO] [1712607558.768735]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712607558.769030]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.769306]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712607558.769611]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.770110]: Instances: []\n", - "[INFO] [1712607558.770380]: Direct Instances: []\n", - "[INFO] [1712607558.770638]: Inverse Restrictions: []\n", - "[INFO] [1712607558.770895]: -------------------\n", - "[INFO] [1712607558.771142]: SOMA.GoalRole \n", - "[INFO] [1712607558.771382]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607558.771629]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.771879]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712607558.772166]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.772672]: Instances: []\n", - "[INFO] [1712607558.772940]: Direct Instances: []\n", - "[INFO] [1712607558.773195]: Inverse Restrictions: []\n", - "[INFO] [1712607558.773436]: -------------------\n", - "[INFO] [1712607558.773677]: SOMA.CounterfactualBinding \n", - "[INFO] [1712607558.773926]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712607558.774201]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, SOMA.CounterfactualBinding, DUL.SocialObject}\n", - "[INFO] [1712607558.774454]: Subclasses: []\n", - "[INFO] [1712607558.774757]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.775265]: Instances: []\n", - "[INFO] [1712607558.775530]: Direct Instances: []\n", - "[INFO] [1712607558.775865]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712607558.776118]: -------------------\n", - "[INFO] [1712607558.776374]: SOMA.FactualBinding \n", - "[INFO] [1712607558.776620]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712607558.776888]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, SOMA.FactualBinding, DUL.SocialObject}\n", - "[INFO] [1712607558.777138]: Subclasses: []\n", - "[INFO] [1712607558.777444]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.778006]: Instances: []\n", - "[INFO] [1712607558.778286]: Direct Instances: []\n", - "[INFO] [1712607558.778623]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712607558.778888]: -------------------\n", - "[INFO] [1712607558.779140]: SOMA.RoleFillerBinding \n", - "[INFO] [1712607558.779386]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712607558.779655]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, SOMA.RoleFillerBinding, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.779901]: Subclasses: []\n", - "[INFO] [1712607558.780229]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.780766]: Instances: []\n", - "[INFO] [1712607558.781045]: Direct Instances: []\n", - "[INFO] [1712607558.781347]: Inverse Restrictions: []\n", - "[INFO] [1712607558.781600]: -------------------\n", - "[INFO] [1712607558.781845]: SOMA.RoleRoleBinding \n", - "[INFO] [1712607558.782516]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712607558.782823]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, SOMA.RoleRoleBinding, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.783089]: Subclasses: []\n", - "[INFO] [1712607558.783392]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.783894]: Instances: []\n", - "[INFO] [1712607558.784165]: Direct Instances: []\n", - "[INFO] [1712607558.784461]: Inverse Restrictions: []\n", - "[INFO] [1712607558.784712]: -------------------\n", - "[INFO] [1712607558.784959]: SOMA.Blade \n", - "[INFO] [1712607558.785198]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607558.785475]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Blade}\n", - "[INFO] [1712607558.785743]: Subclasses: []\n", - "[INFO] [1712607558.786036]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.786535]: Instances: []\n", - "[INFO] [1712607558.786794]: Direct Instances: []\n", - "[INFO] [1712607558.787079]: Inverse Restrictions: [SOMA.Knife]\n", - "[INFO] [1712607558.787321]: -------------------\n", - "[INFO] [1712607558.787561]: SOMA.DesignedComponent \n", - "[INFO] [1712607558.787815]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712607558.788067]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607558.788337]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712607558.788640]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.789163]: Instances: []\n", - "[INFO] [1712607558.789437]: Direct Instances: []\n", - "[INFO] [1712607558.789700]: Inverse Restrictions: []\n", - "[INFO] [1712607558.789947]: -------------------\n", - "[INFO] [1712607558.790188]: SOMA.Blockage \n", - "[INFO] [1712607558.790448]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712607558.790730]: Ancestors: {owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.790994]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712607558.791285]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.791778]: Instances: []\n", - "[INFO] [1712607558.792048]: Direct Instances: []\n", - "[INFO] [1712607558.792305]: Inverse Restrictions: []\n", - "[INFO] [1712607558.792545]: -------------------\n", - "[INFO] [1712607558.792779]: SOMA.BlockedObject \n", - "[INFO] [1712607558.793015]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607558.793287]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.793545]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712607558.793845]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.794355]: Instances: []\n", - "[INFO] [1712607558.794669]: Direct Instances: []\n", - "[INFO] [1712607558.794972]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712607558.795228]: -------------------\n", - "[INFO] [1712607558.795471]: SOMA.BodyMovement \n", - "[INFO] [1712607558.796510]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712607558.796817]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", - "[INFO] [1712607558.797094]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712607558.797400]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.797924]: Instances: []\n", - "[INFO] [1712607558.798203]: Direct Instances: []\n", - "[INFO] [1712607558.798465]: Inverse Restrictions: []\n", - "[INFO] [1712607558.798714]: -------------------\n", - "[INFO] [1712607558.798949]: SOMA.Motion \n", - "[INFO] [1712607558.799184]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712607558.799429]: Ancestors: {DUL.Object, SOMA.Motion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.799695]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712607558.799988]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.800528]: Instances: []\n", - "[INFO] [1712607558.800801]: Direct Instances: []\n", - "[INFO] [1712607558.801059]: Inverse Restrictions: []\n", - "[INFO] [1712607558.801300]: -------------------\n", - "[INFO] [1712607558.801533]: SOMA.Boiling \n", - "[INFO] [1712607558.801767]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712607558.802045]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PhaseTransition, SOMA.Vaporizing, owl.Thing, SOMA.ProcessType, SOMA.Boiling, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", - "[INFO] [1712607558.802316]: Subclasses: []\n", - "[INFO] [1712607558.802612]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.803103]: Instances: []\n", - "[INFO] [1712607558.803361]: Direct Instances: []\n", - "[INFO] [1712607558.803611]: Inverse Restrictions: []\n", - "[INFO] [1712607558.803854]: -------------------\n", - "[INFO] [1712607558.804091]: SOMA.Vaporizing \n", - "[INFO] [1712607558.804730]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712607558.804991]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Vaporizing, SOMA.PhaseTransition, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", - "[INFO] [1712607558.805257]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712607558.805556]: Properties: [SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712607558.806047]: Instances: []\n", - "[INFO] [1712607558.806301]: Direct Instances: []\n", - "[INFO] [1712607558.806548]: Inverse Restrictions: []\n", - "[INFO] [1712607558.806799]: -------------------\n", - "[INFO] [1712607558.807040]: SOMA.Bottle \n", - "[INFO] [1712607558.807270]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712607558.807531]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.807795]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", - "[INFO] [1712607558.808080]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.808571]: Instances: []\n", - "[INFO] [1712607558.808839]: Direct Instances: []\n", - "[INFO] [1712607558.809099]: Inverse Restrictions: []\n", - "[INFO] [1712607558.809339]: -------------------\n", - "[INFO] [1712607558.809580]: SOMA.DesignedContainer \n", - "[INFO] [1712607558.809820]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712607558.810078]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.810361]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712607558.810658]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.811298]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712607558.811588]: Direct Instances: []\n", - "[INFO] [1712607558.811864]: Inverse Restrictions: []\n", - "[INFO] [1712607558.812110]: -------------------\n", - "[INFO] [1712607558.812355]: SOMA.Bowl \n", - "[INFO] [1712607558.812590]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712607558.812880]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Bowl, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607558.813163]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", - "[INFO] [1712607558.813467]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.813963]: Instances: []\n", - "[INFO] [1712607558.814220]: Direct Instances: []\n", - "[INFO] [1712607558.814511]: Inverse Restrictions: [SOMA.Spoon]\n", - "[INFO] [1712607558.814770]: -------------------\n", - "[INFO] [1712607558.815013]: SOMA.Crockery \n", - "[INFO] [1712607558.815876]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712607558.816156]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607558.816420]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", - "[INFO] [1712607558.816717]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.817227]: Instances: []\n", - "[INFO] [1712607558.817497]: Direct Instances: []\n", - "[INFO] [1712607558.817764]: Inverse Restrictions: []\n", - "[INFO] [1712607558.818004]: -------------------\n", - "[INFO] [1712607558.818246]: SOMA.Box \n", - "[INFO] [1712607558.818496]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", - "[INFO] [1712607558.818776]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.Box, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.819032]: Subclasses: [SOMA.CerealBox]\n", - "[INFO] [1712607558.819322]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasShapeRegion]\n", - "[INFO] [1712607558.819813]: Instances: []\n", - "[INFO] [1712607558.820081]: Direct Instances: []\n", - "[INFO] [1712607558.820336]: Inverse Restrictions: []\n", - "[INFO] [1712607558.820576]: -------------------\n", - "[INFO] [1712607558.820813]: SOMA.BoxShape \n", - "[INFO] [1712607558.821089]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712607558.821370]: Ancestors: {DUL.Abstract, owl.Thing, SOMA.BoxShape, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607558.821626]: Subclasses: []\n", - "[INFO] [1712607558.821916]: Properties: [SOMA.hasHeight, rdf-schema.isDefinedBy, SOMA.hasLength, rdf-schema.comment, SOMA.hasWidth, rdf-schema.label]\n", - "[INFO] [1712607558.822408]: Instances: []\n", - "[INFO] [1712607558.822680]: Direct Instances: []\n", - "[INFO] [1712607558.822954]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712607558.823195]: -------------------\n", - "[INFO] [1712607558.823434]: SOMA.Bread \n", - "[INFO] [1712607558.823672]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712607558.823946]: Ancestors: {DUL.Object, SOMA.BakedGood, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Bread, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.824195]: Subclasses: []\n", - "[INFO] [1712607558.824801]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.825327]: Instances: []\n", - "[INFO] [1712607558.825620]: Direct Instances: []\n", - "[INFO] [1712607558.825894]: Inverse Restrictions: []\n", - "[INFO] [1712607558.826145]: -------------------\n", - "[INFO] [1712607558.826396]: SOMA.BreadKnife \n", - "[INFO] [1712607558.826667]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712607558.826981]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.BreadKnife}\n", - "[INFO] [1712607558.827244]: Subclasses: []\n", - "[INFO] [1712607558.827543]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.828073]: Instances: []\n", - "[INFO] [1712607558.828351]: Direct Instances: []\n", - "[INFO] [1712607558.828604]: Inverse Restrictions: []\n", - "[INFO] [1712607558.828844]: -------------------\n", - "[INFO] [1712607558.829080]: SOMA.KitchenKnife \n", - "[INFO] [1712607558.829315]: Super classes: [SOMA.Knife]\n", - "[INFO] [1712607558.829565]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.829826]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", - "[INFO] [1712607558.830122]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.830654]: Instances: []\n", - "[INFO] [1712607558.830938]: Direct Instances: []\n", - "[INFO] [1712607558.831208]: Inverse Restrictions: []\n", - "[INFO] [1712607558.831456]: -------------------\n", - "[INFO] [1712607558.831697]: SOMA.BreakfastPlate \n", - "[INFO] [1712607558.831935]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712607558.832209]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.BreakfastPlate, SOMA.Crockery, SOMA.Plate, SOMA.Tableware}\n", - "[INFO] [1712607558.832475]: Subclasses: []\n", - "[INFO] [1712607558.832769]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.833265]: Instances: []\n", - "[INFO] [1712607558.833543]: Direct Instances: []\n", - "[INFO] [1712607558.833833]: Inverse Restrictions: []\n", - "[INFO] [1712607558.834089]: -------------------\n", - "[INFO] [1712607558.834347]: SOMA.Plate \n", - "[INFO] [1712607558.834590]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712607558.834843]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Plate, SOMA.Tableware}\n", - "[INFO] [1712607558.835090]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", - "[INFO] [1712607558.835373]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.835917]: Instances: []\n", - "[INFO] [1712607558.836210]: Direct Instances: []\n", - "[INFO] [1712607558.836467]: Inverse Restrictions: []\n", - "[INFO] [1712607558.836704]: -------------------\n", - "[INFO] [1712607558.836956]: SOMA.Building \n", - "[INFO] [1712607558.837204]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712607558.837471]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.Building, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.837719]: Subclasses: []\n", - "[INFO] [1712607558.838004]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.838513]: Instances: []\n", - "[INFO] [1712607558.838777]: Direct Instances: []\n", - "[INFO] [1712607558.839029]: Inverse Restrictions: []\n", - "[INFO] [1712607558.839267]: -------------------\n", - "[INFO] [1712607558.839504]: SOMA.Deposition \n", - "[INFO] [1712607558.839779]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712607558.840039]: Ancestors: {SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.840291]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712607558.840580]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.841084]: Instances: []\n", - "[INFO] [1712607558.841356]: Direct Instances: []\n", - "[INFO] [1712607558.842051]: Inverse Restrictions: []\n", - "[INFO] [1712607558.842308]: -------------------\n", - "[INFO] [1712607558.842549]: SOMA.CanCut \n", - "[INFO] [1712607558.842824]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712607558.843114]: Ancestors: {SOMA.CanCut, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.843362]: Subclasses: []\n", - "[INFO] [1712607558.843652]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.844152]: Instances: []\n", - "[INFO] [1712607558.844466]: Direct Instances: []\n", - "[INFO] [1712607558.844726]: Inverse Restrictions: []\n", - "[INFO] [1712607558.844966]: -------------------\n", - "[INFO] [1712607558.845203]: SOMA.Variability \n", - "[INFO] [1712607558.845464]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712607558.845754]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.846029]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712607558.846339]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.846857]: Instances: []\n", - "[INFO] [1712607558.847137]: Direct Instances: []\n", - "[INFO] [1712607558.847399]: Inverse Restrictions: []\n", - "[INFO] [1712607558.847646]: -------------------\n", - "[INFO] [1712607558.847892]: SOMA.Cutter \n", - "[INFO] [1712607558.848129]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712607558.848415]: Ancestors: {SOMA.Tool, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Cutter, DUL.SocialObject}\n", - "[INFO] [1712607558.848672]: Subclasses: []\n", - "[INFO] [1712607558.848970]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.849453]: Instances: []\n", - "[INFO] [1712607558.849730]: Direct Instances: []\n", - "[INFO] [1712607558.850067]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712607558.850323]: -------------------\n", - "[INFO] [1712607558.850563]: SOMA.CutObject \n", - "[INFO] [1712607558.850793]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712607558.851054]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, SOMA.CutObject, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607558.851317]: Subclasses: []\n", - "[INFO] [1712607558.851612]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.852099]: Instances: []\n", - "[INFO] [1712607558.852356]: Direct Instances: []\n", - "[INFO] [1712607558.852686]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712607558.852935]: -------------------\n", - "[INFO] [1712607558.853176]: SOMA.Capability \n", - "[INFO] [1712607558.854883]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712607558.855194]: Ancestors: {SOMA.Capability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.855473]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712607558.855778]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", - "[INFO] [1712607558.856278]: Instances: []\n", - "[INFO] [1712607558.856557]: Direct Instances: []\n", - "[INFO] [1712607558.856824]: Inverse Restrictions: []\n", - "[INFO] [1712607558.857067]: -------------------\n", - "[INFO] [1712607558.857305]: SOMA.Capacity \n", - "[INFO] [1712607558.857538]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607558.857800]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Capacity, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607558.858064]: Subclasses: []\n", - "[INFO] [1712607558.858365]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.858855]: Instances: []\n", - "[INFO] [1712607558.859109]: Direct Instances: []\n", - "[INFO] [1712607558.859771]: Inverse Restrictions: []\n", - "[INFO] [1712607558.860050]: -------------------\n", - "[INFO] [1712607558.860307]: SOMA.Intrinsic \n", - "[INFO] [1712607558.860544]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712607558.860792]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607558.861115]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712607558.861427]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.861957]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712607558.862285]: Direct Instances: []\n", - "[INFO] [1712607558.862698]: Inverse Restrictions: []\n", - "[INFO] [1712607558.863056]: -------------------\n", - "[INFO] [1712607558.863342]: SOMA.Carafe \n", - "[INFO] [1712607558.863607]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712607558.863911]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Carafe, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607558.864181]: Subclasses: [SOMA.CoffeeCarafe]\n", - "[INFO] [1712607558.864507]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.865009]: Instances: []\n", - "[INFO] [1712607558.865293]: Direct Instances: []\n", - "[INFO] [1712607558.865549]: Inverse Restrictions: []\n", - "[INFO] [1712607558.865787]: -------------------\n", - "[INFO] [1712607558.866023]: SOMA.Catching \n", - "[INFO] [1712607558.866275]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607558.866545]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Catching, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.866792]: Subclasses: []\n", - "[INFO] [1712607558.867090]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.867589]: Instances: []\n", - "[INFO] [1712607558.867851]: Direct Instances: []\n", - "[INFO] [1712607558.868100]: Inverse Restrictions: []\n", - "[INFO] [1712607558.868339]: -------------------\n", - "[INFO] [1712607558.868579]: SOMA.PickingUp \n", - "[INFO] [1712607558.868818]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607558.869099]: Ancestors: {SOMA.PickingUp, DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.869356]: Subclasses: []\n", - "[INFO] [1712607558.869650]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.870177]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712607558.870453]: Direct Instances: [SOMA.picking_up]\n", - "[INFO] [1712607558.870708]: Inverse Restrictions: []\n", - "[INFO] [1712607558.870944]: -------------------\n", - "[INFO] [1712607558.871180]: SOMA.CausalEventRole \n", - "[INFO] [1712607558.871431]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712607558.871698]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.CausalEventRole, DUL.SocialObject}\n", - "[INFO] [1712607558.871945]: Subclasses: []\n", - "[INFO] [1712607558.872230]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.872735]: Instances: []\n", - "[INFO] [1712607558.872999]: Direct Instances: []\n", - "[INFO] [1712607558.873381]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607558.873665]: -------------------\n", - "[INFO] [1712607558.873921]: SOMA.EventAdjacentRole \n", - "[INFO] [1712607558.874169]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712607558.874416]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.874672]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712607558.874963]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.875650]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607558.875932]: Direct Instances: []\n", - "[INFO] [1712607558.876202]: Inverse Restrictions: []\n", - "[INFO] [1712607558.876447]: -------------------\n", - "[INFO] [1712607558.876689]: SOMA.CausedMotionTheory \n", - "[INFO] [1712607558.876965]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712607558.877277]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, SOMA.CausedMotionTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.877534]: Subclasses: []\n", - "[INFO] [1712607558.877905]: Properties: [rdf-schema.isDefinedBy, DUL.hasPart, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712607558.878404]: Instances: []\n", - "[INFO] [1712607558.878680]: Direct Instances: []\n", - "[INFO] [1712607558.878939]: Inverse Restrictions: []\n", - "[INFO] [1712607558.879198]: -------------------\n", - "[INFO] [1712607558.879455]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712607558.879692]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712607558.879945]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.880217]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712607558.880509]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.881022]: Instances: []\n", - "[INFO] [1712607558.881292]: Direct Instances: []\n", - "[INFO] [1712607558.881634]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", - "[INFO] [1712607558.881883]: -------------------\n", - "[INFO] [1712607558.882122]: SOMA.PerformerRole \n", - "[INFO] [1712607558.882377]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712607558.882648]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607558.882910]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712607558.883206]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.883707]: Instances: []\n", - "[INFO] [1712607558.883971]: Direct Instances: []\n", - "[INFO] [1712607558.884304]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607558.884552]: -------------------\n", - "[INFO] [1712607558.884786]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712607558.885067]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712607558.885346]: Ancestors: {SOMA.SourcePathGoalTheory, DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.885593]: Subclasses: []\n", - "[INFO] [1712607558.885884]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607558.886373]: Instances: []\n", - "[INFO] [1712607558.886651]: Direct Instances: []\n", - "[INFO] [1712607558.886953]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607558.887201]: -------------------\n", - "[INFO] [1712607558.887435]: SOMA.Ceiling \n", - "[INFO] [1712607558.887666]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712607558.887956]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Ceiling, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607558.888210]: Subclasses: []\n", - "[INFO] [1712607558.888505]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.888989]: Instances: []\n", - "[INFO] [1712607558.889262]: Direct Instances: []\n", - "[INFO] [1712607558.889525]: Inverse Restrictions: []\n", - "[INFO] [1712607558.889766]: -------------------\n", - "[INFO] [1712607558.890000]: SOMA.RoomSurface \n", - "[INFO] [1712607558.890239]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712607558.890492]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607558.890753]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712607558.891043]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.891535]: Instances: []\n", - "[INFO] [1712607558.891807]: Direct Instances: []\n", - "[INFO] [1712607558.892070]: Inverse Restrictions: []\n", - "[INFO] [1712607558.892311]: -------------------\n", - "[INFO] [1712607558.892544]: SOMA.Floor \n", - "[INFO] [1712607558.892775]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712607558.893037]: Ancestors: {DUL.Object, SOMA.Floor, DUL.PhysicalObject, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607558.893291]: Subclasses: []\n", - "[INFO] [1712607558.893585]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.894068]: Instances: []\n", - "[INFO] [1712607558.894346]: Direct Instances: []\n", - "[INFO] [1712607558.894644]: Inverse Restrictions: []\n", - "[INFO] [1712607558.894891]: -------------------\n", - "[INFO] [1712607558.895130]: SOMA.Wall \n", - "[INFO] [1712607558.895367]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712607558.895630]: Ancestors: {DUL.Object, SOMA.Wall, DUL.PhysicalObject, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607558.895902]: Subclasses: []\n", - "[INFO] [1712607558.896200]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.896697]: Instances: []\n", - "[INFO] [1712607558.896952]: Direct Instances: []\n", - "[INFO] [1712607558.897200]: Inverse Restrictions: []\n", - "[INFO] [1712607558.897445]: -------------------\n", - "[INFO] [1712607558.897683]: SOMA.CeramicCooktop \n", - "[INFO] [1712607558.897920]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712607558.898198]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, SOMA.CeramicCooktop, DUL.Entity, SOMA.ElectricCooktop, DUL.PhysicalBody, SOMA.Cooktop}\n", - "[INFO] [1712607558.898467]: Subclasses: []\n", - "[INFO] [1712607558.898761]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.899248]: Instances: []\n", - "[INFO] [1712607558.899501]: Direct Instances: []\n", - "[INFO] [1712607558.899743]: Inverse Restrictions: []\n", - "[INFO] [1712607558.899986]: -------------------\n", - "[INFO] [1712607558.900230]: SOMA.ElectricCooktop \n", - "[INFO] [1712607558.900464]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712607558.900708]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.ElectricCooktop, DUL.PhysicalBody, SOMA.Cooktop}\n", - "[INFO] [1712607558.900954]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", - "[INFO] [1712607558.901232]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.901742]: Instances: []\n", - "[INFO] [1712607558.902004]: Direct Instances: []\n", - "[INFO] [1712607558.902262]: Inverse Restrictions: []\n", - "[INFO] [1712607558.902501]: -------------------\n", - "[INFO] [1712607558.902734]: SOMA.CerealBox \n", - "[INFO] [1712607558.902972]: Super classes: [SOMA.Box]\n", - "[INFO] [1712607558.903240]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.Box, owl.Thing, SOMA.CerealBox, DUL.Entity}\n", - "[INFO] [1712607558.903486]: Subclasses: []\n", - "[INFO] [1712607558.903768]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.904258]: Instances: []\n", - "[INFO] [1712607558.904512]: Direct Instances: []\n", - "[INFO] [1712607558.904758]: Inverse Restrictions: []\n", - "[INFO] [1712607558.904986]: -------------------\n", - "[INFO] [1712607558.905212]: SOMA.Channel \n", - "[INFO] [1712607558.905468]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712607558.905751]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Channel, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, SOMA.PathRole, DUL.SocialObject}\n", - "[INFO] [1712607558.905999]: Subclasses: []\n", - "[INFO] [1712607558.906290]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.906793]: Instances: []\n", - "[INFO] [1712607558.907059]: Direct Instances: []\n", - "[INFO] [1712607558.907362]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607558.907603]: -------------------\n", - "[INFO] [1712607558.907834]: SOMA.PathRole \n", - "[INFO] [1712607558.908075]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712607558.908322]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, SOMA.PathRole, DUL.SocialObject}\n", - "[INFO] [1712607558.908570]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712607558.908859]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.909350]: Instances: []\n", - "[INFO] [1712607558.909616]: Direct Instances: []\n", - "[INFO] [1712607558.909907]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712607558.910151]: -------------------\n", - "[INFO] [1712607558.910388]: SOMA.CommunicationTask \n", - "[INFO] [1712607558.911462]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712607558.911783]: Ancestors: {DUL.Object, DUL.EventType, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", - "[INFO] [1712607558.912061]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712607558.912375]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.912888]: Instances: []\n", - "[INFO] [1712607558.913167]: Direct Instances: []\n", - "[INFO] [1712607558.914038]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", - "[INFO] [1712607558.914314]: -------------------\n", - "[INFO] [1712607558.914568]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712607558.914814]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712607558.915074]: Ancestors: {SOMA.CheckingObjectPresence, SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712607558.915314]: Subclasses: []\n", - "[INFO] [1712607558.915596]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.916097]: Instances: []\n", - "[INFO] [1712607558.916358]: Direct Instances: []\n", - "[INFO] [1712607558.916606]: Inverse Restrictions: []\n", - "[INFO] [1712607558.916857]: -------------------\n", - "[INFO] [1712607558.917090]: SOMA.ChemicalProcess \n", - "[INFO] [1712607558.917334]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712607558.917607]: Ancestors: {DUL.Process, owl.Thing, DUL.Event, DUL.Entity, SOMA.ChemicalProcess}\n", - "[INFO] [1712607558.917851]: Subclasses: []\n", - "[INFO] [1712607558.918137]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.918625]: Instances: []\n", - "[INFO] [1712607558.918892]: Direct Instances: []\n", - "[INFO] [1712607558.919148]: Inverse Restrictions: []\n", - "[INFO] [1712607558.919384]: -------------------\n", - "[INFO] [1712607558.919619]: SOMA.Choice \n", - "[INFO] [1712607558.919846]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712607558.920126]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.GoalRole, DUL.Role, owl.Thing, SOMA.Choice, DUL.Concept, SOMA.ResultRole, DUL.SocialObject}\n", - "[INFO] [1712607558.920377]: Subclasses: []\n", - "[INFO] [1712607558.920663]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.921152]: Instances: []\n", - "[INFO] [1712607558.921420]: Direct Instances: []\n", - "[INFO] [1712607558.921672]: Inverse Restrictions: []\n", - "[INFO] [1712607558.921907]: -------------------\n", - "[INFO] [1712607558.922159]: SOMA.ResultRole \n", - "[INFO] [1712607558.922604]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712607558.923005]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.ResultRole, DUL.SocialObject}\n", - "[INFO] [1712607558.923401]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712607558.923819]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.924432]: Instances: []\n", - "[INFO] [1712607558.924839]: Direct Instances: []\n", - "[INFO] [1712607558.925228]: Inverse Restrictions: []\n", - "[INFO] [1712607558.925610]: -------------------\n", - "[INFO] [1712607558.925879]: SOMA.CircularCylinder \n", - "[INFO] [1712607558.926176]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712607558.926471]: Ancestors: {DUL.Abstract, SOMA.CircularCylinder, SOMA.CylinderShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607558.926725]: Subclasses: []\n", - "[INFO] [1712607558.927020]: Properties: [rdf-schema.comment, SOMA.hasRadius, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.927514]: Instances: []\n", - "[INFO] [1712607558.927859]: Direct Instances: []\n", - "[INFO] [1712607558.928127]: Inverse Restrictions: []\n", - "[INFO] [1712607558.928369]: -------------------\n", - "[INFO] [1712607558.928604]: SOMA.CylinderShape \n", - "[INFO] [1712607558.928871]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712607558.929184]: Ancestors: {DUL.Abstract, SOMA.CylinderShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607558.929448]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712607558.929750]: Properties: [rdf-schema.isDefinedBy, SOMA.hasLength, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", - "[INFO] [1712607558.930248]: Instances: []\n", - "[INFO] [1712607558.930527]: Direct Instances: []\n", - "[INFO] [1712607558.930787]: Inverse Restrictions: []\n", - "[INFO] [1712607558.931033]: -------------------\n", - "[INFO] [1712607558.931273]: SOMA.Classifier \n", - "[INFO] [1712607558.931508]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712607558.931797]: Ancestors: {DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Classifier, DUL.SocialObject}\n", - "[INFO] [1712607558.932058]: Subclasses: []\n", - "[INFO] [1712607558.932350]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.932838]: Instances: []\n", - "[INFO] [1712607558.933109]: Direct Instances: []\n", - "[INFO] [1712607558.933364]: Inverse Restrictions: []\n", - "[INFO] [1712607558.933613]: -------------------\n", - "[INFO] [1712607558.933850]: SOMA.StatisticalReasoner \n", - "[INFO] [1712607558.934079]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712607558.934321]: Ancestors: {DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.934581]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712607558.934872]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.935356]: Instances: []\n", - "[INFO] [1712607558.935616]: Direct Instances: []\n", - "[INFO] [1712607558.935881]: Inverse Restrictions: []\n", - "[INFO] [1712607558.936123]: -------------------\n", - "[INFO] [1712607558.936356]: SOMA.ClausalObject \n", - "[INFO] [1712607558.936585]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712607558.936825]: Ancestors: {DUL.Object, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607558.937085]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712607558.937371]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.937864]: Instances: []\n", - "[INFO] [1712607558.938112]: Direct Instances: []\n", - "[INFO] [1712607558.938386]: Inverse Restrictions: []\n", - "[INFO] [1712607558.938633]: -------------------\n", - "[INFO] [1712607558.938875]: SOMA.Phrase \n", - "[INFO] [1712607558.939106]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712607558.939347]: Ancestors: {DUL.Object, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607558.939589]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712607558.939885]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.940380]: Instances: []\n", - "[INFO] [1712607558.940638]: Direct Instances: []\n", - "[INFO] [1712607558.940885]: Inverse Restrictions: []\n", - "[INFO] [1712607558.941119]: -------------------\n", - "[INFO] [1712607558.941363]: SOMA.Clean \n", - "[INFO] [1712607558.941595]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712607558.941860]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, SOMA.Clean, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.942114]: Subclasses: []\n", - "[INFO] [1712607558.942408]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.942894]: Instances: []\n", - "[INFO] [1712607558.943156]: Direct Instances: []\n", - "[INFO] [1712607558.943851]: Inverse Restrictions: []\n", - "[INFO] [1712607558.944102]: -------------------\n", - "[INFO] [1712607558.944426]: SOMA.CleanlinessRegion \n", - "[INFO] [1712607558.944673]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607558.944927]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607558.945189]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712607558.945482]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.945975]: Instances: []\n", - "[INFO] [1712607558.946251]: Direct Instances: []\n", - "[INFO] [1712607558.946594]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712607558.946847]: -------------------\n", - "[INFO] [1712607558.947091]: SOMA.Cleaning \n", - "[INFO] [1712607558.947348]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712607558.947631]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Cleaning, DUL.EventType}\n", - "[INFO] [1712607558.947884]: Subclasses: []\n", - "[INFO] [1712607558.948493]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607558.949043]: Instances: []\n", - "[INFO] [1712607558.949323]: Direct Instances: []\n", - "[INFO] [1712607558.949585]: Inverse Restrictions: []\n", - "[INFO] [1712607558.949831]: -------------------\n", - "[INFO] [1712607558.950074]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712607558.950316]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607558.950569]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.950840]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712607558.951137]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.951650]: Instances: []\n", - "[INFO] [1712607558.951923]: Direct Instances: []\n", - "[INFO] [1712607558.952180]: Inverse Restrictions: []\n", - "[INFO] [1712607558.952418]: -------------------\n", - "[INFO] [1712607558.952654]: SOMA.Purification \n", - "[INFO] [1712607558.953670]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712607558.953965]: Ancestors: {SOMA.Purification, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.954234]: Subclasses: []\n", - "[INFO] [1712607558.954533]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.955033]: Instances: []\n", - "[INFO] [1712607558.955306]: Direct Instances: []\n", - "[INFO] [1712607558.955598]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712607558.955838]: -------------------\n", - "[INFO] [1712607558.956077]: SOMA.Cleanliness \n", - "[INFO] [1712607558.956314]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712607558.956591]: Ancestors: {SOMA.SocialQuality, owl.Thing, SOMA.Cleanliness, DUL.Entity, DUL.Quality}\n", - "[INFO] [1712607558.956846]: Subclasses: []\n", - "[INFO] [1712607558.957142]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.957632]: Instances: []\n", - "[INFO] [1712607558.957905]: Direct Instances: []\n", - "[INFO] [1712607558.958242]: Inverse Restrictions: []\n", - "[INFO] [1712607558.958488]: -------------------\n", - "[INFO] [1712607558.958729]: SOMA.SocialQuality \n", - "[INFO] [1712607558.958963]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712607558.959201]: Ancestors: {owl.Thing, SOMA.SocialQuality, DUL.Entity, DUL.Quality}\n", - "[INFO] [1712607558.959461]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712607558.959754]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.960244]: Instances: []\n", - "[INFO] [1712607558.960508]: Direct Instances: []\n", - "[INFO] [1712607558.960764]: Inverse Restrictions: []\n", - "[INFO] [1712607558.961089]: -------------------\n", - "[INFO] [1712607558.961341]: SOMA.Client-Server_Specification \n", - "[INFO] [1712607558.962407]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712607558.962749]: Ancestors: {DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, SOMA.Client-Server_Specification, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607558.963021]: Subclasses: []\n", - "[INFO] [1712607558.963331]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole]\n", - "[INFO] [1712607558.963815]: Instances: []\n", - "[INFO] [1712607558.964076]: Direct Instances: []\n", - "[INFO] [1712607558.964409]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712607558.964674]: -------------------\n", - "[INFO] [1712607558.964927]: SOMA.ClientRole \n", - "[INFO] [1712607558.965175]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712607558.966416]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.ClientRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.966697]: Subclasses: []\n", - "[INFO] [1712607558.967009]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607558.967502]: Instances: []\n", - "[INFO] [1712607558.967757]: Direct Instances: []\n", - "[INFO] [1712607558.968059]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712607558.968323]: -------------------\n", - "[INFO] [1712607558.968572]: SOMA.ServerRole \n", - "[INFO] [1712607558.968818]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712607558.969085]: Ancestors: {DUL.Object, SOMA.ServerRole, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.969329]: Subclasses: []\n", - "[INFO] [1712607558.969630]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607558.970136]: Instances: []\n", - "[INFO] [1712607558.970411]: Direct Instances: []\n", - "[INFO] [1712607558.970727]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712607558.970971]: -------------------\n", - "[INFO] [1712607558.971212]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712607558.971463]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607558.971719]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607558.971975]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712607558.972278]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.972779]: Instances: []\n", - "[INFO] [1712607558.973050]: Direct Instances: []\n", - "[INFO] [1712607558.973305]: Inverse Restrictions: []\n", - "[INFO] [1712607558.973546]: -------------------\n", - "[INFO] [1712607558.973779]: SOMA.Closing \n", - "[INFO] [1712607558.974013]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607558.974568]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Closing, DUL.EventType}\n", - "[INFO] [1712607558.975182]: Subclasses: []\n", - "[INFO] [1712607558.975873]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.976820]: Instances: []\n", - "[INFO] [1712607558.977348]: Direct Instances: []\n", - "[INFO] [1712607558.977882]: Inverse Restrictions: []\n", - "[INFO] [1712607558.978268]: -------------------\n", - "[INFO] [1712607558.978555]: SOMA.Delivering \n", - "[INFO] [1712607558.978840]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712607558.979131]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.Delivering, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.979415]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712607558.979743]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607558.980266]: Instances: []\n", - "[INFO] [1712607558.980541]: Direct Instances: []\n", - "[INFO] [1712607558.980806]: Inverse Restrictions: []\n", - "[INFO] [1712607558.981051]: -------------------\n", - "[INFO] [1712607558.981291]: SOMA.Fetching \n", - "[INFO] [1712607558.981530]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712607558.981821]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, SOMA.Fetching, owl.Thing, SOMA.PhysicalTask, SOMA.PhysicalAcquiring, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.982078]: Subclasses: []\n", - "[INFO] [1712607558.982387]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.982879]: Instances: []\n", - "[INFO] [1712607558.983160]: Direct Instances: []\n", - "[INFO] [1712607558.983422]: Inverse Restrictions: []\n", - "[INFO] [1712607558.983666]: -------------------\n", - "[INFO] [1712607558.983907]: SOMA.Lifting \n", - "[INFO] [1712607558.984143]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607558.984410]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Lifting, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.984677]: Subclasses: []\n", - "[INFO] [1712607558.984990]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.985481]: Instances: []\n", - "[INFO] [1712607558.985738]: Direct Instances: []\n", - "[INFO] [1712607558.985990]: Inverse Restrictions: []\n", - "[INFO] [1712607558.986245]: -------------------\n", - "[INFO] [1712607558.986491]: SOMA.Opening \n", - "[INFO] [1712607558.986729]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607558.986994]: Ancestors: {DUL.Object, SOMA.Opening, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.987240]: Subclasses: []\n", - "[INFO] [1712607558.987545]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.988038]: Instances: []\n", - "[INFO] [1712607558.988292]: Direct Instances: []\n", - "[INFO] [1712607558.988538]: Inverse Restrictions: []\n", - "[INFO] [1712607558.988778]: -------------------\n", - "[INFO] [1712607558.989021]: SOMA.Pulling \n", - "[INFO] [1712607558.989256]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607558.989519]: Ancestors: {SOMA.Pulling, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.989765]: Subclasses: []\n", - "[INFO] [1712607558.990077]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.990570]: Instances: []\n", - "[INFO] [1712607558.990834]: Direct Instances: []\n", - "[INFO] [1712607558.991089]: Inverse Restrictions: []\n", - "[INFO] [1712607558.991341]: -------------------\n", - "[INFO] [1712607558.991583]: SOMA.Pushing \n", - "[INFO] [1712607558.991820]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607558.992080]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", - "[INFO] [1712607558.992328]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712607558.992635]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.993131]: Instances: []\n", - "[INFO] [1712607558.993395]: Direct Instances: []\n", - "[INFO] [1712607558.993659]: Inverse Restrictions: []\n", - "[INFO] [1712607558.993899]: -------------------\n", - "[INFO] [1712607558.994137]: SOMA.Squeezing \n", - "[INFO] [1712607558.994376]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607558.994658]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Squeezing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607558.994920]: Subclasses: []\n", - "[INFO] [1712607558.995215]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.995706]: Instances: []\n", - "[INFO] [1712607558.995988]: Direct Instances: []\n", - "[INFO] [1712607558.996242]: Inverse Restrictions: []\n", - "[INFO] [1712607558.996492]: -------------------\n", - "[INFO] [1712607558.996735]: SOMA.ClosingDisposition \n", - "[INFO] [1712607558.996970]: Super classes: [SOMA.Linkage]\n", - "[INFO] [1712607558.997243]: Ancestors: {SOMA.ClosingDisposition, SOMA.Linkage, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607558.997483]: Subclasses: []\n", - "[INFO] [1712607558.997765]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607558.998292]: Instances: []\n", - "[INFO] [1712607558.998734]: Direct Instances: []\n", - "[INFO] [1712607558.999129]: Inverse Restrictions: []\n", - "[INFO] [1712607558.999503]: -------------------\n", - "[INFO] [1712607558.999868]: SOMA.Linkage \n", - "[INFO] [1712607559.000264]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712607559.000646]: Ancestors: {SOMA.Linkage, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.001033]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712607559.001459]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.002083]: Instances: []\n", - "[INFO] [1712607559.002390]: Direct Instances: []\n", - "[INFO] [1712607559.002673]: Inverse Restrictions: []\n", - "[INFO] [1712607559.002925]: -------------------\n", - "[INFO] [1712607559.003163]: SOMA.Clumsiness \n", - "[INFO] [1712607559.003398]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712607559.003666]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Clumsiness, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.003936]: Subclasses: []\n", - "[INFO] [1712607559.004231]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.004718]: Instances: []\n", - "[INFO] [1712607559.004976]: Direct Instances: []\n", - "[INFO] [1712607559.005227]: Inverse Restrictions: []\n", - "[INFO] [1712607559.005468]: -------------------\n", - "[INFO] [1712607559.005716]: SOMA.CoffeeCarafe \n", - "[INFO] [1712607559.005953]: Super classes: [SOMA.Carafe]\n", - "[INFO] [1712607559.006223]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Carafe, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.CoffeeCarafe}\n", - "[INFO] [1712607559.006469]: Subclasses: []\n", - "[INFO] [1712607559.006751]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.007257]: Instances: []\n", - "[INFO] [1712607559.007519]: Direct Instances: []\n", - "[INFO] [1712607559.007768]: Inverse Restrictions: []\n", - "[INFO] [1712607559.008004]: -------------------\n", - "[INFO] [1712607559.008234]: SOMA.CoffeeTable \n", - "[INFO] [1712607559.008469]: Super classes: [SOMA.Table]\n", - "[INFO] [1712607559.008741]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Table, DUL.Entity, SOMA.CoffeeTable}\n", - "[INFO] [1712607559.008989]: Subclasses: []\n", - "[INFO] [1712607559.009273]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.009774]: Instances: []\n", - "[INFO] [1712607559.010035]: Direct Instances: []\n", - "[INFO] [1712607559.010291]: Inverse Restrictions: []\n", - "[INFO] [1712607559.010530]: -------------------\n", - "[INFO] [1712607559.010764]: SOMA.CognitiveAgent \n", - "[INFO] [1712607559.011016]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712607559.011318]: Ancestors: {DUL.Agent, DUL.Object, owl.Thing, SOMA.CognitiveAgent, DUL.Entity}\n", - "[INFO] [1712607559.011572]: Subclasses: []\n", - "[INFO] [1712607559.011872]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.012357]: Instances: []\n", - "[INFO] [1712607559.012628]: Direct Instances: []\n", - "[INFO] [1712607559.012885]: Inverse Restrictions: []\n", - "[INFO] [1712607559.013125]: -------------------\n", - "[INFO] [1712607559.013359]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712607559.013589]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712607559.013849]: Ancestors: {DUL.Agent, DUL.Object, SOMA.SubCognitiveAgent, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.014102]: Subclasses: []\n", - "[INFO] [1712607559.014394]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.014877]: Instances: []\n", - "[INFO] [1712607559.015145]: Direct Instances: []\n", - "[INFO] [1712607559.015402]: Inverse Restrictions: []\n", - "[INFO] [1712607559.015641]: -------------------\n", - "[INFO] [1712607559.015873]: SOMA.CoilCooktop \n", - "[INFO] [1712607559.016103]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712607559.016369]: Ancestors: {DUL.Object, SOMA.CoilCooktop, SOMA.DesignedComponent, DUL.PhysicalObject, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.ElectricCooktop, DUL.PhysicalBody, SOMA.Cooktop}\n", - "[INFO] [1712607559.016629]: Subclasses: []\n", - "[INFO] [1712607559.016916]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.017419]: Instances: []\n", - "[INFO] [1712607559.017682]: Direct Instances: []\n", - "[INFO] [1712607559.017934]: Inverse Restrictions: []\n", - "[INFO] [1712607559.018190]: -------------------\n", - "[INFO] [1712607559.018435]: SOMA.Collision \n", - "[INFO] [1712607559.018674]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712607559.018932]: Ancestors: {DUL.Object, SOMA.Collision, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.019179]: Subclasses: []\n", - "[INFO] [1712607559.019461]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.019958]: Instances: []\n", - "[INFO] [1712607559.020220]: Direct Instances: []\n", - "[INFO] [1712607559.020466]: Inverse Restrictions: []\n", - "[INFO] [1712607559.020698]: -------------------\n", - "[INFO] [1712607559.020927]: SOMA.Extrinsic \n", - "[INFO] [1712607559.021164]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712607559.021416]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.021670]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712607559.021971]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.022536]: Instances: []\n", - "[INFO] [1712607559.022804]: Direct Instances: []\n", - "[INFO] [1712607559.023062]: Inverse Restrictions: []\n", - "[INFO] [1712607559.023301]: -------------------\n", - "[INFO] [1712607559.023535]: SOMA.ImperativeClause \n", - "[INFO] [1712607559.023812]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712607559.024096]: Ancestors: {DUL.Object, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, SOMA.ImperativeClause, DUL.SocialObject}\n", - "[INFO] [1712607559.024353]: Subclasses: []\n", - "[INFO] [1712607559.024659]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.025152]: Instances: []\n", - "[INFO] [1712607559.025409]: Direct Instances: []\n", - "[INFO] [1712607559.025700]: Inverse Restrictions: []\n", - "[INFO] [1712607559.026097]: -------------------\n", - "[INFO] [1712607559.026495]: SOMA.CommitedObject \n", - "[INFO] [1712607559.026754]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712607559.027040]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CommitedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.027381]: Subclasses: []\n", - "[INFO] [1712607559.027714]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.028249]: Instances: []\n", - "[INFO] [1712607559.028529]: Direct Instances: []\n", - "[INFO] [1712607559.028789]: Inverse Restrictions: []\n", - "[INFO] [1712607559.029034]: -------------------\n", - "[INFO] [1712607559.029273]: SOMA.ConnectedObject \n", - "[INFO] [1712607559.029518]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.029768]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.030020]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712607559.030318]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.030832]: Instances: []\n", - "[INFO] [1712607559.031096]: Direct Instances: []\n", - "[INFO] [1712607559.031464]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712607559.031711]: -------------------\n", - "[INFO] [1712607559.031950]: SOMA.CommunicationAction \n", - "[INFO] [1712607559.032220]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712607559.032503]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.CommunicationAction, DUL.Entity}\n", - "[INFO] [1712607559.032752]: Subclasses: []\n", - "[INFO] [1712607559.033042]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.033540]: Instances: []\n", - "[INFO] [1712607559.033808]: Direct Instances: []\n", - "[INFO] [1712607559.034873]: Inverse Restrictions: []\n", - "[INFO] [1712607559.035142]: -------------------\n", - "[INFO] [1712607559.035391]: SOMA.LinguisticObject \n", - "[INFO] [1712607559.035639]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712607559.035896]: Ancestors: {DUL.Object, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607559.036150]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712607559.036455]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.036967]: Instances: []\n", - "[INFO] [1712607559.037225]: Direct Instances: []\n", - "[INFO] [1712607559.037511]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712607559.037766]: -------------------\n", - "[INFO] [1712607559.038010]: SOMA.CommunicationReport \n", - "[INFO] [1712607559.038253]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607559.038519]: Ancestors: {DUL.Object, DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.038770]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712607559.039069]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.039570]: Instances: []\n", - "[INFO] [1712607559.039827]: Direct Instances: []\n", - "[INFO] [1712607559.040089]: Inverse Restrictions: []\n", - "[INFO] [1712607559.040332]: -------------------\n", - "[INFO] [1712607559.040573]: SOMA.Receiver \n", - "[INFO] [1712607559.040809]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712607559.041083]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Receiver, SOMA.ExperiencerRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607559.041343]: Subclasses: []\n", - "[INFO] [1712607559.041642]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.042137]: Instances: []\n", - "[INFO] [1712607559.042414]: Direct Instances: []\n", - "[INFO] [1712607559.042735]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607559.042982]: -------------------\n", - "[INFO] [1712607559.043219]: SOMA.Sender \n", - "[INFO] [1712607559.043453]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712607559.043734]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.Sender, DUL.SocialObject}\n", - "[INFO] [1712607559.043985]: Subclasses: []\n", - "[INFO] [1712607559.044277]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.044829]: Instances: []\n", - "[INFO] [1712607559.045107]: Direct Instances: []\n", - "[INFO] [1712607559.045438]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607559.045686]: -------------------\n", - "[INFO] [1712607559.045928]: SOMA.CommunicationTopic \n", - "[INFO] [1712607559.046943]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712607559.047252]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.047523]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607559.047831]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.048348]: Instances: []\n", - "[INFO] [1712607559.048625]: Direct Instances: []\n", - "[INFO] [1712607559.048889]: Inverse Restrictions: []\n", - "[INFO] [1712607559.049128]: -------------------\n", - "[INFO] [1712607559.049366]: SOMA.ResourceRole \n", - "[INFO] [1712607559.049602]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607559.049850]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.050123]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712607559.050432]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.050983]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607559.051257]: Direct Instances: []\n", - "[INFO] [1712607559.051524]: Inverse Restrictions: []\n", - "[INFO] [1712607559.051767]: -------------------\n", - "[INFO] [1712607559.052005]: SOMA.Compartment \n", - "[INFO] [1712607559.052241]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.052514]: Ancestors: {DUL.Object, SOMA.Compartment, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.052768]: Subclasses: [SOMA.FreezerCompartment]\n", - "[INFO] [1712607559.053061]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.053551]: Instances: []\n", - "[INFO] [1712607559.053822]: Direct Instances: []\n", - "[INFO] [1712607559.054077]: Inverse Restrictions: []\n", - "[INFO] [1712607559.054326]: -------------------\n", - "[INFO] [1712607559.054565]: SOMA.Composing \n", - "[INFO] [1712607559.054805]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712607559.055064]: Ancestors: {SOMA.Composing, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.055323]: Subclasses: []\n", - "[INFO] [1712607559.055624]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.056114]: Instances: []\n", - "[INFO] [1712607559.056383]: Direct Instances: []\n", - "[INFO] [1712607559.056689]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712607559.056933]: -------------------\n", - "[INFO] [1712607559.057168]: SOMA.Computer_Language \n", - "[INFO] [1712607559.057400]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712607559.057653]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607559.057914]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712607559.058209]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.058736]: Instances: []\n", - "[INFO] [1712607559.059007]: Direct Instances: []\n", - "[INFO] [1712607559.059268]: Inverse Restrictions: []\n", - "[INFO] [1712607559.059507]: -------------------\n", - "[INFO] [1712607559.059745]: SOMA.FormalLanguage \n", - "[INFO] [1712607559.059997]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712607559.060252]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607559.060504]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607559.060799]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.061329]: Instances: []\n", - "[INFO] [1712607559.061612]: Direct Instances: []\n", - "[INFO] [1712607559.061932]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712607559.062196]: -------------------\n", - "[INFO] [1712607559.062468]: SOMA.Computer_Program \n", - "[INFO] [1712607559.062732]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.064900]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712607559.065206]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712607559.065526]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607559.066040]: Instances: []\n", - "[INFO] [1712607559.066312]: Direct Instances: []\n", - "[INFO] [1712607559.068147]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712607559.068435]: -------------------\n", - "[INFO] [1712607559.068694]: SOMA.Programming_Language \n", - "[INFO] [1712607559.068950]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712607559.069230]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.Language, SOMA.FormalLanguage, DUL.Entity, SOMA.Programming_Language, DUL.SocialObject}\n", - "[INFO] [1712607559.069502]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712607559.069822]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.070330]: Instances: []\n", - "[INFO] [1712607559.070598]: Direct Instances: []\n", - "[INFO] [1712607559.070916]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712607559.071168]: -------------------\n", - "[INFO] [1712607559.071426]: SOMA.Conclusion \n", - "[INFO] [1712607559.071677]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712607559.071963]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Conclusion, DUL.Role, SOMA.Knowledge, owl.Thing, SOMA.CreatedObject, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.072213]: Subclasses: []\n", - "[INFO] [1712607559.072505]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.073008]: Instances: []\n", - "[INFO] [1712607559.073276]: Direct Instances: []\n", - "[INFO] [1712607559.074337]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607559.074601]: -------------------\n", - "[INFO] [1712607559.074860]: SOMA.CreatedObject \n", - "[INFO] [1712607559.075108]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.075362]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.CreatedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.075615]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712607559.075907]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.076412]: Instances: []\n", - "[INFO] [1712607559.076679]: Direct Instances: []\n", - "[INFO] [1712607559.077048]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712607559.077309]: -------------------\n", - "[INFO] [1712607559.077564]: SOMA.Knowledge \n", - "[INFO] [1712607559.077859]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712607559.078127]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.078391]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712607559.078692]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.079206]: Instances: []\n", - "[INFO] [1712607559.079500]: Direct Instances: []\n", - "[INFO] [1712607559.080674]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712607559.080959]: -------------------\n", - "[INFO] [1712607559.081214]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712607559.081464]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712607559.081734]: Ancestors: {DUL.Object, DUL.Description, SOMA.ConditionalSuccedence, SOMA.Succedence, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.081982]: Subclasses: []\n", - "[INFO] [1712607559.082342]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.083014]: Instances: []\n", - "[INFO] [1712607559.083412]: Direct Instances: []\n", - "[INFO] [1712607559.083809]: Inverse Restrictions: []\n", - "[INFO] [1712607559.084175]: -------------------\n", - "[INFO] [1712607559.084536]: SOMA.Configuration \n", - "[INFO] [1712607559.084906]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712607559.085315]: Ancestors: {DUL.Object, SOMA.Configuration, DUL.Description, owl.Thing, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.085693]: Subclasses: []\n", - "[INFO] [1712607559.086018]: Properties: [rdf-schema.comment, DUL.describes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.086525]: Instances: []\n", - "[INFO] [1712607559.086920]: Direct Instances: []\n", - "[INFO] [1712607559.087213]: Inverse Restrictions: []\n", - "[INFO] [1712607559.087476]: -------------------\n", - "[INFO] [1712607559.087724]: SOMA.Connectivity \n", - "[INFO] [1712607559.087969]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712607559.088219]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.088485]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712607559.088784]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.089280]: Instances: []\n", - "[INFO] [1712607559.089545]: Direct Instances: []\n", - "[INFO] [1712607559.089844]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712607559.090093]: -------------------\n", - "[INFO] [1712607559.090344]: SOMA.ContactState \n", - "[INFO] [1712607559.090605]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712607559.090879]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ContactState, DUL.SocialObject}\n", - "[INFO] [1712607559.091144]: Subclasses: []\n", - "[INFO] [1712607559.091438]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.091930]: Instances: []\n", - "[INFO] [1712607559.092183]: Direct Instances: []\n", - "[INFO] [1712607559.092430]: Inverse Restrictions: []\n", - "[INFO] [1712607559.092679]: -------------------\n", - "[INFO] [1712607559.092920]: SOMA.Container \n", - "[INFO] [1712607559.093151]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712607559.093413]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.Container, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607559.093675]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", - "[INFO] [1712607559.093966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.094500]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607559.094790]: Direct Instances: []\n", - "[INFO] [1712607559.095520]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712607559.095796]: -------------------\n", - "[INFO] [1712607559.096048]: SOMA.Containment \n", - "[INFO] [1712607559.096325]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712607559.096616]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", - "[INFO] [1712607559.096880]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712607559.097179]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.097678]: Instances: []\n", - "[INFO] [1712607559.097952]: Direct Instances: []\n", - "[INFO] [1712607559.098356]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712607559.098608]: -------------------\n", - "[INFO] [1712607559.098849]: SOMA.IncludedObject \n", - "[INFO] [1712607559.099087]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.099348]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.099615]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712607559.099912]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.100404]: Instances: []\n", - "[INFO] [1712607559.100660]: Direct Instances: []\n", - "[INFO] [1712607559.100946]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712607559.101200]: -------------------\n", - "[INFO] [1712607559.101442]: SOMA.ContainmentState \n", - "[INFO] [1712607559.102460]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712607559.102805]: Ancestors: {DUL.Object, DUL.Entity, SOMA.StateType, SOMA.ContainmentState, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607559.103076]: Subclasses: []\n", - "[INFO] [1712607559.103380]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.103871]: Instances: []\n", - "[INFO] [1712607559.104144]: Direct Instances: []\n", - "[INFO] [1712607559.104404]: Inverse Restrictions: []\n", - "[INFO] [1712607559.104644]: -------------------\n", - "[INFO] [1712607559.104877]: SOMA.FunctionalControl \n", - "[INFO] [1712607559.105132]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712607559.105398]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.105654]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712607559.105947]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.106443]: Instances: []\n", - "[INFO] [1712607559.106715]: Direct Instances: []\n", - "[INFO] [1712607559.106972]: Inverse Restrictions: []\n", - "[INFO] [1712607559.107217]: -------------------\n", - "[INFO] [1712607559.107452]: SOMA.ContainmentTheory \n", - "[INFO] [1712607559.107681]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712607559.107959]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.SocialObject, SOMA.ContainmentTheory}\n", - "[INFO] [1712607559.108220]: Subclasses: []\n", - "[INFO] [1712607559.108517]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.109010]: Instances: []\n", - "[INFO] [1712607559.109266]: Direct Instances: []\n", - "[INFO] [1712607559.109526]: Inverse Restrictions: []\n", - "[INFO] [1712607559.109767]: -------------------\n", - "[INFO] [1712607559.110000]: SOMA.ControlTheory \n", - "[INFO] [1712607559.110235]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712607559.110484]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.110744]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712607559.111083]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.111588]: Instances: []\n", - "[INFO] [1712607559.111857]: Direct Instances: []\n", - "[INFO] [1712607559.112120]: Inverse Restrictions: []\n", - "[INFO] [1712607559.112362]: -------------------\n", - "[INFO] [1712607559.112595]: SOMA.ContinuousJoint \n", - "[INFO] [1712607559.112823]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712607559.113096]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.ContinuousJoint, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607559.113361]: Subclasses: []\n", - "[INFO] [1712607559.113659]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.114151]: Instances: []\n", - "[INFO] [1712607559.114411]: Direct Instances: []\n", - "[INFO] [1712607559.114675]: Inverse Restrictions: []\n", - "[INFO] [1712607559.114916]: -------------------\n", - "[INFO] [1712607559.115150]: SOMA.HingeJoint \n", - "[INFO] [1712607559.115381]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712607559.115638]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607559.115889]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712607559.116177]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.116673]: Instances: []\n", - "[INFO] [1712607559.116941]: Direct Instances: []\n", - "[INFO] [1712607559.117206]: Inverse Restrictions: []\n", - "[INFO] [1712607559.117446]: -------------------\n", - "[INFO] [1712607559.117678]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712607559.117942]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712607559.118215]: Ancestors: {DUL.Object, DUL.Description, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.118477]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712607559.118770]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.119260]: Instances: []\n", - "[INFO] [1712607559.119531]: Direct Instances: []\n", - "[INFO] [1712607559.119797]: Inverse Restrictions: []\n", - "[INFO] [1712607559.120037]: -------------------\n", - "[INFO] [1712607559.120272]: SOMA.Cooktop \n", - "[INFO] [1712607559.120504]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.120749]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Cooktop}\n", - "[INFO] [1712607559.121006]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", - "[INFO] [1712607559.121297]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.121796]: Instances: []\n", - "[INFO] [1712607559.122064]: Direct Instances: []\n", - "[INFO] [1712607559.122320]: Inverse Restrictions: []\n", - "[INFO] [1712607559.122561]: -------------------\n", - "[INFO] [1712607559.122792]: SOMA.Countertop \n", - "[INFO] [1712607559.123018]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.123281]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Countertop}\n", - "[INFO] [1712607559.123535]: Subclasses: []\n", - "[INFO] [1712607559.123821]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.124300]: Instances: []\n", - "[INFO] [1712607559.124564]: Direct Instances: []\n", - "[INFO] [1712607559.124820]: Inverse Restrictions: []\n", - "[INFO] [1712607559.125056]: -------------------\n", - "[INFO] [1712607559.125290]: SOMA.Cover \n", - "[INFO] [1712607559.125520]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712607559.125782]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, SOMA.Cover}\n", - "[INFO] [1712607559.126041]: Subclasses: []\n", - "[INFO] [1712607559.126341]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.126830]: Instances: []\n", - "[INFO] [1712607559.127091]: Direct Instances: []\n", - "[INFO] [1712607559.127397]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712607559.127650]: -------------------\n", - "[INFO] [1712607559.127922]: SOMA.Coverage \n", - "[INFO] [1712607559.128186]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712607559.128460]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.Coverage, DUL.Quality}\n", - "[INFO] [1712607559.128720]: Subclasses: []\n", - "[INFO] [1712607559.129020]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.129639]: Instances: []\n", - "[INFO] [1712607559.129978]: Direct Instances: []\n", - "[INFO] [1712607559.130316]: Inverse Restrictions: []\n", - "[INFO] [1712607559.130638]: -------------------\n", - "[INFO] [1712607559.130910]: SOMA.CoveredObject \n", - "[INFO] [1712607559.131152]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712607559.131417]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.CoveredObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.131660]: Subclasses: []\n", - "[INFO] [1712607559.131951]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.132456]: Instances: []\n", - "[INFO] [1712607559.132723]: Direct Instances: []\n", - "[INFO] [1712607559.133016]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712607559.133260]: -------------------\n", - "[INFO] [1712607559.133498]: SOMA.CoverageTheory \n", - "[INFO] [1712607559.133736]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712607559.134012]: Ancestors: {DUL.Object, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.CoverageTheory, DUL.SocialObject}\n", - "[INFO] [1712607559.134263]: Subclasses: []\n", - "[INFO] [1712607559.134557]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.135040]: Instances: []\n", - "[INFO] [1712607559.135306]: Direct Instances: []\n", - "[INFO] [1712607559.135562]: Inverse Restrictions: []\n", - "[INFO] [1712607559.135802]: -------------------\n", - "[INFO] [1712607559.136038]: SOMA.CoveringTheory \n", - "[INFO] [1712607559.136276]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712607559.136562]: Ancestors: {DUL.Object, SOMA.CoveringTheory, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.136816]: Subclasses: []\n", - "[INFO] [1712607559.137107]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.137590]: Instances: []\n", - "[INFO] [1712607559.137862]: Direct Instances: []\n", - "[INFO] [1712607559.138114]: Inverse Restrictions: []\n", - "[INFO] [1712607559.138362]: -------------------\n", - "[INFO] [1712607559.138595]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712607559.138833]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712607559.139092]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.139350]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712607559.139643]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.140144]: Instances: []\n", - "[INFO] [1712607559.140407]: Direct Instances: []\n", - "[INFO] [1712607559.140664]: Inverse Restrictions: []\n", - "[INFO] [1712607559.140902]: -------------------\n", - "[INFO] [1712607559.141136]: SOMA.CrackingTheory \n", - "[INFO] [1712607559.141377]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712607559.141649]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, SOMA.CrackingTheory, DUL.SocialObject}\n", - "[INFO] [1712607559.141896]: Subclasses: []\n", - "[INFO] [1712607559.142188]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.142671]: Instances: []\n", - "[INFO] [1712607559.142942]: Direct Instances: []\n", - "[INFO] [1712607559.143196]: Inverse Restrictions: []\n", - "[INFO] [1712607559.143435]: -------------------\n", - "[INFO] [1712607559.143668]: SOMA.Creation \n", - "[INFO] [1712607559.143898]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712607559.144167]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Creation, DUL.SocialObject}\n", - "[INFO] [1712607559.144480]: Subclasses: []\n", - "[INFO] [1712607559.144786]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.145272]: Instances: []\n", - "[INFO] [1712607559.145529]: Direct Instances: []\n", - "[INFO] [1712607559.145807]: Inverse Restrictions: []\n", - "[INFO] [1712607559.146056]: -------------------\n", - "[INFO] [1712607559.146297]: SOMA.Tableware \n", - "[INFO] [1712607559.146530]: Super classes: [SOMA.DesignedTool]\n", - "[INFO] [1712607559.146779]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Tableware}\n", - "[INFO] [1712607559.147038]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", - "[INFO] [1712607559.147326]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.147845]: Instances: []\n", - "[INFO] [1712607559.148095]: Direct Instances: []\n", - "[INFO] [1712607559.148349]: Inverse Restrictions: []\n", - "[INFO] [1712607559.148589]: -------------------\n", - "[INFO] [1712607559.148824]: SOMA.Insertion \n", - "[INFO] [1712607559.149074]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712607559.149350]: Ancestors: {SOMA.Insertion, owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", - "[INFO] [1712607559.149955]: Subclasses: []\n", - "[INFO] [1712607559.150327]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.150945]: Instances: []\n", - "[INFO] [1712607559.151414]: Direct Instances: []\n", - "[INFO] [1712607559.152107]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712607559.152480]: -------------------\n", - "[INFO] [1712607559.152767]: SOMA.Cup \n", - "[INFO] [1712607559.153044]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712607559.153337]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Cup, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607559.153593]: Subclasses: []\n", - "[INFO] [1712607559.153884]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.154408]: Instances: []\n", - "[INFO] [1712607559.154735]: Direct Instances: []\n", - "[INFO] [1712607559.155018]: Inverse Restrictions: []\n", - "[INFO] [1712607559.155285]: -------------------\n", - "[INFO] [1712607559.155538]: SOMA.DesignedHandle \n", - "[INFO] [1712607559.155800]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", - "[INFO] [1712607559.156078]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.DesignedHandle}\n", - "[INFO] [1712607559.156327]: Subclasses: []\n", - "[INFO] [1712607559.156621]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.157131]: Instances: []\n", - "[INFO] [1712607559.157399]: Direct Instances: []\n", - "[INFO] [1712607559.157747]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", - "[INFO] [1712607559.157997]: -------------------\n", - "[INFO] [1712607559.158245]: SOMA.Cupboard \n", - "[INFO] [1712607559.158502]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", - "[INFO] [1712607559.158790]: Ancestors: {DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Cupboard}\n", - "[INFO] [1712607559.159063]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", - "[INFO] [1712607559.159362]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.159867]: Instances: []\n", - "[INFO] [1712607559.160135]: Direct Instances: []\n", - "[INFO] [1712607559.160390]: Inverse Restrictions: []\n", - "[INFO] [1712607559.160631]: -------------------\n", - "[INFO] [1712607559.160866]: SOMA.DesignedFurniture \n", - "[INFO] [1712607559.161113]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712607559.161383]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.161659]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712607559.161956]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.162471]: Instances: []\n", - "[INFO] [1712607559.162755]: Direct Instances: []\n", - "[INFO] [1712607559.163021]: Inverse Restrictions: []\n", - "[INFO] [1712607559.163268]: -------------------\n", - "[INFO] [1712607559.163505]: SOMA.Rack \n", - "[INFO] [1712607559.163734]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.163997]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, SOMA.Rack, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.164256]: Subclasses: []\n", - "[INFO] [1712607559.164545]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.165041]: Instances: []\n", - "[INFO] [1712607559.165311]: Direct Instances: []\n", - "[INFO] [1712607559.165588]: Inverse Restrictions: [SOMA.Cupboard]\n", - "[INFO] [1712607559.165833]: -------------------\n", - "[INFO] [1712607559.166070]: SOMA.Cutlery \n", - "[INFO] [1712607559.166306]: Super classes: [SOMA.Tableware]\n", - "[INFO] [1712607559.166566]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware}\n", - "[INFO] [1712607559.166837]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", - "[INFO] [1712607559.167128]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.167631]: Instances: []\n", - "[INFO] [1712607559.167890]: Direct Instances: []\n", - "[INFO] [1712607559.168136]: Inverse Restrictions: []\n", - "[INFO] [1712607559.168390]: -------------------\n", - "[INFO] [1712607559.168631]: SOMA.Cuttability \n", - "[INFO] [1712607559.168869]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712607559.169127]: Ancestors: {SOMA.Cuttability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.169374]: Subclasses: []\n", - "[INFO] [1712607559.169674]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.170173]: Instances: []\n", - "[INFO] [1712607559.170429]: Direct Instances: []\n", - "[INFO] [1712607559.170678]: Inverse Restrictions: []\n", - "[INFO] [1712607559.170915]: -------------------\n", - "[INFO] [1712607559.171164]: SOMA.Tool \n", - "[INFO] [1712607559.171414]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712607559.171667]: Ancestors: {SOMA.Tool, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.171914]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712607559.172215]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.172720]: Instances: []\n", - "[INFO] [1712607559.172982]: Direct Instances: []\n", - "[INFO] [1712607559.173270]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712607559.173526]: -------------------\n", - "[INFO] [1712607559.173777]: SOMA.Cutting \n", - "[INFO] [1712607559.174016]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712607559.174281]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.174530]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712607559.174828]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.175319]: Instances: []\n", - "[INFO] [1712607559.175579]: Direct Instances: []\n", - "[INFO] [1712607559.175827]: Inverse Restrictions: []\n", - "[INFO] [1712607559.176065]: -------------------\n", - "[INFO] [1712607559.176310]: SOMA.CuttingTool \n", - "[INFO] [1712607559.176558]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", - "[INFO] [1712607559.176806]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.177047]: Subclasses: [SOMA.Knife]\n", - "[INFO] [1712607559.177327]: Properties: [SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.177831]: Instances: []\n", - "[INFO] [1712607559.178111]: Direct Instances: []\n", - "[INFO] [1712607559.178376]: Inverse Restrictions: []\n", - "[INFO] [1712607559.178620]: -------------------\n", - "[INFO] [1712607559.178858]: SOMA.DesignedTool \n", - "[INFO] [1712607559.179106]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712607559.179382]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.179643]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712607559.179935]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.180484]: Instances: []\n", - "[INFO] [1712607559.180755]: Direct Instances: []\n", - "[INFO] [1712607559.181015]: Inverse Restrictions: []\n", - "[INFO] [1712607559.181254]: -------------------\n", - "[INFO] [1712607559.181488]: SOMA.Shaping \n", - "[INFO] [1712607559.181758]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712607559.182042]: Ancestors: {SOMA.Shaping, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.182309]: Subclasses: []\n", - "[INFO] [1712607559.182607]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.183097]: Instances: []\n", - "[INFO] [1712607559.183354]: Direct Instances: []\n", - "[INFO] [1712607559.183637]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712607559.183884]: -------------------\n", - "[INFO] [1712607559.184120]: SOMA.Database \n", - "[INFO] [1712607559.184355]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607559.184620]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", - "[INFO] [1712607559.184890]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712607559.185187]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.185684]: Instances: []\n", - "[INFO] [1712607559.185956]: Direct Instances: []\n", - "[INFO] [1712607559.186219]: Inverse Restrictions: []\n", - "[INFO] [1712607559.186466]: -------------------\n", - "[INFO] [1712607559.186696]: SOMA.SoftwareRole \n", - "[INFO] [1712607559.186951]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712607559.187212]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.187469]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712607559.187760]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.188281]: Instances: []\n", - "[INFO] [1712607559.188555]: Direct Instances: []\n", - "[INFO] [1712607559.188852]: Inverse Restrictions: []\n", - "[INFO] [1712607559.189102]: -------------------\n", - "[INFO] [1712607559.189345]: SOMA.Deciding \n", - "[INFO] [1712607559.189578]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607559.189836]: Ancestors: {owl.Thing, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712607559.190104]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712607559.190409]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.190908]: Instances: []\n", - "[INFO] [1712607559.191160]: Direct Instances: []\n", - "[INFO] [1712607559.191417]: Inverse Restrictions: []\n", - "[INFO] [1712607559.191665]: -------------------\n", - "[INFO] [1712607559.191900]: SOMA.DerivingInformation \n", - "[INFO] [1712607559.192144]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712607559.192383]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712607559.192652]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712607559.192951]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712607559.193471]: Instances: []\n", - "[INFO] [1712607559.193739]: Direct Instances: []\n", - "[INFO] [1712607559.193999]: Inverse Restrictions: []\n", - "[INFO] [1712607559.194241]: -------------------\n", - "[INFO] [1712607559.194532]: SOMA.DeductiveReasoning \n", - "[INFO] [1712607559.194766]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712607559.195030]: Ancestors: {SOMA.DeductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.195286]: Subclasses: []\n", - "[INFO] [1712607559.195575]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.196093]: Instances: []\n", - "[INFO] [1712607559.196355]: Direct Instances: []\n", - "[INFO] [1712607559.196614]: Inverse Restrictions: []\n", - "[INFO] [1712607559.196851]: -------------------\n", - "[INFO] [1712607559.197086]: SOMA.Deformation \n", - "[INFO] [1712607559.197339]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712607559.197622]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, SOMA.Deformation, DUL.EventType}\n", - "[INFO] [1712607559.197873]: Subclasses: []\n", - "[INFO] [1712607559.198174]: Properties: [SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.198664]: Instances: []\n", - "[INFO] [1712607559.198936]: Direct Instances: []\n", - "[INFO] [1712607559.199194]: Inverse Restrictions: []\n", - "[INFO] [1712607559.199432]: -------------------\n", - "[INFO] [1712607559.199663]: SOMA.ShapedObject \n", - "[INFO] [1712607559.199930]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712607559.200220]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ShapedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.200483]: Subclasses: []\n", - "[INFO] [1712607559.200781]: Properties: [SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.201270]: Instances: []\n", - "[INFO] [1712607559.201538]: Direct Instances: []\n", - "[INFO] [1712607559.201859]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712607559.202108]: -------------------\n", - "[INFO] [1712607559.202362]: SOMA.FluidFlow \n", - "[INFO] [1712607559.202638]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712607559.202917]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.FluidFlow, SOMA.Motion}\n", - "[INFO] [1712607559.203166]: Subclasses: []\n", - "[INFO] [1712607559.203453]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.203958]: Instances: []\n", - "[INFO] [1712607559.204223]: Direct Instances: []\n", - "[INFO] [1712607559.204477]: Inverse Restrictions: []\n", - "[INFO] [1712607559.204715]: -------------------\n", - "[INFO] [1712607559.204948]: SOMA.Shifting \n", - "[INFO] [1712607559.205211]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712607559.205494]: Ancestors: {SOMA.Shifting, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.205748]: Subclasses: []\n", - "[INFO] [1712607559.206039]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.206537]: Instances: []\n", - "[INFO] [1712607559.206852]: Direct Instances: []\n", - "[INFO] [1712607559.207225]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712607559.207486]: -------------------\n", - "[INFO] [1712607559.207724]: SOMA.DependentPlace \n", - "[INFO] [1712607559.207961]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712607559.208219]: Ancestors: {DUL.Object, owl.Thing, DUL.Entity, SOMA.DependentPlace, SOMA.Feature}\n", - "[INFO] [1712607559.208473]: Subclasses: []\n", - "[INFO] [1712607559.208762]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.209244]: Instances: []\n", - "[INFO] [1712607559.209519]: Direct Instances: []\n", - "[INFO] [1712607559.209775]: Inverse Restrictions: []\n", - "[INFO] [1712607559.210012]: -------------------\n", - "[INFO] [1712607559.210256]: SOMA.Deposit \n", - "[INFO] [1712607559.210495]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712607559.210756]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Deposit, DUL.SocialObject}\n", - "[INFO] [1712607559.211015]: Subclasses: []\n", - "[INFO] [1712607559.211334]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.211824]: Instances: []\n", - "[INFO] [1712607559.212077]: Direct Instances: []\n", - "[INFO] [1712607559.212365]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712607559.212628]: -------------------\n", - "[INFO] [1712607559.212873]: SOMA.DepositedObject \n", - "[INFO] [1712607559.213112]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.213374]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.DepositedObject, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.213614]: Subclasses: []\n", - "[INFO] [1712607559.213895]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.214403]: Instances: []\n", - "[INFO] [1712607559.214668]: Direct Instances: []\n", - "[INFO] [1712607559.214958]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712607559.215199]: -------------------\n", - "[INFO] [1712607559.215441]: SOMA.InformationAcquisition \n", - "[INFO] [1712607559.215682]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.215920]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712607559.216175]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712607559.216463]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712607559.217004]: Instances: []\n", - "[INFO] [1712607559.217272]: Direct Instances: []\n", - "[INFO] [1712607559.217561]: Inverse Restrictions: []\n", - "[INFO] [1712607559.217798]: -------------------\n", - "[INFO] [1712607559.218032]: SOMA.Premise \n", - "[INFO] [1712607559.218278]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712607559.218552]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Premise, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.218798]: Subclasses: []\n", - "[INFO] [1712607559.219087]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.219569]: Instances: []\n", - "[INFO] [1712607559.219834]: Direct Instances: []\n", - "[INFO] [1712607559.220140]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607559.220385]: -------------------\n", - "[INFO] [1712607559.220622]: SOMA.FunctionalPart \n", - "[INFO] [1712607559.221262]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712607559.221541]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.221811]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712607559.222106]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.222653]: Instances: []\n", - "[INFO] [1712607559.222929]: Direct Instances: []\n", - "[INFO] [1712607559.223191]: Inverse Restrictions: []\n", - "[INFO] [1712607559.223435]: -------------------\n", - "[INFO] [1712607559.223670]: SOMA.Graspability \n", - "[INFO] [1712607559.223907]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712607559.224183]: Ancestors: {SOMA.Graspability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.224435]: Subclasses: []\n", - "[INFO] [1712607559.224720]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.225197]: Instances: []\n", - "[INFO] [1712607559.225464]: Direct Instances: []\n", - "[INFO] [1712607559.225746]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712607559.225990]: -------------------\n", - "[INFO] [1712607559.226230]: SOMA.DesignedSpade \n", - "[INFO] [1712607559.226464]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.226724]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, SOMA.DesignedSpade, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.226978]: Subclasses: []\n", - "[INFO] [1712607559.227534]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.228231]: Instances: []\n", - "[INFO] [1712607559.228677]: Direct Instances: []\n", - "[INFO] [1712607559.229141]: Inverse Restrictions: [SOMA.Spatula]\n", - "[INFO] [1712607559.229531]: -------------------\n", - "[INFO] [1712607559.229907]: SOMA.DessertFork \n", - "[INFO] [1712607559.230189]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712607559.230598]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.DessertFork, SOMA.Tableware, SOMA.Fork}\n", - "[INFO] [1712607559.230988]: Subclasses: []\n", - "[INFO] [1712607559.231408]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.231930]: Instances: []\n", - "[INFO] [1712607559.232202]: Direct Instances: []\n", - "[INFO] [1712607559.232459]: Inverse Restrictions: []\n", - "[INFO] [1712607559.232707]: -------------------\n", - "[INFO] [1712607559.232953]: SOMA.Fork \n", - "[INFO] [1712607559.233202]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712607559.233455]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Fork}\n", - "[INFO] [1712607559.233706]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", - "[INFO] [1712607559.233996]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.234517]: Instances: []\n", - "[INFO] [1712607559.234799]: Direct Instances: []\n", - "[INFO] [1712607559.235062]: Inverse Restrictions: []\n", - "[INFO] [1712607559.235304]: -------------------\n", - "[INFO] [1712607559.235543]: SOMA.Destination \n", - "[INFO] [1712607559.235793]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712607559.236043]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.236293]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712607559.236609]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.237098]: Instances: []\n", - "[INFO] [1712607559.237362]: Direct Instances: []\n", - "[INFO] [1712607559.237706]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712607559.237964]: -------------------\n", - "[INFO] [1712607559.238220]: SOMA.Location \n", - "[INFO] [1712607559.238463]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712607559.238712]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.238962]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712607559.239248]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.239763]: Instances: []\n", - "[INFO] [1712607559.240029]: Direct Instances: []\n", - "[INFO] [1712607559.240284]: Inverse Restrictions: []\n", - "[INFO] [1712607559.240535]: -------------------\n", - "[INFO] [1712607559.240778]: SOMA.DestroyedObject \n", - "[INFO] [1712607559.241016]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.241280]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.DestroyedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.241528]: Subclasses: []\n", - "[INFO] [1712607559.241823]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.242324]: Instances: []\n", - "[INFO] [1712607559.242588]: Direct Instances: []\n", - "[INFO] [1712607559.242886]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712607559.243150]: -------------------\n", - "[INFO] [1712607559.243398]: SOMA.Destruction \n", - "[INFO] [1712607559.243644]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712607559.243910]: Ancestors: {DUL.Object, DUL.EventType, SOMA.Destruction, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.244153]: Subclasses: []\n", - "[INFO] [1712607559.244505]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.245020]: Instances: []\n", - "[INFO] [1712607559.245285]: Direct Instances: []\n", - "[INFO] [1712607559.245538]: Inverse Restrictions: []\n", - "[INFO] [1712607559.245807]: -------------------\n", - "[INFO] [1712607559.246058]: SOMA.DetectedObject \n", - "[INFO] [1712607559.246306]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.246572]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.DetectedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.246818]: Subclasses: []\n", - "[INFO] [1712607559.247113]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.247617]: Instances: []\n", - "[INFO] [1712607559.247881]: Direct Instances: []\n", - "[INFO] [1712607559.248130]: Inverse Restrictions: []\n", - "[INFO] [1712607559.248367]: -------------------\n", - "[INFO] [1712607559.248603]: SOMA.DeviceState \n", - "[INFO] [1712607559.248839]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607559.249113]: Ancestors: {SOMA.DeviceState, SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607559.249362]: Subclasses: []\n", - "[INFO] [1712607559.249651]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.250133]: Instances: []\n", - "[INFO] [1712607559.250411]: Direct Instances: []\n", - "[INFO] [1712607559.250666]: Inverse Restrictions: []\n", - "[INFO] [1712607559.250908]: -------------------\n", - "[INFO] [1712607559.251144]: SOMA.DeviceStateRange \n", - "[INFO] [1712607559.251384]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607559.252253]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607559.252525]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712607559.252825]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.253313]: Instances: []\n", - "[INFO] [1712607559.253588]: Direct Instances: []\n", - "[INFO] [1712607559.253850]: Inverse Restrictions: []\n", - "[INFO] [1712607559.254092]: -------------------\n", - "[INFO] [1712607559.254334]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712607559.254566]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712607559.254828]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceTurnedOff, DUL.Region}\n", - "[INFO] [1712607559.255088]: Subclasses: []\n", - "[INFO] [1712607559.255382]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.255871]: Instances: []\n", - "[INFO] [1712607559.256127]: Direct Instances: []\n", - "[INFO] [1712607559.256410]: Inverse Restrictions: []\n", - "[INFO] [1712607559.256665]: -------------------\n", - "[INFO] [1712607559.256903]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712607559.257137]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712607559.257397]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceTurnedOn, DUL.Region}\n", - "[INFO] [1712607559.257656]: Subclasses: []\n", - "[INFO] [1712607559.257948]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.258444]: Instances: []\n", - "[INFO] [1712607559.258705]: Direct Instances: []\n", - "[INFO] [1712607559.258992]: Inverse Restrictions: []\n", - "[INFO] [1712607559.259231]: -------------------\n", - "[INFO] [1712607559.259475]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712607559.259711]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712607559.259953]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, owl.Thing, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.260196]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712607559.260478]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.261009]: Instances: []\n", - "[INFO] [1712607559.261312]: Direct Instances: []\n", - "[INFO] [1712607559.261576]: Inverse Restrictions: []\n", - "[INFO] [1712607559.261838]: -------------------\n", - "[INFO] [1712607559.262085]: SOMA.Dicing \n", - "[INFO] [1712607559.262327]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712607559.262613]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, SOMA.Dicing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.262866]: Subclasses: []\n", - "[INFO] [1712607559.263157]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.263648]: Instances: []\n", - "[INFO] [1712607559.263922]: Direct Instances: []\n", - "[INFO] [1712607559.264176]: Inverse Restrictions: []\n", - "[INFO] [1712607559.264412]: -------------------\n", - "[INFO] [1712607559.264646]: SOMA.DinnerPlate \n", - "[INFO] [1712607559.264880]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712607559.265155]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.DinnerPlate, SOMA.Crockery, SOMA.Plate, SOMA.Tableware}\n", - "[INFO] [1712607559.265405]: Subclasses: []\n", - "[INFO] [1712607559.265687]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.266173]: Instances: []\n", - "[INFO] [1712607559.266446]: Direct Instances: []\n", - "[INFO] [1712607559.266701]: Inverse Restrictions: []\n", - "[INFO] [1712607559.266943]: -------------------\n", - "[INFO] [1712607559.267178]: SOMA.DirectedMotion \n", - "[INFO] [1712607559.267412]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712607559.267660]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607559.267930]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712607559.268233]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.268749]: Instances: []\n", - "[INFO] [1712607559.269021]: Direct Instances: []\n", - "[INFO] [1712607559.269285]: Inverse Restrictions: []\n", - "[INFO] [1712607559.269524]: -------------------\n", - "[INFO] [1712607559.269765]: SOMA.UndirectedMotion \n", - "[INFO] [1712607559.269999]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712607559.270268]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, SOMA.UndirectedMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607559.270528]: Subclasses: []\n", - "[INFO] [1712607559.270823]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.271311]: Instances: []\n", - "[INFO] [1712607559.271567]: Direct Instances: []\n", - "[INFO] [1712607559.271808]: Inverse Restrictions: []\n", - "[INFO] [1712607559.272056]: -------------------\n", - "[INFO] [1712607559.272293]: SOMA.Dirty \n", - "[INFO] [1712607559.272526]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712607559.272785]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, SOMA.Dirty, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607559.273043]: Subclasses: []\n", - "[INFO] [1712607559.273331]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.273815]: Instances: []\n", - "[INFO] [1712607559.274067]: Direct Instances: []\n", - "[INFO] [1712607559.274334]: Inverse Restrictions: []\n", - "[INFO] [1712607559.274577]: -------------------\n", - "[INFO] [1712607559.274814]: SOMA.Discourse \n", - "[INFO] [1712607559.275044]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607559.275304]: Ancestors: {DUL.Object, SOMA.Discourse, DUL.Entity, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.275560]: Subclasses: []\n", - "[INFO] [1712607559.275848]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.276331]: Instances: []\n", - "[INFO] [1712607559.276582]: Direct Instances: []\n", - "[INFO] [1712607559.276838]: Inverse Restrictions: []\n", - "[INFO] [1712607559.277079]: -------------------\n", - "[INFO] [1712607559.277310]: SOMA.Dishwasher \n", - "[INFO] [1712607559.277537]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", - "[INFO] [1712607559.277861]: Ancestors: {DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Dishwasher}\n", - "[INFO] [1712607559.278128]: Subclasses: []\n", - "[INFO] [1712607559.278423]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.278913]: Instances: []\n", - "[INFO] [1712607559.279191]: Direct Instances: []\n", - "[INFO] [1712607559.279450]: Inverse Restrictions: []\n", - "[INFO] [1712607559.279693]: -------------------\n", - "[INFO] [1712607559.279932]: SOMA.DishwasherTab \n", - "[INFO] [1712607559.280165]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712607559.280455]: Ancestors: {DUL.Object, DUL.FunctionalSubstance, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.Substance, SOMA.DishwasherTab, DUL.PhysicalArtifact, owl.Thing, DUL.DesignedSubstance, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.280716]: Subclasses: []\n", - "[INFO] [1712607559.281007]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.281495]: Instances: []\n", - "[INFO] [1712607559.281766]: Direct Instances: []\n", - "[INFO] [1712607559.282024]: Inverse Restrictions: []\n", - "[INFO] [1712607559.282344]: -------------------\n", - "[INFO] [1712607559.282708]: SOMA.Dispenser \n", - "[INFO] [1712607559.283062]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712607559.283442]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Dispenser, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.283833]: Subclasses: [SOMA.SugarDispenser]\n", - "[INFO] [1712607559.284242]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.284854]: Instances: []\n", - "[INFO] [1712607559.285153]: Direct Instances: []\n", - "[INFO] [1712607559.285427]: Inverse Restrictions: []\n", - "[INFO] [1712607559.285671]: -------------------\n", - "[INFO] [1712607559.286031]: SOMA.Distancing \n", - "[INFO] [1712607559.286304]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712607559.286590]: Ancestors: {DUL.Object, SOMA.Distancing, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.286845]: Subclasses: []\n", - "[INFO] [1712607559.287135]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.287638]: Instances: []\n", - "[INFO] [1712607559.287901]: Direct Instances: []\n", - "[INFO] [1712607559.288154]: Inverse Restrictions: []\n", - "[INFO] [1712607559.288388]: -------------------\n", - "[INFO] [1712607559.288618]: SOMA.Door \n", - "[INFO] [1712607559.288862]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.289131]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Door}\n", - "[INFO] [1712607559.289378]: Subclasses: []\n", - "[INFO] [1712607559.289659]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.290159]: Instances: []\n", - "[INFO] [1712607559.290423]: Direct Instances: []\n", - "[INFO] [1712607559.290702]: Inverse Restrictions: [SOMA.Refrigerator]\n", - "[INFO] [1712607559.290941]: -------------------\n", - "[INFO] [1712607559.291180]: SOMA.Drawer \n", - "[INFO] [1712607559.291413]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", - "[INFO] [1712607559.291687]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.Drawer, DUL.PhysicalBody}\n", - "[INFO] [1712607559.291937]: Subclasses: []\n", - "[INFO] [1712607559.292217]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.292696]: Instances: []\n", - "[INFO] [1712607559.292960]: Direct Instances: []\n", - "[INFO] [1712607559.293214]: Inverse Restrictions: []\n", - "[INFO] [1712607559.293450]: -------------------\n", - "[INFO] [1712607559.293682]: SOMA.Dreaming \n", - "[INFO] [1712607559.293912]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607559.294181]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", - "[INFO] [1712607559.294487]: Subclasses: []\n", - "[INFO] [1712607559.294784]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.295298]: Instances: []\n", - "[INFO] [1712607559.295586]: Direct Instances: []\n", - "[INFO] [1712607559.295850]: Inverse Restrictions: []\n", - "[INFO] [1712607559.296093]: -------------------\n", - "[INFO] [1712607559.296334]: SOMA.Driving \n", - "[INFO] [1712607559.296565]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607559.296830]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, DUL.EventType, SOMA.Driving, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607559.297092]: Subclasses: []\n", - "[INFO] [1712607559.297399]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.297887]: Instances: []\n", - "[INFO] [1712607559.298149]: Direct Instances: []\n", - "[INFO] [1712607559.298403]: Inverse Restrictions: []\n", - "[INFO] [1712607559.298648]: -------------------\n", - "[INFO] [1712607559.298889]: SOMA.Flying \n", - "[INFO] [1712607559.299120]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607559.299392]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Flying, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607559.299645]: Subclasses: []\n", - "[INFO] [1712607559.299947]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.300439]: Instances: []\n", - "[INFO] [1712607559.300709]: Direct Instances: []\n", - "[INFO] [1712607559.300966]: Inverse Restrictions: []\n", - "[INFO] [1712607559.301206]: -------------------\n", - "[INFO] [1712607559.301444]: SOMA.Swimming \n", - "[INFO] [1712607559.301677]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607559.301941]: Ancestors: {DUL.Object, SOMA.DirectedMotion, SOMA.Swimming, DUL.Entity, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607559.302236]: Subclasses: []\n", - "[INFO] [1712607559.302548]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.303045]: Instances: []\n", - "[INFO] [1712607559.303299]: Direct Instances: []\n", - "[INFO] [1712607559.303558]: Inverse Restrictions: []\n", - "[INFO] [1712607559.303801]: -------------------\n", - "[INFO] [1712607559.304037]: SOMA.Walking \n", - "[INFO] [1712607559.304276]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607559.304548]: Ancestors: {SOMA.Walking, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607559.304798]: Subclasses: []\n", - "[INFO] [1712607559.305081]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.305569]: Instances: []\n", - "[INFO] [1712607559.305843]: Direct Instances: []\n", - "[INFO] [1712607559.306105]: Inverse Restrictions: []\n", - "[INFO] [1712607559.306353]: -------------------\n", - "[INFO] [1712607559.306592]: SOMA.Dropping \n", - "[INFO] [1712607559.306832]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607559.307104]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Dropping, DUL.EventType}\n", - "[INFO] [1712607559.307352]: Subclasses: []\n", - "[INFO] [1712607559.307647]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.308130]: Instances: []\n", - "[INFO] [1712607559.308402]: Direct Instances: []\n", - "[INFO] [1712607559.308654]: Inverse Restrictions: []\n", - "[INFO] [1712607559.308897]: -------------------\n", - "[INFO] [1712607559.309129]: SOMA.Placing \n", - "[INFO] [1712607559.309362]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607559.309623]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Placing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.309880]: Subclasses: []\n", - "[INFO] [1712607559.310177]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.310673]: Instances: [SOMA.placing]\n", - "[INFO] [1712607559.310935]: Direct Instances: [SOMA.placing]\n", - "[INFO] [1712607559.311234]: Inverse Restrictions: []\n", - "[INFO] [1712607559.311487]: -------------------\n", - "[INFO] [1712607559.311729]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712607559.311999]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712607559.312303]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.ESTSchemaTheory, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.312577]: Subclasses: []\n", - "[INFO] [1712607559.312878]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.313366]: Instances: []\n", - "[INFO] [1712607559.313625]: Direct Instances: []\n", - "[INFO] [1712607559.313881]: Inverse Restrictions: []\n", - "[INFO] [1712607559.314121]: -------------------\n", - "[INFO] [1712607559.314362]: SOMA.ExistingObjectRole \n", - "[INFO] [1712607559.314607]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607559.314881]: Ancestors: {DUL.Object, SOMA.ExistingObjectRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.315143]: Subclasses: []\n", - "[INFO] [1712607559.315444]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.315934]: Instances: []\n", - "[INFO] [1712607559.316204]: Direct Instances: []\n", - "[INFO] [1712607559.316500]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712607559.316746]: -------------------\n", - "[INFO] [1712607559.316983]: SOMA.Effort \n", - "[INFO] [1712607559.317214]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712607559.317488]: Ancestors: {DUL.Object, SOMA.Effort, DUL.Parameter, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.317735]: Subclasses: []\n", - "[INFO] [1712607559.318021]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.318508]: Instances: []\n", - "[INFO] [1712607559.318784]: Direct Instances: []\n", - "[INFO] [1712607559.319042]: Inverse Restrictions: []\n", - "[INFO] [1712607559.319288]: -------------------\n", - "[INFO] [1712607559.319523]: SOMA.EnclosedObject \n", - "[INFO] [1712607559.319760]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712607559.320022]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.320289]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712607559.320583]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.321073]: Instances: []\n", - "[INFO] [1712607559.321340]: Direct Instances: []\n", - "[INFO] [1712607559.321645]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712607559.321891]: -------------------\n", - "[INFO] [1712607559.322132]: SOMA.Enclosing \n", - "[INFO] [1712607559.322370]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712607559.322651]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", - "[INFO] [1712607559.322912]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712607559.323210]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.323702]: Instances: []\n", - "[INFO] [1712607559.323975]: Direct Instances: []\n", - "[INFO] [1712607559.324234]: Inverse Restrictions: []\n", - "[INFO] [1712607559.324471]: -------------------\n", - "[INFO] [1712607559.324708]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712607559.324938]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607559.325196]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.325464]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712607559.325758]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.326267]: Instances: []\n", - "[INFO] [1712607559.326535]: Direct Instances: []\n", - "[INFO] [1712607559.326792]: Inverse Restrictions: []\n", - "[INFO] [1712607559.327030]: -------------------\n", - "[INFO] [1712607559.327261]: SOMA.Manipulating \n", - "[INFO] [1712607559.327513]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712607559.327835]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.328114]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712607559.328412]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.328923]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712607559.329194]: Direct Instances: []\n", - "[INFO] [1712607559.329454]: Inverse Restrictions: []\n", - "[INFO] [1712607559.329695]: -------------------\n", - "[INFO] [1712607559.329930]: SOMA.Episode \n", - "[INFO] [1712607559.330163]: Super classes: [DUL.Situation]\n", - "[INFO] [1712607559.330423]: Ancestors: {DUL.Situation, SOMA.Episode, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.330679]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712607559.330966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.331446]: Instances: []\n", - "[INFO] [1712607559.331719]: Direct Instances: []\n", - "[INFO] [1712607559.331975]: Inverse Restrictions: []\n", - "[INFO] [1712607559.332213]: -------------------\n", - "[INFO] [1712607559.332447]: SOMA.ExcludedObject \n", - "[INFO] [1712607559.332683]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.332954]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.ExcludedObject, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.333207]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712607559.333496]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.333983]: Instances: []\n", - "[INFO] [1712607559.334270]: Direct Instances: []\n", - "[INFO] [1712607559.334583]: Inverse Restrictions: []\n", - "[INFO] [1712607559.334893]: -------------------\n", - "[INFO] [1712607559.335137]: SOMA.ExecutableFile \n", - "[INFO] [1712607559.335373]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.336585]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", - "[INFO] [1712607559.336865]: Subclasses: []\n", - "[INFO] [1712607559.337173]: Properties: [DUL.realizes, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.337672]: Instances: []\n", - "[INFO] [1712607559.337929]: Direct Instances: []\n", - "[INFO] [1712607559.338993]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712607559.339258]: -------------------\n", - "[INFO] [1712607559.339506]: SOMA.Executable_Code \n", - "[INFO] [1712607559.339743]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712607559.340943]: Ancestors: {owl.Thing, SOMA.Executable_Code, SOMA.Computer_Program}\n", - "[INFO] [1712607559.341221]: Subclasses: []\n", - "[INFO] [1712607559.341537]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607559.342039]: Instances: []\n", - "[INFO] [1712607559.342304]: Direct Instances: []\n", - "[INFO] [1712607559.342645]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712607559.342916]: -------------------\n", - "[INFO] [1712607559.343166]: SOMA.ExecutableFormat \n", - "[INFO] [1712607559.343410]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712607559.343683]: Ancestors: {DUL.Object, SOMA.ExecutableFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607559.343945]: Subclasses: []\n", - "[INFO] [1712607559.344251]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.344764]: Instances: []\n", - "[INFO] [1712607559.345030]: Direct Instances: []\n", - "[INFO] [1712607559.345335]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712607559.345588]: -------------------\n", - "[INFO] [1712607559.345832]: SOMA.SchematicTheory \n", - "[INFO] [1712607559.346066]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712607559.346313]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.346557]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712607559.346847]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.347374]: Instances: []\n", - "[INFO] [1712607559.347632]: Direct Instances: []\n", - "[INFO] [1712607559.347883]: Inverse Restrictions: []\n", - "[INFO] [1712607559.348116]: -------------------\n", - "[INFO] [1712607559.348346]: SOMA.ExecutableSoftware \n", - "[INFO] [1712607559.348582]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.349068]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", - "[INFO] [1712607559.349319]: Subclasses: []\n", - "[INFO] [1712607559.349610]: Properties: [DUL.hasMember, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.350113]: Instances: []\n", - "[INFO] [1712607559.350384]: Direct Instances: []\n", - "[INFO] [1712607559.350633]: Inverse Restrictions: []\n", - "[INFO] [1712607559.351266]: -------------------\n", - "[INFO] [1712607559.351733]: SOMA.Software \n", - "[INFO] [1712607559.352132]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712607559.352618]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, DUL.Design, SOMA.Software, DUL.SocialObject}\n", - "[INFO] [1712607559.352993]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712607559.353344]: Properties: [rdf-schema.label, DUL.describes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.353861]: Instances: []\n", - "[INFO] [1712607559.354155]: Direct Instances: []\n", - "[INFO] [1712607559.354633]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607559.354921]: -------------------\n", - "[INFO] [1712607559.355180]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712607559.355426]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712607559.355682]: Ancestors: {DUL.Object, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.355934]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712607559.356229]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.356742]: Instances: []\n", - "[INFO] [1712607559.357013]: Direct Instances: []\n", - "[INFO] [1712607559.357272]: Inverse Restrictions: []\n", - "[INFO] [1712607559.357512]: -------------------\n", - "[INFO] [1712607559.357756]: SOMA.ExperiencerRole \n", - "[INFO] [1712607559.358004]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712607559.358259]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.ExperiencerRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607559.358514]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712607559.358804]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.359313]: Instances: []\n", - "[INFO] [1712607559.359576]: Direct Instances: []\n", - "[INFO] [1712607559.359826]: Inverse Restrictions: []\n", - "[INFO] [1712607559.360066]: -------------------\n", - "[INFO] [1712607559.360301]: SOMA.ExtractedObject \n", - "[INFO] [1712607559.360530]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.360796]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.ExtractedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.361048]: Subclasses: []\n", - "[INFO] [1712607559.361353]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.361849]: Instances: []\n", - "[INFO] [1712607559.362105]: Direct Instances: []\n", - "[INFO] [1712607559.362359]: Inverse Restrictions: []\n", - "[INFO] [1712607559.362612]: -------------------\n", - "[INFO] [1712607559.362853]: SOMA.PhysicalQuality \n", - "[INFO] [1712607559.363090]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712607559.363391]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Entity, DUL.Quality}\n", - "[INFO] [1712607559.363669]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712607559.363975]: Properties: [rdf-schema.comment, DUL.isQualityOf, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.364588]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712607559.364884]: Direct Instances: []\n", - "[INFO] [1712607559.365150]: Inverse Restrictions: []\n", - "[INFO] [1712607559.365395]: -------------------\n", - "[INFO] [1712607559.365640]: SOMA.FailedAttempt \n", - "[INFO] [1712607559.365889]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712607559.366191]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, SOMA.FailedAttempt, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.366452]: Subclasses: []\n", - "[INFO] [1712607559.366760]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.367286]: Instances: []\n", - "[INFO] [1712607559.367566]: Direct Instances: []\n", - "[INFO] [1712607559.367818]: Inverse Restrictions: []\n", - "[INFO] [1712607559.368054]: -------------------\n", - "[INFO] [1712607559.368293]: SOMA.FaultySoftware \n", - "[INFO] [1712607559.368548]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712607559.368844]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.369094]: Subclasses: []\n", - "[INFO] [1712607559.369392]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.369898]: Instances: []\n", - "[INFO] [1712607559.370186]: Direct Instances: []\n", - "[INFO] [1712607559.370586]: Inverse Restrictions: []\n", - "[INFO] [1712607559.370886]: -------------------\n", - "[INFO] [1712607559.371161]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712607559.371423]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712607559.371683]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.371952]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712607559.372260]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.372837]: Instances: []\n", - "[INFO] [1712607559.373127]: Direct Instances: []\n", - "[INFO] [1712607559.373397]: Inverse Restrictions: []\n", - "[INFO] [1712607559.373648]: -------------------\n", - "[INFO] [1712607559.373898]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712607559.374141]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712607559.374394]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, SOMA.PhysicalAcquiring, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.374641]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712607559.374943]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.375437]: Instances: []\n", - "[INFO] [1712607559.375696]: Direct Instances: []\n", - "[INFO] [1712607559.375942]: Inverse Restrictions: []\n", - "[INFO] [1712607559.376190]: -------------------\n", - "[INFO] [1712607559.376430]: SOMA.Finger \n", - "[INFO] [1712607559.376686]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712607559.376956]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Finger}\n", - "[INFO] [1712607559.377195]: Subclasses: []\n", - "[INFO] [1712607559.377488]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isPartOf]\n", - "[INFO] [1712607559.378038]: Instances: []\n", - "[INFO] [1712607559.378371]: Direct Instances: []\n", - "[INFO] [1712607559.378679]: Inverse Restrictions: []\n", - "[INFO] [1712607559.378956]: -------------------\n", - "[INFO] [1712607559.379222]: SOMA.Hand \n", - "[INFO] [1712607559.379475]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712607559.379755]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, SOMA.Hand, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", - "[INFO] [1712607559.380018]: Subclasses: []\n", - "[INFO] [1712607559.380314]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.380811]: Instances: []\n", - "[INFO] [1712607559.381082]: Direct Instances: []\n", - "[INFO] [1712607559.381377]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712607559.381627]: -------------------\n", - "[INFO] [1712607559.381863]: SOMA.FixedJoint \n", - "[INFO] [1712607559.382122]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712607559.382412]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FixedJoint, DUL.Entity, DUL.PhysicalBody, SOMA.Joint}\n", - "[INFO] [1712607559.382665]: Subclasses: []\n", - "[INFO] [1712607559.382968]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.383453]: Instances: []\n", - "[INFO] [1712607559.383726]: Direct Instances: []\n", - "[INFO] [1712607559.384017]: Inverse Restrictions: []\n", - "[INFO] [1712607559.384259]: -------------------\n", - "[INFO] [1712607559.384493]: SOMA.MovableJoint \n", - "[INFO] [1712607559.384727]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712607559.384966]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607559.385234]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712607559.385532]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasJointState, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.386033]: Instances: []\n", - "[INFO] [1712607559.386307]: Direct Instances: []\n", - "[INFO] [1712607559.386608]: Inverse Restrictions: []\n", - "[INFO] [1712607559.386850]: -------------------\n", - "[INFO] [1712607559.387083]: SOMA.Flipping \n", - "[INFO] [1712607559.387320]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712607559.387586]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Flipping, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.387841]: Subclasses: []\n", - "[INFO] [1712607559.388133]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607559.388614]: Instances: []\n", - "[INFO] [1712607559.388865]: Direct Instances: []\n", - "[INFO] [1712607559.389117]: Inverse Restrictions: []\n", - "[INFO] [1712607559.389361]: -------------------\n", - "[INFO] [1712607559.389600]: SOMA.FloatingJoint \n", - "[INFO] [1712607559.389829]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712607559.390087]: Ancestors: {DUL.Object, SOMA.FloatingJoint, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607559.390333]: Subclasses: []\n", - "[INFO] [1712607559.390627]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.391120]: Instances: []\n", - "[INFO] [1712607559.391392]: Direct Instances: []\n", - "[INFO] [1712607559.391650]: Inverse Restrictions: []\n", - "[INFO] [1712607559.391887]: -------------------\n", - "[INFO] [1712607559.392125]: SOMA.Fluid \n", - "[INFO] [1712607559.392354]: Super classes: [DUL.Substance]\n", - "[INFO] [1712607559.392614]: Ancestors: {DUL.Object, DUL.Substance, DUL.PhysicalObject, SOMA.Fluid, owl.Thing, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.392877]: Subclasses: []\n", - "[INFO] [1712607559.393167]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.393662]: Instances: []\n", - "[INFO] [1712607559.393923]: Direct Instances: []\n", - "[INFO] [1712607559.394181]: Inverse Restrictions: []\n", - "[INFO] [1712607559.394492]: -------------------\n", - "[INFO] [1712607559.394743]: SOMA.MovedObject \n", - "[INFO] [1712607559.395014]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712607559.395287]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, SOMA.MovedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.395555]: Subclasses: []\n", - "[INFO] [1712607559.395874]: Properties: [SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.396378]: Instances: []\n", - "[INFO] [1712607559.396634]: Direct Instances: []\n", - "[INFO] [1712607559.397404]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712607559.397679]: -------------------\n", - "[INFO] [1712607559.397935]: SOMA.Focusing \n", - "[INFO] [1712607559.398182]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712607559.398449]: Ancestors: {DUL.Object, SOMA.Focusing, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.398696]: Subclasses: []\n", - "[INFO] [1712607559.398987]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.399489]: Instances: []\n", - "[INFO] [1712607559.399753]: Direct Instances: []\n", - "[INFO] [1712607559.400008]: Inverse Restrictions: []\n", - "[INFO] [1712607559.400243]: -------------------\n", - "[INFO] [1712607559.400476]: SOMA.Foolishness \n", - "[INFO] [1712607559.400723]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712607559.400990]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.Foolishness, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.401233]: Subclasses: []\n", - "[INFO] [1712607559.401510]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.402001]: Instances: []\n", - "[INFO] [1712607559.402286]: Direct Instances: []\n", - "[INFO] [1712607559.402542]: Inverse Restrictions: []\n", - "[INFO] [1712607559.402778]: -------------------\n", - "[INFO] [1712607559.403018]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712607559.403250]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712607559.403530]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.ForgettingIncorrectInformation, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.403788]: Subclasses: []\n", - "[INFO] [1712607559.404083]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.404571]: Instances: []\n", - "[INFO] [1712607559.404833]: Direct Instances: []\n", - "[INFO] [1712607559.405083]: Inverse Restrictions: []\n", - "[INFO] [1712607559.405318]: -------------------\n", - "[INFO] [1712607559.405548]: SOMA.InformationDismissal \n", - "[INFO] [1712607559.405815]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712607559.406090]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.406359]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712607559.406653]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.407150]: Instances: []\n", - "[INFO] [1712607559.407424]: Direct Instances: []\n", - "[INFO] [1712607559.407681]: Inverse Restrictions: []\n", - "[INFO] [1712607559.407923]: -------------------\n", - "[INFO] [1712607559.408155]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712607559.408385]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712607559.408657]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.ForgettingIrrelevantInformation, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.408910]: Subclasses: []\n", - "[INFO] [1712607559.409196]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.409676]: Instances: []\n", - "[INFO] [1712607559.409951]: Direct Instances: []\n", - "[INFO] [1712607559.410212]: Inverse Restrictions: []\n", - "[INFO] [1712607559.410450]: -------------------\n", - "[INFO] [1712607559.410686]: SOMA.Language \n", - "[INFO] [1712607559.410938]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712607559.411224]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607559.411488]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712607559.411783]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.412296]: Instances: []\n", - "[INFO] [1712607559.412585]: Direct Instances: []\n", - "[INFO] [1712607559.413648]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712607559.413915]: -------------------\n", - "[INFO] [1712607559.414167]: SOMA.FreezerCompartment \n", - "[INFO] [1712607559.414421]: Super classes: [SOMA.Compartment]\n", - "[INFO] [1712607559.414699]: Ancestors: {DUL.Object, SOMA.Compartment, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, SOMA.FreezerCompartment, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.414949]: Subclasses: []\n", - "[INFO] [1712607559.415232]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.415720]: Instances: []\n", - "[INFO] [1712607559.415989]: Direct Instances: []\n", - "[INFO] [1712607559.416247]: Inverse Restrictions: []\n", - "[INFO] [1712607559.416481]: -------------------\n", - "[INFO] [1712607559.416716]: SOMA.Item \n", - "[INFO] [1712607559.416947]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.417184]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.417450]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712607559.417743]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.418250]: Instances: []\n", - "[INFO] [1712607559.418520]: Direct Instances: []\n", - "[INFO] [1712607559.418877]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712607559.419126]: -------------------\n", - "[INFO] [1712607559.419358]: SOMA.FunctionalDesign \n", - "[INFO] [1712607559.419589]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712607559.419858]: Ancestors: {DUL.Object, DUL.Description, SOMA.FunctionalDesign, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607559.420103]: Subclasses: []\n", - "[INFO] [1712607559.420384]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.420866]: Instances: []\n", - "[INFO] [1712607559.421134]: Direct Instances: []\n", - "[INFO] [1712607559.421389]: Inverse Restrictions: []\n", - "[INFO] [1712607559.421623]: -------------------\n", - "[INFO] [1712607559.421853]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712607559.422079]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712607559.422328]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.422583]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712607559.422867]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.423360]: Instances: []\n", - "[INFO] [1712607559.423632]: Direct Instances: []\n", - "[INFO] [1712607559.423884]: Inverse Restrictions: []\n", - "[INFO] [1712607559.424125]: -------------------\n", - "[INFO] [1712607559.424360]: SOMA.LocatumRole \n", - "[INFO] [1712607559.424597]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607559.424875]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.LocatumRole, DUL.SocialObject}\n", - "[INFO] [1712607559.425122]: Subclasses: []\n", - "[INFO] [1712607559.425406]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.425889]: Instances: []\n", - "[INFO] [1712607559.426165]: Direct Instances: []\n", - "[INFO] [1712607559.426497]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712607559.426750]: -------------------\n", - "[INFO] [1712607559.426990]: SOMA.RelatumRole \n", - "[INFO] [1712607559.427226]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607559.427498]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.RelatumRole, DUL.SocialObject}\n", - "[INFO] [1712607559.427800]: Subclasses: []\n", - "[INFO] [1712607559.428102]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.428616]: Instances: []\n", - "[INFO] [1712607559.428990]: Direct Instances: []\n", - "[INFO] [1712607559.429354]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712607559.429617]: -------------------\n", - "[INFO] [1712607559.429866]: SOMA.GasCooktop \n", - "[INFO] [1712607559.430117]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712607559.430411]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, SOMA.GasCooktop, DUL.Entity, DUL.PhysicalBody, SOMA.Cooktop}\n", - "[INFO] [1712607559.430687]: Subclasses: []\n", - "[INFO] [1712607559.430983]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.431476]: Instances: []\n", - "[INFO] [1712607559.431749]: Direct Instances: []\n", - "[INFO] [1712607559.432001]: Inverse Restrictions: []\n", - "[INFO] [1712607559.432238]: -------------------\n", - "[INFO] [1712607559.432482]: SOMA.GetTaskParameter \n", - "[INFO] [1712607559.432720]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712607559.432986]: Ancestors: {SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.433237]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712607559.433537]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.434061]: Instances: []\n", - "[INFO] [1712607559.434495]: Direct Instances: []\n", - "[INFO] [1712607559.434819]: Inverse Restrictions: []\n", - "[INFO] [1712607559.435099]: -------------------\n", - "[INFO] [1712607559.435361]: SOMA.Planning \n", - "[INFO] [1712607559.435999]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712607559.436265]: Ancestors: {SOMA.Deciding, owl.Thing, SOMA.Planning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.436525]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712607559.436827]: Properties: [rdf-schema.comment, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.437337]: Instances: []\n", - "[INFO] [1712607559.437615]: Direct Instances: []\n", - "[INFO] [1712607559.437875]: Inverse Restrictions: []\n", - "[INFO] [1712607559.438117]: -------------------\n", - "[INFO] [1712607559.438359]: SOMA.Glass \n", - "[INFO] [1712607559.438592]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712607559.438856]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Glass, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607559.439123]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", - "[INFO] [1712607559.439413]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.439903]: Instances: []\n", - "[INFO] [1712607559.440156]: Direct Instances: []\n", - "[INFO] [1712607559.440403]: Inverse Restrictions: []\n", - "[INFO] [1712607559.440648]: -------------------\n", - "[INFO] [1712607559.440881]: SOMA.GraphDatabase \n", - "[INFO] [1712607559.441110]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712607559.441373]: Ancestors: {SOMA.GraphDatabase, DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", - "[INFO] [1712607559.441634]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712607559.441926]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.442420]: Instances: []\n", - "[INFO] [1712607559.442674]: Direct Instances: []\n", - "[INFO] [1712607559.442920]: Inverse Restrictions: []\n", - "[INFO] [1712607559.443166]: -------------------\n", - "[INFO] [1712607559.443405]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712607559.443639]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712607559.443905]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.GraphQueryLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", - "[INFO] [1712607559.444156]: Subclasses: []\n", - "[INFO] [1712607559.444446]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.444947]: Instances: []\n", - "[INFO] [1712607559.445205]: Direct Instances: []\n", - "[INFO] [1712607559.445458]: Inverse Restrictions: []\n", - "[INFO] [1712607559.445694]: -------------------\n", - "[INFO] [1712607559.445924]: SOMA.QueryLanguage \n", - "[INFO] [1712607559.446154]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607559.446410]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", - "[INFO] [1712607559.446662]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712607559.446953]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.447457]: Instances: []\n", - "[INFO] [1712607559.447714]: Direct Instances: []\n", - "[INFO] [1712607559.447963]: Inverse Restrictions: []\n", - "[INFO] [1712607559.448197]: -------------------\n", - "[INFO] [1712607559.448430]: SOMA.GraspTransfer \n", - "[INFO] [1712607559.448672]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712607559.448948]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.GraspTransfer, owl.Thing, SOMA.Grasping, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.449191]: Subclasses: []\n", - "[INFO] [1712607559.449471]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.449964]: Instances: []\n", - "[INFO] [1712607559.450232]: Direct Instances: []\n", - "[INFO] [1712607559.450483]: Inverse Restrictions: []\n", - "[INFO] [1712607559.450714]: -------------------\n", - "[INFO] [1712607559.450947]: SOMA.Grasping \n", - "[INFO] [1712607559.451176]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607559.451426]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.Grasping, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.451675]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712607559.451973]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.452486]: Instances: []\n", - "[INFO] [1712607559.452756]: Direct Instances: []\n", - "[INFO] [1712607559.453019]: Inverse Restrictions: []\n", - "[INFO] [1712607559.453264]: -------------------\n", - "[INFO] [1712607559.453515]: SOMA.Releasing \n", - "[INFO] [1712607559.453760]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607559.454028]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.Releasing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.454279]: Subclasses: []\n", - "[INFO] [1712607559.454563]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.455061]: Instances: []\n", - "[INFO] [1712607559.455327]: Direct Instances: []\n", - "[INFO] [1712607559.455585]: Inverse Restrictions: []\n", - "[INFO] [1712607559.455825]: -------------------\n", - "[INFO] [1712607559.456069]: SOMA.GraspingMotion \n", - "[INFO] [1712607559.456315]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712607559.457760]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", - "[INFO] [1712607559.458048]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712607559.458373]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.458880]: Instances: []\n", - "[INFO] [1712607559.459140]: Direct Instances: []\n", - "[INFO] [1712607559.459424]: Inverse Restrictions: []\n", - "[INFO] [1712607559.459667]: -------------------\n", - "[INFO] [1712607559.459914]: SOMA.IntermediateGrasp \n", - "[INFO] [1712607559.460160]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712607559.460427]: Ancestors: {DUL.Object, SOMA.IntermediateGrasp, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", - "[INFO] [1712607559.460675]: Subclasses: []\n", - "[INFO] [1712607559.460974]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.461524]: Instances: []\n", - "[INFO] [1712607559.461805]: Direct Instances: []\n", - "[INFO] [1712607559.462110]: Inverse Restrictions: []\n", - "[INFO] [1712607559.462515]: -------------------\n", - "[INFO] [1712607559.462872]: SOMA.PowerGrasp \n", - "[INFO] [1712607559.463230]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712607559.463637]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.PowerGrasp, SOMA.Motion}\n", - "[INFO] [1712607559.464008]: Subclasses: []\n", - "[INFO] [1712607559.464426]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.464942]: Instances: []\n", - "[INFO] [1712607559.465334]: Direct Instances: []\n", - "[INFO] [1712607559.465830]: Inverse Restrictions: []\n", - "[INFO] [1712607559.466165]: -------------------\n", - "[INFO] [1712607559.466452]: SOMA.PrecisionGrasp \n", - "[INFO] [1712607559.466715]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712607559.467006]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.PrecisionGrasp, SOMA.Motion}\n", - "[INFO] [1712607559.467264]: Subclasses: []\n", - "[INFO] [1712607559.467576]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.468074]: Instances: []\n", - "[INFO] [1712607559.468426]: Direct Instances: []\n", - "[INFO] [1712607559.468753]: Inverse Restrictions: []\n", - "[INFO] [1712607559.469017]: -------------------\n", - "[INFO] [1712607559.469273]: SOMA.PrehensileMotion \n", - "[INFO] [1712607559.469935]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712607559.470209]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607559.470477]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712607559.470796]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.471321]: Instances: []\n", - "[INFO] [1712607559.471594]: Direct Instances: []\n", - "[INFO] [1712607559.471855]: Inverse Restrictions: []\n", - "[INFO] [1712607559.472098]: -------------------\n", - "[INFO] [1712607559.472335]: SOMA.ReleasingMotion \n", - "[INFO] [1712607559.472586]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712607559.472873]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, SOMA.ReleasingMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", - "[INFO] [1712607559.473126]: Subclasses: []\n", - "[INFO] [1712607559.473421]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.473927]: Instances: []\n", - "[INFO] [1712607559.474198]: Direct Instances: []\n", - "[INFO] [1712607559.474500]: Inverse Restrictions: []\n", - "[INFO] [1712607559.474757]: -------------------\n", - "[INFO] [1712607559.474999]: SOMA.GreenColor \n", - "[INFO] [1712607559.475239]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712607559.475516]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, SOMA.GreenColor, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607559.475767]: Subclasses: []\n", - "[INFO] [1712607559.476058]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.476542]: Instances: []\n", - "[INFO] [1712607559.476813]: Direct Instances: []\n", - "[INFO] [1712607559.477068]: Inverse Restrictions: []\n", - "[INFO] [1712607559.477309]: -------------------\n", - "[INFO] [1712607559.477541]: SOMA.Gripper \n", - "[INFO] [1712607559.477831]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712607559.478117]: Ancestors: {DUL.Object, SOMA.Gripper, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", - "[INFO] [1712607559.478375]: Subclasses: []\n", - "[INFO] [1712607559.478666]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.479156]: Instances: []\n", - "[INFO] [1712607559.479422]: Direct Instances: []\n", - "[INFO] [1712607559.479671]: Inverse Restrictions: []\n", - "[INFO] [1712607559.479909]: -------------------\n", - "[INFO] [1712607559.480146]: SOMA.PrehensileEffector \n", - "[INFO] [1712607559.480379]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712607559.480623]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", - "[INFO] [1712607559.480889]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712607559.481208]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.481700]: Instances: []\n", - "[INFO] [1712607559.481956]: Direct Instances: []\n", - "[INFO] [1712607559.482276]: Inverse Restrictions: []\n", - "[INFO] [1712607559.482525]: -------------------\n", - "[INFO] [1712607559.482763]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712607559.482994]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712607559.483270]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.HardwareDiagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.483532]: Subclasses: []\n", - "[INFO] [1712607559.483823]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.484305]: Instances: []\n", - "[INFO] [1712607559.484582]: Direct Instances: []\n", - "[INFO] [1712607559.484836]: Inverse Restrictions: []\n", - "[INFO] [1712607559.485072]: -------------------\n", - "[INFO] [1712607559.485308]: SOMA.HasQualityRegion \n", - "[INFO] [1712607559.485573]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712607559.485857]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Relation, DUL.Entity, SOMA.HasQualityRegion, DUL.SocialObject}\n", - "[INFO] [1712607559.486112]: Subclasses: []\n", - "[INFO] [1712607559.486415]: Properties: [rdf-schema.isDefinedBy, DUL.hasQuality, DUL.hasRegion, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607559.486908]: Instances: []\n", - "[INFO] [1712607559.487179]: Direct Instances: []\n", - "[INFO] [1712607559.487432]: Inverse Restrictions: []\n", - "[INFO] [1712607559.487672]: -------------------\n", - "[INFO] [1712607559.487906]: SOMA.Head \n", - "[INFO] [1712607559.488148]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712607559.488415]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.Head, DUL.PhysicalBody}\n", - "[INFO] [1712607559.488674]: Subclasses: []\n", - "[INFO] [1712607559.488966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.489448]: Instances: []\n", - "[INFO] [1712607559.489698]: Direct Instances: []\n", - "[INFO] [1712607559.489941]: Inverse Restrictions: []\n", - "[INFO] [1712607559.490189]: -------------------\n", - "[INFO] [1712607559.490435]: SOMA.HeadMovement \n", - "[INFO] [1712607559.490672]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712607559.490938]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.HeadMovement, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", - "[INFO] [1712607559.491201]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712607559.491497]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.491983]: Instances: []\n", - "[INFO] [1712607559.492237]: Direct Instances: []\n", - "[INFO] [1712607559.492492]: Inverse Restrictions: []\n", - "[INFO] [1712607559.492734]: -------------------\n", - "[INFO] [1712607559.492966]: SOMA.HeadTurning \n", - "[INFO] [1712607559.493195]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712607559.493456]: Ancestors: {DUL.Object, DUL.Entity, DUL.EventType, SOMA.HeadTurning, owl.Thing, SOMA.ProcessType, SOMA.HeadMovement, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607559.493719]: Subclasses: []\n", - "[INFO] [1712607559.494014]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.494557]: Instances: []\n", - "[INFO] [1712607559.494840]: Direct Instances: []\n", - "[INFO] [1712607559.495109]: Inverse Restrictions: []\n", - "[INFO] [1712607559.495354]: -------------------\n", - "[INFO] [1712607559.495599]: SOMA.Holding \n", - "[INFO] [1712607559.495836]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607559.496101]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Holding, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.496365]: Subclasses: []\n", - "[INFO] [1712607559.496665]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.497155]: Instances: []\n", - "[INFO] [1712607559.497420]: Direct Instances: []\n", - "[INFO] [1712607559.497668]: Inverse Restrictions: []\n", - "[INFO] [1712607559.497916]: -------------------\n", - "[INFO] [1712607559.498166]: SOMA.HostRole \n", - "[INFO] [1712607559.498426]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712607559.498696]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.HostRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.498939]: Subclasses: []\n", - "[INFO] [1712607559.499227]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.499730]: Instances: []\n", - "[INFO] [1712607559.500000]: Direct Instances: []\n", - "[INFO] [1712607559.501043]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712607559.501302]: -------------------\n", - "[INFO] [1712607559.501560]: SOMA.PluginSpecification \n", - "[INFO] [1712607559.501821]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712607559.502094]: Ancestors: {SOMA.PluginSpecification, SOMA.API_Specification, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607559.502346]: Subclasses: []\n", - "[INFO] [1712607559.502641]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole]\n", - "[INFO] [1712607559.503147]: Instances: []\n", - "[INFO] [1712607559.503415]: Direct Instances: []\n", - "[INFO] [1712607559.503744]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712607559.503993]: -------------------\n", - "[INFO] [1712607559.504235]: SOMA.Hotplate \n", - "[INFO] [1712607559.504474]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.504750]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Hotplate}\n", - "[INFO] [1712607559.504999]: Subclasses: []\n", - "[INFO] [1712607559.505280]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.505758]: Instances: []\n", - "[INFO] [1712607559.506028]: Direct Instances: []\n", - "[INFO] [1712607559.506423]: Inverse Restrictions: [SOMA.Stove]\n", - "[INFO] [1712607559.506768]: -------------------\n", - "[INFO] [1712607559.507062]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712607559.507353]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712607559.507645]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.Language, SOMA.FormalLanguage, SOMA.Human-readable_Programming_Language, DUL.Entity, SOMA.Programming_Language, DUL.SocialObject}\n", - "[INFO] [1712607559.507908]: Subclasses: []\n", - "[INFO] [1712607559.508214]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.508717]: Instances: []\n", - "[INFO] [1712607559.508988]: Direct Instances: []\n", - "[INFO] [1712607559.510043]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712607559.510305]: -------------------\n", - "[INFO] [1712607559.510548]: SOMA.Source_Code \n", - "[INFO] [1712607559.510799]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712607559.511279]: Ancestors: {owl.Thing, SOMA.Source_Code, SOMA.Computer_Program}\n", - "[INFO] [1712607559.511540]: Subclasses: []\n", - "[INFO] [1712607559.511842]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607559.512340]: Instances: []\n", - "[INFO] [1712607559.512604]: Direct Instances: []\n", - "[INFO] [1712607559.512888]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712607559.513131]: -------------------\n", - "[INFO] [1712607559.513380]: SOMA.HumanActivityRecording \n", - "[INFO] [1712607559.513622]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712607559.513891]: Ancestors: {SOMA.RecordedEpisode, owl.Thing, SOMA.Episode, SOMA.HumanActivityRecording, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712607559.514136]: Subclasses: []\n", - "[INFO] [1712607559.514429]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.514923]: Instances: []\n", - "[INFO] [1712607559.515183]: Direct Instances: []\n", - "[INFO] [1712607559.515437]: Inverse Restrictions: []\n", - "[INFO] [1712607559.515675]: -------------------\n", - "[INFO] [1712607559.515904]: SOMA.Imagining \n", - "[INFO] [1712607559.516146]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712607559.516407]: Ancestors: {SOMA.Imagining, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712607559.516651]: Subclasses: []\n", - "[INFO] [1712607559.516931]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.517425]: Instances: []\n", - "[INFO] [1712607559.517687]: Direct Instances: []\n", - "[INFO] [1712607559.517936]: Inverse Restrictions: []\n", - "[INFO] [1712607559.518174]: -------------------\n", - "[INFO] [1712607559.518409]: SOMA.Impediment \n", - "[INFO] [1712607559.518687]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712607559.518959]: Ancestors: {SOMA.Impediment, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.519201]: Subclasses: []\n", - "[INFO] [1712607559.519489]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.519982]: Instances: []\n", - "[INFO] [1712607559.520252]: Direct Instances: []\n", - "[INFO] [1712607559.520502]: Inverse Restrictions: []\n", - "[INFO] [1712607559.520740]: -------------------\n", - "[INFO] [1712607559.520972]: SOMA.Obstacle \n", - "[INFO] [1712607559.521206]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712607559.521490]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Entity, SOMA.Obstacle, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607559.521740]: Subclasses: []\n", - "[INFO] [1712607559.522023]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.522508]: Instances: []\n", - "[INFO] [1712607559.522777]: Direct Instances: []\n", - "[INFO] [1712607559.523062]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712607559.523303]: -------------------\n", - "[INFO] [1712607559.523535]: SOMA.RestrictedObject \n", - "[INFO] [1712607559.523767]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712607559.524027]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.RestrictedObject, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.524284]: Subclasses: []\n", - "[INFO] [1712607559.524580]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.525064]: Instances: []\n", - "[INFO] [1712607559.525333]: Direct Instances: []\n", - "[INFO] [1712607559.525621]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712607559.525863]: -------------------\n", - "[INFO] [1712607559.526097]: SOMA.StateTransition \n", - "[INFO] [1712607559.526369]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712607559.526650]: Ancestors: {DUL.Transition, owl.Thing, DUL.Entity, DUL.Situation, SOMA.StateTransition}\n", - "[INFO] [1712607559.526900]: Subclasses: []\n", - "[INFO] [1712607559.527194]: Properties: [DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, SOMA.hasInitialScene, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607559.527673]: Instances: []\n", - "[INFO] [1712607559.527940]: Direct Instances: []\n", - "[INFO] [1712607559.528257]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712607559.528505]: -------------------\n", - "[INFO] [1712607559.528739]: SOMA.Inability \n", - "[INFO] [1712607559.528968]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712607559.529228]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, SOMA.Inability, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.529486]: Subclasses: []\n", - "[INFO] [1712607559.529777]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.530267]: Instances: []\n", - "[INFO] [1712607559.530522]: Direct Instances: []\n", - "[INFO] [1712607559.530779]: Inverse Restrictions: []\n", - "[INFO] [1712607559.531024]: -------------------\n", - "[INFO] [1712607559.531263]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712607559.531496]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712607559.531755]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, SOMA.IncompatibleSoftware, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.532013]: Subclasses: []\n", - "[INFO] [1712607559.532306]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.532789]: Instances: []\n", - "[INFO] [1712607559.533059]: Direct Instances: []\n", - "[INFO] [1712607559.533312]: Inverse Restrictions: []\n", - "[INFO] [1712607559.533546]: -------------------\n", - "[INFO] [1712607559.533780]: SOMA.InductionCooktop \n", - "[INFO] [1712607559.534011]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712607559.534291]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, SOMA.InductionCooktop, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.ElectricCooktop, DUL.PhysicalBody, SOMA.Cooktop}\n", - "[INFO] [1712607559.534548]: Subclasses: []\n", - "[INFO] [1712607559.534845]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.535337]: Instances: []\n", - "[INFO] [1712607559.535599]: Direct Instances: []\n", - "[INFO] [1712607559.535856]: Inverse Restrictions: []\n", - "[INFO] [1712607559.536096]: -------------------\n", - "[INFO] [1712607559.536334]: SOMA.InductiveReasoning \n", - "[INFO] [1712607559.536567]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712607559.536833]: Ancestors: {SOMA.InductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.537076]: Subclasses: []\n", - "[INFO] [1712607559.537358]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.537835]: Instances: []\n", - "[INFO] [1712607559.538104]: Direct Instances: []\n", - "[INFO] [1712607559.538363]: Inverse Restrictions: []\n", - "[INFO] [1712607559.538598]: -------------------\n", - "[INFO] [1712607559.538837]: SOMA.Infeasibility \n", - "[INFO] [1712607559.539083]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712607559.539351]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.539593]: Subclasses: []\n", - "[INFO] [1712607559.539874]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.540364]: Instances: []\n", - "[INFO] [1712607559.540624]: Direct Instances: []\n", - "[INFO] [1712607559.540870]: Inverse Restrictions: []\n", - "[INFO] [1712607559.541100]: -------------------\n", - "[INFO] [1712607559.541618]: SOMA.InferenceRules \n", - "[INFO] [1712607559.542059]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712607559.542523]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.InferenceRules, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.542945]: Subclasses: []\n", - "[INFO] [1712607559.543409]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.544094]: Instances: []\n", - "[INFO] [1712607559.544529]: Direct Instances: []\n", - "[INFO] [1712607559.544946]: Inverse Restrictions: []\n", - "[INFO] [1712607559.545298]: -------------------\n", - "[INFO] [1712607559.545642]: SOMA.InformationRetrieval \n", - "[INFO] [1712607559.545991]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712607559.546368]: Ancestors: {SOMA.InformationRetrieval, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712607559.546661]: Subclasses: []\n", - "[INFO] [1712607559.546972]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712607559.547478]: Instances: []\n", - "[INFO] [1712607559.547746]: Direct Instances: []\n", - "[INFO] [1712607559.548057]: Inverse Restrictions: []\n", - "[INFO] [1712607559.548300]: -------------------\n", - "[INFO] [1712607559.548541]: SOMA.InformationStorage \n", - "[INFO] [1712607559.548831]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712607559.549185]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", - "[INFO] [1712607559.549449]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712607559.549748]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.550262]: Instances: []\n", - "[INFO] [1712607559.550533]: Direct Instances: []\n", - "[INFO] [1712607559.550790]: Inverse Restrictions: []\n", - "[INFO] [1712607559.551031]: -------------------\n", - "[INFO] [1712607559.551276]: SOMA.StoredObject \n", - "[INFO] [1712607559.551517]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712607559.551788]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.EnclosedObject, DUL.Role, owl.Thing, DUL.Concept, SOMA.StoredObject, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.552253]: Subclasses: []\n", - "[INFO] [1712607559.552676]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.553185]: Instances: []\n", - "[INFO] [1712607559.553454]: Direct Instances: []\n", - "[INFO] [1712607559.553803]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712607559.554072]: -------------------\n", - "[INFO] [1712607559.554331]: SOMA.InsertedObject \n", - "[INFO] [1712607559.554578]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712607559.554849]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Role, owl.Thing, SOMA.InsertedObject, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.555098]: Subclasses: []\n", - "[INFO] [1712607559.555386]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.555886]: Instances: []\n", - "[INFO] [1712607559.556152]: Direct Instances: []\n", - "[INFO] [1712607559.556440]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712607559.556685]: -------------------\n", - "[INFO] [1712607559.556924]: SOMA.Instructions \n", - "[INFO] [1712607559.557161]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712607559.557441]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Instructions, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.557695]: Subclasses: []\n", - "[INFO] [1712607559.557986]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.558480]: Instances: []\n", - "[INFO] [1712607559.558757]: Direct Instances: []\n", - "[INFO] [1712607559.559015]: Inverse Restrictions: []\n", - "[INFO] [1712607559.559258]: -------------------\n", - "[INFO] [1712607559.559494]: SOMA.Interpreting \n", - "[INFO] [1712607559.559731]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607559.560002]: Ancestors: {SOMA.Interpreting, owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712607559.560264]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712607559.560560]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.561067]: Instances: []\n", - "[INFO] [1712607559.561333]: Direct Instances: []\n", - "[INFO] [1712607559.561590]: Inverse Restrictions: []\n", - "[INFO] [1712607559.561829]: -------------------\n", - "[INFO] [1712607559.562069]: SOMA.InterrogativeClause \n", - "[INFO] [1712607559.562322]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712607559.562602]: Ancestors: {DUL.Object, SOMA.InterrogativeClause, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607559.562855]: Subclasses: []\n", - "[INFO] [1712607559.563152]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.563658]: Instances: []\n", - "[INFO] [1712607559.563926]: Direct Instances: []\n", - "[INFO] [1712607559.564219]: Inverse Restrictions: []\n", - "[INFO] [1712607559.564462]: -------------------\n", - "[INFO] [1712607559.564699]: SOMA.Introspecting \n", - "[INFO] [1712607559.564949]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712607559.565216]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.565469]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712607559.565771]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.566267]: Instances: []\n", - "[INFO] [1712607559.566526]: Direct Instances: []\n", - "[INFO] [1712607559.566773]: Inverse Restrictions: []\n", - "[INFO] [1712607559.567023]: -------------------\n", - "[INFO] [1712607559.567272]: SOMA.JamJar \n", - "[INFO] [1712607559.567510]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712607559.567786]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.JamJar, SOMA.Jar}\n", - "[INFO] [1712607559.568051]: Subclasses: [SOMA.RaspberryJamJar]\n", - "[INFO] [1712607559.568342]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.568831]: Instances: []\n", - "[INFO] [1712607559.569103]: Direct Instances: []\n", - "[INFO] [1712607559.569367]: Inverse Restrictions: []\n", - "[INFO] [1712607559.569611]: -------------------\n", - "[INFO] [1712607559.569845]: SOMA.Jar \n", - "[INFO] [1712607559.570081]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712607559.570341]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Jar}\n", - "[INFO] [1712607559.570601]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", - "[INFO] [1712607559.570889]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.571379]: Instances: []\n", - "[INFO] [1712607559.571652]: Direct Instances: []\n", - "[INFO] [1712607559.571912]: Inverse Restrictions: []\n", - "[INFO] [1712607559.572159]: -------------------\n", - "[INFO] [1712607559.572399]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712607559.572634]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712607559.572899]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, SOMA.KineticFrictionAttribute, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607559.573160]: Subclasses: []\n", - "[INFO] [1712607559.573469]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.573960]: Instances: []\n", - "[INFO] [1712607559.574222]: Direct Instances: []\n", - "[INFO] [1712607559.574472]: Inverse Restrictions: []\n", - "[INFO] [1712607559.574719]: -------------------\n", - "[INFO] [1712607559.574966]: SOMA.KinoDynamicData \n", - "[INFO] [1712607559.575206]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607559.575469]: Ancestors: {DUL.Object, owl.Thing, SOMA.KinoDynamicData, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607559.575710]: Subclasses: []\n", - "[INFO] [1712607559.576007]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.576509]: Instances: []\n", - "[INFO] [1712607559.576779]: Direct Instances: []\n", - "[INFO] [1712607559.577039]: Inverse Restrictions: []\n", - "[INFO] [1712607559.577287]: -------------------\n", - "[INFO] [1712607559.577529]: SOMA.Kitchen \n", - "[INFO] [1712607559.577766]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712607559.578043]: Ancestors: {DUL.Object, SOMA.Kitchen, DUL.PhysicalObject, SOMA.Room, owl.Thing, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607559.578322]: Subclasses: []\n", - "[INFO] [1712607559.578632]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.579134]: Instances: []\n", - "[INFO] [1712607559.579400]: Direct Instances: []\n", - "[INFO] [1712607559.579653]: Inverse Restrictions: []\n", - "[INFO] [1712607559.579903]: -------------------\n", - "[INFO] [1712607559.580146]: SOMA.Room \n", - "[INFO] [1712607559.580380]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712607559.580638]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Room, owl.Thing, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607559.580889]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712607559.581177]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.581663]: Instances: []\n", - "[INFO] [1712607559.581936]: Direct Instances: []\n", - "[INFO] [1712607559.582237]: Inverse Restrictions: []\n", - "[INFO] [1712607559.582612]: -------------------\n", - "[INFO] [1712607559.582902]: SOMA.KitchenCabinet \n", - "[INFO] [1712607559.583171]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712607559.583468]: Ancestors: {SOMA.KitchenCabinet, DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Cupboard}\n", - "[INFO] [1712607559.583754]: Subclasses: []\n", - "[INFO] [1712607559.584061]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.584560]: Instances: []\n", - "[INFO] [1712607559.584827]: Direct Instances: []\n", - "[INFO] [1712607559.585077]: Inverse Restrictions: []\n", - "[INFO] [1712607559.585318]: -------------------\n", - "[INFO] [1712607559.585568]: SOMA.Knife \n", - "[INFO] [1712607559.585815]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712607559.586060]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Knife, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.586320]: Subclasses: [SOMA.KitchenKnife]\n", - "[INFO] [1712607559.586628]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.587133]: Instances: []\n", - "[INFO] [1712607559.587394]: Direct Instances: []\n", - "[INFO] [1712607559.587643]: Inverse Restrictions: []\n", - "[INFO] [1712607559.587877]: -------------------\n", - "[INFO] [1712607559.588121]: SOMA.KitchenUnit \n", - "[INFO] [1712607559.588369]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712607559.588637]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.KitchenUnit}\n", - "[INFO] [1712607559.588885]: Subclasses: []\n", - "[INFO] [1712607559.589170]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.589669]: Instances: []\n", - "[INFO] [1712607559.589933]: Direct Instances: []\n", - "[INFO] [1712607559.590191]: Inverse Restrictions: []\n", - "[INFO] [1712607559.590444]: -------------------\n", - "[INFO] [1712607559.590688]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712607559.590927]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607559.591191]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.KnowledgeRepresentationLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607559.591456]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712607559.591750]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.592239]: Instances: []\n", - "[INFO] [1712607559.592494]: Direct Instances: []\n", - "[INFO] [1712607559.592743]: Inverse Restrictions: []\n", - "[INFO] [1712607559.592996]: -------------------\n", - "[INFO] [1712607559.593241]: SOMA.Labeling \n", - "[INFO] [1712607559.593476]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712607559.593735]: Ancestors: {SOMA.Interpreting, owl.Thing, SOMA.Labeling, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.593976]: Subclasses: []\n", - "[INFO] [1712607559.594278]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.594764]: Instances: []\n", - "[INFO] [1712607559.595020]: Direct Instances: []\n", - "[INFO] [1712607559.595264]: Inverse Restrictions: []\n", - "[INFO] [1712607559.595510]: -------------------\n", - "[INFO] [1712607559.595757]: SOMA.Text \n", - "[INFO] [1712607559.595996]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.597209]: Ancestors: {SOMA.Text, owl.Thing}\n", - "[INFO] [1712607559.597496]: Subclasses: []\n", - "[INFO] [1712607559.597807]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607559.598308]: Instances: []\n", - "[INFO] [1712607559.598581]: Direct Instances: []\n", - "[INFO] [1712607559.599686]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712607559.599951]: -------------------\n", - "[INFO] [1712607559.600199]: SOMA.Leaning \n", - "[INFO] [1712607559.600439]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712607559.600719]: Ancestors: {DUL.Object, SOMA.Leaning, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607559.600980]: Subclasses: []\n", - "[INFO] [1712607559.601272]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.601757]: Instances: []\n", - "[INFO] [1712607559.602030]: Direct Instances: []\n", - "[INFO] [1712607559.602291]: Inverse Restrictions: []\n", - "[INFO] [1712607559.602538]: -------------------\n", - "[INFO] [1712607559.602777]: SOMA.PosturalMoving \n", - "[INFO] [1712607559.603010]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712607559.603261]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607559.603533]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712607559.603829]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.604321]: Instances: []\n", - "[INFO] [1712607559.604594]: Direct Instances: []\n", - "[INFO] [1712607559.604856]: Inverse Restrictions: []\n", - "[INFO] [1712607559.605100]: -------------------\n", - "[INFO] [1712607559.605339]: SOMA.Learning \n", - "[INFO] [1712607559.605581]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712607559.605863]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Learning, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", - "[INFO] [1712607559.606126]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712607559.606515]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.607045]: Instances: []\n", - "[INFO] [1712607559.607335]: Direct Instances: []\n", - "[INFO] [1712607559.607601]: Inverse Restrictions: []\n", - "[INFO] [1712607559.607935]: -------------------\n", - "[INFO] [1712607559.608209]: SOMA.Leg \n", - "[INFO] [1712607559.608467]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712607559.608749]: Ancestors: {DUL.Object, SOMA.Leg, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.609004]: Subclasses: []\n", - "[INFO] [1712607559.609292]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.609778]: Instances: []\n", - "[INFO] [1712607559.610027]: Direct Instances: []\n", - "[INFO] [1712607559.610323]: Inverse Restrictions: []\n", - "[INFO] [1712607559.610571]: -------------------\n", - "[INFO] [1712607559.610807]: SOMA.Lid \n", - "[INFO] [1712607559.611039]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.611308]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Lid}\n", - "[INFO] [1712607559.611567]: Subclasses: []\n", - "[INFO] [1712607559.611853]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.612336]: Instances: []\n", - "[INFO] [1712607559.612628]: Direct Instances: []\n", - "[INFO] [1712607559.612883]: Inverse Restrictions: []\n", - "[INFO] [1712607559.613129]: -------------------\n", - "[INFO] [1712607559.613367]: SOMA.LimbMotion \n", - "[INFO] [1712607559.614016]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712607559.614322]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.LimbMotion, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607559.614581]: Subclasses: []\n", - "[INFO] [1712607559.614887]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.615375]: Instances: []\n", - "[INFO] [1712607559.615646]: Direct Instances: []\n", - "[INFO] [1712607559.615903]: Inverse Restrictions: []\n", - "[INFO] [1712607559.616143]: -------------------\n", - "[INFO] [1712607559.616378]: SOMA.LinkedObject \n", - "[INFO] [1712607559.616616]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712607559.616888]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.LinkedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.617137]: Subclasses: []\n", - "[INFO] [1712607559.617424]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.617923]: Instances: []\n", - "[INFO] [1712607559.618206]: Direct Instances: []\n", - "[INFO] [1712607559.618565]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712607559.618816]: -------------------\n", - "[INFO] [1712607559.619061]: SOMA.LinkageState \n", - "[INFO] [1712607559.619305]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712607559.619583]: Ancestors: {DUL.Object, SOMA.LinkageState, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.619833]: Subclasses: []\n", - "[INFO] [1712607559.620126]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.620609]: Instances: []\n", - "[INFO] [1712607559.620877]: Direct Instances: []\n", - "[INFO] [1712607559.621132]: Inverse Restrictions: []\n", - "[INFO] [1712607559.621366]: -------------------\n", - "[INFO] [1712607559.621602]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712607559.621835]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607559.622073]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.622345]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712607559.622639]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.623140]: Instances: []\n", - "[INFO] [1712607559.623393]: Direct Instances: []\n", - "[INFO] [1712607559.623644]: Inverse Restrictions: []\n", - "[INFO] [1712607559.623889]: -------------------\n", - "[INFO] [1712607559.624124]: SOMA.SpatialRelationRole \n", - "[INFO] [1712607559.624357]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712607559.624598]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.624840]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712607559.625134]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.625631]: Instances: []\n", - "[INFO] [1712607559.625900]: Direct Instances: []\n", - "[INFO] [1712607559.626163]: Inverse Restrictions: []\n", - "[INFO] [1712607559.626412]: -------------------\n", - "[INFO] [1712607559.626646]: SOMA.LocutionaryAction \n", - "[INFO] [1712607559.626875]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.628093]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", - "[INFO] [1712607559.628371]: Subclasses: []\n", - "[INFO] [1712607559.628671]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.629164]: Instances: []\n", - "[INFO] [1712607559.629438]: Direct Instances: []\n", - "[INFO] [1712607559.629884]: Inverse Restrictions: []\n", - "[INFO] [1712607559.630195]: -------------------\n", - "[INFO] [1712607559.630618]: SOMA.LookingAt \n", - "[INFO] [1712607559.630903]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607559.631204]: Ancestors: {DUL.Object, SOMA.LookingAt, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.631469]: Subclasses: []\n", - "[INFO] [1712607559.631764]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.632252]: Instances: []\n", - "[INFO] [1712607559.632514]: Direct Instances: []\n", - "[INFO] [1712607559.632781]: Inverse Restrictions: []\n", - "[INFO] [1712607559.633038]: -------------------\n", - "[INFO] [1712607559.633347]: SOMA.LookingFor \n", - "[INFO] [1712607559.633629]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712607559.633917]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", - "[INFO] [1712607559.634186]: Subclasses: []\n", - "[INFO] [1712607559.634499]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.635006]: Instances: []\n", - "[INFO] [1712607559.635273]: Direct Instances: []\n", - "[INFO] [1712607559.635536]: Inverse Restrictions: []\n", - "[INFO] [1712607559.635784]: -------------------\n", - "[INFO] [1712607559.636116]: SOMA.Lowering \n", - "[INFO] [1712607559.636393]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607559.636698]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Lowering, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.636975]: Subclasses: []\n", - "[INFO] [1712607559.637277]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.637770]: Instances: []\n", - "[INFO] [1712607559.638027]: Direct Instances: []\n", - "[INFO] [1712607559.638282]: Inverse Restrictions: []\n", - "[INFO] [1712607559.638529]: -------------------\n", - "[INFO] [1712607559.638769]: SOMA.PhysicalAction \n", - "[INFO] [1712607559.639000]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712607559.639255]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.PhysicalAction, DUL.Entity}\n", - "[INFO] [1712607559.639512]: Subclasses: []\n", - "[INFO] [1712607559.639804]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.640296]: Instances: []\n", - "[INFO] [1712607559.640567]: Direct Instances: []\n", - "[INFO] [1712607559.640862]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607559.641109]: -------------------\n", - "[INFO] [1712607559.641347]: SOMA.Markup_Language \n", - "[INFO] [1712607559.641579]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607559.641850]: Ancestors: {DUL.Object, SOMA.Markup_Language, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607559.642102]: Subclasses: []\n", - "[INFO] [1712607559.642396]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.642879]: Instances: []\n", - "[INFO] [1712607559.643130]: Direct Instances: []\n", - "[INFO] [1712607559.643390]: Inverse Restrictions: []\n", - "[INFO] [1712607559.643632]: -------------------\n", - "[INFO] [1712607559.643866]: SOMA.Masterful \n", - "[INFO] [1712607559.644095]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712607559.644387]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.Masterful, owl.Thing, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.644666]: Subclasses: []\n", - "[INFO] [1712607559.644966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.645452]: Instances: []\n", - "[INFO] [1712607559.645740]: Direct Instances: []\n", - "[INFO] [1712607559.646011]: Inverse Restrictions: []\n", - "[INFO] [1712607559.646260]: -------------------\n", - "[INFO] [1712607559.646500]: SOMA.Material \n", - "[INFO] [1712607559.646737]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607559.646999]: Ancestors: {SOMA.Material, SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607559.647259]: Subclasses: []\n", - "[INFO] [1712607559.647555]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.648046]: Instances: []\n", - "[INFO] [1712607559.648298]: Direct Instances: []\n", - "[INFO] [1712607559.648543]: Inverse Restrictions: []\n", - "[INFO] [1712607559.648772]: -------------------\n", - "[INFO] [1712607559.649014]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712607559.649270]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712607559.649538]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.MedicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.649782]: Subclasses: []\n", - "[INFO] [1712607559.650082]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.650586]: Instances: []\n", - "[INFO] [1712607559.650851]: Direct Instances: []\n", - "[INFO] [1712607559.651101]: Inverse Restrictions: []\n", - "[INFO] [1712607559.651345]: -------------------\n", - "[INFO] [1712607559.651602]: SOMA.Memorizing \n", - "[INFO] [1712607559.651851]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712607559.652124]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Learning, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, SOMA.Memorizing, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", - "[INFO] [1712607559.652375]: Subclasses: []\n", - "[INFO] [1712607559.652671]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.653180]: Instances: []\n", - "[INFO] [1712607559.653454]: Direct Instances: []\n", - "[INFO] [1712607559.653705]: Inverse Restrictions: []\n", - "[INFO] [1712607559.653947]: -------------------\n", - "[INFO] [1712607559.654197]: SOMA.MentalAction \n", - "[INFO] [1712607559.654870]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712607559.655159]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.MentalAction, DUL.Entity}\n", - "[INFO] [1712607559.655409]: Subclasses: []\n", - "[INFO] [1712607559.655708]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.656207]: Instances: []\n", - "[INFO] [1712607559.656474]: Direct Instances: []\n", - "[INFO] [1712607559.656765]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712607559.657009]: -------------------\n", - "[INFO] [1712607559.657246]: SOMA.MeshShape \n", - "[INFO] [1712607559.657530]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712607559.657803]: Ancestors: {DUL.Abstract, SOMA.MeshShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607559.658050]: Subclasses: []\n", - "[INFO] [1712607559.658409]: Properties: [SOMA.hasFilePath, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.658946]: Instances: []\n", - "[INFO] [1712607559.659240]: Direct Instances: []\n", - "[INFO] [1712607559.659507]: Inverse Restrictions: []\n", - "[INFO] [1712607559.659759]: -------------------\n", - "[INFO] [1712607559.659998]: SOMA.MeshShapeData \n", - "[INFO] [1712607559.660243]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607559.660528]: Ancestors: {DUL.Object, SOMA.MeshShapeData, owl.Thing, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607559.660784]: Subclasses: []\n", - "[INFO] [1712607559.661119]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.661629]: Instances: []\n", - "[INFO] [1712607559.661904]: Direct Instances: []\n", - "[INFO] [1712607559.662260]: Inverse Restrictions: []\n", - "[INFO] [1712607559.662583]: -------------------\n", - "[INFO] [1712607559.662853]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712607559.663111]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712607559.663429]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.663701]: Subclasses: []\n", - "[INFO] [1712607559.664005]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.664503]: Instances: []\n", - "[INFO] [1712607559.664776]: Direct Instances: []\n", - "[INFO] [1712607559.665030]: Inverse Restrictions: []\n", - "[INFO] [1712607559.665275]: -------------------\n", - "[INFO] [1712607559.665512]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712607559.665751]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607559.665997]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.666268]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712607559.666577]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.667079]: Instances: []\n", - "[INFO] [1712607559.667337]: Direct Instances: []\n", - "[INFO] [1712607559.667593]: Inverse Restrictions: []\n", - "[INFO] [1712607559.667843]: -------------------\n", - "[INFO] [1712607559.668084]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712607559.668325]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712607559.668594]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.MetaCognitionMemoryTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.668856]: Subclasses: []\n", - "[INFO] [1712607559.669158]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.669658]: Instances: []\n", - "[INFO] [1712607559.669920]: Direct Instances: []\n", - "[INFO] [1712607559.670179]: Inverse Restrictions: []\n", - "[INFO] [1712607559.670429]: -------------------\n", - "[INFO] [1712607559.670667]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712607559.670903]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712607559.671170]: Ancestors: {DUL.Object, SOMA.MetaCognitionPlanningTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.671427]: Subclasses: []\n", - "[INFO] [1712607559.671721]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.672212]: Instances: []\n", - "[INFO] [1712607559.672481]: Direct Instances: []\n", - "[INFO] [1712607559.672744]: Inverse Restrictions: []\n", - "[INFO] [1712607559.672985]: -------------------\n", - "[INFO] [1712607559.673225]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712607559.673541]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712607559.673810]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.674100]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712607559.674435]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.674969]: Instances: []\n", - "[INFO] [1712607559.675247]: Direct Instances: []\n", - "[INFO] [1712607559.675509]: Inverse Restrictions: []\n", - "[INFO] [1712607559.675743]: -------------------\n", - "[INFO] [1712607559.675979]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712607559.676208]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712607559.676466]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.MetacognitiveControlling, DUL.EventType}\n", - "[INFO] [1712607559.676730]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712607559.677021]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.677507]: Instances: []\n", - "[INFO] [1712607559.677809]: Direct Instances: []\n", - "[INFO] [1712607559.678060]: Inverse Restrictions: []\n", - "[INFO] [1712607559.678315]: -------------------\n", - "[INFO] [1712607559.678560]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712607559.678794]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712607559.679050]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Introspecting, SOMA.MetacognitiveMonitoring}\n", - "[INFO] [1712607559.679309]: Subclasses: []\n", - "[INFO] [1712607559.679620]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.680136]: Instances: []\n", - "[INFO] [1712607559.680408]: Direct Instances: []\n", - "[INFO] [1712607559.680666]: Inverse Restrictions: []\n", - "[INFO] [1712607559.680905]: -------------------\n", - "[INFO] [1712607559.681139]: SOMA.MilkBottle \n", - "[INFO] [1712607559.681367]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712607559.681628]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.MilkBottle, DUL.Entity}\n", - "[INFO] [1712607559.681889]: Subclasses: []\n", - "[INFO] [1712607559.682183]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.682670]: Instances: []\n", - "[INFO] [1712607559.682924]: Direct Instances: []\n", - "[INFO] [1712607559.683177]: Inverse Restrictions: []\n", - "[INFO] [1712607559.683420]: -------------------\n", - "[INFO] [1712607559.683654]: SOMA.MilkPack \n", - "[INFO] [1712607559.683888]: Super classes: [SOMA.Pack]\n", - "[INFO] [1712607559.684153]: Ancestors: {SOMA.MilkPack, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Pack, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.684414]: Subclasses: []\n", - "[INFO] [1712607559.684708]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.685197]: Instances: []\n", - "[INFO] [1712607559.685467]: Direct Instances: []\n", - "[INFO] [1712607559.685722]: Inverse Restrictions: []\n", - "[INFO] [1712607559.685961]: -------------------\n", - "[INFO] [1712607559.686197]: SOMA.Pack \n", - "[INFO] [1712607559.686429]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712607559.686672]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.Pack, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.686927]: Subclasses: [SOMA.MilkPack]\n", - "[INFO] [1712607559.687217]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.687707]: Instances: []\n", - "[INFO] [1712607559.687961]: Direct Instances: []\n", - "[INFO] [1712607559.688219]: Inverse Restrictions: []\n", - "[INFO] [1712607559.688457]: -------------------\n", - "[INFO] [1712607559.688689]: SOMA.Mixing \n", - "[INFO] [1712607559.688915]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712607559.689172]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, SOMA.Mixing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.689433]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712607559.689721]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.690213]: Instances: []\n", - "[INFO] [1712607559.690467]: Direct Instances: []\n", - "[INFO] [1712607559.690714]: Inverse Restrictions: []\n", - "[INFO] [1712607559.690944]: -------------------\n", - "[INFO] [1712607559.691184]: SOMA.MixingTheory \n", - "[INFO] [1712607559.691431]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712607559.691696]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, SOMA.MixingTheory, DUL.SocialObject}\n", - "[INFO] [1712607559.691938]: Subclasses: []\n", - "[INFO] [1712607559.692235]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.692724]: Instances: []\n", - "[INFO] [1712607559.692980]: Direct Instances: []\n", - "[INFO] [1712607559.693217]: Inverse Restrictions: []\n", - "[INFO] [1712607559.693457]: -------------------\n", - "[INFO] [1712607559.693693]: SOMA.MonitoringJointState \n", - "[INFO] [1712607559.693923]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712607559.694193]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.MonitoringJointState, SOMA.PhysicalTask, SOMA.Proprioceiving, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.694485]: Subclasses: []\n", - "[INFO] [1712607559.694783]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.695269]: Instances: []\n", - "[INFO] [1712607559.695523]: Direct Instances: []\n", - "[INFO] [1712607559.695794]: Inverse Restrictions: []\n", - "[INFO] [1712607559.696046]: -------------------\n", - "[INFO] [1712607559.696289]: SOMA.Proprioceiving \n", - "[INFO] [1712607559.696529]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607559.696773]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Proprioceiving, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.697028]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712607559.697320]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.697812]: Instances: []\n", - "[INFO] [1712607559.698082]: Direct Instances: []\n", - "[INFO] [1712607559.698343]: Inverse Restrictions: []\n", - "[INFO] [1712607559.698582]: -------------------\n", - "[INFO] [1712607559.698812]: SOMA.MovingAway \n", - "[INFO] [1712607559.699046]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607559.699322]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.MovingAway, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607559.699570]: Subclasses: []\n", - "[INFO] [1712607559.699853]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.700335]: Instances: []\n", - "[INFO] [1712607559.700600]: Direct Instances: []\n", - "[INFO] [1712607559.700855]: Inverse Restrictions: []\n", - "[INFO] [1712607559.701095]: -------------------\n", - "[INFO] [1712607559.701327]: SOMA.MovingTo \n", - "[INFO] [1712607559.701556]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712607559.701823]: Ancestors: {DUL.Object, SOMA.MovingTo, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.702075]: Subclasses: []\n", - "[INFO] [1712607559.702361]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.702933]: Instances: []\n", - "[INFO] [1712607559.703220]: Direct Instances: []\n", - "[INFO] [1712607559.703479]: Inverse Restrictions: []\n", - "[INFO] [1712607559.703741]: -------------------\n", - "[INFO] [1712607559.703984]: SOMA.Natural_Language \n", - "[INFO] [1712607559.704244]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712607559.704509]: Ancestors: {DUL.Object, SOMA.Natural_Language, SOMA.System, owl.Thing, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607559.704768]: Subclasses: []\n", - "[INFO] [1712607559.705064]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.705547]: Instances: []\n", - "[INFO] [1712607559.705817]: Direct Instances: []\n", - "[INFO] [1712607559.706136]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712607559.706386]: -------------------\n", - "[INFO] [1712607559.706624]: SOMA.Natural_Language_Text \n", - "[INFO] [1712607559.706857]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.707332]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", - "[INFO] [1712607559.707601]: Subclasses: []\n", - "[INFO] [1712607559.707903]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607559.708391]: Instances: []\n", - "[INFO] [1712607559.708645]: Direct Instances: []\n", - "[INFO] [1712607559.708922]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712607559.709177]: -------------------\n", - "[INFO] [1712607559.709419]: SOMA.NutellaJar \n", - "[INFO] [1712607559.709650]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712607559.709908]: Ancestors: {DUL.Object, SOMA.NutellaJar, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Jar}\n", - "[INFO] [1712607559.710171]: Subclasses: []\n", - "[INFO] [1712607559.710464]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.710952]: Instances: []\n", - "[INFO] [1712607559.711228]: Direct Instances: []\n", - "[INFO] [1712607559.711488]: Inverse Restrictions: []\n", - "[INFO] [1712607559.711729]: -------------------\n", - "[INFO] [1712607559.711967]: SOMA.Ontology \n", - "[INFO] [1712607559.712225]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712607559.713456]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", - "[INFO] [1712607559.713734]: Subclasses: []\n", - "[INFO] [1712607559.714051]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607559.714563]: Instances: []\n", - "[INFO] [1712607559.714842]: Direct Instances: []\n", - "[INFO] [1712607559.715153]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712607559.715407]: -------------------\n", - "[INFO] [1712607559.715651]: SOMA.Ontology_Language \n", - "[INFO] [1712607559.715894]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712607559.716162]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607559.716433]: Subclasses: []\n", - "[INFO] [1712607559.716741]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.717234]: Instances: []\n", - "[INFO] [1712607559.717491]: Direct Instances: []\n", - "[INFO] [1712607559.717798]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712607559.718066]: -------------------\n", - "[INFO] [1712607559.718325]: SOMA.Option \n", - "[INFO] [1712607559.718575]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712607559.718848]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Option, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.719095]: Subclasses: []\n", - "[INFO] [1712607559.719387]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.719887]: Instances: []\n", - "[INFO] [1712607559.720158]: Direct Instances: []\n", - "[INFO] [1712607559.720413]: Inverse Restrictions: []\n", - "[INFO] [1712607559.720659]: -------------------\n", - "[INFO] [1712607559.720908]: SOMA.Singleton \n", - "[INFO] [1712607559.721153]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.721392]: Ancestors: {SOMA.Singleton, owl.Thing}\n", - "[INFO] [1712607559.721639]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712607559.721924]: Properties: [rdf-schema.comment, SOMA.encapsulates, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.722445]: Instances: []\n", - "[INFO] [1712607559.722717]: Direct Instances: []\n", - "[INFO] [1712607559.722973]: Inverse Restrictions: []\n", - "[INFO] [1712607559.723218]: -------------------\n", - "[INFO] [1712607559.723460]: SOMA.Orienting \n", - "[INFO] [1712607559.723710]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712607559.723991]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Orienting, SOMA.Positioning, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.724243]: Subclasses: []\n", - "[INFO] [1712607559.724530]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.725032]: Instances: []\n", - "[INFO] [1712607559.725295]: Direct Instances: []\n", - "[INFO] [1712607559.725547]: Inverse Restrictions: []\n", - "[INFO] [1712607559.725785]: -------------------\n", - "[INFO] [1712607559.726023]: SOMA.Positioning \n", - "[INFO] [1712607559.726261]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607559.726519]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Positioning, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.726774]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712607559.727061]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.727552]: Instances: []\n", - "[INFO] [1712607559.727843]: Direct Instances: []\n", - "[INFO] [1712607559.728109]: Inverse Restrictions: []\n", - "[INFO] [1712607559.728357]: -------------------\n", - "[INFO] [1712607559.728596]: SOMA.Origin \n", - "[INFO] [1712607559.728863]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712607559.729161]: Ancestors: {DUL.Object, SOMA.Origin, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.729433]: Subclasses: []\n", - "[INFO] [1712607559.729729]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.730231]: Instances: []\n", - "[INFO] [1712607559.730510]: Direct Instances: []\n", - "[INFO] [1712607559.730810]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712607559.731059]: -------------------\n", - "[INFO] [1712607559.731300]: SOMA.Oven \n", - "[INFO] [1712607559.731556]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", - "[INFO] [1712607559.731841]: Ancestors: {DUL.Object, SOMA.Oven, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.732098]: Subclasses: []\n", - "[INFO] [1712607559.732388]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.732875]: Instances: []\n", - "[INFO] [1712607559.733144]: Direct Instances: []\n", - "[INFO] [1712607559.733403]: Inverse Restrictions: []\n", - "[INFO] [1712607559.733641]: -------------------\n", - "[INFO] [1712607559.733878]: SOMA.TemperingByHeating \n", - "[INFO] [1712607559.734110]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712607559.734390]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.TemperingByHeating, SOMA.PhysicalQuality, SOMA.Tempering, DUL.Quality}\n", - "[INFO] [1712607559.734663]: Subclasses: []\n", - "[INFO] [1712607559.734960]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.735453]: Instances: []\n", - "[INFO] [1712607559.735731]: Direct Instances: []\n", - "[INFO] [1712607559.736013]: Inverse Restrictions: [SOMA.Oven]\n", - "[INFO] [1712607559.736259]: -------------------\n", - "[INFO] [1712607559.736497]: SOMA.Pan \n", - "[INFO] [1712607559.736732]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712607559.737007]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Pan, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607559.737269]: Subclasses: []\n", - "[INFO] [1712607559.737559]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.738046]: Instances: []\n", - "[INFO] [1712607559.738303]: Direct Instances: []\n", - "[INFO] [1712607559.738563]: Inverse Restrictions: []\n", - "[INFO] [1712607559.738807]: -------------------\n", - "[INFO] [1712607559.739042]: SOMA.Pancake \n", - "[INFO] [1712607559.739271]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712607559.739532]: Ancestors: {DUL.Object, SOMA.BakedGood, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.Pancake, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.739795]: Subclasses: []\n", - "[INFO] [1712607559.740083]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.740577]: Instances: []\n", - "[INFO] [1712607559.740854]: Direct Instances: []\n", - "[INFO] [1712607559.741114]: Inverse Restrictions: []\n", - "[INFO] [1712607559.741361]: -------------------\n", - "[INFO] [1712607559.741601]: SOMA.PancakeMix \n", - "[INFO] [1712607559.741835]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712607559.742101]: Ancestors: {DUL.Object, DUL.FunctionalSubstance, DUL.DesignedArtifact, SOMA.PancakeMix, DUL.PhysicalObject, DUL.Substance, DUL.PhysicalArtifact, owl.Thing, DUL.DesignedSubstance, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607559.742369]: Subclasses: []\n", - "[INFO] [1712607559.742663]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.743155]: Instances: []\n", - "[INFO] [1712607559.743411]: Direct Instances: []\n", - "[INFO] [1712607559.743657]: Inverse Restrictions: []\n", - "[INFO] [1712607559.743908]: -------------------\n", - "[INFO] [1712607559.744157]: SOMA.ParkingArms \n", - "[INFO] [1712607559.744444]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712607559.744724]: Ancestors: {DUL.Object, SOMA.ParkingArms, DUL.Entity, DUL.EventType, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingArmPose}\n", - "[INFO] [1712607559.744983]: Subclasses: []\n", - "[INFO] [1712607559.745285]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.745804]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712607559.746072]: Direct Instances: [SOMA.parking_arms]\n", - "[INFO] [1712607559.746334]: Inverse Restrictions: []\n", - "[INFO] [1712607559.746586]: -------------------\n", - "[INFO] [1712607559.746828]: SOMA.PastaBowl \n", - "[INFO] [1712607559.747063]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712607559.747328]: Ancestors: {SOMA.PastaBowl, DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Bowl, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607559.747570]: Subclasses: []\n", - "[INFO] [1712607559.747868]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.748364]: Instances: []\n", - "[INFO] [1712607559.748623]: Direct Instances: []\n", - "[INFO] [1712607559.748879]: Inverse Restrictions: []\n", - "[INFO] [1712607559.749117]: -------------------\n", - "[INFO] [1712607559.749356]: SOMA.PepperShaker \n", - "[INFO] [1712607559.749586]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712607559.749857]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.PepperShaker, DUL.Entity, SOMA.Shaker}\n", - "[INFO] [1712607559.750126]: Subclasses: []\n", - "[INFO] [1712607559.750433]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.750928]: Instances: []\n", - "[INFO] [1712607559.751185]: Direct Instances: []\n", - "[INFO] [1712607559.751435]: Inverse Restrictions: []\n", - "[INFO] [1712607559.751684]: -------------------\n", - "[INFO] [1712607559.751926]: SOMA.Shaker \n", - "[INFO] [1712607559.752160]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712607559.752402]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Shaker}\n", - "[INFO] [1712607559.752650]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", - "[INFO] [1712607559.752957]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.753748]: Instances: []\n", - "[INFO] [1712607559.754041]: Direct Instances: []\n", - "[INFO] [1712607559.754304]: Inverse Restrictions: []\n", - "[INFO] [1712607559.754557]: -------------------\n", - "[INFO] [1712607559.754808]: SOMA.PhaseTransition \n", - "[INFO] [1712607559.755056]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712607559.755315]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PhaseTransition, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", - "[INFO] [1712607559.755570]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712607559.755862]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712607559.756381]: Instances: []\n", - "[INFO] [1712607559.756659]: Direct Instances: []\n", - "[INFO] [1712607559.756917]: Inverse Restrictions: []\n", - "[INFO] [1712607559.757157]: -------------------\n", - "[INFO] [1712607559.757393]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712607559.757635]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712607559.757910]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, SOMA.PhysicalAccessibility, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.758168]: Subclasses: []\n", - "[INFO] [1712607559.758466]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.758950]: Instances: []\n", - "[INFO] [1712607559.759221]: Direct Instances: []\n", - "[INFO] [1712607559.759478]: Inverse Restrictions: []\n", - "[INFO] [1712607559.759718]: -------------------\n", - "[INFO] [1712607559.759963]: SOMA.PhysicalBlockage \n", - "[INFO] [1712607559.760206]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712607559.760469]: Ancestors: {DUL.Object, SOMA.StateType, SOMA.PhysicalBlockage, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.760734]: Subclasses: []\n", - "[INFO] [1712607559.761074]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.761576]: Instances: []\n", - "[INFO] [1712607559.761868]: Direct Instances: []\n", - "[INFO] [1712607559.762144]: Inverse Restrictions: []\n", - "[INFO] [1712607559.762403]: -------------------\n", - "[INFO] [1712607559.762655]: SOMA.PhysicalExistence \n", - "[INFO] [1712607559.762895]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712607559.763179]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicalExistence, SOMA.PhysicalState}\n", - "[INFO] [1712607559.763432]: Subclasses: []\n", - "[INFO] [1712607559.763731]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.764224]: Instances: []\n", - "[INFO] [1712607559.764502]: Direct Instances: []\n", - "[INFO] [1712607559.764766]: Inverse Restrictions: []\n", - "[INFO] [1712607559.765007]: -------------------\n", - "[INFO] [1712607559.765247]: SOMA.PhysicalState \n", - "[INFO] [1712607559.765486]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712607559.765743]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicalState}\n", - "[INFO] [1712607559.765998]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712607559.766299]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.766798]: Instances: []\n", - "[INFO] [1712607559.767075]: Direct Instances: []\n", - "[INFO] [1712607559.767339]: Inverse Restrictions: []\n", - "[INFO] [1712607559.767578]: -------------------\n", - "[INFO] [1712607559.767813]: SOMA.PhysicsProcess \n", - "[INFO] [1712607559.768058]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712607559.768318]: Ancestors: {DUL.Process, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicsProcess}\n", - "[INFO] [1712607559.768578]: Subclasses: []\n", - "[INFO] [1712607559.768880]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.769369]: Instances: []\n", - "[INFO] [1712607559.769623]: Direct Instances: []\n", - "[INFO] [1712607559.769882]: Inverse Restrictions: []\n", - "[INFO] [1712607559.770137]: -------------------\n", - "[INFO] [1712607559.770378]: SOMA.PlacingTheory \n", - "[INFO] [1712607559.770622]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712607559.770888]: Ancestors: {DUL.Object, SOMA.PlacingTheory, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.771149]: Subclasses: []\n", - "[INFO] [1712607559.771452]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.771944]: Instances: []\n", - "[INFO] [1712607559.772204]: Direct Instances: []\n", - "[INFO] [1712607559.772453]: Inverse Restrictions: []\n", - "[INFO] [1712607559.772702]: -------------------\n", - "[INFO] [1712607559.772949]: SOMA.PlanarJoint \n", - "[INFO] [1712607559.773183]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712607559.773447]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Joint, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.PlanarJoint}\n", - "[INFO] [1712607559.773690]: Subclasses: []\n", - "[INFO] [1712607559.773989]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.774487]: Instances: []\n", - "[INFO] [1712607559.774746]: Direct Instances: []\n", - "[INFO] [1712607559.775007]: Inverse Restrictions: []\n", - "[INFO] [1712607559.775254]: -------------------\n", - "[INFO] [1712607559.775507]: SOMA.PluginRole \n", - "[INFO] [1712607559.775784]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712607559.776069]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.PluginRole, DUL.SocialObject}\n", - "[INFO] [1712607559.776349]: Subclasses: []\n", - "[INFO] [1712607559.776665]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.777159]: Instances: []\n", - "[INFO] [1712607559.777416]: Direct Instances: []\n", - "[INFO] [1712607559.777779]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712607559.778053]: -------------------\n", - "[INFO] [1712607559.778394]: SOMA.Pot \n", - "[INFO] [1712607559.778790]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712607559.779227]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Pot, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607559.779613]: Subclasses: [SOMA.SoupPot]\n", - "[INFO] [1712607559.780029]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.780640]: Instances: []\n", - "[INFO] [1712607559.781016]: Direct Instances: []\n", - "[INFO] [1712607559.781411]: Inverse Restrictions: []\n", - "[INFO] [1712607559.781698]: -------------------\n", - "[INFO] [1712607559.781956]: SOMA.Pourable \n", - "[INFO] [1712607559.782281]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712607559.782724]: Ancestors: {SOMA.Pourable, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607559.783030]: Subclasses: []\n", - "[INFO] [1712607559.783351]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.783857]: Instances: []\n", - "[INFO] [1712607559.784124]: Direct Instances: []\n", - "[INFO] [1712607559.784426]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712607559.784760]: -------------------\n", - "[INFO] [1712607559.785017]: SOMA.PouredObject \n", - "[INFO] [1712607559.785263]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607559.785533]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.PouredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.785794]: Subclasses: []\n", - "[INFO] [1712607559.786093]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.786591]: Instances: []\n", - "[INFO] [1712607559.786853]: Direct Instances: []\n", - "[INFO] [1712607559.787137]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712607559.787396]: -------------------\n", - "[INFO] [1712607559.787640]: SOMA.Pouring \n", - "[INFO] [1712607559.787879]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712607559.788145]: Ancestors: {DUL.Object, SOMA.Pouring, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.788393]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712607559.788689]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607559.789188]: Instances: []\n", - "[INFO] [1712607559.789456]: Direct Instances: []\n", - "[INFO] [1712607559.789719]: Inverse Restrictions: []\n", - "[INFO] [1712607559.789962]: -------------------\n", - "[INFO] [1712607559.790201]: SOMA.PouringInto \n", - "[INFO] [1712607559.790432]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712607559.790693]: Ancestors: {DUL.Object, SOMA.Pouring, DUL.Entity, DUL.EventType, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.PouringInto}\n", - "[INFO] [1712607559.790950]: Subclasses: []\n", - "[INFO] [1712607559.791243]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.791732]: Instances: []\n", - "[INFO] [1712607559.792004]: Direct Instances: []\n", - "[INFO] [1712607559.792260]: Inverse Restrictions: []\n", - "[INFO] [1712607559.792498]: -------------------\n", - "[INFO] [1712607559.792732]: SOMA.PouringOnto \n", - "[INFO] [1712607559.792965]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712607559.793232]: Ancestors: {DUL.Object, SOMA.Pouring, SOMA.PouringOnto, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.793488]: Subclasses: []\n", - "[INFO] [1712607559.793775]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.794265]: Instances: []\n", - "[INFO] [1712607559.794536]: Direct Instances: []\n", - "[INFO] [1712607559.794795]: Inverse Restrictions: []\n", - "[INFO] [1712607559.795033]: -------------------\n", - "[INFO] [1712607559.795268]: SOMA.Prediction \n", - "[INFO] [1712607559.795506]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712607559.795771]: Ancestors: {owl.Thing, SOMA.Prediction, SOMA.Prospecting, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.796032]: Subclasses: []\n", - "[INFO] [1712607559.796327]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.796809]: Instances: []\n", - "[INFO] [1712607559.797066]: Direct Instances: []\n", - "[INFO] [1712607559.797319]: Inverse Restrictions: []\n", - "[INFO] [1712607559.797559]: -------------------\n", - "[INFO] [1712607559.797808]: SOMA.Prospecting \n", - "[INFO] [1712607559.798042]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607559.798281]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Prospecting, SOMA.DerivingInformation}\n", - "[INFO] [1712607559.798525]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712607559.798806]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.799312]: Instances: []\n", - "[INFO] [1712607559.799575]: Direct Instances: []\n", - "[INFO] [1712607559.799825]: Inverse Restrictions: []\n", - "[INFO] [1712607559.800062]: -------------------\n", - "[INFO] [1712607559.800293]: SOMA.Predilection \n", - "[INFO] [1712607559.801303]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712607559.801598]: Ancestors: {DUL.Object, DUL.Description, SOMA.Predilection, DUL.SocialRelation, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.801856]: Subclasses: []\n", - "[INFO] [1712607559.802144]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.802640]: Instances: []\n", - "[INFO] [1712607559.802919]: Direct Instances: []\n", - "[INFO] [1712607559.803221]: Inverse Restrictions: []\n", - "[INFO] [1712607559.803465]: -------------------\n", - "[INFO] [1712607559.803710]: SOMA.PreferenceOrder \n", - "[INFO] [1712607559.804350]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712607559.804636]: Ancestors: {DUL.Object, SOMA.PreferenceOrder, DUL.Description, DUL.SocialRelation, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.804888]: Subclasses: []\n", - "[INFO] [1712607559.805187]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.orders]\n", - "[INFO] [1712607559.805687]: Instances: []\n", - "[INFO] [1712607559.805959]: Direct Instances: []\n", - "[INFO] [1712607559.806219]: Inverse Restrictions: []\n", - "[INFO] [1712607559.806466]: -------------------\n", - "[INFO] [1712607559.806714]: SOMA.PreferenceRegion \n", - "[INFO] [1712607559.806970]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712607559.807245]: Ancestors: {DUL.Abstract, SOMA.PreferenceRegion, owl.Thing, DUL.Entity, DUL.SocialObjectAttribute, DUL.Region}\n", - "[INFO] [1712607559.807497]: Subclasses: []\n", - "[INFO] [1712607559.807794]: Properties: [rdf-schema.comment, DUL.isRegionFor, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.808297]: Instances: []\n", - "[INFO] [1712607559.808573]: Direct Instances: []\n", - "[INFO] [1712607559.808832]: Inverse Restrictions: []\n", - "[INFO] [1712607559.809080]: -------------------\n", - "[INFO] [1712607559.809323]: SOMA.PrismaticJoint \n", - "[INFO] [1712607559.809583]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712607559.809858]: Ancestors: {DUL.Object, SOMA.PrismaticJoint, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607559.810114]: Subclasses: []\n", - "[INFO] [1712607559.810412]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointLimit]\n", - "[INFO] [1712607559.810908]: Instances: []\n", - "[INFO] [1712607559.811172]: Direct Instances: []\n", - "[INFO] [1712607559.811422]: Inverse Restrictions: []\n", - "[INFO] [1712607559.811658]: -------------------\n", - "[INFO] [1712607559.811910]: SOMA.ProcessFlow \n", - "[INFO] [1712607559.812166]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712607559.812497]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, SOMA.ProcessFlow, DUL.SocialObject}\n", - "[INFO] [1712607559.812787]: Subclasses: []\n", - "[INFO] [1712607559.813105]: Properties: [SOMA.definesProcess, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.813604]: Instances: []\n", - "[INFO] [1712607559.813867]: Direct Instances: []\n", - "[INFO] [1712607559.814529]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712607559.814816]: -------------------\n", - "[INFO] [1712607559.815077]: SOMA.Progression \n", - "[INFO] [1712607559.815329]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712607559.816166]: Ancestors: {SOMA.Progression, DUL.Situation, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.816447]: Subclasses: []\n", - "[INFO] [1712607559.816771]: Properties: [DUL.satisfies, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.817270]: Instances: []\n", - "[INFO] [1712607559.817529]: Direct Instances: []\n", - "[INFO] [1712607559.817784]: Inverse Restrictions: []\n", - "[INFO] [1712607559.818031]: -------------------\n", - "[INFO] [1712607559.818291]: SOMA.Protector \n", - "[INFO] [1712607559.818536]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712607559.818805]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, SOMA.Protector, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607559.819068]: Subclasses: []\n", - "[INFO] [1712607559.819367]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.819860]: Instances: []\n", - "[INFO] [1712607559.820131]: Direct Instances: []\n", - "[INFO] [1712607559.820390]: Inverse Restrictions: []\n", - "[INFO] [1712607559.820642]: -------------------\n", - "[INFO] [1712607559.820883]: SOMA.ProximalTheory \n", - "[INFO] [1712607559.821126]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712607559.821395]: Ancestors: {DUL.Object, DUL.Description, DUL.Entity, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ProximalTheory, DUL.SocialObject}\n", - "[INFO] [1712607559.821655]: Subclasses: []\n", - "[INFO] [1712607559.821963]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.822495]: Instances: []\n", - "[INFO] [1712607559.822773]: Direct Instances: []\n", - "[INFO] [1712607559.823055]: Inverse Restrictions: []\n", - "[INFO] [1712607559.823345]: -------------------\n", - "[INFO] [1712607559.823629]: SOMA.PushingAway \n", - "[INFO] [1712607559.823920]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712607559.824265]: Ancestors: {DUL.Object, SOMA.PushingAway, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", - "[INFO] [1712607559.824582]: Subclasses: []\n", - "[INFO] [1712607559.824955]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.825540]: Instances: []\n", - "[INFO] [1712607559.825842]: Direct Instances: []\n", - "[INFO] [1712607559.826128]: Inverse Restrictions: []\n", - "[INFO] [1712607559.826394]: -------------------\n", - "[INFO] [1712607559.826656]: SOMA.PushingDown \n", - "[INFO] [1712607559.826931]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712607559.827218]: Ancestors: {SOMA.PushingDown, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", - "[INFO] [1712607559.827472]: Subclasses: []\n", - "[INFO] [1712607559.827809]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.828325]: Instances: []\n", - "[INFO] [1712607559.828594]: Direct Instances: []\n", - "[INFO] [1712607559.828851]: Inverse Restrictions: []\n", - "[INFO] [1712607559.829104]: -------------------\n", - "[INFO] [1712607559.829350]: SOMA.PuttingDown \n", - "[INFO] [1712607559.829589]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607559.829867]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.PuttingDown, DUL.EventType}\n", - "[INFO] [1712607559.830122]: Subclasses: []\n", - "[INFO] [1712607559.830423]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.830917]: Instances: []\n", - "[INFO] [1712607559.831465]: Direct Instances: []\n", - "[INFO] [1712607559.831816]: Inverse Restrictions: []\n", - "[INFO] [1712607559.832063]: -------------------\n", - "[INFO] [1712607559.832305]: SOMA.QualityTransition \n", - "[INFO] [1712607559.832546]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712607559.832811]: Ancestors: {DUL.Transition, owl.Thing, SOMA.QualityTransition, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712607559.833079]: Subclasses: []\n", - "[INFO] [1712607559.833383]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.833875]: Instances: []\n", - "[INFO] [1712607559.834224]: Direct Instances: []\n", - "[INFO] [1712607559.834501]: Inverse Restrictions: []\n", - "[INFO] [1712607559.834775]: -------------------\n", - "[INFO] [1712607559.835034]: SOMA.Query \n", - "[INFO] [1712607559.835282]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712607559.835554]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Query, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.835804]: Subclasses: []\n", - "[INFO] [1712607559.836112]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.836612]: Instances: []\n", - "[INFO] [1712607559.836878]: Direct Instances: []\n", - "[INFO] [1712607559.837189]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712607559.837453]: -------------------\n", - "[INFO] [1712607559.837708]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712607559.837955]: Super classes: [owl.Thing]\n", - "[INFO] [1712607559.839887]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", - "[INFO] [1712607559.840178]: Subclasses: []\n", - "[INFO] [1712607559.840492]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.840999]: Instances: []\n", - "[INFO] [1712607559.841265]: Direct Instances: []\n", - "[INFO] [1712607559.841527]: Inverse Restrictions: []\n", - "[INFO] [1712607559.841791]: -------------------\n", - "[INFO] [1712607559.842041]: SOMA.QueryEngine \n", - "[INFO] [1712607559.842290]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607559.842557]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.QueryEngine, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.842819]: Subclasses: []\n", - "[INFO] [1712607559.843121]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.843611]: Instances: []\n", - "[INFO] [1712607559.843869]: Direct Instances: []\n", - "[INFO] [1712607559.844124]: Inverse Restrictions: []\n", - "[INFO] [1712607559.844407]: -------------------\n", - "[INFO] [1712607559.844661]: SOMA.RaspberryJamJar \n", - "[INFO] [1712607559.844905]: Super classes: [SOMA.JamJar]\n", - "[INFO] [1712607559.845174]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.RaspberryJamJar, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.JamJar, SOMA.Jar}\n", - "[INFO] [1712607559.845420]: Subclasses: []\n", - "[INFO] [1712607559.845736]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.846258]: Instances: []\n", - "[INFO] [1712607559.846538]: Direct Instances: []\n", - "[INFO] [1712607559.846803]: Inverse Restrictions: []\n", - "[INFO] [1712607559.847055]: -------------------\n", - "[INFO] [1712607559.847298]: SOMA.Reaching \n", - "[INFO] [1712607559.847541]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712607559.847825]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Reaching, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.848079]: Subclasses: []\n", - "[INFO] [1712607559.848378]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.848865]: Instances: []\n", - "[INFO] [1712607559.849140]: Direct Instances: []\n", - "[INFO] [1712607559.849402]: Inverse Restrictions: []\n", - "[INFO] [1712607559.849648]: -------------------\n", - "[INFO] [1712607559.849890]: SOMA.Retracting \n", - "[INFO] [1712607559.850133]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712607559.850424]: Ancestors: {DUL.Object, SOMA.Retracting, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.850685]: Subclasses: []\n", - "[INFO] [1712607559.850981]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.851474]: Instances: []\n", - "[INFO] [1712607559.851747]: Direct Instances: []\n", - "[INFO] [1712607559.852012]: Inverse Restrictions: []\n", - "[INFO] [1712607559.852263]: -------------------\n", - "[INFO] [1712607559.852503]: SOMA.Reasoner \n", - "[INFO] [1712607559.852737]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607559.852983]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.853262]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712607559.853578]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.854086]: Instances: []\n", - "[INFO] [1712607559.854353]: Direct Instances: []\n", - "[INFO] [1712607559.854623]: Inverse Restrictions: []\n", - "[INFO] [1712607559.854872]: -------------------\n", - "[INFO] [1712607559.855113]: SOMA.RecipientRole \n", - "[INFO] [1712607559.855352]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712607559.855624]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.RecipientRole, DUL.SocialObject}\n", - "[INFO] [1712607559.855888]: Subclasses: []\n", - "[INFO] [1712607559.856192]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.856684]: Instances: []\n", - "[INFO] [1712607559.856941]: Direct Instances: []\n", - "[INFO] [1712607559.857198]: Inverse Restrictions: []\n", - "[INFO] [1712607559.857440]: -------------------\n", - "[INFO] [1712607559.857683]: SOMA.RecordedEpisode \n", - "[INFO] [1712607559.857940]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712607559.858198]: Ancestors: {SOMA.RecordedEpisode, owl.Thing, SOMA.Episode, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712607559.858463]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712607559.858764]: Properties: [rdf-schema.comment, SOMA.includesRecord, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.859258]: Instances: []\n", - "[INFO] [1712607559.859517]: Direct Instances: []\n", - "[INFO] [1712607559.859770]: Inverse Restrictions: []\n", - "[INFO] [1712607559.860023]: -------------------\n", - "[INFO] [1712607559.860267]: SOMA.RedColor \n", - "[INFO] [1712607559.860502]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712607559.860763]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, SOMA.RedColor, DUL.Region}\n", - "[INFO] [1712607559.861034]: Subclasses: []\n", - "[INFO] [1712607559.861359]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.861855]: Instances: []\n", - "[INFO] [1712607559.862132]: Direct Instances: []\n", - "[INFO] [1712607559.862418]: Inverse Restrictions: []\n", - "[INFO] [1712607559.862662]: -------------------\n", - "[INFO] [1712607559.862906]: SOMA.Refrigerator \n", - "[INFO] [1712607559.863157]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", - "[INFO] [1712607559.863427]: Ancestors: {DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Refrigerator, DUL.Entity}\n", - "[INFO] [1712607559.863675]: Subclasses: []\n", - "[INFO] [1712607559.863961]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.864450]: Instances: []\n", - "[INFO] [1712607559.864737]: Direct Instances: []\n", - "[INFO] [1712607559.865005]: Inverse Restrictions: []\n", - "[INFO] [1712607559.865260]: -------------------\n", - "[INFO] [1712607559.865517]: SOMA.Reification \n", - "[INFO] [1712607559.866026]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712607559.866590]: Ancestors: {DUL.Object, DUL.Description, SOMA.Reification, owl.Thing, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.867009]: Subclasses: []\n", - "[INFO] [1712607559.867471]: Properties: [SOMA.isReificationOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.868167]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712607559.868555]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712607559.868843]: Inverse Restrictions: []\n", - "[INFO] [1712607559.869097]: -------------------\n", - "[INFO] [1712607559.869343]: SOMA.RelationalDatabase \n", - "[INFO] [1712607559.869583]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712607559.869848]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.RelationalDatabase, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", - "[INFO] [1712607559.870098]: Subclasses: []\n", - "[INFO] [1712607559.870404]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.870909]: Instances: []\n", - "[INFO] [1712607559.871178]: Direct Instances: []\n", - "[INFO] [1712607559.871440]: Inverse Restrictions: []\n", - "[INFO] [1712607559.871681]: -------------------\n", - "[INFO] [1712607559.871921]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712607559.872159]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712607559.872437]: Ancestors: {DUL.Object, SOMA.RelationalQueryLanguage, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", - "[INFO] [1712607559.872688]: Subclasses: []\n", - "[INFO] [1712607559.872978]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.873472]: Instances: []\n", - "[INFO] [1712607559.873750]: Direct Instances: []\n", - "[INFO] [1712607559.874008]: Inverse Restrictions: []\n", - "[INFO] [1712607559.874255]: -------------------\n", - "[INFO] [1712607559.874503]: SOMA.RelevantPart \n", - "[INFO] [1712607559.874743]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712607559.875007]: Ancestors: {DUL.Object, SOMA.RelevantPart, owl.Thing, DUL.Entity, SOMA.Feature}\n", - "[INFO] [1712607559.875268]: Subclasses: []\n", - "[INFO] [1712607559.875565]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.876060]: Instances: []\n", - "[INFO] [1712607559.876318]: Direct Instances: []\n", - "[INFO] [1712607559.876565]: Inverse Restrictions: []\n", - "[INFO] [1712607559.876812]: -------------------\n", - "[INFO] [1712607559.877053]: SOMA.Remembering \n", - "[INFO] [1712607559.877301]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712607559.877559]: Ancestors: {owl.Thing, SOMA.Remembering}\n", - "[INFO] [1712607559.877831]: Subclasses: []\n", - "[INFO] [1712607559.878145]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.878716]: Instances: []\n", - "[INFO] [1712607559.879009]: Direct Instances: []\n", - "[INFO] [1712607559.879307]: Inverse Restrictions: []\n", - "[INFO] [1712607559.879563]: -------------------\n", - "[INFO] [1712607559.879812]: SOMA.Retrospecting \n", - "[INFO] [1712607559.880065]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712607559.880354]: Ancestors: {SOMA.Retrospecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712607559.880608]: Subclasses: []\n", - "[INFO] [1712607559.880903]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.881390]: Instances: []\n", - "[INFO] [1712607559.881668]: Direct Instances: []\n", - "[INFO] [1712607559.881969]: Inverse Restrictions: []\n", - "[INFO] [1712607559.882222]: -------------------\n", - "[INFO] [1712607559.882466]: SOMA.RemovedObject \n", - "[INFO] [1712607559.882700]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712607559.882968]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.ExcludedObject, owl.Thing, SOMA.RemovedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607559.883234]: Subclasses: []\n", - "[INFO] [1712607559.883533]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.884031]: Instances: []\n", - "[INFO] [1712607559.884307]: Direct Instances: []\n", - "[INFO] [1712607559.884571]: Inverse Restrictions: []\n", - "[INFO] [1712607559.884819]: -------------------\n", - "[INFO] [1712607559.885061]: SOMA.Replanning \n", - "[INFO] [1712607559.885299]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712607559.885574]: Ancestors: {SOMA.Deciding, SOMA.Planning, SOMA.Replanning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.885829]: Subclasses: []\n", - "[INFO] [1712607559.886118]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.886611]: Instances: []\n", - "[INFO] [1712607559.886887]: Direct Instances: []\n", - "[INFO] [1712607559.887149]: Inverse Restrictions: []\n", - "[INFO] [1712607559.887388]: -------------------\n", - "[INFO] [1712607559.887627]: SOMA.RevoluteJoint \n", - "[INFO] [1712607559.887864]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712607559.888131]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.RevoluteJoint, owl.Thing, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607559.888402]: Subclasses: []\n", - "[INFO] [1712607559.888709]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointLimit]\n", - "[INFO] [1712607559.889206]: Instances: []\n", - "[INFO] [1712607559.889462]: Direct Instances: []\n", - "[INFO] [1712607559.889716]: Inverse Restrictions: []\n", - "[INFO] [1712607559.889967]: -------------------\n", - "[INFO] [1712607559.890219]: SOMA.Surface \n", - "[INFO] [1712607559.890458]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712607559.890706]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607559.890951]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712607559.891252]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.891754]: Instances: []\n", - "[INFO] [1712607559.892011]: Direct Instances: []\n", - "[INFO] [1712607559.892260]: Inverse Restrictions: []\n", - "[INFO] [1712607559.892507]: -------------------\n", - "[INFO] [1712607559.892749]: SOMA.Rubbing \n", - "[INFO] [1712607559.892988]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712607559.893250]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, SOMA.Rubbing, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607559.893505]: Subclasses: []\n", - "[INFO] [1712607559.893801]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.894293]: Instances: []\n", - "[INFO] [1712607559.894583]: Direct Instances: []\n", - "[INFO] [1712607559.894832]: Inverse Restrictions: []\n", - "[INFO] [1712607559.895070]: -------------------\n", - "[INFO] [1712607559.895319]: SOMA.SaladBowl \n", - "[INFO] [1712607559.895559]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712607559.895854]: Ancestors: {DUL.Object, SOMA.SaladBowl, SOMA.DesignedTool, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Bowl, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607559.896127]: Subclasses: []\n", - "[INFO] [1712607559.896421]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.896904]: Instances: []\n", - "[INFO] [1712607559.897158]: Direct Instances: []\n", - "[INFO] [1712607559.897403]: Inverse Restrictions: []\n", - "[INFO] [1712607559.897650]: -------------------\n", - "[INFO] [1712607559.897892]: SOMA.SaltShaker \n", - "[INFO] [1712607559.898136]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712607559.898407]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Shaker, SOMA.SaltShaker}\n", - "[INFO] [1712607559.898655]: Subclasses: []\n", - "[INFO] [1712607559.898948]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.899447]: Instances: []\n", - "[INFO] [1712607559.899706]: Direct Instances: []\n", - "[INFO] [1712607559.899954]: Inverse Restrictions: []\n", - "[INFO] [1712607559.900192]: -------------------\n", - "[INFO] [1712607559.900440]: SOMA.Scene \n", - "[INFO] [1712607559.900686]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712607559.900945]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Scene}\n", - "[INFO] [1712607559.901190]: Subclasses: []\n", - "[INFO] [1712607559.901477]: Properties: [DUL.satisfies, DUL.includesEvent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712607559.901978]: Instances: []\n", - "[INFO] [1712607559.902244]: Direct Instances: []\n", - "[INFO] [1712607559.902553]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712607559.902811]: -------------------\n", - "[INFO] [1712607559.903060]: SOMA.SelectedObject \n", - "[INFO] [1712607559.903304]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712607559.903572]: Ancestors: {DUL.Object, DUL.Role, owl.Thing, SOMA.SelectedObject, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.903820]: Subclasses: []\n", - "[INFO] [1712607559.904117]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.904604]: Instances: []\n", - "[INFO] [1712607559.904859]: Direct Instances: []\n", - "[INFO] [1712607559.905164]: Inverse Restrictions: []\n", - "[INFO] [1712607559.905420]: -------------------\n", - "[INFO] [1712607559.905670]: SOMA.Selecting \n", - "[INFO] [1712607559.905915]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712607559.906182]: Ancestors: {SOMA.Deciding, SOMA.Selecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.906448]: Subclasses: []\n", - "[INFO] [1712607559.906750]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.907237]: Instances: []\n", - "[INFO] [1712607559.907500]: Direct Instances: []\n", - "[INFO] [1712607559.907751]: Inverse Restrictions: []\n", - "[INFO] [1712607559.908005]: -------------------\n", - "[INFO] [1712607559.908249]: SOMA.SelectingItem \n", - "[INFO] [1712607559.908905]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712607559.909204]: Ancestors: {SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.909470]: Subclasses: []\n", - "[INFO] [1712607559.909768]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712607559.910264]: Instances: []\n", - "[INFO] [1712607559.910546]: Direct Instances: []\n", - "[INFO] [1712607559.910810]: Inverse Restrictions: []\n", - "[INFO] [1712607559.911053]: -------------------\n", - "[INFO] [1712607559.911299]: SOMA.SelfReflection \n", - "[INFO] [1712607559.911540]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712607559.911813]: Ancestors: {DUL.Object, SOMA.SelfReflection, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.MetacognitiveControlling, DUL.EventType}\n", - "[INFO] [1712607559.912082]: Subclasses: []\n", - "[INFO] [1712607559.912385]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.912916]: Instances: []\n", - "[INFO] [1712607559.913190]: Direct Instances: []\n", - "[INFO] [1712607559.913460]: Inverse Restrictions: []\n", - "[INFO] [1712607559.913706]: -------------------\n", - "[INFO] [1712607559.913944]: SOMA.Serving \n", - "[INFO] [1712607559.915311]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712607559.915632]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.Delivering, DUL.Task, SOMA.Serving, DUL.EventType}\n", - "[INFO] [1712607559.915900]: Subclasses: []\n", - "[INFO] [1712607559.916203]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.916701]: Instances: []\n", - "[INFO] [1712607559.916977]: Direct Instances: []\n", - "[INFO] [1712607559.917237]: Inverse Restrictions: []\n", - "[INFO] [1712607559.917481]: -------------------\n", - "[INFO] [1712607559.917724]: SOMA.SettingGripper \n", - "[INFO] [1712607559.917967]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712607559.918246]: Ancestors: {DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.SettingGripper, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.918510]: Subclasses: []\n", - "[INFO] [1712607559.918807]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.919301]: Instances: []\n", - "[INFO] [1712607559.919562]: Direct Instances: []\n", - "[INFO] [1712607559.919830]: Inverse Restrictions: []\n", - "[INFO] [1712607559.920072]: -------------------\n", - "[INFO] [1712607559.920310]: SOMA.6DPose \n", - "[INFO] [1712607559.920570]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712607559.920848]: Ancestors: {DUL.Abstract, owl.Thing, DUL.SpaceRegion, SOMA.6DPose, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607559.921108]: Subclasses: []\n", - "[INFO] [1712607559.921406]: Properties: [rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.921895]: Instances: []\n", - "[INFO] [1712607559.922178]: Direct Instances: []\n", - "[INFO] [1712607559.922479]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712607559.922726]: -------------------\n", - "[INFO] [1712607559.922965]: SOMA.Sharpness \n", - "[INFO] [1712607559.923201]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607559.923470]: Ancestors: {SOMA.PhysicalQuality, SOMA.Sharpness, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607559.923728]: Subclasses: []\n", - "[INFO] [1712607559.924022]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.924507]: Instances: []\n", - "[INFO] [1712607559.924783]: Direct Instances: []\n", - "[INFO] [1712607559.925042]: Inverse Restrictions: []\n", - "[INFO] [1712607559.925287]: -------------------\n", - "[INFO] [1712607559.925524]: SOMA.Simulating \n", - "[INFO] [1712607559.925762]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712607559.926021]: Ancestors: {SOMA.Simulating, owl.Thing, SOMA.Prospecting, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607559.926289]: Subclasses: []\n", - "[INFO] [1712607559.926593]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.927086]: Instances: []\n", - "[INFO] [1712607559.927347]: Direct Instances: []\n", - "[INFO] [1712607559.927611]: Inverse Restrictions: []\n", - "[INFO] [1712607559.927900]: -------------------\n", - "[INFO] [1712607559.928146]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712607559.928384]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712607559.928648]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Simulation_Reasoner, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.928907]: Subclasses: []\n", - "[INFO] [1712607559.929218]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.929709]: Instances: []\n", - "[INFO] [1712607559.929986]: Direct Instances: []\n", - "[INFO] [1712607559.930249]: Inverse Restrictions: []\n", - "[INFO] [1712607559.930494]: -------------------\n", - "[INFO] [1712607559.930737]: SOMA.Sink \n", - "[INFO] [1712607559.930978]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607559.931257]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Sink}\n", - "[INFO] [1712607559.931515]: Subclasses: []\n", - "[INFO] [1712607559.931803]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.932303]: Instances: []\n", - "[INFO] [1712607559.932569]: Direct Instances: []\n", - "[INFO] [1712607559.932819]: Inverse Restrictions: []\n", - "[INFO] [1712607559.933060]: -------------------\n", - "[INFO] [1712607559.933299]: SOMA.Size \n", - "[INFO] [1712607559.933541]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607559.933811]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Size, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607559.934059]: Subclasses: []\n", - "[INFO] [1712607559.934350]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.934842]: Instances: []\n", - "[INFO] [1712607559.935119]: Direct Instances: []\n", - "[INFO] [1712607559.935381]: Inverse Restrictions: []\n", - "[INFO] [1712607559.935634]: -------------------\n", - "[INFO] [1712607559.935877]: SOMA.Slicing \n", - "[INFO] [1712607559.936113]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712607559.936384]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, SOMA.Slicing, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607559.936647]: Subclasses: []\n", - "[INFO] [1712607559.936944]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.937438]: Instances: []\n", - "[INFO] [1712607559.937694]: Direct Instances: []\n", - "[INFO] [1712607559.937942]: Inverse Restrictions: []\n", - "[INFO] [1712607559.938182]: -------------------\n", - "[INFO] [1712607559.938434]: SOMA.Sluggishness \n", - "[INFO] [1712607559.938686]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712607559.938957]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Sluggishness, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.939203]: Subclasses: []\n", - "[INFO] [1712607559.939484]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.939990]: Instances: []\n", - "[INFO] [1712607559.940256]: Direct Instances: []\n", - "[INFO] [1712607559.940508]: Inverse Restrictions: []\n", - "[INFO] [1712607559.940742]: -------------------\n", - "[INFO] [1712607559.940988]: SOMA.SocialState \n", - "[INFO] [1712607559.941254]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712607559.941524]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.SocialState}\n", - "[INFO] [1712607559.941767]: Subclasses: []\n", - "[INFO] [1712607559.942060]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607559.942577]: Instances: []\n", - "[INFO] [1712607559.942850]: Direct Instances: []\n", - "[INFO] [1712607559.943104]: Inverse Restrictions: []\n", - "[INFO] [1712607559.943347]: -------------------\n", - "[INFO] [1712607559.943590]: SOMA.Sofa \n", - "[INFO] [1712607559.943841]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712607559.944117]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Sofa}\n", - "[INFO] [1712607559.944370]: Subclasses: []\n", - "[INFO] [1712607559.944664]: Properties: [rdf-schema.comment, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.945147]: Instances: []\n", - "[INFO] [1712607559.945420]: Direct Instances: []\n", - "[INFO] [1712607559.945679]: Inverse Restrictions: []\n", - "[INFO] [1712607559.945921]: -------------------\n", - "[INFO] [1712607559.946167]: SOMA.Software_Configuration \n", - "[INFO] [1712607559.946426]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712607559.946712]: Ancestors: {DUL.Object, DUL.Collection, DUL.Configuration, owl.Thing, SOMA.Software_Configuration, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.946966]: Subclasses: []\n", - "[INFO] [1712607559.947259]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", - "[INFO] [1712607559.947748]: Instances: []\n", - "[INFO] [1712607559.948021]: Direct Instances: []\n", - "[INFO] [1712607559.948374]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712607559.948620]: -------------------\n", - "[INFO] [1712607559.948859]: SOMA.SoftwareLibrary \n", - "[INFO] [1712607559.949099]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712607559.949371]: Ancestors: {DUL.Object, DUL.Description, SOMA.SoftwareLibrary, owl.Thing, DUL.Entity, DUL.Design, SOMA.Software, DUL.SocialObject}\n", - "[INFO] [1712607559.949631]: Subclasses: []\n", - "[INFO] [1712607559.949922]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.950407]: Instances: []\n", - "[INFO] [1712607559.950664]: Direct Instances: []\n", - "[INFO] [1712607559.950929]: Inverse Restrictions: []\n", - "[INFO] [1712607559.951174]: -------------------\n", - "[INFO] [1712607559.951411]: SOMA.SoupPot \n", - "[INFO] [1712607559.951642]: Super classes: [SOMA.Pot]\n", - "[INFO] [1712607559.951911]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.SoupPot, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Pot, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607559.952178]: Subclasses: []\n", - "[INFO] [1712607559.952470]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.952960]: Instances: []\n", - "[INFO] [1712607559.953217]: Direct Instances: []\n", - "[INFO] [1712607559.953475]: Inverse Restrictions: []\n", - "[INFO] [1712607559.953728]: -------------------\n", - "[INFO] [1712607559.953967]: SOMA.SourceMaterialRole \n", - "[INFO] [1712607559.954211]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712607559.954485]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.SourceMaterialRole, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.954747]: Subclasses: []\n", - "[INFO] [1712607559.955277]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.955792]: Instances: []\n", - "[INFO] [1712607559.956066]: Direct Instances: []\n", - "[INFO] [1712607559.956327]: Inverse Restrictions: []\n", - "[INFO] [1712607559.956569]: -------------------\n", - "[INFO] [1712607559.956815]: SOMA.Spatula \n", - "[INFO] [1712607559.957060]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", - "[INFO] [1712607559.957327]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Spatula, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware}\n", - "[INFO] [1712607559.957593]: Subclasses: []\n", - "[INFO] [1712607559.957893]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.958388]: Instances: []\n", - "[INFO] [1712607559.958651]: Direct Instances: []\n", - "[INFO] [1712607559.958890]: Inverse Restrictions: []\n", - "[INFO] [1712607559.959126]: -------------------\n", - "[INFO] [1712607559.959368]: SOMA.SphereShape \n", - "[INFO] [1712607559.959629]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712607559.959887]: Ancestors: {SOMA.SphereShape, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607559.960131]: Subclasses: []\n", - "[INFO] [1712607559.960421]: Properties: [rdf-schema.comment, SOMA.hasRadius, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.960922]: Instances: []\n", - "[INFO] [1712607559.961235]: Direct Instances: []\n", - "[INFO] [1712607559.961494]: Inverse Restrictions: []\n", - "[INFO] [1712607559.961736]: -------------------\n", - "[INFO] [1712607559.961972]: SOMA.Spoon \n", - "[INFO] [1712607559.962648]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712607559.962963]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Spoon}\n", - "[INFO] [1712607559.963243]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", - "[INFO] [1712607559.963547]: Properties: [SOMA.hasPhysicalComponent, SOMA.hasDisposition, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712607559.964045]: Instances: []\n", - "[INFO] [1712607559.964313]: Direct Instances: []\n", - "[INFO] [1712607559.964574]: Inverse Restrictions: []\n", - "[INFO] [1712607559.964817]: -------------------\n", - "[INFO] [1712607559.965056]: SOMA.Standing \n", - "[INFO] [1712607559.965294]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712607559.965568]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Standing, SOMA.Motion}\n", - "[INFO] [1712607559.965836]: Subclasses: []\n", - "[INFO] [1712607559.966139]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.966633]: Instances: []\n", - "[INFO] [1712607559.966898]: Direct Instances: []\n", - "[INFO] [1712607559.967152]: Inverse Restrictions: []\n", - "[INFO] [1712607559.967402]: -------------------\n", - "[INFO] [1712607559.967649]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712607559.967887]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712607559.968152]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, SOMA.StaticFrictionAttribute, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607559.968412]: Subclasses: []\n", - "[INFO] [1712607559.968704]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.969196]: Instances: []\n", - "[INFO] [1712607559.969449]: Direct Instances: []\n", - "[INFO] [1712607559.969691]: Inverse Restrictions: []\n", - "[INFO] [1712607559.969940]: -------------------\n", - "[INFO] [1712607559.970188]: SOMA.Status \n", - "[INFO] [1712607559.970427]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712607559.970688]: Ancestors: {DUL.Object, DUL.Parameter, SOMA.Status, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607559.970932]: Subclasses: []\n", - "[INFO] [1712607559.971216]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.971721]: Instances: []\n", - "[INFO] [1712607559.971988]: Direct Instances: []\n", - "[INFO] [1712607559.972264]: Inverse Restrictions: []\n", - "[INFO] [1712607559.972507]: -------------------\n", - "[INFO] [1712607559.972745]: SOMA.StatusFailure \n", - "[INFO] [1712607559.972998]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607559.973270]: Ancestors: {DUL.Abstract, SOMA.StatusFailure, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607559.973519]: Subclasses: []\n", - "[INFO] [1712607559.973803]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.974387]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712607559.974692]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712607559.974963]: Inverse Restrictions: []\n", - "[INFO] [1712607559.975214]: -------------------\n", - "[INFO] [1712607559.975461]: SOMA.StimulusRole \n", - "[INFO] [1712607559.975720]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712607559.976002]: Ancestors: {DUL.Object, SOMA.StimulusRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607559.976259]: Subclasses: []\n", - "[INFO] [1712607559.976554]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.977047]: Instances: []\n", - "[INFO] [1712607559.977320]: Direct Instances: []\n", - "[INFO] [1712607559.977592]: Inverse Restrictions: []\n", - "[INFO] [1712607559.977884]: -------------------\n", - "[INFO] [1712607559.978122]: SOMA.Stirring \n", - "[INFO] [1712607559.978373]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712607559.978648]: Ancestors: {DUL.Object, DUL.Entity, DUL.EventType, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Stirring, SOMA.Mixing}\n", - "[INFO] [1712607559.978906]: Subclasses: []\n", - "[INFO] [1712607559.979216]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607559.979696]: Instances: []\n", - "[INFO] [1712607559.979983]: Direct Instances: []\n", - "[INFO] [1712607559.980247]: Inverse Restrictions: []\n", - "[INFO] [1712607559.980494]: -------------------\n", - "[INFO] [1712607559.980731]: SOMA.Storage \n", - "[INFO] [1712607559.980970]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712607559.981246]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.Storage, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", - "[INFO] [1712607559.981499]: Subclasses: []\n", - "[INFO] [1712607559.981792]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.982291]: Instances: []\n", - "[INFO] [1712607559.982569]: Direct Instances: []\n", - "[INFO] [1712607559.982830]: Inverse Restrictions: []\n", - "[INFO] [1712607559.983074]: -------------------\n", - "[INFO] [1712607559.983312]: SOMA.Stove \n", - "[INFO] [1712607559.983551]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", - "[INFO] [1712607559.983843]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Stove}\n", - "[INFO] [1712607559.984104]: Subclasses: []\n", - "[INFO] [1712607559.984402]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.984886]: Instances: []\n", - "[INFO] [1712607559.985145]: Direct Instances: []\n", - "[INFO] [1712607559.985391]: Inverse Restrictions: []\n", - "[INFO] [1712607559.985641]: -------------------\n", - "[INFO] [1712607559.985884]: SOMA.StructuralDesign \n", - "[INFO] [1712607559.986119]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712607559.986392]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, SOMA.StructuralDesign, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607559.986655]: Subclasses: []\n", - "[INFO] [1712607559.986952]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.987449]: Instances: []\n", - "[INFO] [1712607559.987708]: Direct Instances: []\n", - "[INFO] [1712607559.987952]: Inverse Restrictions: []\n", - "[INFO] [1712607559.988201]: -------------------\n", - "[INFO] [1712607559.988446]: SOMA.TaskInvocation \n", - "[INFO] [1712607559.988708]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712607559.988986]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.TaskInvocation, DUL.Workflow, DUL.Entity, DUL.Plan, DUL.SocialObject}\n", - "[INFO] [1712607559.989233]: Subclasses: []\n", - "[INFO] [1712607559.989535]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesTask]\n", - "[INFO] [1712607559.990043]: Instances: []\n", - "[INFO] [1712607559.990316]: Direct Instances: []\n", - "[INFO] [1712607559.990635]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712607559.990884]: -------------------\n", - "[INFO] [1712607559.991128]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712607559.991378]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712607559.991630]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.991883]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712607559.992172]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.992672]: Instances: []\n", - "[INFO] [1712607559.992947]: Direct Instances: []\n", - "[INFO] [1712607559.993206]: Inverse Restrictions: []\n", - "[INFO] [1712607559.993454]: -------------------\n", - "[INFO] [1712607559.993689]: SOMA.Successfulness \n", - "[INFO] [1712607559.993928]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712607559.994194]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, SOMA.Successfulness, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607559.994479]: Subclasses: []\n", - "[INFO] [1712607559.994790]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.995283]: Instances: []\n", - "[INFO] [1712607559.995538]: Direct Instances: []\n", - "[INFO] [1712607559.995790]: Inverse Restrictions: []\n", - "[INFO] [1712607559.996032]: -------------------\n", - "[INFO] [1712607559.996274]: SOMA.SugarDispenser \n", - "[INFO] [1712607559.996505]: Super classes: [SOMA.Dispenser]\n", - "[INFO] [1712607559.996767]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Dispenser, SOMA.SugarDispenser, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607559.997004]: Subclasses: []\n", - "[INFO] [1712607559.997295]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607559.997856]: Instances: []\n", - "[INFO] [1712607559.998118]: Direct Instances: []\n", - "[INFO] [1712607559.998373]: Inverse Restrictions: []\n", - "[INFO] [1712607559.998612]: -------------------\n", - "[INFO] [1712607559.998858]: SOMA.SupportState \n", - "[INFO] [1712607559.999861]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712607560.000148]: Ancestors: {DUL.Object, SOMA.SupportState, DUL.Entity, SOMA.StateType, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607560.000419]: Subclasses: []\n", - "[INFO] [1712607560.000726]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.001221]: Instances: []\n", - "[INFO] [1712607560.001495]: Direct Instances: []\n", - "[INFO] [1712607560.001751]: Inverse Restrictions: []\n", - "[INFO] [1712607560.001994]: -------------------\n", - "[INFO] [1712607560.002234]: SOMA.Supporter \n", - "[INFO] [1712607560.002471]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712607560.002738]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, SOMA.Supporter, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607560.003006]: Subclasses: []\n", - "[INFO] [1712607560.003311]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.003803]: Instances: []\n", - "[INFO] [1712607560.004065]: Direct Instances: []\n", - "[INFO] [1712607560.004363]: Inverse Restrictions: []\n", - "[INFO] [1712607560.004612]: -------------------\n", - "[INFO] [1712607560.004847]: SOMA.SupportTheory \n", - "[INFO] [1712607560.005077]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712607560.005345]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.SocialObject, SOMA.SupportTheory}\n", - "[INFO] [1712607560.005586]: Subclasses: []\n", - "[INFO] [1712607560.005885]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.006375]: Instances: []\n", - "[INFO] [1712607560.006629]: Direct Instances: []\n", - "[INFO] [1712607560.006893]: Inverse Restrictions: []\n", - "[INFO] [1712607560.007127]: -------------------\n", - "[INFO] [1712607560.007370]: SOMA.SupportedObject \n", - "[INFO] [1712607560.007608]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712607560.007877]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.SupportedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.008120]: Subclasses: []\n", - "[INFO] [1712607560.008403]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.008906]: Instances: []\n", - "[INFO] [1712607560.009166]: Direct Instances: []\n", - "[INFO] [1712607560.009424]: Inverse Restrictions: []\n", - "[INFO] [1712607560.009667]: -------------------\n", - "[INFO] [1712607560.009902]: SOMA.SymbolicReasoner \n", - "[INFO] [1712607560.010134]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712607560.010400]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, SOMA.SymbolicReasoner, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.010640]: Subclasses: []\n", - "[INFO] [1712607560.010931]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.011462]: Instances: []\n", - "[INFO] [1712607560.011723]: Direct Instances: []\n", - "[INFO] [1712607560.011969]: Inverse Restrictions: []\n", - "[INFO] [1712607560.012212]: -------------------\n", - "[INFO] [1712607560.012449]: SOMA.TableFork \n", - "[INFO] [1712607560.012688]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712607560.012963]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.TableFork, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Fork}\n", - "[INFO] [1712607560.013201]: Subclasses: []\n", - "[INFO] [1712607560.013481]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.013972]: Instances: []\n", - "[INFO] [1712607560.014234]: Direct Instances: []\n", - "[INFO] [1712607560.014480]: Inverse Restrictions: []\n", - "[INFO] [1712607560.014710]: -------------------\n", - "[INFO] [1712607560.014934]: SOMA.TableKnife \n", - "[INFO] [1712607560.015157]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712607560.015434]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.TableKnife, SOMA.CuttingTool, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607560.015677]: Subclasses: []\n", - "[INFO] [1712607560.015962]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.016442]: Instances: []\n", - "[INFO] [1712607560.016697]: Direct Instances: []\n", - "[INFO] [1712607560.016954]: Inverse Restrictions: []\n", - "[INFO] [1712607560.017189]: -------------------\n", - "[INFO] [1712607560.017416]: SOMA.TableSpoon \n", - "[INFO] [1712607560.017641]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712607560.017903]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.TableSpoon, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Spoon}\n", - "[INFO] [1712607560.018178]: Subclasses: []\n", - "[INFO] [1712607560.018487]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.018979]: Instances: []\n", - "[INFO] [1712607560.019235]: Direct Instances: []\n", - "[INFO] [1712607560.019484]: Inverse Restrictions: []\n", - "[INFO] [1712607560.019732]: -------------------\n", - "[INFO] [1712607560.019968]: SOMA.TeaSpoon \n", - "[INFO] [1712607560.020196]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712607560.020465]: Ancestors: {DUL.Object, SOMA.TeaSpoon, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Cutlery, DUL.Entity, SOMA.Tableware, SOMA.Spoon}\n", - "[INFO] [1712607560.020715]: Subclasses: []\n", - "[INFO] [1712607560.021007]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.021488]: Instances: []\n", - "[INFO] [1712607560.021739]: Direct Instances: []\n", - "[INFO] [1712607560.022005]: Inverse Restrictions: []\n", - "[INFO] [1712607560.022250]: -------------------\n", - "[INFO] [1712607560.022482]: SOMA.Tap \n", - "[INFO] [1712607560.022707]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712607560.022972]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Tap}\n", - "[INFO] [1712607560.023227]: Subclasses: []\n", - "[INFO] [1712607560.023517]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.024001]: Instances: []\n", - "[INFO] [1712607560.024258]: Direct Instances: []\n", - "[INFO] [1712607560.024499]: Inverse Restrictions: []\n", - "[INFO] [1712607560.024743]: -------------------\n", - "[INFO] [1712607560.024975]: SOMA.Tapping \n", - "[INFO] [1712607560.025203]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712607560.025467]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.Tapping, SOMA.Motion}\n", - "[INFO] [1712607560.025710]: Subclasses: []\n", - "[INFO] [1712607560.026001]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.026485]: Instances: []\n", - "[INFO] [1712607560.026750]: Direct Instances: []\n", - "[INFO] [1712607560.027007]: Inverse Restrictions: []\n", - "[INFO] [1712607560.027243]: -------------------\n", - "[INFO] [1712607560.027472]: SOMA.Taxis \n", - "[INFO] [1712607560.027697]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712607560.027968]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Taxis, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", - "[INFO] [1712607560.028218]: Subclasses: []\n", - "[INFO] [1712607560.028512]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.028994]: Instances: []\n", - "[INFO] [1712607560.029270]: Direct Instances: []\n", - "[INFO] [1712607560.029519]: Inverse Restrictions: []\n", - "[INFO] [1712607560.029750]: -------------------\n", - "[INFO] [1712607560.029977]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712607560.030229]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712607560.030469]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.030727]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712607560.031021]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.031507]: Instances: []\n", - "[INFO] [1712607560.031784]: Direct Instances: []\n", - "[INFO] [1712607560.032047]: Inverse Restrictions: []\n", - "[INFO] [1712607560.032279]: -------------------\n", - "[INFO] [1712607560.032670]: SOMA.Temperature \n", - "[INFO] [1712607560.033019]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712607560.033296]: Ancestors: {SOMA.Temperature, owl.Thing, SOMA.Intrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.033564]: Subclasses: []\n", - "[INFO] [1712607560.033869]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.034359]: Instances: []\n", - "[INFO] [1712607560.034781]: Direct Instances: []\n", - "[INFO] [1712607560.035587]: Inverse Restrictions: []\n", - "[INFO] [1712607560.035968]: -------------------\n", - "[INFO] [1712607560.036352]: SOMA.TemperatureRegion \n", - "[INFO] [1712607560.036705]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607560.037112]: Ancestors: {DUL.Abstract, SOMA.TemperatureRegion, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.037491]: Subclasses: []\n", - "[INFO] [1712607560.037905]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.038419]: Instances: []\n", - "[INFO] [1712607560.038793]: Direct Instances: []\n", - "[INFO] [1712607560.039235]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712607560.039525]: -------------------\n", - "[INFO] [1712607560.039783]: SOMA.Tempering \n", - "[INFO] [1712607560.040052]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712607560.040307]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Tempering, DUL.Quality}\n", - "[INFO] [1712607560.040556]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712607560.040844]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.041351]: Instances: []\n", - "[INFO] [1712607560.041617]: Direct Instances: []\n", - "[INFO] [1712607560.041869]: Inverse Restrictions: []\n", - "[INFO] [1712607560.042102]: -------------------\n", - "[INFO] [1712607560.042348]: SOMA.TemperingByCooling \n", - "[INFO] [1712607560.042595]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712607560.042864]: Ancestors: {SOMA.TemperingByCooling, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Tempering, DUL.Quality}\n", - "[INFO] [1712607560.043110]: Subclasses: []\n", - "[INFO] [1712607560.043392]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.043882]: Instances: []\n", - "[INFO] [1712607560.044152]: Direct Instances: []\n", - "[INFO] [1712607560.044403]: Inverse Restrictions: []\n", - "[INFO] [1712607560.044644]: -------------------\n", - "[INFO] [1712607560.044872]: SOMA.ThinkAloud \n", - "[INFO] [1712607560.045100]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712607560.045370]: Ancestors: {DUL.Object, DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.ThinkAloud, DUL.EventType}\n", - "[INFO] [1712607560.045620]: Subclasses: []\n", - "[INFO] [1712607560.045909]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.046398]: Instances: []\n", - "[INFO] [1712607560.046652]: Direct Instances: []\n", - "[INFO] [1712607560.046911]: Inverse Restrictions: []\n", - "[INFO] [1712607560.047154]: -------------------\n", - "[INFO] [1712607560.047386]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712607560.047619]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607560.047881]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ThinkAloudActionTopic, DUL.SocialObject}\n", - "[INFO] [1712607560.048144]: Subclasses: []\n", - "[INFO] [1712607560.048438]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.048927]: Instances: []\n", - "[INFO] [1712607560.049180]: Direct Instances: []\n", - "[INFO] [1712607560.049425]: Inverse Restrictions: []\n", - "[INFO] [1712607560.049672]: -------------------\n", - "[INFO] [1712607560.049914]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712607560.050154]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712607560.050428]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, SOMA.ThinkAloudGeneralKnowledgeTopic, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.050670]: Subclasses: []\n", - "[INFO] [1712607560.050972]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.051464]: Instances: []\n", - "[INFO] [1712607560.051717]: Direct Instances: []\n", - "[INFO] [1712607560.051966]: Inverse Restrictions: []\n", - "[INFO] [1712607560.052210]: -------------------\n", - "[INFO] [1712607560.052450]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712607560.052683]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607560.052924]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.053175]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712607560.053476]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.053970]: Instances: []\n", - "[INFO] [1712607560.054227]: Direct Instances: []\n", - "[INFO] [1712607560.054490]: Inverse Restrictions: []\n", - "[INFO] [1712607560.054735]: -------------------\n", - "[INFO] [1712607560.054969]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712607560.055197]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607560.055461]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.055720]: Subclasses: []\n", - "[INFO] [1712607560.056013]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.056490]: Instances: []\n", - "[INFO] [1712607560.056742]: Direct Instances: []\n", - "[INFO] [1712607560.056985]: Inverse Restrictions: []\n", - "[INFO] [1712607560.057225]: -------------------\n", - "[INFO] [1712607560.057458]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712607560.057690]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607560.057957]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudOpinionTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.058223]: Subclasses: []\n", - "[INFO] [1712607560.058516]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.058990]: Instances: []\n", - "[INFO] [1712607560.059240]: Direct Instances: []\n", - "[INFO] [1712607560.059489]: Inverse Restrictions: []\n", - "[INFO] [1712607560.059727]: -------------------\n", - "[INFO] [1712607560.059959]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712607560.060187]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607560.060455]: Ancestors: {SOMA.ThinkAloudPerceptionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.060707]: Subclasses: []\n", - "[INFO] [1712607560.060999]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.061484]: Instances: []\n", - "[INFO] [1712607560.061743]: Direct Instances: []\n", - "[INFO] [1712607560.061984]: Inverse Restrictions: []\n", - "[INFO] [1712607560.062236]: -------------------\n", - "[INFO] [1712607560.062476]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712607560.062707]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607560.062973]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ThinkAloudPlanTopic, DUL.SocialObject}\n", - "[INFO] [1712607560.063215]: Subclasses: []\n", - "[INFO] [1712607560.063514]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.063999]: Instances: []\n", - "[INFO] [1712607560.064256]: Direct Instances: []\n", - "[INFO] [1712607560.064509]: Inverse Restrictions: []\n", - "[INFO] [1712607560.064740]: -------------------\n", - "[INFO] [1712607560.064984]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712607560.065220]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712607560.065495]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.065742]: Subclasses: []\n", - "[INFO] [1712607560.066029]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.066660]: Instances: []\n", - "[INFO] [1712607560.067018]: Direct Instances: []\n", - "[INFO] [1712607560.067312]: Inverse Restrictions: []\n", - "[INFO] [1712607560.067570]: -------------------\n", - "[INFO] [1712607560.067820]: SOMA.Threshold \n", - "[INFO] [1712607560.068064]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712607560.068341]: Ancestors: {DUL.Object, DUL.Parameter, owl.Thing, SOMA.Threshold, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.068619]: Subclasses: []\n", - "[INFO] [1712607560.068924]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.069422]: Instances: []\n", - "[INFO] [1712607560.069681]: Direct Instances: []\n", - "[INFO] [1712607560.069927]: Inverse Restrictions: []\n", - "[INFO] [1712607560.070185]: -------------------\n", - "[INFO] [1712607560.070432]: SOMA.Throwing \n", - "[INFO] [1712607560.070670]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712607560.070947]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Throwing, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.071195]: Subclasses: []\n", - "[INFO] [1712607560.071498]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.071986]: Instances: []\n", - "[INFO] [1712607560.072242]: Direct Instances: []\n", - "[INFO] [1712607560.072488]: Inverse Restrictions: []\n", - "[INFO] [1712607560.072729]: -------------------\n", - "[INFO] [1712607560.072965]: SOMA.TimeRole \n", - "[INFO] [1712607560.073195]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712607560.073459]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.TimeRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.073690]: Subclasses: []\n", - "[INFO] [1712607560.073975]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.074476]: Instances: []\n", - "[INFO] [1712607560.074734]: Direct Instances: []\n", - "[INFO] [1712607560.074977]: Inverse Restrictions: []\n", - "[INFO] [1712607560.075211]: -------------------\n", - "[INFO] [1712607560.075440]: SOMA.Transporting \n", - "[INFO] [1712607560.075680]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712607560.075953]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Transporting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.076193]: Subclasses: []\n", - "[INFO] [1712607560.076478]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.076985]: Instances: []\n", - "[INFO] [1712607560.077256]: Direct Instances: []\n", - "[INFO] [1712607560.077510]: Inverse Restrictions: []\n", - "[INFO] [1712607560.077786]: -------------------\n", - "[INFO] [1712607560.078020]: SOMA.TrashContainer \n", - "[INFO] [1712607560.078268]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712607560.078545]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.TrashContainer}\n", - "[INFO] [1712607560.078786]: Subclasses: []\n", - "[INFO] [1712607560.079081]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.079567]: Instances: []\n", - "[INFO] [1712607560.079913]: Direct Instances: []\n", - "[INFO] [1712607560.080173]: Inverse Restrictions: []\n", - "[INFO] [1712607560.080409]: -------------------\n", - "[INFO] [1712607560.080641]: SOMA.Triplestore \n", - "[INFO] [1712607560.080869]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712607560.081138]: Ancestors: {SOMA.GraphDatabase, DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Triplestore, SOMA.Database, DUL.SocialObject}\n", - "[INFO] [1712607560.081391]: Subclasses: []\n", - "[INFO] [1712607560.081685]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.082174]: Instances: []\n", - "[INFO] [1712607560.082430]: Direct Instances: []\n", - "[INFO] [1712607560.082673]: Inverse Restrictions: []\n", - "[INFO] [1712607560.082919]: -------------------\n", - "[INFO] [1712607560.083152]: SOMA.Turning \n", - "[INFO] [1712607560.083387]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712607560.083659]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, SOMA.Turning, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607560.083914]: Subclasses: []\n", - "[INFO] [1712607560.084206]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.084685]: Instances: []\n", - "[INFO] [1712607560.084941]: Direct Instances: []\n", - "[INFO] [1712607560.085189]: Inverse Restrictions: []\n", - "[INFO] [1712607560.085429]: -------------------\n", - "[INFO] [1712607560.085663]: SOMA.UnavailableSoftware \n", - "[INFO] [1712607560.085890]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712607560.086159]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.UnavailableSoftware, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.086422]: Subclasses: []\n", - "[INFO] [1712607560.086719]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.087205]: Instances: []\n", - "[INFO] [1712607560.087458]: Direct Instances: []\n", - "[INFO] [1712607560.087695]: Inverse Restrictions: []\n", - "[INFO] [1712607560.087930]: -------------------\n", - "[INFO] [1712607560.088174]: SOMA.Unsuccessfulness \n", - "[INFO] [1712607560.088409]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712607560.088651]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.088917]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712607560.089211]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.089705]: Instances: []\n", - "[INFO] [1712607560.089980]: Direct Instances: []\n", - "[INFO] [1712607560.090249]: Inverse Restrictions: []\n", - "[INFO] [1712607560.090486]: -------------------\n", - "[INFO] [1712607560.090717]: SOMA.VideoData \n", - "[INFO] [1712607560.090946]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712607560.091209]: Ancestors: {DUL.Object, SOMA.VideoData, owl.Thing, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607560.091462]: Subclasses: []\n", - "[INFO] [1712607560.091756]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.092241]: Instances: []\n", - "[INFO] [1712607560.092492]: Direct Instances: []\n", - "[INFO] [1712607560.092726]: Inverse Restrictions: []\n", - "[INFO] [1712607560.092972]: -------------------\n", - "[INFO] [1712607560.093205]: SOMA.Wardrobe \n", - "[INFO] [1712607560.093431]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712607560.093694]: Ancestors: {DUL.Object, SOMA.DesignedFurniture, SOMA.Wardrobe, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.Cupboard}\n", - "[INFO] [1712607560.093926]: Subclasses: []\n", - "[INFO] [1712607560.094223]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.094731]: Instances: []\n", - "[INFO] [1712607560.094988]: Direct Instances: []\n", - "[INFO] [1712607560.095222]: Inverse Restrictions: []\n", - "[INFO] [1712607560.095453]: -------------------\n", - "[INFO] [1712607560.095688]: SOMA.WaterBottle \n", - "[INFO] [1712607560.095924]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712607560.096192]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity, SOMA.WaterBottle}\n", - "[INFO] [1712607560.096427]: Subclasses: []\n", - "[INFO] [1712607560.096706]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.097206]: Instances: []\n", - "[INFO] [1712607560.097465]: Direct Instances: []\n", - "[INFO] [1712607560.097708]: Inverse Restrictions: []\n", - "[INFO] [1712607560.097939]: -------------------\n", - "[INFO] [1712607560.098184]: SOMA.WaterGlass \n", - "[INFO] [1712607560.098418]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712607560.098690]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Glass, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.WaterGlass, SOMA.Tableware}\n", - "[INFO] [1712607560.098927]: Subclasses: []\n", - "[INFO] [1712607560.099207]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.099698]: Instances: []\n", - "[INFO] [1712607560.099962]: Direct Instances: []\n", - "[INFO] [1712607560.100206]: Inverse Restrictions: []\n", - "[INFO] [1712607560.100434]: -------------------\n", - "[INFO] [1712607560.100659]: SOMA.WineBottle \n", - "[INFO] [1712607560.100891]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712607560.101164]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.WineBottle, DUL.Entity}\n", - "[INFO] [1712607560.101400]: Subclasses: []\n", - "[INFO] [1712607560.101683]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.102162]: Instances: []\n", - "[INFO] [1712607560.102440]: Direct Instances: []\n", - "[INFO] [1712607560.102700]: Inverse Restrictions: []\n", - "[INFO] [1712607560.102942]: -------------------\n", - "[INFO] [1712607560.103173]: SOMA.WineGlass \n", - "[INFO] [1712607560.103401]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712607560.103679]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Glass, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.WineGlass, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607560.103926]: Subclasses: []\n", - "[INFO] [1712607560.104208]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.104676]: Instances: []\n", - "[INFO] [1712607560.104941]: Direct Instances: []\n", - "[INFO] [1712607560.105193]: Inverse Restrictions: []\n", - "[INFO] [1712607560.105428]: -------------------\n", - "[INFO] [1712607560.105663]: SOMA.3DPosition \n", - "[INFO] [1712607560.105927]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712607560.106204]: Ancestors: {DUL.Abstract, SOMA.3DPosition, owl.Thing, DUL.SpaceRegion, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.106467]: Subclasses: []\n", - "[INFO] [1712607560.106765]: Properties: [rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.107256]: Instances: []\n", - "[INFO] [1712607560.107531]: Direct Instances: []\n", - "[INFO] [1712607560.107782]: Inverse Restrictions: []\n", - "[INFO] [1712607560.108018]: -------------------\n", - "[INFO] [1712607560.108251]: SOMA.Affordance \n", - "[INFO] [1712607560.108506]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712607560.108757]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Relation, DUL.Entity, SOMA.Affordance, DUL.SocialObject}\n", - "[INFO] [1712607560.109005]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712607560.109300]: Properties: [SOMA.definesTrigger, DUL.definesTask, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.definesBearer]\n", - "[INFO] [1712607560.109803]: Instances: []\n", - "[INFO] [1712607560.110070]: Direct Instances: []\n", - "[INFO] [1712607560.110455]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712607560.110695]: -------------------\n", - "[INFO] [1712607560.110939]: SOMA.Disposition \n", - "[INFO] [1712607560.111206]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712607560.111452]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.111721]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712607560.112023]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", - "[INFO] [1712607560.112576]: Instances: []\n", - "[INFO] [1712607560.112851]: Direct Instances: []\n", - "[INFO] [1712607560.113175]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712607560.113427]: -------------------\n", - "[INFO] [1712607560.113664]: SOMA.Setpoint \n", - "[INFO] [1712607560.113891]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712607560.114130]: Ancestors: {DUL.Object, DUL.Parameter, SOMA.Setpoint, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.114399]: Subclasses: []\n", - "[INFO] [1712607560.114695]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.115187]: Instances: []\n", - "[INFO] [1712607560.115446]: Direct Instances: []\n", - "[INFO] [1712607560.115702]: Inverse Restrictions: []\n", - "[INFO] [1712607560.115946]: -------------------\n", - "[INFO] [1712607560.116182]: SOMA.Answer \n", - "[INFO] [1712607560.116412]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712607560.116655]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Answer, owl.Thing, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.116893]: Subclasses: []\n", - "[INFO] [1712607560.117177]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.117668]: Instances: []\n", - "[INFO] [1712607560.117928]: Direct Instances: []\n", - "[INFO] [1712607560.118226]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712607560.118470]: -------------------\n", - "[INFO] [1712607560.118703]: SOMA.Message \n", - "[INFO] [1712607560.118953]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712607560.119206]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.119460]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712607560.119764]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.120263]: Instances: []\n", - "[INFO] [1712607560.120533]: Direct Instances: []\n", - "[INFO] [1712607560.120856]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607560.121094]: -------------------\n", - "[INFO] [1712607560.121334]: SOMA.ProcessType \n", - "[INFO] [1712607560.121581]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712607560.121824]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.122087]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712607560.122385]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.122956]: Instances: []\n", - "[INFO] [1712607560.123220]: Direct Instances: []\n", - "[INFO] [1712607560.123547]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712607560.123794]: -------------------\n", - "[INFO] [1712607560.124038]: SOMA.OrderedElement \n", - "[INFO] [1712607560.124285]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712607560.124523]: Ancestors: {SOMA.Singleton, SOMA.OrderedElement, owl.Thing}\n", - "[INFO] [1712607560.124763]: Subclasses: []\n", - "[INFO] [1712607560.125064]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isOrderedBy]\n", - "[INFO] [1712607560.125558]: Instances: []\n", - "[INFO] [1712607560.125822]: Direct Instances: []\n", - "[INFO] [1712607560.126201]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712607560.126464]: -------------------\n", - "[INFO] [1712607560.126709]: SOMA.System \n", - "[INFO] [1712607560.126942]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712607560.127184]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.127437]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712607560.127758]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.128294]: Instances: []\n", - "[INFO] [1712607560.128558]: Direct Instances: []\n", - "[INFO] [1712607560.128818]: Inverse Restrictions: []\n", - "[INFO] [1712607560.129069]: -------------------\n", - "[INFO] [1712607560.129309]: SOMA.Binding \n", - "[INFO] [1712607560.129581]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712607560.129834]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.130095]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712607560.130399]: Properties: [Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, SOMA.hasBindingRole, rdf-schema.comment, SOMA.hasBindingFiller]\n", - "[INFO] [1712607560.130906]: Instances: []\n", - "[INFO] [1712607560.131183]: Direct Instances: []\n", - "[INFO] [1712607560.131447]: Inverse Restrictions: []\n", - "[INFO] [1712607560.131682]: -------------------\n", - "[INFO] [1712607560.131912]: SOMA.Joint \n", - "[INFO] [1712607560.132156]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712607560.132411]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.Entity, DUL.PhysicalBody, SOMA.Joint}\n", - "[INFO] [1712607560.132669]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712607560.132972]: Properties: [rdf-schema.comment, SOMA.hasParentLink, rdf-schema.isDefinedBy, SOMA.hasChildLink]\n", - "[INFO] [1712607560.133493]: Instances: []\n", - "[INFO] [1712607560.133767]: Direct Instances: []\n", - "[INFO] [1712607560.134032]: Inverse Restrictions: []\n", - "[INFO] [1712607560.134272]: -------------------\n", - "[INFO] [1712607560.134519]: SOMA.Color \n", - "[INFO] [1712607560.134760]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712607560.135001]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality}\n", - "[INFO] [1712607560.135242]: Subclasses: []\n", - "[INFO] [1712607560.135535]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.136031]: Instances: []\n", - "[INFO] [1712607560.136290]: Direct Instances: []\n", - "[INFO] [1712607560.136588]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712607560.136825]: -------------------\n", - "[INFO] [1712607560.137060]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712607560.137301]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607560.137542]: Ancestors: {DUL.Abstract, SOMA.ExecutionStateRegion, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.137780]: Subclasses: []\n", - "[INFO] [1712607560.138079]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.138610]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712607560.138900]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712607560.139173]: Inverse Restrictions: []\n", - "[INFO] [1712607560.139407]: -------------------\n", - "[INFO] [1712607560.139638]: SOMA.Feature \n", - "[INFO] [1712607560.139881]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712607560.140129]: Ancestors: {DUL.Object, owl.Thing, SOMA.Feature, DUL.Entity}\n", - "[INFO] [1712607560.140381]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712607560.140680]: Properties: [rdf-schema.comment, SOMA.isFeatureOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.141165]: Instances: []\n", - "[INFO] [1712607560.141437]: Direct Instances: []\n", - "[INFO] [1712607560.141744]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712607560.141985]: -------------------\n", - "[INFO] [1712607560.142223]: SOMA.FrictionAttribute \n", - "[INFO] [1712607560.142463]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712607560.142710]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.142975]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712607560.143270]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasFrictionValue, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.143754]: Instances: []\n", - "[INFO] [1712607560.144032]: Direct Instances: []\n", - "[INFO] [1712607560.144299]: Inverse Restrictions: []\n", - "[INFO] [1712607560.144561]: -------------------\n", - "[INFO] [1712607560.144793]: SOMA.SituationTransition \n", - "[INFO] [1712607560.145028]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712607560.145273]: Ancestors: {SOMA.SituationTransition, DUL.Transition, owl.Thing, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712607560.145517]: Subclasses: []\n", - "[INFO] [1712607560.145817]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.146306]: Instances: []\n", - "[INFO] [1712607560.146573]: Direct Instances: []\n", - "[INFO] [1712607560.148335]: Inverse Restrictions: []\n", - "[INFO] [1712607560.148612]: -------------------\n", - "[INFO] [1712607560.148860]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712607560.149097]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712607560.149334]: Ancestors: {owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation, DUL.Entity}\n", - "[INFO] [1712607560.149574]: Subclasses: []\n", - "[INFO] [1712607560.149882]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.150379]: Instances: []\n", - "[INFO] [1712607560.150643]: Direct Instances: []\n", - "[INFO] [1712607560.152035]: Inverse Restrictions: []\n", - "[INFO] [1712607560.152293]: -------------------\n", - "[INFO] [1712607560.152551]: SOMA.JointLimit \n", - "[INFO] [1712607560.152793]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712607560.153034]: Ancestors: {DUL.Abstract, SOMA.JointLimit, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.153274]: Subclasses: []\n", - "[INFO] [1712607560.153558]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.154064]: Instances: []\n", - "[INFO] [1712607560.154339]: Direct Instances: []\n", - "[INFO] [1712607560.154665]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712607560.154913]: -------------------\n", - "[INFO] [1712607560.155153]: SOMA.JointState \n", - "[INFO] [1712607560.155397]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712607560.155638]: Ancestors: {SOMA.JointState, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.155887]: Subclasses: []\n", - "[INFO] [1712607560.156572]: Properties: [SOMA.hasJointPosition, rdf-schema.isDefinedBy, SOMA.hasJointVelocity, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607560.157143]: Instances: []\n", - "[INFO] [1712607560.157429]: Direct Instances: []\n", - "[INFO] [1712607560.157768]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712607560.158018]: -------------------\n", - "[INFO] [1712607560.158268]: SOMA.Localization \n", - "[INFO] [1712607560.158511]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712607560.158755]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality}\n", - "[INFO] [1712607560.159017]: Subclasses: []\n", - "[INFO] [1712607560.159319]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.159810]: Instances: []\n", - "[INFO] [1712607560.160099]: Direct Instances: []\n", - "[INFO] [1712607560.161249]: Inverse Restrictions: []\n", - "[INFO] [1712607560.161513]: -------------------\n", - "[INFO] [1712607560.161752]: SOMA.MassAttribute \n", - "[INFO] [1712607560.161988]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712607560.162241]: Ancestors: {DUL.Abstract, DUL.PhysicalAttribute, SOMA.MassAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.162506]: Subclasses: []\n", - "[INFO] [1712607560.162812]: Properties: [rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.163303]: Instances: []\n", - "[INFO] [1712607560.163589]: Direct Instances: []\n", - "[INFO] [1712607560.163859]: Inverse Restrictions: []\n", - "[INFO] [1712607560.164094]: -------------------\n", - "[INFO] [1712607560.164347]: SOMA.NetForce \n", - "[INFO] [1712607560.164587]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712607560.164829]: Ancestors: {DUL.Abstract, SOMA.NetForce, DUL.PhysicalAttribute, owl.Thing, SOMA.ForceAttribute, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.165093]: Subclasses: []\n", - "[INFO] [1712607560.165392]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.165888]: Instances: []\n", - "[INFO] [1712607560.166166]: Direct Instances: []\n", - "[INFO] [1712607560.166434]: Inverse Restrictions: []\n", - "[INFO] [1712607560.166669]: -------------------\n", - "[INFO] [1712607560.166900]: SOMA.Succedence \n", - "[INFO] [1712607560.167141]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712607560.167397]: Ancestors: {DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.167657]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712607560.167956]: Properties: [rdf-schema.isDefinedBy, SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence), rdf-schema.comment, SOMA.hasPredecessor]\n", - "[INFO] [1712607560.168447]: Instances: []\n", - "[INFO] [1712607560.168725]: Direct Instances: []\n", - "[INFO] [1712607560.168990]: Inverse Restrictions: []\n", - "[INFO] [1712607560.169228]: -------------------\n", - "[INFO] [1712607560.169460]: SOMA.Preference \n", - "[INFO] [1712607560.169693]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712607560.169938]: Ancestors: {SOMA.SocialQuality, SOMA.Preference, owl.Thing, DUL.Entity, DUL.Quality}\n", - "[INFO] [1712607560.170192]: Subclasses: []\n", - "[INFO] [1712607560.170489]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.170983]: Instances: []\n", - "[INFO] [1712607560.171262]: Direct Instances: []\n", - "[INFO] [1712607560.171638]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712607560.171880]: -------------------\n", - "[INFO] [1712607560.172114]: SOMA.Shape \n", - "[INFO] [1712607560.172350]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712607560.172590]: Ancestors: {owl.Thing, SOMA.Intrinsic, SOMA.Shape, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.172857]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", - "[INFO] [1712607560.173156]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.173666]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712607560.173920]: Direct Instances: []\n", - "[INFO] [1712607560.175062]: Inverse Restrictions: []\n", - "[INFO] [1712607560.175323]: -------------------\n", - "[INFO] [1712607560.175567]: SOMA.ShapeRegion \n", - "[INFO] [1712607560.175804]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712607560.176045]: Ancestors: {DUL.Abstract, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607560.176318]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712607560.176620]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.177115]: Instances: []\n", - "[INFO] [1712607560.177364]: Direct Instances: []\n", - "[INFO] [1712607560.178109]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712607560.178388]: -------------------\n", - "[INFO] [1712607560.178631]: SOMA.SoftwareInstance \n", - "[INFO] [1712607560.178913]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712607560.179160]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", - "[INFO] [1712607560.179401]: Subclasses: []\n", - "[INFO] [1712607560.179704]: Properties: [SOMA.isDesignedBy, rdf-schema.isDefinedBy, DUL.actsFor, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607560.180196]: Instances: []\n", - "[INFO] [1712607560.180464]: Direct Instances: []\n", - "[INFO] [1712607560.180782]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712607560.181018]: -------------------\n", - "[INFO] [1712607560.181251]: SOMA.StateType \n", - "[INFO] [1712607560.181504]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712607560.181752]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.182016]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712607560.182317]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.182828]: Instances: []\n", - "[INFO] [1712607560.183098]: Direct Instances: []\n", - "[INFO] [1712607560.183423]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712607560.183659]: -------------------\n", - "[INFO] [1712607560.183888]: SOMA.PhysicalEffector \n", - "[INFO] [1712607560.184122]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712607560.184375]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607560.184654]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712607560.184958]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, Inverse(DUL.hasPart)]\n", - "[INFO] [1712607560.185457]: Instances: []\n", - "[INFO] [1712607560.185735]: Direct Instances: []\n", - "[INFO] [1712607560.186004]: Inverse Restrictions: []\n", - "[INFO] [1712607560.186253]: -------------------\n", - "[INFO] [1712607560.186489]: SOMA.QueryingTask \n", - "[INFO] [1712607560.186729]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712607560.186981]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing, SOMA.QueryingTask}\n", - "[INFO] [1712607560.187228]: Subclasses: []\n", - "[INFO] [1712607560.187523]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.188013]: Instances: []\n", - "[INFO] [1712607560.188290]: Direct Instances: []\n", - "[INFO] [1712607560.188626]: Inverse Restrictions: []\n", - "[INFO] [1712607560.188865]: -------------------\n", - "[INFO] [1712607560.189098]: SOMA.Order \n", - "[INFO] [1712607560.189331]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712607560.189582]: Ancestors: {DUL.Abstract, owl.Thing, SOMA.Order, DUL.FormalEntity, DUL.Entity}\n", - "[INFO] [1712607560.189830]: Subclasses: []\n", - "[INFO] [1712607560.190127]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.orders]\n", - "[INFO] [1712607560.190619]: Instances: []\n", - "[INFO] [1712607560.190892]: Direct Instances: []\n", - "[INFO] [1712607560.191253]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712607560.191493]: -------------------\n", - "[INFO] [1712607560.191723]: SOMA.State \n", - "[INFO] [1712607560.191951]: Super classes: [DUL.Event]\n", - "[INFO] [1712607560.192183]: Ancestors: {owl.Thing, DUL.Event, SOMA.State, DUL.Entity}\n", - "[INFO] [1712607560.192447]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712607560.192738]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.193228]: Instances: []\n", - "[INFO] [1712607560.193493]: Direct Instances: []\n", - "[INFO] [1712607560.194008]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712607560.194267]: -------------------\n", - "[INFO] [1712607560.194510]: SOMA.Transient \n", - "[INFO] [1712607560.194747]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712607560.194995]: Ancestors: {DUL.Object, owl.Thing, SOMA.Transient, DUL.Entity}\n", - "[INFO] [1712607560.195246]: Subclasses: []\n", - "[INFO] [1712607560.195567]: Properties: [rdf-schema.comment, SOMA.transitionsFrom, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.196063]: Instances: []\n", - "[INFO] [1712607560.196320]: Direct Instances: []\n", - "[INFO] [1712607560.196585]: Inverse Restrictions: []\n", - "[INFO] [1712607560.196824]: -------------------\n", - "[INFO] [1712607560.197055]: SOMA.ColorRegion \n", - "[INFO] [1712607560.197293]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712607560.197532]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.197796]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712607560.198092]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.198592]: Instances: []\n", - "[INFO] [1712607560.198859]: Direct Instances: []\n", - "[INFO] [1712607560.199174]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712607560.199425]: -------------------\n", - "[INFO] [1712607560.199667]: SOMA.ForceAttribute \n", - "[INFO] [1712607560.199909]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712607560.200151]: Ancestors: {DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, SOMA.ForceAttribute, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.200406]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712607560.200709]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasForceValue, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.201205]: Instances: []\n", - "[INFO] [1712607560.201461]: Direct Instances: []\n", - "[INFO] [1712607560.201721]: Inverse Restrictions: []\n", - "[INFO] [1712607560.201957]: -------------------\n", - "[INFO] [1712607560.202199]: SOMA.API_Specification \n", - "[INFO] [1712607560.202434]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712607560.202675]: Ancestors: {DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607560.202927]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712607560.203230]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.203721]: Instances: []\n", - "[INFO] [1712607560.203983]: Direct Instances: []\n", - "[INFO] [1712607560.204235]: Inverse Restrictions: []\n", - "[INFO] [1712607560.204463]: -------------------\n", - "[INFO] [1712607560.204696]: SOMA.InterfaceSpecification \n", - "[INFO] [1712607560.204934]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712607560.205175]: Ancestors: {DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607560.205429]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712607560.205718]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.206209]: Instances: []\n", - "[INFO] [1712607560.206487]: Direct Instances: []\n", - "[INFO] [1712607560.206810]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712607560.207050]: -------------------\n", - "[INFO] [1712607560.207294]: SOMA.AbductiveReasoning \n", - "[INFO] [1712607560.207536]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712607560.207777]: Ancestors: {SOMA.AbductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607560.208020]: Subclasses: []\n", - "[INFO] [1712607560.208308]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.208816]: Instances: []\n", - "[INFO] [1712607560.209079]: Direct Instances: []\n", - "[INFO] [1712607560.209326]: Inverse Restrictions: []\n", - "[INFO] [1712607560.209559]: -------------------\n", - "[INFO] [1712607560.209788]: SOMA.Reasoning \n", - "[INFO] [1712607560.210014]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607560.210251]: Ancestors: {owl.Thing, SOMA.Reasoning, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712607560.210514]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712607560.210807]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.211333]: Instances: []\n", - "[INFO] [1712607560.211600]: Direct Instances: []\n", - "[INFO] [1712607560.211876]: Inverse Restrictions: []\n", - "[INFO] [1712607560.212127]: -------------------\n", - "[INFO] [1712607560.212366]: SOMA.Accessor \n", - "[INFO] [1712607560.212596]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712607560.212837]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.213094]: Subclasses: []\n", - "[INFO] [1712607560.213386]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.213867]: Instances: []\n", - "[INFO] [1712607560.214113]: Direct Instances: []\n", - "[INFO] [1712607560.214382]: Inverse Restrictions: []\n", - "[INFO] [1712607560.214620]: -------------------\n", - "[INFO] [1712607560.214853]: SOMA.Instrument \n", - "[INFO] [1712607560.215082]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712607560.215322]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.215592]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712607560.215884]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.216400]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607560.216681]: Direct Instances: []\n", - "[INFO] [1712607560.217062]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607560.217301]: -------------------\n", - "[INFO] [1712607560.217534]: SOMA.Accident \n", - "[INFO] [1712607560.217762]: Super classes: [DUL.Event]\n", - "[INFO] [1712607560.217999]: Ancestors: {owl.Thing, DUL.Event, SOMA.Accident, DUL.Entity}\n", - "[INFO] [1712607560.218255]: Subclasses: []\n", - "[INFO] [1712607560.218563]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.219045]: Instances: []\n", - "[INFO] [1712607560.219291]: Direct Instances: []\n", - "[INFO] [1712607560.219542]: Inverse Restrictions: []\n", - "[INFO] [1712607560.219783]: -------------------\n", - "[INFO] [1712607560.220017]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712607560.220250]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712607560.220485]: Ancestors: {DUL.Object, DUL.Description, DUL.Plan, owl.Thing, DUL.Entity, SOMA.ActionExecutionPlan, DUL.SocialObject}\n", - "[INFO] [1712607560.220720]: Subclasses: []\n", - "[INFO] [1712607560.221008]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.221495]: Instances: []\n", - "[INFO] [1712607560.221748]: Direct Instances: []\n", - "[INFO] [1712607560.221994]: Inverse Restrictions: []\n", - "[INFO] [1712607560.222225]: -------------------\n", - "[INFO] [1712607560.222452]: SOMA.Actuating \n", - "[INFO] [1712607560.222691]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607560.222937]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.223212]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712607560.223502]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.224027]: Instances: []\n", - "[INFO] [1712607560.224295]: Direct Instances: []\n", - "[INFO] [1712607560.224566]: Inverse Restrictions: []\n", - "[INFO] [1712607560.224811]: -------------------\n", - "[INFO] [1712607560.225048]: SOMA.PhysicalTask \n", - "[INFO] [1712607560.225293]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712607560.225536]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", - "[INFO] [1712607560.225808]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712607560.226108]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.226722]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", - "[INFO] [1712607560.227007]: Direct Instances: []\n", - "[INFO] [1712607560.227328]: Inverse Restrictions: []\n", - "[INFO] [1712607560.227574]: -------------------\n", - "[INFO] [1712607560.227830]: SOMA.AestheticDesign \n", - "[INFO] [1712607560.228076]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712607560.228325]: Ancestors: {DUL.Object, DUL.Description, SOMA.AestheticDesign, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607560.228569]: Subclasses: []\n", - "[INFO] [1712607560.228878]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.229374]: Instances: []\n", - "[INFO] [1712607560.229650]: Direct Instances: []\n", - "[INFO] [1712607560.229900]: Inverse Restrictions: []\n", - "[INFO] [1712607560.230140]: -------------------\n", - "[INFO] [1712607560.230376]: SOMA.AgentRole \n", - "[INFO] [1712607560.230610]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712607560.230861]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.AgentRole, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607560.231113]: Subclasses: []\n", - "[INFO] [1712607560.231408]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.231890]: Instances: []\n", - "[INFO] [1712607560.232144]: Direct Instances: []\n", - "[INFO] [1712607560.232440]: Inverse Restrictions: []\n", - "[INFO] [1712607560.232681]: -------------------\n", - "[INFO] [1712607560.232915]: SOMA.CausativeRole \n", - "[INFO] [1712607560.233144]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607560.233382]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607560.233655]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712607560.234213]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.234758]: Instances: []\n", - "[INFO] [1712607560.235026]: Direct Instances: []\n", - "[INFO] [1712607560.235313]: Inverse Restrictions: []\n", - "[INFO] [1712607560.235558]: -------------------\n", - "[INFO] [1712607560.235796]: SOMA.Agonist \n", - "[INFO] [1712607560.236032]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.236288]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Agonist, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.236536]: Subclasses: []\n", - "[INFO] [1712607560.236827]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.237313]: Instances: []\n", - "[INFO] [1712607560.237593]: Direct Instances: []\n", - "[INFO] [1712607560.237908]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712607560.238159]: -------------------\n", - "[INFO] [1712607560.238395]: SOMA.Patient \n", - "[INFO] [1712607560.238636]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607560.238884]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.239166]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712607560.239457]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.240028]: Instances: []\n", - "[INFO] [1712607560.240307]: Direct Instances: []\n", - "[INFO] [1712607560.240718]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607560.240963]: -------------------\n", - "[INFO] [1712607560.241197]: SOMA.Algorithm \n", - "[INFO] [1712607560.241441]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712607560.241690]: Ancestors: {DUL.Object, SOMA.Algorithm, DUL.Description, owl.Thing, DUL.Entity, DUL.Plan, DUL.SocialObject}\n", - "[INFO] [1712607560.241936]: Subclasses: []\n", - "[INFO] [1712607560.242226]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.242712]: Instances: []\n", - "[INFO] [1712607560.242990]: Direct Instances: []\n", - "[INFO] [1712607560.243312]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712607560.243557]: -------------------\n", - "[INFO] [1712607560.243792]: SOMA.Alteration \n", - "[INFO] [1712607560.244024]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712607560.244266]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject}\n", - "[INFO] [1712607560.244549]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712607560.244849]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.245359]: Instances: []\n", - "[INFO] [1712607560.245644]: Direct Instances: []\n", - "[INFO] [1712607560.245915]: Inverse Restrictions: []\n", - "[INFO] [1712607560.246156]: -------------------\n", - "[INFO] [1712607560.246394]: SOMA.AlterativeInteraction \n", - "[INFO] [1712607560.246623]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712607560.246864]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.AlterativeInteraction, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607560.247121]: Subclasses: []\n", - "[INFO] [1712607560.247426]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.247910]: Instances: []\n", - "[INFO] [1712607560.248157]: Direct Instances: []\n", - "[INFO] [1712607560.248449]: Inverse Restrictions: []\n", - "[INFO] [1712607560.248692]: -------------------\n", - "[INFO] [1712607560.248927]: SOMA.ForceInteraction \n", - "[INFO] [1712607560.249166]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712607560.249406]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.249655]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712607560.249971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607560.250475]: Instances: []\n", - "[INFO] [1712607560.250731]: Direct Instances: []\n", - "[INFO] [1712607560.250992]: Inverse Restrictions: []\n", - "[INFO] [1712607560.251228]: -------------------\n", - "[INFO] [1712607560.251464]: SOMA.PreservativeInteraction \n", - "[INFO] [1712607560.251703]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712607560.251945]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PreservativeInteraction, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.ForceInteraction, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607560.252186]: Subclasses: []\n", - "[INFO] [1712607560.252471]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.252979]: Instances: []\n", - "[INFO] [1712607560.253257]: Direct Instances: []\n", - "[INFO] [1712607560.253559]: Inverse Restrictions: []\n", - "[INFO] [1712607560.253800]: -------------------\n", - "[INFO] [1712607560.254035]: SOMA.AlteredObject \n", - "[INFO] [1712607560.254287]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.254539]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.254799]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712607560.255090]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.255593]: Instances: []\n", - "[INFO] [1712607560.255864]: Direct Instances: []\n", - "[INFO] [1712607560.256214]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712607560.256455]: -------------------\n", - "[INFO] [1712607560.256692]: SOMA.Amateurish \n", - "[INFO] [1712607560.256937]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712607560.257183]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.257440]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712607560.257740]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.258227]: Instances: []\n", - "[INFO] [1712607560.258513]: Direct Instances: []\n", - "[INFO] [1712607560.258783]: Inverse Restrictions: []\n", - "[INFO] [1712607560.259021]: -------------------\n", - "[INFO] [1712607560.259255]: SOMA.AnsweringTask \n", - "[INFO] [1712607560.259494]: Super classes: [owl.Thing]\n", - "[INFO] [1712607560.259733]: Ancestors: {SOMA.AnsweringTask, owl.Thing}\n", - "[INFO] [1712607560.259973]: Subclasses: []\n", - "[INFO] [1712607560.260263]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.260757]: Instances: []\n", - "[INFO] [1712607560.261049]: Direct Instances: []\n", - "[INFO] [1712607560.261344]: Inverse Restrictions: []\n", - "[INFO] [1712607560.261580]: -------------------\n", - "[INFO] [1712607560.261814]: SOMA.CommandingTask \n", - "[INFO] [1712607560.262058]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712607560.262312]: Ancestors: {SOMA.CommandingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712607560.262563]: Subclasses: []\n", - "[INFO] [1712607560.262859]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.263344]: Instances: []\n", - "[INFO] [1712607560.263645]: Direct Instances: []\n", - "[INFO] [1712607560.263993]: Inverse Restrictions: []\n", - "[INFO] [1712607560.264247]: -------------------\n", - "[INFO] [1712607560.264510]: SOMA.IllocutionaryTask \n", - "[INFO] [1712607560.264764]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712607560.265004]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712607560.265260]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712607560.265551]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.266063]: Instances: []\n", - "[INFO] [1712607560.266339]: Direct Instances: []\n", - "[INFO] [1712607560.266637]: Inverse Restrictions: []\n", - "[INFO] [1712607560.266876]: -------------------\n", - "[INFO] [1712607560.267120]: SOMA.Antagonist \n", - "[INFO] [1712607560.267356]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.267595]: Ancestors: {DUL.Object, SOMA.Antagonist, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.267833]: Subclasses: []\n", - "[INFO] [1712607560.268119]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.268614]: Instances: []\n", - "[INFO] [1712607560.268879]: Direct Instances: []\n", - "[INFO] [1712607560.269169]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712607560.269402]: -------------------\n", - "[INFO] [1712607560.269634]: SOMA.Appliance \n", - "[INFO] [1712607560.269873]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712607560.270116]: Ancestors: {DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607560.270379]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712607560.270665]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.271169]: Instances: []\n", - "[INFO] [1712607560.271433]: Direct Instances: []\n", - "[INFO] [1712607560.271686]: Inverse Restrictions: []\n", - "[INFO] [1712607560.271914]: -------------------\n", - "[INFO] [1712607560.272139]: SOMA.Approaching \n", - "[INFO] [1712607560.272374]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607560.272623]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Approaching, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607560.272867]: Subclasses: []\n", - "[INFO] [1712607560.273155]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.273660]: Instances: []\n", - "[INFO] [1712607560.273925]: Direct Instances: []\n", - "[INFO] [1712607560.274183]: Inverse Restrictions: []\n", - "[INFO] [1712607560.274416]: -------------------\n", - "[INFO] [1712607560.274645]: SOMA.Locomotion \n", - "[INFO] [1712607560.274876]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712607560.275129]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", - "[INFO] [1712607560.275393]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712607560.275691]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.276183]: Instances: []\n", - "[INFO] [1712607560.276461]: Direct Instances: []\n", - "[INFO] [1712607560.276734]: Inverse Restrictions: []\n", - "[INFO] [1712607560.276971]: -------------------\n", - "[INFO] [1712607560.277205]: SOMA.ArchiveFile \n", - "[INFO] [1712607560.277437]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712607560.277707]: Ancestors: {DUL.InformationRealization, owl.Thing, SOMA.ArchiveFile, DUL.Entity, DUL.InformationEntity, SOMA.Digital_File}\n", - "[INFO] [1712607560.277980]: Subclasses: []\n", - "[INFO] [1712607560.278296]: Properties: [DUL.realizes, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.278795]: Instances: []\n", - "[INFO] [1712607560.279070]: Direct Instances: []\n", - "[INFO] [1712607560.279322]: Inverse Restrictions: []\n", - "[INFO] [1712607560.279563]: -------------------\n", - "[INFO] [1712607560.279798]: SOMA.ArchiveText \n", - "[INFO] [1712607560.280027]: Super classes: [owl.Thing]\n", - "[INFO] [1712607560.280257]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", - "[INFO] [1712607560.280489]: Subclasses: []\n", - "[INFO] [1712607560.280793]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607560.281281]: Instances: []\n", - "[INFO] [1712607560.281533]: Direct Instances: []\n", - "[INFO] [1712607560.281865]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712607560.282128]: -------------------\n", - "[INFO] [1712607560.282376]: SOMA.Digital_File \n", - "[INFO] [1712607560.282619]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712607560.282861]: Ancestors: {DUL.InformationRealization, owl.Thing, DUL.Entity, DUL.InformationEntity, SOMA.Digital_File}\n", - "[INFO] [1712607560.283110]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712607560.283416]: Properties: [DUL.realizes, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasNameString]\n", - "[INFO] [1712607560.283910]: Instances: []\n", - "[INFO] [1712607560.284173]: Direct Instances: []\n", - "[INFO] [1712607560.285277]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712607560.285541]: -------------------\n", - "[INFO] [1712607560.285791]: SOMA.ArchiveFormat \n", - "[INFO] [1712607560.286030]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712607560.286280]: Ancestors: {DUL.Object, SOMA.ArchiveFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607560.286523]: Subclasses: []\n", - "[INFO] [1712607560.286825]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.287312]: Instances: []\n", - "[INFO] [1712607560.287565]: Direct Instances: []\n", - "[INFO] [1712607560.287852]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712607560.288087]: -------------------\n", - "[INFO] [1712607560.288332]: SOMA.File_format \n", - "[INFO] [1712607560.288566]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607560.288807]: Ancestors: {DUL.Object, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607560.289058]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712607560.289344]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.289853]: Instances: []\n", - "[INFO] [1712607560.290118]: Direct Instances: []\n", - "[INFO] [1712607560.290384]: Inverse Restrictions: []\n", - "[INFO] [1712607560.290620]: -------------------\n", - "[INFO] [1712607560.290859]: SOMA.FileConfiguration \n", - "[INFO] [1712607560.291098]: Super classes: [owl.Thing]\n", - "[INFO] [1712607560.291336]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", - "[INFO] [1712607560.291577]: Subclasses: []\n", - "[INFO] [1712607560.291863]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.292356]: Instances: []\n", - "[INFO] [1712607560.292617]: Direct Instances: []\n", - "[INFO] [1712607560.292927]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712607560.293164]: -------------------\n", - "[INFO] [1712607560.293404]: SOMA.Structured_Text \n", - "[INFO] [1712607560.293642]: Super classes: [owl.Thing]\n", - "[INFO] [1712607560.293880]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", - "[INFO] [1712607560.294136]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712607560.294472]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607560.294991]: Instances: []\n", - "[INFO] [1712607560.295258]: Direct Instances: []\n", - "[INFO] [1712607560.295697]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712607560.295947]: -------------------\n", - "[INFO] [1712607560.296178]: SOMA.AreaSurveying \n", - "[INFO] [1712607560.296411]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712607560.296656]: Ancestors: {owl.Thing, SOMA.Perceiving, SOMA.AreaSurveying}\n", - "[INFO] [1712607560.296903]: Subclasses: []\n", - "[INFO] [1712607560.297191]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.297670]: Instances: []\n", - "[INFO] [1712607560.297945]: Direct Instances: []\n", - "[INFO] [1712607560.298201]: Inverse Restrictions: []\n", - "[INFO] [1712607560.298441]: -------------------\n", - "[INFO] [1712607560.298673]: SOMA.Perceiving \n", - "[INFO] [1712607560.298903]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712607560.299133]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712607560.299398]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712607560.299690]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.300173]: Instances: []\n", - "[INFO] [1712607560.300444]: Direct Instances: []\n", - "[INFO] [1712607560.300709]: Inverse Restrictions: []\n", - "[INFO] [1712607560.300943]: -------------------\n", - "[INFO] [1712607560.301175]: SOMA.Arm \n", - "[INFO] [1712607560.301416]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712607560.301663]: Ancestors: {DUL.Object, SOMA.Arm, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607560.301904]: Subclasses: []\n", - "[INFO] [1712607560.302188]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.302689]: Instances: []\n", - "[INFO] [1712607560.302963]: Direct Instances: []\n", - "[INFO] [1712607560.303249]: Inverse Restrictions: []\n", - "[INFO] [1712607560.303484]: -------------------\n", - "[INFO] [1712607560.303716]: SOMA.Limb \n", - "[INFO] [1712607560.303945]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712607560.304193]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607560.304448]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712607560.304745]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.305228]: Instances: []\n", - "[INFO] [1712607560.305505]: Direct Instances: []\n", - "[INFO] [1712607560.305827]: Inverse Restrictions: []\n", - "[INFO] [1712607560.306064]: -------------------\n", - "[INFO] [1712607560.306307]: SOMA.Arranging \n", - "[INFO] [1712607560.306537]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712607560.306786]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Arranging, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.307041]: Subclasses: []\n", - "[INFO] [1712607560.307332]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.307813]: Instances: []\n", - "[INFO] [1712607560.308065]: Direct Instances: []\n", - "[INFO] [1712607560.308307]: Inverse Restrictions: []\n", - "[INFO] [1712607560.308549]: -------------------\n", - "[INFO] [1712607560.308785]: SOMA.Constructing \n", - "[INFO] [1712607560.309014]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607560.309251]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.309516]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712607560.309823]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.310322]: Instances: []\n", - "[INFO] [1712607560.310589]: Direct Instances: []\n", - "[INFO] [1712607560.310855]: Inverse Restrictions: []\n", - "[INFO] [1712607560.311130]: -------------------\n", - "[INFO] [1712607560.311369]: SOMA.ArtificialAgent \n", - "[INFO] [1712607560.311602]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712607560.311842]: Ancestors: {DUL.Agent, DUL.Object, SOMA.ArtificialAgent, DUL.PhysicalAgent, DUL.PhysicalObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607560.312096]: Subclasses: []\n", - "[INFO] [1712607560.312388]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.312888]: Instances: []\n", - "[INFO] [1712607560.313171]: Direct Instances: []\n", - "[INFO] [1712607560.313424]: Inverse Restrictions: []\n", - "[INFO] [1712607560.313666]: -------------------\n", - "[INFO] [1712607560.313897]: SOMA.Assembling \n", - "[INFO] [1712607560.314122]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712607560.314386]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Assembling, DUL.EventType}\n", - "[INFO] [1712607560.314634]: Subclasses: []\n", - "[INFO] [1712607560.314921]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.315398]: Instances: []\n", - "[INFO] [1712607560.315671]: Direct Instances: []\n", - "[INFO] [1712607560.315924]: Inverse Restrictions: []\n", - "[INFO] [1712607560.316158]: -------------------\n", - "[INFO] [1712607560.316388]: SOMA.AssertionTask \n", - "[INFO] [1712607560.316624]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712607560.316873]: Ancestors: {SOMA.AssertionTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712607560.317121]: Subclasses: []\n", - "[INFO] [1712607560.317411]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.317895]: Instances: []\n", - "[INFO] [1712607560.318177]: Direct Instances: []\n", - "[INFO] [1712607560.318434]: Inverse Restrictions: []\n", - "[INFO] [1712607560.318672]: -------------------\n", - "[INFO] [1712607560.318902]: SOMA.DeclarativeClause \n", - "[INFO] [1712607560.319137]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712607560.319392]: Ancestors: {DUL.Object, SOMA.DeclarativeClause, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607560.319638]: Subclasses: []\n", - "[INFO] [1712607560.319929]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.320431]: Instances: []\n", - "[INFO] [1712607560.320701]: Direct Instances: []\n", - "[INFO] [1712607560.321069]: Inverse Restrictions: []\n", - "[INFO] [1712607560.321311]: -------------------\n", - "[INFO] [1712607560.321543]: SOMA.AssumingArmPose \n", - "[INFO] [1712607560.321774]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712607560.322026]: Ancestors: {SOMA.AssumingArmPose, DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.322288]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712607560.322599]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.323122]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712607560.323394]: Direct Instances: []\n", - "[INFO] [1712607560.323654]: Inverse Restrictions: []\n", - "[INFO] [1712607560.323885]: -------------------\n", - "[INFO] [1712607560.324114]: SOMA.AssumingPose \n", - "[INFO] [1712607560.324348]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607560.324595]: Ancestors: {DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.324847]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712607560.325137]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.325634]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712607560.325913]: Direct Instances: []\n", - "[INFO] [1712607560.326186]: Inverse Restrictions: []\n", - "[INFO] [1712607560.326426]: -------------------\n", - "[INFO] [1712607560.326660]: SOMA.AttentionShift \n", - "[INFO] [1712607560.326889]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712607560.327130]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.AttentionShift, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.327396]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712607560.327729]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.328223]: Instances: []\n", - "[INFO] [1712607560.328488]: Direct Instances: []\n", - "[INFO] [1712607560.328742]: Inverse Restrictions: []\n", - "[INFO] [1712607560.329006]: -------------------\n", - "[INFO] [1712607560.329248]: SOMA.MentalTask \n", - "[INFO] [1712607560.329487]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712607560.329727]: Ancestors: {DUL.Object, SOMA.MentalTask, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", - "[INFO] [1712607560.329983]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712607560.330298]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.330808]: Instances: []\n", - "[INFO] [1712607560.331064]: Direct Instances: []\n", - "[INFO] [1712607560.331361]: Inverse Restrictions: []\n", - "[INFO] [1712607560.331611]: -------------------\n", - "[INFO] [1712607560.331853]: SOMA.AvoidedObject \n", - "[INFO] [1712607560.332087]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.332328]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.AvoidedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.332567]: Subclasses: []\n", - "[INFO] [1712607560.332854]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.333353]: Instances: []\n", - "[INFO] [1712607560.333614]: Direct Instances: []\n", - "[INFO] [1712607560.333864]: Inverse Restrictions: []\n", - "[INFO] [1712607560.334097]: -------------------\n", - "[INFO] [1712607560.334342]: SOMA.Avoiding \n", - "[INFO] [1712607560.334579]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712607560.334838]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Avoiding, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.335086]: Subclasses: []\n", - "[INFO] [1712607560.335373]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.335851]: Instances: []\n", - "[INFO] [1712607560.336124]: Direct Instances: []\n", - "[INFO] [1712607560.336375]: Inverse Restrictions: []\n", - "[INFO] [1712607560.336612]: -------------------\n", - "[INFO] [1712607560.336842]: SOMA.Navigating \n", - "[INFO] [1712607560.337068]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607560.337317]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.337580]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712607560.337869]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.338365]: Instances: [SOMA.navigating]\n", - "[INFO] [1712607560.338650]: Direct Instances: [SOMA.navigating]\n", - "[INFO] [1712607560.338920]: Inverse Restrictions: []\n", - "[INFO] [1712607560.339158]: -------------------\n", - "[INFO] [1712607560.339388]: SOMA.Barrier \n", - "[INFO] [1712607560.339618]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712607560.339874]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Entity, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607560.340134]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712607560.340423]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.340909]: Instances: []\n", - "[INFO] [1712607560.341179]: Direct Instances: []\n", - "[INFO] [1712607560.341489]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712607560.341736]: -------------------\n", - "[INFO] [1712607560.341970]: SOMA.Restrictor \n", - "[INFO] [1712607560.342205]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712607560.342463]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607560.342727]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712607560.343016]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.343529]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607560.343807]: Direct Instances: []\n", - "[INFO] [1712607560.344168]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712607560.344457]: -------------------\n", - "[INFO] [1712607560.344698]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712607560.344932]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712607560.345174]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.345442]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712607560.345741]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.346258]: Instances: []\n", - "[INFO] [1712607560.346542]: Direct Instances: []\n", - "[INFO] [1712607560.346808]: Inverse Restrictions: []\n", - "[INFO] [1712607560.347042]: -------------------\n", - "[INFO] [1712607560.347271]: SOMA.BeneficiaryRole \n", - "[INFO] [1712607560.347500]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712607560.347751]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.348011]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712607560.348300]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.348787]: Instances: []\n", - "[INFO] [1712607560.349060]: Direct Instances: []\n", - "[INFO] [1712607560.349322]: Inverse Restrictions: []\n", - "[INFO] [1712607560.349557]: -------------------\n", - "[INFO] [1712607560.349801]: SOMA.GoalRole \n", - "[INFO] [1712607560.350039]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607560.350283]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.350535]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712607560.350820]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.351327]: Instances: []\n", - "[INFO] [1712607560.351590]: Direct Instances: []\n", - "[INFO] [1712607560.351855]: Inverse Restrictions: []\n", - "[INFO] [1712607560.352087]: -------------------\n", - "[INFO] [1712607560.352319]: SOMA.CounterfactualBinding \n", - "[INFO] [1712607560.352558]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712607560.352811]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, SOMA.CounterfactualBinding, DUL.SocialObject}\n", - "[INFO] [1712607560.353058]: Subclasses: []\n", - "[INFO] [1712607560.353362]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.353843]: Instances: []\n", - "[INFO] [1712607560.354127]: Direct Instances: []\n", - "[INFO] [1712607560.354458]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712607560.354698]: -------------------\n", - "[INFO] [1712607560.354933]: SOMA.FactualBinding \n", - "[INFO] [1712607560.355165]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712607560.355419]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, DUL.Entity, SOMA.FactualBinding, DUL.SocialObject}\n", - "[INFO] [1712607560.355666]: Subclasses: []\n", - "[INFO] [1712607560.355958]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.356462]: Instances: []\n", - "[INFO] [1712607560.356725]: Direct Instances: []\n", - "[INFO] [1712607560.357055]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712607560.357298]: -------------------\n", - "[INFO] [1712607560.357545]: SOMA.RoleFillerBinding \n", - "[INFO] [1712607560.358049]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712607560.358454]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, DUL.Relation, SOMA.RoleFillerBinding, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.358774]: Subclasses: []\n", - "[INFO] [1712607560.359118]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.359631]: Instances: []\n", - "[INFO] [1712607560.359925]: Direct Instances: []\n", - "[INFO] [1712607560.360223]: Inverse Restrictions: []\n", - "[INFO] [1712607560.360480]: -------------------\n", - "[INFO] [1712607560.360727]: SOMA.RoleRoleBinding \n", - "[INFO] [1712607560.360973]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712607560.361243]: Ancestors: {DUL.Object, DUL.Description, SOMA.Binding, SOMA.RoleRoleBinding, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.361487]: Subclasses: []\n", - "[INFO] [1712607560.361789]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.362275]: Instances: []\n", - "[INFO] [1712607560.362553]: Direct Instances: []\n", - "[INFO] [1712607560.362851]: Inverse Restrictions: []\n", - "[INFO] [1712607560.363098]: -------------------\n", - "[INFO] [1712607560.363336]: SOMA.DesignedComponent \n", - "[INFO] [1712607560.363573]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712607560.363815]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607560.364079]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712607560.364386]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.364930]: Instances: []\n", - "[INFO] [1712607560.365206]: Direct Instances: []\n", - "[INFO] [1712607560.365461]: Inverse Restrictions: []\n", - "[INFO] [1712607560.365698]: -------------------\n", - "[INFO] [1712607560.365951]: SOMA.Blockage \n", - "[INFO] [1712607560.366213]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712607560.366484]: Ancestors: {owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.366770]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712607560.367126]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.367659]: Instances: []\n", - "[INFO] [1712607560.367940]: Direct Instances: []\n", - "[INFO] [1712607560.368208]: Inverse Restrictions: []\n", - "[INFO] [1712607560.368447]: -------------------\n", - "[INFO] [1712607560.368691]: SOMA.BlockedObject \n", - "[INFO] [1712607560.368927]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.369184]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.369470]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712607560.369794]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.370393]: Instances: []\n", - "[INFO] [1712607560.370774]: Direct Instances: []\n", - "[INFO] [1712607560.371189]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712607560.371573]: -------------------\n", - "[INFO] [1712607560.371848]: SOMA.BodyMovement \n", - "[INFO] [1712607560.372226]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712607560.372510]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", - "[INFO] [1712607560.372787]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712607560.373109]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.373635]: Instances: []\n", - "[INFO] [1712607560.373903]: Direct Instances: []\n", - "[INFO] [1712607560.374171]: Inverse Restrictions: []\n", - "[INFO] [1712607560.374427]: -------------------\n", - "[INFO] [1712607560.374669]: SOMA.Motion \n", - "[INFO] [1712607560.374903]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712607560.375147]: Ancestors: {DUL.Object, SOMA.Motion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.375402]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712607560.375701]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.376247]: Instances: []\n", - "[INFO] [1712607560.376520]: Direct Instances: []\n", - "[INFO] [1712607560.376779]: Inverse Restrictions: []\n", - "[INFO] [1712607560.377021]: -------------------\n", - "[INFO] [1712607560.377258]: SOMA.Boiling \n", - "[INFO] [1712607560.377488]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712607560.377730]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PhaseTransition, SOMA.Vaporizing, owl.Thing, SOMA.ProcessType, SOMA.Boiling, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", - "[INFO] [1712607560.377967]: Subclasses: []\n", - "[INFO] [1712607560.378264]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.378753]: Instances: []\n", - "[INFO] [1712607560.379031]: Direct Instances: []\n", - "[INFO] [1712607560.379286]: Inverse Restrictions: []\n", - "[INFO] [1712607560.379525]: -------------------\n", - "[INFO] [1712607560.379763]: SOMA.Vaporizing \n", - "[INFO] [1712607560.380006]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712607560.380248]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Vaporizing, SOMA.PhaseTransition, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", - "[INFO] [1712607560.380513]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712607560.380815]: Properties: [SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712607560.381296]: Instances: []\n", - "[INFO] [1712607560.381549]: Direct Instances: []\n", - "[INFO] [1712607560.381801]: Inverse Restrictions: []\n", - "[INFO] [1712607560.382044]: -------------------\n", - "[INFO] [1712607560.382287]: SOMA.DesignedContainer \n", - "[INFO] [1712607560.382526]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712607560.382772]: Ancestors: {DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607560.383043]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712607560.383335]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.383940]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712607560.384214]: Direct Instances: []\n", - "[INFO] [1712607560.384489]: Inverse Restrictions: []\n", - "[INFO] [1712607560.384729]: -------------------\n", - "[INFO] [1712607560.384971]: SOMA.BoxShape \n", - "[INFO] [1712607560.385225]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712607560.385473]: Ancestors: {DUL.Abstract, owl.Thing, SOMA.BoxShape, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607560.385719]: Subclasses: []\n", - "[INFO] [1712607560.386017]: Properties: [SOMA.hasHeight, rdf-schema.isDefinedBy, SOMA.hasLength, rdf-schema.comment, SOMA.hasWidth, rdf-schema.label]\n", - "[INFO] [1712607560.386534]: Instances: []\n", - "[INFO] [1712607560.386809]: Direct Instances: []\n", - "[INFO] [1712607560.387099]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712607560.387338]: -------------------\n", - "[INFO] [1712607560.387573]: SOMA.Deposition \n", - "[INFO] [1712607560.387812]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712607560.388068]: Ancestors: {SOMA.Deposition, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.388324]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712607560.388618]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.389103]: Instances: []\n", - "[INFO] [1712607560.389383]: Direct Instances: []\n", - "[INFO] [1712607560.389719]: Inverse Restrictions: []\n", - "[INFO] [1712607560.389959]: -------------------\n", - "[INFO] [1712607560.390198]: SOMA.CanCut \n", - "[INFO] [1712607560.390438]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712607560.390695]: Ancestors: {SOMA.CanCut, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.390944]: Subclasses: []\n", - "[INFO] [1712607560.391237]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.391723]: Instances: []\n", - "[INFO] [1712607560.392000]: Direct Instances: []\n", - "[INFO] [1712607560.392246]: Inverse Restrictions: []\n", - "[INFO] [1712607560.392485]: -------------------\n", - "[INFO] [1712607560.392718]: SOMA.Variability \n", - "[INFO] [1712607560.392953]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712607560.393203]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.393475]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712607560.393773]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.394284]: Instances: []\n", - "[INFO] [1712607560.394561]: Direct Instances: []\n", - "[INFO] [1712607560.394833]: Inverse Restrictions: []\n", - "[INFO] [1712607560.395067]: -------------------\n", - "[INFO] [1712607560.395298]: SOMA.Cutter \n", - "[INFO] [1712607560.395540]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712607560.395796]: Ancestors: {SOMA.Tool, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Cutter, DUL.SocialObject}\n", - "[INFO] [1712607560.396046]: Subclasses: []\n", - "[INFO] [1712607560.396334]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.396835]: Instances: []\n", - "[INFO] [1712607560.397095]: Direct Instances: []\n", - "[INFO] [1712607560.397409]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712607560.397644]: -------------------\n", - "[INFO] [1712607560.397872]: SOMA.CutObject \n", - "[INFO] [1712607560.398111]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712607560.398365]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, SOMA.CutObject, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.398607]: Subclasses: []\n", - "[INFO] [1712607560.398893]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.399386]: Instances: []\n", - "[INFO] [1712607560.399638]: Direct Instances: []\n", - "[INFO] [1712607560.399958]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712607560.400192]: -------------------\n", - "[INFO] [1712607560.400424]: SOMA.Capability \n", - "[INFO] [1712607560.400682]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712607560.400929]: Ancestors: {SOMA.Capability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.401179]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712607560.401469]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", - "[INFO] [1712607560.401973]: Instances: []\n", - "[INFO] [1712607560.402245]: Direct Instances: []\n", - "[INFO] [1712607560.402505]: Inverse Restrictions: []\n", - "[INFO] [1712607560.402744]: -------------------\n", - "[INFO] [1712607560.402977]: SOMA.Capacity \n", - "[INFO] [1712607560.403220]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607560.403475]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Capacity, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607560.403724]: Subclasses: []\n", - "[INFO] [1712607560.404022]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.404498]: Instances: []\n", - "[INFO] [1712607560.404780]: Direct Instances: []\n", - "[INFO] [1712607560.405086]: Inverse Restrictions: []\n", - "[INFO] [1712607560.405326]: -------------------\n", - "[INFO] [1712607560.405562]: SOMA.Intrinsic \n", - "[INFO] [1712607560.405793]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712607560.406032]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607560.406479]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712607560.406950]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.407626]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712607560.408021]: Direct Instances: []\n", - "[INFO] [1712607560.408329]: Inverse Restrictions: []\n", - "[INFO] [1712607560.408586]: -------------------\n", - "[INFO] [1712607560.408827]: SOMA.Catching \n", - "[INFO] [1712607560.409064]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607560.409306]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Catching, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.409544]: Subclasses: []\n", - "[INFO] [1712607560.409851]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.410345]: Instances: []\n", - "[INFO] [1712607560.410603]: Direct Instances: []\n", - "[INFO] [1712607560.410840]: Inverse Restrictions: []\n", - "[INFO] [1712607560.411118]: -------------------\n", - "[INFO] [1712607560.411357]: SOMA.PickingUp \n", - "[INFO] [1712607560.411606]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607560.411857]: Ancestors: {SOMA.PickingUp, DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.412101]: Subclasses: []\n", - "[INFO] [1712607560.412407]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.412943]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712607560.413219]: Direct Instances: [SOMA.picking_up]\n", - "[INFO] [1712607560.413483]: Inverse Restrictions: []\n", - "[INFO] [1712607560.413723]: -------------------\n", - "[INFO] [1712607560.413955]: SOMA.CausalEventRole \n", - "[INFO] [1712607560.414207]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712607560.414460]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.CausalEventRole, DUL.SocialObject}\n", - "[INFO] [1712607560.414706]: Subclasses: []\n", - "[INFO] [1712607560.414999]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.415490]: Instances: []\n", - "[INFO] [1712607560.415762]: Direct Instances: []\n", - "[INFO] [1712607560.416070]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607560.416312]: -------------------\n", - "[INFO] [1712607560.416545]: SOMA.EventAdjacentRole \n", - "[INFO] [1712607560.416780]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712607560.417021]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.417299]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712607560.417598]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.418267]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607560.418560]: Direct Instances: []\n", - "[INFO] [1712607560.418837]: Inverse Restrictions: []\n", - "[INFO] [1712607560.419080]: -------------------\n", - "[INFO] [1712607560.419317]: SOMA.CausedMotionTheory \n", - "[INFO] [1712607560.419567]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712607560.419834]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, SOMA.CausedMotionTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.420084]: Subclasses: []\n", - "[INFO] [1712607560.420381]: Properties: [rdf-schema.isDefinedBy, DUL.hasPart, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712607560.420862]: Instances: []\n", - "[INFO] [1712607560.421123]: Direct Instances: []\n", - "[INFO] [1712607560.421379]: Inverse Restrictions: []\n", - "[INFO] [1712607560.421613]: -------------------\n", - "[INFO] [1712607560.421844]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712607560.422070]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712607560.422313]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.422589]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712607560.422885]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.423387]: Instances: []\n", - "[INFO] [1712607560.423671]: Direct Instances: []\n", - "[INFO] [1712607560.424004]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", - "[INFO] [1712607560.424252]: -------------------\n", - "[INFO] [1712607560.424489]: SOMA.PerformerRole \n", - "[INFO] [1712607560.424723]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712607560.424972]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607560.425234]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712607560.425530]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.426044]: Instances: []\n", - "[INFO] [1712607560.426313]: Direct Instances: []\n", - "[INFO] [1712607560.426642]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607560.426886]: -------------------\n", - "[INFO] [1712607560.427120]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712607560.427361]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712607560.427621]: Ancestors: {SOMA.SourcePathGoalTheory, DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.427898]: Subclasses: []\n", - "[INFO] [1712607560.428200]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.428683]: Instances: []\n", - "[INFO] [1712607560.428960]: Direct Instances: []\n", - "[INFO] [1712607560.429269]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712607560.429519]: -------------------\n", - "[INFO] [1712607560.429754]: SOMA.RoomSurface \n", - "[INFO] [1712607560.429988]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712607560.430240]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.RoomSurface, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607560.430515]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712607560.430815]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.431306]: Instances: []\n", - "[INFO] [1712607560.431572]: Direct Instances: []\n", - "[INFO] [1712607560.431838]: Inverse Restrictions: []\n", - "[INFO] [1712607560.432074]: -------------------\n", - "[INFO] [1712607560.432304]: SOMA.Channel \n", - "[INFO] [1712607560.432536]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712607560.432776]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Channel, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, SOMA.PathRole, DUL.SocialObject}\n", - "[INFO] [1712607560.433028]: Subclasses: []\n", - "[INFO] [1712607560.433324]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.433811]: Instances: []\n", - "[INFO] [1712607560.434065]: Direct Instances: []\n", - "[INFO] [1712607560.434376]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607560.434634]: -------------------\n", - "[INFO] [1712607560.434877]: SOMA.PathRole \n", - "[INFO] [1712607560.435114]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712607560.435654]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, SOMA.PathRole, DUL.SocialObject}\n", - "[INFO] [1712607560.436006]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712607560.436334]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.436845]: Instances: []\n", - "[INFO] [1712607560.437114]: Direct Instances: []\n", - "[INFO] [1712607560.437423]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712607560.437679]: -------------------\n", - "[INFO] [1712607560.437926]: SOMA.CommunicationTask \n", - "[INFO] [1712607560.438191]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712607560.438450]: Ancestors: {DUL.Object, DUL.EventType, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject}\n", - "[INFO] [1712607560.438718]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712607560.439022]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.439524]: Instances: []\n", - "[INFO] [1712607560.439794]: Direct Instances: []\n", - "[INFO] [1712607560.440255]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", - "[INFO] [1712607560.440514]: -------------------\n", - "[INFO] [1712607560.440755]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712607560.440991]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712607560.441223]: Ancestors: {SOMA.CheckingObjectPresence, SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712607560.441460]: Subclasses: []\n", - "[INFO] [1712607560.441758]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.442258]: Instances: []\n", - "[INFO] [1712607560.442523]: Direct Instances: []\n", - "[INFO] [1712607560.442776]: Inverse Restrictions: []\n", - "[INFO] [1712607560.443022]: -------------------\n", - "[INFO] [1712607560.443260]: SOMA.ChemicalProcess \n", - "[INFO] [1712607560.443492]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712607560.443727]: Ancestors: {DUL.Process, owl.Thing, DUL.Event, DUL.Entity, SOMA.ChemicalProcess}\n", - "[INFO] [1712607560.443962]: Subclasses: []\n", - "[INFO] [1712607560.444257]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.444753]: Instances: []\n", - "[INFO] [1712607560.445013]: Direct Instances: []\n", - "[INFO] [1712607560.445277]: Inverse Restrictions: []\n", - "[INFO] [1712607560.445515]: -------------------\n", - "[INFO] [1712607560.445748]: SOMA.Choice \n", - "[INFO] [1712607560.445980]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712607560.446228]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.GoalRole, DUL.Role, owl.Thing, SOMA.Choice, DUL.Concept, SOMA.ResultRole, DUL.SocialObject}\n", - "[INFO] [1712607560.446491]: Subclasses: []\n", - "[INFO] [1712607560.446795]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.447282]: Instances: []\n", - "[INFO] [1712607560.447550]: Direct Instances: []\n", - "[INFO] [1712607560.447801]: Inverse Restrictions: []\n", - "[INFO] [1712607560.448049]: -------------------\n", - "[INFO] [1712607560.448312]: SOMA.ResultRole \n", - "[INFO] [1712607560.448570]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712607560.448836]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.ResultRole, DUL.SocialObject}\n", - "[INFO] [1712607560.449113]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712607560.449457]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.450005]: Instances: []\n", - "[INFO] [1712607560.450290]: Direct Instances: []\n", - "[INFO] [1712607560.450559]: Inverse Restrictions: []\n", - "[INFO] [1712607560.450807]: -------------------\n", - "[INFO] [1712607560.451056]: SOMA.CircularCylinder \n", - "[INFO] [1712607560.451298]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712607560.451538]: Ancestors: {DUL.Abstract, SOMA.CircularCylinder, SOMA.CylinderShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607560.451777]: Subclasses: []\n", - "[INFO] [1712607560.452078]: Properties: [rdf-schema.comment, SOMA.hasRadius, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.452570]: Instances: []\n", - "[INFO] [1712607560.452835]: Direct Instances: []\n", - "[INFO] [1712607560.453098]: Inverse Restrictions: []\n", - "[INFO] [1712607560.453341]: -------------------\n", - "[INFO] [1712607560.453571]: SOMA.CylinderShape \n", - "[INFO] [1712607560.453805]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712607560.454057]: Ancestors: {DUL.Abstract, SOMA.CylinderShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607560.454315]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712607560.454606]: Properties: [rdf-schema.isDefinedBy, SOMA.hasLength, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", - "[INFO] [1712607560.455087]: Instances: []\n", - "[INFO] [1712607560.455363]: Direct Instances: []\n", - "[INFO] [1712607560.455625]: Inverse Restrictions: []\n", - "[INFO] [1712607560.455862]: -------------------\n", - "[INFO] [1712607560.456093]: SOMA.Classifier \n", - "[INFO] [1712607560.456322]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712607560.456577]: Ancestors: {DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Classifier, DUL.SocialObject}\n", - "[INFO] [1712607560.456823]: Subclasses: []\n", - "[INFO] [1712607560.457113]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.457612]: Instances: []\n", - "[INFO] [1712607560.457894]: Direct Instances: []\n", - "[INFO] [1712607560.458153]: Inverse Restrictions: []\n", - "[INFO] [1712607560.458397]: -------------------\n", - "[INFO] [1712607560.458630]: SOMA.StatisticalReasoner \n", - "[INFO] [1712607560.458856]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712607560.459096]: Ancestors: {DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.459358]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712607560.459652]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.460135]: Instances: []\n", - "[INFO] [1712607560.460411]: Direct Instances: []\n", - "[INFO] [1712607560.460669]: Inverse Restrictions: []\n", - "[INFO] [1712607560.460900]: -------------------\n", - "[INFO] [1712607560.461130]: SOMA.ClausalObject \n", - "[INFO] [1712607560.461358]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712607560.461595]: Ancestors: {DUL.Object, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607560.461861]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712607560.462157]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.462657]: Instances: []\n", - "[INFO] [1712607560.462939]: Direct Instances: []\n", - "[INFO] [1712607560.463201]: Inverse Restrictions: []\n", - "[INFO] [1712607560.463436]: -------------------\n", - "[INFO] [1712607560.463670]: SOMA.Phrase \n", - "[INFO] [1712607560.463896]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712607560.464133]: Ancestors: {DUL.Object, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607560.464393]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712607560.464681]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.465179]: Instances: []\n", - "[INFO] [1712607560.465446]: Direct Instances: []\n", - "[INFO] [1712607560.465751]: Inverse Restrictions: []\n", - "[INFO] [1712607560.466014]: -------------------\n", - "[INFO] [1712607560.466284]: SOMA.Clean \n", - "[INFO] [1712607560.466527]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712607560.466774]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, SOMA.Clean, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.467010]: Subclasses: []\n", - "[INFO] [1712607560.467305]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.467795]: Instances: []\n", - "[INFO] [1712607560.468068]: Direct Instances: []\n", - "[INFO] [1712607560.468393]: Inverse Restrictions: []\n", - "[INFO] [1712607560.468642]: -------------------\n", - "[INFO] [1712607560.468885]: SOMA.CleanlinessRegion \n", - "[INFO] [1712607560.469117]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607560.469352]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.469599]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712607560.469889]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.470389]: Instances: []\n", - "[INFO] [1712607560.470665]: Direct Instances: []\n", - "[INFO] [1712607560.470996]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712607560.471235]: -------------------\n", - "[INFO] [1712607560.471477]: SOMA.Cleaning \n", - "[INFO] [1712607560.471716]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712607560.471961]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Cleaning, DUL.EventType}\n", - "[INFO] [1712607560.472199]: Subclasses: []\n", - "[INFO] [1712607560.472486]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607560.472988]: Instances: []\n", - "[INFO] [1712607560.473256]: Direct Instances: []\n", - "[INFO] [1712607560.473508]: Inverse Restrictions: []\n", - "[INFO] [1712607560.473742]: -------------------\n", - "[INFO] [1712607560.473973]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712607560.474208]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607560.474462]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.474726]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712607560.475019]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.475511]: Instances: []\n", - "[INFO] [1712607560.475790]: Direct Instances: []\n", - "[INFO] [1712607560.476057]: Inverse Restrictions: []\n", - "[INFO] [1712607560.476296]: -------------------\n", - "[INFO] [1712607560.476530]: SOMA.Purification \n", - "[INFO] [1712607560.476776]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712607560.477031]: Ancestors: {SOMA.Purification, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.477279]: Subclasses: []\n", - "[INFO] [1712607560.477568]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.478047]: Instances: []\n", - "[INFO] [1712607560.478334]: Direct Instances: []\n", - "[INFO] [1712607560.478637]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712607560.478880]: -------------------\n", - "[INFO] [1712607560.479115]: SOMA.Cleanliness \n", - "[INFO] [1712607560.479351]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712607560.479600]: Ancestors: {SOMA.SocialQuality, owl.Thing, SOMA.Cleanliness, DUL.Entity, DUL.Quality}\n", - "[INFO] [1712607560.479845]: Subclasses: []\n", - "[INFO] [1712607560.480137]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.480620]: Instances: []\n", - "[INFO] [1712607560.480890]: Direct Instances: []\n", - "[INFO] [1712607560.481224]: Inverse Restrictions: []\n", - "[INFO] [1712607560.481460]: -------------------\n", - "[INFO] [1712607560.481705]: SOMA.SocialQuality \n", - "[INFO] [1712607560.481942]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712607560.482183]: Ancestors: {owl.Thing, SOMA.SocialQuality, DUL.Entity, DUL.Quality}\n", - "[INFO] [1712607560.482441]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712607560.482730]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.483227]: Instances: []\n", - "[INFO] [1712607560.483494]: Direct Instances: []\n", - "[INFO] [1712607560.483753]: Inverse Restrictions: []\n", - "[INFO] [1712607560.483988]: -------------------\n", - "[INFO] [1712607560.484226]: SOMA.Client-Server_Specification \n", - "[INFO] [1712607560.484469]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712607560.484709]: Ancestors: {DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, SOMA.Client-Server_Specification, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607560.484947]: Subclasses: []\n", - "[INFO] [1712607560.485238]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole]\n", - "[INFO] [1712607560.485739]: Instances: []\n", - "[INFO] [1712607560.486007]: Direct Instances: []\n", - "[INFO] [1712607560.486330]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712607560.486570]: -------------------\n", - "[INFO] [1712607560.486802]: SOMA.ClientRole \n", - "[INFO] [1712607560.487041]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712607560.487295]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.ClientRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.487540]: Subclasses: []\n", - "[INFO] [1712607560.487829]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.488305]: Instances: []\n", - "[INFO] [1712607560.488580]: Direct Instances: []\n", - "[INFO] [1712607560.488888]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712607560.489131]: -------------------\n", - "[INFO] [1712607560.489363]: SOMA.ServerRole \n", - "[INFO] [1712607560.489596]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712607560.489834]: Ancestors: {DUL.Object, SOMA.ServerRole, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.490083]: Subclasses: []\n", - "[INFO] [1712607560.490384]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.490867]: Instances: []\n", - "[INFO] [1712607560.491126]: Direct Instances: []\n", - "[INFO] [1712607560.491440]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712607560.491677]: -------------------\n", - "[INFO] [1712607560.491910]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712607560.492136]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607560.492370]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.492636]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712607560.492936]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.493422]: Instances: []\n", - "[INFO] [1712607560.493674]: Direct Instances: []\n", - "[INFO] [1712607560.493936]: Inverse Restrictions: []\n", - "[INFO] [1712607560.494175]: -------------------\n", - "[INFO] [1712607560.494407]: SOMA.Closing \n", - "[INFO] [1712607560.494633]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607560.494876]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Closing, DUL.EventType}\n", - "[INFO] [1712607560.495119]: Subclasses: []\n", - "[INFO] [1712607560.495414]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.495909]: Instances: []\n", - "[INFO] [1712607560.496171]: Direct Instances: []\n", - "[INFO] [1712607560.496418]: Inverse Restrictions: []\n", - "[INFO] [1712607560.496646]: -------------------\n", - "[INFO] [1712607560.496873]: SOMA.Delivering \n", - "[INFO] [1712607560.497106]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712607560.497364]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.Delivering, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.497621]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712607560.497920]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607560.498407]: Instances: []\n", - "[INFO] [1712607560.498680]: Direct Instances: []\n", - "[INFO] [1712607560.498946]: Inverse Restrictions: []\n", - "[INFO] [1712607560.499182]: -------------------\n", - "[INFO] [1712607560.499416]: SOMA.Fetching \n", - "[INFO] [1712607560.499644]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712607560.499886]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, SOMA.Fetching, owl.Thing, SOMA.PhysicalTask, SOMA.PhysicalAcquiring, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.500139]: Subclasses: []\n", - "[INFO] [1712607560.500440]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.500917]: Instances: []\n", - "[INFO] [1712607560.501193]: Direct Instances: []\n", - "[INFO] [1712607560.501455]: Inverse Restrictions: []\n", - "[INFO] [1712607560.501690]: -------------------\n", - "[INFO] [1712607560.501922]: SOMA.Lifting \n", - "[INFO] [1712607560.502152]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607560.502390]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Lifting, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.502636]: Subclasses: []\n", - "[INFO] [1712607560.502939]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.503417]: Instances: []\n", - "[INFO] [1712607560.503664]: Direct Instances: []\n", - "[INFO] [1712607560.503923]: Inverse Restrictions: []\n", - "[INFO] [1712607560.504158]: -------------------\n", - "[INFO] [1712607560.504388]: SOMA.Opening \n", - "[INFO] [1712607560.504614]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607560.504850]: Ancestors: {DUL.Object, SOMA.Opening, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.505100]: Subclasses: []\n", - "[INFO] [1712607560.505400]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.505875]: Instances: []\n", - "[INFO] [1712607560.506148]: Direct Instances: []\n", - "[INFO] [1712607560.506595]: Inverse Restrictions: []\n", - "[INFO] [1712607560.506959]: -------------------\n", - "[INFO] [1712607560.507312]: SOMA.Pulling \n", - "[INFO] [1712607560.507660]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607560.507925]: Ancestors: {SOMA.Pulling, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.508185]: Subclasses: []\n", - "[INFO] [1712607560.508489]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.509098]: Instances: []\n", - "[INFO] [1712607560.509394]: Direct Instances: []\n", - "[INFO] [1712607560.509775]: Inverse Restrictions: []\n", - "[INFO] [1712607560.510033]: -------------------\n", - "[INFO] [1712607560.510281]: SOMA.Pushing \n", - "[INFO] [1712607560.510520]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607560.510774]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", - "[INFO] [1712607560.511030]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712607560.511327]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.511808]: Instances: []\n", - "[INFO] [1712607560.512080]: Direct Instances: []\n", - "[INFO] [1712607560.512352]: Inverse Restrictions: []\n", - "[INFO] [1712607560.512590]: -------------------\n", - "[INFO] [1712607560.512821]: SOMA.Squeezing \n", - "[INFO] [1712607560.513051]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607560.513290]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Squeezing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.513542]: Subclasses: []\n", - "[INFO] [1712607560.513833]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.514314]: Instances: []\n", - "[INFO] [1712607560.514589]: Direct Instances: []\n", - "[INFO] [1712607560.514852]: Inverse Restrictions: []\n", - "[INFO] [1712607560.515086]: -------------------\n", - "[INFO] [1712607560.515316]: SOMA.Linkage \n", - "[INFO] [1712607560.515548]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712607560.515798]: Ancestors: {SOMA.Linkage, owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.516055]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712607560.516342]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.516832]: Instances: []\n", - "[INFO] [1712607560.517100]: Direct Instances: []\n", - "[INFO] [1712607560.517356]: Inverse Restrictions: []\n", - "[INFO] [1712607560.517586]: -------------------\n", - "[INFO] [1712607560.517814]: SOMA.Clumsiness \n", - "[INFO] [1712607560.518039]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712607560.518287]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Clumsiness, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.518533]: Subclasses: []\n", - "[INFO] [1712607560.518821]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.519293]: Instances: []\n", - "[INFO] [1712607560.519569]: Direct Instances: []\n", - "[INFO] [1712607560.519822]: Inverse Restrictions: []\n", - "[INFO] [1712607560.520056]: -------------------\n", - "[INFO] [1712607560.520285]: SOMA.CognitiveAgent \n", - "[INFO] [1712607560.520510]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712607560.520759]: Ancestors: {DUL.Agent, DUL.Object, owl.Thing, SOMA.CognitiveAgent, DUL.Entity}\n", - "[INFO] [1712607560.521007]: Subclasses: []\n", - "[INFO] [1712607560.521306]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.521787]: Instances: []\n", - "[INFO] [1712607560.522059]: Direct Instances: []\n", - "[INFO] [1712607560.522318]: Inverse Restrictions: []\n", - "[INFO] [1712607560.522553]: -------------------\n", - "[INFO] [1712607560.522784]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712607560.523009]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712607560.523239]: Ancestors: {DUL.Agent, DUL.Object, SOMA.SubCognitiveAgent, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607560.523484]: Subclasses: []\n", - "[INFO] [1712607560.523774]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.524255]: Instances: []\n", - "[INFO] [1712607560.524529]: Direct Instances: []\n", - "[INFO] [1712607560.524789]: Inverse Restrictions: []\n", - "[INFO] [1712607560.525023]: -------------------\n", - "[INFO] [1712607560.525253]: SOMA.Collision \n", - "[INFO] [1712607560.525479]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712607560.525716]: Ancestors: {DUL.Object, SOMA.Collision, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.525965]: Subclasses: []\n", - "[INFO] [1712607560.526326]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.526868]: Instances: []\n", - "[INFO] [1712607560.527161]: Direct Instances: []\n", - "[INFO] [1712607560.527441]: Inverse Restrictions: []\n", - "[INFO] [1712607560.527734]: -------------------\n", - "[INFO] [1712607560.527985]: SOMA.Extrinsic \n", - "[INFO] [1712607560.528224]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712607560.528466]: Ancestors: {owl.Thing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.528724]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712607560.529040]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.529591]: Instances: []\n", - "[INFO] [1712607560.529873]: Direct Instances: []\n", - "[INFO] [1712607560.530164]: Inverse Restrictions: []\n", - "[INFO] [1712607560.530412]: -------------------\n", - "[INFO] [1712607560.530651]: SOMA.ImperativeClause \n", - "[INFO] [1712607560.530889]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712607560.531134]: Ancestors: {DUL.Object, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, SOMA.ImperativeClause, DUL.SocialObject}\n", - "[INFO] [1712607560.531391]: Subclasses: []\n", - "[INFO] [1712607560.531694]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.532177]: Instances: []\n", - "[INFO] [1712607560.532431]: Direct Instances: []\n", - "[INFO] [1712607560.532731]: Inverse Restrictions: []\n", - "[INFO] [1712607560.532977]: -------------------\n", - "[INFO] [1712607560.533211]: SOMA.CommitedObject \n", - "[INFO] [1712607560.533439]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712607560.533682]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CommitedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.533931]: Subclasses: []\n", - "[INFO] [1712607560.534226]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.534725]: Instances: []\n", - "[INFO] [1712607560.535004]: Direct Instances: []\n", - "[INFO] [1712607560.535254]: Inverse Restrictions: []\n", - "[INFO] [1712607560.535489]: -------------------\n", - "[INFO] [1712607560.535718]: SOMA.ConnectedObject \n", - "[INFO] [1712607560.535945]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.536181]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.536448]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712607560.536743]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.537226]: Instances: []\n", - "[INFO] [1712607560.537502]: Direct Instances: []\n", - "[INFO] [1712607560.537857]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712607560.538101]: -------------------\n", - "[INFO] [1712607560.538343]: SOMA.CommunicationAction \n", - "[INFO] [1712607560.538578]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712607560.538824]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.CommunicationAction, DUL.Entity}\n", - "[INFO] [1712607560.539069]: Subclasses: []\n", - "[INFO] [1712607560.539361]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.539844]: Instances: []\n", - "[INFO] [1712607560.540124]: Direct Instances: []\n", - "[INFO] [1712607560.540426]: Inverse Restrictions: []\n", - "[INFO] [1712607560.540669]: -------------------\n", - "[INFO] [1712607560.540901]: SOMA.LinguisticObject \n", - "[INFO] [1712607560.541131]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712607560.541371]: Ancestors: {DUL.Object, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607560.541633]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712607560.541926]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.542429]: Instances: []\n", - "[INFO] [1712607560.542698]: Direct Instances: []\n", - "[INFO] [1712607560.543004]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712607560.543245]: -------------------\n", - "[INFO] [1712607560.543479]: SOMA.CommunicationReport \n", - "[INFO] [1712607560.543708]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607560.543947]: Ancestors: {DUL.Object, DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.544211]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712607560.544534]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.545022]: Instances: []\n", - "[INFO] [1712607560.545284]: Direct Instances: []\n", - "[INFO] [1712607560.545546]: Inverse Restrictions: []\n", - "[INFO] [1712607560.545782]: -------------------\n", - "[INFO] [1712607560.546014]: SOMA.Receiver \n", - "[INFO] [1712607560.546248]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712607560.546489]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Receiver, SOMA.ExperiencerRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607560.546738]: Subclasses: []\n", - "[INFO] [1712607560.547029]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.547527]: Instances: []\n", - "[INFO] [1712607560.547810]: Direct Instances: []\n", - "[INFO] [1712607560.548134]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607560.548380]: -------------------\n", - "[INFO] [1712607560.548620]: SOMA.Sender \n", - "[INFO] [1712607560.548857]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712607560.549112]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.Sender, DUL.SocialObject}\n", - "[INFO] [1712607560.549357]: Subclasses: []\n", - "[INFO] [1712607560.549649]: Properties: [DUL.hasTask, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.550136]: Instances: []\n", - "[INFO] [1712607560.550413]: Direct Instances: []\n", - "[INFO] [1712607560.550738]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607560.550976]: -------------------\n", - "[INFO] [1712607560.551208]: SOMA.CommunicationTopic \n", - "[INFO] [1712607560.551448]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712607560.551706]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.551963]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607560.552256]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.552777]: Instances: []\n", - "[INFO] [1712607560.553047]: Direct Instances: []\n", - "[INFO] [1712607560.553308]: Inverse Restrictions: []\n", - "[INFO] [1712607560.553543]: -------------------\n", - "[INFO] [1712607560.553777]: SOMA.ResourceRole \n", - "[INFO] [1712607560.554017]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607560.554291]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.554564]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712607560.554868]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.555424]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607560.555697]: Direct Instances: []\n", - "[INFO] [1712607560.555962]: Inverse Restrictions: []\n", - "[INFO] [1712607560.556195]: -------------------\n", - "[INFO] [1712607560.556422]: SOMA.Composing \n", - "[INFO] [1712607560.556651]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712607560.556888]: Ancestors: {SOMA.Composing, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.557139]: Subclasses: []\n", - "[INFO] [1712607560.557429]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.557924]: Instances: []\n", - "[INFO] [1712607560.558196]: Direct Instances: []\n", - "[INFO] [1712607560.558488]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712607560.558729]: -------------------\n", - "[INFO] [1712607560.558973]: SOMA.Computer_Language \n", - "[INFO] [1712607560.559561]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712607560.560042]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607560.560490]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712607560.560959]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.561682]: Instances: []\n", - "[INFO] [1712607560.562122]: Direct Instances: []\n", - "[INFO] [1712607560.562589]: Inverse Restrictions: []\n", - "[INFO] [1712607560.562995]: -------------------\n", - "[INFO] [1712607560.563426]: SOMA.FormalLanguage \n", - "[INFO] [1712607560.563849]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712607560.564220]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607560.564585]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607560.564976]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.565602]: Instances: []\n", - "[INFO] [1712607560.565968]: Direct Instances: []\n", - "[INFO] [1712607560.566401]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712607560.566737]: -------------------\n", - "[INFO] [1712607560.567068]: SOMA.Computer_Program \n", - "[INFO] [1712607560.567406]: Super classes: [owl.Thing]\n", - "[INFO] [1712607560.567744]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712607560.568095]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712607560.568480]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607560.569056]: Instances: []\n", - "[INFO] [1712607560.569421]: Direct Instances: []\n", - "[INFO] [1712607560.569891]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712607560.570241]: -------------------\n", - "[INFO] [1712607560.570577]: SOMA.Programming_Language \n", - "[INFO] [1712607560.570907]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712607560.571242]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.Language, SOMA.FormalLanguage, DUL.Entity, SOMA.Programming_Language, DUL.SocialObject}\n", - "[INFO] [1712607560.571602]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712607560.571986]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.572559]: Instances: []\n", - "[INFO] [1712607560.572895]: Direct Instances: []\n", - "[INFO] [1712607560.573291]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712607560.573632]: -------------------\n", - "[INFO] [1712607560.573961]: SOMA.Conclusion \n", - "[INFO] [1712607560.574291]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712607560.574628]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Conclusion, DUL.Role, SOMA.Knowledge, owl.Thing, SOMA.CreatedObject, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.574960]: Subclasses: []\n", - "[INFO] [1712607560.575334]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.575906]: Instances: []\n", - "[INFO] [1712607560.576249]: Direct Instances: []\n", - "[INFO] [1712607560.576649]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607560.576982]: -------------------\n", - "[INFO] [1712607560.577310]: SOMA.CreatedObject \n", - "[INFO] [1712607560.577630]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.577990]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.CreatedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.578332]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712607560.578704]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.579289]: Instances: []\n", - "[INFO] [1712607560.579646]: Direct Instances: []\n", - "[INFO] [1712607560.580024]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712607560.580374]: -------------------\n", - "[INFO] [1712607560.580718]: SOMA.Knowledge \n", - "[INFO] [1712607560.581044]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712607560.581372]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.581714]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712607560.582078]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.582668]: Instances: []\n", - "[INFO] [1712607560.583021]: Direct Instances: []\n", - "[INFO] [1712607560.583536]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712607560.583878]: -------------------\n", - "[INFO] [1712607560.584207]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712607560.584545]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712607560.584879]: Ancestors: {DUL.Object, DUL.Description, SOMA.ConditionalSuccedence, SOMA.Succedence, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.585204]: Subclasses: []\n", - "[INFO] [1712607560.585581]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.586179]: Instances: []\n", - "[INFO] [1712607560.586562]: Direct Instances: []\n", - "[INFO] [1712607560.586900]: Inverse Restrictions: []\n", - "[INFO] [1712607560.587224]: -------------------\n", - "[INFO] [1712607560.587544]: SOMA.Configuration \n", - "[INFO] [1712607560.587873]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712607560.588209]: Ancestors: {DUL.Object, SOMA.Configuration, DUL.Description, owl.Thing, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.588540]: Subclasses: []\n", - "[INFO] [1712607560.588917]: Properties: [rdf-schema.comment, DUL.describes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.589503]: Instances: []\n", - "[INFO] [1712607560.589854]: Direct Instances: []\n", - "[INFO] [1712607560.590189]: Inverse Restrictions: []\n", - "[INFO] [1712607560.590514]: -------------------\n", - "[INFO] [1712607560.590835]: SOMA.Connectivity \n", - "[INFO] [1712607560.591167]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712607560.591506]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.591845]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712607560.592218]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.592798]: Instances: []\n", - "[INFO] [1712607560.593140]: Direct Instances: []\n", - "[INFO] [1712607560.593521]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712607560.593861]: -------------------\n", - "[INFO] [1712607560.594195]: SOMA.ContactState \n", - "[INFO] [1712607560.594552]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712607560.594886]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ContactState, DUL.SocialObject}\n", - "[INFO] [1712607560.595222]: Subclasses: []\n", - "[INFO] [1712607560.595608]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.596188]: Instances: []\n", - "[INFO] [1712607560.596536]: Direct Instances: []\n", - "[INFO] [1712607560.596872]: Inverse Restrictions: []\n", - "[INFO] [1712607560.597203]: -------------------\n", - "[INFO] [1712607560.597533]: SOMA.Container \n", - "[INFO] [1712607560.597864]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712607560.598205]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.Container, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607560.598547]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", - "[INFO] [1712607560.598940]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.599521]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607560.599877]: Direct Instances: []\n", - "[INFO] [1712607560.600304]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712607560.600631]: -------------------\n", - "[INFO] [1712607560.600953]: SOMA.Containment \n", - "[INFO] [1712607560.601286]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712607560.601626]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", - "[INFO] [1712607560.601977]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712607560.602398]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.602961]: Instances: []\n", - "[INFO] [1712607560.603277]: Direct Instances: []\n", - "[INFO] [1712607560.603685]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712607560.603938]: -------------------\n", - "[INFO] [1712607560.604181]: SOMA.IncludedObject \n", - "[INFO] [1712607560.604417]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.604667]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.604936]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712607560.605236]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.605733]: Instances: []\n", - "[INFO] [1712607560.606021]: Direct Instances: []\n", - "[INFO] [1712607560.606324]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712607560.606565]: -------------------\n", - "[INFO] [1712607560.606802]: SOMA.ContainmentState \n", - "[INFO] [1712607560.607049]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712607560.607300]: Ancestors: {DUL.Object, DUL.Entity, SOMA.StateType, SOMA.ContainmentState, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607560.607558]: Subclasses: []\n", - "[INFO] [1712607560.607853]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.608336]: Instances: []\n", - "[INFO] [1712607560.608585]: Direct Instances: []\n", - "[INFO] [1712607560.608834]: Inverse Restrictions: []\n", - "[INFO] [1712607560.609072]: -------------------\n", - "[INFO] [1712607560.609303]: SOMA.FunctionalControl \n", - "[INFO] [1712607560.609538]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712607560.609772]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.610036]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712607560.610338]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.610823]: Instances: []\n", - "[INFO] [1712607560.611148]: Direct Instances: []\n", - "[INFO] [1712607560.611418]: Inverse Restrictions: []\n", - "[INFO] [1712607560.611654]: -------------------\n", - "[INFO] [1712607560.611886]: SOMA.ContainmentTheory \n", - "[INFO] [1712607560.612149]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712607560.612420]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.SocialObject, SOMA.ContainmentTheory}\n", - "[INFO] [1712607560.612675]: Subclasses: []\n", - "[INFO] [1712607560.612972]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.613472]: Instances: []\n", - "[INFO] [1712607560.613740]: Direct Instances: []\n", - "[INFO] [1712607560.613990]: Inverse Restrictions: []\n", - "[INFO] [1712607560.614233]: -------------------\n", - "[INFO] [1712607560.614465]: SOMA.ControlTheory \n", - "[INFO] [1712607560.614691]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712607560.614942]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.615198]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712607560.615486]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.615980]: Instances: []\n", - "[INFO] [1712607560.616264]: Direct Instances: []\n", - "[INFO] [1712607560.616528]: Inverse Restrictions: []\n", - "[INFO] [1712607560.616771]: -------------------\n", - "[INFO] [1712607560.617002]: SOMA.ContinuousJoint \n", - "[INFO] [1712607560.617232]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712607560.617472]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.ContinuousJoint, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607560.617728]: Subclasses: []\n", - "[INFO] [1712607560.618020]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.618507]: Instances: []\n", - "[INFO] [1712607560.618778]: Direct Instances: []\n", - "[INFO] [1712607560.619031]: Inverse Restrictions: []\n", - "[INFO] [1712607560.619264]: -------------------\n", - "[INFO] [1712607560.619493]: SOMA.HingeJoint \n", - "[INFO] [1712607560.619719]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712607560.619951]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607560.620213]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712607560.620503]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.620983]: Instances: []\n", - "[INFO] [1712607560.621254]: Direct Instances: []\n", - "[INFO] [1712607560.621519]: Inverse Restrictions: []\n", - "[INFO] [1712607560.621754]: -------------------\n", - "[INFO] [1712607560.621985]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712607560.622221]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712607560.622473]: Ancestors: {DUL.Object, DUL.Description, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.622734]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712607560.623029]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.623518]: Instances: []\n", - "[INFO] [1712607560.623793]: Direct Instances: []\n", - "[INFO] [1712607560.624054]: Inverse Restrictions: []\n", - "[INFO] [1712607560.624288]: -------------------\n", - "[INFO] [1712607560.624519]: SOMA.Cover \n", - "[INFO] [1712607560.624744]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712607560.624984]: Ancestors: {DUL.SocialObject, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, DUL.Entity, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, SOMA.Cover}\n", - "[INFO] [1712607560.625236]: Subclasses: []\n", - "[INFO] [1712607560.625525]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.626005]: Instances: []\n", - "[INFO] [1712607560.626261]: Direct Instances: []\n", - "[INFO] [1712607560.626555]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712607560.626802]: -------------------\n", - "[INFO] [1712607560.627040]: SOMA.Coverage \n", - "[INFO] [1712607560.627279]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712607560.627523]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.Coverage, DUL.Quality}\n", - "[INFO] [1712607560.627815]: Subclasses: []\n", - "[INFO] [1712607560.628127]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.628618]: Instances: []\n", - "[INFO] [1712607560.628889]: Direct Instances: []\n", - "[INFO] [1712607560.629179]: Inverse Restrictions: []\n", - "[INFO] [1712607560.629423]: -------------------\n", - "[INFO] [1712607560.629657]: SOMA.CoveredObject \n", - "[INFO] [1712607560.629887]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712607560.630128]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.CoveredObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.630395]: Subclasses: []\n", - "[INFO] [1712607560.630692]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.631173]: Instances: []\n", - "[INFO] [1712607560.631446]: Direct Instances: []\n", - "[INFO] [1712607560.631737]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712607560.631972]: -------------------\n", - "[INFO] [1712607560.632202]: SOMA.CoverageTheory \n", - "[INFO] [1712607560.632429]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712607560.632666]: Ancestors: {DUL.Object, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.CoverageTheory, DUL.SocialObject}\n", - "[INFO] [1712607560.632915]: Subclasses: []\n", - "[INFO] [1712607560.633207]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.633690]: Instances: []\n", - "[INFO] [1712607560.633952]: Direct Instances: []\n", - "[INFO] [1712607560.634198]: Inverse Restrictions: []\n", - "[INFO] [1712607560.634440]: -------------------\n", - "[INFO] [1712607560.634676]: SOMA.CoveringTheory \n", - "[INFO] [1712607560.634913]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712607560.635153]: Ancestors: {DUL.Object, SOMA.CoveringTheory, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.635388]: Subclasses: []\n", - "[INFO] [1712607560.635689]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.636176]: Instances: []\n", - "[INFO] [1712607560.636432]: Direct Instances: []\n", - "[INFO] [1712607560.636673]: Inverse Restrictions: []\n", - "[INFO] [1712607560.637044]: -------------------\n", - "[INFO] [1712607560.637480]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712607560.637763]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712607560.638023]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.638301]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712607560.638603]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.639118]: Instances: []\n", - "[INFO] [1712607560.639388]: Direct Instances: []\n", - "[INFO] [1712607560.639656]: Inverse Restrictions: []\n", - "[INFO] [1712607560.639892]: -------------------\n", - "[INFO] [1712607560.640125]: SOMA.CrackingTheory \n", - "[INFO] [1712607560.640373]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712607560.640641]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, SOMA.CrackingTheory, DUL.SocialObject}\n", - "[INFO] [1712607560.640891]: Subclasses: []\n", - "[INFO] [1712607560.641199]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.641684]: Instances: []\n", - "[INFO] [1712607560.641943]: Direct Instances: []\n", - "[INFO] [1712607560.642212]: Inverse Restrictions: []\n", - "[INFO] [1712607560.642450]: -------------------\n", - "[INFO] [1712607560.642682]: SOMA.Creation \n", - "[INFO] [1712607560.642913]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712607560.643152]: Ancestors: {DUL.Object, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, SOMA.Creation, DUL.SocialObject}\n", - "[INFO] [1712607560.643403]: Subclasses: []\n", - "[INFO] [1712607560.643698]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.644174]: Instances: []\n", - "[INFO] [1712607560.644480]: Direct Instances: []\n", - "[INFO] [1712607560.644729]: Inverse Restrictions: []\n", - "[INFO] [1712607560.644979]: -------------------\n", - "[INFO] [1712607560.645215]: SOMA.Insertion \n", - "[INFO] [1712607560.645452]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712607560.645747]: Ancestors: {SOMA.Insertion, owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", - "[INFO] [1712607560.646075]: Subclasses: []\n", - "[INFO] [1712607560.646403]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.646901]: Instances: []\n", - "[INFO] [1712607560.647167]: Direct Instances: []\n", - "[INFO] [1712607560.647498]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712607560.647748]: -------------------\n", - "[INFO] [1712607560.647988]: SOMA.DesignedFurniture \n", - "[INFO] [1712607560.648221]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712607560.648461]: Ancestors: {SOMA.DesignedFurniture, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607560.648729]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712607560.649025]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.649530]: Instances: []\n", - "[INFO] [1712607560.649799]: Direct Instances: []\n", - "[INFO] [1712607560.650071]: Inverse Restrictions: []\n", - "[INFO] [1712607560.650454]: -------------------\n", - "[INFO] [1712607560.650766]: SOMA.Cuttability \n", - "[INFO] [1712607560.651046]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712607560.651332]: Ancestors: {SOMA.Cuttability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.651598]: Subclasses: []\n", - "[INFO] [1712607560.651909]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.652420]: Instances: []\n", - "[INFO] [1712607560.652688]: Direct Instances: []\n", - "[INFO] [1712607560.652940]: Inverse Restrictions: []\n", - "[INFO] [1712607560.653177]: -------------------\n", - "[INFO] [1712607560.653409]: SOMA.Tool \n", - "[INFO] [1712607560.653644]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712607560.653898]: Ancestors: {SOMA.Tool, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.654154]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712607560.654450]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.654937]: Instances: []\n", - "[INFO] [1712607560.655213]: Direct Instances: []\n", - "[INFO] [1712607560.655513]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712607560.655761]: -------------------\n", - "[INFO] [1712607560.656003]: SOMA.Cutting \n", - "[INFO] [1712607560.656235]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712607560.656485]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.656751]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712607560.657045]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.657541]: Instances: []\n", - "[INFO] [1712607560.657811]: Direct Instances: []\n", - "[INFO] [1712607560.658067]: Inverse Restrictions: []\n", - "[INFO] [1712607560.658313]: -------------------\n", - "[INFO] [1712607560.658552]: SOMA.DesignedTool \n", - "[INFO] [1712607560.658785]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712607560.659043]: Ancestors: {DUL.Object, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607560.659297]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712607560.659599]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.660137]: Instances: []\n", - "[INFO] [1712607560.660399]: Direct Instances: []\n", - "[INFO] [1712607560.660649]: Inverse Restrictions: []\n", - "[INFO] [1712607560.660889]: -------------------\n", - "[INFO] [1712607560.661156]: SOMA.Shaping \n", - "[INFO] [1712607560.661399]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712607560.661658]: Ancestors: {SOMA.Shaping, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.661904]: Subclasses: []\n", - "[INFO] [1712607560.662202]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.662686]: Instances: []\n", - "[INFO] [1712607560.662964]: Direct Instances: []\n", - "[INFO] [1712607560.663250]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712607560.663493]: -------------------\n", - "[INFO] [1712607560.663727]: SOMA.Database \n", - "[INFO] [1712607560.663955]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607560.664217]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", - "[INFO] [1712607560.664480]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712607560.664774]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.665271]: Instances: []\n", - "[INFO] [1712607560.665555]: Direct Instances: []\n", - "[INFO] [1712607560.665828]: Inverse Restrictions: []\n", - "[INFO] [1712607560.666072]: -------------------\n", - "[INFO] [1712607560.666323]: SOMA.SoftwareRole \n", - "[INFO] [1712607560.666561]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712607560.666801]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.667073]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712607560.667375]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.667888]: Instances: []\n", - "[INFO] [1712607560.668162]: Direct Instances: []\n", - "[INFO] [1712607560.668468]: Inverse Restrictions: []\n", - "[INFO] [1712607560.668705]: -------------------\n", - "[INFO] [1712607560.668936]: SOMA.Deciding \n", - "[INFO] [1712607560.669165]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607560.669401]: Ancestors: {owl.Thing, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712607560.669667]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712607560.669961]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.670465]: Instances: []\n", - "[INFO] [1712607560.670727]: Direct Instances: []\n", - "[INFO] [1712607560.670991]: Inverse Restrictions: []\n", - "[INFO] [1712607560.671226]: -------------------\n", - "[INFO] [1712607560.671460]: SOMA.DerivingInformation \n", - "[INFO] [1712607560.671700]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712607560.671948]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712607560.672215]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712607560.672509]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712607560.673016]: Instances: []\n", - "[INFO] [1712607560.673303]: Direct Instances: []\n", - "[INFO] [1712607560.673574]: Inverse Restrictions: []\n", - "[INFO] [1712607560.673812]: -------------------\n", - "[INFO] [1712607560.674046]: SOMA.DeductiveReasoning \n", - "[INFO] [1712607560.674291]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712607560.674542]: Ancestors: {SOMA.DeductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607560.674798]: Subclasses: []\n", - "[INFO] [1712607560.675089]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.675585]: Instances: []\n", - "[INFO] [1712607560.675845]: Direct Instances: []\n", - "[INFO] [1712607560.676092]: Inverse Restrictions: []\n", - "[INFO] [1712607560.676322]: -------------------\n", - "[INFO] [1712607560.676550]: SOMA.Deformation \n", - "[INFO] [1712607560.676794]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712607560.677039]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, SOMA.Deformation, DUL.EventType}\n", - "[INFO] [1712607560.677277]: Subclasses: []\n", - "[INFO] [1712607560.677573]: Properties: [SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.678120]: Instances: []\n", - "[INFO] [1712607560.678550]: Direct Instances: []\n", - "[INFO] [1712607560.678883]: Inverse Restrictions: []\n", - "[INFO] [1712607560.679172]: -------------------\n", - "[INFO] [1712607560.679429]: SOMA.ShapedObject \n", - "[INFO] [1712607560.679691]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712607560.679950]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ShapedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.680200]: Subclasses: []\n", - "[INFO] [1712607560.680514]: Properties: [SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.681015]: Instances: []\n", - "[INFO] [1712607560.681279]: Direct Instances: []\n", - "[INFO] [1712607560.681599]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712607560.681862]: -------------------\n", - "[INFO] [1712607560.682103]: SOMA.FluidFlow \n", - "[INFO] [1712607560.682353]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712607560.682605]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.FluidFlow, SOMA.Motion}\n", - "[INFO] [1712607560.682846]: Subclasses: []\n", - "[INFO] [1712607560.683140]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.683639]: Instances: []\n", - "[INFO] [1712607560.683897]: Direct Instances: []\n", - "[INFO] [1712607560.684154]: Inverse Restrictions: []\n", - "[INFO] [1712607560.684385]: -------------------\n", - "[INFO] [1712607560.684615]: SOMA.Shifting \n", - "[INFO] [1712607560.684862]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712607560.685116]: Ancestors: {SOMA.Shifting, SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.685362]: Subclasses: []\n", - "[INFO] [1712607560.685652]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.686153]: Instances: []\n", - "[INFO] [1712607560.686436]: Direct Instances: []\n", - "[INFO] [1712607560.686756]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712607560.686994]: -------------------\n", - "[INFO] [1712607560.687226]: SOMA.DependentPlace \n", - "[INFO] [1712607560.687466]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712607560.687721]: Ancestors: {DUL.Object, owl.Thing, DUL.Entity, SOMA.DependentPlace, SOMA.Feature}\n", - "[INFO] [1712607560.687966]: Subclasses: []\n", - "[INFO] [1712607560.688258]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.688735]: Instances: []\n", - "[INFO] [1712607560.689003]: Direct Instances: []\n", - "[INFO] [1712607560.689261]: Inverse Restrictions: []\n", - "[INFO] [1712607560.689493]: -------------------\n", - "[INFO] [1712607560.689723]: SOMA.Deposit \n", - "[INFO] [1712607560.689953]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712607560.690206]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Deposit, DUL.SocialObject}\n", - "[INFO] [1712607560.690454]: Subclasses: []\n", - "[INFO] [1712607560.690739]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.691215]: Instances: []\n", - "[INFO] [1712607560.691494]: Direct Instances: []\n", - "[INFO] [1712607560.691794]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712607560.692031]: -------------------\n", - "[INFO] [1712607560.692261]: SOMA.DepositedObject \n", - "[INFO] [1712607560.692488]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.692728]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.DepositedObject, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.692980]: Subclasses: []\n", - "[INFO] [1712607560.693271]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.693751]: Instances: []\n", - "[INFO] [1712607560.694020]: Direct Instances: []\n", - "[INFO] [1712607560.694332]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712607560.694594]: -------------------\n", - "[INFO] [1712607560.694827]: SOMA.InformationAcquisition \n", - "[INFO] [1712607560.695053]: Super classes: [owl.Thing]\n", - "[INFO] [1712607560.695284]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712607560.695575]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712607560.695879]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712607560.696409]: Instances: []\n", - "[INFO] [1712607560.696683]: Direct Instances: []\n", - "[INFO] [1712607560.696990]: Inverse Restrictions: []\n", - "[INFO] [1712607560.697225]: -------------------\n", - "[INFO] [1712607560.697453]: SOMA.Premise \n", - "[INFO] [1712607560.697681]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712607560.697932]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.Premise, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.698178]: Subclasses: []\n", - "[INFO] [1712607560.698468]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.698950]: Instances: []\n", - "[INFO] [1712607560.699222]: Direct Instances: []\n", - "[INFO] [1712607560.699538]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607560.699779]: -------------------\n", - "[INFO] [1712607560.700011]: SOMA.FunctionalPart \n", - "[INFO] [1712607560.700248]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712607560.700497]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607560.700757]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712607560.701045]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.701576]: Instances: []\n", - "[INFO] [1712607560.701858]: Direct Instances: []\n", - "[INFO] [1712607560.702122]: Inverse Restrictions: []\n", - "[INFO] [1712607560.702362]: -------------------\n", - "[INFO] [1712607560.702593]: SOMA.Graspability \n", - "[INFO] [1712607560.702822]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712607560.703082]: Ancestors: {SOMA.Graspability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.703330]: Subclasses: []\n", - "[INFO] [1712607560.703626]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.704114]: Instances: []\n", - "[INFO] [1712607560.704392]: Direct Instances: []\n", - "[INFO] [1712607560.704679]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712607560.704918]: -------------------\n", - "[INFO] [1712607560.705149]: SOMA.Destination \n", - "[INFO] [1712607560.705377]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712607560.705614]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Destination, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.705879]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712607560.706180]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.706673]: Instances: []\n", - "[INFO] [1712607560.706930]: Direct Instances: []\n", - "[INFO] [1712607560.707257]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712607560.707495]: -------------------\n", - "[INFO] [1712607560.707726]: SOMA.Location \n", - "[INFO] [1712607560.707952]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712607560.708204]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.708460]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712607560.708746]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.709232]: Instances: []\n", - "[INFO] [1712607560.709499]: Direct Instances: []\n", - "[INFO] [1712607560.709760]: Inverse Restrictions: []\n", - "[INFO] [1712607560.709991]: -------------------\n", - "[INFO] [1712607560.710223]: SOMA.DestroyedObject \n", - "[INFO] [1712607560.710450]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.710702]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.DestroyedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.710952]: Subclasses: []\n", - "[INFO] [1712607560.711260]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.711746]: Instances: []\n", - "[INFO] [1712607560.712024]: Direct Instances: []\n", - "[INFO] [1712607560.712332]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712607560.712582]: -------------------\n", - "[INFO] [1712607560.712817]: SOMA.Destruction \n", - "[INFO] [1712607560.713051]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712607560.713300]: Ancestors: {DUL.Object, DUL.EventType, SOMA.Destruction, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.713549]: Subclasses: []\n", - "[INFO] [1712607560.713844]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.714326]: Instances: []\n", - "[INFO] [1712607560.714605]: Direct Instances: []\n", - "[INFO] [1712607560.714862]: Inverse Restrictions: []\n", - "[INFO] [1712607560.715096]: -------------------\n", - "[INFO] [1712607560.715328]: SOMA.DetectedObject \n", - "[INFO] [1712607560.715557]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.715807]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.DetectedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.716050]: Subclasses: []\n", - "[INFO] [1712607560.716343]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.716823]: Instances: []\n", - "[INFO] [1712607560.717095]: Direct Instances: []\n", - "[INFO] [1712607560.717340]: Inverse Restrictions: []\n", - "[INFO] [1712607560.717570]: -------------------\n", - "[INFO] [1712607560.717795]: SOMA.DeviceState \n", - "[INFO] [1712607560.718019]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607560.718419]: Ancestors: {SOMA.DeviceState, SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607560.718862]: Subclasses: []\n", - "[INFO] [1712607560.719301]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.719917]: Instances: []\n", - "[INFO] [1712607560.720301]: Direct Instances: []\n", - "[INFO] [1712607560.720587]: Inverse Restrictions: []\n", - "[INFO] [1712607560.720838]: -------------------\n", - "[INFO] [1712607560.721079]: SOMA.DeviceStateRange \n", - "[INFO] [1712607560.721316]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607560.721555]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.721809]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712607560.722129]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.722636]: Instances: []\n", - "[INFO] [1712607560.722897]: Direct Instances: []\n", - "[INFO] [1712607560.723156]: Inverse Restrictions: []\n", - "[INFO] [1712607560.723384]: -------------------\n", - "[INFO] [1712607560.723612]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712607560.723848]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712607560.724087]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceTurnedOff, DUL.Region}\n", - "[INFO] [1712607560.724334]: Subclasses: []\n", - "[INFO] [1712607560.724629]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.725112]: Instances: []\n", - "[INFO] [1712607560.725364]: Direct Instances: []\n", - "[INFO] [1712607560.725651]: Inverse Restrictions: []\n", - "[INFO] [1712607560.725895]: -------------------\n", - "[INFO] [1712607560.726135]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712607560.726366]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712607560.726601]: Ancestors: {SOMA.DeviceStateRange, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceTurnedOn, DUL.Region}\n", - "[INFO] [1712607560.726837]: Subclasses: []\n", - "[INFO] [1712607560.727118]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.727610]: Instances: []\n", - "[INFO] [1712607560.727914]: Direct Instances: []\n", - "[INFO] [1712607560.728219]: Inverse Restrictions: []\n", - "[INFO] [1712607560.728458]: -------------------\n", - "[INFO] [1712607560.728692]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712607560.728939]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712607560.729179]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, owl.Thing, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.729446]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712607560.729734]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.730227]: Instances: []\n", - "[INFO] [1712607560.730483]: Direct Instances: []\n", - "[INFO] [1712607560.730740]: Inverse Restrictions: []\n", - "[INFO] [1712607560.730978]: -------------------\n", - "[INFO] [1712607560.731212]: SOMA.Dicing \n", - "[INFO] [1712607560.731439]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712607560.731680]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, SOMA.Dicing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.731921]: Subclasses: []\n", - "[INFO] [1712607560.732215]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.732699]: Instances: []\n", - "[INFO] [1712607560.732945]: Direct Instances: []\n", - "[INFO] [1712607560.733189]: Inverse Restrictions: []\n", - "[INFO] [1712607560.733420]: -------------------\n", - "[INFO] [1712607560.733660]: SOMA.DirectedMotion \n", - "[INFO] [1712607560.733889]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712607560.734128]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607560.734387]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712607560.734680]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.735216]: Instances: []\n", - "[INFO] [1712607560.735487]: Direct Instances: []\n", - "[INFO] [1712607560.735752]: Inverse Restrictions: []\n", - "[INFO] [1712607560.735986]: -------------------\n", - "[INFO] [1712607560.736218]: SOMA.UndirectedMotion \n", - "[INFO] [1712607560.736459]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712607560.736705]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, SOMA.UndirectedMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607560.736946]: Subclasses: []\n", - "[INFO] [1712607560.737233]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.737730]: Instances: []\n", - "[INFO] [1712607560.737989]: Direct Instances: []\n", - "[INFO] [1712607560.738246]: Inverse Restrictions: []\n", - "[INFO] [1712607560.738475]: -------------------\n", - "[INFO] [1712607560.738714]: SOMA.Dirty \n", - "[INFO] [1712607560.738945]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712607560.739180]: Ancestors: {SOMA.CleanlinessRegion, DUL.Abstract, SOMA.Dirty, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.739419]: Subclasses: []\n", - "[INFO] [1712607560.739701]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.740196]: Instances: []\n", - "[INFO] [1712607560.740458]: Direct Instances: []\n", - "[INFO] [1712607560.740703]: Inverse Restrictions: []\n", - "[INFO] [1712607560.740932]: -------------------\n", - "[INFO] [1712607560.741164]: SOMA.Discourse \n", - "[INFO] [1712607560.741405]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712607560.741647]: Ancestors: {DUL.Object, SOMA.Discourse, DUL.Entity, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.741891]: Subclasses: []\n", - "[INFO] [1712607560.742205]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.742800]: Instances: []\n", - "[INFO] [1712607560.743110]: Direct Instances: []\n", - "[INFO] [1712607560.743379]: Inverse Restrictions: []\n", - "[INFO] [1712607560.743625]: -------------------\n", - "[INFO] [1712607560.743865]: SOMA.Distancing \n", - "[INFO] [1712607560.744100]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712607560.744393]: Ancestors: {DUL.Object, SOMA.Distancing, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.744650]: Subclasses: []\n", - "[INFO] [1712607560.744943]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.745424]: Instances: []\n", - "[INFO] [1712607560.745703]: Direct Instances: []\n", - "[INFO] [1712607560.745950]: Inverse Restrictions: []\n", - "[INFO] [1712607560.746192]: -------------------\n", - "[INFO] [1712607560.746428]: SOMA.Dreaming \n", - "[INFO] [1712607560.746656]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607560.746894]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Dreaming, SOMA.DerivingInformation}\n", - "[INFO] [1712607560.747144]: Subclasses: []\n", - "[INFO] [1712607560.747432]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.747911]: Instances: []\n", - "[INFO] [1712607560.748158]: Direct Instances: []\n", - "[INFO] [1712607560.748406]: Inverse Restrictions: []\n", - "[INFO] [1712607560.748640]: -------------------\n", - "[INFO] [1712607560.748870]: SOMA.Driving \n", - "[INFO] [1712607560.749096]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607560.749335]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, DUL.EventType, SOMA.Driving, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607560.749565]: Subclasses: []\n", - "[INFO] [1712607560.749866]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.750352]: Instances: []\n", - "[INFO] [1712607560.750629]: Direct Instances: []\n", - "[INFO] [1712607560.750884]: Inverse Restrictions: []\n", - "[INFO] [1712607560.751123]: -------------------\n", - "[INFO] [1712607560.751365]: SOMA.Flying \n", - "[INFO] [1712607560.751596]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607560.751840]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Flying, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607560.752094]: Subclasses: []\n", - "[INFO] [1712607560.752394]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.752885]: Instances: []\n", - "[INFO] [1712607560.753149]: Direct Instances: []\n", - "[INFO] [1712607560.753407]: Inverse Restrictions: []\n", - "[INFO] [1712607560.753638]: -------------------\n", - "[INFO] [1712607560.753866]: SOMA.Swimming \n", - "[INFO] [1712607560.754092]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607560.754349]: Ancestors: {DUL.Object, SOMA.DirectedMotion, SOMA.Swimming, DUL.Entity, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607560.754597]: Subclasses: []\n", - "[INFO] [1712607560.754893]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.755376]: Instances: []\n", - "[INFO] [1712607560.755650]: Direct Instances: []\n", - "[INFO] [1712607560.755914]: Inverse Restrictions: []\n", - "[INFO] [1712607560.756151]: -------------------\n", - "[INFO] [1712607560.756382]: SOMA.Walking \n", - "[INFO] [1712607560.756611]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607560.756854]: Ancestors: {SOMA.Walking, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607560.757105]: Subclasses: []\n", - "[INFO] [1712607560.757393]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.757887]: Instances: []\n", - "[INFO] [1712607560.758153]: Direct Instances: []\n", - "[INFO] [1712607560.758410]: Inverse Restrictions: []\n", - "[INFO] [1712607560.758643]: -------------------\n", - "[INFO] [1712607560.758869]: SOMA.Dropping \n", - "[INFO] [1712607560.759099]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607560.759346]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Dropping, DUL.EventType}\n", - "[INFO] [1712607560.759586]: Subclasses: []\n", - "[INFO] [1712607560.759877]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.760370]: Instances: []\n", - "[INFO] [1712607560.760931]: Direct Instances: []\n", - "[INFO] [1712607560.761494]: Inverse Restrictions: []\n", - "[INFO] [1712607560.761774]: -------------------\n", - "[INFO] [1712607560.762016]: SOMA.Placing \n", - "[INFO] [1712607560.762359]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607560.762652]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Placing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.762913]: Subclasses: []\n", - "[INFO] [1712607560.763227]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.763729]: Instances: [SOMA.placing]\n", - "[INFO] [1712607560.763995]: Direct Instances: [SOMA.placing]\n", - "[INFO] [1712607560.764251]: Inverse Restrictions: []\n", - "[INFO] [1712607560.764491]: -------------------\n", - "[INFO] [1712607560.764727]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712607560.764971]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712607560.765234]: Ancestors: {DUL.Object, DUL.Description, SOMA.ImageSchemaTheory, owl.Thing, SOMA.ESTSchemaTheory, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.765486]: Subclasses: []\n", - "[INFO] [1712607560.765787]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.766274]: Instances: []\n", - "[INFO] [1712607560.766549]: Direct Instances: []\n", - "[INFO] [1712607560.766808]: Inverse Restrictions: []\n", - "[INFO] [1712607560.767051]: -------------------\n", - "[INFO] [1712607560.767285]: SOMA.ExistingObjectRole \n", - "[INFO] [1712607560.767520]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607560.767760]: Ancestors: {DUL.Object, SOMA.ExistingObjectRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.768016]: Subclasses: []\n", - "[INFO] [1712607560.768310]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.768792]: Instances: []\n", - "[INFO] [1712607560.769040]: Direct Instances: []\n", - "[INFO] [1712607560.769329]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712607560.769571]: -------------------\n", - "[INFO] [1712607560.769801]: SOMA.Effort \n", - "[INFO] [1712607560.770029]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712607560.770395]: Ancestors: {DUL.Object, SOMA.Effort, DUL.Parameter, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.770736]: Subclasses: []\n", - "[INFO] [1712607560.771073]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.771593]: Instances: []\n", - "[INFO] [1712607560.771863]: Direct Instances: []\n", - "[INFO] [1712607560.772120]: Inverse Restrictions: []\n", - "[INFO] [1712607560.772358]: -------------------\n", - "[INFO] [1712607560.772597]: SOMA.EnclosedObject \n", - "[INFO] [1712607560.772842]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712607560.773100]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.773355]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712607560.773648]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.774144]: Instances: []\n", - "[INFO] [1712607560.774419]: Direct Instances: []\n", - "[INFO] [1712607560.774716]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712607560.774964]: -------------------\n", - "[INFO] [1712607560.775205]: SOMA.Enclosing \n", - "[INFO] [1712607560.775452]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712607560.775704]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", - "[INFO] [1712607560.775955]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712607560.776239]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.776747]: Instances: []\n", - "[INFO] [1712607560.777014]: Direct Instances: []\n", - "[INFO] [1712607560.777263]: Inverse Restrictions: []\n", - "[INFO] [1712607560.777499]: -------------------\n", - "[INFO] [1712607560.777729]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712607560.777971]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607560.778231]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.778483]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712607560.778792]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.779302]: Instances: []\n", - "[INFO] [1712607560.779570]: Direct Instances: []\n", - "[INFO] [1712607560.779827]: Inverse Restrictions: []\n", - "[INFO] [1712607560.780064]: -------------------\n", - "[INFO] [1712607560.780296]: SOMA.Manipulating \n", - "[INFO] [1712607560.780551]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712607560.780806]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.781066]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712607560.781350]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.781856]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712607560.782136]: Direct Instances: []\n", - "[INFO] [1712607560.782398]: Inverse Restrictions: []\n", - "[INFO] [1712607560.782639]: -------------------\n", - "[INFO] [1712607560.782934]: SOMA.Episode \n", - "[INFO] [1712607560.783228]: Super classes: [DUL.Situation]\n", - "[INFO] [1712607560.783501]: Ancestors: {DUL.Situation, SOMA.Episode, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607560.783765]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712607560.784058]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.784553]: Instances: []\n", - "[INFO] [1712607560.784831]: Direct Instances: []\n", - "[INFO] [1712607560.785100]: Inverse Restrictions: []\n", - "[INFO] [1712607560.785352]: -------------------\n", - "[INFO] [1712607560.785591]: SOMA.ExcludedObject \n", - "[INFO] [1712607560.785828]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.786073]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.ExcludedObject, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.786344]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712607560.786642]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.787135]: Instances: []\n", - "[INFO] [1712607560.787400]: Direct Instances: []\n", - "[INFO] [1712607560.787716]: Inverse Restrictions: []\n", - "[INFO] [1712607560.787962]: -------------------\n", - "[INFO] [1712607560.788201]: SOMA.ExecutableFile \n", - "[INFO] [1712607560.788433]: Super classes: [owl.Thing]\n", - "[INFO] [1712607560.788667]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", - "[INFO] [1712607560.788905]: Subclasses: []\n", - "[INFO] [1712607560.789203]: Properties: [DUL.realizes, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.789708]: Instances: []\n", - "[INFO] [1712607560.789969]: Direct Instances: []\n", - "[INFO] [1712607560.790342]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712607560.790641]: -------------------\n", - "[INFO] [1712607560.790907]: SOMA.Executable_Code \n", - "[INFO] [1712607560.791162]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712607560.791425]: Ancestors: {owl.Thing, SOMA.Executable_Code, SOMA.Computer_Program}\n", - "[INFO] [1712607560.791685]: Subclasses: []\n", - "[INFO] [1712607560.791997]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607560.792501]: Instances: []\n", - "[INFO] [1712607560.792761]: Direct Instances: []\n", - "[INFO] [1712607560.793088]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712607560.793352]: -------------------\n", - "[INFO] [1712607560.793608]: SOMA.ExecutableFormat \n", - "[INFO] [1712607560.793860]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712607560.794241]: Ancestors: {DUL.Object, SOMA.ExecutableFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607560.794554]: Subclasses: []\n", - "[INFO] [1712607560.794902]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.795457]: Instances: []\n", - "[INFO] [1712607560.795762]: Direct Instances: []\n", - "[INFO] [1712607560.796157]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712607560.796474]: -------------------\n", - "[INFO] [1712607560.796801]: SOMA.SchematicTheory \n", - "[INFO] [1712607560.797099]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712607560.797398]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.797704]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712607560.798080]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.798765]: Instances: []\n", - "[INFO] [1712607560.799105]: Direct Instances: []\n", - "[INFO] [1712607560.799439]: Inverse Restrictions: []\n", - "[INFO] [1712607560.799768]: -------------------\n", - "[INFO] [1712607560.800087]: SOMA.ExecutableSoftware \n", - "[INFO] [1712607560.800403]: Super classes: [owl.Thing]\n", - "[INFO] [1712607560.800719]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", - "[INFO] [1712607560.801057]: Subclasses: []\n", - "[INFO] [1712607560.801461]: Properties: [DUL.hasMember, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.802151]: Instances: []\n", - "[INFO] [1712607560.802538]: Direct Instances: []\n", - "[INFO] [1712607560.802927]: Inverse Restrictions: []\n", - "[INFO] [1712607560.803284]: -------------------\n", - "[INFO] [1712607560.803699]: SOMA.Software \n", - "[INFO] [1712607560.804065]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712607560.804415]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, DUL.Design, SOMA.Software, DUL.SocialObject}\n", - "[INFO] [1712607560.804782]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712607560.805185]: Properties: [rdf-schema.label, DUL.describes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.805822]: Instances: []\n", - "[INFO] [1712607560.806147]: Direct Instances: []\n", - "[INFO] [1712607560.806601]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607560.806913]: -------------------\n", - "[INFO] [1712607560.807200]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712607560.807470]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712607560.807724]: Ancestors: {DUL.Object, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.807984]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712607560.808297]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.808815]: Instances: []\n", - "[INFO] [1712607560.809090]: Direct Instances: []\n", - "[INFO] [1712607560.809348]: Inverse Restrictions: []\n", - "[INFO] [1712607560.809580]: -------------------\n", - "[INFO] [1712607560.809817]: SOMA.ExperiencerRole \n", - "[INFO] [1712607560.810048]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712607560.810299]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.ExperiencerRole, DUL.Role, SOMA.PerformerRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607560.810547]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712607560.810827]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.811299]: Instances: []\n", - "[INFO] [1712607560.811565]: Direct Instances: []\n", - "[INFO] [1712607560.811818]: Inverse Restrictions: []\n", - "[INFO] [1712607560.812052]: -------------------\n", - "[INFO] [1712607560.812283]: SOMA.ExtractedObject \n", - "[INFO] [1712607560.812507]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.812748]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.ExtractedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.812998]: Subclasses: []\n", - "[INFO] [1712607560.813288]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.813776]: Instances: []\n", - "[INFO] [1712607560.814037]: Direct Instances: []\n", - "[INFO] [1712607560.814378]: Inverse Restrictions: []\n", - "[INFO] [1712607560.814695]: -------------------\n", - "[INFO] [1712607560.814976]: SOMA.PhysicalQuality \n", - "[INFO] [1712607560.815240]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712607560.815503]: Ancestors: {owl.Thing, SOMA.PhysicalQuality, DUL.Entity, DUL.Quality}\n", - "[INFO] [1712607560.815766]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712607560.816067]: Properties: [rdf-schema.comment, DUL.isQualityOf, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.816676]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712607560.816952]: Direct Instances: []\n", - "[INFO] [1712607560.817213]: Inverse Restrictions: []\n", - "[INFO] [1712607560.817465]: -------------------\n", - "[INFO] [1712607560.817713]: SOMA.FailedAttempt \n", - "[INFO] [1712607560.817955]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712607560.818207]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, SOMA.FailedAttempt, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.818451]: Subclasses: []\n", - "[INFO] [1712607560.818735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.819239]: Instances: []\n", - "[INFO] [1712607560.819507]: Direct Instances: []\n", - "[INFO] [1712607560.819757]: Inverse Restrictions: []\n", - "[INFO] [1712607560.820004]: -------------------\n", - "[INFO] [1712607560.820246]: SOMA.FaultySoftware \n", - "[INFO] [1712607560.820491]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712607560.820744]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.820989]: Subclasses: []\n", - "[INFO] [1712607560.821271]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.821754]: Instances: []\n", - "[INFO] [1712607560.822024]: Direct Instances: []\n", - "[INFO] [1712607560.822287]: Inverse Restrictions: []\n", - "[INFO] [1712607560.822527]: -------------------\n", - "[INFO] [1712607560.822760]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712607560.822993]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712607560.823236]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.823498]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712607560.823789]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.824280]: Instances: []\n", - "[INFO] [1712607560.824548]: Direct Instances: []\n", - "[INFO] [1712607560.824808]: Inverse Restrictions: []\n", - "[INFO] [1712607560.825042]: -------------------\n", - "[INFO] [1712607560.825280]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712607560.825507]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712607560.825763]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, DUL.Entity, owl.Thing, SOMA.PhysicalTask, SOMA.PhysicalAcquiring, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.826013]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712607560.826303]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.826787]: Instances: []\n", - "[INFO] [1712607560.827057]: Direct Instances: []\n", - "[INFO] [1712607560.827318]: Inverse Restrictions: []\n", - "[INFO] [1712607560.827555]: -------------------\n", - "[INFO] [1712607560.827788]: SOMA.Finger \n", - "[INFO] [1712607560.828022]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712607560.828269]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody, SOMA.Finger}\n", - "[INFO] [1712607560.828519]: Subclasses: []\n", - "[INFO] [1712607560.828809]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.isPartOf]\n", - "[INFO] [1712607560.829296]: Instances: []\n", - "[INFO] [1712607560.829560]: Direct Instances: []\n", - "[INFO] [1712607560.829810]: Inverse Restrictions: []\n", - "[INFO] [1712607560.830047]: -------------------\n", - "[INFO] [1712607560.830287]: SOMA.Hand \n", - "[INFO] [1712607560.830521]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712607560.830777]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, SOMA.Hand, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", - "[INFO] [1712607560.831021]: Subclasses: []\n", - "[INFO] [1712607560.831305]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.831780]: Instances: []\n", - "[INFO] [1712607560.832050]: Direct Instances: []\n", - "[INFO] [1712607560.832344]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712607560.832588]: -------------------\n", - "[INFO] [1712607560.832823]: SOMA.FixedJoint \n", - "[INFO] [1712607560.833071]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712607560.833321]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FixedJoint, DUL.Entity, DUL.PhysicalBody, SOMA.Joint}\n", - "[INFO] [1712607560.833563]: Subclasses: []\n", - "[INFO] [1712607560.833857]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.834370]: Instances: []\n", - "[INFO] [1712607560.834640]: Direct Instances: []\n", - "[INFO] [1712607560.834928]: Inverse Restrictions: []\n", - "[INFO] [1712607560.835171]: -------------------\n", - "[INFO] [1712607560.835408]: SOMA.MovableJoint \n", - "[INFO] [1712607560.835654]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712607560.835912]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607560.836170]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712607560.836460]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasJointState, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.836956]: Instances: []\n", - "[INFO] [1712607560.837260]: Direct Instances: []\n", - "[INFO] [1712607560.837806]: Inverse Restrictions: []\n", - "[INFO] [1712607560.838138]: -------------------\n", - "[INFO] [1712607560.838464]: SOMA.Flipping \n", - "[INFO] [1712607560.838809]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712607560.839110]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Flipping, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.839620]: Subclasses: []\n", - "[INFO] [1712607560.840159]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607560.840696]: Instances: []\n", - "[INFO] [1712607560.840974]: Direct Instances: []\n", - "[INFO] [1712607560.841237]: Inverse Restrictions: []\n", - "[INFO] [1712607560.841503]: -------------------\n", - "[INFO] [1712607560.841752]: SOMA.FloatingJoint \n", - "[INFO] [1712607560.842287]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712607560.842815]: Ancestors: {DUL.Object, SOMA.FloatingJoint, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607560.843256]: Subclasses: []\n", - "[INFO] [1712607560.843735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.844431]: Instances: []\n", - "[INFO] [1712607560.844813]: Direct Instances: []\n", - "[INFO] [1712607560.845166]: Inverse Restrictions: []\n", - "[INFO] [1712607560.845607]: -------------------\n", - "[INFO] [1712607560.846036]: SOMA.Fluid \n", - "[INFO] [1712607560.846394]: Super classes: [DUL.Substance]\n", - "[INFO] [1712607560.846686]: Ancestors: {DUL.Object, DUL.Substance, DUL.PhysicalObject, SOMA.Fluid, owl.Thing, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607560.846948]: Subclasses: []\n", - "[INFO] [1712607560.847248]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.847764]: Instances: []\n", - "[INFO] [1712607560.848035]: Direct Instances: []\n", - "[INFO] [1712607560.848293]: Inverse Restrictions: []\n", - "[INFO] [1712607560.848546]: -------------------\n", - "[INFO] [1712607560.848788]: SOMA.MovedObject \n", - "[INFO] [1712607560.849040]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712607560.849316]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, SOMA.MovedObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.849573]: Subclasses: []\n", - "[INFO] [1712607560.849874]: Properties: [SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.850404]: Instances: []\n", - "[INFO] [1712607560.850714]: Direct Instances: []\n", - "[INFO] [1712607560.851190]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712607560.851494]: -------------------\n", - "[INFO] [1712607560.851793]: SOMA.Focusing \n", - "[INFO] [1712607560.852089]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712607560.852413]: Ancestors: {DUL.Object, SOMA.Focusing, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.852752]: Subclasses: []\n", - "[INFO] [1712607560.853160]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.853855]: Instances: []\n", - "[INFO] [1712607560.854251]: Direct Instances: []\n", - "[INFO] [1712607560.854634]: Inverse Restrictions: []\n", - "[INFO] [1712607560.855011]: -------------------\n", - "[INFO] [1712607560.855388]: SOMA.Foolishness \n", - "[INFO] [1712607560.855754]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712607560.856135]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.Foolishness, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.856523]: Subclasses: []\n", - "[INFO] [1712607560.856956]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.857658]: Instances: []\n", - "[INFO] [1712607560.858017]: Direct Instances: []\n", - "[INFO] [1712607560.858346]: Inverse Restrictions: []\n", - "[INFO] [1712607560.858676]: -------------------\n", - "[INFO] [1712607560.858989]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712607560.859288]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712607560.859602]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, SOMA.ForgettingIncorrectInformation, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.859913]: Subclasses: []\n", - "[INFO] [1712607560.860283]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.860860]: Instances: []\n", - "[INFO] [1712607560.861176]: Direct Instances: []\n", - "[INFO] [1712607560.861465]: Inverse Restrictions: []\n", - "[INFO] [1712607560.861742]: -------------------\n", - "[INFO] [1712607560.862014]: SOMA.InformationDismissal \n", - "[INFO] [1712607560.862331]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712607560.862649]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.862989]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712607560.863322]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.863838]: Instances: []\n", - "[INFO] [1712607560.864105]: Direct Instances: []\n", - "[INFO] [1712607560.864368]: Inverse Restrictions: []\n", - "[INFO] [1712607560.864614]: -------------------\n", - "[INFO] [1712607560.864855]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712607560.865107]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712607560.865361]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.ForgettingIrrelevantInformation, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, SOMA.InformationDismissal, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.865604]: Subclasses: []\n", - "[INFO] [1712607560.865891]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.866397]: Instances: []\n", - "[INFO] [1712607560.866663]: Direct Instances: []\n", - "[INFO] [1712607560.866918]: Inverse Restrictions: []\n", - "[INFO] [1712607560.867157]: -------------------\n", - "[INFO] [1712607560.867391]: SOMA.Language \n", - "[INFO] [1712607560.867631]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712607560.867887]: Ancestors: {DUL.Object, SOMA.System, owl.Thing, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607560.868147]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712607560.868460]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.869020]: Instances: []\n", - "[INFO] [1712607560.869332]: Direct Instances: []\n", - "[INFO] [1712607560.869694]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712607560.869984]: -------------------\n", - "[INFO] [1712607560.870344]: SOMA.Item \n", - "[INFO] [1712607560.870630]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607560.870917]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.871189]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712607560.871487]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.872005]: Instances: []\n", - "[INFO] [1712607560.872283]: Direct Instances: []\n", - "[INFO] [1712607560.872633]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712607560.872886]: -------------------\n", - "[INFO] [1712607560.873130]: SOMA.FunctionalDesign \n", - "[INFO] [1712607560.873367]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712607560.873615]: Ancestors: {DUL.Object, DUL.Description, SOMA.FunctionalDesign, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607560.873874]: Subclasses: []\n", - "[INFO] [1712607560.874170]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.874674]: Instances: []\n", - "[INFO] [1712607560.874931]: Direct Instances: []\n", - "[INFO] [1712607560.875173]: Inverse Restrictions: []\n", - "[INFO] [1712607560.875409]: -------------------\n", - "[INFO] [1712607560.875650]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712607560.875889]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712607560.876127]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.876371]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712607560.876670]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.877173]: Instances: []\n", - "[INFO] [1712607560.877438]: Direct Instances: []\n", - "[INFO] [1712607560.877718]: Inverse Restrictions: []\n", - "[INFO] [1712607560.877980]: -------------------\n", - "[INFO] [1712607560.878230]: SOMA.LocatumRole \n", - "[INFO] [1712607560.878471]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607560.878745]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.LocatumRole, DUL.SocialObject}\n", - "[INFO] [1712607560.879002]: Subclasses: []\n", - "[INFO] [1712607560.879314]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.879804]: Instances: []\n", - "[INFO] [1712607560.880065]: Direct Instances: []\n", - "[INFO] [1712607560.880378]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712607560.880634]: -------------------\n", - "[INFO] [1712607560.880879]: SOMA.RelatumRole \n", - "[INFO] [1712607560.881119]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607560.881360]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.RelatumRole, DUL.SocialObject}\n", - "[INFO] [1712607560.881598]: Subclasses: []\n", - "[INFO] [1712607560.881882]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.882388]: Instances: []\n", - "[INFO] [1712607560.882650]: Direct Instances: []\n", - "[INFO] [1712607560.882967]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712607560.883211]: -------------------\n", - "[INFO] [1712607560.883445]: SOMA.GetTaskParameter \n", - "[INFO] [1712607560.883693]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712607560.883949]: Ancestors: {SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607560.884198]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712607560.884488]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.884976]: Instances: []\n", - "[INFO] [1712607560.885257]: Direct Instances: []\n", - "[INFO] [1712607560.885519]: Inverse Restrictions: []\n", - "[INFO] [1712607560.885761]: -------------------\n", - "[INFO] [1712607560.885997]: SOMA.Planning \n", - "[INFO] [1712607560.886241]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712607560.886485]: Ancestors: {SOMA.Deciding, owl.Thing, SOMA.Planning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607560.886746]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712607560.887041]: Properties: [rdf-schema.comment, DUL.isTaskOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.887536]: Instances: []\n", - "[INFO] [1712607560.887791]: Direct Instances: []\n", - "[INFO] [1712607560.888055]: Inverse Restrictions: []\n", - "[INFO] [1712607560.888299]: -------------------\n", - "[INFO] [1712607560.888538]: SOMA.GraphDatabase \n", - "[INFO] [1712607560.888768]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712607560.889013]: Ancestors: {SOMA.GraphDatabase, DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", - "[INFO] [1712607560.889273]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712607560.889568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.890059]: Instances: []\n", - "[INFO] [1712607560.890312]: Direct Instances: []\n", - "[INFO] [1712607560.890553]: Inverse Restrictions: []\n", - "[INFO] [1712607560.890801]: -------------------\n", - "[INFO] [1712607560.891036]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712607560.891263]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712607560.891503]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.GraphQueryLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", - "[INFO] [1712607560.891754]: Subclasses: []\n", - "[INFO] [1712607560.892041]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.892522]: Instances: []\n", - "[INFO] [1712607560.892775]: Direct Instances: []\n", - "[INFO] [1712607560.893028]: Inverse Restrictions: []\n", - "[INFO] [1712607560.893263]: -------------------\n", - "[INFO] [1712607560.893496]: SOMA.QueryLanguage \n", - "[INFO] [1712607560.893720]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607560.893956]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", - "[INFO] [1712607560.894207]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712607560.894537]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.895036]: Instances: []\n", - "[INFO] [1712607560.895286]: Direct Instances: []\n", - "[INFO] [1712607560.895530]: Inverse Restrictions: []\n", - "[INFO] [1712607560.895801]: -------------------\n", - "[INFO] [1712607560.896054]: SOMA.GraspTransfer \n", - "[INFO] [1712607560.896291]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712607560.896539]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.GraspTransfer, owl.Thing, SOMA.Grasping, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.896776]: Subclasses: []\n", - "[INFO] [1712607560.897062]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.897562]: Instances: []\n", - "[INFO] [1712607560.897822]: Direct Instances: []\n", - "[INFO] [1712607560.898071]: Inverse Restrictions: []\n", - "[INFO] [1712607560.898312]: -------------------\n", - "[INFO] [1712607560.898543]: SOMA.Grasping \n", - "[INFO] [1712607560.898791]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607560.899045]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.Grasping, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.899292]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712607560.899589]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.900108]: Instances: []\n", - "[INFO] [1712607560.900369]: Direct Instances: []\n", - "[INFO] [1712607560.900616]: Inverse Restrictions: []\n", - "[INFO] [1712607560.900854]: -------------------\n", - "[INFO] [1712607560.901085]: SOMA.Releasing \n", - "[INFO] [1712607560.901317]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607560.901573]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.Releasing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.901819]: Subclasses: []\n", - "[INFO] [1712607560.902097]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.902588]: Instances: []\n", - "[INFO] [1712607560.902856]: Direct Instances: []\n", - "[INFO] [1712607560.903120]: Inverse Restrictions: []\n", - "[INFO] [1712607560.903356]: -------------------\n", - "[INFO] [1712607560.903588]: SOMA.GraspingMotion \n", - "[INFO] [1712607560.903824]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712607560.904066]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", - "[INFO] [1712607560.904324]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712607560.904630]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.905119]: Instances: []\n", - "[INFO] [1712607560.905370]: Direct Instances: []\n", - "[INFO] [1712607560.905658]: Inverse Restrictions: []\n", - "[INFO] [1712607560.905909]: -------------------\n", - "[INFO] [1712607560.906150]: SOMA.IntermediateGrasp \n", - "[INFO] [1712607560.906384]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712607560.906630]: Ancestors: {DUL.Object, SOMA.IntermediateGrasp, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", - "[INFO] [1712607560.906883]: Subclasses: []\n", - "[INFO] [1712607560.907185]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.907671]: Instances: []\n", - "[INFO] [1712607560.907923]: Direct Instances: []\n", - "[INFO] [1712607560.908212]: Inverse Restrictions: []\n", - "[INFO] [1712607560.908453]: -------------------\n", - "[INFO] [1712607560.908684]: SOMA.PowerGrasp \n", - "[INFO] [1712607560.908912]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712607560.909167]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.PowerGrasp, SOMA.Motion}\n", - "[INFO] [1712607560.909414]: Subclasses: []\n", - "[INFO] [1712607560.909710]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.910207]: Instances: []\n", - "[INFO] [1712607560.910469]: Direct Instances: []\n", - "[INFO] [1712607560.910759]: Inverse Restrictions: []\n", - "[INFO] [1712607560.911007]: -------------------\n", - "[INFO] [1712607560.911265]: SOMA.PrecisionGrasp \n", - "[INFO] [1712607560.911508]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712607560.911786]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.GraspingMotion, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.PrecisionGrasp, SOMA.Motion}\n", - "[INFO] [1712607560.912040]: Subclasses: []\n", - "[INFO] [1712607560.912343]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.912841]: Instances: []\n", - "[INFO] [1712607560.913105]: Direct Instances: []\n", - "[INFO] [1712607560.913399]: Inverse Restrictions: []\n", - "[INFO] [1712607560.913635]: -------------------\n", - "[INFO] [1712607560.913867]: SOMA.PrehensileMotion \n", - "[INFO] [1712607560.914108]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712607560.914376]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607560.914633]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712607560.914936]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.915445]: Instances: []\n", - "[INFO] [1712607560.915715]: Direct Instances: []\n", - "[INFO] [1712607560.915972]: Inverse Restrictions: []\n", - "[INFO] [1712607560.916214]: -------------------\n", - "[INFO] [1712607560.916449]: SOMA.ReleasingMotion \n", - "[INFO] [1712607560.916686]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712607560.916940]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, DUL.EventType, SOMA.PrehensileMotion, owl.Thing, SOMA.ProcessType, SOMA.ReleasingMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion}\n", - "[INFO] [1712607560.917187]: Subclasses: []\n", - "[INFO] [1712607560.917473]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.917956]: Instances: []\n", - "[INFO] [1712607560.918231]: Direct Instances: []\n", - "[INFO] [1712607560.918532]: Inverse Restrictions: []\n", - "[INFO] [1712607560.918775]: -------------------\n", - "[INFO] [1712607560.919012]: SOMA.GreenColor \n", - "[INFO] [1712607560.919250]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712607560.919508]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, SOMA.GreenColor, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607560.919757]: Subclasses: []\n", - "[INFO] [1712607560.920049]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.920535]: Instances: []\n", - "[INFO] [1712607560.920786]: Direct Instances: []\n", - "[INFO] [1712607560.921047]: Inverse Restrictions: []\n", - "[INFO] [1712607560.921285]: -------------------\n", - "[INFO] [1712607560.921519]: SOMA.Gripper \n", - "[INFO] [1712607560.921749]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712607560.921991]: Ancestors: {DUL.Object, SOMA.Gripper, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", - "[INFO] [1712607560.922249]: Subclasses: []\n", - "[INFO] [1712607560.922545]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.923036]: Instances: []\n", - "[INFO] [1712607560.923303]: Direct Instances: []\n", - "[INFO] [1712607560.923559]: Inverse Restrictions: []\n", - "[INFO] [1712607560.923796]: -------------------\n", - "[INFO] [1712607560.924028]: SOMA.PrehensileEffector \n", - "[INFO] [1712607560.924258]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712607560.924513]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.PhysicalBody, DUL.Entity, SOMA.PrehensileEffector}\n", - "[INFO] [1712607560.924765]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712607560.925047]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.925533]: Instances: []\n", - "[INFO] [1712607560.925807]: Direct Instances: []\n", - "[INFO] [1712607560.926128]: Inverse Restrictions: []\n", - "[INFO] [1712607560.926379]: -------------------\n", - "[INFO] [1712607560.926617]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712607560.926853]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712607560.927106]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.HardwareDiagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.927362]: Subclasses: []\n", - "[INFO] [1712607560.927663]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.928173]: Instances: []\n", - "[INFO] [1712607560.928430]: Direct Instances: []\n", - "[INFO] [1712607560.928691]: Inverse Restrictions: []\n", - "[INFO] [1712607560.928950]: -------------------\n", - "[INFO] [1712607560.929198]: SOMA.HasQualityRegion \n", - "[INFO] [1712607560.929440]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712607560.929683]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Relation, DUL.Entity, SOMA.HasQualityRegion, DUL.SocialObject}\n", - "[INFO] [1712607560.929936]: Subclasses: []\n", - "[INFO] [1712607560.930236]: Properties: [rdf-schema.isDefinedBy, DUL.hasQuality, DUL.hasRegion, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607560.930723]: Instances: []\n", - "[INFO] [1712607560.930972]: Direct Instances: []\n", - "[INFO] [1712607560.931211]: Inverse Restrictions: []\n", - "[INFO] [1712607560.931465]: -------------------\n", - "[INFO] [1712607560.931707]: SOMA.Head \n", - "[INFO] [1712607560.931943]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712607560.932193]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, DUL.Entity, SOMA.Head, DUL.PhysicalBody}\n", - "[INFO] [1712607560.932494]: Subclasses: []\n", - "[INFO] [1712607560.932813]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.933319]: Instances: []\n", - "[INFO] [1712607560.933582]: Direct Instances: []\n", - "[INFO] [1712607560.933833]: Inverse Restrictions: []\n", - "[INFO] [1712607560.934078]: -------------------\n", - "[INFO] [1712607560.934339]: SOMA.HeadMovement \n", - "[INFO] [1712607560.934592]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712607560.934848]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.HeadMovement, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", - "[INFO] [1712607560.935102]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712607560.935393]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.935905]: Instances: []\n", - "[INFO] [1712607560.936178]: Direct Instances: []\n", - "[INFO] [1712607560.936434]: Inverse Restrictions: []\n", - "[INFO] [1712607560.936675]: -------------------\n", - "[INFO] [1712607560.936915]: SOMA.HeadTurning \n", - "[INFO] [1712607560.937156]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712607560.937455]: Ancestors: {DUL.Object, DUL.Entity, DUL.EventType, SOMA.HeadTurning, owl.Thing, SOMA.ProcessType, SOMA.HeadMovement, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607560.937711]: Subclasses: []\n", - "[INFO] [1712607560.937998]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.938494]: Instances: []\n", - "[INFO] [1712607560.938824]: Direct Instances: []\n", - "[INFO] [1712607560.939079]: Inverse Restrictions: []\n", - "[INFO] [1712607560.939321]: -------------------\n", - "[INFO] [1712607560.939556]: SOMA.Holding \n", - "[INFO] [1712607560.939787]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607560.940032]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Holding, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607560.940288]: Subclasses: []\n", - "[INFO] [1712607560.940580]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.941068]: Instances: []\n", - "[INFO] [1712607560.941329]: Direct Instances: []\n", - "[INFO] [1712607560.941587]: Inverse Restrictions: []\n", - "[INFO] [1712607560.941828]: -------------------\n", - "[INFO] [1712607560.942066]: SOMA.HostRole \n", - "[INFO] [1712607560.942309]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712607560.942557]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.HostRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607560.942812]: Subclasses: []\n", - "[INFO] [1712607560.943107]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607560.943596]: Instances: []\n", - "[INFO] [1712607560.943864]: Direct Instances: []\n", - "[INFO] [1712607560.944171]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712607560.944457]: -------------------\n", - "[INFO] [1712607560.944701]: SOMA.PluginSpecification \n", - "[INFO] [1712607560.944950]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712607560.945211]: Ancestors: {SOMA.PluginSpecification, SOMA.API_Specification, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, DUL.Entity, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607560.945461]: Subclasses: []\n", - "[INFO] [1712607560.945760]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesRole]\n", - "[INFO] [1712607560.946252]: Instances: []\n", - "[INFO] [1712607560.946521]: Direct Instances: []\n", - "[INFO] [1712607560.946843]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712607560.947090]: -------------------\n", - "[INFO] [1712607560.947325]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712607560.947566]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712607560.947808]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.Language, SOMA.FormalLanguage, SOMA.Human-readable_Programming_Language, DUL.Entity, SOMA.Programming_Language, DUL.SocialObject}\n", - "[INFO] [1712607560.948062]: Subclasses: []\n", - "[INFO] [1712607560.948358]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.948859]: Instances: []\n", - "[INFO] [1712607560.949129]: Direct Instances: []\n", - "[INFO] [1712607560.949436]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712607560.949680]: -------------------\n", - "[INFO] [1712607560.949917]: SOMA.Source_Code \n", - "[INFO] [1712607560.950153]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712607560.950400]: Ancestors: {owl.Thing, SOMA.Source_Code, SOMA.Computer_Program}\n", - "[INFO] [1712607560.950653]: Subclasses: []\n", - "[INFO] [1712607560.950957]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607560.951440]: Instances: []\n", - "[INFO] [1712607560.951698]: Direct Instances: []\n", - "[INFO] [1712607560.951989]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712607560.952243]: -------------------\n", - "[INFO] [1712607560.952485]: SOMA.HumanActivityRecording \n", - "[INFO] [1712607560.952719]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712607560.952962]: Ancestors: {SOMA.RecordedEpisode, owl.Thing, SOMA.Episode, SOMA.HumanActivityRecording, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712607560.953217]: Subclasses: []\n", - "[INFO] [1712607560.953511]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.953998]: Instances: []\n", - "[INFO] [1712607560.954253]: Direct Instances: []\n", - "[INFO] [1712607560.954498]: Inverse Restrictions: []\n", - "[INFO] [1712607560.954743]: -------------------\n", - "[INFO] [1712607560.954981]: SOMA.Imagining \n", - "[INFO] [1712607560.955216]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712607560.955454]: Ancestors: {SOMA.Imagining, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712607560.955686]: Subclasses: []\n", - "[INFO] [1712607560.955963]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.956464]: Instances: []\n", - "[INFO] [1712607560.956728]: Direct Instances: []\n", - "[INFO] [1712607560.956978]: Inverse Restrictions: []\n", - "[INFO] [1712607560.957218]: -------------------\n", - "[INFO] [1712607560.957455]: SOMA.Impediment \n", - "[INFO] [1712607560.957696]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712607560.957953]: Ancestors: {SOMA.Impediment, owl.Thing, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607560.958203]: Subclasses: []\n", - "[INFO] [1712607560.958500]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.959008]: Instances: []\n", - "[INFO] [1712607560.959278]: Direct Instances: []\n", - "[INFO] [1712607560.959533]: Inverse Restrictions: []\n", - "[INFO] [1712607560.959772]: -------------------\n", - "[INFO] [1712607560.960014]: SOMA.Obstacle \n", - "[INFO] [1712607560.960258]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712607560.960508]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Entity, SOMA.Obstacle, SOMA.Instrument, DUL.Role, owl.Thing, DUL.Concept, SOMA.Barrier, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607560.960750]: Subclasses: []\n", - "[INFO] [1712607560.961071]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.961582]: Instances: []\n", - "[INFO] [1712607560.961848]: Direct Instances: []\n", - "[INFO] [1712607560.962482]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712607560.962802]: -------------------\n", - "[INFO] [1712607560.963059]: SOMA.RestrictedObject \n", - "[INFO] [1712607560.963311]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712607560.963594]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.RestrictedObject, owl.Thing, SOMA.BlockedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.963875]: Subclasses: []\n", - "[INFO] [1712607560.964178]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.964677]: Instances: []\n", - "[INFO] [1712607560.964956]: Direct Instances: []\n", - "[INFO] [1712607560.965263]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712607560.965519]: -------------------\n", - "[INFO] [1712607560.965765]: SOMA.StateTransition \n", - "[INFO] [1712607560.966084]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712607560.966365]: Ancestors: {DUL.Transition, owl.Thing, DUL.Entity, DUL.Situation, SOMA.StateTransition}\n", - "[INFO] [1712607560.966642]: Subclasses: []\n", - "[INFO] [1712607560.966957]: Properties: [DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, SOMA.hasInitialScene, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712607560.967457]: Instances: []\n", - "[INFO] [1712607560.967738]: Direct Instances: []\n", - "[INFO] [1712607560.968062]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712607560.968314]: -------------------\n", - "[INFO] [1712607560.968552]: SOMA.Inability \n", - "[INFO] [1712607560.968786]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712607560.969032]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, SOMA.Inability, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.969288]: Subclasses: []\n", - "[INFO] [1712607560.969584]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.970075]: Instances: []\n", - "[INFO] [1712607560.970345]: Direct Instances: []\n", - "[INFO] [1712607560.970609]: Inverse Restrictions: []\n", - "[INFO] [1712607560.970853]: -------------------\n", - "[INFO] [1712607560.971091]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712607560.971325]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712607560.971569]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.FunctionalDiagnosis, SOMA.IncompatibleSoftware, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.971823]: Subclasses: []\n", - "[INFO] [1712607560.972118]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.972613]: Instances: []\n", - "[INFO] [1712607560.972867]: Direct Instances: []\n", - "[INFO] [1712607560.973106]: Inverse Restrictions: []\n", - "[INFO] [1712607560.973350]: -------------------\n", - "[INFO] [1712607560.973592]: SOMA.InductiveReasoning \n", - "[INFO] [1712607560.973826]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712607560.974070]: Ancestors: {SOMA.InductiveReasoning, owl.Thing, SOMA.Reasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607560.974317]: Subclasses: []\n", - "[INFO] [1712607560.974600]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.975104]: Instances: []\n", - "[INFO] [1712607560.975369]: Direct Instances: []\n", - "[INFO] [1712607560.975621]: Inverse Restrictions: []\n", - "[INFO] [1712607560.975865]: -------------------\n", - "[INFO] [1712607560.976097]: SOMA.Infeasibility \n", - "[INFO] [1712607560.976337]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712607560.976594]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607560.976841]: Subclasses: []\n", - "[INFO] [1712607560.977127]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.977608]: Instances: []\n", - "[INFO] [1712607560.977898]: Direct Instances: []\n", - "[INFO] [1712607560.978165]: Inverse Restrictions: []\n", - "[INFO] [1712607560.978425]: -------------------\n", - "[INFO] [1712607560.978665]: SOMA.InferenceRules \n", - "[INFO] [1712607560.978935]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712607560.979215]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.InferenceRules, DUL.Role, SOMA.Knowledge, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.979473]: Subclasses: []\n", - "[INFO] [1712607560.979772]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.980263]: Instances: []\n", - "[INFO] [1712607560.980536]: Direct Instances: []\n", - "[INFO] [1712607560.980797]: Inverse Restrictions: []\n", - "[INFO] [1712607560.981045]: -------------------\n", - "[INFO] [1712607560.981286]: SOMA.InformationRetrieval \n", - "[INFO] [1712607560.981534]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712607560.981791]: Ancestors: {SOMA.InformationRetrieval, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712607560.982044]: Subclasses: []\n", - "[INFO] [1712607560.982355]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712607560.982848]: Instances: []\n", - "[INFO] [1712607560.983124]: Direct Instances: []\n", - "[INFO] [1712607560.983423]: Inverse Restrictions: []\n", - "[INFO] [1712607560.983679]: -------------------\n", - "[INFO] [1712607560.983927]: SOMA.InformationStorage \n", - "[INFO] [1712607560.984188]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712607560.984445]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", - "[INFO] [1712607560.984713]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712607560.985018]: Properties: [SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.985551]: Instances: []\n", - "[INFO] [1712607560.985811]: Direct Instances: []\n", - "[INFO] [1712607560.986061]: Inverse Restrictions: []\n", - "[INFO] [1712607560.986318]: -------------------\n", - "[INFO] [1712607560.986566]: SOMA.StoredObject \n", - "[INFO] [1712607560.986811]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712607560.987061]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Entity, SOMA.EnclosedObject, DUL.Role, owl.Thing, DUL.Concept, SOMA.StoredObject, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.987304]: Subclasses: []\n", - "[INFO] [1712607560.987589]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.988100]: Instances: []\n", - "[INFO] [1712607560.988374]: Direct Instances: []\n", - "[INFO] [1712607560.988712]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712607560.988959]: -------------------\n", - "[INFO] [1712607560.989199]: SOMA.InsertedObject \n", - "[INFO] [1712607560.989451]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712607560.989705]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Role, owl.Thing, SOMA.InsertedObject, DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.989953]: Subclasses: []\n", - "[INFO] [1712607560.990251]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.990744]: Instances: []\n", - "[INFO] [1712607560.991021]: Direct Instances: []\n", - "[INFO] [1712607560.991321]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712607560.991570]: -------------------\n", - "[INFO] [1712607560.991811]: SOMA.Instructions \n", - "[INFO] [1712607560.992053]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712607560.992317]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.Instructions, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607560.992567]: Subclasses: []\n", - "[INFO] [1712607560.992861]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.993349]: Instances: []\n", - "[INFO] [1712607560.993626]: Direct Instances: []\n", - "[INFO] [1712607560.993886]: Inverse Restrictions: []\n", - "[INFO] [1712607560.994129]: -------------------\n", - "[INFO] [1712607560.994420]: SOMA.Interpreting \n", - "[INFO] [1712607560.994664]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607560.994920]: Ancestors: {SOMA.Interpreting, owl.Thing, SOMA.InformationAcquisition, SOMA.DerivingInformation}\n", - "[INFO] [1712607560.995190]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712607560.995486]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.996017]: Instances: []\n", - "[INFO] [1712607560.996315]: Direct Instances: []\n", - "[INFO] [1712607560.996583]: Inverse Restrictions: []\n", - "[INFO] [1712607560.996827]: -------------------\n", - "[INFO] [1712607560.997068]: SOMA.InterrogativeClause \n", - "[INFO] [1712607560.997318]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712607560.997580]: Ancestors: {DUL.Object, SOMA.InterrogativeClause, SOMA.ClausalObject, SOMA.Phrase, owl.Thing, DUL.InformationObject, SOMA.LinguisticObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607560.997833]: Subclasses: []\n", - "[INFO] [1712607560.998127]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607560.998619]: Instances: []\n", - "[INFO] [1712607560.998877]: Direct Instances: []\n", - "[INFO] [1712607560.999184]: Inverse Restrictions: []\n", - "[INFO] [1712607560.999429]: -------------------\n", - "[INFO] [1712607560.999668]: SOMA.Introspecting \n", - "[INFO] [1712607560.999904]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712607561.000140]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition}\n", - "[INFO] [1712607561.000399]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712607561.000693]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.001184]: Instances: []\n", - "[INFO] [1712607561.001437]: Direct Instances: []\n", - "[INFO] [1712607561.001702]: Inverse Restrictions: []\n", - "[INFO] [1712607561.001948]: -------------------\n", - "[INFO] [1712607561.002186]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712607561.002431]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712607561.002686]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, SOMA.KineticFrictionAttribute, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607561.002944]: Subclasses: []\n", - "[INFO] [1712607561.003241]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.003722]: Instances: []\n", - "[INFO] [1712607561.003987]: Direct Instances: []\n", - "[INFO] [1712607561.004234]: Inverse Restrictions: []\n", - "[INFO] [1712607561.004469]: -------------------\n", - "[INFO] [1712607561.004700]: SOMA.KinoDynamicData \n", - "[INFO] [1712607561.004941]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607561.005183]: Ancestors: {DUL.Object, owl.Thing, SOMA.KinoDynamicData, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607561.005436]: Subclasses: []\n", - "[INFO] [1712607561.005728]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.006214]: Instances: []\n", - "[INFO] [1712607561.006470]: Direct Instances: []\n", - "[INFO] [1712607561.006728]: Inverse Restrictions: []\n", - "[INFO] [1712607561.006969]: -------------------\n", - "[INFO] [1712607561.007201]: SOMA.Room \n", - "[INFO] [1712607561.007431]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712607561.007673]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Room, owl.Thing, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607561.007931]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712607561.008222]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.008728]: Instances: []\n", - "[INFO] [1712607561.008981]: Direct Instances: []\n", - "[INFO] [1712607561.009222]: Inverse Restrictions: []\n", - "[INFO] [1712607561.009470]: -------------------\n", - "[INFO] [1712607561.009704]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712607561.009937]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607561.010183]: Ancestors: {DUL.Object, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.KnowledgeRepresentationLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607561.010429]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712607561.010721]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.011242]: Instances: []\n", - "[INFO] [1712607561.011501]: Direct Instances: []\n", - "[INFO] [1712607561.011767]: Inverse Restrictions: []\n", - "[INFO] [1712607561.012012]: -------------------\n", - "[INFO] [1712607561.012274]: SOMA.Labeling \n", - "[INFO] [1712607561.012537]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712607561.012796]: Ancestors: {SOMA.Interpreting, owl.Thing, SOMA.Labeling, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607561.013050]: Subclasses: []\n", - "[INFO] [1712607561.013343]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.013852]: Instances: []\n", - "[INFO] [1712607561.014127]: Direct Instances: []\n", - "[INFO] [1712607561.014383]: Inverse Restrictions: []\n", - "[INFO] [1712607561.014620]: -------------------\n", - "[INFO] [1712607561.014854]: SOMA.Text \n", - "[INFO] [1712607561.015088]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.015338]: Ancestors: {SOMA.Text, owl.Thing}\n", - "[INFO] [1712607561.015584]: Subclasses: []\n", - "[INFO] [1712607561.015878]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607561.016370]: Instances: []\n", - "[INFO] [1712607561.016643]: Direct Instances: []\n", - "[INFO] [1712607561.016995]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712607561.017245]: -------------------\n", - "[INFO] [1712607561.017484]: SOMA.Leaning \n", - "[INFO] [1712607561.017722]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712607561.017983]: Ancestors: {DUL.Object, SOMA.Leaning, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607561.018242]: Subclasses: []\n", - "[INFO] [1712607561.018548]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.019037]: Instances: []\n", - "[INFO] [1712607561.019297]: Direct Instances: []\n", - "[INFO] [1712607561.019557]: Inverse Restrictions: []\n", - "[INFO] [1712607561.019798]: -------------------\n", - "[INFO] [1712607561.020040]: SOMA.PosturalMoving \n", - "[INFO] [1712607561.020284]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712607561.020530]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607561.020799]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712607561.021091]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.021589]: Instances: []\n", - "[INFO] [1712607561.021850]: Direct Instances: []\n", - "[INFO] [1712607561.022107]: Inverse Restrictions: []\n", - "[INFO] [1712607561.022363]: -------------------\n", - "[INFO] [1712607561.022603]: SOMA.Learning \n", - "[INFO] [1712607561.022839]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712607561.023083]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Learning, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", - "[INFO] [1712607561.023346]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712607561.023644]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.024141]: Instances: []\n", - "[INFO] [1712607561.024416]: Direct Instances: []\n", - "[INFO] [1712607561.024680]: Inverse Restrictions: []\n", - "[INFO] [1712607561.024925]: -------------------\n", - "[INFO] [1712607561.025170]: SOMA.Leg \n", - "[INFO] [1712607561.025406]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712607561.025657]: Ancestors: {DUL.Object, SOMA.Leg, DUL.PhysicalObject, SOMA.Limb, SOMA.PhysicalEffector, owl.Thing, SOMA.FunctionalPart, DUL.Entity, DUL.PhysicalBody}\n", - "[INFO] [1712607561.025918]: Subclasses: []\n", - "[INFO] [1712607561.026218]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.026714]: Instances: []\n", - "[INFO] [1712607561.026988]: Direct Instances: []\n", - "[INFO] [1712607561.027287]: Inverse Restrictions: []\n", - "[INFO] [1712607561.027534]: -------------------\n", - "[INFO] [1712607561.027808]: SOMA.LimbMotion \n", - "[INFO] [1712607561.028077]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712607561.028333]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.LimbMotion, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607561.028580]: Subclasses: []\n", - "[INFO] [1712607561.028891]: Properties: [SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.029421]: Instances: []\n", - "[INFO] [1712607561.029692]: Direct Instances: []\n", - "[INFO] [1712607561.029949]: Inverse Restrictions: []\n", - "[INFO] [1712607561.030201]: -------------------\n", - "[INFO] [1712607561.030443]: SOMA.LinkedObject \n", - "[INFO] [1712607561.030697]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712607561.030955]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.LinkedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607561.031203]: Subclasses: []\n", - "[INFO] [1712607561.031493]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.031998]: Instances: []\n", - "[INFO] [1712607561.032261]: Direct Instances: []\n", - "[INFO] [1712607561.032602]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712607561.032854]: -------------------\n", - "[INFO] [1712607561.033099]: SOMA.LinkageState \n", - "[INFO] [1712607561.033353]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712607561.033608]: Ancestors: {DUL.Object, SOMA.LinkageState, SOMA.StateType, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.033852]: Subclasses: []\n", - "[INFO] [1712607561.034149]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.034654]: Instances: []\n", - "[INFO] [1712607561.034915]: Direct Instances: []\n", - "[INFO] [1712607561.035167]: Inverse Restrictions: []\n", - "[INFO] [1712607561.035404]: -------------------\n", - "[INFO] [1712607561.035649]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712607561.035891]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712607561.036150]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.036407]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712607561.036694]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.037212]: Instances: []\n", - "[INFO] [1712607561.037481]: Direct Instances: []\n", - "[INFO] [1712607561.037744]: Inverse Restrictions: []\n", - "[INFO] [1712607561.038047]: -------------------\n", - "[INFO] [1712607561.038393]: SOMA.SpatialRelationRole \n", - "[INFO] [1712607561.038842]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712607561.039232]: Ancestors: {DUL.Object, SOMA.SpatialRelationRole, DUL.Role, SOMA.RelationAdjacentRole, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.039534]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712607561.039849]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.040354]: Instances: []\n", - "[INFO] [1712607561.040629]: Direct Instances: []\n", - "[INFO] [1712607561.040892]: Inverse Restrictions: []\n", - "[INFO] [1712607561.041161]: -------------------\n", - "[INFO] [1712607561.041483]: SOMA.LocutionaryAction \n", - "[INFO] [1712607561.041755]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.042016]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", - "[INFO] [1712607561.042286]: Subclasses: []\n", - "[INFO] [1712607561.042608]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607561.043117]: Instances: []\n", - "[INFO] [1712607561.043383]: Direct Instances: []\n", - "[INFO] [1712607561.043634]: Inverse Restrictions: []\n", - "[INFO] [1712607561.043890]: -------------------\n", - "[INFO] [1712607561.044139]: SOMA.LookingAt \n", - "[INFO] [1712607561.044380]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607561.044631]: Ancestors: {DUL.Object, SOMA.LookingAt, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.044870]: Subclasses: []\n", - "[INFO] [1712607561.045161]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.045671]: Instances: []\n", - "[INFO] [1712607561.045946]: Direct Instances: []\n", - "[INFO] [1712607561.046207]: Inverse Restrictions: []\n", - "[INFO] [1712607561.046450]: -------------------\n", - "[INFO] [1712607561.046692]: SOMA.LookingFor \n", - "[INFO] [1712607561.046933]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712607561.047186]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", - "[INFO] [1712607561.047429]: Subclasses: []\n", - "[INFO] [1712607561.047721]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.048200]: Instances: []\n", - "[INFO] [1712607561.048476]: Direct Instances: []\n", - "[INFO] [1712607561.048734]: Inverse Restrictions: []\n", - "[INFO] [1712607561.048974]: -------------------\n", - "[INFO] [1712607561.049216]: SOMA.Lowering \n", - "[INFO] [1712607561.049451]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607561.049701]: Ancestors: {DUL.SocialObject, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Lowering, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.049967]: Subclasses: []\n", - "[INFO] [1712607561.050269]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.050769]: Instances: []\n", - "[INFO] [1712607561.051043]: Direct Instances: []\n", - "[INFO] [1712607561.051311]: Inverse Restrictions: []\n", - "[INFO] [1712607561.051564]: -------------------\n", - "[INFO] [1712607561.051810]: SOMA.PhysicalAction \n", - "[INFO] [1712607561.052063]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712607561.052346]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.PhysicalAction, DUL.Entity}\n", - "[INFO] [1712607561.052747]: Subclasses: []\n", - "[INFO] [1712607561.053126]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.053737]: Instances: []\n", - "[INFO] [1712607561.054065]: Direct Instances: []\n", - "[INFO] [1712607561.054435]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607561.054729]: -------------------\n", - "[INFO] [1712607561.055044]: SOMA.Markup_Language \n", - "[INFO] [1712607561.055316]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712607561.055598]: Ancestors: {DUL.Object, SOMA.Markup_Language, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607561.055882]: Subclasses: []\n", - "[INFO] [1712607561.056212]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.056735]: Instances: []\n", - "[INFO] [1712607561.057024]: Direct Instances: []\n", - "[INFO] [1712607561.057293]: Inverse Restrictions: []\n", - "[INFO] [1712607561.057541]: -------------------\n", - "[INFO] [1712607561.057777]: SOMA.Masterful \n", - "[INFO] [1712607561.058009]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712607561.058265]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.Masterful, owl.Thing, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607561.058519]: Subclasses: []\n", - "[INFO] [1712607561.058806]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.059297]: Instances: []\n", - "[INFO] [1712607561.059550]: Direct Instances: []\n", - "[INFO] [1712607561.059804]: Inverse Restrictions: []\n", - "[INFO] [1712607561.060049]: -------------------\n", - "[INFO] [1712607561.060288]: SOMA.Material \n", - "[INFO] [1712607561.060520]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607561.060766]: Ancestors: {SOMA.Material, SOMA.PhysicalQuality, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607561.061019]: Subclasses: []\n", - "[INFO] [1712607561.061312]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.061802]: Instances: []\n", - "[INFO] [1712607561.062058]: Direct Instances: []\n", - "[INFO] [1712607561.062328]: Inverse Restrictions: []\n", - "[INFO] [1712607561.062579]: -------------------\n", - "[INFO] [1712607561.062837]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712607561.063083]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712607561.063333]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.MedicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607561.063589]: Subclasses: []\n", - "[INFO] [1712607561.063897]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.064386]: Instances: []\n", - "[INFO] [1712607561.064656]: Direct Instances: []\n", - "[INFO] [1712607561.064912]: Inverse Restrictions: []\n", - "[INFO] [1712607561.065153]: -------------------\n", - "[INFO] [1712607561.065391]: SOMA.Memorizing \n", - "[INFO] [1712607561.065624]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712607561.065891]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Learning, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, SOMA.Memorizing, DUL.Task, SOMA.InformationStorage, DUL.EventType}\n", - "[INFO] [1712607561.066146]: Subclasses: []\n", - "[INFO] [1712607561.066447]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.066943]: Instances: []\n", - "[INFO] [1712607561.067217]: Direct Instances: []\n", - "[INFO] [1712607561.067470]: Inverse Restrictions: []\n", - "[INFO] [1712607561.067712]: -------------------\n", - "[INFO] [1712607561.067948]: SOMA.MentalAction \n", - "[INFO] [1712607561.068189]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712607561.068436]: Ancestors: {DUL.Action, owl.Thing, DUL.Event, SOMA.MentalAction, DUL.Entity}\n", - "[INFO] [1712607561.068688]: Subclasses: []\n", - "[INFO] [1712607561.068986]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.069494]: Instances: []\n", - "[INFO] [1712607561.069762]: Direct Instances: []\n", - "[INFO] [1712607561.070055]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712607561.070309]: -------------------\n", - "[INFO] [1712607561.070564]: SOMA.MeshShape \n", - "[INFO] [1712607561.070825]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712607561.071081]: Ancestors: {DUL.Abstract, SOMA.MeshShape, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607561.071330]: Subclasses: []\n", - "[INFO] [1712607561.071631]: Properties: [SOMA.hasFilePath, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.072142]: Instances: []\n", - "[INFO] [1712607561.072413]: Direct Instances: []\n", - "[INFO] [1712607561.072667]: Inverse Restrictions: []\n", - "[INFO] [1712607561.072914]: -------------------\n", - "[INFO] [1712607561.073150]: SOMA.MeshShapeData \n", - "[INFO] [1712607561.073406]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712607561.073663]: Ancestors: {DUL.Object, SOMA.MeshShapeData, owl.Thing, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607561.073911]: Subclasses: []\n", - "[INFO] [1712607561.074204]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.074707]: Instances: []\n", - "[INFO] [1712607561.074985]: Direct Instances: []\n", - "[INFO] [1712607561.075242]: Inverse Restrictions: []\n", - "[INFO] [1712607561.075488]: -------------------\n", - "[INFO] [1712607561.075728]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712607561.075963]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712607561.076233]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.076483]: Subclasses: []\n", - "[INFO] [1712607561.076775]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.077262]: Instances: []\n", - "[INFO] [1712607561.077535]: Direct Instances: []\n", - "[INFO] [1712607561.077792]: Inverse Restrictions: []\n", - "[INFO] [1712607561.078033]: -------------------\n", - "[INFO] [1712607561.078281]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712607561.078528]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607561.078781]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.079039]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712607561.079331]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.079841]: Instances: []\n", - "[INFO] [1712607561.080112]: Direct Instances: []\n", - "[INFO] [1712607561.080369]: Inverse Restrictions: []\n", - "[INFO] [1712607561.080616]: -------------------\n", - "[INFO] [1712607561.080852]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712607561.081102]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712607561.081362]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.MetaCognitionMemoryTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.081614]: Subclasses: []\n", - "[INFO] [1712607561.081904]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.082393]: Instances: []\n", - "[INFO] [1712607561.082665]: Direct Instances: []\n", - "[INFO] [1712607561.082927]: Inverse Restrictions: []\n", - "[INFO] [1712607561.083169]: -------------------\n", - "[INFO] [1712607561.083408]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712607561.083645]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712607561.083904]: Ancestors: {DUL.Object, SOMA.MetaCognitionPlanningTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.084160]: Subclasses: []\n", - "[INFO] [1712607561.084453]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.084943]: Instances: []\n", - "[INFO] [1712607561.085215]: Direct Instances: []\n", - "[INFO] [1712607561.085484]: Inverse Restrictions: []\n", - "[INFO] [1712607561.085727]: -------------------\n", - "[INFO] [1712607561.085966]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712607561.086207]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712607561.086470]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.086742]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712607561.087039]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.087569]: Instances: []\n", - "[INFO] [1712607561.087835]: Direct Instances: []\n", - "[INFO] [1712607561.088091]: Inverse Restrictions: []\n", - "[INFO] [1712607561.088331]: -------------------\n", - "[INFO] [1712607561.088567]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712607561.088800]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712607561.089057]: Ancestors: {DUL.Object, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.MetacognitiveControlling, DUL.EventType}\n", - "[INFO] [1712607561.089312]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712607561.089602]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.090090]: Instances: []\n", - "[INFO] [1712607561.090371]: Direct Instances: []\n", - "[INFO] [1712607561.090631]: Inverse Restrictions: []\n", - "[INFO] [1712607561.090872]: -------------------\n", - "[INFO] [1712607561.091108]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712607561.091340]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712607561.091592]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Introspecting, SOMA.MetacognitiveMonitoring}\n", - "[INFO] [1712607561.091839]: Subclasses: []\n", - "[INFO] [1712607561.092126]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.092611]: Instances: []\n", - "[INFO] [1712607561.092882]: Direct Instances: []\n", - "[INFO] [1712607561.093138]: Inverse Restrictions: []\n", - "[INFO] [1712607561.093378]: -------------------\n", - "[INFO] [1712607561.093616]: SOMA.Mixing \n", - "[INFO] [1712607561.093849]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712607561.094096]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, SOMA.Mixing, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.094367]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712607561.094668]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.095164]: Instances: []\n", - "[INFO] [1712607561.095423]: Direct Instances: []\n", - "[INFO] [1712607561.095681]: Inverse Restrictions: []\n", - "[INFO] [1712607561.095920]: -------------------\n", - "[INFO] [1712607561.096157]: SOMA.MixingTheory \n", - "[INFO] [1712607561.096398]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712607561.096643]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, SOMA.MixingTheory, DUL.SocialObject}\n", - "[INFO] [1712607561.096898]: Subclasses: []\n", - "[INFO] [1712607561.097198]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607561.097690]: Instances: []\n", - "[INFO] [1712607561.097961]: Direct Instances: []\n", - "[INFO] [1712607561.098227]: Inverse Restrictions: []\n", - "[INFO] [1712607561.098473]: -------------------\n", - "[INFO] [1712607561.098708]: SOMA.MonitoringJointState \n", - "[INFO] [1712607561.098945]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712607561.099189]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.MonitoringJointState, SOMA.PhysicalTask, SOMA.Proprioceiving, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.099446]: Subclasses: []\n", - "[INFO] [1712607561.099741]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.100230]: Instances: []\n", - "[INFO] [1712607561.100504]: Direct Instances: []\n", - "[INFO] [1712607561.100759]: Inverse Restrictions: []\n", - "[INFO] [1712607561.101007]: -------------------\n", - "[INFO] [1712607561.101248]: SOMA.Proprioceiving \n", - "[INFO] [1712607561.101484]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712607561.101733]: Ancestors: {DUL.Object, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, SOMA.Proprioceiving, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.102004]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712607561.102303]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.102805]: Instances: []\n", - "[INFO] [1712607561.103072]: Direct Instances: []\n", - "[INFO] [1712607561.103325]: Inverse Restrictions: []\n", - "[INFO] [1712607561.103571]: -------------------\n", - "[INFO] [1712607561.103814]: SOMA.MovingAway \n", - "[INFO] [1712607561.104050]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712607561.104300]: Ancestors: {DUL.Object, SOMA.DirectedMotion, DUL.Entity, SOMA.MovingAway, SOMA.Locomotion, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607561.104539]: Subclasses: []\n", - "[INFO] [1712607561.104832]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.105317]: Instances: []\n", - "[INFO] [1712607561.105579]: Direct Instances: []\n", - "[INFO] [1712607561.105840]: Inverse Restrictions: []\n", - "[INFO] [1712607561.106087]: -------------------\n", - "[INFO] [1712607561.106331]: SOMA.MovingTo \n", - "[INFO] [1712607561.106569]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712607561.106846]: Ancestors: {DUL.Object, SOMA.MovingTo, DUL.Entity, owl.Thing, SOMA.Navigating, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.107111]: Subclasses: []\n", - "[INFO] [1712607561.107404]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.107891]: Instances: []\n", - "[INFO] [1712607561.108165]: Direct Instances: []\n", - "[INFO] [1712607561.108420]: Inverse Restrictions: []\n", - "[INFO] [1712607561.108661]: -------------------\n", - "[INFO] [1712607561.108896]: SOMA.Natural_Language \n", - "[INFO] [1712607561.109138]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712607561.109396]: Ancestors: {DUL.Object, SOMA.Natural_Language, SOMA.System, owl.Thing, DUL.Entity, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607561.109640]: Subclasses: []\n", - "[INFO] [1712607561.109931]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.110425]: Instances: []\n", - "[INFO] [1712607561.110700]: Direct Instances: []\n", - "[INFO] [1712607561.111017]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712607561.111264]: -------------------\n", - "[INFO] [1712607561.111501]: SOMA.Natural_Language_Text \n", - "[INFO] [1712607561.111738]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.111973]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", - "[INFO] [1712607561.112226]: Subclasses: []\n", - "[INFO] [1712607561.112528]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607561.113028]: Instances: []\n", - "[INFO] [1712607561.113304]: Direct Instances: []\n", - "[INFO] [1712607561.113599]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712607561.113847]: -------------------\n", - "[INFO] [1712607561.114091]: SOMA.Ontology \n", - "[INFO] [1712607561.114334]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712607561.114587]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", - "[INFO] [1712607561.114833]: Subclasses: []\n", - "[INFO] [1712607561.115132]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712607561.115628]: Instances: []\n", - "[INFO] [1712607561.115901]: Direct Instances: []\n", - "[INFO] [1712607561.116194]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712607561.116446]: -------------------\n", - "[INFO] [1712607561.116686]: SOMA.Ontology_Language \n", - "[INFO] [1712607561.116926]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712607561.117184]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.Language, DUL.SocialObject}\n", - "[INFO] [1712607561.117439]: Subclasses: []\n", - "[INFO] [1712607561.117737]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.118230]: Instances: []\n", - "[INFO] [1712607561.118492]: Direct Instances: []\n", - "[INFO] [1712607561.118815]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712607561.119072]: -------------------\n", - "[INFO] [1712607561.119317]: SOMA.Option \n", - "[INFO] [1712607561.119561]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712607561.119807]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Option, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.120063]: Subclasses: []\n", - "[INFO] [1712607561.120357]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.120841]: Instances: []\n", - "[INFO] [1712607561.121104]: Direct Instances: []\n", - "[INFO] [1712607561.121356]: Inverse Restrictions: []\n", - "[INFO] [1712607561.121601]: -------------------\n", - "[INFO] [1712607561.121845]: SOMA.Singleton \n", - "[INFO] [1712607561.122077]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.122320]: Ancestors: {SOMA.Singleton, owl.Thing}\n", - "[INFO] [1712607561.122568]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712607561.122865]: Properties: [rdf-schema.comment, SOMA.encapsulates, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.123366]: Instances: []\n", - "[INFO] [1712607561.123638]: Direct Instances: []\n", - "[INFO] [1712607561.123896]: Inverse Restrictions: []\n", - "[INFO] [1712607561.124138]: -------------------\n", - "[INFO] [1712607561.124372]: SOMA.Orienting \n", - "[INFO] [1712607561.124604]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712607561.124847]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Orienting, SOMA.Positioning, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.125102]: Subclasses: []\n", - "[INFO] [1712607561.125392]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.125878]: Instances: []\n", - "[INFO] [1712607561.126147]: Direct Instances: []\n", - "[INFO] [1712607561.126412]: Inverse Restrictions: []\n", - "[INFO] [1712607561.126657]: -------------------\n", - "[INFO] [1712607561.126895]: SOMA.Positioning \n", - "[INFO] [1712607561.127133]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712607561.127377]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Positioning, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.127623]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712607561.127921]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.128412]: Instances: []\n", - "[INFO] [1712607561.128684]: Direct Instances: []\n", - "[INFO] [1712607561.128941]: Inverse Restrictions: []\n", - "[INFO] [1712607561.129189]: -------------------\n", - "[INFO] [1712607561.129423]: SOMA.Origin \n", - "[INFO] [1712607561.129656]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712607561.129902]: Ancestors: {DUL.Object, SOMA.Origin, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Location, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.130162]: Subclasses: []\n", - "[INFO] [1712607561.130455]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.130942]: Instances: []\n", - "[INFO] [1712607561.131200]: Direct Instances: []\n", - "[INFO] [1712607561.131505]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712607561.131757]: -------------------\n", - "[INFO] [1712607561.131996]: SOMA.ParkingArms \n", - "[INFO] [1712607561.132231]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712607561.132482]: Ancestors: {DUL.Object, SOMA.ParkingArms, DUL.Entity, DUL.EventType, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingArmPose}\n", - "[INFO] [1712607561.132740]: Subclasses: []\n", - "[INFO] [1712607561.133036]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.133535]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712607561.133798]: Direct Instances: [SOMA.parking_arms]\n", - "[INFO] [1712607561.134056]: Inverse Restrictions: []\n", - "[INFO] [1712607561.134314]: -------------------\n", - "[INFO] [1712607561.134559]: SOMA.PhaseTransition \n", - "[INFO] [1712607561.134795]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712607561.135039]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PhaseTransition, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Alteration, DUL.EventType}\n", - "[INFO] [1712607561.135284]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712607561.135584]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712607561.136081]: Instances: []\n", - "[INFO] [1712607561.136340]: Direct Instances: []\n", - "[INFO] [1712607561.136586]: Inverse Restrictions: []\n", - "[INFO] [1712607561.136827]: -------------------\n", - "[INFO] [1712607561.137072]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712607561.137321]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712607561.137566]: Ancestors: {DUL.Object, SOMA.StateType, DUL.EventType, owl.Thing, SOMA.PhysicalAccessibility, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.137813]: Subclasses: []\n", - "[INFO] [1712607561.138143]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.138786]: Instances: []\n", - "[INFO] [1712607561.139099]: Direct Instances: []\n", - "[INFO] [1712607561.139379]: Inverse Restrictions: []\n", - "[INFO] [1712607561.139633]: -------------------\n", - "[INFO] [1712607561.140121]: SOMA.PhysicalBlockage \n", - "[INFO] [1712607561.140574]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712607561.141055]: Ancestors: {DUL.Object, SOMA.StateType, SOMA.PhysicalBlockage, DUL.EventType, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.141481]: Subclasses: []\n", - "[INFO] [1712607561.141893]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.142504]: Instances: []\n", - "[INFO] [1712607561.143011]: Direct Instances: []\n", - "[INFO] [1712607561.143439]: Inverse Restrictions: []\n", - "[INFO] [1712607561.143849]: -------------------\n", - "[INFO] [1712607561.144264]: SOMA.PhysicalExistence \n", - "[INFO] [1712607561.144689]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712607561.145043]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicalExistence, SOMA.PhysicalState}\n", - "[INFO] [1712607561.145402]: Subclasses: []\n", - "[INFO] [1712607561.145795]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.146381]: Instances: []\n", - "[INFO] [1712607561.146731]: Direct Instances: []\n", - "[INFO] [1712607561.147070]: Inverse Restrictions: []\n", - "[INFO] [1712607561.147404]: -------------------\n", - "[INFO] [1712607561.147732]: SOMA.PhysicalState \n", - "[INFO] [1712607561.148070]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712607561.148395]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicalState}\n", - "[INFO] [1712607561.148738]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712607561.149142]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607561.149770]: Instances: []\n", - "[INFO] [1712607561.150157]: Direct Instances: []\n", - "[INFO] [1712607561.150542]: Inverse Restrictions: []\n", - "[INFO] [1712607561.150919]: -------------------\n", - "[INFO] [1712607561.151292]: SOMA.PhysicsProcess \n", - "[INFO] [1712607561.151661]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712607561.152035]: Ancestors: {DUL.Process, owl.Thing, DUL.Event, DUL.Entity, SOMA.PhysicsProcess}\n", - "[INFO] [1712607561.152402]: Subclasses: []\n", - "[INFO] [1712607561.152839]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607561.153484]: Instances: []\n", - "[INFO] [1712607561.153845]: Direct Instances: []\n", - "[INFO] [1712607561.154197]: Inverse Restrictions: []\n", - "[INFO] [1712607561.154489]: -------------------\n", - "[INFO] [1712607561.154735]: SOMA.PlacingTheory \n", - "[INFO] [1712607561.154974]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712607561.155214]: Ancestors: {DUL.Object, SOMA.PlacingTheory, DUL.Description, owl.Thing, SOMA.SchematicTheory, SOMA.ExecutableSchematicTheory, DUL.Theory, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.155461]: Subclasses: []\n", - "[INFO] [1712607561.155758]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607561.156241]: Instances: []\n", - "[INFO] [1712607561.156498]: Direct Instances: []\n", - "[INFO] [1712607561.156744]: Inverse Restrictions: []\n", - "[INFO] [1712607561.156987]: -------------------\n", - "[INFO] [1712607561.157221]: SOMA.PlanarJoint \n", - "[INFO] [1712607561.157454]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712607561.157692]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.Joint, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.PlanarJoint}\n", - "[INFO] [1712607561.157923]: Subclasses: []\n", - "[INFO] [1712607561.158207]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.158708]: Instances: []\n", - "[INFO] [1712607561.158970]: Direct Instances: []\n", - "[INFO] [1712607561.159216]: Inverse Restrictions: []\n", - "[INFO] [1712607561.159445]: -------------------\n", - "[INFO] [1712607561.159673]: SOMA.PluginRole \n", - "[INFO] [1712607561.159905]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712607561.160157]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.InterfaceComponentRole, owl.Thing, DUL.Concept, DUL.Entity, SOMA.PluginRole, DUL.SocialObject}\n", - "[INFO] [1712607561.160400]: Subclasses: []\n", - "[INFO] [1712607561.160690]: Properties: [rdf-schema.comment, DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607561.161178]: Instances: []\n", - "[INFO] [1712607561.161446]: Direct Instances: []\n", - "[INFO] [1712607561.161764]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712607561.161999]: -------------------\n", - "[INFO] [1712607561.162234]: SOMA.Pourable \n", - "[INFO] [1712607561.162474]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712607561.162735]: Ancestors: {SOMA.Pourable, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607561.163074]: Subclasses: []\n", - "[INFO] [1712607561.163657]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.164206]: Instances: []\n", - "[INFO] [1712607561.164491]: Direct Instances: []\n", - "[INFO] [1712607561.164800]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712607561.165049]: -------------------\n", - "[INFO] [1712607561.165289]: SOMA.PouredObject \n", - "[INFO] [1712607561.165520]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712607561.165759]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.PouredObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607561.166020]: Subclasses: []\n", - "[INFO] [1712607561.166325]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.166820]: Instances: []\n", - "[INFO] [1712607561.167097]: Direct Instances: []\n", - "[INFO] [1712607561.167395]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712607561.167635]: -------------------\n", - "[INFO] [1712607561.167866]: SOMA.Pouring \n", - "[INFO] [1712607561.168098]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712607561.168340]: Ancestors: {DUL.Object, SOMA.Pouring, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.168606]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712607561.168900]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607561.169384]: Instances: []\n", - "[INFO] [1712607561.169637]: Direct Instances: []\n", - "[INFO] [1712607561.169888]: Inverse Restrictions: []\n", - "[INFO] [1712607561.170132]: -------------------\n", - "[INFO] [1712607561.170375]: SOMA.PouringInto \n", - "[INFO] [1712607561.170608]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712607561.170854]: Ancestors: {DUL.Object, SOMA.Pouring, DUL.Entity, DUL.EventType, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.PouringInto}\n", - "[INFO] [1712607561.171093]: Subclasses: []\n", - "[INFO] [1712607561.171405]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.171927]: Instances: []\n", - "[INFO] [1712607561.172208]: Direct Instances: []\n", - "[INFO] [1712607561.172490]: Inverse Restrictions: []\n", - "[INFO] [1712607561.172753]: -------------------\n", - "[INFO] [1712607561.173022]: SOMA.PouringOnto \n", - "[INFO] [1712607561.173308]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712607561.173599]: Ancestors: {DUL.Object, SOMA.Pouring, SOMA.PouringOnto, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.173879]: Subclasses: []\n", - "[INFO] [1712607561.174210]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.174784]: Instances: []\n", - "[INFO] [1712607561.175081]: Direct Instances: []\n", - "[INFO] [1712607561.175345]: Inverse Restrictions: []\n", - "[INFO] [1712607561.175595]: -------------------\n", - "[INFO] [1712607561.175841]: SOMA.Prediction \n", - "[INFO] [1712607561.176080]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712607561.176332]: Ancestors: {owl.Thing, SOMA.Prediction, SOMA.Prospecting, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607561.176582]: Subclasses: []\n", - "[INFO] [1712607561.176875]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.177357]: Instances: []\n", - "[INFO] [1712607561.177619]: Direct Instances: []\n", - "[INFO] [1712607561.177876]: Inverse Restrictions: []\n", - "[INFO] [1712607561.178111]: -------------------\n", - "[INFO] [1712607561.178345]: SOMA.Prospecting \n", - "[INFO] [1712607561.178573]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712607561.178819]: Ancestors: {owl.Thing, SOMA.InformationAcquisition, SOMA.Prospecting, SOMA.DerivingInformation}\n", - "[INFO] [1712607561.179096]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712607561.179388]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.179874]: Instances: []\n", - "[INFO] [1712607561.180125]: Direct Instances: []\n", - "[INFO] [1712607561.180380]: Inverse Restrictions: []\n", - "[INFO] [1712607561.180625]: -------------------\n", - "[INFO] [1712607561.180860]: SOMA.Predilection \n", - "[INFO] [1712607561.181106]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712607561.181347]: Ancestors: {DUL.Object, DUL.Description, SOMA.Predilection, DUL.SocialRelation, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.181583]: Subclasses: []\n", - "[INFO] [1712607561.181882]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.182364]: Instances: []\n", - "[INFO] [1712607561.182630]: Direct Instances: []\n", - "[INFO] [1712607561.182877]: Inverse Restrictions: []\n", - "[INFO] [1712607561.183105]: -------------------\n", - "[INFO] [1712607561.183341]: SOMA.PreferenceOrder \n", - "[INFO] [1712607561.183590]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712607561.183841]: Ancestors: {DUL.Object, SOMA.PreferenceOrder, DUL.Description, DUL.SocialRelation, owl.Thing, DUL.Relation, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.184084]: Subclasses: []\n", - "[INFO] [1712607561.184374]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.orders]\n", - "[INFO] [1712607561.184880]: Instances: []\n", - "[INFO] [1712607561.185158]: Direct Instances: []\n", - "[INFO] [1712607561.185416]: Inverse Restrictions: []\n", - "[INFO] [1712607561.185667]: -------------------\n", - "[INFO] [1712607561.185899]: SOMA.PreferenceRegion \n", - "[INFO] [1712607561.186138]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712607561.186393]: Ancestors: {DUL.Abstract, SOMA.PreferenceRegion, owl.Thing, DUL.Entity, DUL.SocialObjectAttribute, DUL.Region}\n", - "[INFO] [1712607561.186643]: Subclasses: []\n", - "[INFO] [1712607561.186935]: Properties: [rdf-schema.comment, DUL.isRegionFor, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.187414]: Instances: []\n", - "[INFO] [1712607561.187689]: Direct Instances: []\n", - "[INFO] [1712607561.187945]: Inverse Restrictions: []\n", - "[INFO] [1712607561.188178]: -------------------\n", - "[INFO] [1712607561.188410]: SOMA.PrismaticJoint \n", - "[INFO] [1712607561.188645]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712607561.188902]: Ancestors: {DUL.Object, SOMA.PrismaticJoint, DUL.PhysicalObject, owl.Thing, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607561.189158]: Subclasses: []\n", - "[INFO] [1712607561.189449]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointLimit]\n", - "[INFO] [1712607561.189926]: Instances: []\n", - "[INFO] [1712607561.190241]: Direct Instances: []\n", - "[INFO] [1712607561.190545]: Inverse Restrictions: []\n", - "[INFO] [1712607561.190802]: -------------------\n", - "[INFO] [1712607561.191054]: SOMA.ProcessFlow \n", - "[INFO] [1712607561.191302]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712607561.191554]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, SOMA.ProcessFlow, DUL.SocialObject}\n", - "[INFO] [1712607561.191814]: Subclasses: []\n", - "[INFO] [1712607561.192116]: Properties: [SOMA.definesProcess, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.192606]: Instances: []\n", - "[INFO] [1712607561.192868]: Direct Instances: []\n", - "[INFO] [1712607561.193166]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712607561.193414]: -------------------\n", - "[INFO] [1712607561.193652]: SOMA.Progression \n", - "[INFO] [1712607561.193885]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712607561.194122]: Ancestors: {SOMA.Progression, DUL.Situation, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607561.194390]: Subclasses: []\n", - "[INFO] [1712607561.194697]: Properties: [DUL.satisfies, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.195183]: Instances: []\n", - "[INFO] [1712607561.195445]: Direct Instances: []\n", - "[INFO] [1712607561.195700]: Inverse Restrictions: []\n", - "[INFO] [1712607561.195943]: -------------------\n", - "[INFO] [1712607561.196181]: SOMA.Protector \n", - "[INFO] [1712607561.196408]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712607561.196647]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, SOMA.Protector, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607561.196900]: Subclasses: []\n", - "[INFO] [1712607561.197193]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.197687]: Instances: []\n", - "[INFO] [1712607561.197963]: Direct Instances: []\n", - "[INFO] [1712607561.198238]: Inverse Restrictions: []\n", - "[INFO] [1712607561.198493]: -------------------\n", - "[INFO] [1712607561.198910]: SOMA.ProximalTheory \n", - "[INFO] [1712607561.199301]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712607561.199714]: Ancestors: {DUL.Object, DUL.Description, DUL.Entity, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, SOMA.ProximalTheory, DUL.SocialObject}\n", - "[INFO] [1712607561.200115]: Subclasses: []\n", - "[INFO] [1712607561.200541]: Properties: [rdf-schema.comment, DUL.defines, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607561.201453]: Instances: []\n", - "[INFO] [1712607561.201848]: Direct Instances: []\n", - "[INFO] [1712607561.202204]: Inverse Restrictions: []\n", - "[INFO] [1712607561.202542]: -------------------\n", - "[INFO] [1712607561.202885]: SOMA.PushingAway \n", - "[INFO] [1712607561.203227]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712607561.203574]: Ancestors: {DUL.Object, SOMA.PushingAway, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", - "[INFO] [1712607561.203910]: Subclasses: []\n", - "[INFO] [1712607561.204296]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.204862]: Instances: []\n", - "[INFO] [1712607561.205217]: Direct Instances: []\n", - "[INFO] [1712607561.205560]: Inverse Restrictions: []\n", - "[INFO] [1712607561.205889]: -------------------\n", - "[INFO] [1712607561.206214]: SOMA.PushingDown \n", - "[INFO] [1712607561.206534]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712607561.206876]: Ancestors: {SOMA.PushingDown, DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Pushing, DUL.EventType}\n", - "[INFO] [1712607561.207212]: Subclasses: []\n", - "[INFO] [1712607561.207583]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.208149]: Instances: []\n", - "[INFO] [1712607561.208504]: Direct Instances: []\n", - "[INFO] [1712607561.208842]: Inverse Restrictions: []\n", - "[INFO] [1712607561.209114]: -------------------\n", - "[INFO] [1712607561.209471]: SOMA.PuttingDown \n", - "[INFO] [1712607561.209786]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712607561.210120]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.PuttingDown, DUL.EventType}\n", - "[INFO] [1712607561.210473]: Subclasses: []\n", - "[INFO] [1712607561.210853]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.211430]: Instances: []\n", - "[INFO] [1712607561.211787]: Direct Instances: []\n", - "[INFO] [1712607561.212126]: Inverse Restrictions: []\n", - "[INFO] [1712607561.212451]: -------------------\n", - "[INFO] [1712607561.212778]: SOMA.QualityTransition \n", - "[INFO] [1712607561.213092]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712607561.213424]: Ancestors: {DUL.Transition, owl.Thing, SOMA.QualityTransition, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712607561.213756]: Subclasses: []\n", - "[INFO] [1712607561.214132]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.214709]: Instances: []\n", - "[INFO] [1712607561.215048]: Direct Instances: []\n", - "[INFO] [1712607561.215378]: Inverse Restrictions: []\n", - "[INFO] [1712607561.215711]: -------------------\n", - "[INFO] [1712607561.216033]: SOMA.Query \n", - "[INFO] [1712607561.216356]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712607561.216683]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.Query, SOMA.Message, DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607561.217007]: Subclasses: []\n", - "[INFO] [1712607561.217383]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.217954]: Instances: []\n", - "[INFO] [1712607561.218431]: Direct Instances: []\n", - "[INFO] [1712607561.218816]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712607561.219093]: -------------------\n", - "[INFO] [1712607561.219356]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712607561.219603]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.219848]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", - "[INFO] [1712607561.220086]: Subclasses: []\n", - "[INFO] [1712607561.220397]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.220895]: Instances: []\n", - "[INFO] [1712607561.221153]: Direct Instances: []\n", - "[INFO] [1712607561.221401]: Inverse Restrictions: []\n", - "[INFO] [1712607561.221635]: -------------------\n", - "[INFO] [1712607561.221863]: SOMA.QueryEngine \n", - "[INFO] [1712607561.222103]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607561.222354]: Ancestors: {DUL.Object, SOMA.SoftwareRole, DUL.Role, SOMA.QueryEngine, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.222589]: Subclasses: []\n", - "[INFO] [1712607561.222867]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.223363]: Instances: []\n", - "[INFO] [1712607561.223624]: Direct Instances: []\n", - "[INFO] [1712607561.223867]: Inverse Restrictions: []\n", - "[INFO] [1712607561.224100]: -------------------\n", - "[INFO] [1712607561.224327]: SOMA.Reaching \n", - "[INFO] [1712607561.224555]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712607561.224808]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Reaching, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.225052]: Subclasses: []\n", - "[INFO] [1712607561.225343]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.225835]: Instances: []\n", - "[INFO] [1712607561.226095]: Direct Instances: []\n", - "[INFO] [1712607561.226350]: Inverse Restrictions: []\n", - "[INFO] [1712607561.226585]: -------------------\n", - "[INFO] [1712607561.226813]: SOMA.Retracting \n", - "[INFO] [1712607561.227040]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712607561.227280]: Ancestors: {DUL.Object, SOMA.Retracting, SOMA.Manipulating, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.EndEffectorPositioning, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.227530]: Subclasses: []\n", - "[INFO] [1712607561.227851]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.228347]: Instances: []\n", - "[INFO] [1712607561.228610]: Direct Instances: []\n", - "[INFO] [1712607561.228880]: Inverse Restrictions: []\n", - "[INFO] [1712607561.229134]: -------------------\n", - "[INFO] [1712607561.229372]: SOMA.Reasoner \n", - "[INFO] [1712607561.229606]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712607561.229844]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.230108]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712607561.230410]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.230910]: Instances: []\n", - "[INFO] [1712607561.231182]: Direct Instances: []\n", - "[INFO] [1712607561.231444]: Inverse Restrictions: []\n", - "[INFO] [1712607561.231684]: -------------------\n", - "[INFO] [1712607561.231920]: SOMA.RecipientRole \n", - "[INFO] [1712607561.232148]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712607561.232398]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.BeneficiaryRole, SOMA.GoalRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.RecipientRole, DUL.SocialObject}\n", - "[INFO] [1712607561.232656]: Subclasses: []\n", - "[INFO] [1712607561.232956]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.233505]: Instances: []\n", - "[INFO] [1712607561.233778]: Direct Instances: []\n", - "[INFO] [1712607561.234040]: Inverse Restrictions: []\n", - "[INFO] [1712607561.234303]: -------------------\n", - "[INFO] [1712607561.234559]: SOMA.RecordedEpisode \n", - "[INFO] [1712607561.234819]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712607561.235095]: Ancestors: {SOMA.RecordedEpisode, owl.Thing, SOMA.Episode, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712607561.235370]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712607561.235676]: Properties: [rdf-schema.comment, SOMA.includesRecord, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.236185]: Instances: []\n", - "[INFO] [1712607561.236470]: Direct Instances: []\n", - "[INFO] [1712607561.236734]: Inverse Restrictions: []\n", - "[INFO] [1712607561.236979]: -------------------\n", - "[INFO] [1712607561.237220]: SOMA.RedColor \n", - "[INFO] [1712607561.237451]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712607561.237753]: Ancestors: {SOMA.ColorRegion, DUL.Abstract, DUL.PhysicalAttribute, owl.Thing, DUL.Entity, SOMA.RedColor, DUL.Region}\n", - "[INFO] [1712607561.238031]: Subclasses: []\n", - "[INFO] [1712607561.238355]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.238858]: Instances: []\n", - "[INFO] [1712607561.239127]: Direct Instances: []\n", - "[INFO] [1712607561.239379]: Inverse Restrictions: []\n", - "[INFO] [1712607561.239615]: -------------------\n", - "[INFO] [1712607561.240008]: SOMA.Reification \n", - "[INFO] [1712607561.240339]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712607561.240669]: Ancestors: {DUL.Object, DUL.Description, SOMA.Reification, owl.Thing, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.240949]: Subclasses: []\n", - "[INFO] [1712607561.241323]: Properties: [SOMA.isReificationOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.241889]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712607561.242218]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712607561.242506]: Inverse Restrictions: []\n", - "[INFO] [1712607561.242757]: -------------------\n", - "[INFO] [1712607561.242998]: SOMA.RelationalDatabase \n", - "[INFO] [1712607561.243237]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712607561.243494]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.RelationalDatabase, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Database, DUL.SocialObject}\n", - "[INFO] [1712607561.243743]: Subclasses: []\n", - "[INFO] [1712607561.244123]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.244626]: Instances: []\n", - "[INFO] [1712607561.244916]: Direct Instances: []\n", - "[INFO] [1712607561.245174]: Inverse Restrictions: []\n", - "[INFO] [1712607561.245413]: -------------------\n", - "[INFO] [1712607561.245646]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712607561.245874]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712607561.246119]: Ancestors: {DUL.Object, SOMA.RelationalQueryLanguage, SOMA.Computer_Language, SOMA.System, owl.Thing, SOMA.FormalLanguage, DUL.Entity, SOMA.Language, SOMA.QueryLanguage, DUL.SocialObject}\n", - "[INFO] [1712607561.246389]: Subclasses: []\n", - "[INFO] [1712607561.246692]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.247178]: Instances: []\n", - "[INFO] [1712607561.247454]: Direct Instances: []\n", - "[INFO] [1712607561.247708]: Inverse Restrictions: []\n", - "[INFO] [1712607561.247943]: -------------------\n", - "[INFO] [1712607561.248176]: SOMA.RelevantPart \n", - "[INFO] [1712607561.248406]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712607561.248646]: Ancestors: {DUL.Object, SOMA.RelevantPart, owl.Thing, DUL.Entity, SOMA.Feature}\n", - "[INFO] [1712607561.248901]: Subclasses: []\n", - "[INFO] [1712607561.249194]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.249675]: Instances: []\n", - "[INFO] [1712607561.249920]: Direct Instances: []\n", - "[INFO] [1712607561.250159]: Inverse Restrictions: []\n", - "[INFO] [1712607561.250408]: -------------------\n", - "[INFO] [1712607561.250644]: SOMA.Remembering \n", - "[INFO] [1712607561.250881]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712607561.251114]: Ancestors: {owl.Thing, SOMA.Remembering}\n", - "[INFO] [1712607561.251356]: Subclasses: []\n", - "[INFO] [1712607561.251690]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.252183]: Instances: []\n", - "[INFO] [1712607561.252454]: Direct Instances: []\n", - "[INFO] [1712607561.252697]: Inverse Restrictions: []\n", - "[INFO] [1712607561.252960]: -------------------\n", - "[INFO] [1712607561.253202]: SOMA.Retrospecting \n", - "[INFO] [1712607561.253438]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712607561.253687]: Ancestors: {SOMA.Retrospecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712607561.253932]: Subclasses: []\n", - "[INFO] [1712607561.254238]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.254736]: Instances: []\n", - "[INFO] [1712607561.255000]: Direct Instances: []\n", - "[INFO] [1712607561.255296]: Inverse Restrictions: []\n", - "[INFO] [1712607561.255532]: -------------------\n", - "[INFO] [1712607561.255772]: SOMA.RemovedObject \n", - "[INFO] [1712607561.256007]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712607561.256250]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, DUL.Role, SOMA.ExcludedObject, owl.Thing, SOMA.RemovedObject, DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607561.256489]: Subclasses: []\n", - "[INFO] [1712607561.256775]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.257270]: Instances: []\n", - "[INFO] [1712607561.257529]: Direct Instances: []\n", - "[INFO] [1712607561.257781]: Inverse Restrictions: []\n", - "[INFO] [1712607561.258010]: -------------------\n", - "[INFO] [1712607561.258245]: SOMA.Replanning \n", - "[INFO] [1712607561.258490]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712607561.258733]: Ancestors: {SOMA.Deciding, SOMA.Planning, SOMA.Replanning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607561.258976]: Subclasses: []\n", - "[INFO] [1712607561.259263]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.259765]: Instances: []\n", - "[INFO] [1712607561.260028]: Direct Instances: []\n", - "[INFO] [1712607561.260274]: Inverse Restrictions: []\n", - "[INFO] [1712607561.260510]: -------------------\n", - "[INFO] [1712607561.260739]: SOMA.RevoluteJoint \n", - "[INFO] [1712607561.260975]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712607561.261265]: Ancestors: {DUL.Object, DUL.PhysicalObject, SOMA.RevoluteJoint, owl.Thing, SOMA.HingeJoint, DUL.PhysicalBody, DUL.Entity, SOMA.MovableJoint, SOMA.Joint}\n", - "[INFO] [1712607561.261517]: Subclasses: []\n", - "[INFO] [1712607561.261813]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointLimit]\n", - "[INFO] [1712607561.262309]: Instances: []\n", - "[INFO] [1712607561.262582]: Direct Instances: []\n", - "[INFO] [1712607561.262827]: Inverse Restrictions: []\n", - "[INFO] [1712607561.263058]: -------------------\n", - "[INFO] [1712607561.263284]: SOMA.Surface \n", - "[INFO] [1712607561.263520]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712607561.263766]: Ancestors: {DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Surface, DUL.Entity, DUL.PhysicalPlace}\n", - "[INFO] [1712607561.264019]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712607561.264305]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.264810]: Instances: []\n", - "[INFO] [1712607561.265079]: Direct Instances: []\n", - "[INFO] [1712607561.265337]: Inverse Restrictions: []\n", - "[INFO] [1712607561.265570]: -------------------\n", - "[INFO] [1712607561.265800]: SOMA.Rubbing \n", - "[INFO] [1712607561.266038]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712607561.266287]: Ancestors: {DUL.Object, SOMA.Motion, SOMA.DirectedMotion, SOMA.Rubbing, DUL.Entity, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607561.266526]: Subclasses: []\n", - "[INFO] [1712607561.266805]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.267274]: Instances: []\n", - "[INFO] [1712607561.267542]: Direct Instances: []\n", - "[INFO] [1712607561.267792]: Inverse Restrictions: []\n", - "[INFO] [1712607561.268022]: -------------------\n", - "[INFO] [1712607561.268252]: SOMA.Scene \n", - "[INFO] [1712607561.268488]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712607561.268738]: Ancestors: {owl.Thing, DUL.Situation, DUL.Entity, SOMA.Scene}\n", - "[INFO] [1712607561.268982]: Subclasses: []\n", - "[INFO] [1712607561.269277]: Properties: [DUL.satisfies, DUL.includesEvent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712607561.269756]: Instances: []\n", - "[INFO] [1712607561.270029]: Direct Instances: []\n", - "[INFO] [1712607561.270338]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712607561.270579]: -------------------\n", - "[INFO] [1712607561.270809]: SOMA.SelectedObject \n", - "[INFO] [1712607561.271036]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712607561.271275]: Ancestors: {DUL.Object, DUL.Role, owl.Thing, SOMA.SelectedObject, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.271522]: Subclasses: []\n", - "[INFO] [1712607561.271813]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.272294]: Instances: []\n", - "[INFO] [1712607561.272546]: Direct Instances: []\n", - "[INFO] [1712607561.272864]: Inverse Restrictions: []\n", - "[INFO] [1712607561.273103]: -------------------\n", - "[INFO] [1712607561.273334]: SOMA.Selecting \n", - "[INFO] [1712607561.273560]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712607561.273807]: Ancestors: {SOMA.Deciding, SOMA.Selecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607561.274052]: Subclasses: []\n", - "[INFO] [1712607561.274345]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.274840]: Instances: []\n", - "[INFO] [1712607561.275107]: Direct Instances: []\n", - "[INFO] [1712607561.275353]: Inverse Restrictions: []\n", - "[INFO] [1712607561.275583]: -------------------\n", - "[INFO] [1712607561.275810]: SOMA.SelectingItem \n", - "[INFO] [1712607561.276049]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712607561.276302]: Ancestors: {SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607561.276546]: Subclasses: []\n", - "[INFO] [1712607561.276839]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712607561.277335]: Instances: []\n", - "[INFO] [1712607561.277593]: Direct Instances: []\n", - "[INFO] [1712607561.277894]: Inverse Restrictions: []\n", - "[INFO] [1712607561.278126]: -------------------\n", - "[INFO] [1712607561.278361]: SOMA.SelfReflection \n", - "[INFO] [1712607561.278591]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712607561.278843]: Ancestors: {DUL.Object, SOMA.SelfReflection, DUL.Entity, SOMA.MentalTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.MetacognitiveControlling, DUL.EventType}\n", - "[INFO] [1712607561.279121]: Subclasses: []\n", - "[INFO] [1712607561.279414]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.279906]: Instances: []\n", - "[INFO] [1712607561.280177]: Direct Instances: []\n", - "[INFO] [1712607561.280428]: Inverse Restrictions: []\n", - "[INFO] [1712607561.280659]: -------------------\n", - "[INFO] [1712607561.280887]: SOMA.Serving \n", - "[INFO] [1712607561.281126]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712607561.281371]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.Delivering, DUL.Task, SOMA.Serving, DUL.EventType}\n", - "[INFO] [1712607561.281620]: Subclasses: []\n", - "[INFO] [1712607561.281911]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.282400]: Instances: []\n", - "[INFO] [1712607561.282678]: Direct Instances: []\n", - "[INFO] [1712607561.282938]: Inverse Restrictions: []\n", - "[INFO] [1712607561.283170]: -------------------\n", - "[INFO] [1712607561.283402]: SOMA.SettingGripper \n", - "[INFO] [1712607561.283628]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712607561.283873]: Ancestors: {DUL.Object, DUL.Entity, SOMA.AssumingPose, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, SOMA.SettingGripper, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.284121]: Subclasses: []\n", - "[INFO] [1712607561.284408]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.284892]: Instances: []\n", - "[INFO] [1712607561.285163]: Direct Instances: []\n", - "[INFO] [1712607561.285414]: Inverse Restrictions: []\n", - "[INFO] [1712607561.285650]: -------------------\n", - "[INFO] [1712607561.285881]: SOMA.6DPose \n", - "[INFO] [1712607561.286132]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712607561.286381]: Ancestors: {DUL.Abstract, owl.Thing, DUL.SpaceRegion, SOMA.6DPose, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607561.286622]: Subclasses: []\n", - "[INFO] [1712607561.286911]: Properties: [rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.287397]: Instances: []\n", - "[INFO] [1712607561.287665]: Direct Instances: []\n", - "[INFO] [1712607561.287954]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712607561.288188]: -------------------\n", - "[INFO] [1712607561.288416]: SOMA.Sharpness \n", - "[INFO] [1712607561.288640]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607561.288886]: Ancestors: {SOMA.PhysicalQuality, SOMA.Sharpness, owl.Thing, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607561.289130]: Subclasses: []\n", - "[INFO] [1712607561.289415]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.289894]: Instances: []\n", - "[INFO] [1712607561.290171]: Direct Instances: []\n", - "[INFO] [1712607561.290435]: Inverse Restrictions: []\n", - "[INFO] [1712607561.290670]: -------------------\n", - "[INFO] [1712607561.290899]: SOMA.Simulating \n", - "[INFO] [1712607561.291126]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712607561.291373]: Ancestors: {SOMA.Simulating, owl.Thing, SOMA.Prospecting, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712607561.291616]: Subclasses: []\n", - "[INFO] [1712607561.291904]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.292386]: Instances: []\n", - "[INFO] [1712607561.292650]: Direct Instances: []\n", - "[INFO] [1712607561.292906]: Inverse Restrictions: []\n", - "[INFO] [1712607561.293137]: -------------------\n", - "[INFO] [1712607561.293365]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712607561.293590]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712607561.293825]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Simulation_Reasoner, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.294075]: Subclasses: []\n", - "[INFO] [1712607561.294370]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.294853]: Instances: []\n", - "[INFO] [1712607561.295105]: Direct Instances: []\n", - "[INFO] [1712607561.295368]: Inverse Restrictions: []\n", - "[INFO] [1712607561.295612]: -------------------\n", - "[INFO] [1712607561.295841]: SOMA.Size \n", - "[INFO] [1712607561.296073]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712607561.296305]: Ancestors: {SOMA.PhysicalQuality, owl.Thing, SOMA.Size, DUL.Entity, SOMA.Intrinsic, DUL.Quality}\n", - "[INFO] [1712607561.296553]: Subclasses: []\n", - "[INFO] [1712607561.296843]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.297338]: Instances: []\n", - "[INFO] [1712607561.297607]: Direct Instances: []\n", - "[INFO] [1712607561.297851]: Inverse Restrictions: []\n", - "[INFO] [1712607561.298080]: -------------------\n", - "[INFO] [1712607561.298316]: SOMA.Slicing \n", - "[INFO] [1712607561.298548]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712607561.298805]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Cutting, SOMA.Slicing, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.299051]: Subclasses: []\n", - "[INFO] [1712607561.299338]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.299838]: Instances: []\n", - "[INFO] [1712607561.300099]: Direct Instances: []\n", - "[INFO] [1712607561.300345]: Inverse Restrictions: []\n", - "[INFO] [1712607561.300580]: -------------------\n", - "[INFO] [1712607561.300816]: SOMA.Sluggishness \n", - "[INFO] [1712607561.301052]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712607561.301302]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.Sluggishness, DUL.Description, DUL.Entity, owl.Thing, SOMA.Amateurish, SOMA.DexterityDiagnosis, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607561.301544]: Subclasses: []\n", - "[INFO] [1712607561.301829]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.302312]: Instances: []\n", - "[INFO] [1712607561.302586]: Direct Instances: []\n", - "[INFO] [1712607561.302839]: Inverse Restrictions: []\n", - "[INFO] [1712607561.303070]: -------------------\n", - "[INFO] [1712607561.303303]: SOMA.SocialState \n", - "[INFO] [1712607561.303532]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712607561.303781]: Ancestors: {SOMA.State, owl.Thing, DUL.Event, DUL.Entity, SOMA.SocialState}\n", - "[INFO] [1712607561.304031]: Subclasses: []\n", - "[INFO] [1712607561.304320]: Properties: [rdf-schema.comment, DUL.hasParticipant, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712607561.304792]: Instances: []\n", - "[INFO] [1712607561.305060]: Direct Instances: []\n", - "[INFO] [1712607561.305314]: Inverse Restrictions: []\n", - "[INFO] [1712607561.305548]: -------------------\n", - "[INFO] [1712607561.305779]: SOMA.Software_Configuration \n", - "[INFO] [1712607561.306011]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712607561.306256]: Ancestors: {DUL.Object, DUL.Collection, DUL.Configuration, owl.Thing, SOMA.Software_Configuration, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.306514]: Subclasses: []\n", - "[INFO] [1712607561.306807]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.isDescribedBy]\n", - "[INFO] [1712607561.307286]: Instances: []\n", - "[INFO] [1712607561.307537]: Direct Instances: []\n", - "[INFO] [1712607561.307885]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712607561.308137]: -------------------\n", - "[INFO] [1712607561.308375]: SOMA.SoftwareLibrary \n", - "[INFO] [1712607561.308607]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712607561.308846]: Ancestors: {DUL.Object, DUL.Description, SOMA.SoftwareLibrary, owl.Thing, DUL.Entity, DUL.Design, SOMA.Software, DUL.SocialObject}\n", - "[INFO] [1712607561.309082]: Subclasses: []\n", - "[INFO] [1712607561.309367]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.309867]: Instances: []\n", - "[INFO] [1712607561.310136]: Direct Instances: []\n", - "[INFO] [1712607561.310389]: Inverse Restrictions: []\n", - "[INFO] [1712607561.310624]: -------------------\n", - "[INFO] [1712607561.310858]: SOMA.SourceMaterialRole \n", - "[INFO] [1712607561.311100]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712607561.311368]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, SOMA.SourceMaterialRole, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.311614]: Subclasses: []\n", - "[INFO] [1712607561.311905]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.312387]: Instances: []\n", - "[INFO] [1712607561.312680]: Direct Instances: []\n", - "[INFO] [1712607561.312948]: Inverse Restrictions: []\n", - "[INFO] [1712607561.313186]: -------------------\n", - "[INFO] [1712607561.313418]: SOMA.SphereShape \n", - "[INFO] [1712607561.313651]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712607561.313896]: Ancestors: {SOMA.SphereShape, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.ShapeRegion, DUL.Region}\n", - "[INFO] [1712607561.314147]: Subclasses: []\n", - "[INFO] [1712607561.314597]: Properties: [rdf-schema.comment, SOMA.hasRadius, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.315209]: Instances: []\n", - "[INFO] [1712607561.315592]: Direct Instances: []\n", - "[INFO] [1712607561.315969]: Inverse Restrictions: []\n", - "[INFO] [1712607561.316243]: -------------------\n", - "[INFO] [1712607561.316492]: SOMA.Standing \n", - "[INFO] [1712607561.316731]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712607561.316977]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Standing, SOMA.Motion}\n", - "[INFO] [1712607561.317216]: Subclasses: []\n", - "[INFO] [1712607561.317502]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.318007]: Instances: []\n", - "[INFO] [1712607561.318274]: Direct Instances: []\n", - "[INFO] [1712607561.318526]: Inverse Restrictions: []\n", - "[INFO] [1712607561.318758]: -------------------\n", - "[INFO] [1712607561.318987]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712607561.319223]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712607561.319469]: Ancestors: {DUL.Abstract, SOMA.FrictionAttribute, DUL.PhysicalAttribute, owl.Thing, SOMA.StaticFrictionAttribute, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607561.319722]: Subclasses: []\n", - "[INFO] [1712607561.320028]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.320521]: Instances: []\n", - "[INFO] [1712607561.320779]: Direct Instances: []\n", - "[INFO] [1712607561.321022]: Inverse Restrictions: []\n", - "[INFO] [1712607561.321250]: -------------------\n", - "[INFO] [1712607561.321485]: SOMA.Status \n", - "[INFO] [1712607561.321731]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712607561.321976]: Ancestors: {DUL.Object, DUL.Parameter, SOMA.Status, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.322231]: Subclasses: []\n", - "[INFO] [1712607561.322519]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.323045]: Instances: []\n", - "[INFO] [1712607561.323308]: Direct Instances: []\n", - "[INFO] [1712607561.323588]: Inverse Restrictions: []\n", - "[INFO] [1712607561.323824]: -------------------\n", - "[INFO] [1712607561.324053]: SOMA.StatusFailure \n", - "[INFO] [1712607561.324280]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607561.324527]: Ancestors: {DUL.Abstract, SOMA.StatusFailure, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607561.324775]: Subclasses: []\n", - "[INFO] [1712607561.325063]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.325559]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712607561.325847]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712607561.326111]: Inverse Restrictions: []\n", - "[INFO] [1712607561.326358]: -------------------\n", - "[INFO] [1712607561.326594]: SOMA.StimulusRole \n", - "[INFO] [1712607561.326826]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712607561.327081]: Ancestors: {DUL.Object, SOMA.StimulusRole, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject}\n", - "[INFO] [1712607561.327346]: Subclasses: []\n", - "[INFO] [1712607561.327664]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.328206]: Instances: []\n", - "[INFO] [1712607561.328532]: Direct Instances: []\n", - "[INFO] [1712607561.328838]: Inverse Restrictions: []\n", - "[INFO] [1712607561.329126]: -------------------\n", - "[INFO] [1712607561.329397]: SOMA.Stirring \n", - "[INFO] [1712607561.329663]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712607561.329943]: Ancestors: {DUL.Object, DUL.Entity, DUL.EventType, owl.Thing, SOMA.Constructing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Stirring, SOMA.Mixing}\n", - "[INFO] [1712607561.330236]: Subclasses: []\n", - "[INFO] [1712607561.330565]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712607561.331093]: Instances: []\n", - "[INFO] [1712607561.331374]: Direct Instances: []\n", - "[INFO] [1712607561.331624]: Inverse Restrictions: []\n", - "[INFO] [1712607561.331857]: -------------------\n", - "[INFO] [1712607561.332087]: SOMA.Storage \n", - "[INFO] [1712607561.332316]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712607561.332564]: Ancestors: {owl.Thing, SOMA.Disposition, SOMA.Enclosing, SOMA.Extrinsic, DUL.Entity, SOMA.Storage, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality}\n", - "[INFO] [1712607561.332816]: Subclasses: []\n", - "[INFO] [1712607561.333106]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.333588]: Instances: []\n", - "[INFO] [1712607561.333837]: Direct Instances: []\n", - "[INFO] [1712607561.334081]: Inverse Restrictions: []\n", - "[INFO] [1712607561.334328]: -------------------\n", - "[INFO] [1712607561.334562]: SOMA.StructuralDesign \n", - "[INFO] [1712607561.334789]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712607561.335025]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, DUL.Entity, SOMA.StructuralDesign, DUL.Design, DUL.SocialObject}\n", - "[INFO] [1712607561.335278]: Subclasses: []\n", - "[INFO] [1712607561.335568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.336054]: Instances: []\n", - "[INFO] [1712607561.336324]: Direct Instances: []\n", - "[INFO] [1712607561.336584]: Inverse Restrictions: []\n", - "[INFO] [1712607561.336819]: -------------------\n", - "[INFO] [1712607561.337046]: SOMA.TaskInvocation \n", - "[INFO] [1712607561.337283]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712607561.337537]: Ancestors: {DUL.Object, DUL.Description, owl.Thing, SOMA.TaskInvocation, DUL.Workflow, DUL.Entity, DUL.Plan, DUL.SocialObject}\n", - "[INFO] [1712607561.337782]: Subclasses: []\n", - "[INFO] [1712607561.338083]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.definesTask]\n", - "[INFO] [1712607561.338586]: Instances: []\n", - "[INFO] [1712607561.338865]: Direct Instances: []\n", - "[INFO] [1712607561.339190]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712607561.339432]: -------------------\n", - "[INFO] [1712607561.339669]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712607561.339893]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712607561.340129]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607561.340397]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712607561.340687]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.341176]: Instances: []\n", - "[INFO] [1712607561.341447]: Direct Instances: []\n", - "[INFO] [1712607561.341703]: Inverse Restrictions: []\n", - "[INFO] [1712607561.341933]: -------------------\n", - "[INFO] [1712607561.342162]: SOMA.Successfulness \n", - "[INFO] [1712607561.342388]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712607561.342623]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, SOMA.Successfulness, owl.Thing, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607561.342871]: Subclasses: []\n", - "[INFO] [1712607561.343166]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.343644]: Instances: []\n", - "[INFO] [1712607561.343894]: Direct Instances: []\n", - "[INFO] [1712607561.344145]: Inverse Restrictions: []\n", - "[INFO] [1712607561.344379]: -------------------\n", - "[INFO] [1712607561.344614]: SOMA.SupportState \n", - "[INFO] [1712607561.344851]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712607561.345107]: Ancestors: {DUL.Object, SOMA.SupportState, DUL.Entity, SOMA.StateType, owl.Thing, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, DUL.EventType}\n", - "[INFO] [1712607561.345352]: Subclasses: []\n", - "[INFO] [1712607561.345640]: Properties: [SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.346117]: Instances: []\n", - "[INFO] [1712607561.346397]: Direct Instances: []\n", - "[INFO] [1712607561.346649]: Inverse Restrictions: []\n", - "[INFO] [1712607561.346879]: -------------------\n", - "[INFO] [1712607561.347104]: SOMA.Supporter \n", - "[INFO] [1712607561.347327]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712607561.347562]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, DUL.Role, owl.Thing, SOMA.Supporter, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607561.347953]: Subclasses: []\n", - "[INFO] [1712607561.348342]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.348962]: Instances: []\n", - "[INFO] [1712607561.349357]: Direct Instances: []\n", - "[INFO] [1712607561.349815]: Inverse Restrictions: []\n", - "[INFO] [1712607561.350102]: -------------------\n", - "[INFO] [1712607561.350386]: SOMA.SupportTheory \n", - "[INFO] [1712607561.350632]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712607561.350882]: Ancestors: {DUL.Object, SOMA.ControlTheory, DUL.Description, DUL.Entity, SOMA.FunctionalSpatialSchemaTheory, SOMA.ImageSchemaTheory, owl.Thing, SOMA.SchematicTheory, DUL.Theory, DUL.SocialObject, SOMA.SupportTheory}\n", - "[INFO] [1712607561.351123]: Subclasses: []\n", - "[INFO] [1712607561.351413]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.351919]: Instances: []\n", - "[INFO] [1712607561.352187]: Direct Instances: []\n", - "[INFO] [1712607561.352443]: Inverse Restrictions: []\n", - "[INFO] [1712607561.352684]: -------------------\n", - "[INFO] [1712607561.352914]: SOMA.SupportedObject \n", - "[INFO] [1712607561.353142]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712607561.353389]: Ancestors: {DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.SupportedObject, SOMA.Patient, DUL.SocialObject}\n", - "[INFO] [1712607561.353631]: Subclasses: []\n", - "[INFO] [1712607561.353924]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.354427]: Instances: []\n", - "[INFO] [1712607561.354695]: Direct Instances: []\n", - "[INFO] [1712607561.354941]: Inverse Restrictions: []\n", - "[INFO] [1712607561.355173]: -------------------\n", - "[INFO] [1712607561.355402]: SOMA.SymbolicReasoner \n", - "[INFO] [1712607561.355634]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712607561.355873]: Ancestors: {DUL.Object, SOMA.SoftwareRole, SOMA.Reasoner, DUL.Role, owl.Thing, DUL.Concept, SOMA.SymbolicReasoner, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.356127]: Subclasses: []\n", - "[INFO] [1712607561.356418]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.356918]: Instances: []\n", - "[INFO] [1712607561.357171]: Direct Instances: []\n", - "[INFO] [1712607561.357432]: Inverse Restrictions: []\n", - "[INFO] [1712607561.357669]: -------------------\n", - "[INFO] [1712607561.357901]: SOMA.Tapping \n", - "[INFO] [1712607561.358134]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712607561.358384]: Ancestors: {DUL.SocialObject, DUL.Object, SOMA.DirectedMotion, DUL.Entity, DUL.EventType, owl.Thing, SOMA.ProcessType, DUL.Concept, SOMA.Tapping, SOMA.Motion}\n", - "[INFO] [1712607561.358633]: Subclasses: []\n", - "[INFO] [1712607561.358921]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.359405]: Instances: []\n", - "[INFO] [1712607561.359679]: Direct Instances: []\n", - "[INFO] [1712607561.359934]: Inverse Restrictions: []\n", - "[INFO] [1712607561.360168]: -------------------\n", - "[INFO] [1712607561.360397]: SOMA.Taxis \n", - "[INFO] [1712607561.360628]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712607561.360873]: Ancestors: {DUL.Object, SOMA.Motion, DUL.Entity, owl.Thing, SOMA.ProcessType, SOMA.Taxis, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, DUL.EventType}\n", - "[INFO] [1712607561.361146]: Subclasses: []\n", - "[INFO] [1712607561.361428]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.361925]: Instances: []\n", - "[INFO] [1712607561.362202]: Direct Instances: []\n", - "[INFO] [1712607561.362455]: Inverse Restrictions: []\n", - "[INFO] [1712607561.362691]: -------------------\n", - "[INFO] [1712607561.362921]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712607561.363153]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712607561.363401]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, SOMA.FunctionalDiagnosis, owl.Thing, DUL.Entity, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607561.363655]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712607561.363942]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.364549]: Instances: []\n", - "[INFO] [1712607561.365122]: Direct Instances: []\n", - "[INFO] [1712607561.365543]: Inverse Restrictions: []\n", - "[INFO] [1712607561.365960]: -------------------\n", - "[INFO] [1712607561.366265]: SOMA.Temperature \n", - "[INFO] [1712607561.366638]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712607561.367010]: Ancestors: {SOMA.Temperature, owl.Thing, SOMA.Intrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality}\n", - "[INFO] [1712607561.367381]: Subclasses: []\n", - "[INFO] [1712607561.367709]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.368211]: Instances: []\n", - "[INFO] [1712607561.368491]: Direct Instances: []\n", - "[INFO] [1712607561.368794]: Inverse Restrictions: []\n", - "[INFO] [1712607561.369032]: -------------------\n", - "[INFO] [1712607561.369262]: SOMA.TemperatureRegion \n", - "[INFO] [1712607561.369491]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712607561.369729]: Ancestors: {DUL.Abstract, SOMA.TemperatureRegion, owl.Thing, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607561.369994]: Subclasses: []\n", - "[INFO] [1712607561.370345]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.370909]: Instances: []\n", - "[INFO] [1712607561.371383]: Direct Instances: []\n", - "[INFO] [1712607561.371850]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712607561.372230]: -------------------\n", - "[INFO] [1712607561.372575]: SOMA.Tempering \n", - "[INFO] [1712607561.372854]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712607561.373122]: Ancestors: {SOMA.Variability, owl.Thing, SOMA.Disposition, SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Tempering, DUL.Quality}\n", - "[INFO] [1712607561.373395]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712607561.373722]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.374238]: Instances: []\n", - "[INFO] [1712607561.374518]: Direct Instances: []\n", - "[INFO] [1712607561.374790]: Inverse Restrictions: []\n", - "[INFO] [1712607561.375030]: -------------------\n", - "[INFO] [1712607561.375265]: SOMA.ThinkAloud \n", - "[INFO] [1712607561.375495]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712607561.375736]: Ancestors: {DUL.Object, DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, owl.Thing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.ThinkAloud, DUL.EventType}\n", - "[INFO] [1712607561.375998]: Subclasses: []\n", - "[INFO] [1712607561.376297]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.376786]: Instances: []\n", - "[INFO] [1712607561.377043]: Direct Instances: []\n", - "[INFO] [1712607561.377287]: Inverse Restrictions: []\n", - "[INFO] [1712607561.377533]: -------------------\n", - "[INFO] [1712607561.377807]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712607561.378041]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607561.378418]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ThinkAloudActionTopic, DUL.SocialObject}\n", - "[INFO] [1712607561.378759]: Subclasses: []\n", - "[INFO] [1712607561.379122]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.379663]: Instances: []\n", - "[INFO] [1712607561.379948]: Direct Instances: []\n", - "[INFO] [1712607561.380210]: Inverse Restrictions: []\n", - "[INFO] [1712607561.380452]: -------------------\n", - "[INFO] [1712607561.380690]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712607561.380922]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712607561.381189]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, SOMA.ThinkAloudGeneralKnowledgeTopic, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.381437]: Subclasses: []\n", - "[INFO] [1712607561.381725]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.382217]: Instances: []\n", - "[INFO] [1712607561.382492]: Direct Instances: []\n", - "[INFO] [1712607561.382746]: Inverse Restrictions: []\n", - "[INFO] [1712607561.382985]: -------------------\n", - "[INFO] [1712607561.383223]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712607561.383453]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607561.383704]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.383963]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712607561.384255]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.384767]: Instances: []\n", - "[INFO] [1712607561.385032]: Direct Instances: []\n", - "[INFO] [1712607561.385288]: Inverse Restrictions: []\n", - "[INFO] [1712607561.385526]: -------------------\n", - "[INFO] [1712607561.385761]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712607561.385991]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607561.386261]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.386528]: Subclasses: []\n", - "[INFO] [1712607561.386820]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.387303]: Instances: []\n", - "[INFO] [1712607561.387568]: Direct Instances: []\n", - "[INFO] [1712607561.387820]: Inverse Restrictions: []\n", - "[INFO] [1712607561.388056]: -------------------\n", - "[INFO] [1712607561.388295]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712607561.388526]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607561.388781]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.ThinkAloudOpinionTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.389026]: Subclasses: []\n", - "[INFO] [1712607561.389312]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.389789]: Instances: []\n", - "[INFO] [1712607561.390057]: Direct Instances: []\n", - "[INFO] [1712607561.390312]: Inverse Restrictions: []\n", - "[INFO] [1712607561.390548]: -------------------\n", - "[INFO] [1712607561.390783]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712607561.391011]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607561.391258]: Ancestors: {SOMA.ThinkAloudPerceptionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.391505]: Subclasses: []\n", - "[INFO] [1712607561.391790]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.392266]: Instances: []\n", - "[INFO] [1712607561.392515]: Direct Instances: []\n", - "[INFO] [1712607561.392753]: Inverse Restrictions: []\n", - "[INFO] [1712607561.393000]: -------------------\n", - "[INFO] [1712607561.393237]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712607561.393469]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712607561.393717]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.ThinkAloudPlanTopic, DUL.SocialObject}\n", - "[INFO] [1712607561.393954]: Subclasses: []\n", - "[INFO] [1712607561.394247]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.394803]: Instances: []\n", - "[INFO] [1712607561.395062]: Direct Instances: []\n", - "[INFO] [1712607561.395313]: Inverse Restrictions: []\n", - "[INFO] [1712607561.395562]: -------------------\n", - "[INFO] [1712607561.395827]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712607561.396086]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712607561.396346]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.CommunicationTopic, DUL.Role, owl.Thing, SOMA.ThinkAloudKnowledgeTopic, DUL.Concept, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.396590]: Subclasses: []\n", - "[INFO] [1712607561.396876]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.397377]: Instances: []\n", - "[INFO] [1712607561.397638]: Direct Instances: []\n", - "[INFO] [1712607561.397886]: Inverse Restrictions: []\n", - "[INFO] [1712607561.398122]: -------------------\n", - "[INFO] [1712607561.398359]: SOMA.Threshold \n", - "[INFO] [1712607561.398593]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712607561.398842]: Ancestors: {DUL.Object, DUL.Parameter, owl.Thing, SOMA.Threshold, DUL.Concept, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.399093]: Subclasses: []\n", - "[INFO] [1712607561.399379]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.399861]: Instances: []\n", - "[INFO] [1712607561.400112]: Direct Instances: []\n", - "[INFO] [1712607561.400373]: Inverse Restrictions: []\n", - "[INFO] [1712607561.400617]: -------------------\n", - "[INFO] [1712607561.400851]: SOMA.Throwing \n", - "[INFO] [1712607561.401088]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712607561.401331]: Ancestors: {DUL.Object, SOMA.Manipulating, DUL.Entity, SOMA.Throwing, SOMA.Actuating, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.401588]: Subclasses: []\n", - "[INFO] [1712607561.401884]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.402376]: Instances: []\n", - "[INFO] [1712607561.402639]: Direct Instances: []\n", - "[INFO] [1712607561.402886]: Inverse Restrictions: []\n", - "[INFO] [1712607561.403134]: -------------------\n", - "[INFO] [1712607561.403374]: SOMA.TimeRole \n", - "[INFO] [1712607561.403612]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712607561.403853]: Ancestors: {DUL.Object, SOMA.EventAdjacentRole, SOMA.TimeRole, DUL.Role, owl.Thing, DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject}\n", - "[INFO] [1712607561.404086]: Subclasses: []\n", - "[INFO] [1712607561.404361]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.404858]: Instances: []\n", - "[INFO] [1712607561.405116]: Direct Instances: []\n", - "[INFO] [1712607561.405364]: Inverse Restrictions: []\n", - "[INFO] [1712607561.405602]: -------------------\n", - "[INFO] [1712607561.405837]: SOMA.Transporting \n", - "[INFO] [1712607561.406078]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712607561.406342]: Ancestors: {DUL.Object, SOMA.ModifyingPhysicalObject, SOMA.Transporting, DUL.Entity, owl.Thing, SOMA.PhysicalTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType}\n", - "[INFO] [1712607561.406588]: Subclasses: []\n", - "[INFO] [1712607561.406871]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.407361]: Instances: []\n", - "[INFO] [1712607561.407635]: Direct Instances: []\n", - "[INFO] [1712607561.407892]: Inverse Restrictions: []\n", - "[INFO] [1712607561.408131]: -------------------\n", - "[INFO] [1712607561.408365]: SOMA.Triplestore \n", - "[INFO] [1712607561.408597]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712607561.408845]: Ancestors: {SOMA.GraphDatabase, DUL.Object, SOMA.SoftwareRole, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Triplestore, SOMA.Database, DUL.SocialObject}\n", - "[INFO] [1712607561.409099]: Subclasses: []\n", - "[INFO] [1712607561.409386]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.409868]: Instances: []\n", - "[INFO] [1712607561.410138]: Direct Instances: []\n", - "[INFO] [1712607561.410393]: Inverse Restrictions: []\n", - "[INFO] [1712607561.410627]: -------------------\n", - "[INFO] [1712607561.410857]: SOMA.Turning \n", - "[INFO] [1712607561.411107]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712607561.411353]: Ancestors: {DUL.Object, DUL.Entity, SOMA.PosturalMoving, DUL.EventType, owl.Thing, SOMA.ProcessType, SOMA.Turning, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion}\n", - "[INFO] [1712607561.411615]: Subclasses: []\n", - "[INFO] [1712607561.411908]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.412400]: Instances: []\n", - "[INFO] [1712607561.412688]: Direct Instances: []\n", - "[INFO] [1712607561.412951]: Inverse Restrictions: []\n", - "[INFO] [1712607561.413191]: -------------------\n", - "[INFO] [1712607561.413430]: SOMA.UnavailableSoftware \n", - "[INFO] [1712607561.413658]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712607561.413899]: Ancestors: {DUL.Object, DUL.Diagnosis, DUL.Description, DUL.Entity, SOMA.UnavailableSoftware, SOMA.FunctionalDiagnosis, owl.Thing, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607561.414155]: Subclasses: []\n", - "[INFO] [1712607561.414449]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.414935]: Instances: []\n", - "[INFO] [1712607561.415184]: Direct Instances: []\n", - "[INFO] [1712607561.415426]: Inverse Restrictions: []\n", - "[INFO] [1712607561.415665]: -------------------\n", - "[INFO] [1712607561.415898]: SOMA.Unsuccessfulness \n", - "[INFO] [1712607561.416128]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712607561.416368]: Ancestors: {DUL.Object, DUL.Diagnosis, SOMA.SuccessDiagnosis, DUL.Description, owl.Thing, DUL.Entity, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.SocialObject}\n", - "[INFO] [1712607561.416628]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712607561.416919]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.417422]: Instances: []\n", - "[INFO] [1712607561.417679]: Direct Instances: []\n", - "[INFO] [1712607561.417929]: Inverse Restrictions: []\n", - "[INFO] [1712607561.418167]: -------------------\n", - "[INFO] [1712607561.418397]: SOMA.VideoData \n", - "[INFO] [1712607561.418640]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712607561.418888]: Ancestors: {DUL.Object, SOMA.VideoData, owl.Thing, DUL.InformationObject, DUL.Entity, DUL.InformationEntity, DUL.SocialObject}\n", - "[INFO] [1712607561.419127]: Subclasses: []\n", - "[INFO] [1712607561.419411]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.419921]: Instances: []\n", - "[INFO] [1712607561.420194]: Direct Instances: []\n", - "[INFO] [1712607561.420447]: Inverse Restrictions: []\n", - "[INFO] [1712607561.420679]: -------------------\n", - "[INFO] [1712607561.420914]: SOMA.3DPosition \n", - "[INFO] [1712607561.421150]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712607561.421407]: Ancestors: {DUL.Abstract, SOMA.3DPosition, owl.Thing, DUL.SpaceRegion, DUL.Entity, DUL.Region}\n", - "[INFO] [1712607561.421652]: Subclasses: []\n", - "[INFO] [1712607561.421942]: Properties: [rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.422429]: Instances: []\n", - "[INFO] [1712607561.422701]: Direct Instances: []\n", - "[INFO] [1712607561.422955]: Inverse Restrictions: []\n", - "[INFO] [1712607561.423196]: -------------------\n", - "[INFO] [1712607561.423426]: SOMA.OntologyPlaceHolderObject \n", - "[INFO] [1712607561.423656]: Super classes: [SOMA.Container, owl.Thing]\n", - "[INFO] [1712607561.423926]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.Container, SOMA.EventAdjacentRole, SOMA.Instrument, SOMA.OntologyPlaceHolderObject, DUL.Role, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607561.424189]: Subclasses: [SOMA.Ontoegg_tray]\n", - "[INFO] [1712607561.424472]: Properties: []\n", - "[INFO] [1712607561.424966]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607561.425219]: Direct Instances: []\n", - "[INFO] [1712607561.425468]: Inverse Restrictions: []\n", - "[INFO] [1712607561.425716]: -------------------\n", - "[INFO] [1712607561.425955]: SOMA.OntologyHandheldObject \n", - "[INFO] [1712607561.426190]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.426447]: Ancestors: {SOMA.OntologyHandheldObject, owl.Thing}\n", - "[INFO] [1712607561.426689]: Subclasses: [SOMA.Ontoegg]\n", - "[INFO] [1712607561.426960]: Properties: []\n", - "[INFO] [1712607561.427500]: Instances: [SOMA.egg_concept]\n", - "[INFO] [1712607561.427766]: Direct Instances: []\n", - "[INFO] [1712607561.428021]: Inverse Restrictions: []\n", - "[INFO] [1712607561.428258]: -------------------\n", - "[INFO] [1712607561.428489]: SOMA.OntologySubject \n", - "[INFO] [1712607561.428734]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.428992]: Ancestors: {SOMA.OntologySubject, owl.Thing}\n", - "[INFO] [1712607561.429237]: Subclasses: []\n", - "[INFO] [1712607561.429522]: Properties: []\n", - "[INFO] [1712607561.430045]: Instances: [SOMA.subject]\n", - "[INFO] [1712607561.430313]: Direct Instances: [SOMA.subject]\n", - "[INFO] [1712607561.430573]: Inverse Restrictions: []\n", - "[INFO] [1712607561.430818]: -------------------\n", - "[INFO] [1712607561.431053]: SOMA.OntologyObject \n", - "[INFO] [1712607561.431282]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.431530]: Ancestors: {owl.Thing, SOMA.OntologyObject}\n", - "[INFO] [1712607561.431770]: Subclasses: []\n", - "[INFO] [1712607561.432064]: Properties: []\n", - "[INFO] [1712607561.432588]: Instances: [SOMA.object]\n", - "[INFO] [1712607561.432852]: Direct Instances: [SOMA.object]\n", - "[INFO] [1712607561.433096]: Inverse Restrictions: []\n", - "[INFO] [1712607561.433327]: -------------------\n", - "[INFO] [1712607561.433564]: SOMA.Ontoegg \n", - "[INFO] [1712607561.433801]: Super classes: [SOMA.OntologyHandheldObject, owl.Thing]\n", - "[INFO] [1712607561.434053]: Ancestors: {SOMA.Ontoegg, SOMA.OntologyHandheldObject, owl.Thing}\n", - "[INFO] [1712607561.434311]: Subclasses: []\n", - "[INFO] [1712607561.434596]: Properties: []\n", - "[INFO] [1712607561.435088]: Instances: [SOMA.egg_concept]\n", - "[INFO] [1712607561.435341]: Direct Instances: [SOMA.egg_concept]\n", - "[INFO] [1712607561.435587]: Inverse Restrictions: []\n", - "[INFO] [1712607561.435830]: -------------------\n", - "[INFO] [1712607561.436069]: SOMA.Ontoegg_tray \n", - "[INFO] [1712607561.436306]: Super classes: [SOMA.OntologyPlaceHolderObject, owl.Thing]\n", - "[INFO] [1712607561.436575]: Ancestors: {DUL.Object, SOMA.ResourceRole, SOMA.Container, SOMA.EventAdjacentRole, SOMA.Instrument, SOMA.OntologyPlaceHolderObject, DUL.Role, SOMA.Ontoegg_tray, owl.Thing, DUL.Concept, DUL.Entity, SOMA.Restrictor, DUL.SocialObject}\n", - "[INFO] [1712607561.436828]: Subclasses: []\n", - "[INFO] [1712607561.437109]: Properties: []\n", - "[INFO] [1712607561.437609]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607561.437863]: Direct Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712607561.438118]: Inverse Restrictions: []\n", - "[INFO] [1712607561.438368]: -------------------\n", - "[INFO] [1712607561.438604]: SOMA.DynamicOntologyConcept \n", - "[INFO] [1712607561.438841]: Super classes: [owl.Thing]\n", - "[INFO] [1712607561.439122]: Ancestors: {SOMA.DynamicOntologyConcept, owl.Thing}\n", - "[INFO] [1712607561.439359]: Subclasses: []\n", - "[INFO] [1712607561.439630]: Properties: []\n", - "[INFO] [1712607561.440170]: Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", - "[INFO] [1712607561.440437]: Direct Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", - "[INFO] [1712607561.440690]: Inverse Restrictions: []\n" + "[INFO] [1712609757.639285]: -------------------\n", + "[INFO] [1712609757.640040]: SOMA.DesignedContainer \n", + "[INFO] [1712609757.640657]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712609757.641192]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609757.641710]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712609757.642323]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712609757.700282]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712609757.700943]: Direct Instances: []\n", + "[INFO] [1712609757.701481]: Inverse Restrictions: []\n", + "[INFO] [1712609757.703136]: -------------------\n", + "[INFO] [1712609757.703674]: DUL.PhysicalObject \n", + "[INFO] [1712609757.704118]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609757.704526]: Ancestors: {DUL.Entity, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609757.704948]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712609757.705419]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.706352]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712609757.706787]: Direct Instances: []\n", + "[INFO] [1712609757.712547]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712609757.712998]: -------------------\n", + "[INFO] [1712609757.713394]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712609757.713773]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609757.714244]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609757.714568]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712609757.714902]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.715437]: Instances: []\n", + "[INFO] [1712609757.715726]: Direct Instances: []\n", + "[INFO] [1712609757.716001]: Inverse Restrictions: []\n", + "[INFO] [1712609757.716254]: -------------------\n", + "[INFO] [1712609757.716498]: DUL.PhysicalObject \n", + "[INFO] [1712609757.716884]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609757.717220]: Ancestors: {DUL.Entity, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609757.717483]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712609757.717809]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.718595]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712609757.718897]: Direct Instances: []\n", + "[INFO] [1712609757.721412]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712609757.721717]: -------------------\n", + "[INFO] [1712609757.721997]: DUL.PhysicalObject \n", + "[INFO] [1712609757.722280]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609757.722552]: Ancestors: {DUL.Entity, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609757.722826]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712609757.723147]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.723945]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712609757.724276]: Direct Instances: []\n", + "[INFO] [1712609757.726855]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712609757.727194]: -------------------\n", + "[INFO] [1712609757.727633]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712609757.728021]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609757.728408]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609757.728794]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712609757.729198]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.729844]: Instances: []\n", + "[INFO] [1712609757.730166]: Direct Instances: []\n", + "[INFO] [1712609757.730461]: Inverse Restrictions: []\n", + "[INFO] [1712609757.731589]: -------------------\n", + "[INFO] [1712609757.731883]: SOMA.Affordance \n", + "[INFO] [1712609757.732198]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712609757.732510]: Ancestors: {DUL.Entity, SOMA.Affordance, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609757.732787]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712609757.733117]: Properties: [rdf-schema.comment, SOMA.definesBearer, SOMA.definesTrigger, DUL.definesTask, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.733695]: Instances: []\n", + "[INFO] [1712609757.734100]: Direct Instances: []\n", + "[INFO] [1712609757.735349]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712609757.735781]: -------------------\n", + "[INFO] [1712609757.736157]: SOMA.Disposition \n", + "[INFO] [1712609757.737980]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712609757.738508]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609757.738942]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712609757.739396]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.740067]: Instances: []\n", + "[INFO] [1712609757.740415]: Direct Instances: []\n", + "[INFO] [1712609757.740816]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712609757.741103]: -------------------\n", + "[INFO] [1712609757.741363]: SOMA.Setpoint \n", + "[INFO] [1712609757.741615]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712609757.741896]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Parameter, SOMA.Setpoint, owl.Thing}\n", + "[INFO] [1712609757.742167]: Subclasses: []\n", + "[INFO] [1712609757.742479]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.742972]: Instances: []\n", + "[INFO] [1712609757.743235]: Direct Instances: []\n", + "[INFO] [1712609757.743502]: Inverse Restrictions: []\n", + "[INFO] [1712609757.743750]: -------------------\n", + "[INFO] [1712609757.744007]: SOMA.Answer \n", + "[INFO] [1712609757.744250]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712609757.744574]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Answer, SOMA.Message}\n", + "[INFO] [1712609757.744948]: Subclasses: []\n", + "[INFO] [1712609757.745364]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.745984]: Instances: []\n", + "[INFO] [1712609757.746478]: Direct Instances: []\n", + "[INFO] [1712609757.747318]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712609757.747705]: -------------------\n", + "[INFO] [1712609757.748084]: SOMA.Message \n", + "[INFO] [1712609757.748492]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712609757.748880]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Message}\n", + "[INFO] [1712609757.749270]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712609757.749704]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.750248]: Instances: []\n", + "[INFO] [1712609757.750640]: Direct Instances: []\n", + "[INFO] [1712609757.752550]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609757.752935]: -------------------\n", + "[INFO] [1712609757.753217]: SOMA.ProcessType \n", + "[INFO] [1712609757.753525]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712609757.753824]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609757.754101]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712609757.754414]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.754989]: Instances: []\n", + "[INFO] [1712609757.755281]: Direct Instances: []\n", + "[INFO] [1712609757.755629]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712609757.755889]: -------------------\n", + "[INFO] [1712609757.756158]: SOMA.OrderedElement \n", + "[INFO] [1712609757.756451]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712609757.757819]: Ancestors: {SOMA.OrderedElement, SOMA.Singleton, owl.Thing}\n", + "[INFO] [1712609757.758133]: Subclasses: []\n", + "[INFO] [1712609757.758461]: Properties: [rdf-schema.comment, SOMA.isOrderedBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.758976]: Instances: []\n", + "[INFO] [1712609757.759279]: Direct Instances: []\n", + "[INFO] [1712609757.759687]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712609757.759949]: -------------------\n", + "[INFO] [1712609757.760206]: SOMA.System \n", + "[INFO] [1712609757.760471]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712609757.760757]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.System}\n", + "[INFO] [1712609757.761021]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712609757.761318]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.761865]: Instances: []\n", + "[INFO] [1712609757.762158]: Direct Instances: []\n", + "[INFO] [1712609757.762437]: Inverse Restrictions: []\n", + "[INFO] [1712609757.762693]: -------------------\n", + "[INFO] [1712609757.762939]: SOMA.Binding \n", + "[INFO] [1712609757.763654]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712609757.763974]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing}\n", + "[INFO] [1712609757.764258]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712609757.764583]: Properties: [rdf-schema.comment, SOMA.hasBindingFiller, Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, SOMA.hasBindingRole]\n", + "[INFO] [1712609757.765114]: Instances: []\n", + "[INFO] [1712609757.765406]: Direct Instances: []\n", + "[INFO] [1712609757.765687]: Inverse Restrictions: []\n", + "[INFO] [1712609757.765939]: -------------------\n", + "[INFO] [1712609757.766263]: SOMA.Joint \n", + "[INFO] [1712609757.766690]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712609757.767697]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609757.768093]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712609757.768532]: Properties: [rdf-schema.comment, SOMA.hasChildLink, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", + "[INFO] [1712609757.769180]: Instances: []\n", + "[INFO] [1712609757.769561]: Direct Instances: []\n", + "[INFO] [1712609757.769950]: Inverse Restrictions: []\n", + "[INFO] [1712609757.770235]: -------------------\n", + "[INFO] [1712609757.770502]: SOMA.Color \n", + "[INFO] [1712609757.770790]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712609757.771077]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609757.771334]: Subclasses: []\n", + "[INFO] [1712609757.771657]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609757.772166]: Instances: []\n", + "[INFO] [1712609757.772432]: Direct Instances: []\n", + "[INFO] [1712609757.772738]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712609757.772995]: -------------------\n", + "[INFO] [1712609757.773253]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712609757.773503]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609757.774525]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.ExecutionStateRegion, owl.Thing}\n", + "[INFO] [1712609757.774829]: Subclasses: []\n", + "[INFO] [1712609757.775148]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.775678]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712609757.775970]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712609757.776252]: Inverse Restrictions: []\n", + "[INFO] [1712609757.776503]: -------------------\n", + "[INFO] [1712609757.776747]: SOMA.Feature \n", + "[INFO] [1712609757.777013]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712609757.777298]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing}\n", + "[INFO] [1712609757.777568]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712609757.777882]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isFeatureOf]\n", + "[INFO] [1712609757.778386]: Instances: []\n", + "[INFO] [1712609757.778672]: Direct Instances: []\n", + "[INFO] [1712609757.778978]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712609757.779230]: -------------------\n", + "[INFO] [1712609757.779473]: SOMA.FrictionAttribute \n", + "[INFO] [1712609757.779738]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712609757.780021]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609757.780300]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712609757.780607]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasFrictionValue]\n", + "[INFO] [1712609757.781117]: Instances: []\n", + "[INFO] [1712609757.781380]: Direct Instances: []\n", + "[INFO] [1712609757.781637]: Inverse Restrictions: []\n", + "[INFO] [1712609757.781889]: -------------------\n", + "[INFO] [1712609757.782141]: SOMA.SituationTransition \n", + "[INFO] [1712609757.782384]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712609757.782662]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.SituationTransition, DUL.Transition, owl.Thing}\n", + "[INFO] [1712609757.782915]: Subclasses: []\n", + "[INFO] [1712609757.783220]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.783718]: Instances: []\n", + "[INFO] [1712609757.783977]: Direct Instances: []\n", + "[INFO] [1712609757.785738]: Inverse Restrictions: []\n", + "[INFO] [1712609757.786013]: -------------------\n", + "[INFO] [1712609757.786275]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712609757.786531]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712609757.787858]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation}\n", + "[INFO] [1712609757.788148]: Subclasses: []\n", + "[INFO] [1712609757.788467]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.788967]: Instances: []\n", + "[INFO] [1712609757.789226]: Direct Instances: []\n", + "[INFO] [1712609757.790608]: Inverse Restrictions: []\n", + "[INFO] [1712609757.790895]: -------------------\n", + "[INFO] [1712609757.791152]: SOMA.JointLimit \n", + "[INFO] [1712609757.791398]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712609757.791667]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.JointLimit, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609757.791920]: Subclasses: []\n", + "[INFO] [1712609757.792215]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.792720]: Instances: []\n", + "[INFO] [1712609757.792984]: Direct Instances: []\n", + "[INFO] [1712609757.793326]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712609757.793592]: -------------------\n", + "[INFO] [1712609757.793851]: SOMA.JointState \n", + "[INFO] [1712609757.794139]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712609757.794416]: Ancestors: {DUL.Entity, DUL.Region, SOMA.JointState, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609757.794666]: Subclasses: []\n", + "[INFO] [1712609757.794968]: Properties: [SOMA.hasJointPosition, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointVelocity]\n", + "[INFO] [1712609757.795477]: Instances: []\n", + "[INFO] [1712609757.795744]: Direct Instances: []\n", + "[INFO] [1712609757.796076]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712609757.796340]: -------------------\n", + "[INFO] [1712609757.796588]: SOMA.Localization \n", + "[INFO] [1712609757.796860]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712609757.797133]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609757.797383]: Subclasses: []\n", + "[INFO] [1712609757.797678]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.798193]: Instances: []\n", + "[INFO] [1712609757.798481]: Direct Instances: []\n", + "[INFO] [1712609757.800691]: Inverse Restrictions: []\n", + "[INFO] [1712609757.801000]: -------------------\n", + "[INFO] [1712609757.801264]: SOMA.MassAttribute \n", + "[INFO] [1712609757.801538]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712609757.801815]: Ancestors: {DUL.Entity, SOMA.MassAttribute, DUL.Region, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609757.802068]: Subclasses: []\n", + "[INFO] [1712609757.802391]: Properties: [rdf-schema.comment, SOMA.hasMassValue, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609757.802902]: Instances: []\n", + "[INFO] [1712609757.803174]: Direct Instances: []\n", + "[INFO] [1712609757.803438]: Inverse Restrictions: []\n", + "[INFO] [1712609757.803680]: -------------------\n", + "[INFO] [1712609757.803935]: SOMA.NetForce \n", + "[INFO] [1712609757.804180]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712609757.804470]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.NetForce, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", + "[INFO] [1712609757.804728]: Subclasses: []\n", + "[INFO] [1712609757.805195]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.805826]: Instances: []\n", + "[INFO] [1712609757.806136]: Direct Instances: []\n", + "[INFO] [1712609757.806515]: Inverse Restrictions: []\n", + "[INFO] [1712609757.806886]: -------------------\n", + "[INFO] [1712609757.807287]: SOMA.Succedence \n", + "[INFO] [1712609757.807642]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712609757.807957]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing}\n", + "[INFO] [1712609757.808241]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712609757.808562]: Properties: [rdf-schema.comment, SOMA.hasPredecessor, rdf-schema.isDefinedBy, SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence)]\n", + "[INFO] [1712609757.809074]: Instances: []\n", + "[INFO] [1712609757.809372]: Direct Instances: []\n", + "[INFO] [1712609757.809654]: Inverse Restrictions: []\n", + "[INFO] [1712609757.809913]: -------------------\n", + "[INFO] [1712609757.810166]: SOMA.Preference \n", + "[INFO] [1712609757.810435]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712609757.810718]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.Preference, SOMA.SocialQuality, owl.Thing}\n", + "[INFO] [1712609757.810995]: Subclasses: []\n", + "[INFO] [1712609757.811307]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.811808]: Instances: []\n", + "[INFO] [1712609757.812151]: Direct Instances: []\n", + "[INFO] [1712609757.813306]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712609757.813595]: -------------------\n", + "[INFO] [1712609757.813867]: SOMA.Shape \n", + "[INFO] [1712609757.814162]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712609757.814461]: Ancestors: {SOMA.Shape, DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609757.814728]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", + "[INFO] [1712609757.815044]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.815649]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712609757.815937]: Direct Instances: []\n", + "[INFO] [1712609757.818135]: Inverse Restrictions: []\n", + "[INFO] [1712609757.818401]: -------------------\n", + "[INFO] [1712609757.818653]: SOMA.ShapeRegion \n", + "[INFO] [1712609757.818918]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712609757.819299]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609757.819588]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712609757.819903]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.820420]: Instances: []\n", + "[INFO] [1712609757.820691]: Direct Instances: []\n", + "[INFO] [1712609757.821424]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712609757.821701]: -------------------\n", + "[INFO] [1712609757.821964]: SOMA.SoftwareInstance \n", + "[INFO] [1712609757.822633]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712609757.822935]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", + "[INFO] [1712609757.823204]: Subclasses: []\n", + "[INFO] [1712609757.823512]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.actsFor, SOMA.isDesignedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.824013]: Instances: []\n", + "[INFO] [1712609757.824293]: Direct Instances: []\n", + "[INFO] [1712609757.825006]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712609757.825267]: -------------------\n", + "[INFO] [1712609757.825512]: SOMA.StateType \n", + "[INFO] [1712609757.825782]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712609757.826071]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609757.826486]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712609757.826858]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.827407]: Instances: []\n", + "[INFO] [1712609757.827693]: Direct Instances: []\n", + "[INFO] [1712609757.828068]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712609757.828341]: -------------------\n", + "[INFO] [1712609757.828595]: SOMA.PhysicalEffector \n", + "[INFO] [1712609757.828865]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712609757.829150]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609757.829436]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712609757.829749]: Properties: [rdf-schema.comment, Inverse(DUL.hasPart), rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.830271]: Instances: []\n", + "[INFO] [1712609757.830539]: Direct Instances: []\n", + "[INFO] [1712609757.830803]: Inverse Restrictions: []\n", + "[INFO] [1712609757.831079]: -------------------\n", + "[INFO] [1712609757.831340]: SOMA.QueryingTask \n", + "[INFO] [1712609757.831994]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712609757.832288]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712609757.832562]: Subclasses: []\n", + "[INFO] [1712609757.832873]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.833367]: Instances: []\n", + "[INFO] [1712609757.833635]: Direct Instances: []\n", + "[INFO] [1712609757.835060]: Inverse Restrictions: []\n", + "[INFO] [1712609757.835323]: -------------------\n", + "[INFO] [1712609757.835577]: SOMA.Order \n", + "[INFO] [1712609757.835827]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712609757.836106]: Ancestors: {DUL.FormalEntity, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.Order}\n", + "[INFO] [1712609757.836371]: Subclasses: []\n", + "[INFO] [1712609757.836676]: Properties: [rdf-schema.comment, SOMA.orders, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.837175]: Instances: []\n", + "[INFO] [1712609757.837453]: Direct Instances: []\n", + "[INFO] [1712609757.837822]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712609757.838076]: -------------------\n", + "[INFO] [1712609757.838336]: SOMA.State \n", + "[INFO] [1712609757.838581]: Super classes: [DUL.Event]\n", + "[INFO] [1712609757.838857]: Ancestors: {DUL.Entity, owl.Thing, DUL.Event, SOMA.State}\n", + "[INFO] [1712609757.839135]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712609757.839435]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.839935]: Instances: []\n", + "[INFO] [1712609757.840214]: Direct Instances: []\n", + "[INFO] [1712609757.841085]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712609757.841381]: -------------------\n", + "[INFO] [1712609757.841634]: SOMA.Transient \n", + "[INFO] [1712609757.841907]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712609757.842203]: Ancestors: {DUL.Entity, SOMA.Transient, DUL.Object, owl.Thing}\n", + "[INFO] [1712609757.842598]: Subclasses: []\n", + "[INFO] [1712609757.843040]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.transitionsFrom]\n", + "[INFO] [1712609757.843657]: Instances: []\n", + "[INFO] [1712609757.844112]: Direct Instances: []\n", + "[INFO] [1712609757.844520]: Inverse Restrictions: []\n", + "[INFO] [1712609757.844914]: -------------------\n", + "[INFO] [1712609757.845265]: SOMA.ColorRegion \n", + "[INFO] [1712609757.845576]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712609757.845897]: Ancestors: {DUL.Entity, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609757.846196]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712609757.846524]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.847039]: Instances: []\n", + "[INFO] [1712609757.847311]: Direct Instances: []\n", + "[INFO] [1712609757.847642]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712609757.847911]: -------------------\n", + "[INFO] [1712609757.848170]: SOMA.ForceAttribute \n", + "[INFO] [1712609757.848519]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712609757.848797]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", + "[INFO] [1712609757.849078]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712609757.849401]: Properties: [rdf-schema.comment, SOMA.hasForceValue, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.849915]: Instances: []\n", + "[INFO] [1712609757.850191]: Direct Instances: []\n", + "[INFO] [1712609757.850464]: Inverse Restrictions: []\n", + "[INFO] [1712609757.850723]: -------------------\n", + "[INFO] [1712609757.850995]: SOMA.API_Specification \n", + "[INFO] [1712609757.851258]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712609757.851916]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712609757.852422]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712609757.852997]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.853832]: Instances: []\n", + "[INFO] [1712609757.854247]: Direct Instances: []\n", + "[INFO] [1712609757.854649]: Inverse Restrictions: []\n", + "[INFO] [1712609757.855026]: -------------------\n", + "[INFO] [1712609757.855384]: SOMA.InterfaceSpecification \n", + "[INFO] [1712609757.855685]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712609757.855969]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712609757.856251]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712609757.856575]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.857095]: Instances: []\n", + "[INFO] [1712609757.857426]: Direct Instances: []\n", + "[INFO] [1712609757.858512]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712609757.858826]: -------------------\n", + "[INFO] [1712609757.859098]: SOMA.AbductiveReasoning \n", + "[INFO] [1712609757.859354]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712609757.860614]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.AbductiveReasoning, SOMA.Reasoning}\n", + "[INFO] [1712609757.860905]: Subclasses: []\n", + "[INFO] [1712609757.861224]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.861727]: Instances: []\n", + "[INFO] [1712609757.861992]: Direct Instances: []\n", + "[INFO] [1712609757.862287]: Inverse Restrictions: []\n", + "[INFO] [1712609757.862542]: -------------------\n", + "[INFO] [1712609757.862789]: SOMA.Reasoning \n", + "[INFO] [1712609757.863040]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609757.863296]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Reasoning, owl.Thing}\n", + "[INFO] [1712609757.863560]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712609757.863859]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.864370]: Instances: []\n", + "[INFO] [1712609757.864684]: Direct Instances: []\n", + "[INFO] [1712609757.864969]: Inverse Restrictions: []\n", + "[INFO] [1712609757.865223]: -------------------\n", + "[INFO] [1712609757.865671]: SOMA.Accessor \n", + "[INFO] [1712609757.866039]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712609757.866469]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, SOMA.Instrument, owl.Thing, DUL.Role}\n", + "[INFO] [1712609757.866779]: Subclasses: []\n", + "[INFO] [1712609757.867107]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.867625]: Instances: []\n", + "[INFO] [1712609757.867900]: Direct Instances: []\n", + "[INFO] [1712609757.868175]: Inverse Restrictions: []\n", + "[INFO] [1712609757.868428]: -------------------\n", + "[INFO] [1712609757.868671]: SOMA.Instrument \n", + "[INFO] [1712609757.868916]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712609757.869164]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role}\n", + "[INFO] [1712609757.869447]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712609757.869751]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.870330]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609757.870626]: Direct Instances: []\n", + "[INFO] [1712609757.871038]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609757.871294]: -------------------\n", + "[INFO] [1712609757.871541]: SOMA.Accident \n", + "[INFO] [1712609757.871783]: Super classes: [DUL.Event]\n", + "[INFO] [1712609757.872062]: Ancestors: {DUL.Entity, SOMA.Accident, DUL.Event, owl.Thing}\n", + "[INFO] [1712609757.872337]: Subclasses: []\n", + "[INFO] [1712609757.872654]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.873151]: Instances: []\n", + "[INFO] [1712609757.873429]: Direct Instances: []\n", + "[INFO] [1712609757.873690]: Inverse Restrictions: []\n", + "[INFO] [1712609757.873972]: -------------------\n", + "[INFO] [1712609757.874258]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712609757.874718]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712609757.875020]: Ancestors: {DUL.Entity, DUL.Plan, SOMA.ActionExecutionPlan, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609757.875279]: Subclasses: []\n", + "[INFO] [1712609757.875586]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.876097]: Instances: []\n", + "[INFO] [1712609757.876368]: Direct Instances: []\n", + "[INFO] [1712609757.876626]: Inverse Restrictions: []\n", + "[INFO] [1712609757.876869]: -------------------\n", + "[INFO] [1712609757.877110]: SOMA.Actuating \n", + "[INFO] [1712609757.877352]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609757.877635]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609757.877923]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712609757.878227]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.878752]: Instances: []\n", + "[INFO] [1712609757.879033]: Direct Instances: []\n", + "[INFO] [1712609757.879309]: Inverse Restrictions: []\n", + "[INFO] [1712609757.879558]: -------------------\n", + "[INFO] [1712609757.879803]: SOMA.PhysicalTask \n", + "[INFO] [1712609757.881182]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712609757.881483]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712609757.881775]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712609757.882087]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.882807]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", + "[INFO] [1712609757.883101]: Direct Instances: []\n", + "[INFO] [1712609757.883441]: Inverse Restrictions: []\n", + "[INFO] [1712609757.883704]: -------------------\n", + "[INFO] [1712609757.883950]: SOMA.AestheticDesign \n", + "[INFO] [1712609757.884199]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712609757.884473]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.AestheticDesign, owl.Thing}\n", + "[INFO] [1712609757.884741]: Subclasses: []\n", + "[INFO] [1712609757.885053]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.885550]: Instances: []\n", + "[INFO] [1712609757.885815]: Direct Instances: []\n", + "[INFO] [1712609757.886069]: Inverse Restrictions: []\n", + "[INFO] [1712609757.886563]: -------------------\n", + "[INFO] [1712609757.886998]: SOMA.AffordsBeingSitOn \n", + "[INFO] [1712609757.888810]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", + "[INFO] [1712609757.889262]: Ancestors: {DUL.Entity, SOMA.Affordance, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.AffordsBeingSitOn, owl.Thing}\n", + "[INFO] [1712609757.889684]: Subclasses: []\n", + "[INFO] [1712609757.890201]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.describes]\n", + "[INFO] [1712609757.890771]: Instances: []\n", + "[INFO] [1712609757.891079]: Direct Instances: []\n", + "[INFO] [1712609757.891386]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", + "[INFO] [1712609757.891648]: -------------------\n", + "[INFO] [1712609757.891898]: SOMA.CanBeSatOn \n", + "[INFO] [1712609757.892174]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", + "[INFO] [1712609757.892472]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.CanBeSatOn, DUL.Quality, SOMA.Deposition, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609757.892733]: Subclasses: []\n", + "[INFO] [1712609757.893032]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.893531]: Instances: []\n", + "[INFO] [1712609757.893802]: Direct Instances: []\n", + "[INFO] [1712609757.894356]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712609757.894628]: -------------------\n", + "[INFO] [1712609757.894879]: SOMA.SittingDestination \n", + "[INFO] [1712609757.895141]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", + "[INFO] [1712609757.895444]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.SittingDestination, owl.Thing, DUL.Role, SOMA.Destination, SOMA.Location}\n", + "[INFO] [1712609757.895701]: Subclasses: []\n", + "[INFO] [1712609757.896008]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.896511]: Instances: []\n", + "[INFO] [1712609757.896774]: Direct Instances: []\n", + "[INFO] [1712609757.897047]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712609757.897293]: -------------------\n", + "[INFO] [1712609757.897550]: SOMA.CanSit \n", + "[INFO] [1712609757.897793]: Super classes: [SOMA.Capability]\n", + "[INFO] [1712609757.898071]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.CanSit, DUL.Quality, SOMA.Capability, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609757.898345]: Subclasses: []\n", + "[INFO] [1712609757.898655]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.899162]: Instances: []\n", + "[INFO] [1712609757.899432]: Direct Instances: []\n", + "[INFO] [1712609757.899724]: Inverse Restrictions: []\n", + "[INFO] [1712609757.899985]: -------------------\n", + "[INFO] [1712609757.900233]: SOMA.AgentRole \n", + "[INFO] [1712609757.900501]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712609757.900789]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.AgentRole}\n", + "[INFO] [1712609757.901061]: Subclasses: []\n", + "[INFO] [1712609757.901369]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.901879]: Instances: []\n", + "[INFO] [1712609757.902161]: Direct Instances: []\n", + "[INFO] [1712609757.902454]: Inverse Restrictions: []\n", + "[INFO] [1712609757.902707]: -------------------\n", + "[INFO] [1712609757.902946]: SOMA.Sitting \n", + "[INFO] [1712609757.903188]: Super classes: [SOMA.AssumingPose]\n", + "[INFO] [1712609757.903474]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Sitting, owl.Thing, SOMA.AssumingPose}\n", + "[INFO] [1712609757.903742]: Subclasses: []\n", + "[INFO] [1712609757.904067]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.904581]: Instances: []\n", + "[INFO] [1712609757.904848]: Direct Instances: []\n", + "[INFO] [1712609757.905148]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712609757.905410]: -------------------\n", + "[INFO] [1712609757.905661]: SOMA.CausativeRole \n", + "[INFO] [1712609757.905905]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609757.906155]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609757.906573]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712609757.906993]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.907629]: Instances: []\n", + "[INFO] [1712609757.908025]: Direct Instances: []\n", + "[INFO] [1712609757.908406]: Inverse Restrictions: []\n", + "[INFO] [1712609757.908768]: -------------------\n", + "[INFO] [1712609757.909048]: SOMA.Agonist \n", + "[INFO] [1712609757.909311]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609757.909590]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.Agonist, owl.Thing, DUL.Role}\n", + "[INFO] [1712609757.909846]: Subclasses: []\n", + "[INFO] [1712609757.910146]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.910656]: Instances: []\n", + "[INFO] [1712609757.910926]: Direct Instances: []\n", + "[INFO] [1712609757.911226]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712609757.911478]: -------------------\n", + "[INFO] [1712609757.911721]: SOMA.Patient \n", + "[INFO] [1712609757.911957]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609757.912209]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609757.912500]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712609757.912799]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.913362]: Instances: []\n", + "[INFO] [1712609757.913641]: Direct Instances: []\n", + "[INFO] [1712609757.914089]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609757.914354]: -------------------\n", + "[INFO] [1712609757.914600]: SOMA.Algorithm \n", + "[INFO] [1712609757.914844]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712609757.915124]: Ancestors: {DUL.Entity, DUL.Plan, DUL.SocialObject, SOMA.Algorithm, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609757.915382]: Subclasses: []\n", + "[INFO] [1712609757.915679]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.916173]: Instances: []\n", + "[INFO] [1712609757.916445]: Direct Instances: []\n", + "[INFO] [1712609757.917662]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712609757.917959]: -------------------\n", + "[INFO] [1712609757.918218]: SOMA.Alteration \n", + "[INFO] [1712609757.918465]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712609757.918775]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609757.919056]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712609757.919367]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.919887]: Instances: []\n", + "[INFO] [1712609757.920346]: Direct Instances: []\n", + "[INFO] [1712609757.920845]: Inverse Restrictions: []\n", + "[INFO] [1712609757.921330]: -------------------\n", + "[INFO] [1712609757.921824]: SOMA.AlterativeInteraction \n", + "[INFO] [1712609757.922245]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712609757.924060]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AlterativeInteraction, SOMA.ProcessType}\n", + "[INFO] [1712609757.924588]: Subclasses: []\n", + "[INFO] [1712609757.925134]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.925946]: Instances: []\n", + "[INFO] [1712609757.926448]: Direct Instances: []\n", + "[INFO] [1712609757.926868]: Inverse Restrictions: []\n", + "[INFO] [1712609757.927302]: -------------------\n", + "[INFO] [1712609757.927600]: SOMA.ForceInteraction \n", + "[INFO] [1712609757.927983]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712609757.928281]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609757.928558]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712609757.928879]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712609757.929391]: Instances: []\n", + "[INFO] [1712609757.929672]: Direct Instances: []\n", + "[INFO] [1712609757.929943]: Inverse Restrictions: []\n", + "[INFO] [1712609757.930196]: -------------------\n", + "[INFO] [1712609757.930441]: SOMA.PreservativeInteraction \n", + "[INFO] [1712609757.930684]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712609757.930973]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, SOMA.PreservativeInteraction, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609757.931232]: Subclasses: []\n", + "[INFO] [1712609757.931525]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.932016]: Instances: []\n", + "[INFO] [1712609757.932290]: Direct Instances: []\n", + "[INFO] [1712609757.932582]: Inverse Restrictions: []\n", + "[INFO] [1712609757.932827]: -------------------\n", + "[INFO] [1712609757.933065]: SOMA.AlteredObject \n", + "[INFO] [1712609757.933303]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609757.933572]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609757.933842]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712609757.934138]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.934643]: Instances: []\n", + "[INFO] [1712609757.934915]: Direct Instances: []\n", + "[INFO] [1712609757.935672]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712609757.935952]: -------------------\n", + "[INFO] [1712609757.936225]: SOMA.Amateurish \n", + "[INFO] [1712609757.936498]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712609757.936842]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609757.937165]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712609757.937536]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.938177]: Instances: []\n", + "[INFO] [1712609757.938541]: Direct Instances: []\n", + "[INFO] [1712609757.938898]: Inverse Restrictions: []\n", + "[INFO] [1712609757.939222]: -------------------\n", + "[INFO] [1712609757.939567]: SOMA.AnsweringTask \n", + "[INFO] [1712609757.939887]: Super classes: [owl.Thing]\n", + "[INFO] [1712609757.942908]: Ancestors: {SOMA.AnsweringTask, owl.Thing}\n", + "[INFO] [1712609757.943295]: Subclasses: []\n", + "[INFO] [1712609757.943642]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.944160]: Instances: []\n", + "[INFO] [1712609757.944462]: Direct Instances: []\n", + "[INFO] [1712609757.944775]: Inverse Restrictions: []\n", + "[INFO] [1712609757.945030]: -------------------\n", + "[INFO] [1712609757.945276]: SOMA.CommandingTask \n", + "[INFO] [1712609757.945943]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712609757.946265]: Ancestors: {SOMA.IllocutionaryTask, SOMA.CommandingTask, owl.Thing}\n", + "[INFO] [1712609757.946578]: Subclasses: []\n", + "[INFO] [1712609757.947033]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.947578]: Instances: []\n", + "[INFO] [1712609757.947862]: Direct Instances: []\n", + "[INFO] [1712609757.948225]: Inverse Restrictions: []\n", + "[INFO] [1712609757.948489]: -------------------\n", + "[INFO] [1712609757.948740]: SOMA.IllocutionaryTask \n", + "[INFO] [1712609757.950122]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712609757.950430]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712609757.950713]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712609757.951031]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.951544]: Instances: []\n", + "[INFO] [1712609757.951832]: Direct Instances: []\n", + "[INFO] [1712609757.952137]: Inverse Restrictions: []\n", + "[INFO] [1712609757.952394]: -------------------\n", + "[INFO] [1712609757.952642]: SOMA.Antagonist \n", + "[INFO] [1712609757.952889]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609757.953164]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Antagonist}\n", + "[INFO] [1712609757.953434]: Subclasses: []\n", + "[INFO] [1712609757.953737]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.954240]: Instances: []\n", + "[INFO] [1712609757.954528]: Direct Instances: []\n", + "[INFO] [1712609757.954834]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712609757.955091]: -------------------\n", + "[INFO] [1712609757.955340]: SOMA.Appliance \n", + "[INFO] [1712609757.955599]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712609757.955873]: Ancestors: {SOMA.Appliance, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609757.956158]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712609757.956459]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.956963]: Instances: []\n", + "[INFO] [1712609757.957226]: Direct Instances: []\n", + "[INFO] [1712609757.957527]: Inverse Restrictions: []\n", + "[INFO] [1712609757.957796]: -------------------\n", + "[INFO] [1712609757.958046]: SOMA.Approaching \n", + "[INFO] [1712609757.958298]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609757.958598]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Approaching, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609757.958885]: Subclasses: []\n", + "[INFO] [1712609757.959197]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.959700]: Instances: []\n", + "[INFO] [1712609757.959985]: Direct Instances: []\n", + "[INFO] [1712609757.960250]: Inverse Restrictions: []\n", + "[INFO] [1712609757.960501]: -------------------\n", + "[INFO] [1712609757.960743]: SOMA.Locomotion \n", + "[INFO] [1712609757.960989]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712609757.961259]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609757.961533]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712609757.961843]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.962351]: Instances: []\n", + "[INFO] [1712609757.962646]: Direct Instances: []\n", + "[INFO] [1712609757.962919]: Inverse Restrictions: []\n", + "[INFO] [1712609757.963172]: -------------------\n", + "[INFO] [1712609757.963419]: SOMA.ArchiveFile \n", + "[INFO] [1712609757.963659]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712609757.964915]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ArchiveFile, owl.Thing, SOMA.Digital_File, DUL.InformationRealization}\n", + "[INFO] [1712609757.965215]: Subclasses: []\n", + "[INFO] [1712609757.965540]: Properties: [rdf-schema.comment, DUL.realizes, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.966052]: Instances: []\n", + "[INFO] [1712609757.966348]: Direct Instances: []\n", + "[INFO] [1712609757.966617]: Inverse Restrictions: []\n", + "[INFO] [1712609757.966871]: -------------------\n", + "[INFO] [1712609757.967118]: SOMA.ArchiveText \n", + "[INFO] [1712609757.967358]: Super classes: [owl.Thing]\n", + "[INFO] [1712609757.969130]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", + "[INFO] [1712609757.969426]: Subclasses: []\n", + "[INFO] [1712609757.969747]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.970266]: Instances: []\n", + "[INFO] [1712609757.970545]: Direct Instances: []\n", + "[INFO] [1712609757.970985]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712609757.971272]: -------------------\n", + "[INFO] [1712609757.971536]: SOMA.Digital_File \n", + "[INFO] [1712609757.971817]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712609757.972080]: Ancestors: {DUL.Entity, DUL.InformationEntity, owl.Thing, SOMA.Digital_File, DUL.InformationRealization}\n", + "[INFO] [1712609757.972347]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712609757.972664]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasNameString, DUL.realizes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.973188]: Instances: []\n", + "[INFO] [1712609757.973466]: Direct Instances: []\n", + "[INFO] [1712609757.976033]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712609757.976367]: -------------------\n", + "[INFO] [1712609757.976640]: SOMA.ArchiveFormat \n", + "[INFO] [1712609757.976906]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712609757.977218]: Ancestors: {SOMA.ArchiveFormat, DUL.Entity, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609757.977496]: Subclasses: []\n", + "[INFO] [1712609757.977813]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.978328]: Instances: []\n", + "[INFO] [1712609757.978601]: Direct Instances: []\n", + "[INFO] [1712609757.978902]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712609757.979163]: -------------------\n", + "[INFO] [1712609757.979420]: SOMA.File_format \n", + "[INFO] [1712609757.979668]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609757.979923]: Ancestors: {DUL.Entity, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609757.980181]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712609757.980479]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.980997]: Instances: []\n", + "[INFO] [1712609757.981269]: Direct Instances: []\n", + "[INFO] [1712609757.981531]: Inverse Restrictions: []\n", + "[INFO] [1712609757.981778]: -------------------\n", + "[INFO] [1712609757.982018]: SOMA.FileConfiguration \n", + "[INFO] [1712609757.982276]: Super classes: [owl.Thing]\n", + "[INFO] [1712609757.982769]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", + "[INFO] [1712609757.983030]: Subclasses: []\n", + "[INFO] [1712609757.983329]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.983848]: Instances: []\n", + "[INFO] [1712609757.984118]: Direct Instances: []\n", + "[INFO] [1712609757.984441]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712609757.984704]: -------------------\n", + "[INFO] [1712609757.984982]: SOMA.Structured_Text \n", + "[INFO] [1712609757.985276]: Super classes: [owl.Thing]\n", + "[INFO] [1712609757.986722]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", + "[INFO] [1712609757.987300]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712609757.987856]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.988561]: Instances: []\n", + "[INFO] [1712609757.988973]: Direct Instances: []\n", + "[INFO] [1712609757.991748]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712609757.992172]: -------------------\n", + "[INFO] [1712609757.992543]: SOMA.AreaSurveying \n", + "[INFO] [1712609757.992902]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712609757.993291]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", + "[INFO] [1712609757.993666]: Subclasses: []\n", + "[INFO] [1712609757.994076]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.994686]: Instances: []\n", + "[INFO] [1712609757.995055]: Direct Instances: []\n", + "[INFO] [1712609757.995408]: Inverse Restrictions: []\n", + "[INFO] [1712609757.995753]: -------------------\n", + "[INFO] [1712609757.996101]: SOMA.Perceiving \n", + "[INFO] [1712609757.996453]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712609757.996805]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712609757.997158]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712609757.997548]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609757.998171]: Instances: []\n", + "[INFO] [1712609757.998550]: Direct Instances: []\n", + "[INFO] [1712609757.998913]: Inverse Restrictions: []\n", + "[INFO] [1712609757.999264]: -------------------\n", + "[INFO] [1712609757.999618]: SOMA.Arm \n", + "[INFO] [1712609757.999969]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712609758.000963]: Ancestors: {DUL.Entity, SOMA.Arm, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.001343]: Subclasses: []\n", + "[INFO] [1712609758.001745]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.002352]: Instances: []\n", + "[INFO] [1712609758.002730]: Direct Instances: []\n", + "[INFO] [1712609758.003123]: Inverse Restrictions: []\n", + "[INFO] [1712609758.003475]: -------------------\n", + "[INFO] [1712609758.003817]: SOMA.Limb \n", + "[INFO] [1712609758.004155]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712609758.004514]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.004887]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712609758.005296]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.005899]: Instances: []\n", + "[INFO] [1712609758.006260]: Direct Instances: []\n", + "[INFO] [1712609758.007032]: Inverse Restrictions: []\n", + "[INFO] [1712609758.007590]: -------------------\n", + "[INFO] [1712609758.008148]: SOMA.Armchair \n", + "[INFO] [1712609758.008678]: Super classes: [SOMA.DesignedChair]\n", + "[INFO] [1712609758.009270]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Armchair, DUL.PhysicalObject, owl.Thing, SOMA.DesignedChair, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.009774]: Subclasses: []\n", + "[INFO] [1712609758.010297]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.010911]: Instances: []\n", + "[INFO] [1712609758.011277]: Direct Instances: []\n", + "[INFO] [1712609758.011625]: Inverse Restrictions: []\n", + "[INFO] [1712609758.011959]: -------------------\n", + "[INFO] [1712609758.012297]: SOMA.DesignedChair \n", + "[INFO] [1712609758.012652]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712609758.013004]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedChair, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.013347]: Subclasses: [SOMA.Armchair]\n", + "[INFO] [1712609758.013733]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712609758.014334]: Instances: []\n", + "[INFO] [1712609758.014696]: Direct Instances: []\n", + "[INFO] [1712609758.015044]: Inverse Restrictions: []\n", + "[INFO] [1712609758.015379]: -------------------\n", + "[INFO] [1712609758.015718]: SOMA.Arranging \n", + "[INFO] [1712609758.016065]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712609758.016436]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Arranging, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing}\n", + "[INFO] [1712609758.016781]: Subclasses: []\n", + "[INFO] [1712609758.017166]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.017768]: Instances: []\n", + "[INFO] [1712609758.018135]: Direct Instances: []\n", + "[INFO] [1712609758.018488]: Inverse Restrictions: []\n", + "[INFO] [1712609758.018826]: -------------------\n", + "[INFO] [1712609758.019160]: SOMA.Constructing \n", + "[INFO] [1712609758.019507]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609758.019855]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing}\n", + "[INFO] [1712609758.020218]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712609758.020622]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.021215]: Instances: []\n", + "[INFO] [1712609758.021587]: Direct Instances: []\n", + "[INFO] [1712609758.021951]: Inverse Restrictions: []\n", + "[INFO] [1712609758.022298]: -------------------\n", + "[INFO] [1712609758.022689]: SOMA.ArtificialAgent \n", + "[INFO] [1712609758.023052]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712609758.023478]: Ancestors: {DUL.Entity, DUL.PhysicalAgent, DUL.Object, DUL.Agent, DUL.PhysicalObject, owl.Thing, SOMA.ArtificialAgent}\n", + "[INFO] [1712609758.023865]: Subclasses: []\n", + "[INFO] [1712609758.024288]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.024898]: Instances: []\n", + "[INFO] [1712609758.025299]: Direct Instances: []\n", + "[INFO] [1712609758.025681]: Inverse Restrictions: []\n", + "[INFO] [1712609758.025959]: -------------------\n", + "[INFO] [1712609758.026224]: SOMA.Assembling \n", + "[INFO] [1712609758.026476]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712609758.026761]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Assembling}\n", + "[INFO] [1712609758.027017]: Subclasses: []\n", + "[INFO] [1712609758.027311]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.027811]: Instances: []\n", + "[INFO] [1712609758.028079]: Direct Instances: []\n", + "[INFO] [1712609758.028331]: Inverse Restrictions: []\n", + "[INFO] [1712609758.028572]: -------------------\n", + "[INFO] [1712609758.028811]: SOMA.AssertionTask \n", + "[INFO] [1712609758.029459]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712609758.029747]: Ancestors: {SOMA.IllocutionaryTask, SOMA.AssertionTask, owl.Thing}\n", + "[INFO] [1712609758.029999]: Subclasses: []\n", + "[INFO] [1712609758.030302]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.030808]: Instances: []\n", + "[INFO] [1712609758.031076]: Direct Instances: []\n", + "[INFO] [1712609758.031328]: Inverse Restrictions: []\n", + "[INFO] [1712609758.031581]: -------------------\n", + "[INFO] [1712609758.031828]: SOMA.DeclarativeClause \n", + "[INFO] [1712609758.032072]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712609758.032369]: Ancestors: {SOMA.DeclarativeClause, DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609758.032639]: Subclasses: []\n", + "[INFO] [1712609758.032943]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.033434]: Instances: []\n", + "[INFO] [1712609758.033694]: Direct Instances: []\n", + "[INFO] [1712609758.033985]: Inverse Restrictions: []\n", + "[INFO] [1712609758.034247]: -------------------\n", + "[INFO] [1712609758.034498]: SOMA.AssumingArmPose \n", + "[INFO] [1712609758.034739]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712609758.035009]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose, SOMA.AssumingArmPose}\n", + "[INFO] [1712609758.035259]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712609758.035549]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.036066]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712609758.036339]: Direct Instances: []\n", + "[INFO] [1712609758.036597]: Inverse Restrictions: []\n", + "[INFO] [1712609758.036842]: -------------------\n", + "[INFO] [1712609758.037081]: SOMA.AssumingPose \n", + "[INFO] [1712609758.037335]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609758.037591]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose}\n", + "[INFO] [1712609758.037846]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712609758.038147]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.038689]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712609758.038990]: Direct Instances: []\n", + "[INFO] [1712609758.039262]: Inverse Restrictions: []\n", + "[INFO] [1712609758.039533]: -------------------\n", + "[INFO] [1712609758.039799]: SOMA.AttentionShift \n", + "[INFO] [1712609758.040066]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712609758.040372]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.AttentionShift, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609758.040649]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712609758.040946]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.041481]: Instances: []\n", + "[INFO] [1712609758.041793]: Direct Instances: []\n", + "[INFO] [1712609758.042265]: Inverse Restrictions: []\n", + "[INFO] [1712609758.042786]: -------------------\n", + "[INFO] [1712609758.043173]: SOMA.MentalTask \n", + "[INFO] [1712609758.043498]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712609758.043885]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609758.044196]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712609758.044534]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.045086]: Instances: []\n", + "[INFO] [1712609758.045376]: Direct Instances: []\n", + "[INFO] [1712609758.045696]: Inverse Restrictions: []\n", + "[INFO] [1712609758.045953]: -------------------\n", + "[INFO] [1712609758.046207]: SOMA.AvoidedObject \n", + "[INFO] [1712609758.046466]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.046759]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.AvoidedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.047025]: Subclasses: []\n", + "[INFO] [1712609758.047330]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.047832]: Instances: []\n", + "[INFO] [1712609758.048099]: Direct Instances: []\n", + "[INFO] [1712609758.048364]: Inverse Restrictions: []\n", + "[INFO] [1712609758.048620]: -------------------\n", + "[INFO] [1712609758.048875]: SOMA.Avoiding \n", + "[INFO] [1712609758.049118]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712609758.049407]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Avoiding, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", + "[INFO] [1712609758.049690]: Subclasses: []\n", + "[INFO] [1712609758.050004]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.050526]: Instances: []\n", + "[INFO] [1712609758.050818]: Direct Instances: []\n", + "[INFO] [1712609758.051099]: Inverse Restrictions: []\n", + "[INFO] [1712609758.051362]: -------------------\n", + "[INFO] [1712609758.051618]: SOMA.Navigating \n", + "[INFO] [1712609758.051873]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609758.052134]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", + "[INFO] [1712609758.052414]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712609758.052742]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.053267]: Instances: [SOMA.navigating]\n", + "[INFO] [1712609758.053569]: Direct Instances: [SOMA.navigating]\n", + "[INFO] [1712609758.053851]: Inverse Restrictions: []\n", + "[INFO] [1712609758.054107]: -------------------\n", + "[INFO] [1712609758.054354]: SOMA.BakedGood \n", + "[INFO] [1712609758.054599]: Super classes: [SOMA.Dish]\n", + "[INFO] [1712609758.054882]: Ancestors: {DUL.Entity, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.BakedGood}\n", + "[INFO] [1712609758.055184]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", + "[INFO] [1712609758.055494]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.055997]: Instances: []\n", + "[INFO] [1712609758.056277]: Direct Instances: []\n", + "[INFO] [1712609758.056539]: Inverse Restrictions: []\n", + "[INFO] [1712609758.056799]: -------------------\n", + "[INFO] [1712609758.057058]: SOMA.Dish \n", + "[INFO] [1712609758.057306]: Super classes: [DUL.DesignedArtifact]\n", + "[INFO] [1712609758.057573]: Ancestors: {DUL.Entity, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.057825]: Subclasses: [SOMA.BakedGood]\n", + "[INFO] [1712609758.058114]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.058781]: Instances: []\n", + "[INFO] [1712609758.059095]: Direct Instances: []\n", + "[INFO] [1712609758.059375]: Inverse Restrictions: []\n", + "[INFO] [1712609758.059633]: -------------------\n", + "[INFO] [1712609758.059884]: SOMA.Barrier \n", + "[INFO] [1712609758.060133]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712609758.060420]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609758.060704]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712609758.061015]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.061523]: Instances: []\n", + "[INFO] [1712609758.061803]: Direct Instances: []\n", + "[INFO] [1712609758.062122]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712609758.062387]: -------------------\n", + "[INFO] [1712609758.062638]: SOMA.Restrictor \n", + "[INFO] [1712609758.062876]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712609758.063132]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609758.063407]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712609758.063710]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.064229]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609758.064508]: Direct Instances: []\n", + "[INFO] [1712609758.064884]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712609758.065140]: -------------------\n", + "[INFO] [1712609758.065384]: SOMA.BedsideTable \n", + "[INFO] [1712609758.065634]: Super classes: [SOMA.Table]\n", + "[INFO] [1712609758.065922]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.BedsideTable, DUL.PhysicalArtifact, DUL.Object, SOMA.Table, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.066178]: Subclasses: []\n", + "[INFO] [1712609758.066470]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.066975]: Instances: []\n", + "[INFO] [1712609758.067243]: Direct Instances: []\n", + "[INFO] [1712609758.067501]: Inverse Restrictions: []\n", + "[INFO] [1712609758.067745]: -------------------\n", + "[INFO] [1712609758.067982]: SOMA.Table \n", + "[INFO] [1712609758.068220]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712609758.068483]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Table, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.068740]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", + "[INFO] [1712609758.069033]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.069523]: Instances: []\n", + "[INFO] [1712609758.069803]: Direct Instances: []\n", + "[INFO] [1712609758.070072]: Inverse Restrictions: []\n", + "[INFO] [1712609758.070330]: -------------------\n", + "[INFO] [1712609758.070570]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712609758.070828]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712609758.071098]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.071358]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712609758.071659]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609758.072190]: Instances: []\n", + "[INFO] [1712609758.072493]: Direct Instances: []\n", + "[INFO] [1712609758.072771]: Inverse Restrictions: []\n", + "[INFO] [1712609758.073027]: -------------------\n", + "[INFO] [1712609758.073269]: SOMA.BeneficiaryRole \n", + "[INFO] [1712609758.073512]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712609758.073808]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.074118]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712609758.074440]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.074941]: Instances: []\n", + "[INFO] [1712609758.075233]: Direct Instances: []\n", + "[INFO] [1712609758.075502]: Inverse Restrictions: []\n", + "[INFO] [1712609758.075750]: -------------------\n", + "[INFO] [1712609758.075994]: SOMA.GoalRole \n", + "[INFO] [1712609758.076232]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609758.076494]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.076756]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712609758.077054]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.077569]: Instances: []\n", + "[INFO] [1712609758.077874]: Direct Instances: []\n", + "[INFO] [1712609758.078154]: Inverse Restrictions: []\n", + "[INFO] [1712609758.078417]: -------------------\n", + "[INFO] [1712609758.078663]: SOMA.CounterfactualBinding \n", + "[INFO] [1712609758.078906]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712609758.079177]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, SOMA.CounterfactualBinding}\n", + "[INFO] [1712609758.079446]: Subclasses: []\n", + "[INFO] [1712609758.079759]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.080249]: Instances: []\n", + "[INFO] [1712609758.080511]: Direct Instances: []\n", + "[INFO] [1712609758.080853]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712609758.081112]: -------------------\n", + "[INFO] [1712609758.081357]: SOMA.FactualBinding \n", + "[INFO] [1712609758.081596]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712609758.081859]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, SOMA.FactualBinding, owl.Thing}\n", + "[INFO] [1712609758.082120]: Subclasses: []\n", + "[INFO] [1712609758.082425]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.082912]: Instances: []\n", + "[INFO] [1712609758.083168]: Direct Instances: []\n", + "[INFO] [1712609758.083508]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712609758.083759]: -------------------\n", + "[INFO] [1712609758.084003]: SOMA.RoleFillerBinding \n", + "[INFO] [1712609758.084240]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712609758.084505]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.RoleFillerBinding, SOMA.Binding, owl.Thing}\n", + "[INFO] [1712609758.084767]: Subclasses: []\n", + "[INFO] [1712609758.085078]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.085565]: Instances: []\n", + "[INFO] [1712609758.085844]: Direct Instances: []\n", + "[INFO] [1712609758.086145]: Inverse Restrictions: []\n", + "[INFO] [1712609758.086404]: -------------------\n", + "[INFO] [1712609758.086647]: SOMA.RoleRoleBinding \n", + "[INFO] [1712609758.087291]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712609758.087601]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, SOMA.RoleRoleBinding, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing}\n", + "[INFO] [1712609758.087869]: Subclasses: []\n", + "[INFO] [1712609758.088175]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.088667]: Instances: []\n", + "[INFO] [1712609758.088943]: Direct Instances: []\n", + "[INFO] [1712609758.089263]: Inverse Restrictions: []\n", + "[INFO] [1712609758.089517]: -------------------\n", + "[INFO] [1712609758.089769]: SOMA.Blade \n", + "[INFO] [1712609758.090009]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.090330]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Blade, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.090719]: Subclasses: []\n", + "[INFO] [1712609758.091084]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.091628]: Instances: []\n", + "[INFO] [1712609758.091926]: Direct Instances: []\n", + "[INFO] [1712609758.092255]: Inverse Restrictions: [SOMA.Knife]\n", + "[INFO] [1712609758.092523]: -------------------\n", + "[INFO] [1712609758.092787]: SOMA.DesignedComponent \n", + "[INFO] [1712609758.093064]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712609758.093356]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.093645]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712609758.093957]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712609758.094492]: Instances: []\n", + "[INFO] [1712609758.094778]: Direct Instances: []\n", + "[INFO] [1712609758.095050]: Inverse Restrictions: []\n", + "[INFO] [1712609758.095299]: -------------------\n", + "[INFO] [1712609758.095542]: SOMA.Blockage \n", + "[INFO] [1712609758.095812]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712609758.096094]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.096369]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712609758.096675]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.097181]: Instances: []\n", + "[INFO] [1712609758.097449]: Direct Instances: []\n", + "[INFO] [1712609758.097722]: Inverse Restrictions: []\n", + "[INFO] [1712609758.097975]: -------------------\n", + "[INFO] [1712609758.098231]: SOMA.BlockedObject \n", + "[INFO] [1712609758.098476]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.098746]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", + "[INFO] [1712609758.099027]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712609758.099338]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.099848]: Instances: []\n", + "[INFO] [1712609758.100133]: Direct Instances: []\n", + "[INFO] [1712609758.100439]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712609758.100695]: -------------------\n", + "[INFO] [1712609758.100947]: SOMA.BodyMovement \n", + "[INFO] [1712609758.102001]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712609758.102296]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.102571]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712609758.102883]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.103421]: Instances: []\n", + "[INFO] [1712609758.103696]: Direct Instances: []\n", + "[INFO] [1712609758.103960]: Inverse Restrictions: []\n", + "[INFO] [1712609758.104208]: -------------------\n", + "[INFO] [1712609758.104455]: SOMA.Motion \n", + "[INFO] [1712609758.104698]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712609758.104966]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.105240]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712609758.105542]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.106094]: Instances: []\n", + "[INFO] [1712609758.106403]: Direct Instances: []\n", + "[INFO] [1712609758.106681]: Inverse Restrictions: []\n", + "[INFO] [1712609758.106935]: -------------------\n", + "[INFO] [1712609758.107184]: SOMA.Boiling \n", + "[INFO] [1712609758.107512]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712609758.107824]: Ancestors: {SOMA.Boiling, DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Vaporizing, SOMA.ProcessType}\n", + "[INFO] [1712609758.108104]: Subclasses: []\n", + "[INFO] [1712609758.108410]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.108906]: Instances: []\n", + "[INFO] [1712609758.109189]: Direct Instances: []\n", + "[INFO] [1712609758.109456]: Inverse Restrictions: []\n", + "[INFO] [1712609758.109705]: -------------------\n", + "[INFO] [1712609758.109950]: SOMA.Vaporizing \n", + "[INFO] [1712609758.110617]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712609758.110924]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Vaporizing, SOMA.ProcessType}\n", + "[INFO] [1712609758.111200]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712609758.111513]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712609758.112021]: Instances: []\n", + "[INFO] [1712609758.112316]: Direct Instances: []\n", + "[INFO] [1712609758.112586]: Inverse Restrictions: []\n", + "[INFO] [1712609758.112840]: -------------------\n", + "[INFO] [1712609758.113086]: SOMA.Bottle \n", + "[INFO] [1712609758.113327]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712609758.113596]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.113874]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", + "[INFO] [1712609758.114210]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.114823]: Instances: []\n", + "[INFO] [1712609758.115143]: Direct Instances: []\n", + "[INFO] [1712609758.115437]: Inverse Restrictions: []\n", + "[INFO] [1712609758.115707]: -------------------\n", + "[INFO] [1712609758.115970]: SOMA.DesignedContainer \n", + "[INFO] [1712609758.116224]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712609758.116500]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.116790]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712609758.117096]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712609758.117698]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712609758.117985]: Direct Instances: []\n", + "[INFO] [1712609758.118444]: Inverse Restrictions: []\n", + "[INFO] [1712609758.118791]: -------------------\n", + "[INFO] [1712609758.119333]: SOMA.Bowl \n", + "[INFO] [1712609758.119708]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712609758.120135]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bowl, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.120441]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", + "[INFO] [1712609758.120756]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.121278]: Instances: []\n", + "[INFO] [1712609758.121566]: Direct Instances: []\n", + "[INFO] [1712609758.121867]: Inverse Restrictions: [SOMA.Spoon]\n", + "[INFO] [1712609758.122137]: -------------------\n", + "[INFO] [1712609758.122418]: SOMA.Crockery \n", + "[INFO] [1712609758.123331]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712609758.123643]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.123926]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", + "[INFO] [1712609758.124238]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712609758.124779]: Instances: []\n", + "[INFO] [1712609758.125057]: Direct Instances: []\n", + "[INFO] [1712609758.125325]: Inverse Restrictions: []\n", + "[INFO] [1712609758.125567]: -------------------\n", + "[INFO] [1712609758.125806]: SOMA.Box \n", + "[INFO] [1712609758.126073]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", + "[INFO] [1712609758.126366]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Box, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.126629]: Subclasses: [SOMA.CerealBox]\n", + "[INFO] [1712609758.126919]: Properties: [rdf-schema.comment, SOMA.hasShapeRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.127407]: Instances: []\n", + "[INFO] [1712609758.127691]: Direct Instances: []\n", + "[INFO] [1712609758.127969]: Inverse Restrictions: []\n", + "[INFO] [1712609758.128211]: -------------------\n", + "[INFO] [1712609758.128451]: SOMA.BoxShape \n", + "[INFO] [1712609758.128746]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712609758.129030]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, SOMA.BoxShape, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609758.129283]: Subclasses: []\n", + "[INFO] [1712609758.129577]: Properties: [SOMA.hasHeight, rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasWidth, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.130084]: Instances: []\n", + "[INFO] [1712609758.130362]: Direct Instances: []\n", + "[INFO] [1712609758.130639]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712609758.130880]: -------------------\n", + "[INFO] [1712609758.131117]: SOMA.Bread \n", + "[INFO] [1712609758.131365]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712609758.131643]: Ancestors: {DUL.Entity, SOMA.Dish, DUL.DesignedArtifact, SOMA.Bread, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.BakedGood}\n", + "[INFO] [1712609758.131893]: Subclasses: []\n", + "[INFO] [1712609758.132171]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.132670]: Instances: []\n", + "[INFO] [1712609758.132939]: Direct Instances: []\n", + "[INFO] [1712609758.133187]: Inverse Restrictions: []\n", + "[INFO] [1712609758.133420]: -------------------\n", + "[INFO] [1712609758.133654]: SOMA.BreadKnife \n", + "[INFO] [1712609758.133897]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712609758.134194]: Ancestors: {SOMA.KitchenKnife, DUL.Entity, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.BreadKnife, SOMA.DesignedTool}\n", + "[INFO] [1712609758.134456]: Subclasses: []\n", + "[INFO] [1712609758.134769]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.135302]: Instances: []\n", + "[INFO] [1712609758.135591]: Direct Instances: []\n", + "[INFO] [1712609758.135856]: Inverse Restrictions: []\n", + "[INFO] [1712609758.136110]: -------------------\n", + "[INFO] [1712609758.136384]: SOMA.KitchenKnife \n", + "[INFO] [1712609758.136631]: Super classes: [SOMA.Knife]\n", + "[INFO] [1712609758.136892]: Ancestors: {SOMA.KitchenKnife, DUL.Entity, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", + "[INFO] [1712609758.137157]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", + "[INFO] [1712609758.137454]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.137959]: Instances: []\n", + "[INFO] [1712609758.138260]: Direct Instances: []\n", + "[INFO] [1712609758.138533]: Inverse Restrictions: []\n", + "[INFO] [1712609758.138779]: -------------------\n", + "[INFO] [1712609758.139023]: SOMA.BreakfastPlate \n", + "[INFO] [1712609758.139257]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712609758.139549]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.BreakfastPlate, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.139838]: Subclasses: []\n", + "[INFO] [1712609758.140151]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.140649]: Instances: []\n", + "[INFO] [1712609758.140925]: Direct Instances: []\n", + "[INFO] [1712609758.141196]: Inverse Restrictions: []\n", + "[INFO] [1712609758.141442]: -------------------\n", + "[INFO] [1712609758.141683]: SOMA.Plate \n", + "[INFO] [1712609758.141928]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712609758.142187]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.142465]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", + "[INFO] [1712609758.142765]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.143270]: Instances: []\n", + "[INFO] [1712609758.143536]: Direct Instances: []\n", + "[INFO] [1712609758.143810]: Inverse Restrictions: []\n", + "[INFO] [1712609758.144063]: -------------------\n", + "[INFO] [1712609758.144311]: SOMA.Building \n", + "[INFO] [1712609758.144545]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712609758.144824]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Building, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.145088]: Subclasses: []\n", + "[INFO] [1712609758.145380]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.145875]: Instances: []\n", + "[INFO] [1712609758.146211]: Direct Instances: []\n", + "[INFO] [1712609758.146552]: Inverse Restrictions: []\n", + "[INFO] [1712609758.146854]: -------------------\n", + "[INFO] [1712609758.147125]: SOMA.Deposition \n", + "[INFO] [1712609758.147418]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712609758.147688]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Deposition, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.147949]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712609758.148254]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.148790]: Instances: []\n", + "[INFO] [1712609758.149077]: Direct Instances: []\n", + "[INFO] [1712609758.149796]: Inverse Restrictions: []\n", + "[INFO] [1712609758.150062]: -------------------\n", + "[INFO] [1712609758.150322]: SOMA.CanCut \n", + "[INFO] [1712609758.150632]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712609758.150924]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.151190]: Subclasses: []\n", + "[INFO] [1712609758.151505]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.152004]: Instances: []\n", + "[INFO] [1712609758.152268]: Direct Instances: []\n", + "[INFO] [1712609758.152520]: Inverse Restrictions: []\n", + "[INFO] [1712609758.152764]: -------------------\n", + "[INFO] [1712609758.153015]: SOMA.Variability \n", + "[INFO] [1712609758.153300]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712609758.153574]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.153845]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712609758.154164]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.154725]: Instances: []\n", + "[INFO] [1712609758.155020]: Direct Instances: []\n", + "[INFO] [1712609758.155287]: Inverse Restrictions: []\n", + "[INFO] [1712609758.155534]: -------------------\n", + "[INFO] [1712609758.155773]: SOMA.Cutter \n", + "[INFO] [1712609758.156031]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712609758.156352]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Cutter, SOMA.Tool}\n", + "[INFO] [1712609758.156618]: Subclasses: []\n", + "[INFO] [1712609758.156929]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.157462]: Instances: []\n", + "[INFO] [1712609758.157741]: Direct Instances: []\n", + "[INFO] [1712609758.158077]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712609758.158340]: -------------------\n", + "[INFO] [1712609758.158596]: SOMA.CutObject \n", + "[INFO] [1712609758.158853]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712609758.159136]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.CutObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.159388]: Subclasses: []\n", + "[INFO] [1712609758.159685]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.160190]: Instances: []\n", + "[INFO] [1712609758.160458]: Direct Instances: []\n", + "[INFO] [1712609758.160789]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712609758.161050]: -------------------\n", + "[INFO] [1712609758.161296]: SOMA.Capability \n", + "[INFO] [1712609758.162999]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712609758.163307]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.163579]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712609758.163892]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.164391]: Instances: []\n", + "[INFO] [1712609758.164675]: Direct Instances: []\n", + "[INFO] [1712609758.164934]: Inverse Restrictions: []\n", + "[INFO] [1712609758.165175]: -------------------\n", + "[INFO] [1712609758.165412]: SOMA.Capacity \n", + "[INFO] [1712609758.165647]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609758.165908]: Ancestors: {DUL.Entity, SOMA.Intrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capacity, owl.Thing}\n", + "[INFO] [1712609758.166183]: Subclasses: []\n", + "[INFO] [1712609758.166495]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.166996]: Instances: []\n", + "[INFO] [1712609758.167264]: Direct Instances: []\n", + "[INFO] [1712609758.167951]: Inverse Restrictions: []\n", + "[INFO] [1712609758.168231]: -------------------\n", + "[INFO] [1712609758.168487]: SOMA.Intrinsic \n", + "[INFO] [1712609758.168731]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712609758.168981]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609758.169248]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712609758.169555]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.170088]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712609758.170365]: Direct Instances: []\n", + "[INFO] [1712609758.170628]: Inverse Restrictions: []\n", + "[INFO] [1712609758.170871]: -------------------\n", + "[INFO] [1712609758.171118]: SOMA.Carafe \n", + "[INFO] [1712609758.171366]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712609758.171636]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Carafe, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.171885]: Subclasses: [SOMA.CoffeeCarafe]\n", + "[INFO] [1712609758.172167]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.172707]: Instances: []\n", + "[INFO] [1712609758.172985]: Direct Instances: []\n", + "[INFO] [1712609758.173253]: Inverse Restrictions: []\n", + "[INFO] [1712609758.173501]: -------------------\n", + "[INFO] [1712609758.173749]: SOMA.Catching \n", + "[INFO] [1712609758.174050]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.174338]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Catching, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609758.174607]: Subclasses: []\n", + "[INFO] [1712609758.174908]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.175442]: Instances: []\n", + "[INFO] [1712609758.175735]: Direct Instances: []\n", + "[INFO] [1712609758.175990]: Inverse Restrictions: []\n", + "[INFO] [1712609758.176231]: -------------------\n", + "[INFO] [1712609758.176467]: SOMA.PickingUp \n", + "[INFO] [1712609758.176710]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609758.176992]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing, SOMA.PickingUp}\n", + "[INFO] [1712609758.177244]: Subclasses: []\n", + "[INFO] [1712609758.177535]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.178044]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712609758.178330]: Direct Instances: [SOMA.picking_up]\n", + "[INFO] [1712609758.178590]: Inverse Restrictions: []\n", + "[INFO] [1712609758.178832]: -------------------\n", + "[INFO] [1712609758.179067]: SOMA.CausalEventRole \n", + "[INFO] [1712609758.179301]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712609758.179559]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.CausalEventRole}\n", + "[INFO] [1712609758.179813]: Subclasses: []\n", + "[INFO] [1712609758.180106]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.180591]: Instances: []\n", + "[INFO] [1712609758.180859]: Direct Instances: []\n", + "[INFO] [1712609758.181247]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609758.181500]: -------------------\n", + "[INFO] [1712609758.181741]: SOMA.EventAdjacentRole \n", + "[INFO] [1712609758.181974]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712609758.182236]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.182503]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712609758.182804]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.183474]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609758.183761]: Direct Instances: []\n", + "[INFO] [1712609758.184030]: Inverse Restrictions: []\n", + "[INFO] [1712609758.184279]: -------------------\n", + "[INFO] [1712609758.184524]: SOMA.CausedMotionTheory \n", + "[INFO] [1712609758.184807]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712609758.185121]: Ancestors: {DUL.Entity, SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609758.185380]: Subclasses: []\n", + "[INFO] [1712609758.185682]: Properties: [rdf-schema.comment, DUL.hasPart, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.186178]: Instances: []\n", + "[INFO] [1712609758.186455]: Direct Instances: []\n", + "[INFO] [1712609758.186711]: Inverse Restrictions: []\n", + "[INFO] [1712609758.186950]: -------------------\n", + "[INFO] [1712609758.187187]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712609758.187421]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712609758.187663]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609758.187928]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712609758.188220]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.188720]: Instances: []\n", + "[INFO] [1712609758.188985]: Direct Instances: []\n", + "[INFO] [1712609758.189326]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", + "[INFO] [1712609758.189594]: -------------------\n", + "[INFO] [1712609758.189837]: SOMA.PerformerRole \n", + "[INFO] [1712609758.190109]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712609758.190404]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", + "[INFO] [1712609758.190727]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712609758.191038]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.191539]: Instances: []\n", + "[INFO] [1712609758.191820]: Direct Instances: []\n", + "[INFO] [1712609758.192174]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609758.192435]: -------------------\n", + "[INFO] [1712609758.192688]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712609758.192973]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712609758.193266]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.SourcePathGoalTheory}\n", + "[INFO] [1712609758.193523]: Subclasses: []\n", + "[INFO] [1712609758.193825]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.194315]: Instances: []\n", + "[INFO] [1712609758.194575]: Direct Instances: []\n", + "[INFO] [1712609758.194874]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609758.195123]: -------------------\n", + "[INFO] [1712609758.195364]: SOMA.Ceiling \n", + "[INFO] [1712609758.195597]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712609758.195877]: Ancestors: {DUL.Entity, SOMA.Ceiling, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", + "[INFO] [1712609758.196139]: Subclasses: []\n", + "[INFO] [1712609758.196440]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.196929]: Instances: []\n", + "[INFO] [1712609758.197185]: Direct Instances: []\n", + "[INFO] [1712609758.197427]: Inverse Restrictions: []\n", + "[INFO] [1712609758.197672]: -------------------\n", + "[INFO] [1712609758.197908]: SOMA.RoomSurface \n", + "[INFO] [1712609758.198147]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712609758.198394]: Ancestors: {DUL.Entity, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", + "[INFO] [1712609758.198641]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712609758.198946]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.199447]: Instances: []\n", + "[INFO] [1712609758.199717]: Direct Instances: []\n", + "[INFO] [1712609758.199967]: Inverse Restrictions: []\n", + "[INFO] [1712609758.200202]: -------------------\n", + "[INFO] [1712609758.200447]: SOMA.Floor \n", + "[INFO] [1712609758.200688]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712609758.200957]: Ancestors: {SOMA.Floor, DUL.Entity, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", + "[INFO] [1712609758.201205]: Subclasses: []\n", + "[INFO] [1712609758.201507]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.202016]: Instances: []\n", + "[INFO] [1712609758.202285]: Direct Instances: []\n", + "[INFO] [1712609758.202540]: Inverse Restrictions: []\n", + "[INFO] [1712609758.202778]: -------------------\n", + "[INFO] [1712609758.203010]: SOMA.Wall \n", + "[INFO] [1712609758.203250]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712609758.203524]: Ancestors: {DUL.Entity, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing, SOMA.Wall}\n", + "[INFO] [1712609758.203770]: Subclasses: []\n", + "[INFO] [1712609758.204046]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.204528]: Instances: []\n", + "[INFO] [1712609758.204803]: Direct Instances: []\n", + "[INFO] [1712609758.205061]: Inverse Restrictions: []\n", + "[INFO] [1712609758.205302]: -------------------\n", + "[INFO] [1712609758.205564]: SOMA.CeramicCooktop \n", + "[INFO] [1712609758.205807]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712609758.206106]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.CeramicCooktop, SOMA.ElectricCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.206378]: Subclasses: []\n", + "[INFO] [1712609758.206668]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.207154]: Instances: []\n", + "[INFO] [1712609758.207458]: Direct Instances: []\n", + "[INFO] [1712609758.207737]: Inverse Restrictions: []\n", + "[INFO] [1712609758.207983]: -------------------\n", + "[INFO] [1712609758.208223]: SOMA.ElectricCooktop \n", + "[INFO] [1712609758.208455]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712609758.208710]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.ElectricCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.208976]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", + "[INFO] [1712609758.209278]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.209791]: Instances: []\n", + "[INFO] [1712609758.210068]: Direct Instances: []\n", + "[INFO] [1712609758.210336]: Inverse Restrictions: []\n", + "[INFO] [1712609758.210577]: -------------------\n", + "[INFO] [1712609758.210812]: SOMA.CerealBox \n", + "[INFO] [1712609758.211046]: Super classes: [SOMA.Box]\n", + "[INFO] [1712609758.211306]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Box, DUL.Object, SOMA.CerealBox, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.211563]: Subclasses: []\n", + "[INFO] [1712609758.211853]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.212337]: Instances: []\n", + "[INFO] [1712609758.212586]: Direct Instances: []\n", + "[INFO] [1712609758.212825]: Inverse Restrictions: []\n", + "[INFO] [1712609758.213066]: -------------------\n", + "[INFO] [1712609758.213300]: SOMA.Channel \n", + "[INFO] [1712609758.213556]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712609758.213834]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.214100]: Subclasses: []\n", + "[INFO] [1712609758.214417]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.214911]: Instances: []\n", + "[INFO] [1712609758.215172]: Direct Instances: []\n", + "[INFO] [1712609758.215486]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609758.215742]: -------------------\n", + "[INFO] [1712609758.215989]: SOMA.PathRole \n", + "[INFO] [1712609758.216227]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712609758.216473]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.PathRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.216750]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712609758.217051]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.217542]: Instances: []\n", + "[INFO] [1712609758.217803]: Direct Instances: []\n", + "[INFO] [1712609758.218099]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712609758.218358]: -------------------\n", + "[INFO] [1712609758.218599]: SOMA.CommunicationTask \n", + "[INFO] [1712609758.219629]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712609758.219988]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712609758.220274]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712609758.220587]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.221083]: Instances: []\n", + "[INFO] [1712609758.221357]: Direct Instances: []\n", + "[INFO] [1712609758.222237]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", + "[INFO] [1712609758.222508]: -------------------\n", + "[INFO] [1712609758.222756]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712609758.222997]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712609758.223275]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", + "[INFO] [1712609758.223525]: Subclasses: []\n", + "[INFO] [1712609758.223816]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.224339]: Instances: []\n", + "[INFO] [1712609758.224631]: Direct Instances: []\n", + "[INFO] [1712609758.224890]: Inverse Restrictions: []\n", + "[INFO] [1712609758.225142]: -------------------\n", + "[INFO] [1712609758.225390]: SOMA.ChemicalProcess \n", + "[INFO] [1712609758.225629]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712609758.225901]: Ancestors: {DUL.Entity, DUL.Process, SOMA.ChemicalProcess, owl.Thing, DUL.Event}\n", + "[INFO] [1712609758.226173]: Subclasses: []\n", + "[INFO] [1712609758.226478]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.227004]: Instances: []\n", + "[INFO] [1712609758.227283]: Direct Instances: []\n", + "[INFO] [1712609758.227539]: Inverse Restrictions: []\n", + "[INFO] [1712609758.227778]: -------------------\n", + "[INFO] [1712609758.228014]: SOMA.Choice \n", + "[INFO] [1712609758.228246]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712609758.228524]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, SOMA.Choice, DUL.Object, SOMA.EventAdjacentRole, SOMA.ResultRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.228777]: Subclasses: []\n", + "[INFO] [1712609758.229068]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.229550]: Instances: []\n", + "[INFO] [1712609758.229801]: Direct Instances: []\n", + "[INFO] [1712609758.230059]: Inverse Restrictions: []\n", + "[INFO] [1712609758.230419]: -------------------\n", + "[INFO] [1712609758.230747]: SOMA.ResultRole \n", + "[INFO] [1712609758.231026]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712609758.231304]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ResultRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.231579]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712609758.231884]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.232402]: Instances: []\n", + "[INFO] [1712609758.232690]: Direct Instances: []\n", + "[INFO] [1712609758.232957]: Inverse Restrictions: []\n", + "[INFO] [1712609758.233198]: -------------------\n", + "[INFO] [1712609758.233439]: SOMA.CircularCylinder \n", + "[INFO] [1712609758.233702]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712609758.234003]: Ancestors: {DUL.Entity, SOMA.CircularCylinder, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609758.234269]: Subclasses: []\n", + "[INFO] [1712609758.234579]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712609758.235075]: Instances: []\n", + "[INFO] [1712609758.235363]: Direct Instances: []\n", + "[INFO] [1712609758.235635]: Inverse Restrictions: []\n", + "[INFO] [1712609758.235919]: -------------------\n", + "[INFO] [1712609758.236173]: SOMA.CylinderShape \n", + "[INFO] [1712609758.236462]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712609758.236749]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609758.237027]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712609758.237349]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasLength, SOMA.hasRadius, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.237866]: Instances: []\n", + "[INFO] [1712609758.238156]: Direct Instances: []\n", + "[INFO] [1712609758.238427]: Inverse Restrictions: []\n", + "[INFO] [1712609758.238719]: -------------------\n", + "[INFO] [1712609758.238994]: SOMA.Classifier \n", + "[INFO] [1712609758.239249]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712609758.239558]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.Classifier, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.239851]: Subclasses: []\n", + "[INFO] [1712609758.240170]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.240682]: Instances: []\n", + "[INFO] [1712609758.240999]: Direct Instances: []\n", + "[INFO] [1712609758.241270]: Inverse Restrictions: []\n", + "[INFO] [1712609758.241533]: -------------------\n", + "[INFO] [1712609758.241786]: SOMA.StatisticalReasoner \n", + "[INFO] [1712609758.242027]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712609758.242314]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.242579]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712609758.242884]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.243617]: Instances: []\n", + "[INFO] [1712609758.244219]: Direct Instances: []\n", + "[INFO] [1712609758.244661]: Inverse Restrictions: []\n", + "[INFO] [1712609758.245084]: -------------------\n", + "[INFO] [1712609758.245443]: SOMA.ClausalObject \n", + "[INFO] [1712609758.245866]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712609758.246235]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609758.246696]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712609758.247183]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.247883]: Instances: []\n", + "[INFO] [1712609758.248283]: Direct Instances: []\n", + "[INFO] [1712609758.248653]: Inverse Restrictions: []\n", + "[INFO] [1712609758.249001]: -------------------\n", + "[INFO] [1712609758.249344]: SOMA.Phrase \n", + "[INFO] [1712609758.249678]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712609758.250034]: Ancestors: {DUL.Entity, DUL.InformationEntity, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609758.250501]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712609758.250893]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.251449]: Instances: []\n", + "[INFO] [1712609758.251745]: Direct Instances: []\n", + "[INFO] [1712609758.252028]: Inverse Restrictions: []\n", + "[INFO] [1712609758.252304]: -------------------\n", + "[INFO] [1712609758.252563]: SOMA.Clean \n", + "[INFO] [1712609758.252810]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712609758.253089]: Ancestors: {SOMA.Clean, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", + "[INFO] [1712609758.253340]: Subclasses: []\n", + "[INFO] [1712609758.253635]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.254148]: Instances: []\n", + "[INFO] [1712609758.254424]: Direct Instances: []\n", + "[INFO] [1712609758.255157]: Inverse Restrictions: []\n", + "[INFO] [1712609758.255450]: -------------------\n", + "[INFO] [1712609758.255786]: SOMA.CleanlinessRegion \n", + "[INFO] [1712609758.256060]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609758.256351]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", + "[INFO] [1712609758.256620]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712609758.256939]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.257509]: Instances: []\n", + "[INFO] [1712609758.257803]: Direct Instances: []\n", + "[INFO] [1712609758.258156]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712609758.258410]: -------------------\n", + "[INFO] [1712609758.258660]: SOMA.Cleaning \n", + "[INFO] [1712609758.258934]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712609758.259217]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Cleaning, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609758.259466]: Subclasses: []\n", + "[INFO] [1712609758.259760]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.260264]: Instances: []\n", + "[INFO] [1712609758.260543]: Direct Instances: []\n", + "[INFO] [1712609758.260801]: Inverse Restrictions: []\n", + "[INFO] [1712609758.261044]: -------------------\n", + "[INFO] [1712609758.261281]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712609758.261513]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609758.261772]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609758.262028]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712609758.262407]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.263000]: Instances: []\n", + "[INFO] [1712609758.263304]: Direct Instances: []\n", + "[INFO] [1712609758.263601]: Inverse Restrictions: []\n", + "[INFO] [1712609758.263863]: -------------------\n", + "[INFO] [1712609758.264111]: SOMA.Purification \n", + "[INFO] [1712609758.265161]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712609758.265483]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition, SOMA.Purification}\n", + "[INFO] [1712609758.265748]: Subclasses: []\n", + "[INFO] [1712609758.266045]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.266551]: Instances: []\n", + "[INFO] [1712609758.266832]: Direct Instances: []\n", + "[INFO] [1712609758.267138]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712609758.267388]: -------------------\n", + "[INFO] [1712609758.267653]: SOMA.Cleanliness \n", + "[INFO] [1712609758.267922]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712609758.268199]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing}\n", + "[INFO] [1712609758.268466]: Subclasses: []\n", + "[INFO] [1712609758.268771]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.269274]: Instances: []\n", + "[INFO] [1712609758.269545]: Direct Instances: []\n", + "[INFO] [1712609758.269888]: Inverse Restrictions: []\n", + "[INFO] [1712609758.270149]: -------------------\n", + "[INFO] [1712609758.270406]: SOMA.SocialQuality \n", + "[INFO] [1712609758.270662]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712609758.270915]: Ancestors: {SOMA.SocialQuality, DUL.Entity, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609758.271174]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712609758.271492]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.272005]: Instances: []\n", + "[INFO] [1712609758.272279]: Direct Instances: []\n", + "[INFO] [1712609758.272542]: Inverse Restrictions: []\n", + "[INFO] [1712609758.272795]: -------------------\n", + "[INFO] [1712609758.273037]: SOMA.Client-Server_Specification \n", + "[INFO] [1712609758.274067]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712609758.274401]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, SOMA.Client-Server_Specification, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712609758.274682]: Subclasses: []\n", + "[INFO] [1712609758.274999]: Properties: [rdf-schema.comment, DUL.definesRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.275498]: Instances: []\n", + "[INFO] [1712609758.275762]: Direct Instances: []\n", + "[INFO] [1712609758.276094]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712609758.276357]: -------------------\n", + "[INFO] [1712609758.276603]: SOMA.ClientRole \n", + "[INFO] [1712609758.276854]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712609758.278095]: Ancestors: {DUL.Concept, SOMA.ClientRole, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.278402]: Subclasses: []\n", + "[INFO] [1712609758.278740]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.279253]: Instances: []\n", + "[INFO] [1712609758.279531]: Direct Instances: []\n", + "[INFO] [1712609758.279855]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712609758.280123]: -------------------\n", + "[INFO] [1712609758.280374]: SOMA.ServerRole \n", + "[INFO] [1712609758.280631]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712609758.280910]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.ServerRole, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.281159]: Subclasses: []\n", + "[INFO] [1712609758.281455]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.281964]: Instances: []\n", + "[INFO] [1712609758.282244]: Direct Instances: []\n", + "[INFO] [1712609758.282559]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712609758.282809]: -------------------\n", + "[INFO] [1712609758.283054]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712609758.283309]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609758.283566]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.283825]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712609758.284131]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.284645]: Instances: []\n", + "[INFO] [1712609758.284917]: Direct Instances: []\n", + "[INFO] [1712609758.285176]: Inverse Restrictions: []\n", + "[INFO] [1712609758.285416]: -------------------\n", + "[INFO] [1712609758.285656]: SOMA.Closing \n", + "[INFO] [1712609758.285907]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.286185]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Closing, SOMA.Actuating}\n", + "[INFO] [1712609758.286446]: Subclasses: []\n", + "[INFO] [1712609758.286758]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.287265]: Instances: []\n", + "[INFO] [1712609758.287537]: Direct Instances: []\n", + "[INFO] [1712609758.287791]: Inverse Restrictions: []\n", + "[INFO] [1712609758.288035]: -------------------\n", + "[INFO] [1712609758.288279]: SOMA.Delivering \n", + "[INFO] [1712609758.288550]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712609758.288835]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Delivering, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609758.289096]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712609758.289411]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.289934]: Instances: []\n", + "[INFO] [1712609758.290226]: Direct Instances: []\n", + "[INFO] [1712609758.290497]: Inverse Restrictions: []\n", + "[INFO] [1712609758.290789]: -------------------\n", + "[INFO] [1712609758.291037]: SOMA.Fetching \n", + "[INFO] [1712609758.291444]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712609758.291737]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Fetching, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PhysicalAcquiring, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609758.291994]: Subclasses: []\n", + "[INFO] [1712609758.292299]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.292786]: Instances: []\n", + "[INFO] [1712609758.293069]: Direct Instances: []\n", + "[INFO] [1712609758.293331]: Inverse Restrictions: []\n", + "[INFO] [1712609758.293586]: -------------------\n", + "[INFO] [1712609758.293834]: SOMA.Lifting \n", + "[INFO] [1712609758.294075]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.294347]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Lifting, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609758.294614]: Subclasses: []\n", + "[INFO] [1712609758.294921]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.295412]: Instances: []\n", + "[INFO] [1712609758.295681]: Direct Instances: []\n", + "[INFO] [1712609758.295941]: Inverse Restrictions: []\n", + "[INFO] [1712609758.296201]: -------------------\n", + "[INFO] [1712609758.296450]: SOMA.Opening \n", + "[INFO] [1712609758.296696]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.296968]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating, SOMA.Opening}\n", + "[INFO] [1712609758.297239]: Subclasses: []\n", + "[INFO] [1712609758.297552]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.298046]: Instances: []\n", + "[INFO] [1712609758.298326]: Direct Instances: []\n", + "[INFO] [1712609758.298579]: Inverse Restrictions: []\n", + "[INFO] [1712609758.298823]: -------------------\n", + "[INFO] [1712609758.299073]: SOMA.Pulling \n", + "[INFO] [1712609758.299315]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.299582]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Pulling, SOMA.Actuating}\n", + "[INFO] [1712609758.299829]: Subclasses: []\n", + "[INFO] [1712609758.300130]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.300628]: Instances: []\n", + "[INFO] [1712609758.300892]: Direct Instances: []\n", + "[INFO] [1712609758.301148]: Inverse Restrictions: []\n", + "[INFO] [1712609758.301387]: -------------------\n", + "[INFO] [1712609758.301634]: SOMA.Pushing \n", + "[INFO] [1712609758.301882]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.302158]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609758.302415]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712609758.302727]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.303244]: Instances: []\n", + "[INFO] [1712609758.303531]: Direct Instances: []\n", + "[INFO] [1712609758.303806]: Inverse Restrictions: []\n", + "[INFO] [1712609758.304054]: -------------------\n", + "[INFO] [1712609758.304297]: SOMA.Squeezing \n", + "[INFO] [1712609758.304539]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.304800]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Squeezing, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609758.305063]: Subclasses: []\n", + "[INFO] [1712609758.305363]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.305865]: Instances: []\n", + "[INFO] [1712609758.306153]: Direct Instances: []\n", + "[INFO] [1712609758.306432]: Inverse Restrictions: []\n", + "[INFO] [1712609758.306674]: -------------------\n", + "[INFO] [1712609758.306916]: SOMA.ClosingDisposition \n", + "[INFO] [1712609758.307153]: Super classes: [SOMA.Linkage]\n", + "[INFO] [1712609758.307476]: Ancestors: {SOMA.Extrinsic, SOMA.ClosingDisposition, DUL.Entity, SOMA.Linkage, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.307743]: Subclasses: []\n", + "[INFO] [1712609758.308040]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.308532]: Instances: []\n", + "[INFO] [1712609758.308789]: Direct Instances: []\n", + "[INFO] [1712609758.309034]: Inverse Restrictions: []\n", + "[INFO] [1712609758.309282]: -------------------\n", + "[INFO] [1712609758.309539]: SOMA.Linkage \n", + "[INFO] [1712609758.309809]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712609758.310071]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.Linkage, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.310349]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712609758.310664]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.311173]: Instances: []\n", + "[INFO] [1712609758.311442]: Direct Instances: []\n", + "[INFO] [1712609758.311693]: Inverse Restrictions: []\n", + "[INFO] [1712609758.311946]: -------------------\n", + "[INFO] [1712609758.312191]: SOMA.Clumsiness \n", + "[INFO] [1712609758.312430]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712609758.312703]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Clumsiness, DUL.Diagnosis}\n", + "[INFO] [1712609758.312947]: Subclasses: []\n", + "[INFO] [1712609758.313239]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.313732]: Instances: []\n", + "[INFO] [1712609758.314000]: Direct Instances: []\n", + "[INFO] [1712609758.314403]: Inverse Restrictions: []\n", + "[INFO] [1712609758.314764]: -------------------\n", + "[INFO] [1712609758.315135]: SOMA.CoffeeCarafe \n", + "[INFO] [1712609758.315496]: Super classes: [SOMA.Carafe]\n", + "[INFO] [1712609758.315884]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Carafe, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.CoffeeCarafe}\n", + "[INFO] [1712609758.316269]: Subclasses: []\n", + "[INFO] [1712609758.316582]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.317097]: Instances: []\n", + "[INFO] [1712609758.317369]: Direct Instances: []\n", + "[INFO] [1712609758.317621]: Inverse Restrictions: []\n", + "[INFO] [1712609758.317988]: -------------------\n", + "[INFO] [1712609758.318259]: SOMA.CoffeeTable \n", + "[INFO] [1712609758.318518]: Super classes: [SOMA.Table]\n", + "[INFO] [1712609758.318793]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Table, SOMA.CoffeeTable, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.319266]: Subclasses: []\n", + "[INFO] [1712609758.319646]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.320149]: Instances: []\n", + "[INFO] [1712609758.320415]: Direct Instances: []\n", + "[INFO] [1712609758.320665]: Inverse Restrictions: []\n", + "[INFO] [1712609758.320904]: -------------------\n", + "[INFO] [1712609758.321139]: SOMA.CognitiveAgent \n", + "[INFO] [1712609758.321376]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712609758.321651]: Ancestors: {DUL.Entity, DUL.Agent, SOMA.CognitiveAgent, DUL.Object, owl.Thing}\n", + "[INFO] [1712609758.321907]: Subclasses: []\n", + "[INFO] [1712609758.322215]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.322714]: Instances: []\n", + "[INFO] [1712609758.323010]: Direct Instances: []\n", + "[INFO] [1712609758.323276]: Inverse Restrictions: []\n", + "[INFO] [1712609758.323519]: -------------------\n", + "[INFO] [1712609758.323987]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712609758.324399]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712609758.324835]: Ancestors: {DUL.Entity, SOMA.SubCognitiveAgent, DUL.Agent, DUL.Object, owl.Thing}\n", + "[INFO] [1712609758.325275]: Subclasses: []\n", + "[INFO] [1712609758.325757]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.326368]: Instances: []\n", + "[INFO] [1712609758.326798]: Direct Instances: []\n", + "[INFO] [1712609758.327229]: Inverse Restrictions: []\n", + "[INFO] [1712609758.327594]: -------------------\n", + "[INFO] [1712609758.328012]: SOMA.CoilCooktop \n", + "[INFO] [1712609758.328438]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712609758.328829]: Ancestors: {DUL.Entity, SOMA.CoilCooktop, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.ElectricCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.329187]: Subclasses: []\n", + "[INFO] [1712609758.329594]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.330198]: Instances: []\n", + "[INFO] [1712609758.330561]: Direct Instances: []\n", + "[INFO] [1712609758.330901]: Inverse Restrictions: []\n", + "[INFO] [1712609758.331236]: -------------------\n", + "[INFO] [1712609758.331571]: SOMA.Collision \n", + "[INFO] [1712609758.331906]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712609758.332263]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType, SOMA.Collision}\n", + "[INFO] [1712609758.332597]: Subclasses: []\n", + "[INFO] [1712609758.332986]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.333566]: Instances: []\n", + "[INFO] [1712609758.333919]: Direct Instances: []\n", + "[INFO] [1712609758.334288]: Inverse Restrictions: []\n", + "[INFO] [1712609758.334614]: -------------------\n", + "[INFO] [1712609758.334890]: SOMA.Extrinsic \n", + "[INFO] [1712609758.335145]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712609758.335393]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609758.335647]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712609758.335964]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.336526]: Instances: []\n", + "[INFO] [1712609758.336816]: Direct Instances: []\n", + "[INFO] [1712609758.337088]: Inverse Restrictions: []\n", + "[INFO] [1712609758.337333]: -------------------\n", + "[INFO] [1712609758.337568]: SOMA.ImperativeClause \n", + "[INFO] [1712609758.337838]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712609758.338132]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, SOMA.ImperativeClause, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609758.338395]: Subclasses: []\n", + "[INFO] [1712609758.338698]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.expresses]\n", + "[INFO] [1712609758.339193]: Instances: []\n", + "[INFO] [1712609758.339473]: Direct Instances: []\n", + "[INFO] [1712609758.339786]: Inverse Restrictions: []\n", + "[INFO] [1712609758.340038]: -------------------\n", + "[INFO] [1712609758.340277]: SOMA.CommitedObject \n", + "[INFO] [1712609758.340515]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712609758.340797]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.CommitedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.341067]: Subclasses: []\n", + "[INFO] [1712609758.341371]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.341867]: Instances: []\n", + "[INFO] [1712609758.342137]: Direct Instances: []\n", + "[INFO] [1712609758.342429]: Inverse Restrictions: []\n", + "[INFO] [1712609758.342700]: -------------------\n", + "[INFO] [1712609758.342957]: SOMA.ConnectedObject \n", + "[INFO] [1712609758.343206]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.343464]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.343743]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712609758.344049]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.344559]: Instances: []\n", + "[INFO] [1712609758.344846]: Direct Instances: []\n", + "[INFO] [1712609758.345232]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712609758.345511]: -------------------\n", + "[INFO] [1712609758.345772]: SOMA.CommunicationAction \n", + "[INFO] [1712609758.346049]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712609758.346347]: Ancestors: {DUL.Entity, SOMA.CommunicationAction, DUL.Action, owl.Thing, DUL.Event}\n", + "[INFO] [1712609758.346629]: Subclasses: []\n", + "[INFO] [1712609758.346954]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.347463]: Instances: []\n", + "[INFO] [1712609758.347738]: Direct Instances: []\n", + "[INFO] [1712609758.348778]: Inverse Restrictions: []\n", + "[INFO] [1712609758.349069]: -------------------\n", + "[INFO] [1712609758.349330]: SOMA.LinguisticObject \n", + "[INFO] [1712609758.349588]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712609758.350019]: Ancestors: {DUL.Entity, DUL.InformationEntity, DUL.SocialObject, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609758.350375]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712609758.350853]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.351492]: Instances: []\n", + "[INFO] [1712609758.351876]: Direct Instances: []\n", + "[INFO] [1712609758.352285]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712609758.352647]: -------------------\n", + "[INFO] [1712609758.353008]: SOMA.CommunicationReport \n", + "[INFO] [1712609758.353355]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609758.353726]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712609758.354076]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712609758.354474]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.355086]: Instances: []\n", + "[INFO] [1712609758.355461]: Direct Instances: []\n", + "[INFO] [1712609758.355817]: Inverse Restrictions: []\n", + "[INFO] [1712609758.356167]: -------------------\n", + "[INFO] [1712609758.356527]: SOMA.Receiver \n", + "[INFO] [1712609758.356877]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712609758.357257]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExperiencerRole, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Receiver, SOMA.PerformerRole}\n", + "[INFO] [1712609758.357614]: Subclasses: []\n", + "[INFO] [1712609758.358004]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.358766]: Instances: []\n", + "[INFO] [1712609758.359196]: Direct Instances: []\n", + "[INFO] [1712609758.359566]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609758.359833]: -------------------\n", + "[INFO] [1712609758.360082]: SOMA.Sender \n", + "[INFO] [1712609758.360330]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712609758.360617]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.Sender, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", + "[INFO] [1712609758.360870]: Subclasses: []\n", + "[INFO] [1712609758.361175]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.361676]: Instances: []\n", + "[INFO] [1712609758.361942]: Direct Instances: []\n", + "[INFO] [1712609758.362270]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609758.362535]: -------------------\n", + "[INFO] [1712609758.362787]: SOMA.CommunicationTopic \n", + "[INFO] [1712609758.363841]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712609758.364155]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.364429]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609758.364735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.365254]: Instances: []\n", + "[INFO] [1712609758.365529]: Direct Instances: []\n", + "[INFO] [1712609758.365788]: Inverse Restrictions: []\n", + "[INFO] [1712609758.366031]: -------------------\n", + "[INFO] [1712609758.366359]: SOMA.ResourceRole \n", + "[INFO] [1712609758.366656]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609758.366936]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.367214]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712609758.367525]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.368092]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609758.368388]: Direct Instances: []\n", + "[INFO] [1712609758.368659]: Inverse Restrictions: []\n", + "[INFO] [1712609758.368927]: -------------------\n", + "[INFO] [1712609758.369177]: SOMA.Compartment \n", + "[INFO] [1712609758.369414]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.369700]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, SOMA.Compartment}\n", + "[INFO] [1712609758.369969]: Subclasses: [SOMA.FreezerCompartment]\n", + "[INFO] [1712609758.370275]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.370777]: Instances: []\n", + "[INFO] [1712609758.371069]: Direct Instances: []\n", + "[INFO] [1712609758.371341]: Inverse Restrictions: []\n", + "[INFO] [1712609758.371603]: -------------------\n", + "[INFO] [1712609758.372019]: SOMA.Composing \n", + "[INFO] [1712609758.372369]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712609758.372741]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Composing, SOMA.Disposition}\n", + "[INFO] [1712609758.373106]: Subclasses: []\n", + "[INFO] [1712609758.373497]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.374088]: Instances: []\n", + "[INFO] [1712609758.374400]: Direct Instances: []\n", + "[INFO] [1712609758.374736]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712609758.375009]: -------------------\n", + "[INFO] [1712609758.375273]: SOMA.Computer_Language \n", + "[INFO] [1712609758.375646]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712609758.376022]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.376398]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712609758.376814]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.377441]: Instances: []\n", + "[INFO] [1712609758.377827]: Direct Instances: []\n", + "[INFO] [1712609758.378192]: Inverse Restrictions: []\n", + "[INFO] [1712609758.378540]: -------------------\n", + "[INFO] [1712609758.378873]: SOMA.FormalLanguage \n", + "[INFO] [1712609758.379217]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712609758.379580]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.379939]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609758.380341]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.380943]: Instances: []\n", + "[INFO] [1712609758.381310]: Direct Instances: []\n", + "[INFO] [1712609758.381719]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712609758.382056]: -------------------\n", + "[INFO] [1712609758.382429]: SOMA.Computer_Program \n", + "[INFO] [1712609758.382720]: Super classes: [owl.Thing]\n", + "[INFO] [1712609758.384897]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", + "[INFO] [1712609758.385239]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712609758.385596]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.386140]: Instances: []\n", + "[INFO] [1712609758.386438]: Direct Instances: []\n", + "[INFO] [1712609758.388289]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712609758.388587]: -------------------\n", + "[INFO] [1712609758.388843]: SOMA.Programming_Language \n", + "[INFO] [1712609758.389095]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712609758.389382]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Programming_Language, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.389648]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712609758.389962]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.390476]: Instances: []\n", + "[INFO] [1712609758.390759]: Direct Instances: []\n", + "[INFO] [1712609758.391096]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712609758.391360]: -------------------\n", + "[INFO] [1712609758.391616]: SOMA.Conclusion \n", + "[INFO] [1712609758.391868]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712609758.392178]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Conclusion, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.CreatedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.392453]: Subclasses: []\n", + "[INFO] [1712609758.392762]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.393267]: Instances: []\n", + "[INFO] [1712609758.393556]: Direct Instances: []\n", + "[INFO] [1712609758.394639]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609758.394925]: -------------------\n", + "[INFO] [1712609758.395181]: SOMA.CreatedObject \n", + "[INFO] [1712609758.395445]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.395703]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.CreatedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.395960]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712609758.396259]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.396774]: Instances: []\n", + "[INFO] [1712609758.397044]: Direct Instances: []\n", + "[INFO] [1712609758.397432]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712609758.397687]: -------------------\n", + "[INFO] [1712609758.397941]: SOMA.Knowledge \n", + "[INFO] [1712609758.398246]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712609758.398563]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.398849]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712609758.399160]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.399670]: Instances: []\n", + "[INFO] [1712609758.399955]: Direct Instances: []\n", + "[INFO] [1712609758.401126]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712609758.401396]: -------------------\n", + "[INFO] [1712609758.401646]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712609758.401902]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712609758.402198]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing, SOMA.ConditionalSuccedence}\n", + "[INFO] [1712609758.402465]: Subclasses: []\n", + "[INFO] [1712609758.402774]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.403269]: Instances: []\n", + "[INFO] [1712609758.403550]: Direct Instances: []\n", + "[INFO] [1712609758.403811]: Inverse Restrictions: []\n", + "[INFO] [1712609758.404052]: -------------------\n", + "[INFO] [1712609758.404287]: SOMA.Configuration \n", + "[INFO] [1712609758.404533]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712609758.404797]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Configuration, DUL.Description, owl.Thing}\n", + "[INFO] [1712609758.405062]: Subclasses: []\n", + "[INFO] [1712609758.405363]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.describes]\n", + "[INFO] [1712609758.405887]: Instances: []\n", + "[INFO] [1712609758.406157]: Direct Instances: []\n", + "[INFO] [1712609758.406411]: Inverse Restrictions: []\n", + "[INFO] [1712609758.406660]: -------------------\n", + "[INFO] [1712609758.406910]: SOMA.Connectivity \n", + "[INFO] [1712609758.407164]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712609758.407444]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Connectivity, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.407706]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712609758.408004]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.408535]: Instances: []\n", + "[INFO] [1712609758.408817]: Direct Instances: []\n", + "[INFO] [1712609758.409118]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712609758.409367]: -------------------\n", + "[INFO] [1712609758.409622]: SOMA.ContactState \n", + "[INFO] [1712609758.409923]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712609758.410219]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.ContactState, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609758.410535]: Subclasses: []\n", + "[INFO] [1712609758.410841]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.411332]: Instances: []\n", + "[INFO] [1712609758.411612]: Direct Instances: []\n", + "[INFO] [1712609758.411874]: Inverse Restrictions: []\n", + "[INFO] [1712609758.412123]: -------------------\n", + "[INFO] [1712609758.412366]: SOMA.Container \n", + "[INFO] [1712609758.412601]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712609758.412940]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Container, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609758.413225]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", + "[INFO] [1712609758.413533]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.414048]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609758.414364]: Direct Instances: []\n", + "[INFO] [1712609758.415111]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712609758.415395]: -------------------\n", + "[INFO] [1712609758.415643]: SOMA.Containment \n", + "[INFO] [1712609758.415921]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712609758.416217]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.416492]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712609758.416807]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.417322]: Instances: []\n", + "[INFO] [1712609758.417606]: Direct Instances: []\n", + "[INFO] [1712609758.418017]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712609758.418288]: -------------------\n", + "[INFO] [1712609758.418531]: SOMA.IncludedObject \n", + "[INFO] [1712609758.418768]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.419030]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.419299]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712609758.419594]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.420098]: Instances: []\n", + "[INFO] [1712609758.420380]: Direct Instances: []\n", + "[INFO] [1712609758.420677]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712609758.420929]: -------------------\n", + "[INFO] [1712609758.421172]: SOMA.ContainmentState \n", + "[INFO] [1712609758.422190]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712609758.422539]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.ContainmentState, SOMA.FunctionalControl}\n", + "[INFO] [1712609758.422816]: Subclasses: []\n", + "[INFO] [1712609758.423128]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.423628]: Instances: []\n", + "[INFO] [1712609758.423924]: Direct Instances: []\n", + "[INFO] [1712609758.424225]: Inverse Restrictions: []\n", + "[INFO] [1712609758.424478]: -------------------\n", + "[INFO] [1712609758.424725]: SOMA.FunctionalControl \n", + "[INFO] [1712609758.424992]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712609758.425248]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.FunctionalControl}\n", + "[INFO] [1712609758.425532]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712609758.425839]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.426344]: Instances: []\n", + "[INFO] [1712609758.426618]: Direct Instances: []\n", + "[INFO] [1712609758.426909]: Inverse Restrictions: []\n", + "[INFO] [1712609758.427164]: -------------------\n", + "[INFO] [1712609758.427404]: SOMA.ContainmentTheory \n", + "[INFO] [1712609758.427641]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712609758.427924]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", + "[INFO] [1712609758.428187]: Subclasses: []\n", + "[INFO] [1712609758.428492]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.428981]: Instances: []\n", + "[INFO] [1712609758.429236]: Direct Instances: []\n", + "[INFO] [1712609758.429485]: Inverse Restrictions: []\n", + "[INFO] [1712609758.429735]: -------------------\n", + "[INFO] [1712609758.429975]: SOMA.ControlTheory \n", + "[INFO] [1712609758.430216]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712609758.430470]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", + "[INFO] [1712609758.430727]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712609758.431027]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.431543]: Instances: []\n", + "[INFO] [1712609758.431819]: Direct Instances: []\n", + "[INFO] [1712609758.432088]: Inverse Restrictions: []\n", + "[INFO] [1712609758.432334]: -------------------\n", + "[INFO] [1712609758.432575]: SOMA.ContinuousJoint \n", + "[INFO] [1712609758.432822]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712609758.433120]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.ContinuousJoint}\n", + "[INFO] [1712609758.433383]: Subclasses: []\n", + "[INFO] [1712609758.433678]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.434168]: Instances: []\n", + "[INFO] [1712609758.434450]: Direct Instances: []\n", + "[INFO] [1712609758.434707]: Inverse Restrictions: []\n", + "[INFO] [1712609758.434951]: -------------------\n", + "[INFO] [1712609758.435190]: SOMA.HingeJoint \n", + "[INFO] [1712609758.435425]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712609758.435683]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.435935]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712609758.436227]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.436720]: Instances: []\n", + "[INFO] [1712609758.436994]: Direct Instances: []\n", + "[INFO] [1712609758.437254]: Inverse Restrictions: []\n", + "[INFO] [1712609758.437495]: -------------------\n", + "[INFO] [1712609758.437731]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712609758.438004]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712609758.438284]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", + "[INFO] [1712609758.438706]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712609758.439030]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.439536]: Instances: []\n", + "[INFO] [1712609758.439820]: Direct Instances: []\n", + "[INFO] [1712609758.440088]: Inverse Restrictions: []\n", + "[INFO] [1712609758.440341]: -------------------\n", + "[INFO] [1712609758.440608]: SOMA.Cooktop \n", + "[INFO] [1712609758.440904]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.441302]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.441694]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", + "[INFO] [1712609758.442116]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.442773]: Instances: []\n", + "[INFO] [1712609758.443175]: Direct Instances: []\n", + "[INFO] [1712609758.443566]: Inverse Restrictions: []\n", + "[INFO] [1712609758.443935]: -------------------\n", + "[INFO] [1712609758.444296]: SOMA.Countertop \n", + "[INFO] [1712609758.444935]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.445275]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.Countertop, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.445549]: Subclasses: []\n", + "[INFO] [1712609758.445851]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.446363]: Instances: []\n", + "[INFO] [1712609758.446636]: Direct Instances: []\n", + "[INFO] [1712609758.446895]: Inverse Restrictions: []\n", + "[INFO] [1712609758.447150]: -------------------\n", + "[INFO] [1712609758.447402]: SOMA.Cover \n", + "[INFO] [1712609758.447648]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712609758.447929]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Cover, SOMA.Restrictor}\n", + "[INFO] [1712609758.448184]: Subclasses: []\n", + "[INFO] [1712609758.448489]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.449003]: Instances: []\n", + "[INFO] [1712609758.449281]: Direct Instances: []\n", + "[INFO] [1712609758.449597]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712609758.449853]: -------------------\n", + "[INFO] [1712609758.450120]: SOMA.Coverage \n", + "[INFO] [1712609758.450415]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712609758.450703]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, SOMA.Coverage, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.450960]: Subclasses: []\n", + "[INFO] [1712609758.451273]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.451800]: Instances: []\n", + "[INFO] [1712609758.452094]: Direct Instances: []\n", + "[INFO] [1712609758.452363]: Inverse Restrictions: []\n", + "[INFO] [1712609758.452614]: -------------------\n", + "[INFO] [1712609758.452863]: SOMA.CoveredObject \n", + "[INFO] [1712609758.453109]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712609758.453404]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CoveredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", + "[INFO] [1712609758.453673]: Subclasses: []\n", + "[INFO] [1712609758.453975]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.454482]: Instances: []\n", + "[INFO] [1712609758.454790]: Direct Instances: []\n", + "[INFO] [1712609758.455098]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712609758.455358]: -------------------\n", + "[INFO] [1712609758.455609]: SOMA.CoverageTheory \n", + "[INFO] [1712609758.455857]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712609758.456151]: Ancestors: {DUL.Entity, SOMA.CoverageTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", + "[INFO] [1712609758.456438]: Subclasses: []\n", + "[INFO] [1712609758.456756]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.457289]: Instances: []\n", + "[INFO] [1712609758.457615]: Direct Instances: []\n", + "[INFO] [1712609758.457892]: Inverse Restrictions: []\n", + "[INFO] [1712609758.458171]: -------------------\n", + "[INFO] [1712609758.458425]: SOMA.CoveringTheory \n", + "[INFO] [1712609758.458752]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712609758.459041]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.CoveringTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609758.459311]: Subclasses: []\n", + "[INFO] [1712609758.459625]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.460133]: Instances: []\n", + "[INFO] [1712609758.460414]: Direct Instances: []\n", + "[INFO] [1712609758.460666]: Inverse Restrictions: []\n", + "[INFO] [1712609758.460916]: -------------------\n", + "[INFO] [1712609758.461159]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712609758.461402]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712609758.461646]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609758.461897]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712609758.462206]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.462712]: Instances: []\n", + "[INFO] [1712609758.462993]: Direct Instances: []\n", + "[INFO] [1712609758.463261]: Inverse Restrictions: []\n", + "[INFO] [1712609758.463524]: -------------------\n", + "[INFO] [1712609758.463773]: SOMA.CrackingTheory \n", + "[INFO] [1712609758.464037]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712609758.464314]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.CrackingTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609758.464562]: Subclasses: []\n", + "[INFO] [1712609758.464863]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.465371]: Instances: []\n", + "[INFO] [1712609758.465642]: Direct Instances: []\n", + "[INFO] [1712609758.465895]: Inverse Restrictions: []\n", + "[INFO] [1712609758.466143]: -------------------\n", + "[INFO] [1712609758.466396]: SOMA.Creation \n", + "[INFO] [1712609758.466673]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712609758.466981]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Creation, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609758.467256]: Subclasses: []\n", + "[INFO] [1712609758.467578]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.468091]: Instances: []\n", + "[INFO] [1712609758.468380]: Direct Instances: []\n", + "[INFO] [1712609758.468643]: Inverse Restrictions: []\n", + "[INFO] [1712609758.468889]: -------------------\n", + "[INFO] [1712609758.469130]: SOMA.Tableware \n", + "[INFO] [1712609758.469368]: Super classes: [SOMA.DesignedTool]\n", + "[INFO] [1712609758.469629]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.469885]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", + "[INFO] [1712609758.470179]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.470716]: Instances: []\n", + "[INFO] [1712609758.471003]: Direct Instances: []\n", + "[INFO] [1712609758.471262]: Inverse Restrictions: []\n", + "[INFO] [1712609758.471504]: -------------------\n", + "[INFO] [1712609758.471745]: SOMA.Insertion \n", + "[INFO] [1712609758.472008]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712609758.472313]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Insertion, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.472579]: Subclasses: []\n", + "[INFO] [1712609758.472894]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.473407]: Instances: []\n", + "[INFO] [1712609758.473681]: Direct Instances: []\n", + "[INFO] [1712609758.474317]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712609758.474603]: -------------------\n", + "[INFO] [1712609758.474869]: SOMA.Cup \n", + "[INFO] [1712609758.475140]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712609758.475424]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.Cup}\n", + "[INFO] [1712609758.475688]: Subclasses: []\n", + "[INFO] [1712609758.475982]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.476476]: Instances: []\n", + "[INFO] [1712609758.476749]: Direct Instances: []\n", + "[INFO] [1712609758.477006]: Inverse Restrictions: []\n", + "[INFO] [1712609758.477259]: -------------------\n", + "[INFO] [1712609758.477506]: SOMA.DesignedHandle \n", + "[INFO] [1712609758.477776]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", + "[INFO] [1712609758.478077]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedHandle, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.478448]: Subclasses: []\n", + "[INFO] [1712609758.478812]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712609758.479336]: Instances: []\n", + "[INFO] [1712609758.479631]: Direct Instances: []\n", + "[INFO] [1712609758.480010]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", + "[INFO] [1712609758.480274]: -------------------\n", + "[INFO] [1712609758.480538]: SOMA.Cupboard \n", + "[INFO] [1712609758.480815]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", + "[INFO] [1712609758.481226]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Cupboard, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.481611]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", + "[INFO] [1712609758.482037]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.482670]: Instances: []\n", + "[INFO] [1712609758.483050]: Direct Instances: []\n", + "[INFO] [1712609758.483428]: Inverse Restrictions: []\n", + "[INFO] [1712609758.483787]: -------------------\n", + "[INFO] [1712609758.484065]: SOMA.DesignedFurniture \n", + "[INFO] [1712609758.484417]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712609758.484709]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.484981]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712609758.485289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.485804]: Instances: []\n", + "[INFO] [1712609758.486069]: Direct Instances: []\n", + "[INFO] [1712609758.486341]: Inverse Restrictions: []\n", + "[INFO] [1712609758.486608]: -------------------\n", + "[INFO] [1712609758.486860]: SOMA.Rack \n", + "[INFO] [1712609758.487118]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.487431]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Rack, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.487720]: Subclasses: []\n", + "[INFO] [1712609758.488065]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.488603]: Instances: []\n", + "[INFO] [1712609758.488897]: Direct Instances: []\n", + "[INFO] [1712609758.489187]: Inverse Restrictions: [SOMA.Cupboard]\n", + "[INFO] [1712609758.489431]: -------------------\n", + "[INFO] [1712609758.489675]: SOMA.Cutlery \n", + "[INFO] [1712609758.489922]: Super classes: [SOMA.Tableware]\n", + "[INFO] [1712609758.490204]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.490467]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", + "[INFO] [1712609758.490757]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.491328]: Instances: []\n", + "[INFO] [1712609758.491627]: Direct Instances: []\n", + "[INFO] [1712609758.491893]: Inverse Restrictions: []\n", + "[INFO] [1712609758.492139]: -------------------\n", + "[INFO] [1712609758.492381]: SOMA.Cuttability \n", + "[INFO] [1712609758.492633]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712609758.492918]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.493178]: Subclasses: []\n", + "[INFO] [1712609758.493491]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.493985]: Instances: []\n", + "[INFO] [1712609758.494254]: Direct Instances: []\n", + "[INFO] [1712609758.494515]: Inverse Restrictions: []\n", + "[INFO] [1712609758.494755]: -------------------\n", + "[INFO] [1712609758.494994]: SOMA.Tool \n", + "[INFO] [1712609758.495224]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712609758.495469]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Tool}\n", + "[INFO] [1712609758.495732]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712609758.496029]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.496531]: Instances: []\n", + "[INFO] [1712609758.496794]: Direct Instances: []\n", + "[INFO] [1712609758.497099]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712609758.497349]: -------------------\n", + "[INFO] [1712609758.497590]: SOMA.Cutting \n", + "[INFO] [1712609758.497825]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712609758.498097]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609758.498370]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712609758.498673]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.499179]: Instances: []\n", + "[INFO] [1712609758.499471]: Direct Instances: []\n", + "[INFO] [1712609758.499743]: Inverse Restrictions: []\n", + "[INFO] [1712609758.499996]: -------------------\n", + "[INFO] [1712609758.500261]: SOMA.CuttingTool \n", + "[INFO] [1712609758.500534]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", + "[INFO] [1712609758.500800]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", + "[INFO] [1712609758.501059]: Subclasses: [SOMA.Knife]\n", + "[INFO] [1712609758.501368]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712609758.501877]: Instances: []\n", + "[INFO] [1712609758.502147]: Direct Instances: []\n", + "[INFO] [1712609758.502403]: Inverse Restrictions: []\n", + "[INFO] [1712609758.502659]: -------------------\n", + "[INFO] [1712609758.502908]: SOMA.DesignedTool \n", + "[INFO] [1712609758.503149]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712609758.503399]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", + "[INFO] [1712609758.503657]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712609758.503959]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.504500]: Instances: []\n", + "[INFO] [1712609758.504790]: Direct Instances: []\n", + "[INFO] [1712609758.505064]: Inverse Restrictions: []\n", + "[INFO] [1712609758.505316]: -------------------\n", + "[INFO] [1712609758.505563]: SOMA.Shaping \n", + "[INFO] [1712609758.505854]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712609758.506166]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Shaping, SOMA.Disposition}\n", + "[INFO] [1712609758.506444]: Subclasses: []\n", + "[INFO] [1712609758.506780]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.507292]: Instances: []\n", + "[INFO] [1712609758.507575]: Direct Instances: []\n", + "[INFO] [1712609758.507866]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712609758.508112]: -------------------\n", + "[INFO] [1712609758.508352]: SOMA.Database \n", + "[INFO] [1712609758.508583]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609758.508847]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.509117]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712609758.509415]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.509911]: Instances: []\n", + "[INFO] [1712609758.510191]: Direct Instances: []\n", + "[INFO] [1712609758.510462]: Inverse Restrictions: []\n", + "[INFO] [1712609758.510712]: -------------------\n", + "[INFO] [1712609758.510955]: SOMA.SoftwareRole \n", + "[INFO] [1712609758.511217]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712609758.511486]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.511752]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712609758.512053]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.512574]: Instances: []\n", + "[INFO] [1712609758.512860]: Direct Instances: []\n", + "[INFO] [1712609758.513167]: Inverse Restrictions: []\n", + "[INFO] [1712609758.513422]: -------------------\n", + "[INFO] [1712609758.513671]: SOMA.Deciding \n", + "[INFO] [1712609758.513912]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609758.514188]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Deciding, owl.Thing}\n", + "[INFO] [1712609758.514456]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712609758.514759]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.515260]: Instances: []\n", + "[INFO] [1712609758.515538]: Direct Instances: []\n", + "[INFO] [1712609758.515798]: Inverse Restrictions: []\n", + "[INFO] [1712609758.516036]: -------------------\n", + "[INFO] [1712609758.516273]: SOMA.DerivingInformation \n", + "[INFO] [1712609758.516519]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712609758.516766]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, owl.Thing}\n", + "[INFO] [1712609758.517035]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712609758.517338]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, SOMA.isTaskOfInputRole, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.517859]: Instances: []\n", + "[INFO] [1712609758.518140]: Direct Instances: []\n", + "[INFO] [1712609758.518407]: Inverse Restrictions: []\n", + "[INFO] [1712609758.518653]: -------------------\n", + "[INFO] [1712609758.518893]: SOMA.DeductiveReasoning \n", + "[INFO] [1712609758.519133]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712609758.519409]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.DeductiveReasoning, SOMA.Reasoning}\n", + "[INFO] [1712609758.519665]: Subclasses: []\n", + "[INFO] [1712609758.519959]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.520620]: Instances: []\n", + "[INFO] [1712609758.520962]: Direct Instances: []\n", + "[INFO] [1712609758.521224]: Inverse Restrictions: []\n", + "[INFO] [1712609758.521602]: -------------------\n", + "[INFO] [1712609758.521887]: SOMA.Deformation \n", + "[INFO] [1712609758.522178]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712609758.522483]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Deformation, SOMA.ProcessType}\n", + "[INFO] [1712609758.522746]: Subclasses: []\n", + "[INFO] [1712609758.523062]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.523562]: Instances: []\n", + "[INFO] [1712609758.523843]: Direct Instances: []\n", + "[INFO] [1712609758.524101]: Inverse Restrictions: []\n", + "[INFO] [1712609758.524348]: -------------------\n", + "[INFO] [1712609758.524591]: SOMA.ShapedObject \n", + "[INFO] [1712609758.524877]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712609758.525184]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ShapedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.525459]: Subclasses: []\n", + "[INFO] [1712609758.525776]: Properties: [rdf-schema.comment, SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.526326]: Instances: []\n", + "[INFO] [1712609758.526673]: Direct Instances: []\n", + "[INFO] [1712609758.527039]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712609758.527310]: -------------------\n", + "[INFO] [1712609758.527563]: SOMA.FluidFlow \n", + "[INFO] [1712609758.527844]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712609758.528133]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.FluidFlow, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.528415]: Subclasses: []\n", + "[INFO] [1712609758.528751]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.529268]: Instances: []\n", + "[INFO] [1712609758.529575]: Direct Instances: []\n", + "[INFO] [1712609758.529847]: Inverse Restrictions: []\n", + "[INFO] [1712609758.530105]: -------------------\n", + "[INFO] [1712609758.530373]: SOMA.Shifting \n", + "[INFO] [1712609758.530658]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712609758.530941]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition, SOMA.Shifting}\n", + "[INFO] [1712609758.531197]: Subclasses: []\n", + "[INFO] [1712609758.531500]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.532016]: Instances: []\n", + "[INFO] [1712609758.532289]: Direct Instances: []\n", + "[INFO] [1712609758.532623]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712609758.532875]: -------------------\n", + "[INFO] [1712609758.533124]: SOMA.DependentPlace \n", + "[INFO] [1712609758.533378]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712609758.533651]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing, SOMA.DependentPlace}\n", + "[INFO] [1712609758.533906]: Subclasses: []\n", + "[INFO] [1712609758.534203]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.534724]: Instances: []\n", + "[INFO] [1712609758.534999]: Direct Instances: []\n", + "[INFO] [1712609758.535262]: Inverse Restrictions: []\n", + "[INFO] [1712609758.535505]: -------------------\n", + "[INFO] [1712609758.535836]: SOMA.Deposit \n", + "[INFO] [1712609758.536098]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712609758.536389]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, SOMA.Deposit, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.536648]: Subclasses: []\n", + "[INFO] [1712609758.536941]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.537440]: Instances: []\n", + "[INFO] [1712609758.537704]: Direct Instances: []\n", + "[INFO] [1712609758.537998]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712609758.538249]: -------------------\n", + "[INFO] [1712609758.538492]: SOMA.DepositedObject \n", + "[INFO] [1712609758.538731]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.539011]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.DepositedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.539263]: Subclasses: []\n", + "[INFO] [1712609758.539568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.540066]: Instances: []\n", + "[INFO] [1712609758.540361]: Direct Instances: []\n", + "[INFO] [1712609758.540688]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712609758.540963]: -------------------\n", + "[INFO] [1712609758.541219]: SOMA.InformationAcquisition \n", + "[INFO] [1712609758.541490]: Super classes: [owl.Thing]\n", + "[INFO] [1712609758.541754]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712609758.542030]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712609758.542365]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.542925]: Instances: []\n", + "[INFO] [1712609758.543226]: Direct Instances: []\n", + "[INFO] [1712609758.543541]: Inverse Restrictions: []\n", + "[INFO] [1712609758.543797]: -------------------\n", + "[INFO] [1712609758.544041]: SOMA.Premise \n", + "[INFO] [1712609758.544285]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712609758.544569]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, SOMA.Premise, DUL.Role}\n", + "[INFO] [1712609758.544848]: Subclasses: []\n", + "[INFO] [1712609758.545151]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.545651]: Instances: []\n", + "[INFO] [1712609758.545925]: Direct Instances: []\n", + "[INFO] [1712609758.546246]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609758.546499]: -------------------\n", + "[INFO] [1712609758.546738]: SOMA.FunctionalPart \n", + "[INFO] [1712609758.547393]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712609758.547687]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.547977]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712609758.548289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.548840]: Instances: []\n", + "[INFO] [1712609758.549122]: Direct Instances: []\n", + "[INFO] [1712609758.549391]: Inverse Restrictions: []\n", + "[INFO] [1712609758.549636]: -------------------\n", + "[INFO] [1712609758.549877]: SOMA.Graspability \n", + "[INFO] [1712609758.550119]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712609758.550422]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Graspability, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.550696]: Subclasses: []\n", + "[INFO] [1712609758.550988]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.551479]: Instances: []\n", + "[INFO] [1712609758.551761]: Direct Instances: []\n", + "[INFO] [1712609758.552042]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712609758.552291]: -------------------\n", + "[INFO] [1712609758.552531]: SOMA.DesignedSpade \n", + "[INFO] [1712609758.552770]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.553048]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.DesignedSpade, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.553316]: Subclasses: []\n", + "[INFO] [1712609758.553614]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.554120]: Instances: []\n", + "[INFO] [1712609758.554401]: Direct Instances: []\n", + "[INFO] [1712609758.554687]: Inverse Restrictions: [SOMA.Spatula]\n", + "[INFO] [1712609758.554932]: -------------------\n", + "[INFO] [1712609758.555173]: SOMA.DessertFork \n", + "[INFO] [1712609758.555422]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712609758.555708]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, SOMA.DessertFork, DUL.PhysicalObject, owl.Thing, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.555964]: Subclasses: []\n", + "[INFO] [1712609758.556272]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.556813]: Instances: []\n", + "[INFO] [1712609758.557092]: Direct Instances: []\n", + "[INFO] [1712609758.557368]: Inverse Restrictions: []\n", + "[INFO] [1712609758.557612]: -------------------\n", + "[INFO] [1712609758.557859]: SOMA.Fork \n", + "[INFO] [1712609758.558109]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712609758.558382]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.558646]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", + "[INFO] [1712609758.558943]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.559432]: Instances: []\n", + "[INFO] [1712609758.559703]: Direct Instances: []\n", + "[INFO] [1712609758.559958]: Inverse Restrictions: []\n", + "[INFO] [1712609758.560199]: -------------------\n", + "[INFO] [1712609758.560434]: SOMA.Destination \n", + "[INFO] [1712609758.560666]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712609758.560916]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Destination, SOMA.Location}\n", + "[INFO] [1712609758.561177]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712609758.561470]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.561971]: Instances: []\n", + "[INFO] [1712609758.562238]: Direct Instances: []\n", + "[INFO] [1712609758.562569]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712609758.562811]: -------------------\n", + "[INFO] [1712609758.563047]: SOMA.Location \n", + "[INFO] [1712609758.563291]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712609758.563543]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Location}\n", + "[INFO] [1712609758.563788]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712609758.564075]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.564585]: Instances: []\n", + "[INFO] [1712609758.564851]: Direct Instances: []\n", + "[INFO] [1712609758.565104]: Inverse Restrictions: []\n", + "[INFO] [1712609758.565342]: -------------------\n", + "[INFO] [1712609758.565577]: SOMA.DestroyedObject \n", + "[INFO] [1712609758.565814]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.566116]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.DestroyedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.566377]: Subclasses: []\n", + "[INFO] [1712609758.566673]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.567160]: Instances: []\n", + "[INFO] [1712609758.567436]: Direct Instances: []\n", + "[INFO] [1712609758.567748]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712609758.567997]: -------------------\n", + "[INFO] [1712609758.568241]: SOMA.Destruction \n", + "[INFO] [1712609758.568499]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712609758.568775]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Destruction, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609758.569026]: Subclasses: []\n", + "[INFO] [1712609758.569321]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.569808]: Instances: []\n", + "[INFO] [1712609758.570080]: Direct Instances: []\n", + "[INFO] [1712609758.570504]: Inverse Restrictions: []\n", + "[INFO] [1712609758.570820]: -------------------\n", + "[INFO] [1712609758.571100]: SOMA.DetectedObject \n", + "[INFO] [1712609758.571364]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.571667]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.DetectedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.571940]: Subclasses: []\n", + "[INFO] [1712609758.572264]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.572782]: Instances: []\n", + "[INFO] [1712609758.573048]: Direct Instances: []\n", + "[INFO] [1712609758.573297]: Inverse Restrictions: []\n", + "[INFO] [1712609758.573530]: -------------------\n", + "[INFO] [1712609758.573780]: SOMA.DeviceState \n", + "[INFO] [1712609758.574047]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609758.574335]: Ancestors: {DUL.Entity, SOMA.Intrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.DeviceState}\n", + "[INFO] [1712609758.574598]: Subclasses: []\n", + "[INFO] [1712609758.574893]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.575407]: Instances: []\n", + "[INFO] [1712609758.575686]: Direct Instances: []\n", + "[INFO] [1712609758.575943]: Inverse Restrictions: []\n", + "[INFO] [1712609758.576190]: -------------------\n", + "[INFO] [1712609758.576433]: SOMA.DeviceStateRange \n", + "[INFO] [1712609758.576681]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609758.577551]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceStateRange}\n", + "[INFO] [1712609758.577829]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712609758.578139]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.578654]: Instances: []\n", + "[INFO] [1712609758.578926]: Direct Instances: []\n", + "[INFO] [1712609758.579188]: Inverse Restrictions: []\n", + "[INFO] [1712609758.579431]: -------------------\n", + "[INFO] [1712609758.579670]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712609758.579917]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712609758.580183]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceTurnedOff, owl.Thing, SOMA.DeviceStateRange}\n", + "[INFO] [1712609758.580427]: Subclasses: []\n", + "[INFO] [1712609758.580708]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.581202]: Instances: []\n", + "[INFO] [1712609758.581466]: Direct Instances: []\n", + "[INFO] [1712609758.581747]: Inverse Restrictions: []\n", + "[INFO] [1712609758.581988]: -------------------\n", + "[INFO] [1712609758.582245]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712609758.582508]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712609758.582862]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceTurnedOn, owl.Thing, SOMA.DeviceStateRange}\n", + "[INFO] [1712609758.583192]: Subclasses: []\n", + "[INFO] [1712609758.583529]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.584050]: Instances: []\n", + "[INFO] [1712609758.584333]: Direct Instances: []\n", + "[INFO] [1712609758.584626]: Inverse Restrictions: []\n", + "[INFO] [1712609758.584888]: -------------------\n", + "[INFO] [1712609758.585137]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712609758.585374]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712609758.585621]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.585871]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712609758.586172]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.586672]: Instances: []\n", + "[INFO] [1712609758.586948]: Direct Instances: []\n", + "[INFO] [1712609758.587207]: Inverse Restrictions: []\n", + "[INFO] [1712609758.587451]: -------------------\n", + "[INFO] [1712609758.587689]: SOMA.Dicing \n", + "[INFO] [1712609758.587921]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712609758.588216]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Dicing, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609758.588477]: Subclasses: []\n", + "[INFO] [1712609758.588766]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.589253]: Instances: []\n", + "[INFO] [1712609758.589549]: Direct Instances: []\n", + "[INFO] [1712609758.589822]: Inverse Restrictions: []\n", + "[INFO] [1712609758.590078]: -------------------\n", + "[INFO] [1712609758.590328]: SOMA.DinnerPlate \n", + "[INFO] [1712609758.590570]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712609758.590861]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DinnerPlate, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609758.591132]: Subclasses: []\n", + "[INFO] [1712609758.591427]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.591918]: Instances: []\n", + "[INFO] [1712609758.592224]: Direct Instances: []\n", + "[INFO] [1712609758.592489]: Inverse Restrictions: []\n", + "[INFO] [1712609758.592730]: -------------------\n", + "[INFO] [1712609758.592968]: SOMA.DirectedMotion \n", + "[INFO] [1712609758.593200]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712609758.593444]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.593714]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712609758.594018]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.594542]: Instances: []\n", + "[INFO] [1712609758.594822]: Direct Instances: []\n", + "[INFO] [1712609758.595082]: Inverse Restrictions: []\n", + "[INFO] [1712609758.595322]: -------------------\n", + "[INFO] [1712609758.595558]: SOMA.UndirectedMotion \n", + "[INFO] [1712609758.595794]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712609758.596056]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.UndirectedMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.596321]: Subclasses: []\n", + "[INFO] [1712609758.596618]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.597110]: Instances: []\n", + "[INFO] [1712609758.597370]: Direct Instances: []\n", + "[INFO] [1712609758.597622]: Inverse Restrictions: []\n", + "[INFO] [1712609758.597869]: -------------------\n", + "[INFO] [1712609758.598107]: SOMA.Dirty \n", + "[INFO] [1712609758.598554]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712609758.598988]: Ancestors: {SOMA.Dirty, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", + "[INFO] [1712609758.599383]: Subclasses: []\n", + "[INFO] [1712609758.599721]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.600238]: Instances: []\n", + "[INFO] [1712609758.600526]: Direct Instances: []\n", + "[INFO] [1712609758.600791]: Inverse Restrictions: []\n", + "[INFO] [1712609758.601039]: -------------------\n", + "[INFO] [1712609758.601279]: SOMA.Discourse \n", + "[INFO] [1712609758.601515]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609758.601790]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Discourse}\n", + "[INFO] [1712609758.602043]: Subclasses: []\n", + "[INFO] [1712609758.602408]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.602956]: Instances: []\n", + "[INFO] [1712609758.603349]: Direct Instances: []\n", + "[INFO] [1712609758.603725]: Inverse Restrictions: []\n", + "[INFO] [1712609758.604083]: -------------------\n", + "[INFO] [1712609758.604448]: SOMA.Dishwasher \n", + "[INFO] [1712609758.604825]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", + "[INFO] [1712609758.605223]: Ancestors: {SOMA.Appliance, DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Dishwasher, owl.Thing}\n", + "[INFO] [1712609758.605608]: Subclasses: []\n", + "[INFO] [1712609758.605934]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.606442]: Instances: []\n", + "[INFO] [1712609758.606731]: Direct Instances: []\n", + "[INFO] [1712609758.606992]: Inverse Restrictions: []\n", + "[INFO] [1712609758.607765]: -------------------\n", + "[INFO] [1712609758.608083]: SOMA.DishwasherTab \n", + "[INFO] [1712609758.608371]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712609758.608697]: Ancestors: {DUL.Entity, DUL.Substance, DUL.DesignedArtifact, SOMA.DishwasherTab, DUL.PhysicalBody, DUL.PhysicalArtifact, DUL.DesignedSubstance, DUL.Object, DUL.FunctionalSubstance, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.608968]: Subclasses: []\n", + "[INFO] [1712609758.609279]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.609776]: Instances: []\n", + "[INFO] [1712609758.610057]: Direct Instances: []\n", + "[INFO] [1712609758.610322]: Inverse Restrictions: []\n", + "[INFO] [1712609758.610568]: -------------------\n", + "[INFO] [1712609758.610806]: SOMA.Dispenser \n", + "[INFO] [1712609758.611039]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712609758.611305]: Ancestors: {DUL.Entity, SOMA.Dispenser, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.611574]: Subclasses: [SOMA.SugarDispenser]\n", + "[INFO] [1712609758.611899]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.612399]: Instances: []\n", + "[INFO] [1712609758.612662]: Direct Instances: []\n", + "[INFO] [1712609758.612910]: Inverse Restrictions: []\n", + "[INFO] [1712609758.613158]: -------------------\n", + "[INFO] [1712609758.613400]: SOMA.Distancing \n", + "[INFO] [1712609758.613639]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712609758.613904]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing, SOMA.Distancing}\n", + "[INFO] [1712609758.614147]: Subclasses: []\n", + "[INFO] [1712609758.614467]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.614968]: Instances: []\n", + "[INFO] [1712609758.615239]: Direct Instances: []\n", + "[INFO] [1712609758.615496]: Inverse Restrictions: []\n", + "[INFO] [1712609758.615746]: -------------------\n", + "[INFO] [1712609758.615998]: SOMA.Door \n", + "[INFO] [1712609758.616241]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.616508]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Door, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.616753]: Subclasses: []\n", + "[INFO] [1712609758.617049]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.617537]: Instances: []\n", + "[INFO] [1712609758.617795]: Direct Instances: []\n", + "[INFO] [1712609758.618074]: Inverse Restrictions: [SOMA.Refrigerator]\n", + "[INFO] [1712609758.618335]: -------------------\n", + "[INFO] [1712609758.618578]: SOMA.Drawer \n", + "[INFO] [1712609758.618816]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", + "[INFO] [1712609758.619088]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Drawer, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.619335]: Subclasses: []\n", + "[INFO] [1712609758.619632]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.620118]: Instances: []\n", + "[INFO] [1712609758.620374]: Direct Instances: []\n", + "[INFO] [1712609758.620628]: Inverse Restrictions: []\n", + "[INFO] [1712609758.620870]: -------------------\n", + "[INFO] [1712609758.621107]: SOMA.Dreaming \n", + "[INFO] [1712609758.621338]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609758.621589]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Dreaming, owl.Thing}\n", + "[INFO] [1712609758.621846]: Subclasses: []\n", + "[INFO] [1712609758.622143]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.622642]: Instances: []\n", + "[INFO] [1712609758.622913]: Direct Instances: []\n", + "[INFO] [1712609758.623169]: Inverse Restrictions: []\n", + "[INFO] [1712609758.623421]: -------------------\n", + "[INFO] [1712609758.623680]: SOMA.Driving \n", + "[INFO] [1712609758.623930]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609758.624203]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Driving, SOMA.Locomotion, DUL.EventType, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.624455]: Subclasses: []\n", + "[INFO] [1712609758.624761]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.625244]: Instances: []\n", + "[INFO] [1712609758.625501]: Direct Instances: []\n", + "[INFO] [1712609758.625748]: Inverse Restrictions: []\n", + "[INFO] [1712609758.625978]: -------------------\n", + "[INFO] [1712609758.626296]: SOMA.Flying \n", + "[INFO] [1712609758.626601]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609758.626910]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Flying, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.627188]: Subclasses: []\n", + "[INFO] [1712609758.627509]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.628016]: Instances: []\n", + "[INFO] [1712609758.628283]: Direct Instances: []\n", + "[INFO] [1712609758.628545]: Inverse Restrictions: []\n", + "[INFO] [1712609758.628782]: -------------------\n", + "[INFO] [1712609758.629016]: SOMA.Swimming \n", + "[INFO] [1712609758.629262]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609758.629536]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType, SOMA.Swimming}\n", + "[INFO] [1712609758.629782]: Subclasses: []\n", + "[INFO] [1712609758.630080]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.630600]: Instances: []\n", + "[INFO] [1712609758.630976]: Direct Instances: []\n", + "[INFO] [1712609758.631271]: Inverse Restrictions: []\n", + "[INFO] [1712609758.631537]: -------------------\n", + "[INFO] [1712609758.631924]: SOMA.Walking \n", + "[INFO] [1712609758.632231]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609758.632538]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Walking, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.632810]: Subclasses: []\n", + "[INFO] [1712609758.633119]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.633626]: Instances: []\n", + "[INFO] [1712609758.633910]: Direct Instances: []\n", + "[INFO] [1712609758.634182]: Inverse Restrictions: []\n", + "[INFO] [1712609758.634429]: -------------------\n", + "[INFO] [1712609758.634672]: SOMA.Dropping \n", + "[INFO] [1712609758.634909]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.635191]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Dropping, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609758.635452]: Subclasses: []\n", + "[INFO] [1712609758.635751]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.636242]: Instances: []\n", + "[INFO] [1712609758.636501]: Direct Instances: []\n", + "[INFO] [1712609758.636769]: Inverse Restrictions: []\n", + "[INFO] [1712609758.637012]: -------------------\n", + "[INFO] [1712609758.637246]: SOMA.Placing \n", + "[INFO] [1712609758.637477]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609758.637739]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Placing, owl.Thing}\n", + "[INFO] [1712609758.638004]: Subclasses: []\n", + "[INFO] [1712609758.638305]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.638807]: Instances: [SOMA.placing]\n", + "[INFO] [1712609758.639072]: Direct Instances: [SOMA.placing]\n", + "[INFO] [1712609758.639326]: Inverse Restrictions: []\n", + "[INFO] [1712609758.639579]: -------------------\n", + "[INFO] [1712609758.639835]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712609758.640145]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712609758.640459]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.ESTSchemaTheory, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609758.640708]: Subclasses: []\n", + "[INFO] [1712609758.641013]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.641515]: Instances: []\n", + "[INFO] [1712609758.641793]: Direct Instances: []\n", + "[INFO] [1712609758.642050]: Inverse Restrictions: []\n", + "[INFO] [1712609758.642311]: -------------------\n", + "[INFO] [1712609758.642551]: SOMA.ExistingObjectRole \n", + "[INFO] [1712609758.642790]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609758.643070]: Ancestors: {SOMA.ExistingObjectRole, DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.643307]: Subclasses: []\n", + "[INFO] [1712609758.643603]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.644097]: Instances: []\n", + "[INFO] [1712609758.644366]: Direct Instances: []\n", + "[INFO] [1712609758.644663]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712609758.644897]: -------------------\n", + "[INFO] [1712609758.645132]: SOMA.Effort \n", + "[INFO] [1712609758.645370]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712609758.645642]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Parameter, owl.Thing, SOMA.Effort}\n", + "[INFO] [1712609758.646078]: Subclasses: []\n", + "[INFO] [1712609758.646495]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.647053]: Instances: []\n", + "[INFO] [1712609758.647378]: Direct Instances: []\n", + "[INFO] [1712609758.647658]: Inverse Restrictions: []\n", + "[INFO] [1712609758.647910]: -------------------\n", + "[INFO] [1712609758.648162]: SOMA.EnclosedObject \n", + "[INFO] [1712609758.648405]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712609758.648695]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.648983]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712609758.649291]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.649794]: Instances: []\n", + "[INFO] [1712609758.650083]: Direct Instances: []\n", + "[INFO] [1712609758.650409]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712609758.650657]: -------------------\n", + "[INFO] [1712609758.650892]: SOMA.Enclosing \n", + "[INFO] [1712609758.651135]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712609758.651387]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.651656]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712609758.651957]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.652444]: Instances: []\n", + "[INFO] [1712609758.652724]: Direct Instances: []\n", + "[INFO] [1712609758.652985]: Inverse Restrictions: []\n", + "[INFO] [1712609758.653220]: -------------------\n", + "[INFO] [1712609758.653451]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712609758.653684]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609758.653974]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712609758.654249]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712609758.654552]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.655045]: Instances: []\n", + "[INFO] [1712609758.655328]: Direct Instances: []\n", + "[INFO] [1712609758.655592]: Inverse Restrictions: []\n", + "[INFO] [1712609758.655828]: -------------------\n", + "[INFO] [1712609758.656062]: SOMA.Manipulating \n", + "[INFO] [1712609758.656323]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712609758.656567]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609758.656843]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712609758.657144]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.657655]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712609758.657936]: Direct Instances: []\n", + "[INFO] [1712609758.658209]: Inverse Restrictions: []\n", + "[INFO] [1712609758.658445]: -------------------\n", + "[INFO] [1712609758.658754]: SOMA.Episode \n", + "[INFO] [1712609758.659032]: Super classes: [DUL.Situation]\n", + "[INFO] [1712609758.659327]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing}\n", + "[INFO] [1712609758.659610]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712609758.659925]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.660434]: Instances: []\n", + "[INFO] [1712609758.660714]: Direct Instances: []\n", + "[INFO] [1712609758.660972]: Inverse Restrictions: []\n", + "[INFO] [1712609758.661207]: -------------------\n", + "[INFO] [1712609758.661443]: SOMA.ExcludedObject \n", + "[INFO] [1712609758.661673]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.661958]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExcludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.662231]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712609758.662530]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.663023]: Instances: []\n", + "[INFO] [1712609758.663307]: Direct Instances: []\n", + "[INFO] [1712609758.663630]: Inverse Restrictions: []\n", + "[INFO] [1712609758.663956]: -------------------\n", + "[INFO] [1712609758.664192]: SOMA.ExecutableFile \n", + "[INFO] [1712609758.664427]: Super classes: [owl.Thing]\n", + "[INFO] [1712609758.665651]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", + "[INFO] [1712609758.665939]: Subclasses: []\n", + "[INFO] [1712609758.666258]: Properties: [rdf-schema.comment, DUL.realizes, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.666757]: Instances: []\n", + "[INFO] [1712609758.667024]: Direct Instances: []\n", + "[INFO] [1712609758.668077]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712609758.668351]: -------------------\n", + "[INFO] [1712609758.668601]: SOMA.Executable_Code \n", + "[INFO] [1712609758.668844]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712609758.670061]: Ancestors: {SOMA.Computer_Program, owl.Thing, SOMA.Executable_Code}\n", + "[INFO] [1712609758.670357]: Subclasses: []\n", + "[INFO] [1712609758.670687]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.671227]: Instances: []\n", + "[INFO] [1712609758.671513]: Direct Instances: []\n", + "[INFO] [1712609758.671880]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712609758.672148]: -------------------\n", + "[INFO] [1712609758.672392]: SOMA.ExecutableFormat \n", + "[INFO] [1712609758.672633]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712609758.672917]: Ancestors: {DUL.Entity, SOMA.ExecutableFormat, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.673186]: Subclasses: []\n", + "[INFO] [1712609758.673491]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.673985]: Instances: []\n", + "[INFO] [1712609758.674263]: Direct Instances: []\n", + "[INFO] [1712609758.674682]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712609758.674949]: -------------------\n", + "[INFO] [1712609758.675194]: SOMA.SchematicTheory \n", + "[INFO] [1712609758.675428]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712609758.675686]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609758.675946]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712609758.676254]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.676772]: Instances: []\n", + "[INFO] [1712609758.677040]: Direct Instances: []\n", + "[INFO] [1712609758.677306]: Inverse Restrictions: []\n", + "[INFO] [1712609758.677542]: -------------------\n", + "[INFO] [1712609758.677773]: SOMA.ExecutableSoftware \n", + "[INFO] [1712609758.678004]: Super classes: [owl.Thing]\n", + "[INFO] [1712609758.678493]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", + "[INFO] [1712609758.678782]: Subclasses: []\n", + "[INFO] [1712609758.679093]: Properties: [rdf-schema.comment, DUL.hasMember, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.679588]: Instances: []\n", + "[INFO] [1712609758.679851]: Direct Instances: []\n", + "[INFO] [1712609758.680099]: Inverse Restrictions: []\n", + "[INFO] [1712609758.680342]: -------------------\n", + "[INFO] [1712609758.680578]: SOMA.Software \n", + "[INFO] [1712609758.680847]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712609758.681123]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.Software}\n", + "[INFO] [1712609758.681373]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712609758.681681]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.describes]\n", + "[INFO] [1712609758.682178]: Instances: []\n", + "[INFO] [1712609758.682450]: Direct Instances: []\n", + "[INFO] [1712609758.682842]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609758.683107]: -------------------\n", + "[INFO] [1712609758.683350]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712609758.683589]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712609758.683830]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.684093]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712609758.684381]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.684888]: Instances: []\n", + "[INFO] [1712609758.685158]: Direct Instances: []\n", + "[INFO] [1712609758.685420]: Inverse Restrictions: []\n", + "[INFO] [1712609758.685653]: -------------------\n", + "[INFO] [1712609758.685884]: SOMA.ExperiencerRole \n", + "[INFO] [1712609758.686128]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712609758.686383]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExperiencerRole, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", + "[INFO] [1712609758.686640]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712609758.686928]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.687406]: Instances: []\n", + "[INFO] [1712609758.687678]: Direct Instances: []\n", + "[INFO] [1712609758.687935]: Inverse Restrictions: []\n", + "[INFO] [1712609758.688177]: -------------------\n", + "[INFO] [1712609758.688408]: SOMA.ExtractedObject \n", + "[INFO] [1712609758.688638]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.688920]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ExtractedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.689171]: Subclasses: []\n", + "[INFO] [1712609758.689461]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.689947]: Instances: []\n", + "[INFO] [1712609758.690316]: Direct Instances: []\n", + "[INFO] [1712609758.690590]: Inverse Restrictions: []\n", + "[INFO] [1712609758.690835]: -------------------\n", + "[INFO] [1712609758.691172]: SOMA.PhysicalQuality \n", + "[INFO] [1712609758.691445]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712609758.691718]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", + "[INFO] [1712609758.691994]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712609758.692307]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isQualityOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.692895]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712609758.693190]: Direct Instances: []\n", + "[INFO] [1712609758.693463]: Inverse Restrictions: []\n", + "[INFO] [1712609758.693709]: -------------------\n", + "[INFO] [1712609758.693947]: SOMA.FailedAttempt \n", + "[INFO] [1712609758.694189]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712609758.694509]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.FailedAttempt, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.694770]: Subclasses: []\n", + "[INFO] [1712609758.695072]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.695558]: Instances: []\n", + "[INFO] [1712609758.695840]: Direct Instances: []\n", + "[INFO] [1712609758.696093]: Inverse Restrictions: []\n", + "[INFO] [1712609758.696329]: -------------------\n", + "[INFO] [1712609758.696557]: SOMA.FaultySoftware \n", + "[INFO] [1712609758.696782]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712609758.697072]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, SOMA.FaultySoftware, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609758.697334]: Subclasses: []\n", + "[INFO] [1712609758.697639]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.698137]: Instances: []\n", + "[INFO] [1712609758.698476]: Direct Instances: []\n", + "[INFO] [1712609758.698761]: Inverse Restrictions: []\n", + "[INFO] [1712609758.699011]: -------------------\n", + "[INFO] [1712609758.699248]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712609758.699491]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712609758.699813]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609758.700101]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712609758.700421]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.700936]: Instances: []\n", + "[INFO] [1712609758.701217]: Direct Instances: []\n", + "[INFO] [1712609758.701486]: Inverse Restrictions: []\n", + "[INFO] [1712609758.701737]: -------------------\n", + "[INFO] [1712609758.701977]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712609758.702233]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712609758.702501]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PhysicalAcquiring, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609758.702769]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712609758.703089]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.703625]: Instances: []\n", + "[INFO] [1712609758.703931]: Direct Instances: []\n", + "[INFO] [1712609758.704204]: Inverse Restrictions: []\n", + "[INFO] [1712609758.704456]: -------------------\n", + "[INFO] [1712609758.704723]: SOMA.Finger \n", + "[INFO] [1712609758.705009]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712609758.705301]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, SOMA.Finger, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.705579]: Subclasses: []\n", + "[INFO] [1712609758.705909]: Properties: [rdf-schema.comment, DUL.isPartOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.706510]: Instances: []\n", + "[INFO] [1712609758.706816]: Direct Instances: []\n", + "[INFO] [1712609758.707071]: Inverse Restrictions: []\n", + "[INFO] [1712609758.707322]: -------------------\n", + "[INFO] [1712609758.707572]: SOMA.Hand \n", + "[INFO] [1712609758.707819]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712609758.708112]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.Hand, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.708356]: Subclasses: []\n", + "[INFO] [1712609758.708646]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.709152]: Instances: []\n", + "[INFO] [1712609758.709427]: Direct Instances: []\n", + "[INFO] [1712609758.709731]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712609758.709971]: -------------------\n", + "[INFO] [1712609758.710208]: SOMA.FixedJoint \n", + "[INFO] [1712609758.710484]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712609758.710788]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, SOMA.FixedJoint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.711046]: Subclasses: []\n", + "[INFO] [1712609758.711440]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.711982]: Instances: []\n", + "[INFO] [1712609758.712268]: Direct Instances: []\n", + "[INFO] [1712609758.712574]: Inverse Restrictions: []\n", + "[INFO] [1712609758.712822]: -------------------\n", + "[INFO] [1712609758.713061]: SOMA.MovableJoint \n", + "[INFO] [1712609758.713304]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712609758.713567]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.713842]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712609758.714146]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointState]\n", + "[INFO] [1712609758.714654]: Instances: []\n", + "[INFO] [1712609758.714940]: Direct Instances: []\n", + "[INFO] [1712609758.715255]: Inverse Restrictions: []\n", + "[INFO] [1712609758.715500]: -------------------\n", + "[INFO] [1712609758.715740]: SOMA.Flipping \n", + "[INFO] [1712609758.715981]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712609758.716277]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Flipping, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609758.716530]: Subclasses: []\n", + "[INFO] [1712609758.716851]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.717341]: Instances: []\n", + "[INFO] [1712609758.717623]: Direct Instances: []\n", + "[INFO] [1712609758.717880]: Inverse Restrictions: []\n", + "[INFO] [1712609758.718119]: -------------------\n", + "[INFO] [1712609758.718358]: SOMA.FloatingJoint \n", + "[INFO] [1712609758.718598]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712609758.718887]: Ancestors: {DUL.Entity, SOMA.FloatingJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.719148]: Subclasses: []\n", + "[INFO] [1712609758.719459]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.719977]: Instances: []\n", + "[INFO] [1712609758.720259]: Direct Instances: []\n", + "[INFO] [1712609758.720524]: Inverse Restrictions: []\n", + "[INFO] [1712609758.720761]: -------------------\n", + "[INFO] [1712609758.720994]: SOMA.Fluid \n", + "[INFO] [1712609758.721227]: Super classes: [DUL.Substance]\n", + "[INFO] [1712609758.721507]: Ancestors: {DUL.Entity, DUL.Substance, SOMA.Fluid, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609758.721950]: Subclasses: []\n", + "[INFO] [1712609758.722282]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.722779]: Instances: []\n", + "[INFO] [1712609758.723042]: Direct Instances: []\n", + "[INFO] [1712609758.723304]: Inverse Restrictions: []\n", + "[INFO] [1712609758.723548]: -------------------\n", + "[INFO] [1712609758.723784]: SOMA.MovedObject \n", + "[INFO] [1712609758.724063]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712609758.724371]: Ancestors: {SOMA.MovedObject, DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.724643]: Subclasses: []\n", + "[INFO] [1712609758.724958]: Properties: [rdf-schema.comment, SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.725446]: Instances: []\n", + "[INFO] [1712609758.725725]: Direct Instances: []\n", + "[INFO] [1712609758.726516]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712609758.726776]: -------------------\n", + "[INFO] [1712609758.727013]: SOMA.Focusing \n", + "[INFO] [1712609758.727248]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712609758.727540]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.AttentionShift, owl.Thing, SOMA.MentalTask, SOMA.Focusing}\n", + "[INFO] [1712609758.727803]: Subclasses: []\n", + "[INFO] [1712609758.728097]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.728580]: Instances: []\n", + "[INFO] [1712609758.728859]: Direct Instances: []\n", + "[INFO] [1712609758.729117]: Inverse Restrictions: []\n", + "[INFO] [1712609758.729354]: -------------------\n", + "[INFO] [1712609758.729584]: SOMA.Foolishness \n", + "[INFO] [1712609758.729823]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712609758.730099]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, SOMA.Foolishness, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.730359]: Subclasses: []\n", + "[INFO] [1712609758.730646]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.731134]: Instances: []\n", + "[INFO] [1712609758.731405]: Direct Instances: []\n", + "[INFO] [1712609758.731657]: Inverse Restrictions: []\n", + "[INFO] [1712609758.731892]: -------------------\n", + "[INFO] [1712609758.732126]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712609758.732356]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712609758.732638]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, SOMA.ForgettingIncorrectInformation, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609758.732896]: Subclasses: []\n", + "[INFO] [1712609758.733193]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.733678]: Instances: []\n", + "[INFO] [1712609758.733926]: Direct Instances: []\n", + "[INFO] [1712609758.734241]: Inverse Restrictions: []\n", + "[INFO] [1712609758.734566]: -------------------\n", + "[INFO] [1712609758.734844]: SOMA.InformationDismissal \n", + "[INFO] [1712609758.735158]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712609758.735435]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609758.735699]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712609758.735998]: Properties: [rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.736498]: Instances: []\n", + "[INFO] [1712609758.736772]: Direct Instances: []\n", + "[INFO] [1712609758.737034]: Inverse Restrictions: []\n", + "[INFO] [1712609758.737270]: -------------------\n", + "[INFO] [1712609758.737506]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712609758.737735]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712609758.738000]: Ancestors: {SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609758.738264]: Subclasses: []\n", + "[INFO] [1712609758.738561]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.739053]: Instances: []\n", + "[INFO] [1712609758.739307]: Direct Instances: []\n", + "[INFO] [1712609758.739567]: Inverse Restrictions: []\n", + "[INFO] [1712609758.739808]: -------------------\n", + "[INFO] [1712609758.740044]: SOMA.Language \n", + "[INFO] [1712609758.740298]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712609758.740541]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.740790]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712609758.741093]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.741617]: Instances: []\n", + "[INFO] [1712609758.741872]: Direct Instances: []\n", + "[INFO] [1712609758.742930]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712609758.743212]: -------------------\n", + "[INFO] [1712609758.743476]: SOMA.FreezerCompartment \n", + "[INFO] [1712609758.743802]: Super classes: [SOMA.Compartment]\n", + "[INFO] [1712609758.744108]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.FreezerCompartment, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, SOMA.Compartment}\n", + "[INFO] [1712609758.744390]: Subclasses: []\n", + "[INFO] [1712609758.744695]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.745195]: Instances: []\n", + "[INFO] [1712609758.745454]: Direct Instances: []\n", + "[INFO] [1712609758.745700]: Inverse Restrictions: []\n", + "[INFO] [1712609758.745934]: -------------------\n", + "[INFO] [1712609758.746203]: SOMA.Item \n", + "[INFO] [1712609758.746458]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609758.746703]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.746960]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712609758.747290]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.747839]: Instances: []\n", + "[INFO] [1712609758.748109]: Direct Instances: []\n", + "[INFO] [1712609758.748470]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712609758.748733]: -------------------\n", + "[INFO] [1712609758.748977]: SOMA.FunctionalDesign \n", + "[INFO] [1712609758.749215]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712609758.749474]: Ancestors: {DUL.Entity, SOMA.FunctionalDesign, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609758.749718]: Subclasses: []\n", + "[INFO] [1712609758.750004]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.750609]: Instances: []\n", + "[INFO] [1712609758.750978]: Direct Instances: []\n", + "[INFO] [1712609758.751273]: Inverse Restrictions: []\n", + "[INFO] [1712609758.751538]: -------------------\n", + "[INFO] [1712609758.751792]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712609758.752036]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712609758.752287]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609758.752558]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712609758.752861]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.753364]: Instances: []\n", + "[INFO] [1712609758.753645]: Direct Instances: []\n", + "[INFO] [1712609758.753905]: Inverse Restrictions: []\n", + "[INFO] [1712609758.754144]: -------------------\n", + "[INFO] [1712609758.754377]: SOMA.LocatumRole \n", + "[INFO] [1712609758.754613]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609758.754900]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.LocatumRole, SOMA.SpatialRelationRole}\n", + "[INFO] [1712609758.755152]: Subclasses: []\n", + "[INFO] [1712609758.755464]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.755955]: Instances: []\n", + "[INFO] [1712609758.756227]: Direct Instances: []\n", + "[INFO] [1712609758.756564]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712609758.756812]: -------------------\n", + "[INFO] [1712609758.757053]: SOMA.RelatumRole \n", + "[INFO] [1712609758.757349]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609758.757656]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, SOMA.RelatumRole, owl.Thing, DUL.Role, SOMA.SpatialRelationRole}\n", + "[INFO] [1712609758.757920]: Subclasses: []\n", + "[INFO] [1712609758.758225]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.758721]: Instances: []\n", + "[INFO] [1712609758.758980]: Direct Instances: []\n", + "[INFO] [1712609758.759313]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712609758.759564]: -------------------\n", + "[INFO] [1712609758.759802]: SOMA.GasCooktop \n", + "[INFO] [1712609758.760039]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712609758.760308]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.GasCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.760570]: Subclasses: []\n", + "[INFO] [1712609758.760863]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.761354]: Instances: []\n", + "[INFO] [1712609758.761609]: Direct Instances: []\n", + "[INFO] [1712609758.761856]: Inverse Restrictions: []\n", + "[INFO] [1712609758.762090]: -------------------\n", + "[INFO] [1712609758.762343]: SOMA.GetTaskParameter \n", + "[INFO] [1712609758.762585]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712609758.762855]: Ancestors: {SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712609758.763122]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712609758.763422]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.763978]: Instances: []\n", + "[INFO] [1712609758.764257]: Direct Instances: []\n", + "[INFO] [1712609758.764520]: Inverse Restrictions: []\n", + "[INFO] [1712609758.764771]: -------------------\n", + "[INFO] [1712609758.765256]: SOMA.Planning \n", + "[INFO] [1712609758.766137]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712609758.766660]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712609758.767171]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712609758.767709]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.768441]: Instances: []\n", + "[INFO] [1712609758.768950]: Direct Instances: []\n", + "[INFO] [1712609758.769444]: Inverse Restrictions: []\n", + "[INFO] [1712609758.769860]: -------------------\n", + "[INFO] [1712609758.770210]: SOMA.Glass \n", + "[INFO] [1712609758.770556]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712609758.770924]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool, SOMA.Glass}\n", + "[INFO] [1712609758.771292]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", + "[INFO] [1712609758.771679]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.772266]: Instances: []\n", + "[INFO] [1712609758.772612]: Direct Instances: []\n", + "[INFO] [1712609758.772949]: Inverse Restrictions: []\n", + "[INFO] [1712609758.773292]: -------------------\n", + "[INFO] [1712609758.773623]: SOMA.GraphDatabase \n", + "[INFO] [1712609758.773984]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712609758.774361]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.774704]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712609758.775095]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.775680]: Instances: []\n", + "[INFO] [1712609758.776028]: Direct Instances: []\n", + "[INFO] [1712609758.776371]: Inverse Restrictions: []\n", + "[INFO] [1712609758.776706]: -------------------\n", + "[INFO] [1712609758.777040]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712609758.777369]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712609758.777730]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.GraphQueryLanguage, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.778059]: Subclasses: []\n", + "[INFO] [1712609758.778447]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.779026]: Instances: []\n", + "[INFO] [1712609758.779371]: Direct Instances: []\n", + "[INFO] [1712609758.779701]: Inverse Restrictions: []\n", + "[INFO] [1712609758.780016]: -------------------\n", + "[INFO] [1712609758.780339]: SOMA.QueryLanguage \n", + "[INFO] [1712609758.780670]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609758.781003]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.781343]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712609758.781729]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.782312]: Instances: []\n", + "[INFO] [1712609758.782662]: Direct Instances: []\n", + "[INFO] [1712609758.783002]: Inverse Restrictions: []\n", + "[INFO] [1712609758.783334]: -------------------\n", + "[INFO] [1712609758.783659]: SOMA.GraspTransfer \n", + "[INFO] [1712609758.783986]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712609758.784346]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.GraspTransfer, DUL.SocialObject, SOMA.Grasping, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609758.784696]: Subclasses: []\n", + "[INFO] [1712609758.785081]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.785662]: Instances: []\n", + "[INFO] [1712609758.786027]: Direct Instances: []\n", + "[INFO] [1712609758.786368]: Inverse Restrictions: []\n", + "[INFO] [1712609758.786702]: -------------------\n", + "[INFO] [1712609758.787027]: SOMA.Grasping \n", + "[INFO] [1712609758.787344]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609758.787667]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, SOMA.Grasping, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609758.787995]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712609758.788374]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.788974]: Instances: []\n", + "[INFO] [1712609758.789333]: Direct Instances: []\n", + "[INFO] [1712609758.789667]: Inverse Restrictions: []\n", + "[INFO] [1712609758.789986]: -------------------\n", + "[INFO] [1712609758.790319]: SOMA.Releasing \n", + "[INFO] [1712609758.790704]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609758.791070]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Releasing, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609758.791408]: Subclasses: []\n", + "[INFO] [1712609758.791785]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.792370]: Instances: []\n", + "[INFO] [1712609758.792721]: Direct Instances: []\n", + "[INFO] [1712609758.793056]: Inverse Restrictions: []\n", + "[INFO] [1712609758.793374]: -------------------\n", + "[INFO] [1712609758.793693]: SOMA.GraspingMotion \n", + "[INFO] [1712609758.794018]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712609758.795556]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.795940]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712609758.796350]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.796936]: Instances: []\n", + "[INFO] [1712609758.797287]: Direct Instances: []\n", + "[INFO] [1712609758.797677]: Inverse Restrictions: []\n", + "[INFO] [1712609758.798010]: -------------------\n", + "[INFO] [1712609758.798374]: SOMA.IntermediateGrasp \n", + "[INFO] [1712609758.798742]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712609758.799129]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.IntermediateGrasp, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.799504]: Subclasses: []\n", + "[INFO] [1712609758.799932]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.800539]: Instances: []\n", + "[INFO] [1712609758.800915]: Direct Instances: []\n", + "[INFO] [1712609758.801326]: Inverse Restrictions: []\n", + "[INFO] [1712609758.801691]: -------------------\n", + "[INFO] [1712609758.801958]: SOMA.PowerGrasp \n", + "[INFO] [1712609758.802207]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712609758.802478]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PowerGrasp, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.802742]: Subclasses: []\n", + "[INFO] [1712609758.803045]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.803530]: Instances: []\n", + "[INFO] [1712609758.803785]: Direct Instances: []\n", + "[INFO] [1712609758.804078]: Inverse Restrictions: []\n", + "[INFO] [1712609758.804324]: -------------------\n", + "[INFO] [1712609758.804562]: SOMA.PrecisionGrasp \n", + "[INFO] [1712609758.804798]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712609758.805184]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PrecisionGrasp, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.805531]: Subclasses: []\n", + "[INFO] [1712609758.805915]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.806491]: Instances: []\n", + "[INFO] [1712609758.806832]: Direct Instances: []\n", + "[INFO] [1712609758.807208]: Inverse Restrictions: []\n", + "[INFO] [1712609758.807586]: -------------------\n", + "[INFO] [1712609758.807937]: SOMA.PrehensileMotion \n", + "[INFO] [1712609758.808673]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712609758.809032]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.809382]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712609758.809775]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.810361]: Instances: []\n", + "[INFO] [1712609758.810726]: Direct Instances: []\n", + "[INFO] [1712609758.811075]: Inverse Restrictions: []\n", + "[INFO] [1712609758.811404]: -------------------\n", + "[INFO] [1712609758.811725]: SOMA.ReleasingMotion \n", + "[INFO] [1712609758.812041]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712609758.812402]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, SOMA.ReleasingMotion, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.812740]: Subclasses: []\n", + "[INFO] [1712609758.813116]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.813693]: Instances: []\n", + "[INFO] [1712609758.814052]: Direct Instances: []\n", + "[INFO] [1712609758.814435]: Inverse Restrictions: []\n", + "[INFO] [1712609758.814767]: -------------------\n", + "[INFO] [1712609758.815088]: SOMA.GreenColor \n", + "[INFO] [1712609758.815398]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712609758.815753]: Ancestors: {DUL.Entity, SOMA.GreenColor, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609758.816083]: Subclasses: []\n", + "[INFO] [1712609758.816447]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.817014]: Instances: []\n", + "[INFO] [1712609758.817366]: Direct Instances: []\n", + "[INFO] [1712609758.817702]: Inverse Restrictions: []\n", + "[INFO] [1712609758.818020]: -------------------\n", + "[INFO] [1712609758.818330]: SOMA.Gripper \n", + "[INFO] [1712609758.818600]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712609758.818878]: Ancestors: {DUL.Entity, SOMA.Gripper, DUL.PhysicalBody, DUL.Object, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.819141]: Subclasses: []\n", + "[INFO] [1712609758.819427]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.819908]: Instances: []\n", + "[INFO] [1712609758.820159]: Direct Instances: []\n", + "[INFO] [1712609758.820404]: Inverse Restrictions: []\n", + "[INFO] [1712609758.820652]: -------------------\n", + "[INFO] [1712609758.820887]: SOMA.PrehensileEffector \n", + "[INFO] [1712609758.821119]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712609758.821359]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.821603]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712609758.821888]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.822394]: Instances: []\n", + "[INFO] [1712609758.822661]: Direct Instances: []\n", + "[INFO] [1712609758.822988]: Inverse Restrictions: []\n", + "[INFO] [1712609758.823239]: -------------------\n", + "[INFO] [1712609758.823477]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712609758.823710]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712609758.824018]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.TechnicalDiagnosis, owl.Thing, SOMA.HardwareDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.824299]: Subclasses: []\n", + "[INFO] [1712609758.824600]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.825092]: Instances: []\n", + "[INFO] [1712609758.825350]: Direct Instances: []\n", + "[INFO] [1712609758.825597]: Inverse Restrictions: []\n", + "[INFO] [1712609758.825845]: -------------------\n", + "[INFO] [1712609758.826081]: SOMA.HasQualityRegion \n", + "[INFO] [1712609758.826565]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712609758.826988]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing, SOMA.HasQualityRegion}\n", + "[INFO] [1712609758.827387]: Subclasses: []\n", + "[INFO] [1712609758.827828]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasQuality, DUL.hasRegion]\n", + "[INFO] [1712609758.828441]: Instances: []\n", + "[INFO] [1712609758.828731]: Direct Instances: []\n", + "[INFO] [1712609758.828993]: Inverse Restrictions: []\n", + "[INFO] [1712609758.829333]: -------------------\n", + "[INFO] [1712609758.829608]: SOMA.Head \n", + "[INFO] [1712609758.829859]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712609758.830135]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.Head, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.830387]: Subclasses: []\n", + "[INFO] [1712609758.830681]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.831183]: Instances: []\n", + "[INFO] [1712609758.831448]: Direct Instances: []\n", + "[INFO] [1712609758.831697]: Inverse Restrictions: []\n", + "[INFO] [1712609758.831934]: -------------------\n", + "[INFO] [1712609758.832163]: SOMA.HeadMovement \n", + "[INFO] [1712609758.832407]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712609758.832674]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.HeadMovement, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.832923]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712609758.833205]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.833719]: Instances: []\n", + "[INFO] [1712609758.833987]: Direct Instances: []\n", + "[INFO] [1712609758.834247]: Inverse Restrictions: []\n", + "[INFO] [1712609758.834486]: -------------------\n", + "[INFO] [1712609758.834716]: SOMA.HeadTurning \n", + "[INFO] [1712609758.834949]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712609758.835227]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.HeadTurning, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.HeadMovement, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.835476]: Subclasses: []\n", + "[INFO] [1712609758.835758]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.836245]: Instances: []\n", + "[INFO] [1712609758.836513]: Direct Instances: []\n", + "[INFO] [1712609758.836765]: Inverse Restrictions: []\n", + "[INFO] [1712609758.836999]: -------------------\n", + "[INFO] [1712609758.837234]: SOMA.Holding \n", + "[INFO] [1712609758.837463]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609758.837721]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Holding, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609758.837977]: Subclasses: []\n", + "[INFO] [1712609758.838270]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.838757]: Instances: []\n", + "[INFO] [1712609758.839013]: Direct Instances: []\n", + "[INFO] [1712609758.839258]: Inverse Restrictions: []\n", + "[INFO] [1712609758.839492]: -------------------\n", + "[INFO] [1712609758.839729]: SOMA.HostRole \n", + "[INFO] [1712609758.839984]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712609758.840250]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.HostRole, SOMA.SoftwareRole}\n", + "[INFO] [1712609758.840490]: Subclasses: []\n", + "[INFO] [1712609758.840817]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.841328]: Instances: []\n", + "[INFO] [1712609758.841592]: Direct Instances: []\n", + "[INFO] [1712609758.842640]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712609758.842897]: -------------------\n", + "[INFO] [1712609758.843154]: SOMA.PluginSpecification \n", + "[INFO] [1712609758.843404]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712609758.843670]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, SOMA.PluginSpecification}\n", + "[INFO] [1712609758.843911]: Subclasses: []\n", + "[INFO] [1712609758.844198]: Properties: [rdf-schema.comment, DUL.definesRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.844703]: Instances: []\n", + "[INFO] [1712609758.844963]: Direct Instances: []\n", + "[INFO] [1712609758.845290]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712609758.845540]: -------------------\n", + "[INFO] [1712609758.845787]: SOMA.Hotplate \n", + "[INFO] [1712609758.846025]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.846293]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Hotplate, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.846536]: Subclasses: []\n", + "[INFO] [1712609758.846813]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.847435]: Instances: []\n", + "[INFO] [1712609758.847896]: Direct Instances: []\n", + "[INFO] [1712609758.848288]: Inverse Restrictions: [SOMA.Stove]\n", + "[INFO] [1712609758.848583]: -------------------\n", + "[INFO] [1712609758.849097]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712609758.849671]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712609758.850221]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, SOMA.Programming_Language, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.850726]: Subclasses: []\n", + "[INFO] [1712609758.851291]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.852043]: Instances: []\n", + "[INFO] [1712609758.852546]: Direct Instances: []\n", + "[INFO] [1712609758.853757]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712609758.854199]: -------------------\n", + "[INFO] [1712609758.854639]: SOMA.Source_Code \n", + "[INFO] [1712609758.855074]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712609758.855670]: Ancestors: {SOMA.Computer_Program, SOMA.Source_Code, owl.Thing}\n", + "[INFO] [1712609758.856027]: Subclasses: []\n", + "[INFO] [1712609758.856432]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.857029]: Instances: []\n", + "[INFO] [1712609758.857396]: Direct Instances: []\n", + "[INFO] [1712609758.857772]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712609758.858105]: -------------------\n", + "[INFO] [1712609758.858453]: SOMA.HumanActivityRecording \n", + "[INFO] [1712609758.858793]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712609758.859156]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.Episode, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712609758.859489]: Subclasses: []\n", + "[INFO] [1712609758.859863]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.860452]: Instances: []\n", + "[INFO] [1712609758.860809]: Direct Instances: []\n", + "[INFO] [1712609758.861157]: Inverse Restrictions: []\n", + "[INFO] [1712609758.861483]: -------------------\n", + "[INFO] [1712609758.861811]: SOMA.Imagining \n", + "[INFO] [1712609758.862137]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712609758.862491]: Ancestors: {SOMA.InformationAcquisition, SOMA.Imagining, owl.Thing}\n", + "[INFO] [1712609758.862828]: Subclasses: []\n", + "[INFO] [1712609758.863199]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.863776]: Instances: []\n", + "[INFO] [1712609758.864140]: Direct Instances: []\n", + "[INFO] [1712609758.864481]: Inverse Restrictions: []\n", + "[INFO] [1712609758.864805]: -------------------\n", + "[INFO] [1712609758.865128]: SOMA.Impediment \n", + "[INFO] [1712609758.865484]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712609758.865855]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Impediment, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609758.866203]: Subclasses: []\n", + "[INFO] [1712609758.866585]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.867161]: Instances: []\n", + "[INFO] [1712609758.867520]: Direct Instances: []\n", + "[INFO] [1712609758.867862]: Inverse Restrictions: []\n", + "[INFO] [1712609758.868183]: -------------------\n", + "[INFO] [1712609758.868507]: SOMA.Obstacle \n", + "[INFO] [1712609758.868827]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712609758.869197]: Ancestors: {DUL.Concept, SOMA.Obstacle, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609758.869536]: Subclasses: []\n", + "[INFO] [1712609758.869915]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.870499]: Instances: []\n", + "[INFO] [1712609758.870862]: Direct Instances: []\n", + "[INFO] [1712609758.871251]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712609758.871591]: -------------------\n", + "[INFO] [1712609758.871927]: SOMA.RestrictedObject \n", + "[INFO] [1712609758.872264]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712609758.872641]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RestrictedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", + "[INFO] [1712609758.872999]: Subclasses: []\n", + "[INFO] [1712609758.873391]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.873968]: Instances: []\n", + "[INFO] [1712609758.874366]: Direct Instances: []\n", + "[INFO] [1712609758.874801]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712609758.875166]: -------------------\n", + "[INFO] [1712609758.875520]: SOMA.StateTransition \n", + "[INFO] [1712609758.875904]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712609758.876301]: Ancestors: {DUL.Entity, DUL.Situation, DUL.Transition, SOMA.StateTransition, owl.Thing}\n", + "[INFO] [1712609758.876582]: Subclasses: []\n", + "[INFO] [1712609758.876890]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, SOMA.hasInitialScene, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.877378]: Instances: []\n", + "[INFO] [1712609758.877644]: Direct Instances: []\n", + "[INFO] [1712609758.877969]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712609758.878220]: -------------------\n", + "[INFO] [1712609758.878461]: SOMA.Inability \n", + "[INFO] [1712609758.878695]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712609758.878955]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Inability, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.879216]: Subclasses: []\n", + "[INFO] [1712609758.879509]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.879996]: Instances: []\n", + "[INFO] [1712609758.880252]: Direct Instances: []\n", + "[INFO] [1712609758.880496]: Inverse Restrictions: []\n", + "[INFO] [1712609758.880728]: -------------------\n", + "[INFO] [1712609758.880970]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712609758.881206]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712609758.881535]: Ancestors: {DUL.Entity, SOMA.IncompatibleSoftware, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609758.881777]: Subclasses: []\n", + "[INFO] [1712609758.882062]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.882560]: Instances: []\n", + "[INFO] [1712609758.882822]: Direct Instances: []\n", + "[INFO] [1712609758.883069]: Inverse Restrictions: []\n", + "[INFO] [1712609758.883306]: -------------------\n", + "[INFO] [1712609758.883539]: SOMA.InductionCooktop \n", + "[INFO] [1712609758.883783]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712609758.884055]: Ancestors: {DUL.Entity, SOMA.InductionCooktop, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.ElectricCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.884302]: Subclasses: []\n", + "[INFO] [1712609758.884585]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.885078]: Instances: []\n", + "[INFO] [1712609758.885339]: Direct Instances: []\n", + "[INFO] [1712609758.885584]: Inverse Restrictions: []\n", + "[INFO] [1712609758.885814]: -------------------\n", + "[INFO] [1712609758.886046]: SOMA.InductiveReasoning \n", + "[INFO] [1712609758.886294]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712609758.886556]: Ancestors: {SOMA.InductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.Reasoning}\n", + "[INFO] [1712609758.886833]: Subclasses: []\n", + "[INFO] [1712609758.887128]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.887625]: Instances: []\n", + "[INFO] [1712609758.887898]: Direct Instances: []\n", + "[INFO] [1712609758.888150]: Inverse Restrictions: []\n", + "[INFO] [1712609758.888389]: -------------------\n", + "[INFO] [1712609758.888691]: SOMA.Infeasibility \n", + "[INFO] [1712609758.888945]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712609758.889212]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.889456]: Subclasses: []\n", + "[INFO] [1712609758.889735]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.890234]: Instances: []\n", + "[INFO] [1712609758.890507]: Direct Instances: []\n", + "[INFO] [1712609758.890762]: Inverse Restrictions: []\n", + "[INFO] [1712609758.891000]: -------------------\n", + "[INFO] [1712609758.891243]: SOMA.InferenceRules \n", + "[INFO] [1712609758.891489]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712609758.891769]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.InferenceRules}\n", + "[INFO] [1712609758.892017]: Subclasses: []\n", + "[INFO] [1712609758.892299]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.892781]: Instances: []\n", + "[INFO] [1712609758.893056]: Direct Instances: []\n", + "[INFO] [1712609758.893308]: Inverse Restrictions: []\n", + "[INFO] [1712609758.893543]: -------------------\n", + "[INFO] [1712609758.893774]: SOMA.InformationRetrieval \n", + "[INFO] [1712609758.894018]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712609758.894301]: Ancestors: {SOMA.InformationAcquisition, SOMA.InformationRetrieval, owl.Thing}\n", + "[INFO] [1712609758.894562]: Subclasses: []\n", + "[INFO] [1712609758.894857]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.895339]: Instances: []\n", + "[INFO] [1712609758.895593]: Direct Instances: []\n", + "[INFO] [1712609758.895905]: Inverse Restrictions: []\n", + "[INFO] [1712609758.896146]: -------------------\n", + "[INFO] [1712609758.896375]: SOMA.InformationStorage \n", + "[INFO] [1712609758.896641]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712609758.897007]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", + "[INFO] [1712609758.897276]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712609758.897577]: Properties: [rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.898076]: Instances: []\n", + "[INFO] [1712609758.898350]: Direct Instances: []\n", + "[INFO] [1712609758.898604]: Inverse Restrictions: []\n", + "[INFO] [1712609758.898843]: -------------------\n", + "[INFO] [1712609758.899076]: SOMA.StoredObject \n", + "[INFO] [1712609758.899307]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712609758.899571]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, DUL.Role, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.StoredObject, owl.Thing, SOMA.EnclosedObject}\n", + "[INFO] [1712609758.899828]: Subclasses: []\n", + "[INFO] [1712609758.900118]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.900602]: Instances: []\n", + "[INFO] [1712609758.900878]: Direct Instances: []\n", + "[INFO] [1712609758.901226]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712609758.901469]: -------------------\n", + "[INFO] [1712609758.901704]: SOMA.InsertedObject \n", + "[INFO] [1712609758.901942]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712609758.902215]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, DUL.Role, SOMA.Patient, DUL.SocialObject, SOMA.InsertedObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, SOMA.EnclosedObject}\n", + "[INFO] [1712609758.902469]: Subclasses: []\n", + "[INFO] [1712609758.902754]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.903244]: Instances: []\n", + "[INFO] [1712609758.903504]: Direct Instances: []\n", + "[INFO] [1712609758.903792]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712609758.904030]: -------------------\n", + "[INFO] [1712609758.904268]: SOMA.Instructions \n", + "[INFO] [1712609758.904500]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712609758.904771]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Instructions, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.905017]: Subclasses: []\n", + "[INFO] [1712609758.905306]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.905795]: Instances: []\n", + "[INFO] [1712609758.906063]: Direct Instances: []\n", + "[INFO] [1712609758.906494]: Inverse Restrictions: []\n", + "[INFO] [1712609758.906811]: -------------------\n", + "[INFO] [1712609758.907082]: SOMA.Interpreting \n", + "[INFO] [1712609758.907338]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609758.907618]: Ancestors: {SOMA.InformationAcquisition, SOMA.Interpreting, SOMA.DerivingInformation, owl.Thing}\n", + "[INFO] [1712609758.907876]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712609758.908167]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.908680]: Instances: []\n", + "[INFO] [1712609758.908946]: Direct Instances: []\n", + "[INFO] [1712609758.909199]: Inverse Restrictions: []\n", + "[INFO] [1712609758.909436]: -------------------\n", + "[INFO] [1712609758.909667]: SOMA.InterrogativeClause \n", + "[INFO] [1712609758.909925]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712609758.910200]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, SOMA.InterrogativeClause, DUL.InformationObject}\n", + "[INFO] [1712609758.910447]: Subclasses: []\n", + "[INFO] [1712609758.910735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.911231]: Instances: []\n", + "[INFO] [1712609758.911496]: Direct Instances: []\n", + "[INFO] [1712609758.911784]: Inverse Restrictions: []\n", + "[INFO] [1712609758.912020]: -------------------\n", + "[INFO] [1712609758.912248]: SOMA.Introspecting \n", + "[INFO] [1712609758.912477]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712609758.912741]: Ancestors: {SOMA.InformationAcquisition, SOMA.Introspecting, owl.Thing}\n", + "[INFO] [1712609758.912992]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712609758.913272]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.913753]: Instances: []\n", + "[INFO] [1712609758.914023]: Direct Instances: []\n", + "[INFO] [1712609758.914280]: Inverse Restrictions: []\n", + "[INFO] [1712609758.914520]: -------------------\n", + "[INFO] [1712609758.914752]: SOMA.JamJar \n", + "[INFO] [1712609758.914983]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712609758.915251]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.JamJar, DUL.PhysicalObject, owl.Thing, SOMA.Jar}\n", + "[INFO] [1712609758.915517]: Subclasses: [SOMA.RaspberryJamJar]\n", + "[INFO] [1712609758.915800]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.916281]: Instances: []\n", + "[INFO] [1712609758.916545]: Direct Instances: []\n", + "[INFO] [1712609758.916796]: Inverse Restrictions: []\n", + "[INFO] [1712609758.917031]: -------------------\n", + "[INFO] [1712609758.917260]: SOMA.Jar \n", + "[INFO] [1712609758.917486]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712609758.917738]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Jar}\n", + "[INFO] [1712609758.917983]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", + "[INFO] [1712609758.918315]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.918941]: Instances: []\n", + "[INFO] [1712609758.919317]: Direct Instances: []\n", + "[INFO] [1712609758.919695]: Inverse Restrictions: []\n", + "[INFO] [1712609758.920056]: -------------------\n", + "[INFO] [1712609758.920415]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712609758.920770]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712609758.921079]: Ancestors: {DUL.Entity, DUL.Region, SOMA.KineticFrictionAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609758.921345]: Subclasses: []\n", + "[INFO] [1712609758.921644]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.922144]: Instances: []\n", + "[INFO] [1712609758.922497]: Direct Instances: []\n", + "[INFO] [1712609758.922790]: Inverse Restrictions: []\n", + "[INFO] [1712609758.923047]: -------------------\n", + "[INFO] [1712609758.923430]: SOMA.KinoDynamicData \n", + "[INFO] [1712609758.923768]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609758.924145]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.KinoDynamicData, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609758.924442]: Subclasses: []\n", + "[INFO] [1712609758.924834]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.925364]: Instances: []\n", + "[INFO] [1712609758.925657]: Direct Instances: []\n", + "[INFO] [1712609758.925923]: Inverse Restrictions: []\n", + "[INFO] [1712609758.926206]: -------------------\n", + "[INFO] [1712609758.926461]: SOMA.Kitchen \n", + "[INFO] [1712609758.926707]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712609758.926990]: Ancestors: {DUL.Entity, SOMA.Room, DUL.Object, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing, SOMA.Kitchen}\n", + "[INFO] [1712609758.927254]: Subclasses: []\n", + "[INFO] [1712609758.927554]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712609758.928042]: Instances: []\n", + "[INFO] [1712609758.928299]: Direct Instances: []\n", + "[INFO] [1712609758.928548]: Inverse Restrictions: []\n", + "[INFO] [1712609758.928791]: -------------------\n", + "[INFO] [1712609758.929033]: SOMA.Room \n", + "[INFO] [1712609758.929268]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712609758.929507]: Ancestors: {DUL.Entity, SOMA.Room, DUL.Object, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", + "[INFO] [1712609758.929752]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712609758.930038]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.930605]: Instances: []\n", + "[INFO] [1712609758.930931]: Direct Instances: []\n", + "[INFO] [1712609758.931220]: Inverse Restrictions: []\n", + "[INFO] [1712609758.931478]: -------------------\n", + "[INFO] [1712609758.931728]: SOMA.KitchenCabinet \n", + "[INFO] [1712609758.931976]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712609758.932259]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Cupboard, DUL.PhysicalObject, owl.Thing, SOMA.KitchenCabinet, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.932509]: Subclasses: []\n", + "[INFO] [1712609758.932801]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.933286]: Instances: []\n", + "[INFO] [1712609758.933560]: Direct Instances: []\n", + "[INFO] [1712609758.933814]: Inverse Restrictions: []\n", + "[INFO] [1712609758.934045]: -------------------\n", + "[INFO] [1712609758.934278]: SOMA.Knife \n", + "[INFO] [1712609758.934515]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712609758.934762]: Ancestors: {DUL.Entity, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", + "[INFO] [1712609758.935021]: Subclasses: [SOMA.KitchenKnife]\n", + "[INFO] [1712609758.935311]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.935802]: Instances: []\n", + "[INFO] [1712609758.936074]: Direct Instances: []\n", + "[INFO] [1712609758.936338]: Inverse Restrictions: []\n", + "[INFO] [1712609758.936577]: -------------------\n", + "[INFO] [1712609758.936806]: SOMA.KitchenUnit \n", + "[INFO] [1712609758.937035]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712609758.937311]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.KitchenUnit, owl.Thing, SOMA.DesignedFurniture}\n", + "[INFO] [1712609758.937557]: Subclasses: []\n", + "[INFO] [1712609758.937844]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.938325]: Instances: []\n", + "[INFO] [1712609758.938594]: Direct Instances: []\n", + "[INFO] [1712609758.938875]: Inverse Restrictions: []\n", + "[INFO] [1712609758.939117]: -------------------\n", + "[INFO] [1712609758.939353]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712609758.939583]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609758.939853]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.KnowledgeRepresentationLanguage, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.940124]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712609758.940417]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.940958]: Instances: []\n", + "[INFO] [1712609758.941240]: Direct Instances: []\n", + "[INFO] [1712609758.941498]: Inverse Restrictions: []\n", + "[INFO] [1712609758.941731]: -------------------\n", + "[INFO] [1712609758.941959]: SOMA.Labeling \n", + "[INFO] [1712609758.942187]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712609758.942451]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing}\n", + "[INFO] [1712609758.942709]: Subclasses: []\n", + "[INFO] [1712609758.943003]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.943483]: Instances: []\n", + "[INFO] [1712609758.943728]: Direct Instances: []\n", + "[INFO] [1712609758.943976]: Inverse Restrictions: []\n", + "[INFO] [1712609758.944218]: -------------------\n", + "[INFO] [1712609758.944453]: SOMA.Text \n", + "[INFO] [1712609758.944682]: Super classes: [owl.Thing]\n", + "[INFO] [1712609758.945900]: Ancestors: {SOMA.Text, owl.Thing}\n", + "[INFO] [1712609758.946295]: Subclasses: []\n", + "[INFO] [1712609758.946642]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.947155]: Instances: []\n", + "[INFO] [1712609758.947431]: Direct Instances: []\n", + "[INFO] [1712609758.948580]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712609758.948873]: -------------------\n", + "[INFO] [1712609758.949131]: SOMA.Leaning \n", + "[INFO] [1712609758.949373]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712609758.949668]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Leaning, SOMA.ProcessType, SOMA.Motion}\n", + "[INFO] [1712609758.949934]: Subclasses: []\n", + "[INFO] [1712609758.950252]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.950746]: Instances: []\n", + "[INFO] [1712609758.951007]: Direct Instances: []\n", + "[INFO] [1712609758.951259]: Inverse Restrictions: []\n", + "[INFO] [1712609758.951495]: -------------------\n", + "[INFO] [1712609758.951730]: SOMA.PosturalMoving \n", + "[INFO] [1712609758.951961]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712609758.952201]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.952451]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712609758.952750]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.953237]: Instances: []\n", + "[INFO] [1712609758.953499]: Direct Instances: []\n", + "[INFO] [1712609758.953756]: Inverse Restrictions: []\n", + "[INFO] [1712609758.953998]: -------------------\n", + "[INFO] [1712609758.954237]: SOMA.Learning \n", + "[INFO] [1712609758.954472]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712609758.954741]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", + "[INFO] [1712609758.955007]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712609758.955299]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.955780]: Instances: []\n", + "[INFO] [1712609758.956028]: Direct Instances: []\n", + "[INFO] [1712609758.956279]: Inverse Restrictions: []\n", + "[INFO] [1712609758.956525]: -------------------\n", + "[INFO] [1712609758.956758]: SOMA.Leg \n", + "[INFO] [1712609758.956987]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712609758.957253]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.957510]: Subclasses: []\n", + "[INFO] [1712609758.957799]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.958280]: Instances: []\n", + "[INFO] [1712609758.958553]: Direct Instances: []\n", + "[INFO] [1712609758.958845]: Inverse Restrictions: []\n", + "[INFO] [1712609758.959082]: -------------------\n", + "[INFO] [1712609758.959312]: SOMA.Lid \n", + "[INFO] [1712609758.959544]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609758.959828]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Lid, SOMA.FunctionalPart}\n", + "[INFO] [1712609758.960073]: Subclasses: []\n", + "[INFO] [1712609758.960357]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.960832]: Instances: []\n", + "[INFO] [1712609758.961107]: Direct Instances: []\n", + "[INFO] [1712609758.961359]: Inverse Restrictions: []\n", + "[INFO] [1712609758.961604]: -------------------\n", + "[INFO] [1712609758.961842]: SOMA.LimbMotion \n", + "[INFO] [1712609758.962491]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712609758.962805]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.LimbMotion, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609758.963071]: Subclasses: []\n", + "[INFO] [1712609758.963389]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.963881]: Instances: []\n", + "[INFO] [1712609758.964158]: Direct Instances: []\n", + "[INFO] [1712609758.964414]: Inverse Restrictions: []\n", + "[INFO] [1712609758.964654]: -------------------\n", + "[INFO] [1712609758.964885]: SOMA.LinkedObject \n", + "[INFO] [1712609758.965114]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712609758.965378]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, SOMA.LinkedObject, SOMA.ConnectedObject, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.965638]: Subclasses: []\n", + "[INFO] [1712609758.965933]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.966421]: Instances: []\n", + "[INFO] [1712609758.966678]: Direct Instances: []\n", + "[INFO] [1712609758.967034]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712609758.967286]: -------------------\n", + "[INFO] [1712609758.967530]: SOMA.LinkageState \n", + "[INFO] [1712609758.967771]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712609758.968032]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.LinkageState, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609758.968290]: Subclasses: []\n", + "[INFO] [1712609758.968588]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.969076]: Instances: []\n", + "[INFO] [1712609758.969329]: Direct Instances: []\n", + "[INFO] [1712609758.969572]: Inverse Restrictions: []\n", + "[INFO] [1712609758.969815]: -------------------\n", + "[INFO] [1712609758.970052]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712609758.970289]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609758.970532]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609758.970775]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712609758.971060]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.971567]: Instances: []\n", + "[INFO] [1712609758.971824]: Direct Instances: []\n", + "[INFO] [1712609758.972072]: Inverse Restrictions: []\n", + "[INFO] [1712609758.972306]: -------------------\n", + "[INFO] [1712609758.972545]: SOMA.SpatialRelationRole \n", + "[INFO] [1712609758.972786]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712609758.973036]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SpatialRelationRole}\n", + "[INFO] [1712609758.973283]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712609758.973568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.974077]: Instances: []\n", + "[INFO] [1712609758.974355]: Direct Instances: []\n", + "[INFO] [1712609758.974634]: Inverse Restrictions: []\n", + "[INFO] [1712609758.974891]: -------------------\n", + "[INFO] [1712609758.975136]: SOMA.LocutionaryAction \n", + "[INFO] [1712609758.975383]: Super classes: [owl.Thing]\n", + "[INFO] [1712609758.976605]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", + "[INFO] [1712609758.976897]: Subclasses: []\n", + "[INFO] [1712609758.977206]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.977714]: Instances: []\n", + "[INFO] [1712609758.977986]: Direct Instances: []\n", + "[INFO] [1712609758.978302]: Inverse Restrictions: []\n", + "[INFO] [1712609758.978740]: -------------------\n", + "[INFO] [1712609758.979121]: SOMA.LookingAt \n", + "[INFO] [1712609758.979492]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609758.979885]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.LookingAt}\n", + "[INFO] [1712609758.980255]: Subclasses: []\n", + "[INFO] [1712609758.980584]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.981111]: Instances: []\n", + "[INFO] [1712609758.981390]: Direct Instances: []\n", + "[INFO] [1712609758.981646]: Inverse Restrictions: []\n", + "[INFO] [1712609758.981886]: -------------------\n", + "[INFO] [1712609758.982119]: SOMA.LookingFor \n", + "[INFO] [1712609758.982359]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712609758.982638]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", + "[INFO] [1712609758.982893]: Subclasses: []\n", + "[INFO] [1712609758.983189]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.983681]: Instances: []\n", + "[INFO] [1712609758.984072]: Direct Instances: []\n", + "[INFO] [1712609758.984360]: Inverse Restrictions: []\n", + "[INFO] [1712609758.984616]: -------------------\n", + "[INFO] [1712609758.984853]: SOMA.Lowering \n", + "[INFO] [1712609758.985085]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609758.985364]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Lowering, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609758.985619]: Subclasses: []\n", + "[INFO] [1712609758.985917]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.986404]: Instances: []\n", + "[INFO] [1712609758.986679]: Direct Instances: []\n", + "[INFO] [1712609758.986935]: Inverse Restrictions: []\n", + "[INFO] [1712609758.987172]: -------------------\n", + "[INFO] [1712609758.987412]: SOMA.PhysicalAction \n", + "[INFO] [1712609758.987653]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712609758.987963]: Ancestors: {DUL.Entity, SOMA.PhysicalAction, DUL.Action, owl.Thing, DUL.Event}\n", + "[INFO] [1712609758.988254]: Subclasses: []\n", + "[INFO] [1712609758.988588]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.989128]: Instances: []\n", + "[INFO] [1712609758.989504]: Direct Instances: []\n", + "[INFO] [1712609758.989878]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609758.990181]: -------------------\n", + "[INFO] [1712609758.990465]: SOMA.Markup_Language \n", + "[INFO] [1712609758.990735]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609758.991050]: Ancestors: {DUL.Entity, SOMA.Markup_Language, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609758.991332]: Subclasses: []\n", + "[INFO] [1712609758.991640]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.992139]: Instances: []\n", + "[INFO] [1712609758.992426]: Direct Instances: []\n", + "[INFO] [1712609758.992681]: Inverse Restrictions: []\n", + "[INFO] [1712609758.992919]: -------------------\n", + "[INFO] [1712609758.993147]: SOMA.Masterful \n", + "[INFO] [1712609758.993371]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712609758.993646]: Ancestors: {DUL.Entity, SOMA.Masterful, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.993900]: Subclasses: []\n", + "[INFO] [1712609758.994198]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.994699]: Instances: []\n", + "[INFO] [1712609758.994976]: Direct Instances: []\n", + "[INFO] [1712609758.995236]: Inverse Restrictions: []\n", + "[INFO] [1712609758.995470]: -------------------\n", + "[INFO] [1712609758.995696]: SOMA.Material \n", + "[INFO] [1712609758.995922]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609758.996190]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, SOMA.Material}\n", + "[INFO] [1712609758.996443]: Subclasses: []\n", + "[INFO] [1712609758.996731]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609758.997206]: Instances: []\n", + "[INFO] [1712609758.997479]: Direct Instances: []\n", + "[INFO] [1712609758.997728]: Inverse Restrictions: []\n", + "[INFO] [1712609758.997958]: -------------------\n", + "[INFO] [1712609758.998187]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712609758.998446]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712609758.998736]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, owl.Thing, SOMA.MedicalDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609758.998982]: Subclasses: []\n", + "[INFO] [1712609758.999286]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609758.999761]: Instances: []\n", + "[INFO] [1712609759.000035]: Direct Instances: []\n", + "[INFO] [1712609759.000296]: Inverse Restrictions: []\n", + "[INFO] [1712609759.000536]: -------------------\n", + "[INFO] [1712609759.000785]: SOMA.Memorizing \n", + "[INFO] [1712609759.001017]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712609759.001288]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Memorizing, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", + "[INFO] [1712609759.001545]: Subclasses: []\n", + "[INFO] [1712609759.001840]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.002325]: Instances: []\n", + "[INFO] [1712609759.002592]: Direct Instances: []\n", + "[INFO] [1712609759.002831]: Inverse Restrictions: []\n", + "[INFO] [1712609759.003062]: -------------------\n", + "[INFO] [1712609759.003296]: SOMA.MentalAction \n", + "[INFO] [1712609759.003952]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712609759.004238]: Ancestors: {DUL.Entity, SOMA.MentalAction, DUL.Action, owl.Thing, DUL.Event}\n", + "[INFO] [1712609759.004496]: Subclasses: []\n", + "[INFO] [1712609759.004796]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.005276]: Instances: []\n", + "[INFO] [1712609759.005529]: Direct Instances: []\n", + "[INFO] [1712609759.005819]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712609759.006068]: -------------------\n", + "[INFO] [1712609759.006315]: SOMA.MeshShape \n", + "[INFO] [1712609759.006611]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712609759.006897]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, SOMA.MeshShape, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609759.007139]: Subclasses: []\n", + "[INFO] [1712609759.007436]: Properties: [rdf-schema.comment, SOMA.hasFilePath, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.007930]: Instances: []\n", + "[INFO] [1712609759.008189]: Direct Instances: []\n", + "[INFO] [1712609759.008435]: Inverse Restrictions: []\n", + "[INFO] [1712609759.008668]: -------------------\n", + "[INFO] [1712609759.008903]: SOMA.MeshShapeData \n", + "[INFO] [1712609759.009146]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609759.009414]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.MeshShapeData, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609759.009651]: Subclasses: []\n", + "[INFO] [1712609759.009939]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.010442]: Instances: []\n", + "[INFO] [1712609759.010719]: Direct Instances: []\n", + "[INFO] [1712609759.010971]: Inverse Restrictions: []\n", + "[INFO] [1712609759.011207]: -------------------\n", + "[INFO] [1712609759.011440]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712609759.011674]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712609759.011969]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.012219]: Subclasses: []\n", + "[INFO] [1712609759.012506]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.012988]: Instances: []\n", + "[INFO] [1712609759.013263]: Direct Instances: []\n", + "[INFO] [1712609759.013513]: Inverse Restrictions: []\n", + "[INFO] [1712609759.013744]: -------------------\n", + "[INFO] [1712609759.013969]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712609759.014197]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609759.014453]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.014721]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712609759.015013]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.015507]: Instances: []\n", + "[INFO] [1712609759.015773]: Direct Instances: []\n", + "[INFO] [1712609759.016027]: Inverse Restrictions: []\n", + "[INFO] [1712609759.016254]: -------------------\n", + "[INFO] [1712609759.016476]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712609759.016698]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712609759.016974]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.017227]: Subclasses: []\n", + "[INFO] [1712609759.017515]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.017989]: Instances: []\n", + "[INFO] [1712609759.018270]: Direct Instances: []\n", + "[INFO] [1712609759.018521]: Inverse Restrictions: []\n", + "[INFO] [1712609759.018753]: -------------------\n", + "[INFO] [1712609759.018982]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712609759.019208]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712609759.019474]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.019727]: Subclasses: []\n", + "[INFO] [1712609759.020021]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.020502]: Instances: []\n", + "[INFO] [1712609759.020756]: Direct Instances: []\n", + "[INFO] [1712609759.021000]: Inverse Restrictions: []\n", + "[INFO] [1712609759.021237]: -------------------\n", + "[INFO] [1712609759.021472]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712609759.021699]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712609759.021935]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.022197]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712609759.022494]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.023009]: Instances: []\n", + "[INFO] [1712609759.023276]: Direct Instances: []\n", + "[INFO] [1712609759.023534]: Inverse Restrictions: []\n", + "[INFO] [1712609759.023769]: -------------------\n", + "[INFO] [1712609759.024004]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712609759.024234]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712609759.024498]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MetacognitiveControlling, SOMA.MentalTask}\n", + "[INFO] [1712609759.024746]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712609759.025041]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.025523]: Instances: []\n", + "[INFO] [1712609759.025780]: Direct Instances: []\n", + "[INFO] [1712609759.026032]: Inverse Restrictions: []\n", + "[INFO] [1712609759.026263]: -------------------\n", + "[INFO] [1712609759.026502]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712609759.026733]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712609759.026994]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting, owl.Thing}\n", + "[INFO] [1712609759.027231]: Subclasses: []\n", + "[INFO] [1712609759.027511]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.028001]: Instances: []\n", + "[INFO] [1712609759.028266]: Direct Instances: []\n", + "[INFO] [1712609759.028513]: Inverse Restrictions: []\n", + "[INFO] [1712609759.028743]: -------------------\n", + "[INFO] [1712609759.028972]: SOMA.MilkBottle \n", + "[INFO] [1712609759.029200]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712609759.029479]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.MilkBottle, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.029725]: Subclasses: []\n", + "[INFO] [1712609759.030009]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.030494]: Instances: []\n", + "[INFO] [1712609759.030806]: Direct Instances: []\n", + "[INFO] [1712609759.031059]: Inverse Restrictions: []\n", + "[INFO] [1712609759.031293]: -------------------\n", + "[INFO] [1712609759.031530]: SOMA.MilkPack \n", + "[INFO] [1712609759.031756]: Super classes: [SOMA.Pack]\n", + "[INFO] [1712609759.032030]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Pack, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.MilkPack}\n", + "[INFO] [1712609759.032285]: Subclasses: []\n", + "[INFO] [1712609759.032577]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.033075]: Instances: []\n", + "[INFO] [1712609759.033357]: Direct Instances: []\n", + "[INFO] [1712609759.033623]: Inverse Restrictions: []\n", + "[INFO] [1712609759.033868]: -------------------\n", + "[INFO] [1712609759.034106]: SOMA.Pack \n", + "[INFO] [1712609759.034350]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712609759.034591]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Pack, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.034837]: Subclasses: [SOMA.MilkPack]\n", + "[INFO] [1712609759.035136]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.035632]: Instances: []\n", + "[INFO] [1712609759.035890]: Direct Instances: []\n", + "[INFO] [1712609759.036138]: Inverse Restrictions: []\n", + "[INFO] [1712609759.036364]: -------------------\n", + "[INFO] [1712609759.036592]: SOMA.Mixing \n", + "[INFO] [1712609759.036831]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712609759.037105]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Mixing}\n", + "[INFO] [1712609759.037357]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712609759.037638]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.038137]: Instances: []\n", + "[INFO] [1712609759.038406]: Direct Instances: []\n", + "[INFO] [1712609759.038660]: Inverse Restrictions: []\n", + "[INFO] [1712609759.038906]: -------------------\n", + "[INFO] [1712609759.039136]: SOMA.MixingTheory \n", + "[INFO] [1712609759.039384]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712609759.039660]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.MixingTheory, owl.Thing, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609759.039901]: Subclasses: []\n", + "[INFO] [1712609759.040194]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.040692]: Instances: []\n", + "[INFO] [1712609759.040961]: Direct Instances: []\n", + "[INFO] [1712609759.041207]: Inverse Restrictions: []\n", + "[INFO] [1712609759.041436]: -------------------\n", + "[INFO] [1712609759.041668]: SOMA.MonitoringJointState \n", + "[INFO] [1712609759.041901]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712609759.042186]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, DUL.SocialObject, DUL.Object, SOMA.Proprioceiving, owl.Thing}\n", + "[INFO] [1712609759.042433]: Subclasses: []\n", + "[INFO] [1712609759.042717]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.043217]: Instances: []\n", + "[INFO] [1712609759.043484]: Direct Instances: []\n", + "[INFO] [1712609759.043730]: Inverse Restrictions: []\n", + "[INFO] [1712609759.043959]: -------------------\n", + "[INFO] [1712609759.044184]: SOMA.Proprioceiving \n", + "[INFO] [1712609759.044407]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609759.044658]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Proprioceiving, owl.Thing}\n", + "[INFO] [1712609759.044911]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712609759.045196]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.045685]: Instances: []\n", + "[INFO] [1712609759.045957]: Direct Instances: []\n", + "[INFO] [1712609759.046222]: Inverse Restrictions: []\n", + "[INFO] [1712609759.046455]: -------------------\n", + "[INFO] [1712609759.046694]: SOMA.MovingAway \n", + "[INFO] [1712609759.046937]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609759.047219]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.MovingAway, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.047466]: Subclasses: []\n", + "[INFO] [1712609759.047775]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.048549]: Instances: []\n", + "[INFO] [1712609759.048886]: Direct Instances: []\n", + "[INFO] [1712609759.049138]: Inverse Restrictions: []\n", + "[INFO] [1712609759.049371]: -------------------\n", + "[INFO] [1712609759.049607]: SOMA.MovingTo \n", + "[INFO] [1712609759.049847]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712609759.050135]: Ancestors: {SOMA.MovingTo, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", + "[INFO] [1712609759.050395]: Subclasses: []\n", + "[INFO] [1712609759.050686]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.051165]: Instances: []\n", + "[INFO] [1712609759.051454]: Direct Instances: []\n", + "[INFO] [1712609759.051721]: Inverse Restrictions: []\n", + "[INFO] [1712609759.051962]: -------------------\n", + "[INFO] [1712609759.052195]: SOMA.Natural_Language \n", + "[INFO] [1712609759.052458]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712609759.052748]: Ancestors: {DUL.Entity, SOMA.Natural_Language, DUL.SocialObject, DUL.Object, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.053004]: Subclasses: []\n", + "[INFO] [1712609759.053306]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.053804]: Instances: []\n", + "[INFO] [1712609759.054092]: Direct Instances: []\n", + "[INFO] [1712609759.054443]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712609759.054946]: -------------------\n", + "[INFO] [1712609759.055839]: SOMA.Natural_Language_Text \n", + "[INFO] [1712609759.056642]: Super classes: [owl.Thing]\n", + "[INFO] [1712609759.058667]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", + "[INFO] [1712609759.060206]: Subclasses: []\n", + "[INFO] [1712609759.060971]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.062027]: Instances: []\n", + "[INFO] [1712609759.062593]: Direct Instances: []\n", + "[INFO] [1712609759.063130]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712609759.063530]: -------------------\n", + "[INFO] [1712609759.063924]: SOMA.NutellaJar \n", + "[INFO] [1712609759.064316]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712609759.064780]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Jar, SOMA.NutellaJar}\n", + "[INFO] [1712609759.065187]: Subclasses: []\n", + "[INFO] [1712609759.065681]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.066506]: Instances: []\n", + "[INFO] [1712609759.066911]: Direct Instances: []\n", + "[INFO] [1712609759.067299]: Inverse Restrictions: []\n", + "[INFO] [1712609759.067675]: -------------------\n", + "[INFO] [1712609759.068047]: SOMA.Ontology \n", + "[INFO] [1712609759.068431]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712609759.070610]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", + "[INFO] [1712609759.071004]: Subclasses: []\n", + "[INFO] [1712609759.071350]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.071872]: Instances: []\n", + "[INFO] [1712609759.072159]: Direct Instances: []\n", + "[INFO] [1712609759.072478]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712609759.072736]: -------------------\n", + "[INFO] [1712609759.072990]: SOMA.Ontology_Language \n", + "[INFO] [1712609759.073241]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712609759.073532]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.073803]: Subclasses: []\n", + "[INFO] [1712609759.074112]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.074615]: Instances: []\n", + "[INFO] [1712609759.074880]: Direct Instances: []\n", + "[INFO] [1712609759.075206]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712609759.075458]: -------------------\n", + "[INFO] [1712609759.075697]: SOMA.Option \n", + "[INFO] [1712609759.075932]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712609759.076204]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.Option, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.076462]: Subclasses: []\n", + "[INFO] [1712609759.076758]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.077246]: Instances: []\n", + "[INFO] [1712609759.077503]: Direct Instances: []\n", + "[INFO] [1712609759.077744]: Inverse Restrictions: []\n", + "[INFO] [1712609759.077981]: -------------------\n", + "[INFO] [1712609759.078217]: SOMA.Singleton \n", + "[INFO] [1712609759.078455]: Super classes: [owl.Thing]\n", + "[INFO] [1712609759.078689]: Ancestors: {SOMA.Singleton, owl.Thing}\n", + "[INFO] [1712609759.078933]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712609759.079233]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.encapsulates]\n", + "[INFO] [1712609759.079722]: Instances: []\n", + "[INFO] [1712609759.079980]: Direct Instances: []\n", + "[INFO] [1712609759.080228]: Inverse Restrictions: []\n", + "[INFO] [1712609759.080465]: -------------------\n", + "[INFO] [1712609759.080693]: SOMA.Orienting \n", + "[INFO] [1712609759.080919]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712609759.081193]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Orienting, DUL.Entity, DUL.Task, SOMA.Positioning, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.081447]: Subclasses: []\n", + "[INFO] [1712609759.081738]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.082220]: Instances: []\n", + "[INFO] [1712609759.082491]: Direct Instances: []\n", + "[INFO] [1712609759.082758]: Inverse Restrictions: []\n", + "[INFO] [1712609759.082995]: -------------------\n", + "[INFO] [1712609759.083410]: SOMA.Positioning \n", + "[INFO] [1712609759.083848]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609759.084269]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Positioning, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.084674]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712609759.085127]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.085757]: Instances: []\n", + "[INFO] [1712609759.086178]: Direct Instances: []\n", + "[INFO] [1712609759.086585]: Inverse Restrictions: []\n", + "[INFO] [1712609759.086950]: -------------------\n", + "[INFO] [1712609759.087220]: SOMA.Origin \n", + "[INFO] [1712609759.087472]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712609759.087756]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Origin, SOMA.Location}\n", + "[INFO] [1712609759.088033]: Subclasses: []\n", + "[INFO] [1712609759.088337]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.088839]: Instances: []\n", + "[INFO] [1712609759.089106]: Direct Instances: []\n", + "[INFO] [1712609759.089407]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712609759.089685]: -------------------\n", + "[INFO] [1712609759.089937]: SOMA.Oven \n", + "[INFO] [1712609759.090216]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", + "[INFO] [1712609759.090505]: Ancestors: {SOMA.Appliance, DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Oven}\n", + "[INFO] [1712609759.090788]: Subclasses: []\n", + "[INFO] [1712609759.091096]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712609759.091609]: Instances: []\n", + "[INFO] [1712609759.091884]: Direct Instances: []\n", + "[INFO] [1712609759.092139]: Inverse Restrictions: []\n", + "[INFO] [1712609759.092381]: -------------------\n", + "[INFO] [1712609759.092624]: SOMA.TemperingByHeating \n", + "[INFO] [1712609759.092866]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712609759.093159]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, SOMA.TemperingByHeating, owl.Thing, SOMA.Tempering, SOMA.Disposition}\n", + "[INFO] [1712609759.093410]: Subclasses: []\n", + "[INFO] [1712609759.093703]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.094212]: Instances: []\n", + "[INFO] [1712609759.094495]: Direct Instances: []\n", + "[INFO] [1712609759.094784]: Inverse Restrictions: [SOMA.Oven]\n", + "[INFO] [1712609759.095034]: -------------------\n", + "[INFO] [1712609759.095268]: SOMA.Pan \n", + "[INFO] [1712609759.095515]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712609759.095798]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Pan, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609759.096053]: Subclasses: []\n", + "[INFO] [1712609759.096344]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.096833]: Instances: []\n", + "[INFO] [1712609759.097114]: Direct Instances: []\n", + "[INFO] [1712609759.097374]: Inverse Restrictions: []\n", + "[INFO] [1712609759.097609]: -------------------\n", + "[INFO] [1712609759.097842]: SOMA.Pancake \n", + "[INFO] [1712609759.098085]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712609759.098366]: Ancestors: {DUL.Entity, SOMA.Dish, DUL.DesignedArtifact, SOMA.Pancake, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.BakedGood}\n", + "[INFO] [1712609759.098608]: Subclasses: []\n", + "[INFO] [1712609759.098897]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.099408]: Instances: []\n", + "[INFO] [1712609759.099680]: Direct Instances: []\n", + "[INFO] [1712609759.099939]: Inverse Restrictions: []\n", + "[INFO] [1712609759.100179]: -------------------\n", + "[INFO] [1712609759.100409]: SOMA.PancakeMix \n", + "[INFO] [1712609759.100649]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712609759.100924]: Ancestors: {DUL.Entity, DUL.Substance, SOMA.PancakeMix, DUL.DesignedArtifact, DUL.PhysicalBody, DUL.PhysicalArtifact, DUL.DesignedSubstance, DUL.Object, DUL.FunctionalSubstance, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.101167]: Subclasses: []\n", + "[INFO] [1712609759.101453]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.101958]: Instances: []\n", + "[INFO] [1712609759.102238]: Direct Instances: []\n", + "[INFO] [1712609759.102488]: Inverse Restrictions: []\n", + "[INFO] [1712609759.102747]: -------------------\n", + "[INFO] [1712609759.102996]: SOMA.ParkingArms \n", + "[INFO] [1712609759.103231]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712609759.103503]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose, SOMA.AssumingArmPose, SOMA.ParkingArms}\n", + "[INFO] [1712609759.103743]: Subclasses: []\n", + "[INFO] [1712609759.104035]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.104566]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712609759.104859]: Direct Instances: [SOMA.parking_arms]\n", + "[INFO] [1712609759.105126]: Inverse Restrictions: []\n", + "[INFO] [1712609759.105371]: -------------------\n", + "[INFO] [1712609759.105605]: SOMA.PastaBowl \n", + "[INFO] [1712609759.105855]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712609759.106153]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bowl, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.PastaBowl, SOMA.DesignedTool}\n", + "[INFO] [1712609759.106422]: Subclasses: []\n", + "[INFO] [1712609759.106714]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.107201]: Instances: []\n", + "[INFO] [1712609759.107504]: Direct Instances: []\n", + "[INFO] [1712609759.107775]: Inverse Restrictions: []\n", + "[INFO] [1712609759.108018]: -------------------\n", + "[INFO] [1712609759.108256]: SOMA.PepperShaker \n", + "[INFO] [1712609759.108494]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712609759.108784]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.PepperShaker, SOMA.Shaker, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.109054]: Subclasses: []\n", + "[INFO] [1712609759.109354]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.109848]: Instances: []\n", + "[INFO] [1712609759.110129]: Direct Instances: []\n", + "[INFO] [1712609759.110538]: Inverse Restrictions: []\n", + "[INFO] [1712609759.110804]: -------------------\n", + "[INFO] [1712609759.111051]: SOMA.Shaker \n", + "[INFO] [1712609759.111285]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712609759.111525]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Shaker, owl.Thing}\n", + "[INFO] [1712609759.111771]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", + "[INFO] [1712609759.112058]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.112570]: Instances: []\n", + "[INFO] [1712609759.112840]: Direct Instances: []\n", + "[INFO] [1712609759.113095]: Inverse Restrictions: []\n", + "[INFO] [1712609759.113325]: -------------------\n", + "[INFO] [1712609759.113551]: SOMA.PhaseTransition \n", + "[INFO] [1712609759.113787]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712609759.114027]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609759.114278]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712609759.114561]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712609759.115061]: Instances: []\n", + "[INFO] [1712609759.115326]: Direct Instances: []\n", + "[INFO] [1712609759.115580]: Inverse Restrictions: []\n", + "[INFO] [1712609759.115809]: -------------------\n", + "[INFO] [1712609759.116031]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712609759.116272]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712609759.116545]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.PhysicalAccessibility, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609759.116786]: Subclasses: []\n", + "[INFO] [1712609759.117073]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.117575]: Instances: []\n", + "[INFO] [1712609759.117831]: Direct Instances: []\n", + "[INFO] [1712609759.118078]: Inverse Restrictions: []\n", + "[INFO] [1712609759.118318]: -------------------\n", + "[INFO] [1712609759.118553]: SOMA.PhysicalBlockage \n", + "[INFO] [1712609759.118788]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712609759.119071]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.PhysicalBlockage, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609759.119314]: Subclasses: []\n", + "[INFO] [1712609759.119599]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.120071]: Instances: []\n", + "[INFO] [1712609759.120346]: Direct Instances: []\n", + "[INFO] [1712609759.120598]: Inverse Restrictions: []\n", + "[INFO] [1712609759.120825]: -------------------\n", + "[INFO] [1712609759.121047]: SOMA.PhysicalExistence \n", + "[INFO] [1712609759.121267]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712609759.121534]: Ancestors: {DUL.Entity, SOMA.PhysicalExistence, owl.Thing, SOMA.State, SOMA.PhysicalState, DUL.Event}\n", + "[INFO] [1712609759.121774]: Subclasses: []\n", + "[INFO] [1712609759.122056]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.122540]: Instances: []\n", + "[INFO] [1712609759.122832]: Direct Instances: []\n", + "[INFO] [1712609759.123093]: Inverse Restrictions: []\n", + "[INFO] [1712609759.123325]: -------------------\n", + "[INFO] [1712609759.123550]: SOMA.PhysicalState \n", + "[INFO] [1712609759.123957]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712609759.124323]: Ancestors: {DUL.Entity, owl.Thing, SOMA.State, SOMA.PhysicalState, DUL.Event}\n", + "[INFO] [1712609759.124584]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712609759.124878]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.125367]: Instances: []\n", + "[INFO] [1712609759.125820]: Direct Instances: []\n", + "[INFO] [1712609759.126115]: Inverse Restrictions: []\n", + "[INFO] [1712609759.126371]: -------------------\n", + "[INFO] [1712609759.126604]: SOMA.PhysicsProcess \n", + "[INFO] [1712609759.126914]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712609759.127213]: Ancestors: {DUL.Entity, DUL.Process, SOMA.PhysicsProcess, owl.Thing, DUL.Event}\n", + "[INFO] [1712609759.127487]: Subclasses: []\n", + "[INFO] [1712609759.127802]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.128290]: Instances: []\n", + "[INFO] [1712609759.128543]: Direct Instances: []\n", + "[INFO] [1712609759.128803]: Inverse Restrictions: []\n", + "[INFO] [1712609759.129039]: -------------------\n", + "[INFO] [1712609759.129271]: SOMA.PlacingTheory \n", + "[INFO] [1712609759.129506]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712609759.129774]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.PlacingTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609759.130027]: Subclasses: []\n", + "[INFO] [1712609759.130335]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.130825]: Instances: []\n", + "[INFO] [1712609759.131082]: Direct Instances: []\n", + "[INFO] [1712609759.131332]: Inverse Restrictions: []\n", + "[INFO] [1712609759.131568]: -------------------\n", + "[INFO] [1712609759.131796]: SOMA.PlanarJoint \n", + "[INFO] [1712609759.132021]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712609759.132284]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PlanarJoint}\n", + "[INFO] [1712609759.132535]: Subclasses: []\n", + "[INFO] [1712609759.132827]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.133301]: Instances: []\n", + "[INFO] [1712609759.133545]: Direct Instances: []\n", + "[INFO] [1712609759.133781]: Inverse Restrictions: []\n", + "[INFO] [1712609759.134016]: -------------------\n", + "[INFO] [1712609759.134294]: SOMA.PluginRole \n", + "[INFO] [1712609759.134607]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712609759.134907]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, SOMA.PluginRole, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.135154]: Subclasses: []\n", + "[INFO] [1712609759.135448]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.135944]: Instances: []\n", + "[INFO] [1712609759.136213]: Direct Instances: []\n", + "[INFO] [1712609759.136526]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712609759.136760]: -------------------\n", + "[INFO] [1712609759.136991]: SOMA.Pot \n", + "[INFO] [1712609759.137227]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712609759.137499]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Pot, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609759.137742]: Subclasses: [SOMA.SoupPot]\n", + "[INFO] [1712609759.138016]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.138497]: Instances: []\n", + "[INFO] [1712609759.138766]: Direct Instances: []\n", + "[INFO] [1712609759.139019]: Inverse Restrictions: []\n", + "[INFO] [1712609759.139251]: -------------------\n", + "[INFO] [1712609759.139485]: SOMA.Pourable \n", + "[INFO] [1712609759.139749]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712609759.140034]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Pourable, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.140284]: Subclasses: []\n", + "[INFO] [1712609759.140567]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.141068]: Instances: []\n", + "[INFO] [1712609759.141325]: Direct Instances: []\n", + "[INFO] [1712609759.141617]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712609759.141927]: -------------------\n", + "[INFO] [1712609759.142178]: SOMA.PouredObject \n", + "[INFO] [1712609759.142412]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609759.142681]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.PouredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.142915]: Subclasses: []\n", + "[INFO] [1712609759.143202]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.143698]: Instances: []\n", + "[INFO] [1712609759.143960]: Direct Instances: []\n", + "[INFO] [1712609759.144247]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712609759.144478]: -------------------\n", + "[INFO] [1712609759.144704]: SOMA.Pouring \n", + "[INFO] [1712609759.144935]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712609759.145211]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712609759.145465]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712609759.145749]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.146243]: Instances: []\n", + "[INFO] [1712609759.146563]: Direct Instances: []\n", + "[INFO] [1712609759.146837]: Inverse Restrictions: []\n", + "[INFO] [1712609759.147073]: -------------------\n", + "[INFO] [1712609759.147306]: SOMA.PouringInto \n", + "[INFO] [1712609759.147540]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712609759.147824]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.PouringInto, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712609759.148080]: Subclasses: []\n", + "[INFO] [1712609759.148377]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.148864]: Instances: []\n", + "[INFO] [1712609759.149154]: Direct Instances: []\n", + "[INFO] [1712609759.149433]: Inverse Restrictions: []\n", + "[INFO] [1712609759.149683]: -------------------\n", + "[INFO] [1712609759.149918]: SOMA.PouringOnto \n", + "[INFO] [1712609759.150149]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712609759.150432]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PouringOnto, owl.Thing, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712609759.150698]: Subclasses: []\n", + "[INFO] [1712609759.150995]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.151477]: Instances: []\n", + "[INFO] [1712609759.151748]: Direct Instances: []\n", + "[INFO] [1712609759.151996]: Inverse Restrictions: []\n", + "[INFO] [1712609759.152224]: -------------------\n", + "[INFO] [1712609759.152451]: SOMA.Prediction \n", + "[INFO] [1712609759.152676]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712609759.152954]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing}\n", + "[INFO] [1712609759.153206]: Subclasses: []\n", + "[INFO] [1712609759.153503]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.153976]: Instances: []\n", + "[INFO] [1712609759.154265]: Direct Instances: []\n", + "[INFO] [1712609759.154524]: Inverse Restrictions: []\n", + "[INFO] [1712609759.154771]: -------------------\n", + "[INFO] [1712609759.155001]: SOMA.Prospecting \n", + "[INFO] [1712609759.155229]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609759.155472]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, owl.Thing, SOMA.Prospecting}\n", + "[INFO] [1712609759.155728]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712609759.156020]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.156507]: Instances: []\n", + "[INFO] [1712609759.156776]: Direct Instances: []\n", + "[INFO] [1712609759.157034]: Inverse Restrictions: []\n", + "[INFO] [1712609759.157263]: -------------------\n", + "[INFO] [1712609759.157494]: SOMA.Predilection \n", + "[INFO] [1712609759.158531]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712609759.158876]: Ancestors: {SOMA.Predilection, DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609759.159144]: Subclasses: []\n", + "[INFO] [1712609759.159454]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.159941]: Instances: []\n", + "[INFO] [1712609759.160196]: Direct Instances: []\n", + "[INFO] [1712609759.160447]: Inverse Restrictions: []\n", + "[INFO] [1712609759.160685]: -------------------\n", + "[INFO] [1712609759.160920]: SOMA.PreferenceOrder \n", + "[INFO] [1712609759.161553]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712609759.161835]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing, SOMA.PreferenceOrder}\n", + "[INFO] [1712609759.162097]: Subclasses: []\n", + "[INFO] [1712609759.162416]: Properties: [rdf-schema.label, SOMA.orders, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.162905]: Instances: []\n", + "[INFO] [1712609759.163161]: Direct Instances: []\n", + "[INFO] [1712609759.163405]: Inverse Restrictions: []\n", + "[INFO] [1712609759.163648]: -------------------\n", + "[INFO] [1712609759.163882]: SOMA.PreferenceRegion \n", + "[INFO] [1712609759.164128]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712609759.164397]: Ancestors: {DUL.Entity, SOMA.PreferenceRegion, DUL.Region, DUL.Abstract, DUL.SocialObjectAttribute, owl.Thing}\n", + "[INFO] [1712609759.164642]: Subclasses: []\n", + "[INFO] [1712609759.164937]: Properties: [rdf-schema.comment, DUL.isRegionFor, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609759.165413]: Instances: []\n", + "[INFO] [1712609759.165675]: Direct Instances: []\n", + "[INFO] [1712609759.165917]: Inverse Restrictions: []\n", + "[INFO] [1712609759.166156]: -------------------\n", + "[INFO] [1712609759.166389]: SOMA.PrismaticJoint \n", + "[INFO] [1712609759.166628]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712609759.166907]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PrismaticJoint}\n", + "[INFO] [1712609759.167146]: Subclasses: []\n", + "[INFO] [1712609759.167589]: Properties: [rdf-schema.comment, SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.168212]: Instances: []\n", + "[INFO] [1712609759.168599]: Direct Instances: []\n", + "[INFO] [1712609759.168983]: Inverse Restrictions: []\n", + "[INFO] [1712609759.169348]: -------------------\n", + "[INFO] [1712609759.169710]: SOMA.ProcessFlow \n", + "[INFO] [1712609759.169993]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712609759.170282]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.ProcessFlow}\n", + "[INFO] [1712609759.170543]: Subclasses: []\n", + "[INFO] [1712609759.170844]: Properties: [rdf-schema.comment, SOMA.definesProcess, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.171330]: Instances: []\n", + "[INFO] [1712609759.171612]: Direct Instances: []\n", + "[INFO] [1712609759.172280]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712609759.172528]: -------------------\n", + "[INFO] [1712609759.172766]: SOMA.Progression \n", + "[INFO] [1712609759.172999]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712609759.173844]: Ancestors: {DUL.Entity, SOMA.Progression, DUL.Situation, owl.Thing}\n", + "[INFO] [1712609759.174119]: Subclasses: []\n", + "[INFO] [1712609759.174443]: Properties: [rdf-schema.comment, DUL.satisfies, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.174933]: Instances: []\n", + "[INFO] [1712609759.175200]: Direct Instances: []\n", + "[INFO] [1712609759.175466]: Inverse Restrictions: []\n", + "[INFO] [1712609759.175714]: -------------------\n", + "[INFO] [1712609759.175957]: SOMA.Protector \n", + "[INFO] [1712609759.176190]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712609759.176464]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Protector, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609759.176725]: Subclasses: []\n", + "[INFO] [1712609759.177028]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.177526]: Instances: []\n", + "[INFO] [1712609759.177799]: Direct Instances: []\n", + "[INFO] [1712609759.178046]: Inverse Restrictions: []\n", + "[INFO] [1712609759.178316]: -------------------\n", + "[INFO] [1712609759.178555]: SOMA.ProximalTheory \n", + "[INFO] [1712609759.178813]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712609759.179086]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, SOMA.ProximalTheory, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609759.179326]: Subclasses: []\n", + "[INFO] [1712609759.179625]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.180142]: Instances: []\n", + "[INFO] [1712609759.180423]: Direct Instances: []\n", + "[INFO] [1712609759.180680]: Inverse Restrictions: []\n", + "[INFO] [1712609759.180920]: -------------------\n", + "[INFO] [1712609759.181168]: SOMA.PushingAway \n", + "[INFO] [1712609759.181404]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712609759.181697]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.Actuating, SOMA.PushingAway}\n", + "[INFO] [1712609759.181947]: Subclasses: []\n", + "[INFO] [1712609759.182262]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.183036]: Instances: []\n", + "[INFO] [1712609759.183337]: Direct Instances: []\n", + "[INFO] [1712609759.183596]: Inverse Restrictions: []\n", + "[INFO] [1712609759.183839]: -------------------\n", + "[INFO] [1712609759.184076]: SOMA.PushingDown \n", + "[INFO] [1712609759.184314]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712609759.184587]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.PushingDown, SOMA.Actuating}\n", + "[INFO] [1712609759.184828]: Subclasses: []\n", + "[INFO] [1712609759.185115]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.185607]: Instances: []\n", + "[INFO] [1712609759.185865]: Direct Instances: []\n", + "[INFO] [1712609759.186117]: Inverse Restrictions: []\n", + "[INFO] [1712609759.186352]: -------------------\n", + "[INFO] [1712609759.186580]: SOMA.PuttingDown \n", + "[INFO] [1712609759.186818]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609759.187090]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.PuttingDown, owl.Thing}\n", + "[INFO] [1712609759.187330]: Subclasses: []\n", + "[INFO] [1712609759.187610]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.188095]: Instances: []\n", + "[INFO] [1712609759.188358]: Direct Instances: []\n", + "[INFO] [1712609759.188603]: Inverse Restrictions: []\n", + "[INFO] [1712609759.188826]: -------------------\n", + "[INFO] [1712609759.189045]: SOMA.QualityTransition \n", + "[INFO] [1712609759.189268]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712609759.189538]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.QualityTransition, DUL.Transition, owl.Thing}\n", + "[INFO] [1712609759.189774]: Subclasses: []\n", + "[INFO] [1712609759.190075]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.190572]: Instances: []\n", + "[INFO] [1712609759.190844]: Direct Instances: []\n", + "[INFO] [1712609759.191094]: Inverse Restrictions: []\n", + "[INFO] [1712609759.191321]: -------------------\n", + "[INFO] [1712609759.191550]: SOMA.Query \n", + "[INFO] [1712609759.191782]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712609759.192050]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, SOMA.Query, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Message}\n", + "[INFO] [1712609759.192282]: Subclasses: []\n", + "[INFO] [1712609759.192566]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.193072]: Instances: []\n", + "[INFO] [1712609759.193347]: Direct Instances: []\n", + "[INFO] [1712609759.193645]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712609759.193880]: -------------------\n", + "[INFO] [1712609759.194108]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712609759.194363]: Super classes: [owl.Thing]\n", + "[INFO] [1712609759.196307]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", + "[INFO] [1712609759.196593]: Subclasses: []\n", + "[INFO] [1712609759.196897]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.197399]: Instances: []\n", + "[INFO] [1712609759.197668]: Direct Instances: []\n", + "[INFO] [1712609759.197920]: Inverse Restrictions: []\n", + "[INFO] [1712609759.198162]: -------------------\n", + "[INFO] [1712609759.198393]: SOMA.QueryEngine \n", + "[INFO] [1712609759.198630]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609759.198903]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.QueryEngine, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.199153]: Subclasses: []\n", + "[INFO] [1712609759.199444]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.199920]: Instances: []\n", + "[INFO] [1712609759.200200]: Direct Instances: []\n", + "[INFO] [1712609759.200456]: Inverse Restrictions: []\n", + "[INFO] [1712609759.200688]: -------------------\n", + "[INFO] [1712609759.200917]: SOMA.RaspberryJamJar \n", + "[INFO] [1712609759.201145]: Super classes: [SOMA.JamJar]\n", + "[INFO] [1712609759.201412]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.RaspberryJamJar, DUL.PhysicalArtifact, DUL.Object, SOMA.JamJar, DUL.PhysicalObject, owl.Thing, SOMA.Jar}\n", + "[INFO] [1712609759.201684]: Subclasses: []\n", + "[INFO] [1712609759.201982]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.202477]: Instances: []\n", + "[INFO] [1712609759.202739]: Direct Instances: []\n", + "[INFO] [1712609759.202989]: Inverse Restrictions: []\n", + "[INFO] [1712609759.203219]: -------------------\n", + "[INFO] [1712609759.203463]: SOMA.Reaching \n", + "[INFO] [1712609759.203710]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712609759.204000]: Ancestors: {SOMA.PhysicalTask, SOMA.Reaching, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712609759.204241]: Subclasses: []\n", + "[INFO] [1712609759.204550]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.205038]: Instances: []\n", + "[INFO] [1712609759.205302]: Direct Instances: []\n", + "[INFO] [1712609759.205556]: Inverse Restrictions: []\n", + "[INFO] [1712609759.205787]: -------------------\n", + "[INFO] [1712609759.206027]: SOMA.Retracting \n", + "[INFO] [1712609759.206266]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712609759.206538]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing, SOMA.Retracting}\n", + "[INFO] [1712609759.206794]: Subclasses: []\n", + "[INFO] [1712609759.207098]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.207650]: Instances: []\n", + "[INFO] [1712609759.207929]: Direct Instances: []\n", + "[INFO] [1712609759.208196]: Inverse Restrictions: []\n", + "[INFO] [1712609759.208430]: -------------------\n", + "[INFO] [1712609759.208662]: SOMA.Reasoner \n", + "[INFO] [1712609759.208907]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609759.209154]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.209417]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712609759.209710]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.210234]: Instances: []\n", + "[INFO] [1712609759.210724]: Direct Instances: []\n", + "[INFO] [1712609759.211101]: Inverse Restrictions: []\n", + "[INFO] [1712609759.211444]: -------------------\n", + "[INFO] [1712609759.211786]: SOMA.RecipientRole \n", + "[INFO] [1712609759.212147]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712609759.212549]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.RecipientRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.212903]: Subclasses: []\n", + "[INFO] [1712609759.213302]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.213915]: Instances: []\n", + "[INFO] [1712609759.214306]: Direct Instances: []\n", + "[INFO] [1712609759.214660]: Inverse Restrictions: []\n", + "[INFO] [1712609759.214995]: -------------------\n", + "[INFO] [1712609759.215330]: SOMA.RecordedEpisode \n", + "[INFO] [1712609759.215706]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712609759.216059]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712609759.216422]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712609759.216810]: Properties: [rdf-schema.comment, SOMA.includesRecord, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.217397]: Instances: []\n", + "[INFO] [1712609759.217765]: Direct Instances: []\n", + "[INFO] [1712609759.218130]: Inverse Restrictions: []\n", + "[INFO] [1712609759.218480]: -------------------\n", + "[INFO] [1712609759.218818]: SOMA.RedColor \n", + "[INFO] [1712609759.219144]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712609759.219512]: Ancestors: {DUL.Entity, DUL.Region, SOMA.ColorRegion, DUL.Abstract, SOMA.RedColor, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609759.219866]: Subclasses: []\n", + "[INFO] [1712609759.220266]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.220860]: Instances: []\n", + "[INFO] [1712609759.221216]: Direct Instances: []\n", + "[INFO] [1712609759.221554]: Inverse Restrictions: []\n", + "[INFO] [1712609759.221882]: -------------------\n", + "[INFO] [1712609759.222225]: SOMA.Refrigerator \n", + "[INFO] [1712609759.222572]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", + "[INFO] [1712609759.222964]: Ancestors: {SOMA.Appliance, DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Refrigerator, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.223309]: Subclasses: []\n", + "[INFO] [1712609759.223710]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.224326]: Instances: []\n", + "[INFO] [1712609759.224711]: Direct Instances: []\n", + "[INFO] [1712609759.225062]: Inverse Restrictions: []\n", + "[INFO] [1712609759.225390]: -------------------\n", + "[INFO] [1712609759.225728]: SOMA.Reification \n", + "[INFO] [1712609759.226099]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712609759.226482]: Ancestors: {DUL.Entity, SOMA.Reification, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609759.226823]: Subclasses: []\n", + "[INFO] [1712609759.227232]: Properties: [rdf-schema.comment, SOMA.isReificationOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.227873]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712609759.228254]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712609759.228609]: Inverse Restrictions: []\n", + "[INFO] [1712609759.228939]: -------------------\n", + "[INFO] [1712609759.229261]: SOMA.RelationalDatabase \n", + "[INFO] [1712609759.229597]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712609759.229968]: Ancestors: {SOMA.RelationalDatabase, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.230320]: Subclasses: []\n", + "[INFO] [1712609759.230726]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.231340]: Instances: []\n", + "[INFO] [1712609759.231733]: Direct Instances: []\n", + "[INFO] [1712609759.232075]: Inverse Restrictions: []\n", + "[INFO] [1712609759.232408]: -------------------\n", + "[INFO] [1712609759.232742]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712609759.233088]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712609759.233483]: Ancestors: {DUL.Entity, SOMA.RelationalQueryLanguage, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.233814]: Subclasses: []\n", + "[INFO] [1712609759.234203]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.234798]: Instances: []\n", + "[INFO] [1712609759.235157]: Direct Instances: []\n", + "[INFO] [1712609759.235493]: Inverse Restrictions: []\n", + "[INFO] [1712609759.235811]: -------------------\n", + "[INFO] [1712609759.236126]: SOMA.RelevantPart \n", + "[INFO] [1712609759.236451]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712609759.236814]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing, SOMA.RelevantPart}\n", + "[INFO] [1712609759.237144]: Subclasses: []\n", + "[INFO] [1712609759.237521]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.238085]: Instances: []\n", + "[INFO] [1712609759.238497]: Direct Instances: []\n", + "[INFO] [1712609759.238799]: Inverse Restrictions: []\n", + "[INFO] [1712609759.239057]: -------------------\n", + "[INFO] [1712609759.239303]: SOMA.Remembering \n", + "[INFO] [1712609759.239550]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712609759.239838]: Ancestors: {SOMA.Remembering, owl.Thing}\n", + "[INFO] [1712609759.240094]: Subclasses: []\n", + "[INFO] [1712609759.240398]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.240891]: Instances: []\n", + "[INFO] [1712609759.241181]: Direct Instances: []\n", + "[INFO] [1712609759.241524]: Inverse Restrictions: []\n", + "[INFO] [1712609759.241797]: -------------------\n", + "[INFO] [1712609759.242051]: SOMA.Retrospecting \n", + "[INFO] [1712609759.242306]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712609759.242584]: Ancestors: {SOMA.InformationAcquisition, SOMA.Retrospecting, owl.Thing}\n", + "[INFO] [1712609759.242851]: Subclasses: []\n", + "[INFO] [1712609759.243159]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.243649]: Instances: []\n", + "[INFO] [1712609759.243913]: Direct Instances: []\n", + "[INFO] [1712609759.244212]: Inverse Restrictions: []\n", + "[INFO] [1712609759.244456]: -------------------\n", + "[INFO] [1712609759.244694]: SOMA.RemovedObject \n", + "[INFO] [1712609759.244926]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712609759.245209]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExcludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.RemovedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.245451]: Subclasses: []\n", + "[INFO] [1712609759.245742]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.246244]: Instances: []\n", + "[INFO] [1712609759.246515]: Direct Instances: []\n", + "[INFO] [1712609759.246771]: Inverse Restrictions: []\n", + "[INFO] [1712609759.247002]: -------------------\n", + "[INFO] [1712609759.247233]: SOMA.Replanning \n", + "[INFO] [1712609759.247463]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712609759.247743]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, SOMA.Replanning, owl.Thing}\n", + "[INFO] [1712609759.248010]: Subclasses: []\n", + "[INFO] [1712609759.248307]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.248804]: Instances: []\n", + "[INFO] [1712609759.249074]: Direct Instances: []\n", + "[INFO] [1712609759.249538]: Inverse Restrictions: []\n", + "[INFO] [1712609759.249884]: -------------------\n", + "[INFO] [1712609759.250122]: SOMA.RevoluteJoint \n", + "[INFO] [1712609759.250373]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712609759.250664]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, SOMA.RevoluteJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.250927]: Subclasses: []\n", + "[INFO] [1712609759.251248]: Properties: [rdf-schema.comment, SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.251763]: Instances: []\n", + "[INFO] [1712609759.252029]: Direct Instances: []\n", + "[INFO] [1712609759.252282]: Inverse Restrictions: []\n", + "[INFO] [1712609759.252532]: -------------------\n", + "[INFO] [1712609759.252777]: SOMA.Surface \n", + "[INFO] [1712609759.253012]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712609759.253264]: Ancestors: {DUL.Entity, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", + "[INFO] [1712609759.253535]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712609759.253834]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.254334]: Instances: []\n", + "[INFO] [1712609759.254625]: Direct Instances: []\n", + "[INFO] [1712609759.254880]: Inverse Restrictions: []\n", + "[INFO] [1712609759.255125]: -------------------\n", + "[INFO] [1712609759.255364]: SOMA.Rubbing \n", + "[INFO] [1712609759.255598]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712609759.255880]: Ancestors: {SOMA.Rubbing, SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.256145]: Subclasses: []\n", + "[INFO] [1712609759.256442]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.256927]: Instances: []\n", + "[INFO] [1712609759.257200]: Direct Instances: []\n", + "[INFO] [1712609759.257463]: Inverse Restrictions: []\n", + "[INFO] [1712609759.257709]: -------------------\n", + "[INFO] [1712609759.257948]: SOMA.SaladBowl \n", + "[INFO] [1712609759.258188]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712609759.258484]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bowl, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.SaladBowl, SOMA.DesignedTool}\n", + "[INFO] [1712609759.258734]: Subclasses: []\n", + "[INFO] [1712609759.259025]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.259507]: Instances: []\n", + "[INFO] [1712609759.259783]: Direct Instances: []\n", + "[INFO] [1712609759.260047]: Inverse Restrictions: []\n", + "[INFO] [1712609759.260295]: -------------------\n", + "[INFO] [1712609759.260531]: SOMA.SaltShaker \n", + "[INFO] [1712609759.260769]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712609759.261046]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Shaker, SOMA.SaltShaker, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.261303]: Subclasses: []\n", + "[INFO] [1712609759.261599]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.262081]: Instances: []\n", + "[INFO] [1712609759.262372]: Direct Instances: []\n", + "[INFO] [1712609759.262639]: Inverse Restrictions: []\n", + "[INFO] [1712609759.262889]: -------------------\n", + "[INFO] [1712609759.263131]: SOMA.Scene \n", + "[INFO] [1712609759.263385]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712609759.263666]: Ancestors: {SOMA.Scene, DUL.Situation, DUL.Entity, owl.Thing}\n", + "[INFO] [1712609759.263914]: Subclasses: []\n", + "[INFO] [1712609759.264260]: Properties: [rdf-schema.comment, DUL.satisfies, rdf-schema.isDefinedBy, DUL.includesEvent]\n", + "[INFO] [1712609759.264753]: Instances: []\n", + "[INFO] [1712609759.265028]: Direct Instances: []\n", + "[INFO] [1712609759.265330]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712609759.265579]: -------------------\n", + "[INFO] [1712609759.265818]: SOMA.SelectedObject \n", + "[INFO] [1712609759.266053]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712609759.266334]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.SelectedObject, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.266588]: Subclasses: []\n", + "[INFO] [1712609759.266897]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.267391]: Instances: []\n", + "[INFO] [1712609759.267662]: Direct Instances: []\n", + "[INFO] [1712609759.267988]: Inverse Restrictions: []\n", + "[INFO] [1712609759.268240]: -------------------\n", + "[INFO] [1712609759.268481]: SOMA.Selecting \n", + "[INFO] [1712609759.268715]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712609759.268988]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.Selecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712609759.269244]: Subclasses: []\n", + "[INFO] [1712609759.269545]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.270025]: Instances: []\n", + "[INFO] [1712609759.270316]: Direct Instances: []\n", + "[INFO] [1712609759.270570]: Inverse Restrictions: []\n", + "[INFO] [1712609759.270800]: -------------------\n", + "[INFO] [1712609759.271041]: SOMA.SelectingItem \n", + "[INFO] [1712609759.271734]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712609759.272063]: Ancestors: {SOMA.SelectingItem, SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712609759.272339]: Subclasses: []\n", + "[INFO] [1712609759.272655]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.273160]: Instances: []\n", + "[INFO] [1712609759.273422]: Direct Instances: []\n", + "[INFO] [1712609759.273678]: Inverse Restrictions: []\n", + "[INFO] [1712609759.274031]: -------------------\n", + "[INFO] [1712609759.274312]: SOMA.SelfReflection \n", + "[INFO] [1712609759.274570]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712609759.274871]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MetacognitiveControlling, SOMA.MentalTask, SOMA.SelfReflection}\n", + "[INFO] [1712609759.275123]: Subclasses: []\n", + "[INFO] [1712609759.275420]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.275920]: Instances: []\n", + "[INFO] [1712609759.276187]: Direct Instances: []\n", + "[INFO] [1712609759.276432]: Inverse Restrictions: []\n", + "[INFO] [1712609759.276664]: -------------------\n", + "[INFO] [1712609759.276894]: SOMA.Serving \n", + "[INFO] [1712609759.278283]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712609759.278608]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Delivering, owl.Thing, SOMA.Serving, SOMA.Actuating}\n", + "[INFO] [1712609759.278862]: Subclasses: []\n", + "[INFO] [1712609759.279163]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.279670]: Instances: []\n", + "[INFO] [1712609759.279950]: Direct Instances: []\n", + "[INFO] [1712609759.280196]: Inverse Restrictions: []\n", + "[INFO] [1712609759.280430]: -------------------\n", + "[INFO] [1712609759.280659]: SOMA.SettingGripper \n", + "[INFO] [1712609759.280887]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712609759.281160]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.SettingGripper, owl.Thing, SOMA.AssumingPose}\n", + "[INFO] [1712609759.281425]: Subclasses: []\n", + "[INFO] [1712609759.281731]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.282233]: Instances: []\n", + "[INFO] [1712609759.282498]: Direct Instances: []\n", + "[INFO] [1712609759.282744]: Inverse Restrictions: []\n", + "[INFO] [1712609759.282981]: -------------------\n", + "[INFO] [1712609759.283221]: SOMA.6DPose \n", + "[INFO] [1712609759.283492]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712609759.283778]: Ancestors: {DUL.Entity, DUL.Region, SOMA.6DPose, DUL.Abstract, owl.Thing, DUL.SpaceRegion}\n", + "[INFO] [1712609759.284017]: Subclasses: []\n", + "[INFO] [1712609759.284309]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasPositionData]\n", + "[INFO] [1712609759.284811]: Instances: []\n", + "[INFO] [1712609759.285078]: Direct Instances: []\n", + "[INFO] [1712609759.285373]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712609759.285612]: -------------------\n", + "[INFO] [1712609759.285851]: SOMA.Sharpness \n", + "[INFO] [1712609759.286088]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609759.286371]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Sharpness, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609759.286627]: Subclasses: []\n", + "[INFO] [1712609759.286914]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.287397]: Instances: []\n", + "[INFO] [1712609759.287674]: Direct Instances: []\n", + "[INFO] [1712609759.287939]: Inverse Restrictions: []\n", + "[INFO] [1712609759.288181]: -------------------\n", + "[INFO] [1712609759.288417]: SOMA.Simulating \n", + "[INFO] [1712609759.288653]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712609759.288912]: Ancestors: {SOMA.DerivingInformation, SOMA.Simulating, SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing}\n", + "[INFO] [1712609759.289171]: Subclasses: []\n", + "[INFO] [1712609759.289467]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.289960]: Instances: []\n", + "[INFO] [1712609759.290235]: Direct Instances: []\n", + "[INFO] [1712609759.290493]: Inverse Restrictions: []\n", + "[INFO] [1712609759.290746]: -------------------\n", + "[INFO] [1712609759.290986]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712609759.291221]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712609759.291491]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.Simulation_Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.291744]: Subclasses: []\n", + "[INFO] [1712609759.292044]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.292539]: Instances: []\n", + "[INFO] [1712609759.292816]: Direct Instances: []\n", + "[INFO] [1712609759.293074]: Inverse Restrictions: []\n", + "[INFO] [1712609759.293326]: -------------------\n", + "[INFO] [1712609759.293564]: SOMA.Sink \n", + "[INFO] [1712609759.293804]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609759.294077]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Sink, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609759.294353]: Subclasses: []\n", + "[INFO] [1712609759.294657]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.295153]: Instances: []\n", + "[INFO] [1712609759.295436]: Direct Instances: []\n", + "[INFO] [1712609759.295698]: Inverse Restrictions: []\n", + "[INFO] [1712609759.295946]: -------------------\n", + "[INFO] [1712609759.296183]: SOMA.Size \n", + "[INFO] [1712609759.296419]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609759.296693]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Size, owl.Thing}\n", + "[INFO] [1712609759.296956]: Subclasses: []\n", + "[INFO] [1712609759.297251]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.297743]: Instances: []\n", + "[INFO] [1712609759.298010]: Direct Instances: []\n", + "[INFO] [1712609759.298267]: Inverse Restrictions: []\n", + "[INFO] [1712609759.298519]: -------------------\n", + "[INFO] [1712609759.298766]: SOMA.Slicing \n", + "[INFO] [1712609759.299003]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712609759.299271]: Ancestors: {SOMA.Cutting, SOMA.Slicing, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609759.299517]: Subclasses: []\n", + "[INFO] [1712609759.299796]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.300299]: Instances: []\n", + "[INFO] [1712609759.300572]: Direct Instances: []\n", + "[INFO] [1712609759.300822]: Inverse Restrictions: []\n", + "[INFO] [1712609759.301067]: -------------------\n", + "[INFO] [1712609759.301308]: SOMA.Sluggishness \n", + "[INFO] [1712609759.301542]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712609759.301818]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Sluggishness, DUL.Diagnosis}\n", + "[INFO] [1712609759.302067]: Subclasses: []\n", + "[INFO] [1712609759.302369]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.302875]: Instances: []\n", + "[INFO] [1712609759.303141]: Direct Instances: []\n", + "[INFO] [1712609759.303391]: Inverse Restrictions: []\n", + "[INFO] [1712609759.303632]: -------------------\n", + "[INFO] [1712609759.303869]: SOMA.SocialState \n", + "[INFO] [1712609759.304127]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712609759.304423]: Ancestors: {DUL.Entity, SOMA.SocialState, owl.Thing, SOMA.State, DUL.Event}\n", + "[INFO] [1712609759.304678]: Subclasses: []\n", + "[INFO] [1712609759.304973]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.305464]: Instances: []\n", + "[INFO] [1712609759.305720]: Direct Instances: []\n", + "[INFO] [1712609759.305974]: Inverse Restrictions: []\n", + "[INFO] [1712609759.306226]: -------------------\n", + "[INFO] [1712609759.306481]: SOMA.Sofa \n", + "[INFO] [1712609759.306727]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712609759.306993]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Sofa, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", + "[INFO] [1712609759.307255]: Subclasses: []\n", + "[INFO] [1712609759.307555]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712609759.308053]: Instances: []\n", + "[INFO] [1712609759.308320]: Direct Instances: []\n", + "[INFO] [1712609759.308574]: Inverse Restrictions: []\n", + "[INFO] [1712609759.308814]: -------------------\n", + "[INFO] [1712609759.309065]: SOMA.Software_Configuration \n", + "[INFO] [1712609759.309323]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712609759.309612]: Ancestors: {DUL.Entity, DUL.Collection, DUL.SocialObject, DUL.Configuration, SOMA.Software_Configuration, DUL.Object, owl.Thing}\n", + "[INFO] [1712609759.309859]: Subclasses: []\n", + "[INFO] [1712609759.310166]: Properties: [rdf-schema.label, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.310685]: Instances: []\n", + "[INFO] [1712609759.310962]: Direct Instances: []\n", + "[INFO] [1712609759.311314]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712609759.311560]: -------------------\n", + "[INFO] [1712609759.311800]: SOMA.SoftwareLibrary \n", + "[INFO] [1712609759.312040]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712609759.312325]: Ancestors: {DUL.Entity, SOMA.SoftwareLibrary, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.Software}\n", + "[INFO] [1712609759.312590]: Subclasses: []\n", + "[INFO] [1712609759.312883]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.313380]: Instances: []\n", + "[INFO] [1712609759.313666]: Direct Instances: []\n", + "[INFO] [1712609759.313931]: Inverse Restrictions: []\n", + "[INFO] [1712609759.314179]: -------------------\n", + "[INFO] [1712609759.314423]: SOMA.SoupPot \n", + "[INFO] [1712609759.314662]: Super classes: [SOMA.Pot]\n", + "[INFO] [1712609759.314934]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Pot, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.SoupPot, SOMA.DesignedTool}\n", + "[INFO] [1712609759.315194]: Subclasses: []\n", + "[INFO] [1712609759.315485]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.315979]: Instances: []\n", + "[INFO] [1712609759.316238]: Direct Instances: []\n", + "[INFO] [1712609759.316478]: Inverse Restrictions: []\n", + "[INFO] [1712609759.316715]: -------------------\n", + "[INFO] [1712609759.316951]: SOMA.SourceMaterialRole \n", + "[INFO] [1712609759.317193]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712609759.317462]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.SourceMaterialRole, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.317706]: Subclasses: []\n", + "[INFO] [1712609759.317989]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.318496]: Instances: []\n", + "[INFO] [1712609759.318769]: Direct Instances: []\n", + "[INFO] [1712609759.319023]: Inverse Restrictions: []\n", + "[INFO] [1712609759.319264]: -------------------\n", + "[INFO] [1712609759.319499]: SOMA.Spatula \n", + "[INFO] [1712609759.319743]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", + "[INFO] [1712609759.320028]: Ancestors: {DUL.Entity, SOMA.Spatula, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609759.320283]: Subclasses: []\n", + "[INFO] [1712609759.320575]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.321064]: Instances: []\n", + "[INFO] [1712609759.321337]: Direct Instances: []\n", + "[INFO] [1712609759.321592]: Inverse Restrictions: []\n", + "[INFO] [1712609759.321831]: -------------------\n", + "[INFO] [1712609759.322066]: SOMA.SphereShape \n", + "[INFO] [1712609759.322357]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712609759.322674]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, SOMA.SphereShape}\n", + "[INFO] [1712609759.322946]: Subclasses: []\n", + "[INFO] [1712609759.323261]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712609759.323766]: Instances: []\n", + "[INFO] [1712609759.324048]: Direct Instances: []\n", + "[INFO] [1712609759.324307]: Inverse Restrictions: []\n", + "[INFO] [1712609759.324555]: -------------------\n", + "[INFO] [1712609759.324795]: SOMA.Spoon \n", + "[INFO] [1712609759.325690]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712609759.326147]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, SOMA.Tableware, DUL.PhysicalObject, owl.Thing, SOMA.Spoon, SOMA.DesignedTool}\n", + "[INFO] [1712609759.326468]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", + "[INFO] [1712609759.326802]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712609759.327330]: Instances: []\n", + "[INFO] [1712609759.327623]: Direct Instances: []\n", + "[INFO] [1712609759.327920]: Inverse Restrictions: []\n", + "[INFO] [1712609759.328199]: -------------------\n", + "[INFO] [1712609759.328524]: SOMA.Standing \n", + "[INFO] [1712609759.328861]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712609759.329170]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Standing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.329448]: Subclasses: []\n", + "[INFO] [1712609759.329758]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.330263]: Instances: []\n", + "[INFO] [1712609759.330536]: Direct Instances: []\n", + "[INFO] [1712609759.330817]: Inverse Restrictions: []\n", + "[INFO] [1712609759.331069]: -------------------\n", + "[INFO] [1712609759.331328]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712609759.331573]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712609759.331845]: Ancestors: {DUL.Entity, SOMA.StaticFrictionAttribute, DUL.Region, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609759.332118]: Subclasses: []\n", + "[INFO] [1712609759.332443]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.332966]: Instances: []\n", + "[INFO] [1712609759.333246]: Direct Instances: []\n", + "[INFO] [1712609759.333504]: Inverse Restrictions: []\n", + "[INFO] [1712609759.333752]: -------------------\n", + "[INFO] [1712609759.334003]: SOMA.Status \n", + "[INFO] [1712609759.334273]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712609759.334559]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Status, DUL.SocialObject, DUL.Object, DUL.Parameter, owl.Thing}\n", + "[INFO] [1712609759.334820]: Subclasses: []\n", + "[INFO] [1712609759.335118]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.335634]: Instances: []\n", + "[INFO] [1712609759.335917]: Direct Instances: []\n", + "[INFO] [1712609759.336203]: Inverse Restrictions: []\n", + "[INFO] [1712609759.336453]: -------------------\n", + "[INFO] [1712609759.336703]: SOMA.StatusFailure \n", + "[INFO] [1712609759.336961]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609759.337236]: Ancestors: {SOMA.StatusFailure, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609759.337490]: Subclasses: []\n", + "[INFO] [1712609759.337784]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.338393]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712609759.338726]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712609759.339013]: Inverse Restrictions: []\n", + "[INFO] [1712609759.339270]: -------------------\n", + "[INFO] [1712609759.339524]: SOMA.StimulusRole \n", + "[INFO] [1712609759.339776]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712609759.340061]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.StimulusRole}\n", + "[INFO] [1712609759.340331]: Subclasses: []\n", + "[INFO] [1712609759.340637]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.341140]: Instances: []\n", + "[INFO] [1712609759.341413]: Direct Instances: []\n", + "[INFO] [1712609759.341672]: Inverse Restrictions: []\n", + "[INFO] [1712609759.341926]: -------------------\n", + "[INFO] [1712609759.342173]: SOMA.Stirring \n", + "[INFO] [1712609759.342430]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712609759.342711]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Stirring, SOMA.Mixing}\n", + "[INFO] [1712609759.342995]: Subclasses: []\n", + "[INFO] [1712609759.343335]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.343849]: Instances: []\n", + "[INFO] [1712609759.344112]: Direct Instances: []\n", + "[INFO] [1712609759.344361]: Inverse Restrictions: []\n", + "[INFO] [1712609759.344602]: -------------------\n", + "[INFO] [1712609759.344856]: SOMA.Storage \n", + "[INFO] [1712609759.345104]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712609759.345379]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, SOMA.Storage, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.345626]: Subclasses: []\n", + "[INFO] [1712609759.345926]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.346442]: Instances: []\n", + "[INFO] [1712609759.346724]: Direct Instances: []\n", + "[INFO] [1712609759.346978]: Inverse Restrictions: []\n", + "[INFO] [1712609759.347224]: -------------------\n", + "[INFO] [1712609759.347473]: SOMA.Stove \n", + "[INFO] [1712609759.347718]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", + "[INFO] [1712609759.348002]: Ancestors: {SOMA.Appliance, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Stove, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.348261]: Subclasses: []\n", + "[INFO] [1712609759.348556]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.349042]: Instances: []\n", + "[INFO] [1712609759.349314]: Direct Instances: []\n", + "[INFO] [1712609759.349574]: Inverse Restrictions: []\n", + "[INFO] [1712609759.349832]: -------------------\n", + "[INFO] [1712609759.350074]: SOMA.StructuralDesign \n", + "[INFO] [1712609759.350320]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712609759.350582]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.StructuralDesign, owl.Thing}\n", + "[INFO] [1712609759.350829]: Subclasses: []\n", + "[INFO] [1712609759.351127]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.351631]: Instances: []\n", + "[INFO] [1712609759.351897]: Direct Instances: []\n", + "[INFO] [1712609759.352144]: Inverse Restrictions: []\n", + "[INFO] [1712609759.352396]: -------------------\n", + "[INFO] [1712609759.352639]: SOMA.TaskInvocation \n", + "[INFO] [1712609759.352910]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712609759.353190]: Ancestors: {DUL.Workflow, DUL.Entity, DUL.Plan, DUL.SocialObject, DUL.Object, SOMA.TaskInvocation, DUL.Description, owl.Thing}\n", + "[INFO] [1712609759.353461]: Subclasses: []\n", + "[INFO] [1712609759.353770]: Properties: [rdf-schema.comment, DUL.definesTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.354262]: Instances: []\n", + "[INFO] [1712609759.354529]: Direct Instances: []\n", + "[INFO] [1712609759.354854]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712609759.355102]: -------------------\n", + "[INFO] [1712609759.355340]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712609759.355575]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712609759.355823]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609759.356085]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712609759.356380]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.356884]: Instances: []\n", + "[INFO] [1712609759.357144]: Direct Instances: []\n", + "[INFO] [1712609759.357396]: Inverse Restrictions: []\n", + "[INFO] [1712609759.357643]: -------------------\n", + "[INFO] [1712609759.357884]: SOMA.Successfulness \n", + "[INFO] [1712609759.358121]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712609759.358404]: Ancestors: {DUL.Entity, SOMA.Successfulness, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609759.358668]: Subclasses: []\n", + "[INFO] [1712609759.358971]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.359457]: Instances: []\n", + "[INFO] [1712609759.359728]: Direct Instances: []\n", + "[INFO] [1712609759.359981]: Inverse Restrictions: []\n", + "[INFO] [1712609759.360232]: -------------------\n", + "[INFO] [1712609759.360470]: SOMA.SugarDispenser \n", + "[INFO] [1712609759.360709]: Super classes: [SOMA.Dispenser]\n", + "[INFO] [1712609759.360977]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Dispenser, SOMA.SugarDispenser, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.361240]: Subclasses: []\n", + "[INFO] [1712609759.361534]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.362113]: Instances: []\n", + "[INFO] [1712609759.362408]: Direct Instances: []\n", + "[INFO] [1712609759.362667]: Inverse Restrictions: []\n", + "[INFO] [1712609759.362902]: -------------------\n", + "[INFO] [1712609759.363132]: SOMA.SupportState \n", + "[INFO] [1712609759.364176]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712609759.364505]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.SupportState, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.FunctionalControl}\n", + "[INFO] [1712609759.364773]: Subclasses: []\n", + "[INFO] [1712609759.365077]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.365571]: Instances: []\n", + "[INFO] [1712609759.365842]: Direct Instances: []\n", + "[INFO] [1712609759.366091]: Inverse Restrictions: []\n", + "[INFO] [1712609759.366336]: -------------------\n", + "[INFO] [1712609759.366566]: SOMA.Supporter \n", + "[INFO] [1712609759.366802]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712609759.367076]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Supporter, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609759.367344]: Subclasses: []\n", + "[INFO] [1712609759.367644]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.368135]: Instances: []\n", + "[INFO] [1712609759.368416]: Direct Instances: []\n", + "[INFO] [1712609759.368742]: Inverse Restrictions: []\n", + "[INFO] [1712609759.368985]: -------------------\n", + "[INFO] [1712609759.369219]: SOMA.SupportTheory \n", + "[INFO] [1712609759.369448]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712609759.369730]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.SupportTheory}\n", + "[INFO] [1712609759.369983]: Subclasses: []\n", + "[INFO] [1712609759.370285]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.370769]: Instances: []\n", + "[INFO] [1712609759.371050]: Direct Instances: []\n", + "[INFO] [1712609759.371303]: Inverse Restrictions: []\n", + "[INFO] [1712609759.371538]: -------------------\n", + "[INFO] [1712609759.371768]: SOMA.SupportedObject \n", + "[INFO] [1712609759.371999]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712609759.372272]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.SupportedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.372534]: Subclasses: []\n", + "[INFO] [1712609759.372831]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.373323]: Instances: []\n", + "[INFO] [1712609759.373580]: Direct Instances: []\n", + "[INFO] [1712609759.373837]: Inverse Restrictions: []\n", + "[INFO] [1712609759.374074]: -------------------\n", + "[INFO] [1712609759.374310]: SOMA.SymbolicReasoner \n", + "[INFO] [1712609759.374539]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712609759.374808]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SymbolicReasoner, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.375056]: Subclasses: []\n", + "[INFO] [1712609759.375357]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.375848]: Instances: []\n", + "[INFO] [1712609759.376100]: Direct Instances: []\n", + "[INFO] [1712609759.376345]: Inverse Restrictions: []\n", + "[INFO] [1712609759.376587]: -------------------\n", + "[INFO] [1712609759.376822]: SOMA.TableFork \n", + "[INFO] [1712609759.377052]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712609759.377324]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.TableFork, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712609759.377580]: Subclasses: []\n", + "[INFO] [1712609759.377872]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.378356]: Instances: []\n", + "[INFO] [1712609759.378636]: Direct Instances: []\n", + "[INFO] [1712609759.378891]: Inverse Restrictions: []\n", + "[INFO] [1712609759.379129]: -------------------\n", + "[INFO] [1712609759.379361]: SOMA.TableKnife \n", + "[INFO] [1712609759.379591]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712609759.379864]: Ancestors: {SOMA.KitchenKnife, DUL.Entity, SOMA.Knife, SOMA.TableKnife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", + "[INFO] [1712609759.380123]: Subclasses: []\n", + "[INFO] [1712609759.380421]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.380911]: Instances: []\n", + "[INFO] [1712609759.381167]: Direct Instances: []\n", + "[INFO] [1712609759.381417]: Inverse Restrictions: []\n", + "[INFO] [1712609759.381651]: -------------------\n", + "[INFO] [1712609759.381890]: SOMA.TableSpoon \n", + "[INFO] [1712609759.382170]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712609759.382452]: Ancestors: {SOMA.TableSpoon, DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, SOMA.Tableware, DUL.PhysicalObject, owl.Thing, SOMA.Spoon, SOMA.DesignedTool}\n", + "[INFO] [1712609759.382705]: Subclasses: []\n", + "[INFO] [1712609759.383001]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.383504]: Instances: []\n", + "[INFO] [1712609759.383773]: Direct Instances: []\n", + "[INFO] [1712609759.384043]: Inverse Restrictions: []\n", + "[INFO] [1712609759.384289]: -------------------\n", + "[INFO] [1712609759.384527]: SOMA.TeaSpoon \n", + "[INFO] [1712609759.384758]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712609759.385036]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, SOMA.Tableware, DUL.PhysicalObject, owl.Thing, SOMA.Spoon, SOMA.TeaSpoon, SOMA.DesignedTool}\n", + "[INFO] [1712609759.385287]: Subclasses: []\n", + "[INFO] [1712609759.385571]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.386057]: Instances: []\n", + "[INFO] [1712609759.386428]: Direct Instances: []\n", + "[INFO] [1712609759.386719]: Inverse Restrictions: []\n", + "[INFO] [1712609759.386979]: -------------------\n", + "[INFO] [1712609759.387240]: SOMA.Tap \n", + "[INFO] [1712609759.387481]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712609759.387750]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Tap, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609759.388014]: Subclasses: []\n", + "[INFO] [1712609759.388310]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.388803]: Instances: []\n", + "[INFO] [1712609759.389062]: Direct Instances: []\n", + "[INFO] [1712609759.389318]: Inverse Restrictions: []\n", + "[INFO] [1712609759.389563]: -------------------\n", + "[INFO] [1712609759.389803]: SOMA.Tapping \n", + "[INFO] [1712609759.390038]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712609759.390312]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Tapping, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.390575]: Subclasses: []\n", + "[INFO] [1712609759.390872]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.391366]: Instances: []\n", + "[INFO] [1712609759.391627]: Direct Instances: []\n", + "[INFO] [1712609759.391870]: Inverse Restrictions: []\n", + "[INFO] [1712609759.392101]: -------------------\n", + "[INFO] [1712609759.392349]: SOMA.Taxis \n", + "[INFO] [1712609759.392594]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712609759.392861]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, SOMA.Taxis, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.393110]: Subclasses: []\n", + "[INFO] [1712609759.393401]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.393903]: Instances: []\n", + "[INFO] [1712609759.394173]: Direct Instances: []\n", + "[INFO] [1712609759.394427]: Inverse Restrictions: []\n", + "[INFO] [1712609759.394673]: -------------------\n", + "[INFO] [1712609759.394909]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712609759.395168]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712609759.395443]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609759.395703]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712609759.395998]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609759.396499]: Instances: []\n", + "[INFO] [1712609759.396780]: Direct Instances: []\n", + "[INFO] [1712609759.397041]: Inverse Restrictions: []\n", + "[INFO] [1712609759.397281]: -------------------\n", + "[INFO] [1712609759.397525]: SOMA.Temperature \n", + "[INFO] [1712609759.397793]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712609759.398077]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Temperature, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609759.398337]: Subclasses: []\n", + "[INFO] [1712609759.398628]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.399112]: Instances: []\n", + "[INFO] [1712609759.399386]: Direct Instances: []\n", + "[INFO] [1712609759.400069]: Inverse Restrictions: []\n", + "[INFO] [1712609759.400342]: -------------------\n", + "[INFO] [1712609759.400586]: SOMA.TemperatureRegion \n", + "[INFO] [1712609759.400834]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609759.401126]: Ancestors: {DUL.Entity, SOMA.TemperatureRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609759.401385]: Subclasses: []\n", + "[INFO] [1712609759.401683]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.402182]: Instances: []\n", + "[INFO] [1712609759.402458]: Direct Instances: []\n", + "[INFO] [1712609759.402803]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712609759.403053]: -------------------\n", + "[INFO] [1712609759.403291]: SOMA.Tempering \n", + "[INFO] [1712609759.403560]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712609759.403814]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, SOMA.Disposition}\n", + "[INFO] [1712609759.404088]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712609759.404390]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.404890]: Instances: []\n", + "[INFO] [1712609759.405166]: Direct Instances: []\n", + "[INFO] [1712609759.405438]: Inverse Restrictions: []\n", + "[INFO] [1712609759.405678]: -------------------\n", + "[INFO] [1712609759.405920]: SOMA.TemperingByCooling \n", + "[INFO] [1712609759.406164]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712609759.406436]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, SOMA.Disposition, SOMA.TemperingByCooling}\n", + "[INFO] [1712609759.406690]: Subclasses: []\n", + "[INFO] [1712609759.406987]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.407470]: Instances: []\n", + "[INFO] [1712609759.407726]: Direct Instances: []\n", + "[INFO] [1712609759.407985]: Inverse Restrictions: []\n", + "[INFO] [1712609759.408246]: -------------------\n", + "[INFO] [1712609759.408491]: SOMA.ThinkAloud \n", + "[INFO] [1712609759.408724]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712609759.409019]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ThinkAloud}\n", + "[INFO] [1712609759.409296]: Subclasses: []\n", + "[INFO] [1712609759.409599]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.410098]: Instances: []\n", + "[INFO] [1712609759.410388]: Direct Instances: []\n", + "[INFO] [1712609759.410645]: Inverse Restrictions: []\n", + "[INFO] [1712609759.410884]: -------------------\n", + "[INFO] [1712609759.411117]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712609759.411347]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609759.411621]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudActionTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.411885]: Subclasses: []\n", + "[INFO] [1712609759.412183]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.412669]: Instances: []\n", + "[INFO] [1712609759.412950]: Direct Instances: []\n", + "[INFO] [1712609759.413204]: Inverse Restrictions: []\n", + "[INFO] [1712609759.413442]: -------------------\n", + "[INFO] [1712609759.413677]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712609759.413903]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712609759.414189]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.414454]: Subclasses: []\n", + "[INFO] [1712609759.414773]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.415278]: Instances: []\n", + "[INFO] [1712609759.415547]: Direct Instances: []\n", + "[INFO] [1712609759.415805]: Inverse Restrictions: []\n", + "[INFO] [1712609759.416043]: -------------------\n", + "[INFO] [1712609759.416285]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712609759.416524]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609759.416791]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.417052]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712609759.417351]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.417844]: Instances: []\n", + "[INFO] [1712609759.418113]: Direct Instances: []\n", + "[INFO] [1712609759.418387]: Inverse Restrictions: []\n", + "[INFO] [1712609759.418623]: -------------------\n", + "[INFO] [1712609759.418858]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712609759.419099]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609759.419374]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.419625]: Subclasses: []\n", + "[INFO] [1712609759.419917]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.420394]: Instances: []\n", + "[INFO] [1712609759.420665]: Direct Instances: []\n", + "[INFO] [1712609759.420914]: Inverse Restrictions: []\n", + "[INFO] [1712609759.421149]: -------------------\n", + "[INFO] [1712609759.421379]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712609759.421605]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609759.421885]: Ancestors: {SOMA.ThinkAloudOpinionTopic, DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.422135]: Subclasses: []\n", + "[INFO] [1712609759.422432]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.422918]: Instances: []\n", + "[INFO] [1712609759.423191]: Direct Instances: []\n", + "[INFO] [1712609759.423435]: Inverse Restrictions: []\n", + "[INFO] [1712609759.423665]: -------------------\n", + "[INFO] [1712609759.423893]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712609759.424118]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609759.424399]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.424648]: Subclasses: []\n", + "[INFO] [1712609759.424942]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.425441]: Instances: []\n", + "[INFO] [1712609759.425709]: Direct Instances: []\n", + "[INFO] [1712609759.425966]: Inverse Restrictions: []\n", + "[INFO] [1712609759.426207]: -------------------\n", + "[INFO] [1712609759.426436]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712609759.426660]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609759.426933]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudPlanTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.427183]: Subclasses: []\n", + "[INFO] [1712609759.427472]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.427949]: Instances: []\n", + "[INFO] [1712609759.428233]: Direct Instances: []\n", + "[INFO] [1712609759.428490]: Inverse Restrictions: []\n", + "[INFO] [1712609759.428729]: -------------------\n", + "[INFO] [1712609759.428965]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712609759.429194]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712609759.429462]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, SOMA.ThinkAloudSceneKnowledgeTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609759.429726]: Subclasses: []\n", + "[INFO] [1712609759.430031]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.430533]: Instances: []\n", + "[INFO] [1712609759.430793]: Direct Instances: []\n", + "[INFO] [1712609759.431042]: Inverse Restrictions: []\n", + "[INFO] [1712609759.431270]: -------------------\n", + "[INFO] [1712609759.431496]: SOMA.Threshold \n", + "[INFO] [1712609759.431734]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712609759.432004]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.Threshold, DUL.Object, DUL.Parameter, owl.Thing}\n", + "[INFO] [1712609759.432243]: Subclasses: []\n", + "[INFO] [1712609759.432527]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.433001]: Instances: []\n", + "[INFO] [1712609759.433275]: Direct Instances: []\n", + "[INFO] [1712609759.433526]: Inverse Restrictions: []\n", + "[INFO] [1712609759.433757]: -------------------\n", + "[INFO] [1712609759.433984]: SOMA.Throwing \n", + "[INFO] [1712609759.434216]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712609759.434500]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Throwing, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.434771]: Subclasses: []\n", + "[INFO] [1712609759.435068]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.435554]: Instances: []\n", + "[INFO] [1712609759.435838]: Direct Instances: []\n", + "[INFO] [1712609759.436095]: Inverse Restrictions: []\n", + "[INFO] [1712609759.436340]: -------------------\n", + "[INFO] [1712609759.436577]: SOMA.TimeRole \n", + "[INFO] [1712609759.436805]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712609759.437070]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.437320]: Subclasses: []\n", + "[INFO] [1712609759.437613]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.438091]: Instances: []\n", + "[INFO] [1712609759.438432]: Direct Instances: []\n", + "[INFO] [1712609759.438730]: Inverse Restrictions: []\n", + "[INFO] [1712609759.438988]: -------------------\n", + "[INFO] [1712609759.439231]: SOMA.Transporting \n", + "[INFO] [1712609759.439468]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712609759.439738]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", + "[INFO] [1712609759.439985]: Subclasses: []\n", + "[INFO] [1712609759.440278]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.440783]: Instances: []\n", + "[INFO] [1712609759.441063]: Direct Instances: []\n", + "[INFO] [1712609759.441312]: Inverse Restrictions: []\n", + "[INFO] [1712609759.441542]: -------------------\n", + "[INFO] [1712609759.441776]: SOMA.TrashContainer \n", + "[INFO] [1712609759.442013]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712609759.442297]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.TrashContainer}\n", + "[INFO] [1712609759.442544]: Subclasses: []\n", + "[INFO] [1712609759.442835]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.443340]: Instances: []\n", + "[INFO] [1712609759.443605]: Direct Instances: []\n", + "[INFO] [1712609759.443848]: Inverse Restrictions: []\n", + "[INFO] [1712609759.444083]: -------------------\n", + "[INFO] [1712609759.444309]: SOMA.Triplestore \n", + "[INFO] [1712609759.444538]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712609759.444826]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Triplestore, owl.Thing, SOMA.Database, DUL.Role, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.445077]: Subclasses: []\n", + "[INFO] [1712609759.445375]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.445874]: Instances: []\n", + "[INFO] [1712609759.446163]: Direct Instances: []\n", + "[INFO] [1712609759.446434]: Inverse Restrictions: []\n", + "[INFO] [1712609759.446674]: -------------------\n", + "[INFO] [1712609759.446910]: SOMA.Turning \n", + "[INFO] [1712609759.447138]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712609759.447409]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Turning, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.447666]: Subclasses: []\n", + "[INFO] [1712609759.447962]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.448447]: Instances: []\n", + "[INFO] [1712609759.448704]: Direct Instances: []\n", + "[INFO] [1712609759.448947]: Inverse Restrictions: []\n", + "[INFO] [1712609759.449187]: -------------------\n", + "[INFO] [1712609759.449433]: SOMA.UnavailableSoftware \n", + "[INFO] [1712609759.449666]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712609759.449932]: Ancestors: {DUL.Entity, SOMA.UnavailableSoftware, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609759.450489]: Subclasses: []\n", + "[INFO] [1712609759.450876]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.451425]: Instances: []\n", + "[INFO] [1712609759.451724]: Direct Instances: []\n", + "[INFO] [1712609759.452010]: Inverse Restrictions: []\n", + "[INFO] [1712609759.452273]: -------------------\n", + "[INFO] [1712609759.452523]: SOMA.Unsuccessfulness \n", + "[INFO] [1712609759.452824]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712609759.453109]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609759.453380]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712609759.453680]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.454186]: Instances: []\n", + "[INFO] [1712609759.454476]: Direct Instances: []\n", + "[INFO] [1712609759.454744]: Inverse Restrictions: []\n", + "[INFO] [1712609759.454997]: -------------------\n", + "[INFO] [1712609759.455244]: SOMA.VideoData \n", + "[INFO] [1712609759.455486]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712609759.455775]: Ancestors: {DUL.Entity, SOMA.VideoData, DUL.InformationEntity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609759.456023]: Subclasses: []\n", + "[INFO] [1712609759.456320]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.456805]: Instances: []\n", + "[INFO] [1712609759.457066]: Direct Instances: []\n", + "[INFO] [1712609759.457328]: Inverse Restrictions: []\n", + "[INFO] [1712609759.457570]: -------------------\n", + "[INFO] [1712609759.457805]: SOMA.Wardrobe \n", + "[INFO] [1712609759.458033]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712609759.458323]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Cupboard, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture, SOMA.Wardrobe}\n", + "[INFO] [1712609759.458595]: Subclasses: []\n", + "[INFO] [1712609759.458896]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.459386]: Instances: []\n", + "[INFO] [1712609759.459661]: Direct Instances: []\n", + "[INFO] [1712609759.459925]: Inverse Restrictions: []\n", + "[INFO] [1712609759.460161]: -------------------\n", + "[INFO] [1712609759.460396]: SOMA.WaterBottle \n", + "[INFO] [1712609759.460621]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712609759.460886]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.WaterBottle}\n", + "[INFO] [1712609759.461148]: Subclasses: []\n", + "[INFO] [1712609759.461437]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.461914]: Instances: []\n", + "[INFO] [1712609759.462180]: Direct Instances: []\n", + "[INFO] [1712609759.462431]: Inverse Restrictions: []\n", + "[INFO] [1712609759.462665]: -------------------\n", + "[INFO] [1712609759.462909]: SOMA.WaterGlass \n", + "[INFO] [1712609759.463140]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712609759.463411]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, SOMA.WaterGlass, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool, SOMA.Glass}\n", + "[INFO] [1712609759.463643]: Subclasses: []\n", + "[INFO] [1712609759.463922]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.464424]: Instances: []\n", + "[INFO] [1712609759.464695]: Direct Instances: []\n", + "[INFO] [1712609759.464943]: Inverse Restrictions: []\n", + "[INFO] [1712609759.465178]: -------------------\n", + "[INFO] [1712609759.465413]: SOMA.WineBottle \n", + "[INFO] [1712609759.465642]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712609759.465926]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.WineBottle, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.466183]: Subclasses: []\n", + "[INFO] [1712609759.466478]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.466954]: Instances: []\n", + "[INFO] [1712609759.467227]: Direct Instances: []\n", + "[INFO] [1712609759.467479]: Inverse Restrictions: []\n", + "[INFO] [1712609759.467715]: -------------------\n", + "[INFO] [1712609759.467945]: SOMA.WineGlass \n", + "[INFO] [1712609759.468173]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712609759.468442]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.WineGlass, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool, SOMA.Glass}\n", + "[INFO] [1712609759.468700]: Subclasses: []\n", + "[INFO] [1712609759.468995]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.469483]: Instances: []\n", + "[INFO] [1712609759.469740]: Direct Instances: []\n", + "[INFO] [1712609759.469981]: Inverse Restrictions: []\n", + "[INFO] [1712609759.470214]: -------------------\n", + "[INFO] [1712609759.470455]: SOMA.3DPosition \n", + "[INFO] [1712609759.470732]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712609759.471010]: Ancestors: {DUL.Entity, SOMA.3DPosition, DUL.Region, DUL.Abstract, owl.Thing, DUL.SpaceRegion}\n", + "[INFO] [1712609759.471255]: Subclasses: []\n", + "[INFO] [1712609759.471547]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasPositionData]\n", + "[INFO] [1712609759.472050]: Instances: []\n", + "[INFO] [1712609759.472338]: Direct Instances: []\n", + "[INFO] [1712609759.472597]: Inverse Restrictions: []\n", + "[INFO] [1712609759.472840]: -------------------\n", + "[INFO] [1712609759.473075]: SOMA.Affordance \n", + "[INFO] [1712609759.473335]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712609759.473590]: Ancestors: {DUL.Entity, SOMA.Affordance, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609759.473870]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712609759.474178]: Properties: [rdf-schema.comment, SOMA.definesBearer, SOMA.definesTrigger, DUL.definesTask, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.474693]: Instances: []\n", + "[INFO] [1712609759.474974]: Direct Instances: []\n", + "[INFO] [1712609759.475380]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712609759.475646]: -------------------\n", + "[INFO] [1712609759.475904]: SOMA.Disposition \n", + "[INFO] [1712609759.476174]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712609759.476435]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.476712]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712609759.477012]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.477573]: Instances: []\n", + "[INFO] [1712609759.477844]: Direct Instances: []\n", + "[INFO] [1712609759.478165]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712609759.478430]: -------------------\n", + "[INFO] [1712609759.478681]: SOMA.Setpoint \n", + "[INFO] [1712609759.478923]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712609759.479165]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Parameter, SOMA.Setpoint, owl.Thing}\n", + "[INFO] [1712609759.479404]: Subclasses: []\n", + "[INFO] [1712609759.479687]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.480193]: Instances: []\n", + "[INFO] [1712609759.480459]: Direct Instances: []\n", + "[INFO] [1712609759.480715]: Inverse Restrictions: []\n", + "[INFO] [1712609759.480952]: -------------------\n", + "[INFO] [1712609759.481181]: SOMA.Answer \n", + "[INFO] [1712609759.481426]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712609759.481682]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Answer, SOMA.Message}\n", + "[INFO] [1712609759.481928]: Subclasses: []\n", + "[INFO] [1712609759.482218]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.482708]: Instances: []\n", + "[INFO] [1712609759.482976]: Direct Instances: []\n", + "[INFO] [1712609759.483271]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712609759.483514]: -------------------\n", + "[INFO] [1712609759.483750]: SOMA.Message \n", + "[INFO] [1712609759.483993]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712609759.484255]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Message}\n", + "[INFO] [1712609759.484509]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712609759.484809]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.485311]: Instances: []\n", + "[INFO] [1712609759.485605]: Direct Instances: []\n", + "[INFO] [1712609759.485928]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609759.486183]: -------------------\n", + "[INFO] [1712609759.486425]: SOMA.ProcessType \n", + "[INFO] [1712609759.486673]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712609759.486937]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609759.487210]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712609759.487509]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.488078]: Instances: []\n", + "[INFO] [1712609759.488355]: Direct Instances: []\n", + "[INFO] [1712609759.488687]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712609759.488947]: -------------------\n", + "[INFO] [1712609759.489200]: SOMA.OrderedElement \n", + "[INFO] [1712609759.489466]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712609759.489738]: Ancestors: {SOMA.OrderedElement, SOMA.Singleton, owl.Thing}\n", + "[INFO] [1712609759.490021]: Subclasses: []\n", + "[INFO] [1712609759.490423]: Properties: [rdf-schema.comment, SOMA.isOrderedBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.490988]: Instances: []\n", + "[INFO] [1712609759.491458]: Direct Instances: []\n", + "[INFO] [1712609759.491921]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712609759.492228]: -------------------\n", + "[INFO] [1712609759.492515]: SOMA.System \n", + "[INFO] [1712609759.492780]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712609759.493056]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.493338]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712609759.493666]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.494245]: Instances: []\n", + "[INFO] [1712609759.494557]: Direct Instances: []\n", + "[INFO] [1712609759.494834]: Inverse Restrictions: []\n", + "[INFO] [1712609759.495077]: -------------------\n", + "[INFO] [1712609759.495317]: SOMA.Binding \n", + "[INFO] [1712609759.495608]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712609759.495880]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing}\n", + "[INFO] [1712609759.496156]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712609759.496477]: Properties: [rdf-schema.comment, SOMA.hasBindingFiller, Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, SOMA.hasBindingRole]\n", + "[INFO] [1712609759.497009]: Instances: []\n", + "[INFO] [1712609759.497294]: Direct Instances: []\n", + "[INFO] [1712609759.497567]: Inverse Restrictions: []\n", + "[INFO] [1712609759.497808]: -------------------\n", + "[INFO] [1712609759.498046]: SOMA.Joint \n", + "[INFO] [1712609759.498324]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712609759.498582]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.498855]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712609759.499174]: Properties: [rdf-schema.comment, SOMA.hasChildLink, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", + "[INFO] [1712609759.499702]: Instances: []\n", + "[INFO] [1712609759.499979]: Direct Instances: []\n", + "[INFO] [1712609759.500250]: Inverse Restrictions: []\n", + "[INFO] [1712609759.500698]: -------------------\n", + "[INFO] [1712609759.501117]: SOMA.Color \n", + "[INFO] [1712609759.501524]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712609759.501927]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609759.502329]: Subclasses: []\n", + "[INFO] [1712609759.502689]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609759.503217]: Instances: []\n", + "[INFO] [1712609759.503501]: Direct Instances: []\n", + "[INFO] [1712609759.503815]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712609759.504130]: -------------------\n", + "[INFO] [1712609759.504421]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712609759.504691]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609759.504973]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.ExecutionStateRegion, owl.Thing}\n", + "[INFO] [1712609759.505422]: Subclasses: []\n", + "[INFO] [1712609759.505881]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.506545]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712609759.506969]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712609759.507372]: Inverse Restrictions: []\n", + "[INFO] [1712609759.507763]: -------------------\n", + "[INFO] [1712609759.508140]: SOMA.Feature \n", + "[INFO] [1712609759.508547]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712609759.508839]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing}\n", + "[INFO] [1712609759.509123]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712609759.509447]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isFeatureOf]\n", + "[INFO] [1712609759.509956]: Instances: []\n", + "[INFO] [1712609759.510288]: Direct Instances: []\n", + "[INFO] [1712609759.510663]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712609759.510946]: -------------------\n", + "[INFO] [1712609759.511211]: SOMA.FrictionAttribute \n", + "[INFO] [1712609759.511494]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712609759.511778]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609759.512089]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712609759.512441]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasFrictionValue]\n", + "[INFO] [1712609759.513027]: Instances: []\n", + "[INFO] [1712609759.513356]: Direct Instances: []\n", + "[INFO] [1712609759.513676]: Inverse Restrictions: []\n", + "[INFO] [1712609759.513958]: -------------------\n", + "[INFO] [1712609759.514253]: SOMA.SituationTransition \n", + "[INFO] [1712609759.514544]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712609759.514847]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.SituationTransition, DUL.Transition, owl.Thing}\n", + "[INFO] [1712609759.515187]: Subclasses: []\n", + "[INFO] [1712609759.515566]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.516187]: Instances: []\n", + "[INFO] [1712609759.516501]: Direct Instances: []\n", + "[INFO] [1712609759.518603]: Inverse Restrictions: []\n", + "[INFO] [1712609759.518888]: -------------------\n", + "[INFO] [1712609759.519142]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712609759.519377]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712609759.519625]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation}\n", + "[INFO] [1712609759.519877]: Subclasses: []\n", + "[INFO] [1712609759.520177]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.520662]: Instances: []\n", + "[INFO] [1712609759.520923]: Direct Instances: []\n", + "[INFO] [1712609759.522308]: Inverse Restrictions: []\n", + "[INFO] [1712609759.522590]: -------------------\n", + "[INFO] [1712609759.522842]: SOMA.JointLimit \n", + "[INFO] [1712609759.523086]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712609759.523329]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.JointLimit, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609759.523581]: Subclasses: []\n", + "[INFO] [1712609759.523874]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.524385]: Instances: []\n", + "[INFO] [1712609759.524660]: Direct Instances: []\n", + "[INFO] [1712609759.524985]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712609759.525265]: -------------------\n", + "[INFO] [1712609759.525514]: SOMA.JointState \n", + "[INFO] [1712609759.525770]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712609759.526017]: Ancestors: {DUL.Entity, DUL.Region, SOMA.JointState, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609759.526276]: Subclasses: []\n", + "[INFO] [1712609759.526581]: Properties: [SOMA.hasJointPosition, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointVelocity]\n", + "[INFO] [1712609759.527269]: Instances: []\n", + "[INFO] [1712609759.527602]: Direct Instances: []\n", + "[INFO] [1712609759.527959]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712609759.528239]: -------------------\n", + "[INFO] [1712609759.528509]: SOMA.Localization \n", + "[INFO] [1712609759.528783]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712609759.529050]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609759.529314]: Subclasses: []\n", + "[INFO] [1712609759.529636]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.530149]: Instances: []\n", + "[INFO] [1712609759.530443]: Direct Instances: []\n", + "[INFO] [1712609759.531605]: Inverse Restrictions: []\n", + "[INFO] [1712609759.531898]: -------------------\n", + "[INFO] [1712609759.532162]: SOMA.MassAttribute \n", + "[INFO] [1712609759.532424]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712609759.532700]: Ancestors: {DUL.Entity, SOMA.MassAttribute, DUL.Region, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609759.532963]: Subclasses: []\n", + "[INFO] [1712609759.533271]: Properties: [rdf-schema.comment, SOMA.hasMassValue, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609759.533774]: Instances: []\n", + "[INFO] [1712609759.534064]: Direct Instances: []\n", + "[INFO] [1712609759.534347]: Inverse Restrictions: []\n", + "[INFO] [1712609759.534616]: -------------------\n", + "[INFO] [1712609759.534872]: SOMA.NetForce \n", + "[INFO] [1712609759.535118]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712609759.535378]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.NetForce, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", + "[INFO] [1712609759.535646]: Subclasses: []\n", + "[INFO] [1712609759.535956]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.536465]: Instances: []\n", + "[INFO] [1712609759.536728]: Direct Instances: []\n", + "[INFO] [1712609759.536996]: Inverse Restrictions: []\n", + "[INFO] [1712609759.537252]: -------------------\n", + "[INFO] [1712609759.537503]: SOMA.Succedence \n", + "[INFO] [1712609759.537763]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712609759.538014]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing}\n", + "[INFO] [1712609759.538273]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712609759.538599]: Properties: [rdf-schema.comment, SOMA.hasPredecessor, rdf-schema.isDefinedBy, SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence)]\n", + "[INFO] [1712609759.539112]: Instances: []\n", + "[INFO] [1712609759.539383]: Direct Instances: []\n", + "[INFO] [1712609759.539655]: Inverse Restrictions: []\n", + "[INFO] [1712609759.539900]: -------------------\n", + "[INFO] [1712609759.540159]: SOMA.Preference \n", + "[INFO] [1712609759.540413]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712609759.540667]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.Preference, SOMA.SocialQuality, owl.Thing}\n", + "[INFO] [1712609759.540915]: Subclasses: []\n", + "[INFO] [1712609759.541215]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.541734]: Instances: []\n", + "[INFO] [1712609759.542017]: Direct Instances: []\n", + "[INFO] [1712609759.542404]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712609759.542663]: -------------------\n", + "[INFO] [1712609759.542920]: SOMA.Shape \n", + "[INFO] [1712609759.543182]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712609759.543440]: Ancestors: {SOMA.Shape, DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609759.543699]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", + "[INFO] [1712609759.544005]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.544518]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712609759.544803]: Direct Instances: []\n", + "[INFO] [1712609759.545936]: Inverse Restrictions: []\n", + "[INFO] [1712609759.546204]: -------------------\n", + "[INFO] [1712609759.546465]: SOMA.ShapeRegion \n", + "[INFO] [1712609759.546733]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712609759.546995]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609759.547261]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712609759.547570]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.548083]: Instances: []\n", + "[INFO] [1712609759.548372]: Direct Instances: []\n", + "[INFO] [1712609759.549106]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712609759.549402]: -------------------\n", + "[INFO] [1712609759.549665]: SOMA.SoftwareInstance \n", + "[INFO] [1712609759.549926]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712609759.550187]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", + "[INFO] [1712609759.550442]: Subclasses: []\n", + "[INFO] [1712609759.550760]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.actsFor, SOMA.isDesignedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.551273]: Instances: []\n", + "[INFO] [1712609759.551554]: Direct Instances: []\n", + "[INFO] [1712609759.551884]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712609759.552157]: -------------------\n", + "[INFO] [1712609759.552429]: SOMA.StateType \n", + "[INFO] [1712609759.552702]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712609759.552956]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609759.553226]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712609759.553530]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.554059]: Instances: []\n", + "[INFO] [1712609759.554345]: Direct Instances: []\n", + "[INFO] [1712609759.554684]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712609759.554946]: -------------------\n", + "[INFO] [1712609759.555198]: SOMA.PhysicalEffector \n", + "[INFO] [1712609759.555456]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712609759.555722]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609759.555988]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712609759.556298]: Properties: [rdf-schema.comment, Inverse(DUL.hasPart), rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.556810]: Instances: []\n", + "[INFO] [1712609759.557096]: Direct Instances: []\n", + "[INFO] [1712609759.557367]: Inverse Restrictions: []\n", + "[INFO] [1712609759.557620]: -------------------\n", + "[INFO] [1712609759.557883]: SOMA.QueryingTask \n", + "[INFO] [1712609759.558155]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712609759.558431]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712609759.558688]: Subclasses: []\n", + "[INFO] [1712609759.558995]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.559510]: Instances: []\n", + "[INFO] [1712609759.559787]: Direct Instances: []\n", + "[INFO] [1712609759.560123]: Inverse Restrictions: []\n", + "[INFO] [1712609759.560378]: -------------------\n", + "[INFO] [1712609759.560625]: SOMA.Order \n", + "[INFO] [1712609759.560880]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712609759.561142]: Ancestors: {DUL.FormalEntity, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.Order}\n", + "[INFO] [1712609759.561398]: Subclasses: []\n", + "[INFO] [1712609759.561701]: Properties: [rdf-schema.comment, SOMA.orders, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.562200]: Instances: []\n", + "[INFO] [1712609759.562493]: Direct Instances: []\n", + "[INFO] [1712609759.562866]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712609759.563127]: -------------------\n", + "[INFO] [1712609759.563379]: SOMA.State \n", + "[INFO] [1712609759.563629]: Super classes: [DUL.Event]\n", + "[INFO] [1712609759.563885]: Ancestors: {DUL.Entity, owl.Thing, DUL.Event, SOMA.State}\n", + "[INFO] [1712609759.564154]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712609759.564456]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.564963]: Instances: []\n", + "[INFO] [1712609759.565224]: Direct Instances: []\n", + "[INFO] [1712609759.565725]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712609759.566004]: -------------------\n", + "[INFO] [1712609759.566270]: SOMA.Transient \n", + "[INFO] [1712609759.566533]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712609759.566789]: Ancestors: {DUL.Entity, SOMA.Transient, DUL.Object, owl.Thing}\n", + "[INFO] [1712609759.567040]: Subclasses: []\n", + "[INFO] [1712609759.567349]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.transitionsFrom]\n", + "[INFO] [1712609759.567846]: Instances: []\n", + "[INFO] [1712609759.568111]: Direct Instances: []\n", + "[INFO] [1712609759.568369]: Inverse Restrictions: []\n", + "[INFO] [1712609759.568610]: -------------------\n", + "[INFO] [1712609759.568854]: SOMA.ColorRegion \n", + "[INFO] [1712609759.569111]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712609759.569366]: Ancestors: {DUL.Entity, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609759.569625]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712609759.569924]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.570440]: Instances: []\n", + "[INFO] [1712609759.570717]: Direct Instances: []\n", + "[INFO] [1712609759.571045]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712609759.571298]: -------------------\n", + "[INFO] [1712609759.571541]: SOMA.ForceAttribute \n", + "[INFO] [1712609759.571794]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712609759.572061]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", + "[INFO] [1712609759.572323]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712609759.572631]: Properties: [rdf-schema.comment, SOMA.hasForceValue, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.573129]: Instances: []\n", + "[INFO] [1712609759.573411]: Direct Instances: []\n", + "[INFO] [1712609759.573680]: Inverse Restrictions: []\n", + "[INFO] [1712609759.573933]: -------------------\n", + "[INFO] [1712609759.574188]: SOMA.API_Specification \n", + "[INFO] [1712609759.574436]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712609759.574689]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712609759.574961]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712609759.575270]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.575783]: Instances: []\n", + "[INFO] [1712609759.576077]: Direct Instances: []\n", + "[INFO] [1712609759.576347]: Inverse Restrictions: []\n", + "[INFO] [1712609759.576599]: -------------------\n", + "[INFO] [1712609759.576849]: SOMA.InterfaceSpecification \n", + "[INFO] [1712609759.577090]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712609759.577342]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712609759.577617]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712609759.577926]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.578438]: Instances: []\n", + "[INFO] [1712609759.578707]: Direct Instances: []\n", + "[INFO] [1712609759.579038]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712609759.579296]: -------------------\n", + "[INFO] [1712609759.579541]: SOMA.AbductiveReasoning \n", + "[INFO] [1712609759.579788]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712609759.580039]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.AbductiveReasoning, SOMA.Reasoning}\n", + "[INFO] [1712609759.580297]: Subclasses: []\n", + "[INFO] [1712609759.580600]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.581091]: Instances: []\n", + "[INFO] [1712609759.581352]: Direct Instances: []\n", + "[INFO] [1712609759.581601]: Inverse Restrictions: []\n", + "[INFO] [1712609759.581857]: -------------------\n", + "[INFO] [1712609759.582108]: SOMA.Reasoning \n", + "[INFO] [1712609759.582361]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609759.582609]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Reasoning, owl.Thing}\n", + "[INFO] [1712609759.582865]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712609759.583172]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.583672]: Instances: []\n", + "[INFO] [1712609759.583946]: Direct Instances: []\n", + "[INFO] [1712609759.584213]: Inverse Restrictions: []\n", + "[INFO] [1712609759.584463]: -------------------\n", + "[INFO] [1712609759.584707]: SOMA.Accessor \n", + "[INFO] [1712609759.584952]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712609759.585210]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, SOMA.Instrument, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.585475]: Subclasses: []\n", + "[INFO] [1712609759.585775]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.586272]: Instances: []\n", + "[INFO] [1712609759.586553]: Direct Instances: []\n", + "[INFO] [1712609759.586813]: Inverse Restrictions: []\n", + "[INFO] [1712609759.587056]: -------------------\n", + "[INFO] [1712609759.587297]: SOMA.Instrument \n", + "[INFO] [1712609759.587533]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712609759.587797]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.588061]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712609759.588352]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.588871]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609759.589150]: Direct Instances: []\n", + "[INFO] [1712609759.589532]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609759.589788]: -------------------\n", + "[INFO] [1712609759.590037]: SOMA.Accident \n", + "[INFO] [1712609759.590298]: Super classes: [DUL.Event]\n", + "[INFO] [1712609759.590559]: Ancestors: {DUL.Entity, SOMA.Accident, DUL.Event, owl.Thing}\n", + "[INFO] [1712609759.590811]: Subclasses: []\n", + "[INFO] [1712609759.591113]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.591604]: Instances: []\n", + "[INFO] [1712609759.591882]: Direct Instances: []\n", + "[INFO] [1712609759.592142]: Inverse Restrictions: []\n", + "[INFO] [1712609759.592390]: -------------------\n", + "[INFO] [1712609759.592633]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712609759.592882]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712609759.593144]: Ancestors: {DUL.Entity, DUL.Plan, SOMA.ActionExecutionPlan, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609759.593398]: Subclasses: []\n", + "[INFO] [1712609759.593693]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.594191]: Instances: []\n", + "[INFO] [1712609759.594470]: Direct Instances: []\n", + "[INFO] [1712609759.594737]: Inverse Restrictions: []\n", + "[INFO] [1712609759.594987]: -------------------\n", + "[INFO] [1712609759.595231]: SOMA.Actuating \n", + "[INFO] [1712609759.595472]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609759.595738]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.596026]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712609759.596333]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.596875]: Instances: []\n", + "[INFO] [1712609759.597165]: Direct Instances: []\n", + "[INFO] [1712609759.597445]: Inverse Restrictions: []\n", + "[INFO] [1712609759.597696]: -------------------\n", + "[INFO] [1712609759.597940]: SOMA.PhysicalTask \n", + "[INFO] [1712609759.598205]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712609759.598478]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712609759.598766]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712609759.599084]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.599729]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", + "[INFO] [1712609759.600028]: Direct Instances: []\n", + "[INFO] [1712609759.600353]: Inverse Restrictions: []\n", + "[INFO] [1712609759.600614]: -------------------\n", + "[INFO] [1712609759.600866]: SOMA.AestheticDesign \n", + "[INFO] [1712609759.601120]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712609759.601391]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.AestheticDesign, owl.Thing}\n", + "[INFO] [1712609759.601650]: Subclasses: []\n", + "[INFO] [1712609759.601954]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.602460]: Instances: []\n", + "[INFO] [1712609759.602748]: Direct Instances: []\n", + "[INFO] [1712609759.603014]: Inverse Restrictions: []\n", + "[INFO] [1712609759.603272]: -------------------\n", + "[INFO] [1712609759.603524]: SOMA.AgentRole \n", + "[INFO] [1712609759.603781]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712609759.604038]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.AgentRole}\n", + "[INFO] [1712609759.604304]: Subclasses: []\n", + "[INFO] [1712609759.604611]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.605108]: Instances: []\n", + "[INFO] [1712609759.605372]: Direct Instances: []\n", + "[INFO] [1712609759.605674]: Inverse Restrictions: []\n", + "[INFO] [1712609759.605929]: -------------------\n", + "[INFO] [1712609759.606183]: SOMA.CausativeRole \n", + "[INFO] [1712609759.606434]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609759.606695]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.606977]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712609759.607290]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.607818]: Instances: []\n", + "[INFO] [1712609759.608094]: Direct Instances: []\n", + "[INFO] [1712609759.608367]: Inverse Restrictions: []\n", + "[INFO] [1712609759.608624]: -------------------\n", + "[INFO] [1712609759.608873]: SOMA.Agonist \n", + "[INFO] [1712609759.609118]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609759.609370]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.Agonist, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.609621]: Subclasses: []\n", + "[INFO] [1712609759.609932]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.610441]: Instances: []\n", + "[INFO] [1712609759.610965]: Direct Instances: []\n", + "[INFO] [1712609759.611435]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712609759.611877]: -------------------\n", + "[INFO] [1712609759.612330]: SOMA.Patient \n", + "[INFO] [1712609759.612764]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609759.613200]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.613675]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712609759.614101]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.614809]: Instances: []\n", + "[INFO] [1712609759.615278]: Direct Instances: []\n", + "[INFO] [1712609759.615885]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609759.616273]: -------------------\n", + "[INFO] [1712609759.616650]: SOMA.Algorithm \n", + "[INFO] [1712609759.617012]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712609759.617378]: Ancestors: {DUL.Entity, DUL.Plan, DUL.SocialObject, SOMA.Algorithm, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609759.617750]: Subclasses: []\n", + "[INFO] [1712609759.618167]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.618773]: Instances: []\n", + "[INFO] [1712609759.619139]: Direct Instances: []\n", + "[INFO] [1712609759.619564]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712609759.619916]: -------------------\n", + "[INFO] [1712609759.620260]: SOMA.Alteration \n", + "[INFO] [1712609759.620594]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712609759.620945]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609759.621309]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712609759.621708]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.622315]: Instances: []\n", + "[INFO] [1712609759.622677]: Direct Instances: []\n", + "[INFO] [1712609759.623037]: Inverse Restrictions: []\n", + "[INFO] [1712609759.623394]: -------------------\n", + "[INFO] [1712609759.623740]: SOMA.AlterativeInteraction \n", + "[INFO] [1712609759.624077]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712609759.624429]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AlterativeInteraction, SOMA.ProcessType}\n", + "[INFO] [1712609759.624768]: Subclasses: []\n", + "[INFO] [1712609759.625162]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.625773]: Instances: []\n", + "[INFO] [1712609759.626155]: Direct Instances: []\n", + "[INFO] [1712609759.626550]: Inverse Restrictions: []\n", + "[INFO] [1712609759.626901]: -------------------\n", + "[INFO] [1712609759.627243]: SOMA.ForceInteraction \n", + "[INFO] [1712609759.627611]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712609759.627976]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609759.628336]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712609759.628759]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712609759.629374]: Instances: []\n", + "[INFO] [1712609759.629762]: Direct Instances: []\n", + "[INFO] [1712609759.630127]: Inverse Restrictions: []\n", + "[INFO] [1712609759.630478]: -------------------\n", + "[INFO] [1712609759.630828]: SOMA.PreservativeInteraction \n", + "[INFO] [1712609759.631169]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712609759.631535]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, SOMA.PreservativeInteraction, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609759.631884]: Subclasses: []\n", + "[INFO] [1712609759.632275]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.632864]: Instances: []\n", + "[INFO] [1712609759.633235]: Direct Instances: []\n", + "[INFO] [1712609759.633631]: Inverse Restrictions: []\n", + "[INFO] [1712609759.633979]: -------------------\n", + "[INFO] [1712609759.634322]: SOMA.AlteredObject \n", + "[INFO] [1712609759.634662]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609759.635006]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.635373]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712609759.635773]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.636365]: Instances: []\n", + "[INFO] [1712609759.636728]: Direct Instances: []\n", + "[INFO] [1712609759.637172]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712609759.637527]: -------------------\n", + "[INFO] [1712609759.637863]: SOMA.Amateurish \n", + "[INFO] [1712609759.638200]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712609759.638557]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609759.638929]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712609759.639333]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.639936]: Instances: []\n", + "[INFO] [1712609759.640297]: Direct Instances: []\n", + "[INFO] [1712609759.640657]: Inverse Restrictions: []\n", + "[INFO] [1712609759.640999]: -------------------\n", + "[INFO] [1712609759.641339]: SOMA.AnsweringTask \n", + "[INFO] [1712609759.641668]: Super classes: [owl.Thing]\n", + "[INFO] [1712609759.641996]: Ancestors: {SOMA.AnsweringTask, owl.Thing}\n", + "[INFO] [1712609759.642399]: Subclasses: []\n", + "[INFO] [1712609759.642780]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.643309]: Instances: []\n", + "[INFO] [1712609759.643598]: Direct Instances: []\n", + "[INFO] [1712609759.643916]: Inverse Restrictions: []\n", + "[INFO] [1712609759.644181]: -------------------\n", + "[INFO] [1712609759.644428]: SOMA.CommandingTask \n", + "[INFO] [1712609759.644680]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712609759.645036]: Ancestors: {SOMA.IllocutionaryTask, SOMA.CommandingTask, owl.Thing}\n", + "[INFO] [1712609759.645367]: Subclasses: []\n", + "[INFO] [1712609759.645765]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.646357]: Instances: []\n", + "[INFO] [1712609759.646726]: Direct Instances: []\n", + "[INFO] [1712609759.647141]: Inverse Restrictions: []\n", + "[INFO] [1712609759.647490]: -------------------\n", + "[INFO] [1712609759.647829]: SOMA.IllocutionaryTask \n", + "[INFO] [1712609759.648177]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712609759.648513]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712609759.648872]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712609759.649228]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.649767]: Instances: []\n", + "[INFO] [1712609759.650057]: Direct Instances: []\n", + "[INFO] [1712609759.650424]: Inverse Restrictions: []\n", + "[INFO] [1712609759.650707]: -------------------\n", + "[INFO] [1712609759.650978]: SOMA.Antagonist \n", + "[INFO] [1712609759.651232]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609759.651495]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Antagonist}\n", + "[INFO] [1712609759.652095]: Subclasses: []\n", + "[INFO] [1712609759.652537]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.653214]: Instances: []\n", + "[INFO] [1712609759.653642]: Direct Instances: []\n", + "[INFO] [1712609759.654213]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712609759.654843]: -------------------\n", + "[INFO] [1712609759.655413]: SOMA.Appliance \n", + "[INFO] [1712609759.656008]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712609759.656603]: Ancestors: {SOMA.Appliance, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.657229]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712609759.657902]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.658870]: Instances: []\n", + "[INFO] [1712609759.659415]: Direct Instances: []\n", + "[INFO] [1712609759.659997]: Inverse Restrictions: []\n", + "[INFO] [1712609759.660550]: -------------------\n", + "[INFO] [1712609759.661062]: SOMA.Approaching \n", + "[INFO] [1712609759.661630]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609759.662210]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Approaching, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.662738]: Subclasses: []\n", + "[INFO] [1712609759.663329]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.664241]: Instances: []\n", + "[INFO] [1712609759.664785]: Direct Instances: []\n", + "[INFO] [1712609759.665288]: Inverse Restrictions: []\n", + "[INFO] [1712609759.665772]: -------------------\n", + "[INFO] [1712609759.666279]: SOMA.Locomotion \n", + "[INFO] [1712609759.666702]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712609759.667083]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.667469]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712609759.667895]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.668513]: Instances: []\n", + "[INFO] [1712609759.668886]: Direct Instances: []\n", + "[INFO] [1712609759.669264]: Inverse Restrictions: []\n", + "[INFO] [1712609759.669620]: -------------------\n", + "[INFO] [1712609759.669965]: SOMA.ArchiveFile \n", + "[INFO] [1712609759.670313]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712609759.670673]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ArchiveFile, owl.Thing, SOMA.Digital_File, DUL.InformationRealization}\n", + "[INFO] [1712609759.671021]: Subclasses: []\n", + "[INFO] [1712609759.671448]: Properties: [rdf-schema.comment, DUL.realizes, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.672050]: Instances: []\n", + "[INFO] [1712609759.672411]: Direct Instances: []\n", + "[INFO] [1712609759.672760]: Inverse Restrictions: []\n", + "[INFO] [1712609759.673102]: -------------------\n", + "[INFO] [1712609759.673453]: SOMA.ArchiveText \n", + "[INFO] [1712609759.673801]: Super classes: [owl.Thing]\n", + "[INFO] [1712609759.674157]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", + "[INFO] [1712609759.674509]: Subclasses: []\n", + "[INFO] [1712609759.674905]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.675512]: Instances: []\n", + "[INFO] [1712609759.675893]: Direct Instances: []\n", + "[INFO] [1712609759.676346]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712609759.676703]: -------------------\n", + "[INFO] [1712609759.677059]: SOMA.Digital_File \n", + "[INFO] [1712609759.677440]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712609759.677809]: Ancestors: {DUL.Entity, DUL.InformationEntity, owl.Thing, SOMA.Digital_File, DUL.InformationRealization}\n", + "[INFO] [1712609759.678174]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712609759.678586]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasNameString, DUL.realizes, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.679209]: Instances: []\n", + "[INFO] [1712609759.679578]: Direct Instances: []\n", + "[INFO] [1712609759.680769]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712609759.681128]: -------------------\n", + "[INFO] [1712609759.681475]: SOMA.ArchiveFormat \n", + "[INFO] [1712609759.681824]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712609759.682189]: Ancestors: {SOMA.ArchiveFormat, DUL.Entity, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.682550]: Subclasses: []\n", + "[INFO] [1712609759.682951]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.683560]: Instances: []\n", + "[INFO] [1712609759.683941]: Direct Instances: []\n", + "[INFO] [1712609759.684328]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712609759.684675]: -------------------\n", + "[INFO] [1712609759.685019]: SOMA.File_format \n", + "[INFO] [1712609759.685367]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609759.685710]: Ancestors: {DUL.Entity, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.686062]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712609759.686485]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.687047]: Instances: []\n", + "[INFO] [1712609759.687347]: Direct Instances: []\n", + "[INFO] [1712609759.687634]: Inverse Restrictions: []\n", + "[INFO] [1712609759.687893]: -------------------\n", + "[INFO] [1712609759.688268]: SOMA.FileConfiguration \n", + "[INFO] [1712609759.688629]: Super classes: [owl.Thing]\n", + "[INFO] [1712609759.688997]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", + "[INFO] [1712609759.689364]: Subclasses: []\n", + "[INFO] [1712609759.689782]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.690419]: Instances: []\n", + "[INFO] [1712609759.690822]: Direct Instances: []\n", + "[INFO] [1712609759.691255]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712609759.691622]: -------------------\n", + "[INFO] [1712609759.691889]: SOMA.Structured_Text \n", + "[INFO] [1712609759.692134]: Super classes: [owl.Thing]\n", + "[INFO] [1712609759.692386]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", + "[INFO] [1712609759.692654]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712609759.692958]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.693454]: Instances: []\n", + "[INFO] [1712609759.693709]: Direct Instances: []\n", + "[INFO] [1712609759.694155]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712609759.694411]: -------------------\n", + "[INFO] [1712609759.694653]: SOMA.AreaSurveying \n", + "[INFO] [1712609759.694895]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712609759.695134]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", + "[INFO] [1712609759.695379]: Subclasses: []\n", + "[INFO] [1712609759.695681]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.696175]: Instances: []\n", + "[INFO] [1712609759.696440]: Direct Instances: []\n", + "[INFO] [1712609759.696688]: Inverse Restrictions: []\n", + "[INFO] [1712609759.696919]: -------------------\n", + "[INFO] [1712609759.697165]: SOMA.Perceiving \n", + "[INFO] [1712609759.697415]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712609759.697658]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712609759.697908]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712609759.698210]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.698735]: Instances: []\n", + "[INFO] [1712609759.699019]: Direct Instances: []\n", + "[INFO] [1712609759.699277]: Inverse Restrictions: []\n", + "[INFO] [1712609759.699518]: -------------------\n", + "[INFO] [1712609759.699769]: SOMA.Arm \n", + "[INFO] [1712609759.700021]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712609759.700280]: Ancestors: {DUL.Entity, SOMA.Arm, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609759.700525]: Subclasses: []\n", + "[INFO] [1712609759.700811]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.701293]: Instances: []\n", + "[INFO] [1712609759.701571]: Direct Instances: []\n", + "[INFO] [1712609759.701865]: Inverse Restrictions: []\n", + "[INFO] [1712609759.702118]: -------------------\n", + "[INFO] [1712609759.702379]: SOMA.Limb \n", + "[INFO] [1712609759.702622]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712609759.702877]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609759.703149]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712609759.703459]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.703972]: Instances: []\n", + "[INFO] [1712609759.704242]: Direct Instances: []\n", + "[INFO] [1712609759.704559]: Inverse Restrictions: []\n", + "[INFO] [1712609759.704824]: -------------------\n", + "[INFO] [1712609759.705072]: SOMA.Arranging \n", + "[INFO] [1712609759.705318]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712609759.705573]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Arranging, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing}\n", + "[INFO] [1712609759.705822]: Subclasses: []\n", + "[INFO] [1712609759.706103]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.706614]: Instances: []\n", + "[INFO] [1712609759.706886]: Direct Instances: []\n", + "[INFO] [1712609759.707143]: Inverse Restrictions: []\n", + "[INFO] [1712609759.707387]: -------------------\n", + "[INFO] [1712609759.707631]: SOMA.Constructing \n", + "[INFO] [1712609759.707873]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609759.708131]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing}\n", + "[INFO] [1712609759.708393]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712609759.708700]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.709212]: Instances: []\n", + "[INFO] [1712609759.709487]: Direct Instances: []\n", + "[INFO] [1712609759.709763]: Inverse Restrictions: []\n", + "[INFO] [1712609759.710003]: -------------------\n", + "[INFO] [1712609759.710253]: SOMA.ArtificialAgent \n", + "[INFO] [1712609759.710511]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712609759.710772]: Ancestors: {DUL.Entity, DUL.PhysicalAgent, DUL.Object, DUL.Agent, DUL.PhysicalObject, owl.Thing, SOMA.ArtificialAgent}\n", + "[INFO] [1712609759.711026]: Subclasses: []\n", + "[INFO] [1712609759.711321]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.711810]: Instances: []\n", + "[INFO] [1712609759.712089]: Direct Instances: []\n", + "[INFO] [1712609759.712344]: Inverse Restrictions: []\n", + "[INFO] [1712609759.712583]: -------------------\n", + "[INFO] [1712609759.712816]: SOMA.Assembling \n", + "[INFO] [1712609759.713050]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712609759.713299]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Assembling}\n", + "[INFO] [1712609759.713551]: Subclasses: []\n", + "[INFO] [1712609759.713840]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.714332]: Instances: []\n", + "[INFO] [1712609759.714599]: Direct Instances: []\n", + "[INFO] [1712609759.714860]: Inverse Restrictions: []\n", + "[INFO] [1712609759.715105]: -------------------\n", + "[INFO] [1712609759.715350]: SOMA.AssertionTask \n", + "[INFO] [1712609759.715600]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712609759.715856]: Ancestors: {SOMA.IllocutionaryTask, SOMA.AssertionTask, owl.Thing}\n", + "[INFO] [1712609759.716109]: Subclasses: []\n", + "[INFO] [1712609759.716407]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.716895]: Instances: []\n", + "[INFO] [1712609759.717174]: Direct Instances: []\n", + "[INFO] [1712609759.717427]: Inverse Restrictions: []\n", + "[INFO] [1712609759.717666]: -------------------\n", + "[INFO] [1712609759.717905]: SOMA.DeclarativeClause \n", + "[INFO] [1712609759.718144]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712609759.718401]: Ancestors: {SOMA.DeclarativeClause, DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609759.718663]: Subclasses: []\n", + "[INFO] [1712609759.718962]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.719454]: Instances: []\n", + "[INFO] [1712609759.719716]: Direct Instances: []\n", + "[INFO] [1712609759.720091]: Inverse Restrictions: []\n", + "[INFO] [1712609759.720359]: -------------------\n", + "[INFO] [1712609759.720611]: SOMA.AssumingArmPose \n", + "[INFO] [1712609759.720861]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712609759.721115]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose, SOMA.AssumingArmPose}\n", + "[INFO] [1712609759.721367]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712609759.721670]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.722177]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712609759.722444]: Direct Instances: []\n", + "[INFO] [1712609759.722694]: Inverse Restrictions: []\n", + "[INFO] [1712609759.722939]: -------------------\n", + "[INFO] [1712609759.723185]: SOMA.AssumingPose \n", + "[INFO] [1712609759.723419]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609759.723670]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose}\n", + "[INFO] [1712609759.723919]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712609759.724211]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.724733]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712609759.725005]: Direct Instances: []\n", + "[INFO] [1712609759.725262]: Inverse Restrictions: []\n", + "[INFO] [1712609759.725501]: -------------------\n", + "[INFO] [1712609759.725744]: SOMA.AttentionShift \n", + "[INFO] [1712609759.725995]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712609759.726262]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.AttentionShift, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609759.726523]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712609759.726815]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.727324]: Instances: []\n", + "[INFO] [1712609759.727594]: Direct Instances: []\n", + "[INFO] [1712609759.727847]: Inverse Restrictions: []\n", + "[INFO] [1712609759.728087]: -------------------\n", + "[INFO] [1712609759.728484]: SOMA.MentalTask \n", + "[INFO] [1712609759.729046]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712609759.729489]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609759.729930]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712609759.730468]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.731117]: Instances: []\n", + "[INFO] [1712609759.731516]: Direct Instances: []\n", + "[INFO] [1712609759.731943]: Inverse Restrictions: []\n", + "[INFO] [1712609759.732314]: -------------------\n", + "[INFO] [1712609759.732691]: SOMA.AvoidedObject \n", + "[INFO] [1712609759.733066]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609759.733367]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.AvoidedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.733639]: Subclasses: []\n", + "[INFO] [1712609759.733950]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.734465]: Instances: []\n", + "[INFO] [1712609759.734736]: Direct Instances: []\n", + "[INFO] [1712609759.734990]: Inverse Restrictions: []\n", + "[INFO] [1712609759.735232]: -------------------\n", + "[INFO] [1712609759.735486]: SOMA.Avoiding \n", + "[INFO] [1712609759.735729]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712609759.736074]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Avoiding, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", + "[INFO] [1712609759.736354]: Subclasses: []\n", + "[INFO] [1712609759.736663]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.737186]: Instances: []\n", + "[INFO] [1712609759.737474]: Direct Instances: []\n", + "[INFO] [1712609759.737741]: Inverse Restrictions: []\n", + "[INFO] [1712609759.737987]: -------------------\n", + "[INFO] [1712609759.738236]: SOMA.Navigating \n", + "[INFO] [1712609759.738480]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609759.738736]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", + "[INFO] [1712609759.738999]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712609759.739293]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.739793]: Instances: [SOMA.navigating]\n", + "[INFO] [1712609759.740079]: Direct Instances: [SOMA.navigating]\n", + "[INFO] [1712609759.740352]: Inverse Restrictions: []\n", + "[INFO] [1712609759.740600]: -------------------\n", + "[INFO] [1712609759.740851]: SOMA.Barrier \n", + "[INFO] [1712609759.741091]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712609759.741359]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609759.741651]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712609759.741966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.742487]: Instances: []\n", + "[INFO] [1712609759.742763]: Direct Instances: []\n", + "[INFO] [1712609759.743073]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712609759.743331]: -------------------\n", + "[INFO] [1712609759.743579]: SOMA.Restrictor \n", + "[INFO] [1712609759.743816]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712609759.744065]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609759.744334]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712609759.744632]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.745161]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609759.745461]: Direct Instances: []\n", + "[INFO] [1712609759.745814]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712609759.746066]: -------------------\n", + "[INFO] [1712609759.746418]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712609759.746784]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712609759.747160]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609759.747543]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712609759.747872]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609759.748506]: Instances: []\n", + "[INFO] [1712609759.748798]: Direct Instances: []\n", + "[INFO] [1712609759.749065]: Inverse Restrictions: []\n", + "[INFO] [1712609759.749317]: -------------------\n", + "[INFO] [1712609759.749568]: SOMA.BeneficiaryRole \n", + "[INFO] [1712609759.749806]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712609759.750053]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.750311]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712609759.750614]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.751114]: Instances: []\n", + "[INFO] [1712609759.751377]: Direct Instances: []\n", + "[INFO] [1712609759.751630]: Inverse Restrictions: []\n", + "[INFO] [1712609759.751869]: -------------------\n", + "[INFO] [1712609759.752123]: SOMA.GoalRole \n", + "[INFO] [1712609759.752366]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609759.752611]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.752861]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712609759.753151]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.753665]: Instances: []\n", + "[INFO] [1712609759.753933]: Direct Instances: []\n", + "[INFO] [1712609759.754235]: Inverse Restrictions: []\n", + "[INFO] [1712609759.754534]: -------------------\n", + "[INFO] [1712609759.754792]: SOMA.CounterfactualBinding \n", + "[INFO] [1712609759.755045]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712609759.755316]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, SOMA.CounterfactualBinding}\n", + "[INFO] [1712609759.755580]: Subclasses: []\n", + "[INFO] [1712609759.755895]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.756416]: Instances: []\n", + "[INFO] [1712609759.756707]: Direct Instances: []\n", + "[INFO] [1712609759.757042]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712609759.757294]: -------------------\n", + "[INFO] [1712609759.757567]: SOMA.FactualBinding \n", + "[INFO] [1712609759.757817]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712609759.758080]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, SOMA.FactualBinding, owl.Thing}\n", + "[INFO] [1712609759.758355]: Subclasses: []\n", + "[INFO] [1712609759.758665]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.759185]: Instances: []\n", + "[INFO] [1712609759.759466]: Direct Instances: []\n", + "[INFO] [1712609759.759814]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712609759.760069]: -------------------\n", + "[INFO] [1712609759.760314]: SOMA.RoleFillerBinding \n", + "[INFO] [1712609759.760562]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712609759.760821]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.RoleFillerBinding, SOMA.Binding, owl.Thing}\n", + "[INFO] [1712609759.761075]: Subclasses: []\n", + "[INFO] [1712609759.761382]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.761877]: Instances: []\n", + "[INFO] [1712609759.762192]: Direct Instances: []\n", + "[INFO] [1712609759.762559]: Inverse Restrictions: []\n", + "[INFO] [1712609759.762839]: -------------------\n", + "[INFO] [1712609759.763099]: SOMA.RoleRoleBinding \n", + "[INFO] [1712609759.763360]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712609759.763616]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, SOMA.RoleRoleBinding, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing}\n", + "[INFO] [1712609759.763866]: Subclasses: []\n", + "[INFO] [1712609759.764167]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.764673]: Instances: []\n", + "[INFO] [1712609759.764950]: Direct Instances: []\n", + "[INFO] [1712609759.765246]: Inverse Restrictions: []\n", + "[INFO] [1712609759.765493]: -------------------\n", + "[INFO] [1712609759.765735]: SOMA.DesignedComponent \n", + "[INFO] [1712609759.765989]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712609759.766271]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609759.766556]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712609759.766867]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712609759.767390]: Instances: []\n", + "[INFO] [1712609759.767673]: Direct Instances: []\n", + "[INFO] [1712609759.767940]: Inverse Restrictions: []\n", + "[INFO] [1712609759.768185]: -------------------\n", + "[INFO] [1712609759.768425]: SOMA.Blockage \n", + "[INFO] [1712609759.768676]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712609759.768941]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.769204]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712609759.769504]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.770000]: Instances: []\n", + "[INFO] [1712609759.770422]: Direct Instances: []\n", + "[INFO] [1712609759.770703]: Inverse Restrictions: []\n", + "[INFO] [1712609759.770954]: -------------------\n", + "[INFO] [1712609759.771198]: SOMA.BlockedObject \n", + "[INFO] [1712609759.771441]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609759.771705]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", + "[INFO] [1712609759.771972]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712609759.772273]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.772771]: Instances: []\n", + "[INFO] [1712609759.773050]: Direct Instances: []\n", + "[INFO] [1712609759.773354]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712609759.773606]: -------------------\n", + "[INFO] [1712609759.773847]: SOMA.BodyMovement \n", + "[INFO] [1712609759.774155]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712609759.774545]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.774863]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712609759.775191]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.775731]: Instances: []\n", + "[INFO] [1712609759.776031]: Direct Instances: []\n", + "[INFO] [1712609759.776309]: Inverse Restrictions: []\n", + "[INFO] [1712609759.776563]: -------------------\n", + "[INFO] [1712609759.776816]: SOMA.Motion \n", + "[INFO] [1712609759.777061]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712609759.777326]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609759.777596]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712609759.777902]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.778464]: Instances: []\n", + "[INFO] [1712609759.778759]: Direct Instances: []\n", + "[INFO] [1712609759.779038]: Inverse Restrictions: []\n", + "[INFO] [1712609759.779294]: -------------------\n", + "[INFO] [1712609759.779537]: SOMA.Boiling \n", + "[INFO] [1712609759.779785]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712609759.780048]: Ancestors: {SOMA.Boiling, DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Vaporizing, SOMA.ProcessType}\n", + "[INFO] [1712609759.780315]: Subclasses: []\n", + "[INFO] [1712609759.780617]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.781110]: Instances: []\n", + "[INFO] [1712609759.781390]: Direct Instances: []\n", + "[INFO] [1712609759.781648]: Inverse Restrictions: []\n", + "[INFO] [1712609759.781896]: -------------------\n", + "[INFO] [1712609759.782140]: SOMA.Vaporizing \n", + "[INFO] [1712609759.782393]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712609759.782655]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Vaporizing, SOMA.ProcessType}\n", + "[INFO] [1712609759.782926]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712609759.783237]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712609759.783735]: Instances: []\n", + "[INFO] [1712609759.783998]: Direct Instances: []\n", + "[INFO] [1712609759.784251]: Inverse Restrictions: []\n", + "[INFO] [1712609759.784504]: -------------------\n", + "[INFO] [1712609759.784750]: SOMA.DesignedContainer \n", + "[INFO] [1712609759.784993]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712609759.785238]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609759.785518]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712609759.785844]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712609759.786456]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712609759.786733]: Direct Instances: []\n", + "[INFO] [1712609759.786998]: Inverse Restrictions: []\n", + "[INFO] [1712609759.787251]: -------------------\n", + "[INFO] [1712609759.787495]: SOMA.BoxShape \n", + "[INFO] [1712609759.787742]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712609759.787986]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, SOMA.BoxShape, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609759.788232]: Subclasses: []\n", + "[INFO] [1712609759.788545]: Properties: [SOMA.hasHeight, rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasWidth, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.789054]: Instances: []\n", + "[INFO] [1712609759.789317]: Direct Instances: []\n", + "[INFO] [1712609759.789588]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712609759.789837]: -------------------\n", + "[INFO] [1712609759.790089]: SOMA.Deposition \n", + "[INFO] [1712609759.790342]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712609759.790597]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Deposition, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.790848]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712609759.791147]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.791664]: Instances: []\n", + "[INFO] [1712609759.791948]: Direct Instances: []\n", + "[INFO] [1712609759.792284]: Inverse Restrictions: []\n", + "[INFO] [1712609759.792536]: -------------------\n", + "[INFO] [1712609759.792781]: SOMA.CanCut \n", + "[INFO] [1712609759.793073]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712609759.793353]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.793614]: Subclasses: []\n", + "[INFO] [1712609759.793920]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.794502]: Instances: []\n", + "[INFO] [1712609759.794818]: Direct Instances: []\n", + "[INFO] [1712609759.795088]: Inverse Restrictions: []\n", + "[INFO] [1712609759.795336]: -------------------\n", + "[INFO] [1712609759.795583]: SOMA.Variability \n", + "[INFO] [1712609759.795836]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712609759.796105]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.796381]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712609759.796687]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.797201]: Instances: []\n", + "[INFO] [1712609759.797483]: Direct Instances: []\n", + "[INFO] [1712609759.797755]: Inverse Restrictions: []\n", + "[INFO] [1712609759.797999]: -------------------\n", + "[INFO] [1712609759.798253]: SOMA.Cutter \n", + "[INFO] [1712609759.798499]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712609759.798753]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Cutter, SOMA.Tool}\n", + "[INFO] [1712609759.799017]: Subclasses: []\n", + "[INFO] [1712609759.799322]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.799819]: Instances: []\n", + "[INFO] [1712609759.800087]: Direct Instances: []\n", + "[INFO] [1712609759.800401]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712609759.800663]: -------------------\n", + "[INFO] [1712609759.800913]: SOMA.CutObject \n", + "[INFO] [1712609759.801155]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712609759.801409]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.CutObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.801658]: Subclasses: []\n", + "[INFO] [1712609759.801955]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.802466]: Instances: []\n", + "[INFO] [1712609759.802744]: Direct Instances: []\n", + "[INFO] [1712609759.803067]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712609759.803321]: -------------------\n", + "[INFO] [1712609759.803565]: SOMA.Capability \n", + "[INFO] [1712609759.803847]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712609759.804113]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.804366]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712609759.804663]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.805175]: Instances: []\n", + "[INFO] [1712609759.805465]: Direct Instances: []\n", + "[INFO] [1712609759.805727]: Inverse Restrictions: []\n", + "[INFO] [1712609759.805973]: -------------------\n", + "[INFO] [1712609759.806214]: SOMA.Capacity \n", + "[INFO] [1712609759.806448]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609759.806693]: Ancestors: {DUL.Entity, SOMA.Intrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capacity, owl.Thing}\n", + "[INFO] [1712609759.806952]: Subclasses: []\n", + "[INFO] [1712609759.807260]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.807759]: Instances: []\n", + "[INFO] [1712609759.808026]: Direct Instances: []\n", + "[INFO] [1712609759.808322]: Inverse Restrictions: []\n", + "[INFO] [1712609759.808578]: -------------------\n", + "[INFO] [1712609759.808824]: SOMA.Intrinsic \n", + "[INFO] [1712609759.809064]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712609759.809307]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609759.809568]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712609759.809863]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.810416]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712609759.810698]: Direct Instances: []\n", + "[INFO] [1712609759.810967]: Inverse Restrictions: []\n", + "[INFO] [1712609759.811213]: -------------------\n", + "[INFO] [1712609759.811461]: SOMA.Catching \n", + "[INFO] [1712609759.811717]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609759.811978]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Catching, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.812229]: Subclasses: []\n", + "[INFO] [1712609759.812531]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.813037]: Instances: []\n", + "[INFO] [1712609759.813306]: Direct Instances: []\n", + "[INFO] [1712609759.813561]: Inverse Restrictions: []\n", + "[INFO] [1712609759.813801]: -------------------\n", + "[INFO] [1712609759.814034]: SOMA.PickingUp \n", + "[INFO] [1712609759.814291]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609759.814555]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing, SOMA.PickingUp}\n", + "[INFO] [1712609759.814807]: Subclasses: []\n", + "[INFO] [1712609759.815096]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.815612]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712609759.815883]: Direct Instances: [SOMA.picking_up]\n", + "[INFO] [1712609759.816143]: Inverse Restrictions: []\n", + "[INFO] [1712609759.816392]: -------------------\n", + "[INFO] [1712609759.816634]: SOMA.CausalEventRole \n", + "[INFO] [1712609759.816874]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712609759.817133]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.CausalEventRole}\n", + "[INFO] [1712609759.817384]: Subclasses: []\n", + "[INFO] [1712609759.817684]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.818190]: Instances: []\n", + "[INFO] [1712609759.818476]: Direct Instances: []\n", + "[INFO] [1712609759.818776]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609759.819024]: -------------------\n", + "[INFO] [1712609759.819261]: SOMA.EventAdjacentRole \n", + "[INFO] [1712609759.819499]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712609759.819756]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.820020]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712609759.820318]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.820993]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609759.821281]: Direct Instances: []\n", + "[INFO] [1712609759.821553]: Inverse Restrictions: []\n", + "[INFO] [1712609759.821804]: -------------------\n", + "[INFO] [1712609759.822049]: SOMA.CausedMotionTheory \n", + "[INFO] [1712609759.822318]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712609759.822593]: Ancestors: {DUL.Entity, SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609759.822850]: Subclasses: []\n", + "[INFO] [1712609759.823163]: Properties: [rdf-schema.comment, DUL.hasPart, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.823658]: Instances: []\n", + "[INFO] [1712609759.823928]: Direct Instances: []\n", + "[INFO] [1712609759.824188]: Inverse Restrictions: []\n", + "[INFO] [1712609759.824426]: -------------------\n", + "[INFO] [1712609759.824664]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712609759.824898]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712609759.825141]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609759.825407]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712609759.825706]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.826259]: Instances: []\n", + "[INFO] [1712609759.826656]: Direct Instances: []\n", + "[INFO] [1712609759.827106]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", + "[INFO] [1712609759.827476]: -------------------\n", + "[INFO] [1712609759.827833]: SOMA.PerformerRole \n", + "[INFO] [1712609759.828114]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712609759.828379]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", + "[INFO] [1712609759.828757]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712609759.829094]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.829622]: Instances: []\n", + "[INFO] [1712609759.829893]: Direct Instances: []\n", + "[INFO] [1712609759.830215]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609759.830468]: -------------------\n", + "[INFO] [1712609759.830712]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712609759.830966]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712609759.831229]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.SourcePathGoalTheory}\n", + "[INFO] [1712609759.831477]: Subclasses: []\n", + "[INFO] [1712609759.831775]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.832275]: Instances: []\n", + "[INFO] [1712609759.832547]: Direct Instances: []\n", + "[INFO] [1712609759.832836]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712609759.833078]: -------------------\n", + "[INFO] [1712609759.833312]: SOMA.RoomSurface \n", + "[INFO] [1712609759.833562]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712609759.833811]: Ancestors: {DUL.Entity, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", + "[INFO] [1712609759.834057]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712609759.834353]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.834864]: Instances: []\n", + "[INFO] [1712609759.835132]: Direct Instances: []\n", + "[INFO] [1712609759.835382]: Inverse Restrictions: []\n", + "[INFO] [1712609759.835622]: -------------------\n", + "[INFO] [1712609759.835861]: SOMA.Channel \n", + "[INFO] [1712609759.836097]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712609759.836362]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.836618]: Subclasses: []\n", + "[INFO] [1712609759.836917]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.837409]: Instances: []\n", + "[INFO] [1712609759.837671]: Direct Instances: []\n", + "[INFO] [1712609759.837985]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609759.838235]: -------------------\n", + "[INFO] [1712609759.838480]: SOMA.PathRole \n", + "[INFO] [1712609759.838718]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712609759.838969]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.PathRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.839245]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712609759.839553]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.840059]: Instances: []\n", + "[INFO] [1712609759.840338]: Direct Instances: []\n", + "[INFO] [1712609759.840647]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712609759.840918]: -------------------\n", + "[INFO] [1712609759.841425]: SOMA.CommunicationTask \n", + "[INFO] [1712609759.841877]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712609759.842266]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712609759.842661]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712609759.843181]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.843875]: Instances: []\n", + "[INFO] [1712609759.844344]: Direct Instances: []\n", + "[INFO] [1712609759.845010]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", + "[INFO] [1712609759.845464]: -------------------\n", + "[INFO] [1712609759.845895]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712609759.846288]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712609759.846737]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", + "[INFO] [1712609759.847109]: Subclasses: []\n", + "[INFO] [1712609759.847591]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.848226]: Instances: []\n", + "[INFO] [1712609759.848624]: Direct Instances: []\n", + "[INFO] [1712609759.848997]: Inverse Restrictions: []\n", + "[INFO] [1712609759.849347]: -------------------\n", + "[INFO] [1712609759.849688]: SOMA.ChemicalProcess \n", + "[INFO] [1712609759.850028]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712609759.850499]: Ancestors: {DUL.Entity, DUL.Process, SOMA.ChemicalProcess, owl.Thing, DUL.Event}\n", + "[INFO] [1712609759.850843]: Subclasses: []\n", + "[INFO] [1712609759.851183]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.851709]: Instances: []\n", + "[INFO] [1712609759.851989]: Direct Instances: []\n", + "[INFO] [1712609759.852251]: Inverse Restrictions: []\n", + "[INFO] [1712609759.852501]: -------------------\n", + "[INFO] [1712609759.852755]: SOMA.Choice \n", + "[INFO] [1712609759.853227]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712609759.853788]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, SOMA.Choice, DUL.Object, SOMA.EventAdjacentRole, SOMA.ResultRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.854084]: Subclasses: []\n", + "[INFO] [1712609759.854429]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.854959]: Instances: []\n", + "[INFO] [1712609759.855359]: Direct Instances: []\n", + "[INFO] [1712609759.855650]: Inverse Restrictions: []\n", + "[INFO] [1712609759.855910]: -------------------\n", + "[INFO] [1712609759.856171]: SOMA.ResultRole \n", + "[INFO] [1712609759.856422]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712609759.856679]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ResultRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.856931]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712609759.857225]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.857738]: Instances: []\n", + "[INFO] [1712609759.858020]: Direct Instances: []\n", + "[INFO] [1712609759.858293]: Inverse Restrictions: []\n", + "[INFO] [1712609759.858544]: -------------------\n", + "[INFO] [1712609759.858796]: SOMA.CircularCylinder \n", + "[INFO] [1712609759.859051]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712609759.859331]: Ancestors: {DUL.Entity, SOMA.CircularCylinder, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609759.859603]: Subclasses: []\n", + "[INFO] [1712609759.859923]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712609759.860432]: Instances: []\n", + "[INFO] [1712609759.860722]: Direct Instances: []\n", + "[INFO] [1712609759.860993]: Inverse Restrictions: []\n", + "[INFO] [1712609759.861248]: -------------------\n", + "[INFO] [1712609759.861492]: SOMA.CylinderShape \n", + "[INFO] [1712609759.861748]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712609759.862006]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609759.862286]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712609759.862599]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasLength, SOMA.hasRadius, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.863107]: Instances: []\n", + "[INFO] [1712609759.863393]: Direct Instances: []\n", + "[INFO] [1712609759.863657]: Inverse Restrictions: []\n", + "[INFO] [1712609759.863904]: -------------------\n", + "[INFO] [1712609759.864148]: SOMA.Classifier \n", + "[INFO] [1712609759.864390]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712609759.864661]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.Classifier, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.864917]: Subclasses: []\n", + "[INFO] [1712609759.865214]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.865713]: Instances: []\n", + "[INFO] [1712609759.866000]: Direct Instances: []\n", + "[INFO] [1712609759.866267]: Inverse Restrictions: []\n", + "[INFO] [1712609759.866513]: -------------------\n", + "[INFO] [1712609759.866755]: SOMA.StatisticalReasoner \n", + "[INFO] [1712609759.867011]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712609759.867271]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.867539]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712609759.867840]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.868338]: Instances: []\n", + "[INFO] [1712609759.868621]: Direct Instances: []\n", + "[INFO] [1712609759.868884]: Inverse Restrictions: []\n", + "[INFO] [1712609759.869130]: -------------------\n", + "[INFO] [1712609759.869371]: SOMA.ClausalObject \n", + "[INFO] [1712609759.869610]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712609759.869862]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609759.870145]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712609759.870448]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.870950]: Instances: []\n", + "[INFO] [1712609759.871220]: Direct Instances: []\n", + "[INFO] [1712609759.871480]: Inverse Restrictions: []\n", + "[INFO] [1712609759.871720]: -------------------\n", + "[INFO] [1712609759.871954]: SOMA.Phrase \n", + "[INFO] [1712609759.872191]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712609759.872433]: Ancestors: {DUL.Entity, DUL.InformationEntity, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609759.872694]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712609759.872989]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.873485]: Instances: []\n", + "[INFO] [1712609759.873741]: Direct Instances: []\n", + "[INFO] [1712609759.873991]: Inverse Restrictions: []\n", + "[INFO] [1712609759.874250]: -------------------\n", + "[INFO] [1712609759.874502]: SOMA.Clean \n", + "[INFO] [1712609759.874743]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712609759.874988]: Ancestors: {SOMA.Clean, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", + "[INFO] [1712609759.875243]: Subclasses: []\n", + "[INFO] [1712609759.875546]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.876043]: Instances: []\n", + "[INFO] [1712609759.876313]: Direct Instances: []\n", + "[INFO] [1712609759.876646]: Inverse Restrictions: []\n", + "[INFO] [1712609759.876895]: -------------------\n", + "[INFO] [1712609759.877137]: SOMA.CleanlinessRegion \n", + "[INFO] [1712609759.877377]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609759.877622]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", + "[INFO] [1712609759.877893]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712609759.878201]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.878707]: Instances: []\n", + "[INFO] [1712609759.878994]: Direct Instances: []\n", + "[INFO] [1712609759.879332]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712609759.879592]: -------------------\n", + "[INFO] [1712609759.879835]: SOMA.Cleaning \n", + "[INFO] [1712609759.880079]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712609759.880347]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Cleaning, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609759.880605]: Subclasses: []\n", + "[INFO] [1712609759.880905]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.881395]: Instances: []\n", + "[INFO] [1712609759.881660]: Direct Instances: []\n", + "[INFO] [1712609759.881921]: Inverse Restrictions: []\n", + "[INFO] [1712609759.882179]: -------------------\n", + "[INFO] [1712609759.882427]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712609759.882666]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609759.882912]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609759.883162]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712609759.883464]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.883974]: Instances: []\n", + "[INFO] [1712609759.884233]: Direct Instances: []\n", + "[INFO] [1712609759.884482]: Inverse Restrictions: []\n", + "[INFO] [1712609759.884713]: -------------------\n", + "[INFO] [1712609759.884959]: SOMA.Purification \n", + "[INFO] [1712609759.885221]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712609759.885475]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition, SOMA.Purification}\n", + "[INFO] [1712609759.885718]: Subclasses: []\n", + "[INFO] [1712609759.886010]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.886518]: Instances: []\n", + "[INFO] [1712609759.886787]: Direct Instances: []\n", + "[INFO] [1712609759.887083]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712609759.887330]: -------------------\n", + "[INFO] [1712609759.887571]: SOMA.Cleanliness \n", + "[INFO] [1712609759.887819]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712609759.888080]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing}\n", + "[INFO] [1712609759.888329]: Subclasses: []\n", + "[INFO] [1712609759.888621]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.889121]: Instances: []\n", + "[INFO] [1712609759.889402]: Direct Instances: []\n", + "[INFO] [1712609759.889736]: Inverse Restrictions: []\n", + "[INFO] [1712609759.889981]: -------------------\n", + "[INFO] [1712609759.890222]: SOMA.SocialQuality \n", + "[INFO] [1712609759.890454]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712609759.890693]: Ancestors: {SOMA.SocialQuality, DUL.Entity, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609759.890957]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712609759.891256]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.891763]: Instances: []\n", + "[INFO] [1712609759.892032]: Direct Instances: []\n", + "[INFO] [1712609759.892287]: Inverse Restrictions: []\n", + "[INFO] [1712609759.892534]: -------------------\n", + "[INFO] [1712609759.892772]: SOMA.Client-Server_Specification \n", + "[INFO] [1712609759.893018]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712609759.893269]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, SOMA.Client-Server_Specification, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", + "[INFO] [1712609759.893526]: Subclasses: []\n", + "[INFO] [1712609759.893837]: Properties: [rdf-schema.comment, DUL.definesRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.894338]: Instances: []\n", + "[INFO] [1712609759.894601]: Direct Instances: []\n", + "[INFO] [1712609759.894926]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712609759.895176]: -------------------\n", + "[INFO] [1712609759.895419]: SOMA.ClientRole \n", + "[INFO] [1712609759.895660]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712609759.895906]: Ancestors: {DUL.Concept, SOMA.ClientRole, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.896163]: Subclasses: []\n", + "[INFO] [1712609759.896461]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.896956]: Instances: []\n", + "[INFO] [1712609759.897220]: Direct Instances: []\n", + "[INFO] [1712609759.897523]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712609759.897777]: -------------------\n", + "[INFO] [1712609759.898015]: SOMA.ServerRole \n", + "[INFO] [1712609759.898262]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712609759.898534]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.ServerRole, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.898786]: Subclasses: []\n", + "[INFO] [1712609759.899082]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.899569]: Instances: []\n", + "[INFO] [1712609759.899834]: Direct Instances: []\n", + "[INFO] [1712609759.900148]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712609759.900392]: -------------------\n", + "[INFO] [1712609759.900630]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712609759.900869]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609759.901110]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609759.901376]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712609759.901687]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.902223]: Instances: []\n", + "[INFO] [1712609759.902553]: Direct Instances: []\n", + "[INFO] [1712609759.902837]: Inverse Restrictions: []\n", + "[INFO] [1712609759.903098]: -------------------\n", + "[INFO] [1712609759.903348]: SOMA.Closing \n", + "[INFO] [1712609759.903598]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609759.903858]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Closing, SOMA.Actuating}\n", + "[INFO] [1712609759.904110]: Subclasses: []\n", + "[INFO] [1712609759.904430]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.904936]: Instances: []\n", + "[INFO] [1712609759.905201]: Direct Instances: []\n", + "[INFO] [1712609759.905452]: Inverse Restrictions: []\n", + "[INFO] [1712609759.905694]: -------------------\n", + "[INFO] [1712609759.905945]: SOMA.Delivering \n", + "[INFO] [1712609759.906195]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712609759.906449]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Delivering, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.906699]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712609759.907024]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.907560]: Instances: []\n", + "[INFO] [1712609759.907834]: Direct Instances: []\n", + "[INFO] [1712609759.908089]: Inverse Restrictions: []\n", + "[INFO] [1712609759.908342]: -------------------\n", + "[INFO] [1712609759.908608]: SOMA.Fetching \n", + "[INFO] [1712609759.908868]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712609759.909127]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Fetching, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PhysicalAcquiring, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609759.909370]: Subclasses: []\n", + "[INFO] [1712609759.909670]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.910177]: Instances: []\n", + "[INFO] [1712609759.910457]: Direct Instances: []\n", + "[INFO] [1712609759.910720]: Inverse Restrictions: []\n", + "[INFO] [1712609759.910970]: -------------------\n", + "[INFO] [1712609759.911223]: SOMA.Lifting \n", + "[INFO] [1712609759.911468]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609759.911720]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Lifting, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.911964]: Subclasses: []\n", + "[INFO] [1712609759.912263]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.912767]: Instances: []\n", + "[INFO] [1712609759.913033]: Direct Instances: []\n", + "[INFO] [1712609759.913287]: Inverse Restrictions: []\n", + "[INFO] [1712609759.913527]: -------------------\n", + "[INFO] [1712609759.913767]: SOMA.Opening \n", + "[INFO] [1712609759.914001]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609759.914280]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating, SOMA.Opening}\n", + "[INFO] [1712609759.914538]: Subclasses: []\n", + "[INFO] [1712609759.914844]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.915329]: Instances: []\n", + "[INFO] [1712609759.915602]: Direct Instances: []\n", + "[INFO] [1712609759.915865]: Inverse Restrictions: []\n", + "[INFO] [1712609759.916116]: -------------------\n", + "[INFO] [1712609759.916366]: SOMA.Pulling \n", + "[INFO] [1712609759.916625]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609759.916904]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Pulling, SOMA.Actuating}\n", + "[INFO] [1712609759.917186]: Subclasses: []\n", + "[INFO] [1712609759.917517]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.918035]: Instances: []\n", + "[INFO] [1712609759.918314]: Direct Instances: []\n", + "[INFO] [1712609759.918590]: Inverse Restrictions: []\n", + "[INFO] [1712609759.918836]: -------------------\n", + "[INFO] [1712609759.919077]: SOMA.Pushing \n", + "[INFO] [1712609759.919315]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609759.919563]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.919811]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712609759.920129]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.920636]: Instances: []\n", + "[INFO] [1712609759.920904]: Direct Instances: []\n", + "[INFO] [1712609759.921164]: Inverse Restrictions: []\n", + "[INFO] [1712609759.921409]: -------------------\n", + "[INFO] [1712609759.921658]: SOMA.Squeezing \n", + "[INFO] [1712609759.921896]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609759.922151]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Squeezing, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609759.922396]: Subclasses: []\n", + "[INFO] [1712609759.922686]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.923193]: Instances: []\n", + "[INFO] [1712609759.923462]: Direct Instances: []\n", + "[INFO] [1712609759.923723]: Inverse Restrictions: []\n", + "[INFO] [1712609759.924004]: -------------------\n", + "[INFO] [1712609759.924270]: SOMA.Linkage \n", + "[INFO] [1712609759.924534]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712609759.924798]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.Linkage, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.925047]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712609759.925336]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.925819]: Instances: []\n", + "[INFO] [1712609759.926092]: Direct Instances: []\n", + "[INFO] [1712609759.926356]: Inverse Restrictions: []\n", + "[INFO] [1712609759.926601]: -------------------\n", + "[INFO] [1712609759.926838]: SOMA.Clumsiness \n", + "[INFO] [1712609759.927068]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712609759.927318]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Clumsiness, DUL.Diagnosis}\n", + "[INFO] [1712609759.927575]: Subclasses: []\n", + "[INFO] [1712609759.927871]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.928356]: Instances: []\n", + "[INFO] [1712609759.928613]: Direct Instances: []\n", + "[INFO] [1712609759.928863]: Inverse Restrictions: []\n", + "[INFO] [1712609759.929101]: -------------------\n", + "[INFO] [1712609759.929340]: SOMA.CognitiveAgent \n", + "[INFO] [1712609759.929742]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712609759.930082]: Ancestors: {DUL.Entity, DUL.Agent, SOMA.CognitiveAgent, DUL.Object, owl.Thing}\n", + "[INFO] [1712609759.930340]: Subclasses: []\n", + "[INFO] [1712609759.930652]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.931144]: Instances: []\n", + "[INFO] [1712609759.931405]: Direct Instances: []\n", + "[INFO] [1712609759.931653]: Inverse Restrictions: []\n", + "[INFO] [1712609759.931897]: -------------------\n", + "[INFO] [1712609759.932141]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712609759.932377]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712609759.932620]: Ancestors: {DUL.Entity, SOMA.SubCognitiveAgent, DUL.Agent, DUL.Object, owl.Thing}\n", + "[INFO] [1712609759.932865]: Subclasses: []\n", + "[INFO] [1712609759.933155]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.933666]: Instances: []\n", + "[INFO] [1712609759.933940]: Direct Instances: []\n", + "[INFO] [1712609759.934203]: Inverse Restrictions: []\n", + "[INFO] [1712609759.934449]: -------------------\n", + "[INFO] [1712609759.934697]: SOMA.Collision \n", + "[INFO] [1712609759.934953]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712609759.935206]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType, SOMA.Collision}\n", + "[INFO] [1712609759.935452]: Subclasses: []\n", + "[INFO] [1712609759.935738]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.936229]: Instances: []\n", + "[INFO] [1712609759.936502]: Direct Instances: []\n", + "[INFO] [1712609759.936758]: Inverse Restrictions: []\n", + "[INFO] [1712609759.936999]: -------------------\n", + "[INFO] [1712609759.937238]: SOMA.Extrinsic \n", + "[INFO] [1712609759.937474]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712609759.937714]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609759.937977]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712609759.938288]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.938845]: Instances: []\n", + "[INFO] [1712609759.939122]: Direct Instances: []\n", + "[INFO] [1712609759.939384]: Inverse Restrictions: []\n", + "[INFO] [1712609759.939647]: -------------------\n", + "[INFO] [1712609759.939895]: SOMA.ImperativeClause \n", + "[INFO] [1712609759.940142]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712609759.940412]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, SOMA.ImperativeClause, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609759.940686]: Subclasses: []\n", + "[INFO] [1712609759.940997]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.expresses]\n", + "[INFO] [1712609759.941488]: Instances: []\n", + "[INFO] [1712609759.941761]: Direct Instances: []\n", + "[INFO] [1712609759.942058]: Inverse Restrictions: []\n", + "[INFO] [1712609759.942306]: -------------------\n", + "[INFO] [1712609759.942543]: SOMA.CommitedObject \n", + "[INFO] [1712609759.942777]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712609759.943024]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.CommitedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.943275]: Subclasses: []\n", + "[INFO] [1712609759.943568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.944050]: Instances: []\n", + "[INFO] [1712609759.944303]: Direct Instances: []\n", + "[INFO] [1712609759.944559]: Inverse Restrictions: []\n", + "[INFO] [1712609759.944800]: -------------------\n", + "[INFO] [1712609759.945033]: SOMA.ConnectedObject \n", + "[INFO] [1712609759.945265]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609759.945501]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.945748]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712609759.946051]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.946556]: Instances: []\n", + "[INFO] [1712609759.946812]: Direct Instances: []\n", + "[INFO] [1712609759.947155]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712609759.947412]: -------------------\n", + "[INFO] [1712609759.947659]: SOMA.CommunicationAction \n", + "[INFO] [1712609759.947902]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712609759.948153]: Ancestors: {DUL.Entity, SOMA.CommunicationAction, DUL.Action, owl.Thing, DUL.Event}\n", + "[INFO] [1712609759.948419]: Subclasses: []\n", + "[INFO] [1712609759.948726]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.949218]: Instances: []\n", + "[INFO] [1712609759.949489]: Direct Instances: []\n", + "[INFO] [1712609759.949784]: Inverse Restrictions: []\n", + "[INFO] [1712609759.950023]: -------------------\n", + "[INFO] [1712609759.950279]: SOMA.LinguisticObject \n", + "[INFO] [1712609759.950523]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712609759.950768]: Ancestors: {DUL.Entity, DUL.InformationEntity, DUL.SocialObject, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609759.951032]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712609759.951327]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.951830]: Instances: []\n", + "[INFO] [1712609759.952100]: Direct Instances: []\n", + "[INFO] [1712609759.952402]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712609759.952657]: -------------------\n", + "[INFO] [1712609759.952895]: SOMA.CommunicationReport \n", + "[INFO] [1712609759.953131]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609759.953377]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712609759.953634]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712609759.953928]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.954449]: Instances: []\n", + "[INFO] [1712609759.954730]: Direct Instances: []\n", + "[INFO] [1712609759.954989]: Inverse Restrictions: []\n", + "[INFO] [1712609759.955231]: -------------------\n", + "[INFO] [1712609759.955477]: SOMA.Receiver \n", + "[INFO] [1712609759.955739]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712609759.955998]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExperiencerRole, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Receiver, SOMA.PerformerRole}\n", + "[INFO] [1712609759.956249]: Subclasses: []\n", + "[INFO] [1712609759.956557]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.957068]: Instances: []\n", + "[INFO] [1712609759.957363]: Direct Instances: []\n", + "[INFO] [1712609759.957688]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609759.957958]: -------------------\n", + "[INFO] [1712609759.958221]: SOMA.Sender \n", + "[INFO] [1712609759.958474]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712609759.958727]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.Sender, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", + "[INFO] [1712609759.958988]: Subclasses: []\n", + "[INFO] [1712609759.959287]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.959793]: Instances: []\n", + "[INFO] [1712609759.960057]: Direct Instances: []\n", + "[INFO] [1712609759.960376]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609759.960621]: -------------------\n", + "[INFO] [1712609759.960859]: SOMA.CommunicationTopic \n", + "[INFO] [1712609759.961123]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712609759.961397]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.961654]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609759.961951]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.962465]: Instances: []\n", + "[INFO] [1712609759.962745]: Direct Instances: []\n", + "[INFO] [1712609759.963007]: Inverse Restrictions: []\n", + "[INFO] [1712609759.963250]: -------------------\n", + "[INFO] [1712609759.963487]: SOMA.ResourceRole \n", + "[INFO] [1712609759.963724]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609759.963968]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.964235]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712609759.964530]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.965088]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609759.965365]: Direct Instances: []\n", + "[INFO] [1712609759.965645]: Inverse Restrictions: []\n", + "[INFO] [1712609759.965899]: -------------------\n", + "[INFO] [1712609759.966142]: SOMA.Composing \n", + "[INFO] [1712609759.966398]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712609759.966652]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Composing, SOMA.Disposition}\n", + "[INFO] [1712609759.966894]: Subclasses: []\n", + "[INFO] [1712609759.967182]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.967684]: Instances: []\n", + "[INFO] [1712609759.967950]: Direct Instances: []\n", + "[INFO] [1712609759.968243]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712609759.968488]: -------------------\n", + "[INFO] [1712609759.968729]: SOMA.Computer_Language \n", + "[INFO] [1712609759.968978]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712609759.969227]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.969485]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712609759.969771]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.970297]: Instances: []\n", + "[INFO] [1712609759.970564]: Direct Instances: []\n", + "[INFO] [1712609759.970820]: Inverse Restrictions: []\n", + "[INFO] [1712609759.971057]: -------------------\n", + "[INFO] [1712609759.971292]: SOMA.FormalLanguage \n", + "[INFO] [1712609759.971537]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712609759.971794]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.972044]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609759.972334]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.972864]: Instances: []\n", + "[INFO] [1712609759.973134]: Direct Instances: []\n", + "[INFO] [1712609759.973449]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712609759.973693]: -------------------\n", + "[INFO] [1712609759.973949]: SOMA.Computer_Program \n", + "[INFO] [1712609759.974222]: Super classes: [owl.Thing]\n", + "[INFO] [1712609759.974477]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", + "[INFO] [1712609759.974732]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712609759.975032]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.975544]: Instances: []\n", + "[INFO] [1712609759.975811]: Direct Instances: []\n", + "[INFO] [1712609759.976163]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712609759.976408]: -------------------\n", + "[INFO] [1712609759.976644]: SOMA.Programming_Language \n", + "[INFO] [1712609759.976884]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712609759.977142]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Programming_Language, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609759.977396]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712609759.977690]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.978175]: Instances: []\n", + "[INFO] [1712609759.978447]: Direct Instances: []\n", + "[INFO] [1712609759.978758]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712609759.979005]: -------------------\n", + "[INFO] [1712609759.979241]: SOMA.Conclusion \n", + "[INFO] [1712609759.979474]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712609759.979724]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Conclusion, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.CreatedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.979977]: Subclasses: []\n", + "[INFO] [1712609759.980271]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.980756]: Instances: []\n", + "[INFO] [1712609759.981007]: Direct Instances: []\n", + "[INFO] [1712609759.981308]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609759.981566]: -------------------\n", + "[INFO] [1712609759.981811]: SOMA.CreatedObject \n", + "[INFO] [1712609759.982049]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609759.982424]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.CreatedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.982769]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712609759.983105]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.983621]: Instances: []\n", + "[INFO] [1712609759.983896]: Direct Instances: []\n", + "[INFO] [1712609759.984191]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712609759.984439]: -------------------\n", + "[INFO] [1712609759.984694]: SOMA.Knowledge \n", + "[INFO] [1712609759.984935]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712609759.985184]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609759.985437]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712609759.985730]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.986235]: Instances: []\n", + "[INFO] [1712609759.986504]: Direct Instances: []\n", + "[INFO] [1712609759.986937]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712609759.987199]: -------------------\n", + "[INFO] [1712609759.987449]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712609759.987694]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712609759.987941]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing, SOMA.ConditionalSuccedence}\n", + "[INFO] [1712609759.988182]: Subclasses: []\n", + "[INFO] [1712609759.988471]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.988975]: Instances: []\n", + "[INFO] [1712609759.989247]: Direct Instances: []\n", + "[INFO] [1712609759.989506]: Inverse Restrictions: []\n", + "[INFO] [1712609759.989751]: -------------------\n", + "[INFO] [1712609759.990013]: SOMA.Configuration \n", + "[INFO] [1712609759.990330]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712609759.990641]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Configuration, DUL.Description, owl.Thing}\n", + "[INFO] [1712609759.990946]: Subclasses: []\n", + "[INFO] [1712609759.991369]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.describes]\n", + "[INFO] [1712609759.991933]: Instances: []\n", + "[INFO] [1712609759.992255]: Direct Instances: []\n", + "[INFO] [1712609759.992559]: Inverse Restrictions: []\n", + "[INFO] [1712609759.992829]: -------------------\n", + "[INFO] [1712609759.993233]: SOMA.Connectivity \n", + "[INFO] [1712609759.993610]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712609759.994013]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Connectivity, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609759.994410]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712609759.994838]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.995458]: Instances: []\n", + "[INFO] [1712609759.995839]: Direct Instances: []\n", + "[INFO] [1712609759.996263]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712609759.996545]: -------------------\n", + "[INFO] [1712609759.996795]: SOMA.ContactState \n", + "[INFO] [1712609759.997048]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712609759.997305]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.ContactState, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609759.997543]: Subclasses: []\n", + "[INFO] [1712609759.997831]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609759.998341]: Instances: []\n", + "[INFO] [1712609759.998608]: Direct Instances: []\n", + "[INFO] [1712609759.998857]: Inverse Restrictions: []\n", + "[INFO] [1712609759.999093]: -------------------\n", + "[INFO] [1712609759.999326]: SOMA.Container \n", + "[INFO] [1712609759.999574]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712609759.999829]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Container, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609760.000080]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", + "[INFO] [1712609760.000395]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.000920]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609760.001218]: Direct Instances: []\n", + "[INFO] [1712609760.001566]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712609760.001821]: -------------------\n", + "[INFO] [1712609760.002065]: SOMA.Containment \n", + "[INFO] [1712609760.002335]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712609760.002599]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.002871]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712609760.003187]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.003696]: Instances: []\n", + "[INFO] [1712609760.003986]: Direct Instances: []\n", + "[INFO] [1712609760.004373]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712609760.004623]: -------------------\n", + "[INFO] [1712609760.004866]: SOMA.IncludedObject \n", + "[INFO] [1712609760.005104]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609760.005349]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.005612]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712609760.005921]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.006478]: Instances: []\n", + "[INFO] [1712609760.006803]: Direct Instances: []\n", + "[INFO] [1712609760.007128]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712609760.007402]: -------------------\n", + "[INFO] [1712609760.007670]: SOMA.ContainmentState \n", + "[INFO] [1712609760.007940]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712609760.008212]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.ContainmentState, SOMA.FunctionalControl}\n", + "[INFO] [1712609760.008474]: Subclasses: []\n", + "[INFO] [1712609760.008783]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.009281]: Instances: []\n", + "[INFO] [1712609760.009547]: Direct Instances: []\n", + "[INFO] [1712609760.009794]: Inverse Restrictions: []\n", + "[INFO] [1712609760.010032]: -------------------\n", + "[INFO] [1712609760.010286]: SOMA.FunctionalControl \n", + "[INFO] [1712609760.010537]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712609760.010787]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.FunctionalControl}\n", + "[INFO] [1712609760.011037]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712609760.011331]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.011845]: Instances: []\n", + "[INFO] [1712609760.012116]: Direct Instances: []\n", + "[INFO] [1712609760.012374]: Inverse Restrictions: []\n", + "[INFO] [1712609760.012618]: -------------------\n", + "[INFO] [1712609760.012854]: SOMA.ContainmentTheory \n", + "[INFO] [1712609760.013090]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712609760.013341]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", + "[INFO] [1712609760.013606]: Subclasses: []\n", + "[INFO] [1712609760.013906]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.014396]: Instances: []\n", + "[INFO] [1712609760.014653]: Direct Instances: []\n", + "[INFO] [1712609760.014898]: Inverse Restrictions: []\n", + "[INFO] [1712609760.015135]: -------------------\n", + "[INFO] [1712609760.015386]: SOMA.ControlTheory \n", + "[INFO] [1712609760.015626]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712609760.015875]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", + "[INFO] [1712609760.016119]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712609760.016399]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.016902]: Instances: []\n", + "[INFO] [1712609760.017164]: Direct Instances: []\n", + "[INFO] [1712609760.017418]: Inverse Restrictions: []\n", + "[INFO] [1712609760.017669]: -------------------\n", + "[INFO] [1712609760.017912]: SOMA.ContinuousJoint \n", + "[INFO] [1712609760.018155]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712609760.018409]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.ContinuousJoint}\n", + "[INFO] [1712609760.018651]: Subclasses: []\n", + "[INFO] [1712609760.018942]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.019439]: Instances: []\n", + "[INFO] [1712609760.019706]: Direct Instances: []\n", + "[INFO] [1712609760.019962]: Inverse Restrictions: []\n", + "[INFO] [1712609760.020198]: -------------------\n", + "[INFO] [1712609760.020451]: SOMA.HingeJoint \n", + "[INFO] [1712609760.020695]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712609760.020944]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609760.021193]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712609760.021481]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.021985]: Instances: []\n", + "[INFO] [1712609760.022254]: Direct Instances: []\n", + "[INFO] [1712609760.022510]: Inverse Restrictions: []\n", + "[INFO] [1712609760.022753]: -------------------\n", + "[INFO] [1712609760.022988]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712609760.023249]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712609760.023508]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", + "[INFO] [1712609760.023765]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712609760.024089]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.024596]: Instances: []\n", + "[INFO] [1712609760.024880]: Direct Instances: []\n", + "[INFO] [1712609760.025144]: Inverse Restrictions: []\n", + "[INFO] [1712609760.025388]: -------------------\n", + "[INFO] [1712609760.025630]: SOMA.Cover \n", + "[INFO] [1712609760.025869]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712609760.026120]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Cover, SOMA.Restrictor}\n", + "[INFO] [1712609760.026412]: Subclasses: []\n", + "[INFO] [1712609760.026724]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.027238]: Instances: []\n", + "[INFO] [1712609760.027505]: Direct Instances: []\n", + "[INFO] [1712609760.027790]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712609760.028053]: -------------------\n", + "[INFO] [1712609760.028305]: SOMA.Coverage \n", + "[INFO] [1712609760.028558]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712609760.028809]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, SOMA.Coverage, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.029048]: Subclasses: []\n", + "[INFO] [1712609760.029336]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.029835]: Instances: []\n", + "[INFO] [1712609760.030096]: Direct Instances: []\n", + "[INFO] [1712609760.030354]: Inverse Restrictions: []\n", + "[INFO] [1712609760.030591]: -------------------\n", + "[INFO] [1712609760.030829]: SOMA.CoveredObject \n", + "[INFO] [1712609760.031069]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712609760.031333]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CoveredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", + "[INFO] [1712609760.031580]: Subclasses: []\n", + "[INFO] [1712609760.031870]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.032357]: Instances: []\n", + "[INFO] [1712609760.032633]: Direct Instances: []\n", + "[INFO] [1712609760.032929]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712609760.033174]: -------------------\n", + "[INFO] [1712609760.033411]: SOMA.CoverageTheory \n", + "[INFO] [1712609760.033644]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712609760.033897]: Ancestors: {DUL.Entity, SOMA.CoverageTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", + "[INFO] [1712609760.034149]: Subclasses: []\n", + "[INFO] [1712609760.034446]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.034932]: Instances: []\n", + "[INFO] [1712609760.035203]: Direct Instances: []\n", + "[INFO] [1712609760.035458]: Inverse Restrictions: []\n", + "[INFO] [1712609760.035696]: -------------------\n", + "[INFO] [1712609760.035936]: SOMA.CoveringTheory \n", + "[INFO] [1712609760.036186]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712609760.036430]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.CoveringTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609760.036693]: Subclasses: []\n", + "[INFO] [1712609760.036998]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.037484]: Instances: []\n", + "[INFO] [1712609760.037758]: Direct Instances: []\n", + "[INFO] [1712609760.038013]: Inverse Restrictions: []\n", + "[INFO] [1712609760.038318]: -------------------\n", + "[INFO] [1712609760.038679]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712609760.038971]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712609760.039250]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609760.039520]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712609760.039822]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.040339]: Instances: []\n", + "[INFO] [1712609760.040610]: Direct Instances: []\n", + "[INFO] [1712609760.040879]: Inverse Restrictions: []\n", + "[INFO] [1712609760.041126]: -------------------\n", + "[INFO] [1712609760.041370]: SOMA.CrackingTheory \n", + "[INFO] [1712609760.041620]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712609760.041881]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.CrackingTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609760.042132]: Subclasses: []\n", + "[INFO] [1712609760.042431]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.042925]: Instances: []\n", + "[INFO] [1712609760.043205]: Direct Instances: []\n", + "[INFO] [1712609760.043461]: Inverse Restrictions: []\n", + "[INFO] [1712609760.043705]: -------------------\n", + "[INFO] [1712609760.043944]: SOMA.Creation \n", + "[INFO] [1712609760.044184]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712609760.044448]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Creation, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609760.044708]: Subclasses: []\n", + "[INFO] [1712609760.045008]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.045499]: Instances: []\n", + "[INFO] [1712609760.045779]: Direct Instances: []\n", + "[INFO] [1712609760.046039]: Inverse Restrictions: []\n", + "[INFO] [1712609760.046287]: -------------------\n", + "[INFO] [1712609760.046527]: SOMA.Insertion \n", + "[INFO] [1712609760.046769]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712609760.047016]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Insertion, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.047274]: Subclasses: []\n", + "[INFO] [1712609760.047572]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.048059]: Instances: []\n", + "[INFO] [1712609760.048317]: Direct Instances: []\n", + "[INFO] [1712609760.048645]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712609760.048907]: -------------------\n", + "[INFO] [1712609760.049160]: SOMA.DesignedFurniture \n", + "[INFO] [1712609760.049420]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712609760.049671]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", + "[INFO] [1712609760.049925]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712609760.050226]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.050744]: Instances: []\n", + "[INFO] [1712609760.051014]: Direct Instances: []\n", + "[INFO] [1712609760.051265]: Inverse Restrictions: []\n", + "[INFO] [1712609760.051514]: -------------------\n", + "[INFO] [1712609760.051777]: SOMA.Cuttability \n", + "[INFO] [1712609760.052035]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712609760.052296]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.052551]: Subclasses: []\n", + "[INFO] [1712609760.052868]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.053362]: Instances: []\n", + "[INFO] [1712609760.053623]: Direct Instances: []\n", + "[INFO] [1712609760.053878]: Inverse Restrictions: []\n", + "[INFO] [1712609760.054141]: -------------------\n", + "[INFO] [1712609760.054697]: SOMA.Tool \n", + "[INFO] [1712609760.055170]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712609760.055517]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Tool}\n", + "[INFO] [1712609760.055804]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712609760.056125]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.056659]: Instances: []\n", + "[INFO] [1712609760.056954]: Direct Instances: []\n", + "[INFO] [1712609760.057264]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712609760.057557]: -------------------\n", + "[INFO] [1712609760.057819]: SOMA.Cutting \n", + "[INFO] [1712609760.058063]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712609760.058336]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609760.058615]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712609760.058927]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.059443]: Instances: []\n", + "[INFO] [1712609760.059717]: Direct Instances: []\n", + "[INFO] [1712609760.059981]: Inverse Restrictions: []\n", + "[INFO] [1712609760.060235]: -------------------\n", + "[INFO] [1712609760.060478]: SOMA.DesignedTool \n", + "[INFO] [1712609760.060721]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712609760.060978]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", + "[INFO] [1712609760.061244]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712609760.061544]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.062081]: Instances: []\n", + "[INFO] [1712609760.062366]: Direct Instances: []\n", + "[INFO] [1712609760.062636]: Inverse Restrictions: []\n", + "[INFO] [1712609760.062884]: -------------------\n", + "[INFO] [1712609760.063122]: SOMA.Shaping \n", + "[INFO] [1712609760.063373]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712609760.063627]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Shaping, SOMA.Disposition}\n", + "[INFO] [1712609760.063884]: Subclasses: []\n", + "[INFO] [1712609760.064184]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.064674]: Instances: []\n", + "[INFO] [1712609760.064936]: Direct Instances: []\n", + "[INFO] [1712609760.065226]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712609760.065475]: -------------------\n", + "[INFO] [1712609760.065711]: SOMA.Database \n", + "[INFO] [1712609760.065949]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609760.066245]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.066681]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712609760.067028]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.067548]: Instances: []\n", + "[INFO] [1712609760.067832]: Direct Instances: []\n", + "[INFO] [1712609760.068101]: Inverse Restrictions: []\n", + "[INFO] [1712609760.068350]: -------------------\n", + "[INFO] [1712609760.068596]: SOMA.SoftwareRole \n", + "[INFO] [1712609760.068839]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712609760.069085]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.069338]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712609760.069645]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.070176]: Instances: []\n", + "[INFO] [1712609760.070440]: Direct Instances: []\n", + "[INFO] [1712609760.070729]: Inverse Restrictions: []\n", + "[INFO] [1712609760.070981]: -------------------\n", + "[INFO] [1712609760.071225]: SOMA.Deciding \n", + "[INFO] [1712609760.071460]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609760.071701]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Deciding, owl.Thing}\n", + "[INFO] [1712609760.071960]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712609760.072271]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.072775]: Instances: []\n", + "[INFO] [1712609760.073055]: Direct Instances: []\n", + "[INFO] [1712609760.073315]: Inverse Restrictions: []\n", + "[INFO] [1712609760.073558]: -------------------\n", + "[INFO] [1712609760.073795]: SOMA.DerivingInformation \n", + "[INFO] [1712609760.074071]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712609760.074450]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, owl.Thing}\n", + "[INFO] [1712609760.074765]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712609760.075086]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, SOMA.isTaskOfInputRole, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.075628]: Instances: []\n", + "[INFO] [1712609760.075912]: Direct Instances: []\n", + "[INFO] [1712609760.076183]: Inverse Restrictions: []\n", + "[INFO] [1712609760.076431]: -------------------\n", + "[INFO] [1712609760.076801]: SOMA.DeductiveReasoning \n", + "[INFO] [1712609760.078393]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712609760.078700]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.DeductiveReasoning, SOMA.Reasoning}\n", + "[INFO] [1712609760.078978]: Subclasses: []\n", + "[INFO] [1712609760.079401]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.080031]: Instances: []\n", + "[INFO] [1712609760.080407]: Direct Instances: []\n", + "[INFO] [1712609760.080792]: Inverse Restrictions: []\n", + "[INFO] [1712609760.081161]: -------------------\n", + "[INFO] [1712609760.081540]: SOMA.Deformation \n", + "[INFO] [1712609760.081830]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712609760.082098]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Deformation, SOMA.ProcessType}\n", + "[INFO] [1712609760.082361]: Subclasses: []\n", + "[INFO] [1712609760.082677]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.083175]: Instances: []\n", + "[INFO] [1712609760.083439]: Direct Instances: []\n", + "[INFO] [1712609760.083703]: Inverse Restrictions: []\n", + "[INFO] [1712609760.083948]: -------------------\n", + "[INFO] [1712609760.084186]: SOMA.ShapedObject \n", + "[INFO] [1712609760.084438]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712609760.084689]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ShapedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.084936]: Subclasses: []\n", + "[INFO] [1712609760.085245]: Properties: [rdf-schema.comment, SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.085738]: Instances: []\n", + "[INFO] [1712609760.085997]: Direct Instances: []\n", + "[INFO] [1712609760.086319]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712609760.086584]: -------------------\n", + "[INFO] [1712609760.086834]: SOMA.FluidFlow \n", + "[INFO] [1712609760.087080]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712609760.087330]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.FluidFlow, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.087576]: Subclasses: []\n", + "[INFO] [1712609760.087875]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.088372]: Instances: []\n", + "[INFO] [1712609760.088639]: Direct Instances: []\n", + "[INFO] [1712609760.088891]: Inverse Restrictions: []\n", + "[INFO] [1712609760.089123]: -------------------\n", + "[INFO] [1712609760.089365]: SOMA.Shifting \n", + "[INFO] [1712609760.089621]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712609760.089876]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition, SOMA.Shifting}\n", + "[INFO] [1712609760.090121]: Subclasses: []\n", + "[INFO] [1712609760.090449]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.090939]: Instances: []\n", + "[INFO] [1712609760.091227]: Direct Instances: []\n", + "[INFO] [1712609760.091560]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712609760.091810]: -------------------\n", + "[INFO] [1712609760.092048]: SOMA.DependentPlace \n", + "[INFO] [1712609760.092283]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712609760.092538]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing, SOMA.DependentPlace}\n", + "[INFO] [1712609760.092793]: Subclasses: []\n", + "[INFO] [1712609760.093091]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.093580]: Instances: []\n", + "[INFO] [1712609760.093847]: Direct Instances: []\n", + "[INFO] [1712609760.094135]: Inverse Restrictions: []\n", + "[INFO] [1712609760.094383]: -------------------\n", + "[INFO] [1712609760.094621]: SOMA.Deposit \n", + "[INFO] [1712609760.094856]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712609760.095102]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, SOMA.Deposit, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.095342]: Subclasses: []\n", + "[INFO] [1712609760.095645]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.096142]: Instances: []\n", + "[INFO] [1712609760.096403]: Direct Instances: []\n", + "[INFO] [1712609760.096687]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712609760.096927]: -------------------\n", + "[INFO] [1712609760.097173]: SOMA.DepositedObject \n", + "[INFO] [1712609760.097411]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609760.097656]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.DepositedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.097896]: Subclasses: []\n", + "[INFO] [1712609760.098213]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.098898]: Instances: []\n", + "[INFO] [1712609760.099303]: Direct Instances: []\n", + "[INFO] [1712609760.099722]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712609760.100091]: -------------------\n", + "[INFO] [1712609760.100451]: SOMA.InformationAcquisition \n", + "[INFO] [1712609760.100724]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.100989]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712609760.101254]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712609760.101557]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.102097]: Instances: []\n", + "[INFO] [1712609760.102376]: Direct Instances: []\n", + "[INFO] [1712609760.102675]: Inverse Restrictions: []\n", + "[INFO] [1712609760.102919]: -------------------\n", + "[INFO] [1712609760.103158]: SOMA.Premise \n", + "[INFO] [1712609760.103388]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712609760.103649]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, SOMA.Premise, DUL.Role}\n", + "[INFO] [1712609760.103899]: Subclasses: []\n", + "[INFO] [1712609760.104191]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.104695]: Instances: []\n", + "[INFO] [1712609760.104957]: Direct Instances: []\n", + "[INFO] [1712609760.105255]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609760.105493]: -------------------\n", + "[INFO] [1712609760.105731]: SOMA.FunctionalPart \n", + "[INFO] [1712609760.105976]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712609760.106233]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609760.106490]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712609760.106782]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.107317]: Instances: []\n", + "[INFO] [1712609760.107624]: Direct Instances: []\n", + "[INFO] [1712609760.107894]: Inverse Restrictions: []\n", + "[INFO] [1712609760.108138]: -------------------\n", + "[INFO] [1712609760.108375]: SOMA.Graspability \n", + "[INFO] [1712609760.108613]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712609760.108860]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Graspability, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.109112]: Subclasses: []\n", + "[INFO] [1712609760.109405]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.109886]: Instances: []\n", + "[INFO] [1712609760.110140]: Direct Instances: []\n", + "[INFO] [1712609760.110411]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712609760.110656]: -------------------\n", + "[INFO] [1712609760.110897]: SOMA.Destination \n", + "[INFO] [1712609760.111132]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712609760.111374]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Destination, SOMA.Location}\n", + "[INFO] [1712609760.111614]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712609760.111890]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.112428]: Instances: []\n", + "[INFO] [1712609760.112691]: Direct Instances: []\n", + "[INFO] [1712609760.113003]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712609760.113246]: -------------------\n", + "[INFO] [1712609760.113481]: SOMA.Location \n", + "[INFO] [1712609760.113722]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712609760.113977]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Location}\n", + "[INFO] [1712609760.114232]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712609760.114513]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.115009]: Instances: []\n", + "[INFO] [1712609760.115280]: Direct Instances: []\n", + "[INFO] [1712609760.115543]: Inverse Restrictions: []\n", + "[INFO] [1712609760.115784]: -------------------\n", + "[INFO] [1712609760.116021]: SOMA.DestroyedObject \n", + "[INFO] [1712609760.116251]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609760.116503]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.DestroyedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.116751]: Subclasses: []\n", + "[INFO] [1712609760.117037]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.117522]: Instances: []\n", + "[INFO] [1712609760.117770]: Direct Instances: []\n", + "[INFO] [1712609760.118063]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712609760.118309]: -------------------\n", + "[INFO] [1712609760.118543]: SOMA.Destruction \n", + "[INFO] [1712609760.118776]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712609760.119014]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Destruction, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609760.119261]: Subclasses: []\n", + "[INFO] [1712609760.119554]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.120035]: Instances: []\n", + "[INFO] [1712609760.120285]: Direct Instances: []\n", + "[INFO] [1712609760.120526]: Inverse Restrictions: []\n", + "[INFO] [1712609760.120762]: -------------------\n", + "[INFO] [1712609760.120996]: SOMA.DetectedObject \n", + "[INFO] [1712609760.121222]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609760.121460]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.DetectedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.121711]: Subclasses: []\n", + "[INFO] [1712609760.121999]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.122485]: Instances: []\n", + "[INFO] [1712609760.122736]: Direct Instances: []\n", + "[INFO] [1712609760.122985]: Inverse Restrictions: []\n", + "[INFO] [1712609760.123227]: -------------------\n", + "[INFO] [1712609760.123462]: SOMA.DeviceState \n", + "[INFO] [1712609760.123691]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609760.123925]: Ancestors: {DUL.Entity, SOMA.Intrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.DeviceState}\n", + "[INFO] [1712609760.124195]: Subclasses: []\n", + "[INFO] [1712609760.124492]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.124974]: Instances: []\n", + "[INFO] [1712609760.125223]: Direct Instances: []\n", + "[INFO] [1712609760.125461]: Inverse Restrictions: []\n", + "[INFO] [1712609760.125701]: -------------------\n", + "[INFO] [1712609760.125933]: SOMA.DeviceStateRange \n", + "[INFO] [1712609760.126168]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609760.126410]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceStateRange}\n", + "[INFO] [1712609760.126663]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712609760.126964]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.127458]: Instances: []\n", + "[INFO] [1712609760.127724]: Direct Instances: []\n", + "[INFO] [1712609760.127980]: Inverse Restrictions: []\n", + "[INFO] [1712609760.128217]: -------------------\n", + "[INFO] [1712609760.128449]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712609760.128680]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712609760.128916]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceTurnedOff, owl.Thing, SOMA.DeviceStateRange}\n", + "[INFO] [1712609760.129162]: Subclasses: []\n", + "[INFO] [1712609760.129446]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.129930]: Instances: []\n", + "[INFO] [1712609760.130476]: Direct Instances: []\n", + "[INFO] [1712609760.130865]: Inverse Restrictions: []\n", + "[INFO] [1712609760.131113]: -------------------\n", + "[INFO] [1712609760.131351]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712609760.131586]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712609760.131845]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceTurnedOn, owl.Thing, SOMA.DeviceStateRange}\n", + "[INFO] [1712609760.132102]: Subclasses: []\n", + "[INFO] [1712609760.132396]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.132881]: Instances: []\n", + "[INFO] [1712609760.133290]: Direct Instances: []\n", + "[INFO] [1712609760.133705]: Inverse Restrictions: []\n", + "[INFO] [1712609760.134073]: -------------------\n", + "[INFO] [1712609760.134662]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712609760.135240]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712609760.135842]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.136429]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712609760.137098]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.138093]: Instances: []\n", + "[INFO] [1712609760.138641]: Direct Instances: []\n", + "[INFO] [1712609760.139171]: Inverse Restrictions: []\n", + "[INFO] [1712609760.139584]: -------------------\n", + "[INFO] [1712609760.139967]: SOMA.Dicing \n", + "[INFO] [1712609760.140341]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712609760.140741]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Dicing, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609760.141120]: Subclasses: []\n", + "[INFO] [1712609760.141589]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.142299]: Instances: []\n", + "[INFO] [1712609760.142700]: Direct Instances: []\n", + "[INFO] [1712609760.143011]: Inverse Restrictions: []\n", + "[INFO] [1712609760.143286]: -------------------\n", + "[INFO] [1712609760.143555]: SOMA.DirectedMotion \n", + "[INFO] [1712609760.143820]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712609760.144084]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.144351]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712609760.144677]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.145220]: Instances: []\n", + "[INFO] [1712609760.145499]: Direct Instances: []\n", + "[INFO] [1712609760.145762]: Inverse Restrictions: []\n", + "[INFO] [1712609760.146005]: -------------------\n", + "[INFO] [1712609760.146249]: SOMA.UndirectedMotion \n", + "[INFO] [1712609760.146488]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712609760.146734]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.UndirectedMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.146993]: Subclasses: []\n", + "[INFO] [1712609760.147289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.147775]: Instances: []\n", + "[INFO] [1712609760.148050]: Direct Instances: []\n", + "[INFO] [1712609760.148310]: Inverse Restrictions: []\n", + "[INFO] [1712609760.148734]: -------------------\n", + "[INFO] [1712609760.149103]: SOMA.Dirty \n", + "[INFO] [1712609760.149454]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712609760.149806]: Ancestors: {SOMA.Dirty, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", + "[INFO] [1712609760.150172]: Subclasses: []\n", + "[INFO] [1712609760.150578]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.151170]: Instances: []\n", + "[INFO] [1712609760.151531]: Direct Instances: []\n", + "[INFO] [1712609760.151879]: Inverse Restrictions: []\n", + "[INFO] [1712609760.152243]: -------------------\n", + "[INFO] [1712609760.152594]: SOMA.Discourse \n", + "[INFO] [1712609760.152935]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712609760.153285]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Discourse}\n", + "[INFO] [1712609760.153640]: Subclasses: []\n", + "[INFO] [1712609760.154040]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.154635]: Instances: []\n", + "[INFO] [1712609760.155026]: Direct Instances: []\n", + "[INFO] [1712609760.155392]: Inverse Restrictions: []\n", + "[INFO] [1712609760.155746]: -------------------\n", + "[INFO] [1712609760.156099]: SOMA.Distancing \n", + "[INFO] [1712609760.156443]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712609760.156829]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing, SOMA.Distancing}\n", + "[INFO] [1712609760.157226]: Subclasses: []\n", + "[INFO] [1712609760.157634]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.158262]: Instances: []\n", + "[INFO] [1712609760.158692]: Direct Instances: []\n", + "[INFO] [1712609760.159065]: Inverse Restrictions: []\n", + "[INFO] [1712609760.159415]: -------------------\n", + "[INFO] [1712609760.159757]: SOMA.Dreaming \n", + "[INFO] [1712609760.160096]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609760.160438]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Dreaming, owl.Thing}\n", + "[INFO] [1712609760.160792]: Subclasses: []\n", + "[INFO] [1712609760.161182]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.161766]: Instances: []\n", + "[INFO] [1712609760.162114]: Direct Instances: []\n", + "[INFO] [1712609760.162472]: Inverse Restrictions: []\n", + "[INFO] [1712609760.162816]: -------------------\n", + "[INFO] [1712609760.163152]: SOMA.Driving \n", + "[INFO] [1712609760.163489]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609760.163829]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Driving, SOMA.Locomotion, DUL.EventType, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.164174]: Subclasses: []\n", + "[INFO] [1712609760.164576]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.165165]: Instances: []\n", + "[INFO] [1712609760.165527]: Direct Instances: []\n", + "[INFO] [1712609760.165880]: Inverse Restrictions: []\n", + "[INFO] [1712609760.166218]: -------------------\n", + "[INFO] [1712609760.166550]: SOMA.Flying \n", + "[INFO] [1712609760.166882]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609760.167221]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Flying, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.167575]: Subclasses: []\n", + "[INFO] [1712609760.167968]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.168551]: Instances: []\n", + "[INFO] [1712609760.168896]: Direct Instances: []\n", + "[INFO] [1712609760.169231]: Inverse Restrictions: []\n", + "[INFO] [1712609760.169561]: -------------------\n", + "[INFO] [1712609760.169898]: SOMA.Swimming \n", + "[INFO] [1712609760.170247]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609760.170603]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType, SOMA.Swimming}\n", + "[INFO] [1712609760.170950]: Subclasses: []\n", + "[INFO] [1712609760.171355]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.171938]: Instances: []\n", + "[INFO] [1712609760.172284]: Direct Instances: []\n", + "[INFO] [1712609760.172620]: Inverse Restrictions: []\n", + "[INFO] [1712609760.172952]: -------------------\n", + "[INFO] [1712609760.173285]: SOMA.Walking \n", + "[INFO] [1712609760.173613]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609760.173947]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Walking, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.174284]: Subclasses: []\n", + "[INFO] [1712609760.174660]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.175250]: Instances: []\n", + "[INFO] [1712609760.175597]: Direct Instances: []\n", + "[INFO] [1712609760.175961]: Inverse Restrictions: []\n", + "[INFO] [1712609760.176285]: -------------------\n", + "[INFO] [1712609760.176608]: SOMA.Dropping \n", + "[INFO] [1712609760.176934]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609760.177279]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Dropping, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609760.177605]: Subclasses: []\n", + "[INFO] [1712609760.177989]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.178586]: Instances: []\n", + "[INFO] [1712609760.178938]: Direct Instances: []\n", + "[INFO] [1712609760.179277]: Inverse Restrictions: []\n", + "[INFO] [1712609760.179693]: -------------------\n", + "[INFO] [1712609760.180033]: SOMA.Placing \n", + "[INFO] [1712609760.180361]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609760.180694]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Placing, owl.Thing}\n", + "[INFO] [1712609760.181023]: Subclasses: []\n", + "[INFO] [1712609760.181393]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.181995]: Instances: [SOMA.placing]\n", + "[INFO] [1712609760.182442]: Direct Instances: [SOMA.placing]\n", + "[INFO] [1712609760.182791]: Inverse Restrictions: []\n", + "[INFO] [1712609760.183078]: -------------------\n", + "[INFO] [1712609760.183350]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712609760.183618]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712609760.183888]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.ESTSchemaTheory, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609760.184141]: Subclasses: []\n", + "[INFO] [1712609760.184439]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.184944]: Instances: []\n", + "[INFO] [1712609760.185215]: Direct Instances: []\n", + "[INFO] [1712609760.185473]: Inverse Restrictions: []\n", + "[INFO] [1712609760.185709]: -------------------\n", + "[INFO] [1712609760.185955]: SOMA.ExistingObjectRole \n", + "[INFO] [1712609760.186218]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609760.186476]: Ancestors: {SOMA.ExistingObjectRole, DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.186720]: Subclasses: []\n", + "[INFO] [1712609760.187009]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.187496]: Instances: []\n", + "[INFO] [1712609760.187767]: Direct Instances: []\n", + "[INFO] [1712609760.188061]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712609760.188307]: -------------------\n", + "[INFO] [1712609760.188548]: SOMA.Effort \n", + "[INFO] [1712609760.188780]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712609760.189023]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Parameter, owl.Thing, SOMA.Effort}\n", + "[INFO] [1712609760.189278]: Subclasses: []\n", + "[INFO] [1712609760.189574]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.190063]: Instances: []\n", + "[INFO] [1712609760.190321]: Direct Instances: []\n", + "[INFO] [1712609760.190589]: Inverse Restrictions: []\n", + "[INFO] [1712609760.190878]: -------------------\n", + "[INFO] [1712609760.191134]: SOMA.EnclosedObject \n", + "[INFO] [1712609760.191377]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712609760.191626]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.191882]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712609760.192174]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.192684]: Instances: []\n", + "[INFO] [1712609760.192961]: Direct Instances: []\n", + "[INFO] [1712609760.193261]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712609760.193508]: -------------------\n", + "[INFO] [1712609760.193750]: SOMA.Enclosing \n", + "[INFO] [1712609760.194000]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712609760.194280]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.194553]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712609760.194854]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.195357]: Instances: []\n", + "[INFO] [1712609760.195626]: Direct Instances: []\n", + "[INFO] [1712609760.195886]: Inverse Restrictions: []\n", + "[INFO] [1712609760.196125]: -------------------\n", + "[INFO] [1712609760.196358]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712609760.196590]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609760.196833]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712609760.197093]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712609760.197383]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.197873]: Instances: []\n", + "[INFO] [1712609760.198127]: Direct Instances: []\n", + "[INFO] [1712609760.198382]: Inverse Restrictions: []\n", + "[INFO] [1712609760.198631]: -------------------\n", + "[INFO] [1712609760.198867]: SOMA.Manipulating \n", + "[INFO] [1712609760.199104]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712609760.199343]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609760.199598]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712609760.199899]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.200421]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712609760.200682]: Direct Instances: []\n", + "[INFO] [1712609760.200935]: Inverse Restrictions: []\n", + "[INFO] [1712609760.201169]: -------------------\n", + "[INFO] [1712609760.201409]: SOMA.Episode \n", + "[INFO] [1712609760.201646]: Super classes: [DUL.Situation]\n", + "[INFO] [1712609760.201882]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing}\n", + "[INFO] [1712609760.202128]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712609760.202410]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.202914]: Instances: []\n", + "[INFO] [1712609760.203176]: Direct Instances: []\n", + "[INFO] [1712609760.203430]: Inverse Restrictions: []\n", + "[INFO] [1712609760.203668]: -------------------\n", + "[INFO] [1712609760.203909]: SOMA.ExcludedObject \n", + "[INFO] [1712609760.204155]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609760.204492]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExcludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.204773]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712609760.205076]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.205590]: Instances: []\n", + "[INFO] [1712609760.205875]: Direct Instances: []\n", + "[INFO] [1712609760.206191]: Inverse Restrictions: []\n", + "[INFO] [1712609760.206440]: -------------------\n", + "[INFO] [1712609760.206684]: SOMA.ExecutableFile \n", + "[INFO] [1712609760.206935]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.207181]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", + "[INFO] [1712609760.207453]: Subclasses: []\n", + "[INFO] [1712609760.207761]: Properties: [rdf-schema.comment, DUL.realizes, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.208249]: Instances: []\n", + "[INFO] [1712609760.208511]: Direct Instances: []\n", + "[INFO] [1712609760.208827]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712609760.209071]: -------------------\n", + "[INFO] [1712609760.209307]: SOMA.Executable_Code \n", + "[INFO] [1712609760.209541]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712609760.209793]: Ancestors: {SOMA.Computer_Program, owl.Thing, SOMA.Executable_Code}\n", + "[INFO] [1712609760.210043]: Subclasses: []\n", + "[INFO] [1712609760.210472]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.211048]: Instances: []\n", + "[INFO] [1712609760.211357]: Direct Instances: []\n", + "[INFO] [1712609760.211728]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712609760.212014]: -------------------\n", + "[INFO] [1712609760.212278]: SOMA.ExecutableFormat \n", + "[INFO] [1712609760.212531]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712609760.212790]: Ancestors: {DUL.Entity, SOMA.ExecutableFormat, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.213033]: Subclasses: []\n", + "[INFO] [1712609760.213329]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.213838]: Instances: []\n", + "[INFO] [1712609760.214108]: Direct Instances: []\n", + "[INFO] [1712609760.214425]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712609760.214675]: -------------------\n", + "[INFO] [1712609760.214918]: SOMA.SchematicTheory \n", + "[INFO] [1712609760.215168]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712609760.215420]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609760.215673]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712609760.215959]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.216472]: Instances: []\n", + "[INFO] [1712609760.216747]: Direct Instances: []\n", + "[INFO] [1712609760.217010]: Inverse Restrictions: []\n", + "[INFO] [1712609760.217259]: -------------------\n", + "[INFO] [1712609760.217500]: SOMA.ExecutableSoftware \n", + "[INFO] [1712609760.217734]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.217988]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", + "[INFO] [1712609760.218242]: Subclasses: []\n", + "[INFO] [1712609760.218536]: Properties: [rdf-schema.comment, DUL.hasMember, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.219028]: Instances: []\n", + "[INFO] [1712609760.219279]: Direct Instances: []\n", + "[INFO] [1712609760.219527]: Inverse Restrictions: []\n", + "[INFO] [1712609760.219772]: -------------------\n", + "[INFO] [1712609760.220011]: SOMA.Software \n", + "[INFO] [1712609760.220260]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712609760.220505]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.Software}\n", + "[INFO] [1712609760.220763]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712609760.221059]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.describes]\n", + "[INFO] [1712609760.221552]: Instances: []\n", + "[INFO] [1712609760.221812]: Direct Instances: []\n", + "[INFO] [1712609760.222195]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609760.222445]: -------------------\n", + "[INFO] [1712609760.222685]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712609760.222923]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712609760.223171]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.223427]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712609760.223722]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.224217]: Instances: []\n", + "[INFO] [1712609760.224511]: Direct Instances: []\n", + "[INFO] [1712609760.224779]: Inverse Restrictions: []\n", + "[INFO] [1712609760.225021]: -------------------\n", + "[INFO] [1712609760.225257]: SOMA.ExperiencerRole \n", + "[INFO] [1712609760.225486]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712609760.225728]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExperiencerRole, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", + "[INFO] [1712609760.225987]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712609760.226285]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.226781]: Instances: []\n", + "[INFO] [1712609760.227052]: Direct Instances: []\n", + "[INFO] [1712609760.227313]: Inverse Restrictions: []\n", + "[INFO] [1712609760.227554]: -------------------\n", + "[INFO] [1712609760.227787]: SOMA.ExtractedObject \n", + "[INFO] [1712609760.228020]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609760.228264]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ExtractedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.228517]: Subclasses: []\n", + "[INFO] [1712609760.228809]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.229296]: Instances: []\n", + "[INFO] [1712609760.229548]: Direct Instances: []\n", + "[INFO] [1712609760.229796]: Inverse Restrictions: []\n", + "[INFO] [1712609760.230041]: -------------------\n", + "[INFO] [1712609760.230278]: SOMA.PhysicalQuality \n", + "[INFO] [1712609760.230521]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712609760.230754]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", + "[INFO] [1712609760.231001]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712609760.231300]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isQualityOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.231894]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712609760.232169]: Direct Instances: []\n", + "[INFO] [1712609760.232428]: Inverse Restrictions: []\n", + "[INFO] [1712609760.232669]: -------------------\n", + "[INFO] [1712609760.232908]: SOMA.FailedAttempt \n", + "[INFO] [1712609760.233140]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712609760.233388]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.FailedAttempt, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.233641]: Subclasses: []\n", + "[INFO] [1712609760.233930]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.234434]: Instances: []\n", + "[INFO] [1712609760.234689]: Direct Instances: []\n", + "[INFO] [1712609760.234946]: Inverse Restrictions: []\n", + "[INFO] [1712609760.235189]: -------------------\n", + "[INFO] [1712609760.235427]: SOMA.FaultySoftware \n", + "[INFO] [1712609760.235660]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712609760.235907]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, SOMA.FaultySoftware, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609760.236163]: Subclasses: []\n", + "[INFO] [1712609760.236454]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.236941]: Instances: []\n", + "[INFO] [1712609760.237192]: Direct Instances: []\n", + "[INFO] [1712609760.237437]: Inverse Restrictions: []\n", + "[INFO] [1712609760.237681]: -------------------\n", + "[INFO] [1712609760.237915]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712609760.238149]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712609760.238388]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609760.238635]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712609760.238931]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.239429]: Instances: []\n", + "[INFO] [1712609760.239687]: Direct Instances: []\n", + "[INFO] [1712609760.239938]: Inverse Restrictions: []\n", + "[INFO] [1712609760.240173]: -------------------\n", + "[INFO] [1712609760.240415]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712609760.240652]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712609760.240924]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PhysicalAcquiring, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609760.241178]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712609760.241473]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.241983]: Instances: []\n", + "[INFO] [1712609760.242253]: Direct Instances: []\n", + "[INFO] [1712609760.242507]: Inverse Restrictions: []\n", + "[INFO] [1712609760.242749]: -------------------\n", + "[INFO] [1712609760.242981]: SOMA.Finger \n", + "[INFO] [1712609760.243220]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712609760.243485]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, SOMA.Finger, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609760.243735]: Subclasses: []\n", + "[INFO] [1712609760.244023]: Properties: [rdf-schema.comment, DUL.isPartOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.244512]: Instances: []\n", + "[INFO] [1712609760.244780]: Direct Instances: []\n", + "[INFO] [1712609760.245035]: Inverse Restrictions: []\n", + "[INFO] [1712609760.245272]: -------------------\n", + "[INFO] [1712609760.245511]: SOMA.Hand \n", + "[INFO] [1712609760.245753]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712609760.246007]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.Hand, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609760.246253]: Subclasses: []\n", + "[INFO] [1712609760.246540]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.247044]: Instances: []\n", + "[INFO] [1712609760.247309]: Direct Instances: []\n", + "[INFO] [1712609760.247605]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712609760.247847]: -------------------\n", + "[INFO] [1712609760.248091]: SOMA.FixedJoint \n", + "[INFO] [1712609760.248337]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712609760.248599]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, SOMA.FixedJoint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609760.248845]: Subclasses: []\n", + "[INFO] [1712609760.249149]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.249639]: Instances: []\n", + "[INFO] [1712609760.249909]: Direct Instances: []\n", + "[INFO] [1712609760.250204]: Inverse Restrictions: []\n", + "[INFO] [1712609760.250452]: -------------------\n", + "[INFO] [1712609760.250691]: SOMA.MovableJoint \n", + "[INFO] [1712609760.250930]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712609760.251173]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609760.251442]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712609760.251741]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointState]\n", + "[INFO] [1712609760.252245]: Instances: []\n", + "[INFO] [1712609760.252498]: Direct Instances: []\n", + "[INFO] [1712609760.252794]: Inverse Restrictions: []\n", + "[INFO] [1712609760.253045]: -------------------\n", + "[INFO] [1712609760.253292]: SOMA.Flipping \n", + "[INFO] [1712609760.253649]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712609760.254055]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Flipping, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609760.254356]: Subclasses: []\n", + "[INFO] [1712609760.254737]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.255255]: Instances: []\n", + "[INFO] [1712609760.255526]: Direct Instances: []\n", + "[INFO] [1712609760.255780]: Inverse Restrictions: []\n", + "[INFO] [1712609760.256253]: -------------------\n", + "[INFO] [1712609760.256604]: SOMA.FloatingJoint \n", + "[INFO] [1712609760.256849]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712609760.257117]: Ancestors: {DUL.Entity, SOMA.FloatingJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609760.257371]: Subclasses: []\n", + "[INFO] [1712609760.257684]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.258188]: Instances: []\n", + "[INFO] [1712609760.258477]: Direct Instances: []\n", + "[INFO] [1712609760.258743]: Inverse Restrictions: []\n", + "[INFO] [1712609760.258994]: -------------------\n", + "[INFO] [1712609760.259256]: SOMA.Fluid \n", + "[INFO] [1712609760.259504]: Super classes: [DUL.Substance]\n", + "[INFO] [1712609760.259765]: Ancestors: {DUL.Entity, DUL.Substance, SOMA.Fluid, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609760.260018]: Subclasses: []\n", + "[INFO] [1712609760.260319]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.260834]: Instances: []\n", + "[INFO] [1712609760.261344]: Direct Instances: []\n", + "[INFO] [1712609760.261787]: Inverse Restrictions: []\n", + "[INFO] [1712609760.262210]: -------------------\n", + "[INFO] [1712609760.262636]: SOMA.MovedObject \n", + "[INFO] [1712609760.263036]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712609760.263409]: Ancestors: {SOMA.MovedObject, DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.263835]: Subclasses: []\n", + "[INFO] [1712609760.264314]: Properties: [rdf-schema.comment, SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.265018]: Instances: []\n", + "[INFO] [1712609760.265497]: Direct Instances: []\n", + "[INFO] [1712609760.266045]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712609760.266415]: -------------------\n", + "[INFO] [1712609760.266768]: SOMA.Focusing \n", + "[INFO] [1712609760.267114]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712609760.267476]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.AttentionShift, owl.Thing, SOMA.MentalTask, SOMA.Focusing}\n", + "[INFO] [1712609760.267836]: Subclasses: []\n", + "[INFO] [1712609760.268234]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.268829]: Instances: []\n", + "[INFO] [1712609760.269213]: Direct Instances: []\n", + "[INFO] [1712609760.269572]: Inverse Restrictions: []\n", + "[INFO] [1712609760.269911]: -------------------\n", + "[INFO] [1712609760.270252]: SOMA.Foolishness \n", + "[INFO] [1712609760.270585]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712609760.270939]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, SOMA.Foolishness, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.271295]: Subclasses: []\n", + "[INFO] [1712609760.271682]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.272288]: Instances: []\n", + "[INFO] [1712609760.272685]: Direct Instances: []\n", + "[INFO] [1712609760.273041]: Inverse Restrictions: []\n", + "[INFO] [1712609760.273390]: -------------------\n", + "[INFO] [1712609760.273720]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712609760.274050]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712609760.274437]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, SOMA.ForgettingIncorrectInformation, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609760.274729]: Subclasses: []\n", + "[INFO] [1712609760.275043]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.275562]: Instances: []\n", + "[INFO] [1712609760.275833]: Direct Instances: []\n", + "[INFO] [1712609760.276087]: Inverse Restrictions: []\n", + "[INFO] [1712609760.276327]: -------------------\n", + "[INFO] [1712609760.276562]: SOMA.InformationDismissal \n", + "[INFO] [1712609760.276807]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712609760.277069]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609760.277323]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712609760.277616]: Properties: [rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.278107]: Instances: []\n", + "[INFO] [1712609760.278392]: Direct Instances: []\n", + "[INFO] [1712609760.278662]: Inverse Restrictions: []\n", + "[INFO] [1712609760.278910]: -------------------\n", + "[INFO] [1712609760.279154]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712609760.279392]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712609760.279645]: Ancestors: {SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", + "[INFO] [1712609760.279913]: Subclasses: []\n", + "[INFO] [1712609760.280216]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.280722]: Instances: []\n", + "[INFO] [1712609760.281006]: Direct Instances: []\n", + "[INFO] [1712609760.281277]: Inverse Restrictions: []\n", + "[INFO] [1712609760.281538]: -------------------\n", + "[INFO] [1712609760.281789]: SOMA.Language \n", + "[INFO] [1712609760.282046]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712609760.282405]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.282730]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712609760.283077]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.283628]: Instances: []\n", + "[INFO] [1712609760.283930]: Direct Instances: []\n", + "[INFO] [1712609760.284266]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712609760.284526]: -------------------\n", + "[INFO] [1712609760.284773]: SOMA.Item \n", + "[INFO] [1712609760.285017]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609760.285274]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.285544]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712609760.285843]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.286369]: Instances: []\n", + "[INFO] [1712609760.286660]: Direct Instances: []\n", + "[INFO] [1712609760.287019]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712609760.287275]: -------------------\n", + "[INFO] [1712609760.287522]: SOMA.FunctionalDesign \n", + "[INFO] [1712609760.287763]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712609760.288025]: Ancestors: {DUL.Entity, SOMA.FunctionalDesign, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609760.288280]: Subclasses: []\n", + "[INFO] [1712609760.288578]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.289075]: Instances: []\n", + "[INFO] [1712609760.289368]: Direct Instances: []\n", + "[INFO] [1712609760.289638]: Inverse Restrictions: []\n", + "[INFO] [1712609760.289892]: -------------------\n", + "[INFO] [1712609760.290151]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712609760.290398]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712609760.290658]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609760.290940]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712609760.291251]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.291758]: Instances: []\n", + "[INFO] [1712609760.292017]: Direct Instances: []\n", + "[INFO] [1712609760.292278]: Inverse Restrictions: []\n", + "[INFO] [1712609760.292518]: -------------------\n", + "[INFO] [1712609760.292761]: SOMA.LocatumRole \n", + "[INFO] [1712609760.293014]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609760.293268]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.LocatumRole, SOMA.SpatialRelationRole}\n", + "[INFO] [1712609760.293512]: Subclasses: []\n", + "[INFO] [1712609760.293803]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.294329]: Instances: []\n", + "[INFO] [1712609760.294608]: Direct Instances: []\n", + "[INFO] [1712609760.294938]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712609760.295183]: -------------------\n", + "[INFO] [1712609760.295430]: SOMA.RelatumRole \n", + "[INFO] [1712609760.295693]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609760.295954]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, SOMA.RelatumRole, owl.Thing, DUL.Role, SOMA.SpatialRelationRole}\n", + "[INFO] [1712609760.296203]: Subclasses: []\n", + "[INFO] [1712609760.296503]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.297015]: Instances: []\n", + "[INFO] [1712609760.297289]: Direct Instances: []\n", + "[INFO] [1712609760.297610]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712609760.297857]: -------------------\n", + "[INFO] [1712609760.298098]: SOMA.GetTaskParameter \n", + "[INFO] [1712609760.298359]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712609760.298621]: Ancestors: {SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712609760.298877]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712609760.299167]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.299664]: Instances: []\n", + "[INFO] [1712609760.299940]: Direct Instances: []\n", + "[INFO] [1712609760.300197]: Inverse Restrictions: []\n", + "[INFO] [1712609760.300439]: -------------------\n", + "[INFO] [1712609760.300672]: SOMA.Planning \n", + "[INFO] [1712609760.300913]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712609760.301159]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712609760.301420]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712609760.301722]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.302233]: Instances: []\n", + "[INFO] [1712609760.302508]: Direct Instances: []\n", + "[INFO] [1712609760.302767]: Inverse Restrictions: []\n", + "[INFO] [1712609760.303007]: -------------------\n", + "[INFO] [1712609760.303238]: SOMA.GraphDatabase \n", + "[INFO] [1712609760.303472]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712609760.303728]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.303998]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712609760.304297]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.304794]: Instances: []\n", + "[INFO] [1712609760.305066]: Direct Instances: []\n", + "[INFO] [1712609760.305330]: Inverse Restrictions: []\n", + "[INFO] [1712609760.305572]: -------------------\n", + "[INFO] [1712609760.305802]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712609760.306034]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712609760.306293]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.GraphQueryLanguage, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.306549]: Subclasses: []\n", + "[INFO] [1712609760.306842]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.307335]: Instances: []\n", + "[INFO] [1712609760.307603]: Direct Instances: []\n", + "[INFO] [1712609760.307859]: Inverse Restrictions: []\n", + "[INFO] [1712609760.308096]: -------------------\n", + "[INFO] [1712609760.308328]: SOMA.QueryLanguage \n", + "[INFO] [1712609760.308560]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609760.308820]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.309076]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712609760.309367]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.309866]: Instances: []\n", + "[INFO] [1712609760.310147]: Direct Instances: []\n", + "[INFO] [1712609760.310409]: Inverse Restrictions: []\n", + "[INFO] [1712609760.310654]: -------------------\n", + "[INFO] [1712609760.310890]: SOMA.GraspTransfer \n", + "[INFO] [1712609760.311126]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712609760.311376]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.GraspTransfer, DUL.SocialObject, SOMA.Grasping, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609760.311631]: Subclasses: []\n", + "[INFO] [1712609760.311924]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.312413]: Instances: []\n", + "[INFO] [1712609760.312675]: Direct Instances: []\n", + "[INFO] [1712609760.312924]: Inverse Restrictions: []\n", + "[INFO] [1712609760.313169]: -------------------\n", + "[INFO] [1712609760.313410]: SOMA.Grasping \n", + "[INFO] [1712609760.313642]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609760.313884]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, SOMA.Grasping, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609760.314134]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712609760.314447]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.314950]: Instances: []\n", + "[INFO] [1712609760.315207]: Direct Instances: []\n", + "[INFO] [1712609760.315456]: Inverse Restrictions: []\n", + "[INFO] [1712609760.315714]: -------------------\n", + "[INFO] [1712609760.315958]: SOMA.Releasing \n", + "[INFO] [1712609760.316197]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609760.316450]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Releasing, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609760.316691]: Subclasses: []\n", + "[INFO] [1712609760.316990]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.317486]: Instances: []\n", + "[INFO] [1712609760.317744]: Direct Instances: []\n", + "[INFO] [1712609760.318007]: Inverse Restrictions: []\n", + "[INFO] [1712609760.318252]: -------------------\n", + "[INFO] [1712609760.318488]: SOMA.GraspingMotion \n", + "[INFO] [1712609760.318722]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712609760.318970]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.319235]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712609760.319552]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.320064]: Instances: []\n", + "[INFO] [1712609760.320330]: Direct Instances: []\n", + "[INFO] [1712609760.320611]: Inverse Restrictions: []\n", + "[INFO] [1712609760.320864]: -------------------\n", + "[INFO] [1712609760.321107]: SOMA.IntermediateGrasp \n", + "[INFO] [1712609760.321342]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712609760.321587]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.IntermediateGrasp, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.321828]: Subclasses: []\n", + "[INFO] [1712609760.322141]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.322637]: Instances: []\n", + "[INFO] [1712609760.322892]: Direct Instances: []\n", + "[INFO] [1712609760.323180]: Inverse Restrictions: []\n", + "[INFO] [1712609760.323427]: -------------------\n", + "[INFO] [1712609760.323671]: SOMA.PowerGrasp \n", + "[INFO] [1712609760.323910]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712609760.324163]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PowerGrasp, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.324405]: Subclasses: []\n", + "[INFO] [1712609760.324704]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.325214]: Instances: []\n", + "[INFO] [1712609760.325482]: Direct Instances: []\n", + "[INFO] [1712609760.325773]: Inverse Restrictions: []\n", + "[INFO] [1712609760.326018]: -------------------\n", + "[INFO] [1712609760.326265]: SOMA.PrecisionGrasp \n", + "[INFO] [1712609760.326514]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712609760.326773]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PrecisionGrasp, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.327021]: Subclasses: []\n", + "[INFO] [1712609760.327313]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.327800]: Instances: []\n", + "[INFO] [1712609760.328073]: Direct Instances: []\n", + "[INFO] [1712609760.328375]: Inverse Restrictions: []\n", + "[INFO] [1712609760.328621]: -------------------\n", + "[INFO] [1712609760.328858]: SOMA.PrehensileMotion \n", + "[INFO] [1712609760.329105]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712609760.329359]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.329622]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712609760.329936]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.330442]: Instances: []\n", + "[INFO] [1712609760.330701]: Direct Instances: []\n", + "[INFO] [1712609760.330967]: Inverse Restrictions: []\n", + "[INFO] [1712609760.331209]: -------------------\n", + "[INFO] [1712609760.331450]: SOMA.ReleasingMotion \n", + "[INFO] [1712609760.331905]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712609760.332288]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, SOMA.ReleasingMotion, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.332565]: Subclasses: []\n", + "[INFO] [1712609760.332879]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.333412]: Instances: []\n", + "[INFO] [1712609760.333736]: Direct Instances: []\n", + "[INFO] [1712609760.334049]: Inverse Restrictions: []\n", + "[INFO] [1712609760.334311]: -------------------\n", + "[INFO] [1712609760.334558]: SOMA.GreenColor \n", + "[INFO] [1712609760.334801]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712609760.335063]: Ancestors: {DUL.Entity, SOMA.GreenColor, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609760.335314]: Subclasses: []\n", + "[INFO] [1712609760.335612]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.336107]: Instances: []\n", + "[INFO] [1712609760.336375]: Direct Instances: []\n", + "[INFO] [1712609760.336643]: Inverse Restrictions: []\n", + "[INFO] [1712609760.336888]: -------------------\n", + "[INFO] [1712609760.337129]: SOMA.Gripper \n", + "[INFO] [1712609760.337368]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712609760.337617]: Ancestors: {DUL.Entity, SOMA.Gripper, DUL.PhysicalBody, DUL.Object, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609760.337855]: Subclasses: []\n", + "[INFO] [1712609760.338156]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.338757]: Instances: []\n", + "[INFO] [1712609760.339142]: Direct Instances: []\n", + "[INFO] [1712609760.339506]: Inverse Restrictions: []\n", + "[INFO] [1712609760.339844]: -------------------\n", + "[INFO] [1712609760.340113]: SOMA.PrehensileEffector \n", + "[INFO] [1712609760.340364]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712609760.340616]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712609760.340894]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712609760.341199]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.341691]: Instances: []\n", + "[INFO] [1712609760.341960]: Direct Instances: []\n", + "[INFO] [1712609760.342350]: Inverse Restrictions: []\n", + "[INFO] [1712609760.342650]: -------------------\n", + "[INFO] [1712609760.342921]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712609760.343176]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712609760.343444]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.TechnicalDiagnosis, owl.Thing, SOMA.HardwareDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.343710]: Subclasses: []\n", + "[INFO] [1712609760.344019]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.344520]: Instances: []\n", + "[INFO] [1712609760.344785]: Direct Instances: []\n", + "[INFO] [1712609760.345037]: Inverse Restrictions: []\n", + "[INFO] [1712609760.345273]: -------------------\n", + "[INFO] [1712609760.345530]: SOMA.HasQualityRegion \n", + "[INFO] [1712609760.345786]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712609760.346038]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing, SOMA.HasQualityRegion}\n", + "[INFO] [1712609760.346286]: Subclasses: []\n", + "[INFO] [1712609760.346585]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasQuality, DUL.hasRegion]\n", + "[INFO] [1712609760.347088]: Instances: []\n", + "[INFO] [1712609760.347351]: Direct Instances: []\n", + "[INFO] [1712609760.347599]: Inverse Restrictions: []\n", + "[INFO] [1712609760.347838]: -------------------\n", + "[INFO] [1712609760.348070]: SOMA.Head \n", + "[INFO] [1712609760.348304]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712609760.348557]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.Head, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", + "[INFO] [1712609760.348806]: Subclasses: []\n", + "[INFO] [1712609760.349093]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.349577]: Instances: []\n", + "[INFO] [1712609760.349852]: Direct Instances: []\n", + "[INFO] [1712609760.350103]: Inverse Restrictions: []\n", + "[INFO] [1712609760.350345]: -------------------\n", + "[INFO] [1712609760.350581]: SOMA.HeadMovement \n", + "[INFO] [1712609760.350810]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712609760.351055]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.HeadMovement, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.351314]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712609760.351611]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.352100]: Instances: []\n", + "[INFO] [1712609760.352368]: Direct Instances: []\n", + "[INFO] [1712609760.352627]: Inverse Restrictions: []\n", + "[INFO] [1712609760.352865]: -------------------\n", + "[INFO] [1712609760.353101]: SOMA.HeadTurning \n", + "[INFO] [1712609760.353334]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712609760.353584]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.HeadTurning, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.HeadMovement, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.353839]: Subclasses: []\n", + "[INFO] [1712609760.354131]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.354626]: Instances: []\n", + "[INFO] [1712609760.354904]: Direct Instances: []\n", + "[INFO] [1712609760.355159]: Inverse Restrictions: []\n", + "[INFO] [1712609760.355405]: -------------------\n", + "[INFO] [1712609760.355649]: SOMA.Holding \n", + "[INFO] [1712609760.355879]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609760.356142]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Holding, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712609760.356397]: Subclasses: []\n", + "[INFO] [1712609760.356692]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.357175]: Instances: []\n", + "[INFO] [1712609760.357474]: Direct Instances: []\n", + "[INFO] [1712609760.357745]: Inverse Restrictions: []\n", + "[INFO] [1712609760.357999]: -------------------\n", + "[INFO] [1712609760.358241]: SOMA.HostRole \n", + "[INFO] [1712609760.358484]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712609760.358732]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.HostRole, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.358981]: Subclasses: []\n", + "[INFO] [1712609760.359287]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.359776]: Instances: []\n", + "[INFO] [1712609760.360047]: Direct Instances: []\n", + "[INFO] [1712609760.360360]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712609760.360604]: -------------------\n", + "[INFO] [1712609760.360842]: SOMA.PluginSpecification \n", + "[INFO] [1712609760.361088]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712609760.361351]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, SOMA.PluginSpecification}\n", + "[INFO] [1712609760.361602]: Subclasses: []\n", + "[INFO] [1712609760.361902]: Properties: [rdf-schema.comment, DUL.definesRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.362397]: Instances: []\n", + "[INFO] [1712609760.362682]: Direct Instances: []\n", + "[INFO] [1712609760.363005]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712609760.363256]: -------------------\n", + "[INFO] [1712609760.363496]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712609760.363735]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712609760.363996]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, SOMA.Programming_Language, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.364244]: Subclasses: []\n", + "[INFO] [1712609760.364535]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.365025]: Instances: []\n", + "[INFO] [1712609760.365302]: Direct Instances: []\n", + "[INFO] [1712609760.365629]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712609760.365895]: -------------------\n", + "[INFO] [1712609760.366144]: SOMA.Source_Code \n", + "[INFO] [1712609760.366386]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712609760.366629]: Ancestors: {SOMA.Computer_Program, SOMA.Source_Code, owl.Thing}\n", + "[INFO] [1712609760.366884]: Subclasses: []\n", + "[INFO] [1712609760.367192]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.367690]: Instances: []\n", + "[INFO] [1712609760.367944]: Direct Instances: []\n", + "[INFO] [1712609760.368232]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712609760.368481]: -------------------\n", + "[INFO] [1712609760.368723]: SOMA.HumanActivityRecording \n", + "[INFO] [1712609760.368957]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712609760.369197]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.Episode, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712609760.369454]: Subclasses: []\n", + "[INFO] [1712609760.369747]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.370242]: Instances: []\n", + "[INFO] [1712609760.370499]: Direct Instances: []\n", + "[INFO] [1712609760.370754]: Inverse Restrictions: []\n", + "[INFO] [1712609760.371003]: -------------------\n", + "[INFO] [1712609760.371240]: SOMA.Imagining \n", + "[INFO] [1712609760.371474]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712609760.371706]: Ancestors: {SOMA.InformationAcquisition, SOMA.Imagining, owl.Thing}\n", + "[INFO] [1712609760.371949]: Subclasses: []\n", + "[INFO] [1712609760.372263]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.372763]: Instances: []\n", + "[INFO] [1712609760.373023]: Direct Instances: []\n", + "[INFO] [1712609760.373269]: Inverse Restrictions: []\n", + "[INFO] [1712609760.373514]: -------------------\n", + "[INFO] [1712609760.373756]: SOMA.Impediment \n", + "[INFO] [1712609760.374011]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712609760.374298]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Impediment, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.374545]: Subclasses: []\n", + "[INFO] [1712609760.374850]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.375346]: Instances: []\n", + "[INFO] [1712609760.375607]: Direct Instances: []\n", + "[INFO] [1712609760.375857]: Inverse Restrictions: []\n", + "[INFO] [1712609760.376093]: -------------------\n", + "[INFO] [1712609760.376326]: SOMA.Obstacle \n", + "[INFO] [1712609760.376568]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712609760.376820]: Ancestors: {DUL.Concept, SOMA.Obstacle, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609760.377059]: Subclasses: []\n", + "[INFO] [1712609760.377340]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.377835]: Instances: []\n", + "[INFO] [1712609760.378097]: Direct Instances: []\n", + "[INFO] [1712609760.378393]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712609760.378637]: -------------------\n", + "[INFO] [1712609760.378874]: SOMA.RestrictedObject \n", + "[INFO] [1712609760.379111]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712609760.379365]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RestrictedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", + "[INFO] [1712609760.379608]: Subclasses: []\n", + "[INFO] [1712609760.379893]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.380378]: Instances: []\n", + "[INFO] [1712609760.380651]: Direct Instances: []\n", + "[INFO] [1712609760.380950]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712609760.381197]: -------------------\n", + "[INFO] [1712609760.381433]: SOMA.StateTransition \n", + "[INFO] [1712609760.381684]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712609760.381938]: Ancestors: {DUL.Entity, DUL.Situation, DUL.Transition, SOMA.StateTransition, owl.Thing}\n", + "[INFO] [1712609760.382186]: Subclasses: []\n", + "[INFO] [1712609760.382485]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, SOMA.hasInitialScene, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.382992]: Instances: []\n", + "[INFO] [1712609760.383254]: Direct Instances: []\n", + "[INFO] [1712609760.383570]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712609760.383813]: -------------------\n", + "[INFO] [1712609760.384049]: SOMA.Inability \n", + "[INFO] [1712609760.384283]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712609760.384542]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Inability, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.384786]: Subclasses: []\n", + "[INFO] [1712609760.385070]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.385556]: Instances: []\n", + "[INFO] [1712609760.385823]: Direct Instances: []\n", + "[INFO] [1712609760.386075]: Inverse Restrictions: []\n", + "[INFO] [1712609760.386319]: -------------------\n", + "[INFO] [1712609760.386556]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712609760.386783]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712609760.387040]: Ancestors: {DUL.Entity, SOMA.IncompatibleSoftware, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609760.387287]: Subclasses: []\n", + "[INFO] [1712609760.387572]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.388056]: Instances: []\n", + "[INFO] [1712609760.388309]: Direct Instances: []\n", + "[INFO] [1712609760.388562]: Inverse Restrictions: []\n", + "[INFO] [1712609760.388799]: -------------------\n", + "[INFO] [1712609760.389028]: SOMA.InductiveReasoning \n", + "[INFO] [1712609760.389256]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712609760.389493]: Ancestors: {SOMA.InductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.Reasoning}\n", + "[INFO] [1712609760.389741]: Subclasses: []\n", + "[INFO] [1712609760.390028]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.390533]: Instances: []\n", + "[INFO] [1712609760.390828]: Direct Instances: []\n", + "[INFO] [1712609760.391091]: Inverse Restrictions: []\n", + "[INFO] [1712609760.391338]: -------------------\n", + "[INFO] [1712609760.391571]: SOMA.Infeasibility \n", + "[INFO] [1712609760.391801]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712609760.392044]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.392297]: Subclasses: []\n", + "[INFO] [1712609760.392589]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.393078]: Instances: []\n", + "[INFO] [1712609760.393344]: Direct Instances: []\n", + "[INFO] [1712609760.393600]: Inverse Restrictions: []\n", + "[INFO] [1712609760.393840]: -------------------\n", + "[INFO] [1712609760.394073]: SOMA.InferenceRules \n", + "[INFO] [1712609760.394310]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712609760.394552]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.InferenceRules}\n", + "[INFO] [1712609760.394802]: Subclasses: []\n", + "[INFO] [1712609760.395096]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.395582]: Instances: []\n", + "[INFO] [1712609760.395838]: Direct Instances: []\n", + "[INFO] [1712609760.396093]: Inverse Restrictions: []\n", + "[INFO] [1712609760.396329]: -------------------\n", + "[INFO] [1712609760.396560]: SOMA.InformationRetrieval \n", + "[INFO] [1712609760.396791]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712609760.397023]: Ancestors: {SOMA.InformationAcquisition, SOMA.InformationRetrieval, owl.Thing}\n", + "[INFO] [1712609760.397259]: Subclasses: []\n", + "[INFO] [1712609760.397555]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.398043]: Instances: []\n", + "[INFO] [1712609760.398317]: Direct Instances: []\n", + "[INFO] [1712609760.398608]: Inverse Restrictions: []\n", + "[INFO] [1712609760.398851]: -------------------\n", + "[INFO] [1712609760.399089]: SOMA.InformationStorage \n", + "[INFO] [1712609760.399334]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712609760.399586]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", + "[INFO] [1712609760.399840]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712609760.400130]: Properties: [rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.400620]: Instances: []\n", + "[INFO] [1712609760.400890]: Direct Instances: []\n", + "[INFO] [1712609760.401150]: Inverse Restrictions: []\n", + "[INFO] [1712609760.401389]: -------------------\n", + "[INFO] [1712609760.401627]: SOMA.StoredObject \n", + "[INFO] [1712609760.401859]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712609760.402103]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, DUL.Role, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.StoredObject, owl.Thing, SOMA.EnclosedObject}\n", + "[INFO] [1712609760.402366]: Subclasses: []\n", + "[INFO] [1712609760.402660]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.403148]: Instances: []\n", + "[INFO] [1712609760.403399]: Direct Instances: []\n", + "[INFO] [1712609760.403729]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712609760.404073]: -------------------\n", + "[INFO] [1712609760.404491]: SOMA.InsertedObject \n", + "[INFO] [1712609760.404870]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712609760.405155]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, DUL.Role, SOMA.Patient, DUL.SocialObject, SOMA.InsertedObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, SOMA.EnclosedObject}\n", + "[INFO] [1712609760.405413]: Subclasses: []\n", + "[INFO] [1712609760.405708]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.406222]: Instances: []\n", + "[INFO] [1712609760.406499]: Direct Instances: []\n", + "[INFO] [1712609760.406802]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712609760.407055]: -------------------\n", + "[INFO] [1712609760.407305]: SOMA.Instructions \n", + "[INFO] [1712609760.407560]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712609760.407822]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Instructions, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.408202]: Subclasses: []\n", + "[INFO] [1712609760.408616]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.409227]: Instances: []\n", + "[INFO] [1712609760.409618]: Direct Instances: []\n", + "[INFO] [1712609760.409992]: Inverse Restrictions: []\n", + "[INFO] [1712609760.410357]: -------------------\n", + "[INFO] [1712609760.410715]: SOMA.Interpreting \n", + "[INFO] [1712609760.411066]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609760.411349]: Ancestors: {SOMA.InformationAcquisition, SOMA.Interpreting, SOMA.DerivingInformation, owl.Thing}\n", + "[INFO] [1712609760.411614]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712609760.411910]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.412401]: Instances: []\n", + "[INFO] [1712609760.412674]: Direct Instances: []\n", + "[INFO] [1712609760.412932]: Inverse Restrictions: []\n", + "[INFO] [1712609760.413173]: -------------------\n", + "[INFO] [1712609760.413406]: SOMA.InterrogativeClause \n", + "[INFO] [1712609760.413645]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712609760.413895]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, SOMA.InterrogativeClause, DUL.InformationObject}\n", + "[INFO] [1712609760.414154]: Subclasses: []\n", + "[INFO] [1712609760.414449]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.414937]: Instances: []\n", + "[INFO] [1712609760.415196]: Direct Instances: []\n", + "[INFO] [1712609760.415490]: Inverse Restrictions: []\n", + "[INFO] [1712609760.415743]: -------------------\n", + "[INFO] [1712609760.415985]: SOMA.Introspecting \n", + "[INFO] [1712609760.416215]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712609760.416453]: Ancestors: {SOMA.InformationAcquisition, SOMA.Introspecting, owl.Thing}\n", + "[INFO] [1712609760.416697]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712609760.416986]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.417485]: Instances: []\n", + "[INFO] [1712609760.417749]: Direct Instances: []\n", + "[INFO] [1712609760.418002]: Inverse Restrictions: []\n", + "[INFO] [1712609760.418257]: -------------------\n", + "[INFO] [1712609760.418506]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712609760.418744]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712609760.418988]: Ancestors: {DUL.Entity, DUL.Region, SOMA.KineticFrictionAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609760.419241]: Subclasses: []\n", + "[INFO] [1712609760.419534]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.420017]: Instances: []\n", + "[INFO] [1712609760.420269]: Direct Instances: []\n", + "[INFO] [1712609760.420522]: Inverse Restrictions: []\n", + "[INFO] [1712609760.420767]: -------------------\n", + "[INFO] [1712609760.421005]: SOMA.KinoDynamicData \n", + "[INFO] [1712609760.421243]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609760.421481]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.KinoDynamicData, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609760.421731]: Subclasses: []\n", + "[INFO] [1712609760.422028]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.422515]: Instances: []\n", + "[INFO] [1712609760.422783]: Direct Instances: []\n", + "[INFO] [1712609760.423037]: Inverse Restrictions: []\n", + "[INFO] [1712609760.423272]: -------------------\n", + "[INFO] [1712609760.423508]: SOMA.Room \n", + "[INFO] [1712609760.423752]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712609760.424003]: Ancestors: {DUL.Entity, SOMA.Room, DUL.Object, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", + "[INFO] [1712609760.424248]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712609760.424531]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.425033]: Instances: []\n", + "[INFO] [1712609760.425301]: Direct Instances: []\n", + "[INFO] [1712609760.425554]: Inverse Restrictions: []\n", + "[INFO] [1712609760.425792]: -------------------\n", + "[INFO] [1712609760.426026]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712609760.426275]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609760.426527]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.KnowledgeRepresentationLanguage, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.426777]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712609760.427062]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.427542]: Instances: []\n", + "[INFO] [1712609760.427816]: Direct Instances: []\n", + "[INFO] [1712609760.428077]: Inverse Restrictions: []\n", + "[INFO] [1712609760.428320]: -------------------\n", + "[INFO] [1712609760.428558]: SOMA.Labeling \n", + "[INFO] [1712609760.428794]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712609760.429048]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing}\n", + "[INFO] [1712609760.429298]: Subclasses: []\n", + "[INFO] [1712609760.429589]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.430069]: Instances: []\n", + "[INFO] [1712609760.430325]: Direct Instances: []\n", + "[INFO] [1712609760.430565]: Inverse Restrictions: []\n", + "[INFO] [1712609760.430804]: -------------------\n", + "[INFO] [1712609760.431044]: SOMA.Text \n", + "[INFO] [1712609760.431280]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.431515]: Ancestors: {SOMA.Text, owl.Thing}\n", + "[INFO] [1712609760.431750]: Subclasses: []\n", + "[INFO] [1712609760.432038]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.432537]: Instances: []\n", + "[INFO] [1712609760.432798]: Direct Instances: []\n", + "[INFO] [1712609760.433143]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712609760.433383]: -------------------\n", + "[INFO] [1712609760.433619]: SOMA.Leaning \n", + "[INFO] [1712609760.433859]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712609760.434127]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Leaning, SOMA.ProcessType, SOMA.Motion}\n", + "[INFO] [1712609760.434379]: Subclasses: []\n", + "[INFO] [1712609760.434665]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.435151]: Instances: []\n", + "[INFO] [1712609760.435420]: Direct Instances: []\n", + "[INFO] [1712609760.435676]: Inverse Restrictions: []\n", + "[INFO] [1712609760.435913]: -------------------\n", + "[INFO] [1712609760.436148]: SOMA.PosturalMoving \n", + "[INFO] [1712609760.436383]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712609760.436641]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.436895]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712609760.437179]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.437660]: Instances: []\n", + "[INFO] [1712609760.437926]: Direct Instances: []\n", + "[INFO] [1712609760.438183]: Inverse Restrictions: []\n", + "[INFO] [1712609760.438419]: -------------------\n", + "[INFO] [1712609760.438653]: SOMA.Learning \n", + "[INFO] [1712609760.438886]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712609760.439127]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", + "[INFO] [1712609760.439384]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712609760.439669]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.440155]: Instances: []\n", + "[INFO] [1712609760.440429]: Direct Instances: []\n", + "[INFO] [1712609760.440687]: Inverse Restrictions: []\n", + "[INFO] [1712609760.440926]: -------------------\n", + "[INFO] [1712609760.441163]: SOMA.Leg \n", + "[INFO] [1712609760.441394]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712609760.441641]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart}\n", + "[INFO] [1712609760.441894]: Subclasses: []\n", + "[INFO] [1712609760.442186]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.442671]: Instances: []\n", + "[INFO] [1712609760.442930]: Direct Instances: []\n", + "[INFO] [1712609760.443230]: Inverse Restrictions: []\n", + "[INFO] [1712609760.443500]: -------------------\n", + "[INFO] [1712609760.443786]: SOMA.LimbMotion \n", + "[INFO] [1712609760.444063]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712609760.444355]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.LimbMotion, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.444622]: Subclasses: []\n", + "[INFO] [1712609760.444943]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.445459]: Instances: []\n", + "[INFO] [1712609760.445750]: Direct Instances: []\n", + "[INFO] [1712609760.446013]: Inverse Restrictions: []\n", + "[INFO] [1712609760.446350]: -------------------\n", + "[INFO] [1712609760.446707]: SOMA.LinkedObject \n", + "[INFO] [1712609760.446990]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712609760.447269]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, SOMA.LinkedObject, SOMA.ConnectedObject, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.447541]: Subclasses: []\n", + "[INFO] [1712609760.447851]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.448372]: Instances: []\n", + "[INFO] [1712609760.448647]: Direct Instances: []\n", + "[INFO] [1712609760.448988]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712609760.449235]: -------------------\n", + "[INFO] [1712609760.449484]: SOMA.LinkageState \n", + "[INFO] [1712609760.449741]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712609760.450006]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.LinkageState, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609760.450263]: Subclasses: []\n", + "[INFO] [1712609760.450561]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.451061]: Instances: []\n", + "[INFO] [1712609760.451325]: Direct Instances: []\n", + "[INFO] [1712609760.451573]: Inverse Restrictions: []\n", + "[INFO] [1712609760.451809]: -------------------\n", + "[INFO] [1712609760.452043]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712609760.452280]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712609760.452541]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.452824]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712609760.453134]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.453650]: Instances: []\n", + "[INFO] [1712609760.453948]: Direct Instances: []\n", + "[INFO] [1712609760.454230]: Inverse Restrictions: []\n", + "[INFO] [1712609760.454483]: -------------------\n", + "[INFO] [1712609760.454728]: SOMA.SpatialRelationRole \n", + "[INFO] [1712609760.454971]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712609760.455225]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SpatialRelationRole}\n", + "[INFO] [1712609760.455514]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712609760.455838]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.456373]: Instances: []\n", + "[INFO] [1712609760.456669]: Direct Instances: []\n", + "[INFO] [1712609760.456948]: Inverse Restrictions: []\n", + "[INFO] [1712609760.457404]: -------------------\n", + "[INFO] [1712609760.457824]: SOMA.LocutionaryAction \n", + "[INFO] [1712609760.458180]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.458479]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", + "[INFO] [1712609760.458812]: Subclasses: []\n", + "[INFO] [1712609760.459191]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.459737]: Instances: []\n", + "[INFO] [1712609760.460032]: Direct Instances: []\n", + "[INFO] [1712609760.460309]: Inverse Restrictions: []\n", + "[INFO] [1712609760.460564]: -------------------\n", + "[INFO] [1712609760.460814]: SOMA.LookingAt \n", + "[INFO] [1712609760.461069]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609760.461343]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.LookingAt}\n", + "[INFO] [1712609760.461619]: Subclasses: []\n", + "[INFO] [1712609760.461955]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.462488]: Instances: []\n", + "[INFO] [1712609760.462813]: Direct Instances: []\n", + "[INFO] [1712609760.463097]: Inverse Restrictions: []\n", + "[INFO] [1712609760.463354]: -------------------\n", + "[INFO] [1712609760.463593]: SOMA.LookingFor \n", + "[INFO] [1712609760.463828]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712609760.464068]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", + "[INFO] [1712609760.464316]: Subclasses: []\n", + "[INFO] [1712609760.464612]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.465105]: Instances: []\n", + "[INFO] [1712609760.465377]: Direct Instances: []\n", + "[INFO] [1712609760.465633]: Inverse Restrictions: []\n", + "[INFO] [1712609760.465876]: -------------------\n", + "[INFO] [1712609760.466110]: SOMA.Lowering \n", + "[INFO] [1712609760.466349]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609760.466598]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Lowering, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609760.466850]: Subclasses: []\n", + "[INFO] [1712609760.467140]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.467621]: Instances: []\n", + "[INFO] [1712609760.467878]: Direct Instances: []\n", + "[INFO] [1712609760.468143]: Inverse Restrictions: []\n", + "[INFO] [1712609760.468390]: -------------------\n", + "[INFO] [1712609760.468627]: SOMA.PhysicalAction \n", + "[INFO] [1712609760.468863]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712609760.469102]: Ancestors: {DUL.Entity, SOMA.PhysicalAction, DUL.Action, owl.Thing, DUL.Event}\n", + "[INFO] [1712609760.469352]: Subclasses: []\n", + "[INFO] [1712609760.469648]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.470139]: Instances: []\n", + "[INFO] [1712609760.470404]: Direct Instances: []\n", + "[INFO] [1712609760.470698]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609760.470959]: -------------------\n", + "[INFO] [1712609760.471208]: SOMA.Markup_Language \n", + "[INFO] [1712609760.471450]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712609760.471702]: Ancestors: {DUL.Entity, SOMA.Markup_Language, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.471963]: Subclasses: []\n", + "[INFO] [1712609760.472263]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.472756]: Instances: []\n", + "[INFO] [1712609760.473016]: Direct Instances: []\n", + "[INFO] [1712609760.473268]: Inverse Restrictions: []\n", + "[INFO] [1712609760.473532]: -------------------\n", + "[INFO] [1712609760.473782]: SOMA.Masterful \n", + "[INFO] [1712609760.474017]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712609760.474391]: Ancestors: {DUL.Entity, SOMA.Masterful, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.474753]: Subclasses: []\n", + "[INFO] [1712609760.475098]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.475620]: Instances: []\n", + "[INFO] [1712609760.475904]: Direct Instances: []\n", + "[INFO] [1712609760.476170]: Inverse Restrictions: []\n", + "[INFO] [1712609760.476422]: -------------------\n", + "[INFO] [1712609760.476668]: SOMA.Material \n", + "[INFO] [1712609760.476908]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609760.477159]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, SOMA.Material}\n", + "[INFO] [1712609760.477420]: Subclasses: []\n", + "[INFO] [1712609760.477715]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.478210]: Instances: []\n", + "[INFO] [1712609760.478471]: Direct Instances: []\n", + "[INFO] [1712609760.478718]: Inverse Restrictions: []\n", + "[INFO] [1712609760.478963]: -------------------\n", + "[INFO] [1712609760.479215]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712609760.479617]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712609760.479918]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, owl.Thing, SOMA.MedicalDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.480191]: Subclasses: []\n", + "[INFO] [1712609760.480518]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609760.481053]: Instances: []\n", + "[INFO] [1712609760.481345]: Direct Instances: []\n", + "[INFO] [1712609760.481622]: Inverse Restrictions: []\n", + "[INFO] [1712609760.481889]: -------------------\n", + "[INFO] [1712609760.482166]: SOMA.Memorizing \n", + "[INFO] [1712609760.482702]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712609760.483163]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Memorizing, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", + "[INFO] [1712609760.483604]: Subclasses: []\n", + "[INFO] [1712609760.484100]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.484667]: Instances: []\n", + "[INFO] [1712609760.484969]: Direct Instances: []\n", + "[INFO] [1712609760.485243]: Inverse Restrictions: []\n", + "[INFO] [1712609760.485493]: -------------------\n", + "[INFO] [1712609760.485742]: SOMA.MentalAction \n", + "[INFO] [1712609760.485997]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712609760.486269]: Ancestors: {DUL.Entity, SOMA.MentalAction, DUL.Action, owl.Thing, DUL.Event}\n", + "[INFO] [1712609760.486588]: Subclasses: []\n", + "[INFO] [1712609760.486947]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.487461]: Instances: []\n", + "[INFO] [1712609760.487731]: Direct Instances: []\n", + "[INFO] [1712609760.488028]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712609760.488274]: -------------------\n", + "[INFO] [1712609760.488512]: SOMA.MeshShape \n", + "[INFO] [1712609760.488762]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712609760.489027]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, SOMA.MeshShape, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609760.489281]: Subclasses: []\n", + "[INFO] [1712609760.489584]: Properties: [rdf-schema.comment, SOMA.hasFilePath, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.490079]: Instances: []\n", + "[INFO] [1712609760.490367]: Direct Instances: []\n", + "[INFO] [1712609760.490633]: Inverse Restrictions: []\n", + "[INFO] [1712609760.490883]: -------------------\n", + "[INFO] [1712609760.491130]: SOMA.MeshShapeData \n", + "[INFO] [1712609760.491396]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712609760.491669]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.MeshShapeData, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609760.491936]: Subclasses: []\n", + "[INFO] [1712609760.492244]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.492755]: Instances: []\n", + "[INFO] [1712609760.493059]: Direct Instances: []\n", + "[INFO] [1712609760.493342]: Inverse Restrictions: []\n", + "[INFO] [1712609760.493618]: -------------------\n", + "[INFO] [1712609760.493892]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712609760.494178]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712609760.494502]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.495034]: Subclasses: []\n", + "[INFO] [1712609760.495543]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.496245]: Instances: []\n", + "[INFO] [1712609760.496717]: Direct Instances: []\n", + "[INFO] [1712609760.497153]: Inverse Restrictions: []\n", + "[INFO] [1712609760.497579]: -------------------\n", + "[INFO] [1712609760.497950]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712609760.498366]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609760.498701]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.498987]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712609760.499298]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.499804]: Instances: []\n", + "[INFO] [1712609760.500081]: Direct Instances: []\n", + "[INFO] [1712609760.500344]: Inverse Restrictions: []\n", + "[INFO] [1712609760.500593]: -------------------\n", + "[INFO] [1712609760.500853]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712609760.501103]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712609760.501385]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.501746]: Subclasses: []\n", + "[INFO] [1712609760.502084]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.502615]: Instances: []\n", + "[INFO] [1712609760.502891]: Direct Instances: []\n", + "[INFO] [1712609760.503158]: Inverse Restrictions: []\n", + "[INFO] [1712609760.503407]: -------------------\n", + "[INFO] [1712609760.503655]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712609760.503896]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712609760.504165]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.504427]: Subclasses: []\n", + "[INFO] [1712609760.504729]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.505220]: Instances: []\n", + "[INFO] [1712609760.505499]: Direct Instances: []\n", + "[INFO] [1712609760.505757]: Inverse Restrictions: []\n", + "[INFO] [1712609760.506000]: -------------------\n", + "[INFO] [1712609760.506242]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712609760.506583]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712609760.506875]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.507158]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712609760.507464]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.507993]: Instances: []\n", + "[INFO] [1712609760.508266]: Direct Instances: []\n", + "[INFO] [1712609760.508531]: Inverse Restrictions: []\n", + "[INFO] [1712609760.508772]: -------------------\n", + "[INFO] [1712609760.509004]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712609760.509248]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712609760.509503]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MetacognitiveControlling, SOMA.MentalTask}\n", + "[INFO] [1712609760.509753]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712609760.510043]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.510539]: Instances: []\n", + "[INFO] [1712609760.510814]: Direct Instances: []\n", + "[INFO] [1712609760.511070]: Inverse Restrictions: []\n", + "[INFO] [1712609760.511309]: -------------------\n", + "[INFO] [1712609760.511544]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712609760.511777]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712609760.512038]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting, owl.Thing}\n", + "[INFO] [1712609760.512287]: Subclasses: []\n", + "[INFO] [1712609760.512575]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.513062]: Instances: []\n", + "[INFO] [1712609760.513334]: Direct Instances: []\n", + "[INFO] [1712609760.513588]: Inverse Restrictions: []\n", + "[INFO] [1712609760.513826]: -------------------\n", + "[INFO] [1712609760.514058]: SOMA.Mixing \n", + "[INFO] [1712609760.514294]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712609760.514543]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Mixing}\n", + "[INFO] [1712609760.514813]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712609760.515109]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.515605]: Instances: []\n", + "[INFO] [1712609760.515867]: Direct Instances: []\n", + "[INFO] [1712609760.516126]: Inverse Restrictions: []\n", + "[INFO] [1712609760.516372]: -------------------\n", + "[INFO] [1712609760.516614]: SOMA.MixingTheory \n", + "[INFO] [1712609760.516859]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712609760.517107]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.MixingTheory, owl.Thing, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609760.517357]: Subclasses: []\n", + "[INFO] [1712609760.517654]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.518151]: Instances: []\n", + "[INFO] [1712609760.518430]: Direct Instances: []\n", + "[INFO] [1712609760.518687]: Inverse Restrictions: []\n", + "[INFO] [1712609760.518929]: -------------------\n", + "[INFO] [1712609760.519166]: SOMA.MonitoringJointState \n", + "[INFO] [1712609760.519399]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712609760.519643]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, DUL.SocialObject, DUL.Object, SOMA.Proprioceiving, owl.Thing}\n", + "[INFO] [1712609760.519895]: Subclasses: []\n", + "[INFO] [1712609760.520188]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.520677]: Instances: []\n", + "[INFO] [1712609760.520947]: Direct Instances: []\n", + "[INFO] [1712609760.521201]: Inverse Restrictions: []\n", + "[INFO] [1712609760.521440]: -------------------\n", + "[INFO] [1712609760.521674]: SOMA.Proprioceiving \n", + "[INFO] [1712609760.521905]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712609760.522163]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Proprioceiving, owl.Thing}\n", + "[INFO] [1712609760.522418]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712609760.522704]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.523205]: Instances: []\n", + "[INFO] [1712609760.523474]: Direct Instances: []\n", + "[INFO] [1712609760.523726]: Inverse Restrictions: []\n", + "[INFO] [1712609760.523957]: -------------------\n", + "[INFO] [1712609760.524192]: SOMA.MovingAway \n", + "[INFO] [1712609760.524425]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712609760.524681]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.MovingAway, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.524932]: Subclasses: []\n", + "[INFO] [1712609760.525227]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.525709]: Instances: []\n", + "[INFO] [1712609760.525980]: Direct Instances: []\n", + "[INFO] [1712609760.526238]: Inverse Restrictions: []\n", + "[INFO] [1712609760.526484]: -------------------\n", + "[INFO] [1712609760.526724]: SOMA.MovingTo \n", + "[INFO] [1712609760.526958]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712609760.527201]: Ancestors: {SOMA.MovingTo, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", + "[INFO] [1712609760.527449]: Subclasses: []\n", + "[INFO] [1712609760.527745]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.528234]: Instances: []\n", + "[INFO] [1712609760.528492]: Direct Instances: []\n", + "[INFO] [1712609760.528739]: Inverse Restrictions: []\n", + "[INFO] [1712609760.528986]: -------------------\n", + "[INFO] [1712609760.529221]: SOMA.Natural_Language \n", + "[INFO] [1712609760.529457]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712609760.529700]: Ancestors: {DUL.Entity, SOMA.Natural_Language, DUL.SocialObject, DUL.Object, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.529953]: Subclasses: []\n", + "[INFO] [1712609760.530258]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.530757]: Instances: []\n", + "[INFO] [1712609760.531039]: Direct Instances: []\n", + "[INFO] [1712609760.531358]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712609760.531605]: -------------------\n", + "[INFO] [1712609760.531839]: SOMA.Natural_Language_Text \n", + "[INFO] [1712609760.532067]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.532301]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", + "[INFO] [1712609760.532553]: Subclasses: []\n", + "[INFO] [1712609760.533169]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.533933]: Instances: []\n", + "[INFO] [1712609760.534356]: Direct Instances: []\n", + "[INFO] [1712609760.534805]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712609760.535173]: -------------------\n", + "[INFO] [1712609760.535557]: SOMA.Ontology \n", + "[INFO] [1712609760.535920]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712609760.536386]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", + "[INFO] [1712609760.536812]: Subclasses: []\n", + "[INFO] [1712609760.537301]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.537975]: Instances: []\n", + "[INFO] [1712609760.538522]: Direct Instances: []\n", + "[INFO] [1712609760.538868]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712609760.539135]: -------------------\n", + "[INFO] [1712609760.539390]: SOMA.Ontology_Language \n", + "[INFO] [1712609760.539818]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712609760.540255]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.540694]: Subclasses: []\n", + "[INFO] [1712609760.541203]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.541813]: Instances: []\n", + "[INFO] [1712609760.542248]: Direct Instances: []\n", + "[INFO] [1712609760.542741]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712609760.543117]: -------------------\n", + "[INFO] [1712609760.543468]: SOMA.Option \n", + "[INFO] [1712609760.543807]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712609760.544148]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.Option, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.544501]: Subclasses: []\n", + "[INFO] [1712609760.544890]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.545478]: Instances: []\n", + "[INFO] [1712609760.545827]: Direct Instances: []\n", + "[INFO] [1712609760.546165]: Inverse Restrictions: []\n", + "[INFO] [1712609760.546502]: -------------------\n", + "[INFO] [1712609760.546835]: SOMA.Singleton \n", + "[INFO] [1712609760.547165]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.547490]: Ancestors: {SOMA.Singleton, owl.Thing}\n", + "[INFO] [1712609760.547823]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712609760.548203]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.encapsulates]\n", + "[INFO] [1712609760.548799]: Instances: []\n", + "[INFO] [1712609760.549166]: Direct Instances: []\n", + "[INFO] [1712609760.549505]: Inverse Restrictions: []\n", + "[INFO] [1712609760.549845]: -------------------\n", + "[INFO] [1712609760.550189]: SOMA.Orienting \n", + "[INFO] [1712609760.550522]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712609760.550861]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Orienting, DUL.Entity, DUL.Task, SOMA.Positioning, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609760.551187]: Subclasses: []\n", + "[INFO] [1712609760.551576]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.552163]: Instances: []\n", + "[INFO] [1712609760.552507]: Direct Instances: []\n", + "[INFO] [1712609760.552849]: Inverse Restrictions: []\n", + "[INFO] [1712609760.553184]: -------------------\n", + "[INFO] [1712609760.553509]: SOMA.Positioning \n", + "[INFO] [1712609760.553830]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712609760.554175]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Positioning, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609760.554533]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712609760.554935]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.555522]: Instances: []\n", + "[INFO] [1712609760.555874]: Direct Instances: []\n", + "[INFO] [1712609760.556235]: Inverse Restrictions: []\n", + "[INFO] [1712609760.556567]: -------------------\n", + "[INFO] [1712609760.556996]: SOMA.Origin \n", + "[INFO] [1712609760.557412]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712609760.557837]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Origin, SOMA.Location}\n", + "[INFO] [1712609760.558285]: Subclasses: []\n", + "[INFO] [1712609760.558770]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.559435]: Instances: []\n", + "[INFO] [1712609760.559866]: Direct Instances: []\n", + "[INFO] [1712609760.560330]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712609760.560700]: -------------------\n", + "[INFO] [1712609760.561054]: SOMA.ParkingArms \n", + "[INFO] [1712609760.561471]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712609760.561857]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose, SOMA.AssumingArmPose, SOMA.ParkingArms}\n", + "[INFO] [1712609760.562287]: Subclasses: []\n", + "[INFO] [1712609760.562748]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.563376]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712609760.563765]: Direct Instances: [SOMA.parking_arms]\n", + "[INFO] [1712609760.564127]: Inverse Restrictions: []\n", + "[INFO] [1712609760.564470]: -------------------\n", + "[INFO] [1712609760.564817]: SOMA.PhaseTransition \n", + "[INFO] [1712609760.565162]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712609760.565537]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", + "[INFO] [1712609760.565910]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712609760.566304]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", + "[INFO] [1712609760.566909]: Instances: []\n", + "[INFO] [1712609760.567278]: Direct Instances: []\n", + "[INFO] [1712609760.567629]: Inverse Restrictions: []\n", + "[INFO] [1712609760.567961]: -------------------\n", + "[INFO] [1712609760.568295]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712609760.568639]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712609760.568986]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.PhysicalAccessibility, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609760.569338]: Subclasses: []\n", + "[INFO] [1712609760.569749]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.570431]: Instances: []\n", + "[INFO] [1712609760.570864]: Direct Instances: []\n", + "[INFO] [1712609760.571282]: Inverse Restrictions: []\n", + "[INFO] [1712609760.571696]: -------------------\n", + "[INFO] [1712609760.572113]: SOMA.PhysicalBlockage \n", + "[INFO] [1712609760.572587]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712609760.573075]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.PhysicalBlockage, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", + "[INFO] [1712609760.573589]: Subclasses: []\n", + "[INFO] [1712609760.574239]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.575221]: Instances: []\n", + "[INFO] [1712609760.575850]: Direct Instances: []\n", + "[INFO] [1712609760.576479]: Inverse Restrictions: []\n", + "[INFO] [1712609760.577099]: -------------------\n", + "[INFO] [1712609760.577713]: SOMA.PhysicalExistence \n", + "[INFO] [1712609760.578332]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712609760.578973]: Ancestors: {DUL.Entity, SOMA.PhysicalExistence, owl.Thing, SOMA.State, SOMA.PhysicalState, DUL.Event}\n", + "[INFO] [1712609760.579617]: Subclasses: []\n", + "[INFO] [1712609760.580339]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.581414]: Instances: []\n", + "[INFO] [1712609760.582062]: Direct Instances: []\n", + "[INFO] [1712609760.582694]: Inverse Restrictions: []\n", + "[INFO] [1712609760.583259]: -------------------\n", + "[INFO] [1712609760.583817]: SOMA.PhysicalState \n", + "[INFO] [1712609760.584387]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712609760.584980]: Ancestors: {DUL.Entity, owl.Thing, SOMA.State, SOMA.PhysicalState, DUL.Event}\n", + "[INFO] [1712609760.585582]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712609760.586248]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.587244]: Instances: []\n", + "[INFO] [1712609760.587852]: Direct Instances: []\n", + "[INFO] [1712609760.588425]: Inverse Restrictions: []\n", + "[INFO] [1712609760.588933]: -------------------\n", + "[INFO] [1712609760.589451]: SOMA.PhysicsProcess \n", + "[INFO] [1712609760.589965]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712609760.590707]: Ancestors: {DUL.Entity, DUL.Process, SOMA.PhysicsProcess, owl.Thing, DUL.Event}\n", + "[INFO] [1712609760.591366]: Subclasses: []\n", + "[INFO] [1712609760.592037]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.592937]: Instances: []\n", + "[INFO] [1712609760.593507]: Direct Instances: []\n", + "[INFO] [1712609760.594030]: Inverse Restrictions: []\n", + "[INFO] [1712609760.594550]: -------------------\n", + "[INFO] [1712609760.594958]: SOMA.PlacingTheory \n", + "[INFO] [1712609760.595340]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712609760.595711]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.PlacingTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712609760.596089]: Subclasses: []\n", + "[INFO] [1712609760.596526]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.597218]: Instances: []\n", + "[INFO] [1712609760.597568]: Direct Instances: []\n", + "[INFO] [1712609760.597899]: Inverse Restrictions: []\n", + "[INFO] [1712609760.598233]: -------------------\n", + "[INFO] [1712609760.598547]: SOMA.PlanarJoint \n", + "[INFO] [1712609760.598843]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712609760.599149]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PlanarJoint}\n", + "[INFO] [1712609760.599436]: Subclasses: []\n", + "[INFO] [1712609760.599776]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.600333]: Instances: []\n", + "[INFO] [1712609760.600621]: Direct Instances: []\n", + "[INFO] [1712609760.600888]: Inverse Restrictions: []\n", + "[INFO] [1712609760.601145]: -------------------\n", + "[INFO] [1712609760.601398]: SOMA.PluginRole \n", + "[INFO] [1712609760.601647]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712609760.601908]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, SOMA.PluginRole, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.602165]: Subclasses: []\n", + "[INFO] [1712609760.602464]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.602967]: Instances: []\n", + "[INFO] [1712609760.603233]: Direct Instances: []\n", + "[INFO] [1712609760.603544]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712609760.603789]: -------------------\n", + "[INFO] [1712609760.604023]: SOMA.Pourable \n", + "[INFO] [1712609760.604265]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712609760.604525]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Pourable, DUL.Quality, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.604773]: Subclasses: []\n", + "[INFO] [1712609760.605063]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.605550]: Instances: []\n", + "[INFO] [1712609760.605819]: Direct Instances: []\n", + "[INFO] [1712609760.606122]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712609760.606380]: -------------------\n", + "[INFO] [1712609760.606626]: SOMA.PouredObject \n", + "[INFO] [1712609760.606872]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712609760.607121]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.PouredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.607388]: Subclasses: []\n", + "[INFO] [1712609760.607702]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.608196]: Instances: []\n", + "[INFO] [1712609760.608463]: Direct Instances: []\n", + "[INFO] [1712609760.608754]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712609760.608999]: -------------------\n", + "[INFO] [1712609760.609232]: SOMA.Pouring \n", + "[INFO] [1712609760.609466]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712609760.609724]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712609760.609977]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712609760.610269]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.610758]: Instances: []\n", + "[INFO] [1712609760.611028]: Direct Instances: []\n", + "[INFO] [1712609760.611289]: Inverse Restrictions: []\n", + "[INFO] [1712609760.611528]: -------------------\n", + "[INFO] [1712609760.611760]: SOMA.PouringInto \n", + "[INFO] [1712609760.612001]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712609760.612256]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.PouringInto, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712609760.612499]: Subclasses: []\n", + "[INFO] [1712609760.612784]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.613284]: Instances: []\n", + "[INFO] [1712609760.613544]: Direct Instances: []\n", + "[INFO] [1712609760.613790]: Inverse Restrictions: []\n", + "[INFO] [1712609760.614029]: -------------------\n", + "[INFO] [1712609760.614273]: SOMA.PouringOnto \n", + "[INFO] [1712609760.614515]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712609760.614764]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PouringOnto, owl.Thing, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712609760.615003]: Subclasses: []\n", + "[INFO] [1712609760.615289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.615793]: Instances: []\n", + "[INFO] [1712609760.616057]: Direct Instances: []\n", + "[INFO] [1712609760.616312]: Inverse Restrictions: []\n", + "[INFO] [1712609760.616547]: -------------------\n", + "[INFO] [1712609760.616783]: SOMA.Prediction \n", + "[INFO] [1712609760.617013]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712609760.617267]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing}\n", + "[INFO] [1712609760.617512]: Subclasses: []\n", + "[INFO] [1712609760.617800]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.618286]: Instances: []\n", + "[INFO] [1712609760.618561]: Direct Instances: []\n", + "[INFO] [1712609760.618817]: Inverse Restrictions: []\n", + "[INFO] [1712609760.619055]: -------------------\n", + "[INFO] [1712609760.619290]: SOMA.Prospecting \n", + "[INFO] [1712609760.619524]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712609760.619771]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, owl.Thing, SOMA.Prospecting}\n", + "[INFO] [1712609760.620029]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712609760.620318]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.620812]: Instances: []\n", + "[INFO] [1712609760.621083]: Direct Instances: []\n", + "[INFO] [1712609760.621345]: Inverse Restrictions: []\n", + "[INFO] [1712609760.621584]: -------------------\n", + "[INFO] [1712609760.621815]: SOMA.Predilection \n", + "[INFO] [1712609760.622064]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712609760.622431]: Ancestors: {SOMA.Predilection, DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609760.622745]: Subclasses: []\n", + "[INFO] [1712609760.623090]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.623594]: Instances: []\n", + "[INFO] [1712609760.623853]: Direct Instances: []\n", + "[INFO] [1712609760.624134]: Inverse Restrictions: []\n", + "[INFO] [1712609760.624388]: -------------------\n", + "[INFO] [1712609760.624639]: SOMA.PreferenceOrder \n", + "[INFO] [1712609760.624899]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712609760.625143]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing, SOMA.PreferenceOrder}\n", + "[INFO] [1712609760.625384]: Subclasses: []\n", + "[INFO] [1712609760.625676]: Properties: [rdf-schema.label, SOMA.orders, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.626183]: Instances: []\n", + "[INFO] [1712609760.626456]: Direct Instances: []\n", + "[INFO] [1712609760.626719]: Inverse Restrictions: []\n", + "[INFO] [1712609760.626960]: -------------------\n", + "[INFO] [1712609760.627200]: SOMA.PreferenceRegion \n", + "[INFO] [1712609760.627443]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712609760.627700]: Ancestors: {DUL.Entity, SOMA.PreferenceRegion, DUL.Region, DUL.Abstract, DUL.SocialObjectAttribute, owl.Thing}\n", + "[INFO] [1712609760.627946]: Subclasses: []\n", + "[INFO] [1712609760.628236]: Properties: [rdf-schema.comment, DUL.isRegionFor, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609760.628720]: Instances: []\n", + "[INFO] [1712609760.628972]: Direct Instances: []\n", + "[INFO] [1712609760.629227]: Inverse Restrictions: []\n", + "[INFO] [1712609760.629467]: -------------------\n", + "[INFO] [1712609760.629700]: SOMA.PrismaticJoint \n", + "[INFO] [1712609760.629935]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712609760.630178]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PrismaticJoint}\n", + "[INFO] [1712609760.630419]: Subclasses: []\n", + "[INFO] [1712609760.630718]: Properties: [rdf-schema.comment, SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.631209]: Instances: []\n", + "[INFO] [1712609760.631462]: Direct Instances: []\n", + "[INFO] [1712609760.631707]: Inverse Restrictions: []\n", + "[INFO] [1712609760.631941]: -------------------\n", + "[INFO] [1712609760.632180]: SOMA.ProcessFlow \n", + "[INFO] [1712609760.632419]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712609760.632658]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.ProcessFlow}\n", + "[INFO] [1712609760.632891]: Subclasses: []\n", + "[INFO] [1712609760.633175]: Properties: [rdf-schema.comment, SOMA.definesProcess, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.633677]: Instances: []\n", + "[INFO] [1712609760.633942]: Direct Instances: []\n", + "[INFO] [1712609760.634237]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712609760.634484]: -------------------\n", + "[INFO] [1712609760.634719]: SOMA.Progression \n", + "[INFO] [1712609760.634960]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712609760.635211]: Ancestors: {DUL.Entity, SOMA.Progression, DUL.Situation, owl.Thing}\n", + "[INFO] [1712609760.635454]: Subclasses: []\n", + "[INFO] [1712609760.635752]: Properties: [rdf-schema.comment, DUL.satisfies, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.636242]: Instances: []\n", + "[INFO] [1712609760.636509]: Direct Instances: []\n", + "[INFO] [1712609760.636769]: Inverse Restrictions: []\n", + "[INFO] [1712609760.637009]: -------------------\n", + "[INFO] [1712609760.637248]: SOMA.Protector \n", + "[INFO] [1712609760.637479]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712609760.637723]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Protector, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609760.637981]: Subclasses: []\n", + "[INFO] [1712609760.638278]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.638773]: Instances: []\n", + "[INFO] [1712609760.639026]: Direct Instances: []\n", + "[INFO] [1712609760.639272]: Inverse Restrictions: []\n", + "[INFO] [1712609760.639516]: -------------------\n", + "[INFO] [1712609760.639758]: SOMA.ProximalTheory \n", + "[INFO] [1712609760.640001]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712609760.640243]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, SOMA.ProximalTheory, DUL.Theory, owl.Thing}\n", + "[INFO] [1712609760.640499]: Subclasses: []\n", + "[INFO] [1712609760.640828]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.641598]: Instances: []\n", + "[INFO] [1712609760.641881]: Direct Instances: []\n", + "[INFO] [1712609760.642148]: Inverse Restrictions: []\n", + "[INFO] [1712609760.642396]: -------------------\n", + "[INFO] [1712609760.642639]: SOMA.PushingAway \n", + "[INFO] [1712609760.642879]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712609760.643137]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.Actuating, SOMA.PushingAway}\n", + "[INFO] [1712609760.643396]: Subclasses: []\n", + "[INFO] [1712609760.643702]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.644207]: Instances: []\n", + "[INFO] [1712609760.644472]: Direct Instances: []\n", + "[INFO] [1712609760.644728]: Inverse Restrictions: []\n", + "[INFO] [1712609760.644965]: -------------------\n", + "[INFO] [1712609760.645198]: SOMA.PushingDown \n", + "[INFO] [1712609760.645434]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712609760.645693]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.PushingDown, SOMA.Actuating}\n", + "[INFO] [1712609760.645938]: Subclasses: []\n", + "[INFO] [1712609760.646265]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.646855]: Instances: []\n", + "[INFO] [1712609760.647168]: Direct Instances: []\n", + "[INFO] [1712609760.647456]: Inverse Restrictions: []\n", + "[INFO] [1712609760.647711]: -------------------\n", + "[INFO] [1712609760.647957]: SOMA.PuttingDown \n", + "[INFO] [1712609760.648205]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712609760.648466]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.PuttingDown, owl.Thing}\n", + "[INFO] [1712609760.648715]: Subclasses: []\n", + "[INFO] [1712609760.649005]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.649496]: Instances: []\n", + "[INFO] [1712609760.649768]: Direct Instances: []\n", + "[INFO] [1712609760.650025]: Inverse Restrictions: []\n", + "[INFO] [1712609760.650292]: -------------------\n", + "[INFO] [1712609760.650549]: SOMA.QualityTransition \n", + "[INFO] [1712609760.650793]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712609760.651047]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.QualityTransition, DUL.Transition, owl.Thing}\n", + "[INFO] [1712609760.651294]: Subclasses: []\n", + "[INFO] [1712609760.651584]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.652088]: Instances: []\n", + "[INFO] [1712609760.652356]: Direct Instances: []\n", + "[INFO] [1712609760.652613]: Inverse Restrictions: []\n", + "[INFO] [1712609760.652851]: -------------------\n", + "[INFO] [1712609760.653085]: SOMA.Query \n", + "[INFO] [1712609760.653331]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712609760.653578]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, SOMA.Query, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Message}\n", + "[INFO] [1712609760.653820]: Subclasses: []\n", + "[INFO] [1712609760.654109]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.654622]: Instances: []\n", + "[INFO] [1712609760.654890]: Direct Instances: []\n", + "[INFO] [1712609760.655181]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712609760.655446]: -------------------\n", + "[INFO] [1712609760.655687]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712609760.655934]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.656178]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", + "[INFO] [1712609760.656418]: Subclasses: []\n", + "[INFO] [1712609760.656707]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.657211]: Instances: []\n", + "[INFO] [1712609760.657592]: Direct Instances: []\n", + "[INFO] [1712609760.657884]: Inverse Restrictions: []\n", + "[INFO] [1712609760.658149]: -------------------\n", + "[INFO] [1712609760.658408]: SOMA.QueryEngine \n", + "[INFO] [1712609760.658889]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609760.659209]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.QueryEngine, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.659460]: Subclasses: []\n", + "[INFO] [1712609760.659750]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.660243]: Instances: []\n", + "[INFO] [1712609760.660529]: Direct Instances: []\n", + "[INFO] [1712609760.660788]: Inverse Restrictions: []\n", + "[INFO] [1712609760.661031]: -------------------\n", + "[INFO] [1712609760.661268]: SOMA.Reaching \n", + "[INFO] [1712609760.661512]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712609760.662011]: Ancestors: {SOMA.PhysicalTask, SOMA.Reaching, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing}\n", + "[INFO] [1712609760.662443]: Subclasses: []\n", + "[INFO] [1712609760.662898]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.663418]: Instances: []\n", + "[INFO] [1712609760.663688]: Direct Instances: []\n", + "[INFO] [1712609760.663936]: Inverse Restrictions: []\n", + "[INFO] [1712609760.664180]: -------------------\n", + "[INFO] [1712609760.664421]: SOMA.Retracting \n", + "[INFO] [1712609760.664654]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712609760.664896]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing, SOMA.Retracting}\n", + "[INFO] [1712609760.665135]: Subclasses: []\n", + "[INFO] [1712609760.665456]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.665962]: Instances: []\n", + "[INFO] [1712609760.666246]: Direct Instances: []\n", + "[INFO] [1712609760.666509]: Inverse Restrictions: []\n", + "[INFO] [1712609760.666744]: -------------------\n", + "[INFO] [1712609760.666973]: SOMA.Reasoner \n", + "[INFO] [1712609760.667203]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712609760.667457]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.667719]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712609760.668009]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.668493]: Instances: []\n", + "[INFO] [1712609760.668762]: Direct Instances: []\n", + "[INFO] [1712609760.669027]: Inverse Restrictions: []\n", + "[INFO] [1712609760.669261]: -------------------\n", + "[INFO] [1712609760.669496]: SOMA.RecipientRole \n", + "[INFO] [1712609760.669724]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712609760.669970]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.RecipientRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.670230]: Subclasses: []\n", + "[INFO] [1712609760.670529]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.671014]: Instances: []\n", + "[INFO] [1712609760.671268]: Direct Instances: []\n", + "[INFO] [1712609760.671509]: Inverse Restrictions: []\n", + "[INFO] [1712609760.671739]: -------------------\n", + "[INFO] [1712609760.671997]: SOMA.RecordedEpisode \n", + "[INFO] [1712609760.672244]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712609760.672488]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712609760.672740]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712609760.673028]: Properties: [rdf-schema.comment, SOMA.includesRecord, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.673538]: Instances: []\n", + "[INFO] [1712609760.673810]: Direct Instances: []\n", + "[INFO] [1712609760.674072]: Inverse Restrictions: []\n", + "[INFO] [1712609760.674340]: -------------------\n", + "[INFO] [1712609760.674575]: SOMA.RedColor \n", + "[INFO] [1712609760.674810]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712609760.675061]: Ancestors: {DUL.Entity, DUL.Region, SOMA.ColorRegion, DUL.Abstract, SOMA.RedColor, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609760.675307]: Subclasses: []\n", + "[INFO] [1712609760.675595]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.676076]: Instances: []\n", + "[INFO] [1712609760.676356]: Direct Instances: []\n", + "[INFO] [1712609760.676611]: Inverse Restrictions: []\n", + "[INFO] [1712609760.676845]: -------------------\n", + "[INFO] [1712609760.677074]: SOMA.Reification \n", + "[INFO] [1712609760.677301]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712609760.677546]: Ancestors: {DUL.Entity, SOMA.Reification, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", + "[INFO] [1712609760.677787]: Subclasses: []\n", + "[INFO] [1712609760.678074]: Properties: [rdf-schema.comment, SOMA.isReificationOf, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.678736]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712609760.679075]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712609760.679374]: Inverse Restrictions: []\n", + "[INFO] [1712609760.679634]: -------------------\n", + "[INFO] [1712609760.679886]: SOMA.RelationalDatabase \n", + "[INFO] [1712609760.680146]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712609760.680407]: Ancestors: {SOMA.RelationalDatabase, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.680664]: Subclasses: []\n", + "[INFO] [1712609760.680967]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.681564]: Instances: []\n", + "[INFO] [1712609760.681879]: Direct Instances: []\n", + "[INFO] [1712609760.682156]: Inverse Restrictions: []\n", + "[INFO] [1712609760.682409]: -------------------\n", + "[INFO] [1712609760.682654]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712609760.682900]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712609760.683237]: Ancestors: {DUL.Entity, SOMA.RelationalQueryLanguage, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", + "[INFO] [1712609760.683525]: Subclasses: []\n", + "[INFO] [1712609760.683908]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.684525]: Instances: []\n", + "[INFO] [1712609760.684886]: Direct Instances: []\n", + "[INFO] [1712609760.685179]: Inverse Restrictions: []\n", + "[INFO] [1712609760.685440]: -------------------\n", + "[INFO] [1712609760.685690]: SOMA.RelevantPart \n", + "[INFO] [1712609760.685935]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712609760.686222]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing, SOMA.RelevantPart}\n", + "[INFO] [1712609760.686503]: Subclasses: []\n", + "[INFO] [1712609760.686815]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.687337]: Instances: []\n", + "[INFO] [1712609760.687603]: Direct Instances: []\n", + "[INFO] [1712609760.687875]: Inverse Restrictions: []\n", + "[INFO] [1712609760.688127]: -------------------\n", + "[INFO] [1712609760.688373]: SOMA.Remembering \n", + "[INFO] [1712609760.688610]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712609760.688844]: Ancestors: {SOMA.Remembering, owl.Thing}\n", + "[INFO] [1712609760.689096]: Subclasses: []\n", + "[INFO] [1712609760.689415]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.689913]: Instances: []\n", + "[INFO] [1712609760.690176]: Direct Instances: []\n", + "[INFO] [1712609760.690423]: Inverse Restrictions: []\n", + "[INFO] [1712609760.690665]: -------------------\n", + "[INFO] [1712609760.690935]: SOMA.Retrospecting \n", + "[INFO] [1712609760.691180]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712609760.691422]: Ancestors: {SOMA.InformationAcquisition, SOMA.Retrospecting, owl.Thing}\n", + "[INFO] [1712609760.691664]: Subclasses: []\n", + "[INFO] [1712609760.691961]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.692474]: Instances: []\n", + "[INFO] [1712609760.692752]: Direct Instances: []\n", + "[INFO] [1712609760.693058]: Inverse Restrictions: []\n", + "[INFO] [1712609760.693297]: -------------------\n", + "[INFO] [1712609760.693529]: SOMA.RemovedObject \n", + "[INFO] [1712609760.693762]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712609760.694019]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExcludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.RemovedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.694280]: Subclasses: []\n", + "[INFO] [1712609760.694577]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.695065]: Instances: []\n", + "[INFO] [1712609760.695340]: Direct Instances: []\n", + "[INFO] [1712609760.695595]: Inverse Restrictions: []\n", + "[INFO] [1712609760.695830]: -------------------\n", + "[INFO] [1712609760.696058]: SOMA.Replanning \n", + "[INFO] [1712609760.696284]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712609760.696520]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, SOMA.Replanning, owl.Thing}\n", + "[INFO] [1712609760.696768]: Subclasses: []\n", + "[INFO] [1712609760.697061]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.697535]: Instances: []\n", + "[INFO] [1712609760.697806]: Direct Instances: []\n", + "[INFO] [1712609760.698050]: Inverse Restrictions: []\n", + "[INFO] [1712609760.698292]: -------------------\n", + "[INFO] [1712609760.698520]: SOMA.RevoluteJoint \n", + "[INFO] [1712609760.698760]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712609760.699016]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, SOMA.RevoluteJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609760.699261]: Subclasses: []\n", + "[INFO] [1712609760.699552]: Properties: [rdf-schema.comment, SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.700033]: Instances: []\n", + "[INFO] [1712609760.700304]: Direct Instances: []\n", + "[INFO] [1712609760.700555]: Inverse Restrictions: []\n", + "[INFO] [1712609760.700788]: -------------------\n", + "[INFO] [1712609760.701016]: SOMA.Surface \n", + "[INFO] [1712609760.701250]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712609760.701494]: Ancestors: {DUL.Entity, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", + "[INFO] [1712609760.701748]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712609760.702038]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.702547]: Instances: []\n", + "[INFO] [1712609760.702813]: Direct Instances: []\n", + "[INFO] [1712609760.703070]: Inverse Restrictions: []\n", + "[INFO] [1712609760.703300]: -------------------\n", + "[INFO] [1712609760.703538]: SOMA.Rubbing \n", + "[INFO] [1712609760.703767]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712609760.704022]: Ancestors: {SOMA.Rubbing, SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.704267]: Subclasses: []\n", + "[INFO] [1712609760.704554]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.705049]: Instances: []\n", + "[INFO] [1712609760.705314]: Direct Instances: []\n", + "[INFO] [1712609760.705563]: Inverse Restrictions: []\n", + "[INFO] [1712609760.705799]: -------------------\n", + "[INFO] [1712609760.706028]: SOMA.Scene \n", + "[INFO] [1712609760.706357]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712609760.706737]: Ancestors: {SOMA.Scene, DUL.Situation, DUL.Entity, owl.Thing}\n", + "[INFO] [1712609760.707112]: Subclasses: []\n", + "[INFO] [1712609760.707480]: Properties: [rdf-schema.comment, DUL.satisfies, rdf-schema.isDefinedBy, DUL.includesEvent]\n", + "[INFO] [1712609760.707991]: Instances: []\n", + "[INFO] [1712609760.708257]: Direct Instances: []\n", + "[INFO] [1712609760.708553]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712609760.708788]: -------------------\n", + "[INFO] [1712609760.709017]: SOMA.SelectedObject \n", + "[INFO] [1712609760.709263]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712609760.709508]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.SelectedObject, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.709748]: Subclasses: []\n", + "[INFO] [1712609760.710030]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.710511]: Instances: []\n", + "[INFO] [1712609760.710785]: Direct Instances: []\n", + "[INFO] [1712609760.711095]: Inverse Restrictions: []\n", + "[INFO] [1712609760.711329]: -------------------\n", + "[INFO] [1712609760.711557]: SOMA.Selecting \n", + "[INFO] [1712609760.711784]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712609760.712027]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.Selecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712609760.712271]: Subclasses: []\n", + "[INFO] [1712609760.712557]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.713032]: Instances: []\n", + "[INFO] [1712609760.713296]: Direct Instances: []\n", + "[INFO] [1712609760.713545]: Inverse Restrictions: []\n", + "[INFO] [1712609760.713774]: -------------------\n", + "[INFO] [1712609760.714000]: SOMA.SelectingItem \n", + "[INFO] [1712609760.714242]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712609760.714484]: Ancestors: {SOMA.SelectingItem, SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712609760.714732]: Subclasses: []\n", + "[INFO] [1712609760.715023]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.715507]: Instances: []\n", + "[INFO] [1712609760.715777]: Direct Instances: []\n", + "[INFO] [1712609760.716026]: Inverse Restrictions: []\n", + "[INFO] [1712609760.716255]: -------------------\n", + "[INFO] [1712609760.716479]: SOMA.SelfReflection \n", + "[INFO] [1712609760.716702]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712609760.716940]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MetacognitiveControlling, SOMA.MentalTask, SOMA.SelfReflection}\n", + "[INFO] [1712609760.717185]: Subclasses: []\n", + "[INFO] [1712609760.717512]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.717994]: Instances: []\n", + "[INFO] [1712609760.718250]: Direct Instances: []\n", + "[INFO] [1712609760.718497]: Inverse Restrictions: []\n", + "[INFO] [1712609760.718735]: -------------------\n", + "[INFO] [1712609760.718965]: SOMA.Serving \n", + "[INFO] [1712609760.719209]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712609760.719450]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Delivering, owl.Thing, SOMA.Serving, SOMA.Actuating}\n", + "[INFO] [1712609760.719704]: Subclasses: []\n", + "[INFO] [1712609760.719995]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.720476]: Instances: []\n", + "[INFO] [1712609760.720746]: Direct Instances: []\n", + "[INFO] [1712609760.720991]: Inverse Restrictions: []\n", + "[INFO] [1712609760.721219]: -------------------\n", + "[INFO] [1712609760.721442]: SOMA.SettingGripper \n", + "[INFO] [1712609760.721663]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712609760.721894]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.SettingGripper, owl.Thing, SOMA.AssumingPose}\n", + "[INFO] [1712609760.722145]: Subclasses: []\n", + "[INFO] [1712609760.722433]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.722905]: Instances: []\n", + "[INFO] [1712609760.723175]: Direct Instances: []\n", + "[INFO] [1712609760.723420]: Inverse Restrictions: []\n", + "[INFO] [1712609760.723645]: -------------------\n", + "[INFO] [1712609760.723864]: SOMA.6DPose \n", + "[INFO] [1712609760.724134]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712609760.724386]: Ancestors: {DUL.Entity, DUL.Region, SOMA.6DPose, DUL.Abstract, owl.Thing, DUL.SpaceRegion}\n", + "[INFO] [1712609760.724629]: Subclasses: []\n", + "[INFO] [1712609760.724916]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasPositionData]\n", + "[INFO] [1712609760.725407]: Instances: []\n", + "[INFO] [1712609760.725664]: Direct Instances: []\n", + "[INFO] [1712609760.725950]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712609760.726187]: -------------------\n", + "[INFO] [1712609760.726413]: SOMA.Sharpness \n", + "[INFO] [1712609760.726649]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609760.726885]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Sharpness, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609760.727120]: Subclasses: []\n", + "[INFO] [1712609760.727410]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.727891]: Instances: []\n", + "[INFO] [1712609760.728133]: Direct Instances: []\n", + "[INFO] [1712609760.728363]: Inverse Restrictions: []\n", + "[INFO] [1712609760.728598]: -------------------\n", + "[INFO] [1712609760.728828]: SOMA.Simulating \n", + "[INFO] [1712609760.729052]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712609760.729281]: Ancestors: {SOMA.DerivingInformation, SOMA.Simulating, SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing}\n", + "[INFO] [1712609760.729526]: Subclasses: []\n", + "[INFO] [1712609760.729812]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.730293]: Instances: []\n", + "[INFO] [1712609760.730546]: Direct Instances: []\n", + "[INFO] [1712609760.730795]: Inverse Restrictions: []\n", + "[INFO] [1712609760.731031]: -------------------\n", + "[INFO] [1712609760.731258]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712609760.731482]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712609760.731722]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.Simulation_Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.731963]: Subclasses: []\n", + "[INFO] [1712609760.732249]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.732725]: Instances: []\n", + "[INFO] [1712609760.732997]: Direct Instances: []\n", + "[INFO] [1712609760.733249]: Inverse Restrictions: []\n", + "[INFO] [1712609760.733483]: -------------------\n", + "[INFO] [1712609760.733709]: SOMA.Size \n", + "[INFO] [1712609760.733933]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712609760.734354]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Size, owl.Thing}\n", + "[INFO] [1712609760.734725]: Subclasses: []\n", + "[INFO] [1712609760.735016]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.735497]: Instances: []\n", + "[INFO] [1712609760.735782]: Direct Instances: []\n", + "[INFO] [1712609760.736047]: Inverse Restrictions: []\n", + "[INFO] [1712609760.736282]: -------------------\n", + "[INFO] [1712609760.736512]: SOMA.Slicing \n", + "[INFO] [1712609760.736738]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712609760.736982]: Ancestors: {SOMA.Cutting, SOMA.Slicing, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712609760.737237]: Subclasses: []\n", + "[INFO] [1712609760.737535]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.738011]: Instances: []\n", + "[INFO] [1712609760.738442]: Direct Instances: []\n", + "[INFO] [1712609760.738827]: Inverse Restrictions: []\n", + "[INFO] [1712609760.739190]: -------------------\n", + "[INFO] [1712609760.739587]: SOMA.Sluggishness \n", + "[INFO] [1712609760.739952]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712609760.740242]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Sluggishness, DUL.Diagnosis}\n", + "[INFO] [1712609760.740500]: Subclasses: []\n", + "[INFO] [1712609760.740838]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.741326]: Instances: []\n", + "[INFO] [1712609760.741612]: Direct Instances: []\n", + "[INFO] [1712609760.741872]: Inverse Restrictions: []\n", + "[INFO] [1712609760.742108]: -------------------\n", + "[INFO] [1712609760.742344]: SOMA.SocialState \n", + "[INFO] [1712609760.742578]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712609760.742813]: Ancestors: {DUL.Entity, SOMA.SocialState, owl.Thing, SOMA.State, DUL.Event}\n", + "[INFO] [1712609760.743053]: Subclasses: []\n", + "[INFO] [1712609760.743356]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.743839]: Instances: []\n", + "[INFO] [1712609760.744087]: Direct Instances: []\n", + "[INFO] [1712609760.744327]: Inverse Restrictions: []\n", + "[INFO] [1712609760.744561]: -------------------\n", + "[INFO] [1712609760.744799]: SOMA.Software_Configuration \n", + "[INFO] [1712609760.745034]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712609760.745271]: Ancestors: {DUL.Entity, DUL.Collection, DUL.SocialObject, DUL.Configuration, SOMA.Software_Configuration, DUL.Object, owl.Thing}\n", + "[INFO] [1712609760.745511]: Subclasses: []\n", + "[INFO] [1712609760.745804]: Properties: [rdf-schema.label, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.746282]: Instances: []\n", + "[INFO] [1712609760.746557]: Direct Instances: []\n", + "[INFO] [1712609760.746910]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712609760.747146]: -------------------\n", + "[INFO] [1712609760.747373]: SOMA.SoftwareLibrary \n", + "[INFO] [1712609760.747596]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712609760.747839]: Ancestors: {DUL.Entity, SOMA.SoftwareLibrary, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.Software}\n", + "[INFO] [1712609760.748083]: Subclasses: []\n", + "[INFO] [1712609760.748366]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.748839]: Instances: []\n", + "[INFO] [1712609760.749136]: Direct Instances: []\n", + "[INFO] [1712609760.749418]: Inverse Restrictions: []\n", + "[INFO] [1712609760.749657]: -------------------\n", + "[INFO] [1712609760.749887]: SOMA.SourceMaterialRole \n", + "[INFO] [1712609760.750113]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712609760.750372]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.SourceMaterialRole, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.750617]: Subclasses: []\n", + "[INFO] [1712609760.750902]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.751377]: Instances: []\n", + "[INFO] [1712609760.751623]: Direct Instances: []\n", + "[INFO] [1712609760.751866]: Inverse Restrictions: []\n", + "[INFO] [1712609760.752108]: -------------------\n", + "[INFO] [1712609760.752341]: SOMA.SphereShape \n", + "[INFO] [1712609760.752577]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712609760.752815]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, SOMA.SphereShape}\n", + "[INFO] [1712609760.753051]: Subclasses: []\n", + "[INFO] [1712609760.753351]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712609760.753871]: Instances: []\n", + "[INFO] [1712609760.754138]: Direct Instances: []\n", + "[INFO] [1712609760.754388]: Inverse Restrictions: []\n", + "[INFO] [1712609760.754631]: -------------------\n", + "[INFO] [1712609760.754868]: SOMA.Standing \n", + "[INFO] [1712609760.755105]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712609760.755351]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Standing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.755588]: Subclasses: []\n", + "[INFO] [1712609760.755898]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.756393]: Instances: []\n", + "[INFO] [1712609760.756678]: Direct Instances: []\n", + "[INFO] [1712609760.756929]: Inverse Restrictions: []\n", + "[INFO] [1712609760.757169]: -------------------\n", + "[INFO] [1712609760.757444]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712609760.757692]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712609760.757933]: Ancestors: {DUL.Entity, SOMA.StaticFrictionAttribute, DUL.Region, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", + "[INFO] [1712609760.758192]: Subclasses: []\n", + "[INFO] [1712609760.758500]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.758996]: Instances: []\n", + "[INFO] [1712609760.759282]: Direct Instances: []\n", + "[INFO] [1712609760.759548]: Inverse Restrictions: []\n", + "[INFO] [1712609760.759786]: -------------------\n", + "[INFO] [1712609760.760021]: SOMA.Status \n", + "[INFO] [1712609760.760252]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712609760.760487]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Status, DUL.SocialObject, DUL.Object, DUL.Parameter, owl.Thing}\n", + "[INFO] [1712609760.760747]: Subclasses: []\n", + "[INFO] [1712609760.761050]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.761536]: Instances: []\n", + "[INFO] [1712609760.761791]: Direct Instances: []\n", + "[INFO] [1712609760.762090]: Inverse Restrictions: []\n", + "[INFO] [1712609760.762355]: -------------------\n", + "[INFO] [1712609760.762593]: SOMA.StatusFailure \n", + "[INFO] [1712609760.762821]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609760.763055]: Ancestors: {SOMA.StatusFailure, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609760.763306]: Subclasses: []\n", + "[INFO] [1712609760.763601]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.764132]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712609760.764459]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712609760.764748]: Inverse Restrictions: []\n", + "[INFO] [1712609760.764995]: -------------------\n", + "[INFO] [1712609760.765227]: SOMA.StimulusRole \n", + "[INFO] [1712609760.765486]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712609760.765731]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.StimulusRole}\n", + "[INFO] [1712609760.765987]: Subclasses: []\n", + "[INFO] [1712609760.766289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.766778]: Instances: []\n", + "[INFO] [1712609760.767054]: Direct Instances: []\n", + "[INFO] [1712609760.767307]: Inverse Restrictions: []\n", + "[INFO] [1712609760.767540]: -------------------\n", + "[INFO] [1712609760.767767]: SOMA.Stirring \n", + "[INFO] [1712609760.767998]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712609760.768250]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Stirring, SOMA.Mixing}\n", + "[INFO] [1712609760.768491]: Subclasses: []\n", + "[INFO] [1712609760.768780]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.769277]: Instances: []\n", + "[INFO] [1712609760.769543]: Direct Instances: []\n", + "[INFO] [1712609760.769790]: Inverse Restrictions: []\n", + "[INFO] [1712609760.770019]: -------------------\n", + "[INFO] [1712609760.770253]: SOMA.Storage \n", + "[INFO] [1712609760.770511]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712609760.770773]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, SOMA.Storage, owl.Thing, SOMA.Disposition}\n", + "[INFO] [1712609760.771020]: Subclasses: []\n", + "[INFO] [1712609760.771318]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.771805]: Instances: []\n", + "[INFO] [1712609760.772051]: Direct Instances: []\n", + "[INFO] [1712609760.772310]: Inverse Restrictions: []\n", + "[INFO] [1712609760.772556]: -------------------\n", + "[INFO] [1712609760.772789]: SOMA.StructuralDesign \n", + "[INFO] [1712609760.773017]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712609760.773253]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.StructuralDesign, owl.Thing}\n", + "[INFO] [1712609760.773497]: Subclasses: []\n", + "[INFO] [1712609760.773791]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.774302]: Instances: []\n", + "[INFO] [1712609760.774571]: Direct Instances: []\n", + "[INFO] [1712609760.774814]: Inverse Restrictions: []\n", + "[INFO] [1712609760.775057]: -------------------\n", + "[INFO] [1712609760.775298]: SOMA.TaskInvocation \n", + "[INFO] [1712609760.775540]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712609760.775781]: Ancestors: {DUL.Workflow, DUL.Entity, DUL.Plan, DUL.SocialObject, DUL.Object, SOMA.TaskInvocation, DUL.Description, owl.Thing}\n", + "[INFO] [1712609760.776022]: Subclasses: []\n", + "[INFO] [1712609760.776333]: Properties: [rdf-schema.comment, DUL.definesTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.776820]: Instances: []\n", + "[INFO] [1712609760.777086]: Direct Instances: []\n", + "[INFO] [1712609760.777415]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712609760.777662]: -------------------\n", + "[INFO] [1712609760.777897]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712609760.778131]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712609760.778378]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.778636]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712609760.778935]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.779429]: Instances: []\n", + "[INFO] [1712609760.779684]: Direct Instances: []\n", + "[INFO] [1712609760.779948]: Inverse Restrictions: []\n", + "[INFO] [1712609760.780184]: -------------------\n", + "[INFO] [1712609760.780415]: SOMA.Successfulness \n", + "[INFO] [1712609760.780638]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712609760.780871]: Ancestors: {DUL.Entity, SOMA.Successfulness, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.781119]: Subclasses: []\n", + "[INFO] [1712609760.781417]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.781891]: Instances: []\n", + "[INFO] [1712609760.782143]: Direct Instances: []\n", + "[INFO] [1712609760.782403]: Inverse Restrictions: []\n", + "[INFO] [1712609760.782640]: -------------------\n", + "[INFO] [1712609760.782868]: SOMA.SupportState \n", + "[INFO] [1712609760.783111]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712609760.783370]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.SupportState, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.FunctionalControl}\n", + "[INFO] [1712609760.783618]: Subclasses: []\n", + "[INFO] [1712609760.783907]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.784380]: Instances: []\n", + "[INFO] [1712609760.784651]: Direct Instances: []\n", + "[INFO] [1712609760.784899]: Inverse Restrictions: []\n", + "[INFO] [1712609760.785127]: -------------------\n", + "[INFO] [1712609760.785353]: SOMA.Supporter \n", + "[INFO] [1712609760.785589]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712609760.785834]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Supporter, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712609760.786068]: Subclasses: []\n", + "[INFO] [1712609760.786367]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.786874]: Instances: []\n", + "[INFO] [1712609760.787145]: Direct Instances: []\n", + "[INFO] [1712609760.787449]: Inverse Restrictions: []\n", + "[INFO] [1712609760.787686]: -------------------\n", + "[INFO] [1712609760.787917]: SOMA.SupportTheory \n", + "[INFO] [1712609760.788157]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712609760.788407]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.SupportTheory}\n", + "[INFO] [1712609760.788650]: Subclasses: []\n", + "[INFO] [1712609760.788938]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.789429]: Instances: []\n", + "[INFO] [1712609760.789694]: Direct Instances: []\n", + "[INFO] [1712609760.789938]: Inverse Restrictions: []\n", + "[INFO] [1712609760.790175]: -------------------\n", + "[INFO] [1712609760.790405]: SOMA.SupportedObject \n", + "[INFO] [1712609760.790647]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712609760.790920]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.SupportedObject, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.791170]: Subclasses: []\n", + "[INFO] [1712609760.791462]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.791971]: Instances: []\n", + "[INFO] [1712609760.792240]: Direct Instances: []\n", + "[INFO] [1712609760.792488]: Inverse Restrictions: []\n", + "[INFO] [1712609760.792720]: -------------------\n", + "[INFO] [1712609760.792953]: SOMA.SymbolicReasoner \n", + "[INFO] [1712609760.793194]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712609760.793439]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SymbolicReasoner, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.793678]: Subclasses: []\n", + "[INFO] [1712609760.793964]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.794470]: Instances: []\n", + "[INFO] [1712609760.794748]: Direct Instances: []\n", + "[INFO] [1712609760.795000]: Inverse Restrictions: []\n", + "[INFO] [1712609760.795233]: -------------------\n", + "[INFO] [1712609760.795463]: SOMA.Tapping \n", + "[INFO] [1712609760.795692]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712609760.795951]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Tapping, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.796196]: Subclasses: []\n", + "[INFO] [1712609760.796484]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.796961]: Instances: []\n", + "[INFO] [1712609760.797239]: Direct Instances: []\n", + "[INFO] [1712609760.797484]: Inverse Restrictions: []\n", + "[INFO] [1712609760.797714]: -------------------\n", + "[INFO] [1712609760.797942]: SOMA.Taxis \n", + "[INFO] [1712609760.798171]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712609760.798412]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, SOMA.Taxis, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.798664]: Subclasses: []\n", + "[INFO] [1712609760.798960]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.799438]: Instances: []\n", + "[INFO] [1712609760.799684]: Direct Instances: []\n", + "[INFO] [1712609760.799930]: Inverse Restrictions: []\n", + "[INFO] [1712609760.800169]: -------------------\n", + "[INFO] [1712609760.800398]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712609760.800629]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712609760.800868]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609760.801116]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712609760.801414]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712609760.801917]: Instances: []\n", + "[INFO] [1712609760.802182]: Direct Instances: []\n", + "[INFO] [1712609760.802438]: Inverse Restrictions: []\n", + "[INFO] [1712609760.802682]: -------------------\n", + "[INFO] [1712609760.802916]: SOMA.Temperature \n", + "[INFO] [1712609760.803154]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712609760.803387]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Temperature, DUL.Quality, owl.Thing}\n", + "[INFO] [1712609760.803656]: Subclasses: []\n", + "[INFO] [1712609760.803989]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.804474]: Instances: []\n", + "[INFO] [1712609760.804731]: Direct Instances: []\n", + "[INFO] [1712609760.805033]: Inverse Restrictions: []\n", + "[INFO] [1712609760.805290]: -------------------\n", + "[INFO] [1712609760.805526]: SOMA.TemperatureRegion \n", + "[INFO] [1712609760.805756]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712609760.805990]: Ancestors: {DUL.Entity, SOMA.TemperatureRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", + "[INFO] [1712609760.806249]: Subclasses: []\n", + "[INFO] [1712609760.806559]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.807046]: Instances: []\n", + "[INFO] [1712609760.807301]: Direct Instances: []\n", + "[INFO] [1712609760.807631]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712609760.807895]: -------------------\n", + "[INFO] [1712609760.808136]: SOMA.Tempering \n", + "[INFO] [1712609760.808374]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712609760.808619]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, SOMA.Disposition}\n", + "[INFO] [1712609760.808871]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712609760.809177]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.809671]: Instances: []\n", + "[INFO] [1712609760.809936]: Direct Instances: []\n", + "[INFO] [1712609760.810206]: Inverse Restrictions: []\n", + "[INFO] [1712609760.810451]: -------------------\n", + "[INFO] [1712609760.810686]: SOMA.ThinkAloud \n", + "[INFO] [1712609760.810916]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712609760.811155]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ThinkAloud}\n", + "[INFO] [1712609760.811390]: Subclasses: []\n", + "[INFO] [1712609760.811690]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.812177]: Instances: []\n", + "[INFO] [1712609760.812429]: Direct Instances: []\n", + "[INFO] [1712609760.812662]: Inverse Restrictions: []\n", + "[INFO] [1712609760.812887]: -------------------\n", + "[INFO] [1712609760.813124]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712609760.813355]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609760.813594]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudActionTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.813831]: Subclasses: []\n", + "[INFO] [1712609760.814114]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.814760]: Instances: []\n", + "[INFO] [1712609760.815088]: Direct Instances: []\n", + "[INFO] [1712609760.815372]: Inverse Restrictions: []\n", + "[INFO] [1712609760.815623]: -------------------\n", + "[INFO] [1712609760.815867]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712609760.816104]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712609760.816351]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.816599]: Subclasses: []\n", + "[INFO] [1712609760.816906]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.817392]: Instances: []\n", + "[INFO] [1712609760.817657]: Direct Instances: []\n", + "[INFO] [1712609760.817905]: Inverse Restrictions: []\n", + "[INFO] [1712609760.818159]: -------------------\n", + "[INFO] [1712609760.818401]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712609760.818635]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609760.818880]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.819134]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712609760.819434]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.819926]: Instances: []\n", + "[INFO] [1712609760.820187]: Direct Instances: []\n", + "[INFO] [1712609760.820439]: Inverse Restrictions: []\n", + "[INFO] [1712609760.820666]: -------------------\n", + "[INFO] [1712609760.820896]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712609760.821136]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609760.821383]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.821622]: Subclasses: []\n", + "[INFO] [1712609760.821906]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.822387]: Instances: []\n", + "[INFO] [1712609760.822663]: Direct Instances: []\n", + "[INFO] [1712609760.822911]: Inverse Restrictions: []\n", + "[INFO] [1712609760.823141]: -------------------\n", + "[INFO] [1712609760.823383]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712609760.823618]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609760.823863]: Ancestors: {SOMA.ThinkAloudOpinionTopic, DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.824146]: Subclasses: []\n", + "[INFO] [1712609760.824453]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.824946]: Instances: []\n", + "[INFO] [1712609760.825207]: Direct Instances: []\n", + "[INFO] [1712609760.825452]: Inverse Restrictions: []\n", + "[INFO] [1712609760.825689]: -------------------\n", + "[INFO] [1712609760.825924]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712609760.826159]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609760.826403]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.826640]: Subclasses: []\n", + "[INFO] [1712609760.826927]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.827420]: Instances: []\n", + "[INFO] [1712609760.827679]: Direct Instances: []\n", + "[INFO] [1712609760.827925]: Inverse Restrictions: []\n", + "[INFO] [1712609760.828154]: -------------------\n", + "[INFO] [1712609760.828398]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712609760.828637]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712609760.828880]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudPlanTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.829119]: Subclasses: []\n", + "[INFO] [1712609760.829403]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.829921]: Instances: []\n", + "[INFO] [1712609760.830198]: Direct Instances: []\n", + "[INFO] [1712609760.830446]: Inverse Restrictions: []\n", + "[INFO] [1712609760.830678]: -------------------\n", + "[INFO] [1712609760.830907]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712609760.831141]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712609760.831395]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, SOMA.ThinkAloudSceneKnowledgeTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712609760.831646]: Subclasses: []\n", + "[INFO] [1712609760.831933]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.832410]: Instances: []\n", + "[INFO] [1712609760.832676]: Direct Instances: []\n", + "[INFO] [1712609760.832921]: Inverse Restrictions: []\n", + "[INFO] [1712609760.833152]: -------------------\n", + "[INFO] [1712609760.833381]: SOMA.Threshold \n", + "[INFO] [1712609760.833607]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712609760.833843]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.Threshold, DUL.Object, DUL.Parameter, owl.Thing}\n", + "[INFO] [1712609760.834097]: Subclasses: []\n", + "[INFO] [1712609760.834396]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.834882]: Instances: []\n", + "[INFO] [1712609760.835163]: Direct Instances: []\n", + "[INFO] [1712609760.835416]: Inverse Restrictions: []\n", + "[INFO] [1712609760.835651]: -------------------\n", + "[INFO] [1712609760.835881]: SOMA.Throwing \n", + "[INFO] [1712609760.836111]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712609760.836363]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Throwing, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing, SOMA.Actuating}\n", + "[INFO] [1712609760.836612]: Subclasses: []\n", + "[INFO] [1712609760.836903]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.837402]: Instances: []\n", + "[INFO] [1712609760.837667]: Direct Instances: []\n", + "[INFO] [1712609760.837913]: Inverse Restrictions: []\n", + "[INFO] [1712609760.838155]: -------------------\n", + "[INFO] [1712609760.838396]: SOMA.TimeRole \n", + "[INFO] [1712609760.838639]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712609760.838888]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", + "[INFO] [1712609760.839151]: Subclasses: []\n", + "[INFO] [1712609760.839448]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.839963]: Instances: []\n", + "[INFO] [1712609760.840254]: Direct Instances: []\n", + "[INFO] [1712609760.840504]: Inverse Restrictions: []\n", + "[INFO] [1712609760.840770]: -------------------\n", + "[INFO] [1712609760.841035]: SOMA.Transporting \n", + "[INFO] [1712609760.841275]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712609760.841524]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", + "[INFO] [1712609760.841765]: Subclasses: []\n", + "[INFO] [1712609760.842052]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.842726]: Instances: []\n", + "[INFO] [1712609760.843164]: Direct Instances: []\n", + "[INFO] [1712609760.843564]: Inverse Restrictions: []\n", + "[INFO] [1712609760.843931]: -------------------\n", + "[INFO] [1712609760.844211]: SOMA.Triplestore \n", + "[INFO] [1712609760.844463]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712609760.844723]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Triplestore, owl.Thing, SOMA.Database, DUL.Role, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", + "[INFO] [1712609760.844977]: Subclasses: []\n", + "[INFO] [1712609760.845271]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.845777]: Instances: []\n", + "[INFO] [1712609760.846038]: Direct Instances: []\n", + "[INFO] [1712609760.846290]: Inverse Restrictions: []\n", + "[INFO] [1712609760.846524]: -------------------\n", + "[INFO] [1712609760.846750]: SOMA.Turning \n", + "[INFO] [1712609760.846975]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712609760.847225]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Turning, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712609760.847465]: Subclasses: []\n", + "[INFO] [1712609760.847746]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.848221]: Instances: []\n", + "[INFO] [1712609760.848486]: Direct Instances: []\n", + "[INFO] [1712609760.848729]: Inverse Restrictions: []\n", + "[INFO] [1712609760.848953]: -------------------\n", + "[INFO] [1712609760.849175]: SOMA.UnavailableSoftware \n", + "[INFO] [1712609760.849396]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712609760.849639]: Ancestors: {DUL.Entity, SOMA.UnavailableSoftware, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", + "[INFO] [1712609760.849879]: Subclasses: []\n", + "[INFO] [1712609760.850172]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.850675]: Instances: []\n", + "[INFO] [1712609760.850936]: Direct Instances: []\n", + "[INFO] [1712609760.851181]: Inverse Restrictions: []\n", + "[INFO] [1712609760.851409]: -------------------\n", + "[INFO] [1712609760.851633]: SOMA.Unsuccessfulness \n", + "[INFO] [1712609760.851852]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712609760.852095]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712609760.852349]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712609760.852632]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.853110]: Instances: []\n", + "[INFO] [1712609760.853379]: Direct Instances: []\n", + "[INFO] [1712609760.853646]: Inverse Restrictions: []\n", + "[INFO] [1712609760.853891]: -------------------\n", + "[INFO] [1712609760.854135]: SOMA.VideoData \n", + "[INFO] [1712609760.854368]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712609760.854608]: Ancestors: {DUL.Entity, SOMA.VideoData, DUL.InformationEntity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", + "[INFO] [1712609760.854863]: Subclasses: []\n", + "[INFO] [1712609760.855152]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.855645]: Instances: []\n", + "[INFO] [1712609760.855916]: Direct Instances: []\n", + "[INFO] [1712609760.856167]: Inverse Restrictions: []\n", + "[INFO] [1712609760.856395]: -------------------\n", + "[INFO] [1712609760.856620]: SOMA.3DPosition \n", + "[INFO] [1712609760.856847]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712609760.857079]: Ancestors: {DUL.Entity, SOMA.3DPosition, DUL.Region, DUL.Abstract, owl.Thing, DUL.SpaceRegion}\n", + "[INFO] [1712609760.857333]: Subclasses: []\n", + "[INFO] [1712609760.857666]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasPositionData]\n", + "[INFO] [1712609760.858166]: Instances: []\n", + "[INFO] [1712609760.858421]: Direct Instances: []\n", + "[INFO] [1712609760.858665]: Inverse Restrictions: []\n", + "[INFO] [1712609760.858903]: -------------------\n", + "[INFO] [1712609760.859132]: SOMA.OntologyPlaceHolderObject \n", + "[INFO] [1712609760.859356]: Super classes: [SOMA.Container, owl.Thing]\n", + "[INFO] [1712609760.859624]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Container, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor, SOMA.OntologyPlaceHolderObject}\n", + "[INFO] [1712609760.860160]: Subclasses: [SOMA.Ontoegg_tray]\n", + "[INFO] [1712609760.860477]: Properties: []\n", + "[INFO] [1712609760.860991]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609760.861277]: Direct Instances: []\n", + "[INFO] [1712609760.861556]: Inverse Restrictions: []\n", + "[INFO] [1712609760.861802]: -------------------\n", + "[INFO] [1712609760.862041]: SOMA.OntologyHandheldObject \n", + "[INFO] [1712609760.862276]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.862541]: Ancestors: {SOMA.OntologyHandheldObject, owl.Thing}\n", + "[INFO] [1712609760.862806]: Subclasses: [SOMA.Ontoegg]\n", + "[INFO] [1712609760.863095]: Properties: []\n", + "[INFO] [1712609760.863650]: Instances: [SOMA.egg_concept]\n", + "[INFO] [1712609760.863935]: Direct Instances: []\n", + "[INFO] [1712609760.864203]: Inverse Restrictions: []\n", + "[INFO] [1712609760.864448]: -------------------\n", + "[INFO] [1712609760.864685]: SOMA.OntologySubject \n", + "[INFO] [1712609760.864926]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.865194]: Ancestors: {SOMA.OntologySubject, owl.Thing}\n", + "[INFO] [1712609760.865510]: Subclasses: []\n", + "[INFO] [1712609760.865808]: Properties: []\n", + "[INFO] [1712609760.866347]: Instances: [SOMA.subject]\n", + "[INFO] [1712609760.866781]: Direct Instances: [SOMA.subject]\n", + "[INFO] [1712609760.867154]: Inverse Restrictions: []\n", + "[INFO] [1712609760.867517]: -------------------\n", + "[INFO] [1712609760.867873]: SOMA.OntologyObject \n", + "[INFO] [1712609760.868222]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.868513]: Ancestors: {SOMA.OntologyObject, owl.Thing}\n", + "[INFO] [1712609760.868774]: Subclasses: []\n", + "[INFO] [1712609760.869061]: Properties: []\n", + "[INFO] [1712609760.869582]: Instances: [SOMA.object]\n", + "[INFO] [1712609760.869868]: Direct Instances: [SOMA.object]\n", + "[INFO] [1712609760.870132]: Inverse Restrictions: []\n", + "[INFO] [1712609760.870368]: -------------------\n", + "[INFO] [1712609760.870598]: SOMA.Ontoegg \n", + "[INFO] [1712609760.870827]: Super classes: [SOMA.OntologyHandheldObject, owl.Thing]\n", + "[INFO] [1712609760.871099]: Ancestors: {SOMA.OntologyHandheldObject, SOMA.Ontoegg, owl.Thing}\n", + "[INFO] [1712609760.871346]: Subclasses: []\n", + "[INFO] [1712609760.871622]: Properties: []\n", + "[INFO] [1712609760.872126]: Instances: [SOMA.egg_concept]\n", + "[INFO] [1712609760.872395]: Direct Instances: [SOMA.egg_concept]\n", + "[INFO] [1712609760.872649]: Inverse Restrictions: []\n", + "[INFO] [1712609760.872880]: -------------------\n", + "[INFO] [1712609760.873106]: SOMA.Ontoegg_tray \n", + "[INFO] [1712609760.873328]: Super classes: [SOMA.OntologyPlaceHolderObject, owl.Thing]\n", + "[INFO] [1712609760.873610]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Container, SOMA.ResourceRole, SOMA.Ontoegg_tray, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor, SOMA.OntologyPlaceHolderObject}\n", + "[INFO] [1712609760.873862]: Subclasses: []\n", + "[INFO] [1712609760.874140]: Properties: []\n", + "[INFO] [1712609760.874644]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609760.874917]: Direct Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712609760.875167]: Inverse Restrictions: []\n", + "[INFO] [1712609760.875396]: -------------------\n", + "[INFO] [1712609760.875620]: SOMA.DynamicOntologyConcept \n", + "[INFO] [1712609760.875842]: Super classes: [owl.Thing]\n", + "[INFO] [1712609760.876108]: Ancestors: {SOMA.DynamicOntologyConcept, owl.Thing}\n", + "[INFO] [1712609760.876350]: Subclasses: []\n", + "[INFO] [1712609760.876621]: Properties: []\n", + "[INFO] [1712609760.877166]: Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", + "[INFO] [1712609760.877461]: Direct Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", + "[INFO] [1712609760.877729]: Inverse Restrictions: []\n" ] }, { @@ -11095,8 +11095,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.459777Z", - "start_time": "2024-04-08T20:19:21.448902Z" + "end_time": "2024-04-08T20:56:00.899242Z", + "start_time": "2024-04-08T20:56:00.887049Z" } }, "outputs": [ @@ -11189,8 +11189,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.473229Z", - "start_time": "2024-04-08T20:19:21.460326Z" + "end_time": "2024-04-08T20:56:00.912759Z", + "start_time": "2024-04-08T20:56:00.899906Z" } }, "outputs": [], @@ -11216,8 +11216,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.486962Z", - "start_time": "2024-04-08T20:19:21.473816Z" + "end_time": "2024-04-08T20:56:00.927669Z", + "start_time": "2024-04-08T20:56:00.913249Z" } }, "outputs": [ @@ -11225,15 +11225,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712607561.482569]: -------------------\n", - "[INFO] [1712607561.483311]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712607561.483681]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712607561.483981]: Ancestors: {DUL.Object, SOMA.DesignedContainer, SOMA-HOME.CustomContainerConcept, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, DUL.Entity}\n", - "[INFO] [1712607561.484249]: Subclasses: []\n", - "[INFO] [1712607561.484563]: Properties: []\n", - "[INFO] [1712607561.485100]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712607561.485413]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712607561.485694]: Inverse Restrictions: []\n", + "[INFO] [1712609760.921910]: -------------------\n", + "[INFO] [1712609760.922644]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712609760.923063]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712609760.923468]: Ancestors: {SOMA-HOME.CustomContainerConcept, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712609760.923955]: Subclasses: []\n", + "[INFO] [1712609760.924511]: Properties: []\n", + "[INFO] [1712609760.925414]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712609760.925849]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712609760.926282]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: False\n" ] } @@ -11257,8 +11257,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.504095Z", - "start_time": "2024-04-08T20:19:21.487574Z" + "end_time": "2024-04-08T20:56:00.941967Z", + "start_time": "2024-04-08T20:56:00.928124Z" } }, "outputs": [ @@ -11266,15 +11266,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712607561.498476]: -------------------\n", - "[INFO] [1712607561.499129]: SOMA.Cup \n", - "[INFO] [1712607561.499622]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712607561.500095]: Ancestors: {DUL.Object, SOMA.DesignedTool, SOMA.Cup, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, owl.Thing, SOMA.Crockery, SOMA.Tableware}\n", - "[INFO] [1712607561.500509]: Subclasses: []\n", - "[INFO] [1712607561.500985]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712607561.501739]: Instances: []\n", - "[INFO] [1712607561.502129]: Direct Instances: []\n", - "[INFO] [1712607561.502671]: Inverse Restrictions: []\n" + "[INFO] [1712609760.937880]: -------------------\n", + "[INFO] [1712609760.938408]: SOMA.Cup \n", + "[INFO] [1712609760.938735]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712609760.939040]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.Cup}\n", + "[INFO] [1712609760.939314]: Subclasses: []\n", + "[INFO] [1712609760.939662]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", + "[INFO] [1712609760.940208]: Instances: []\n", + "[INFO] [1712609760.940504]: Direct Instances: []\n", + "[INFO] [1712609760.940806]: Inverse Restrictions: []\n" ] } ], @@ -11302,8 +11302,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.515447Z", - "start_time": "2024-04-08T20:19:21.504681Z" + "end_time": "2024-04-08T20:56:00.955660Z", + "start_time": "2024-04-08T20:56:00.942399Z" } }, "outputs": [], @@ -11331,8 +11331,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.526134Z", - "start_time": "2024-04-08T20:19:21.517103Z" + "end_time": "2024-04-08T20:56:00.972120Z", + "start_time": "2024-04-08T20:56:00.956139Z" } }, "outputs": [ @@ -11340,7 +11340,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[]\n", + "[]\n", "['another_custom_container']\n" ] } @@ -11375,8 +11375,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.540589Z", - "start_time": "2024-04-08T20:19:21.526582Z" + "end_time": "2024-04-08T20:56:00.992600Z", + "start_time": "2024-04-08T20:56:00.972582Z" } }, "outputs": [], @@ -11415,8 +11415,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.555967Z", - "start_time": "2024-04-08T20:19:21.541054Z" + "end_time": "2024-04-08T20:56:01.008041Z", + "start_time": "2024-04-08T20:56:00.993121Z" } }, "outputs": [], @@ -11446,8 +11446,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.569965Z", - "start_time": "2024-04-08T20:19:21.556396Z" + "end_time": "2024-04-08T20:56:01.021894Z", + "start_time": "2024-04-08T20:56:01.008553Z" } }, "outputs": [], @@ -11491,8 +11491,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.580594Z", - "start_time": "2024-04-08T20:19:21.570590Z" + "end_time": "2024-04-08T20:56:01.031718Z", + "start_time": "2024-04-08T20:56:01.023017Z" } }, "outputs": [ @@ -11546,8 +11546,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:19:21.595442Z", - "start_time": "2024-04-08T20:19:21.581131Z" + "end_time": "2024-04-08T20:56:01.046414Z", + "start_time": "2024-04-08T20:56:01.032133Z" } }, "outputs": [ @@ -11587,8 +11587,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:19:22.117139Z", - "start_time": "2024-04-08T20:19:21.596067Z" + "end_time": "2024-04-08T20:56:01.510500Z", + "start_time": "2024-04-08T20:56:01.047217Z" } }, "cell_type": "code", @@ -11612,7 +11612,6 @@ "name": "stderr", "output_type": "stream", "text": [ - "Scalar element defined multiple times: limit\n", "Scalar element defined multiple times: limit\n" ] } @@ -11627,8 +11626,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:19:22.201066Z", - "start_time": "2024-04-08T20:19:22.117778Z" + "end_time": "2024-04-08T20:56:01.626506Z", + "start_time": "2024-04-08T20:56:01.511111Z" } }, "cell_type": "code", @@ -11644,7 +11643,15 @@ " ontology_property_parent_class=soma.affordsBearer,\n", " ontology_inverse_property_parent_class=soma.isBearerAffordedBy)" ], - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Scalar element defined multiple times: limit\n" + ] + } + ], "execution_count": 17 }, { @@ -11655,8 +11662,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:19:22.285452Z", - "start_time": "2024-04-08T20:19:22.201699Z" + "end_time": "2024-04-08T20:56:01.716532Z", + "start_time": "2024-04-08T20:56:01.627121Z" } }, "cell_type": "code", @@ -11684,8 +11691,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:19:22.304063Z", - "start_time": "2024-04-08T20:19:22.286248Z" + "end_time": "2024-04-08T20:56:01.739006Z", + "start_time": "2024-04-08T20:56:01.717113Z" } }, "cell_type": "code", @@ -11705,8 +11712,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:19:22.314279Z", - "start_time": "2024-04-08T20:19:22.304909Z" + "end_time": "2024-04-08T20:56:01.749328Z", + "start_time": "2024-04-08T20:56:01.739888Z" } }, "cell_type": "code", @@ -11733,8 +11740,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:19:22.328800Z", - "start_time": "2024-04-08T20:19:22.314856Z" + "end_time": "2024-04-08T20:56:01.763695Z", + "start_time": "2024-04-08T20:56:01.749777Z" } }, "cell_type": "code", @@ -11761,8 +11768,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:19:30.967449Z", - "start_time": "2024-04-08T20:19:22.329292Z" + "end_time": "2024-04-08T20:56:10.455164Z", + "start_time": "2024-04-08T20:56:01.764141Z" } }, "cell_type": "code", @@ -11802,8 +11809,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712607563\n", - " nsecs: 781843185\n", + " secs: 1712609763\n", + " nsecs: 264731168\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -11814,20 +11821,7 @@ " x: -0.0\n", " y: 0.0\n", " z: 0.15234391170286138\n", - " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "[ERROR] [1712607566.984047]: OntologyConceptHolder for [parking_arms] was already created!\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ + " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n", "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", "Remove body failed\n", "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", @@ -11835,14 +11829,6 @@ "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", "Remove body failed\n" ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "[ERROR] [1712607568.361305]: OntologyConceptHolder for [navigating] was already created!\n", - "[ERROR] [1712607570.444021]: OntologyConceptHolder for [parking_arms] was already created!\n" - ] } ], "execution_count": 22 @@ -11858,8 +11844,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:19:31.021847Z", - "start_time": "2024-04-08T20:19:30.969015Z" + "end_time": "2024-04-08T20:56:10.506937Z", + "start_time": "2024-04-08T20:56:10.456806Z" } }, "cell_type": "code", @@ -11869,7 +11855,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712607571.019298]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712609770.505111]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py index 83054ae3d..396762b0d 100644 --- a/src/pycram/ontology/ontology_common.py +++ b/src/pycram/ontology/ontology_common.py @@ -76,7 +76,7 @@ def get_ontology_concepts_by_class(cls, ontology_concept_class: Type[owlready2.T return list(itertools.chain( *[concept_holder.ontology_concept for concept_holder in cls.__all_ontology_concept_holders.values() - if issubclass(concept_holder.ontology_concept, ontology_concept_class)])) + if owlready2.issubclass(concept_holder.ontology_concept, ontology_concept_class)])) @classmethod def get_ontology_concept_by_name(cls, ontology_concept_name: str) -> owlready2.Thing: @@ -88,14 +88,13 @@ def get_ontology_concept_by_name(cls, ontology_concept_name: str) -> owlready2.T return concept_holder.ontology_concept if concept_holder else None @classmethod - def get_ontology_concept_holders_by_class(cls, ontology_concept_class: Type[owlready2.Thing]): + def get_ontology_concept_holders_by_class(cls, ontology_concept_class: Type[owlready2.Thing]): """ :ontology_concept_class: An ontology concept class Return a list of ontology concept holders for the given ontology concept class """ - return list(itertools.chain( - *[concept_holder for concept_holder in cls.__all_ontology_concept_holders.values() - if issubclass(concept_holder.ontology_concept, ontology_concept_class)])) + return [concept_holder for concept_holder in cls.__all_ontology_concept_holders.values() + if isinstance(concept_holder.ontology_concept, ontology_concept_class)] @classmethod def get_ontology_concept_holder_by_name(cls, ontology_concept_name: str): From 47acbf61897b9b32aedc005df3bf8303eb31c5aa Mon Sep 17 00:00:00 2001 From: duc than Date: Tue, 9 Apr 2024 11:13:53 +0200 Subject: [PATCH 12/26] OntologyManager put ontology loading into load_ontology() --- examples/ontology.ipynb | 19941 +++++++++++++++--------------- src/pycram/ontology/ontology.py | 106 +- 2 files changed, 10026 insertions(+), 10021 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 1fa7ac7b7..321ce8bdd 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:55:57.383627Z", - "start_time": "2024-04-08T20:55:56.838138Z" + "end_time": "2024-04-09T09:50:06.877715Z", + "start_time": "2024-04-09T09:50:06.282445Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:55:57.390252Z", - "start_time": "2024-04-08T20:55:57.384452Z" + "end_time": "2024-04-09T09:50:06.884781Z", + "start_time": "2024-04-09T09:50:06.878514Z" } }, "outputs": [], @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:55:57.519038Z", - "start_time": "2024-04-08T20:55:57.390735Z" + "end_time": "2024-04-09T09:50:07.006187Z", + "start_time": "2024-04-09T09:50:06.885311Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712609757.515278]: Main Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712609757.516029]: Main Ontology namespace: SOMA-HOME\n", - "[INFO] [1712609757.516432]: Loaded ontologies:\n", - "[INFO] [1712609757.516794]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712609757.517148]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712609757.517496]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712656207.002409]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712656207.003301]: - main namespace: SOMA-HOME\n", + "[INFO] [1712656207.003760]: - loaded ontologies:\n", + "[INFO] [1712656207.004045]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712656207.004303]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712656207.004559]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -165,8 +165,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:00.885640Z", - "start_time": "2024-04-08T20:55:57.519577Z" + "end_time": "2024-04-09T09:50:10.360125Z", + "start_time": "2024-04-09T09:50:07.006878Z" } }, "outputs": [ @@ -174,9897 +174,9897 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712609757.639285]: -------------------\n", - "[INFO] [1712609757.640040]: SOMA.DesignedContainer \n", - "[INFO] [1712609757.640657]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712609757.641192]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609757.641710]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712609757.642323]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712609757.700282]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712609757.700943]: Direct Instances: []\n", - "[INFO] [1712609757.701481]: Inverse Restrictions: []\n", - "[INFO] [1712609757.703136]: -------------------\n", - "[INFO] [1712609757.703674]: DUL.PhysicalObject \n", - "[INFO] [1712609757.704118]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609757.704526]: Ancestors: {DUL.Entity, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609757.704948]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712609757.705419]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.706352]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712609757.706787]: Direct Instances: []\n", - "[INFO] [1712609757.712547]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712609757.712998]: -------------------\n", - "[INFO] [1712609757.713394]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712609757.713773]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609757.714244]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609757.714568]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712609757.714902]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.715437]: Instances: []\n", - "[INFO] [1712609757.715726]: Direct Instances: []\n", - "[INFO] [1712609757.716001]: Inverse Restrictions: []\n", - "[INFO] [1712609757.716254]: -------------------\n", - "[INFO] [1712609757.716498]: DUL.PhysicalObject \n", - "[INFO] [1712609757.716884]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609757.717220]: Ancestors: {DUL.Entity, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609757.717483]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712609757.717809]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.718595]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712609757.718897]: Direct Instances: []\n", - "[INFO] [1712609757.721412]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712609757.721717]: -------------------\n", - "[INFO] [1712609757.721997]: DUL.PhysicalObject \n", - "[INFO] [1712609757.722280]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609757.722552]: Ancestors: {DUL.Entity, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609757.722826]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712609757.723147]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.723945]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712609757.724276]: Direct Instances: []\n", - "[INFO] [1712609757.726855]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712609757.727194]: -------------------\n", - "[INFO] [1712609757.727633]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712609757.728021]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609757.728408]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609757.728794]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712609757.729198]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.729844]: Instances: []\n", - "[INFO] [1712609757.730166]: Direct Instances: []\n", - "[INFO] [1712609757.730461]: Inverse Restrictions: []\n", - "[INFO] [1712609757.731589]: -------------------\n", - "[INFO] [1712609757.731883]: SOMA.Affordance \n", - "[INFO] [1712609757.732198]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712609757.732510]: Ancestors: {DUL.Entity, SOMA.Affordance, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609757.732787]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712609757.733117]: Properties: [rdf-schema.comment, SOMA.definesBearer, SOMA.definesTrigger, DUL.definesTask, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.733695]: Instances: []\n", - "[INFO] [1712609757.734100]: Direct Instances: []\n", - "[INFO] [1712609757.735349]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712609757.735781]: -------------------\n", - "[INFO] [1712609757.736157]: SOMA.Disposition \n", - "[INFO] [1712609757.737980]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712609757.738508]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609757.738942]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712609757.739396]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.740067]: Instances: []\n", - "[INFO] [1712609757.740415]: Direct Instances: []\n", - "[INFO] [1712609757.740816]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712609757.741103]: -------------------\n", - "[INFO] [1712609757.741363]: SOMA.Setpoint \n", - "[INFO] [1712609757.741615]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712609757.741896]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Parameter, SOMA.Setpoint, owl.Thing}\n", - "[INFO] [1712609757.742167]: Subclasses: []\n", - "[INFO] [1712609757.742479]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.742972]: Instances: []\n", - "[INFO] [1712609757.743235]: Direct Instances: []\n", - "[INFO] [1712609757.743502]: Inverse Restrictions: []\n", - "[INFO] [1712609757.743750]: -------------------\n", - "[INFO] [1712609757.744007]: SOMA.Answer \n", - "[INFO] [1712609757.744250]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712609757.744574]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Answer, SOMA.Message}\n", - "[INFO] [1712609757.744948]: Subclasses: []\n", - "[INFO] [1712609757.745364]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.745984]: Instances: []\n", - "[INFO] [1712609757.746478]: Direct Instances: []\n", - "[INFO] [1712609757.747318]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712609757.747705]: -------------------\n", - "[INFO] [1712609757.748084]: SOMA.Message \n", - "[INFO] [1712609757.748492]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712609757.748880]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Message}\n", - "[INFO] [1712609757.749270]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712609757.749704]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.750248]: Instances: []\n", - "[INFO] [1712609757.750640]: Direct Instances: []\n", - "[INFO] [1712609757.752550]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609757.752935]: -------------------\n", - "[INFO] [1712609757.753217]: SOMA.ProcessType \n", - "[INFO] [1712609757.753525]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712609757.753824]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609757.754101]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712609757.754414]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.754989]: Instances: []\n", - "[INFO] [1712609757.755281]: Direct Instances: []\n", - "[INFO] [1712609757.755629]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712609757.755889]: -------------------\n", - "[INFO] [1712609757.756158]: SOMA.OrderedElement \n", - "[INFO] [1712609757.756451]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712609757.757819]: Ancestors: {SOMA.OrderedElement, SOMA.Singleton, owl.Thing}\n", - "[INFO] [1712609757.758133]: Subclasses: []\n", - "[INFO] [1712609757.758461]: Properties: [rdf-schema.comment, SOMA.isOrderedBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.758976]: Instances: []\n", - "[INFO] [1712609757.759279]: Direct Instances: []\n", - "[INFO] [1712609757.759687]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712609757.759949]: -------------------\n", - "[INFO] [1712609757.760206]: SOMA.System \n", - "[INFO] [1712609757.760471]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712609757.760757]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.System}\n", - "[INFO] [1712609757.761021]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712609757.761318]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.761865]: Instances: []\n", - "[INFO] [1712609757.762158]: Direct Instances: []\n", - "[INFO] [1712609757.762437]: Inverse Restrictions: []\n", - "[INFO] [1712609757.762693]: -------------------\n", - "[INFO] [1712609757.762939]: SOMA.Binding \n", - "[INFO] [1712609757.763654]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712609757.763974]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing}\n", - "[INFO] [1712609757.764258]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712609757.764583]: Properties: [rdf-schema.comment, SOMA.hasBindingFiller, Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, SOMA.hasBindingRole]\n", - "[INFO] [1712609757.765114]: Instances: []\n", - "[INFO] [1712609757.765406]: Direct Instances: []\n", - "[INFO] [1712609757.765687]: Inverse Restrictions: []\n", - "[INFO] [1712609757.765939]: -------------------\n", - "[INFO] [1712609757.766263]: SOMA.Joint \n", - "[INFO] [1712609757.766690]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712609757.767697]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609757.768093]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712609757.768532]: Properties: [rdf-schema.comment, SOMA.hasChildLink, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", - "[INFO] [1712609757.769180]: Instances: []\n", - "[INFO] [1712609757.769561]: Direct Instances: []\n", - "[INFO] [1712609757.769950]: Inverse Restrictions: []\n", - "[INFO] [1712609757.770235]: -------------------\n", - "[INFO] [1712609757.770502]: SOMA.Color \n", - "[INFO] [1712609757.770790]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712609757.771077]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609757.771334]: Subclasses: []\n", - "[INFO] [1712609757.771657]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609757.772166]: Instances: []\n", - "[INFO] [1712609757.772432]: Direct Instances: []\n", - "[INFO] [1712609757.772738]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712609757.772995]: -------------------\n", - "[INFO] [1712609757.773253]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712609757.773503]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609757.774525]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.ExecutionStateRegion, owl.Thing}\n", - "[INFO] [1712609757.774829]: Subclasses: []\n", - "[INFO] [1712609757.775148]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.775678]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712609757.775970]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712609757.776252]: Inverse Restrictions: []\n", - "[INFO] [1712609757.776503]: -------------------\n", - "[INFO] [1712609757.776747]: SOMA.Feature \n", - "[INFO] [1712609757.777013]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712609757.777298]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing}\n", - "[INFO] [1712609757.777568]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712609757.777882]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isFeatureOf]\n", - "[INFO] [1712609757.778386]: Instances: []\n", - "[INFO] [1712609757.778672]: Direct Instances: []\n", - "[INFO] [1712609757.778978]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712609757.779230]: -------------------\n", - "[INFO] [1712609757.779473]: SOMA.FrictionAttribute \n", - "[INFO] [1712609757.779738]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712609757.780021]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609757.780300]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712609757.780607]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasFrictionValue]\n", - "[INFO] [1712609757.781117]: Instances: []\n", - "[INFO] [1712609757.781380]: Direct Instances: []\n", - "[INFO] [1712609757.781637]: Inverse Restrictions: []\n", - "[INFO] [1712609757.781889]: -------------------\n", - "[INFO] [1712609757.782141]: SOMA.SituationTransition \n", - "[INFO] [1712609757.782384]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712609757.782662]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.SituationTransition, DUL.Transition, owl.Thing}\n", - "[INFO] [1712609757.782915]: Subclasses: []\n", - "[INFO] [1712609757.783220]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.783718]: Instances: []\n", - "[INFO] [1712609757.783977]: Direct Instances: []\n", - "[INFO] [1712609757.785738]: Inverse Restrictions: []\n", - "[INFO] [1712609757.786013]: -------------------\n", - "[INFO] [1712609757.786275]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712609757.786531]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712609757.787858]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation}\n", - "[INFO] [1712609757.788148]: Subclasses: []\n", - "[INFO] [1712609757.788467]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.788967]: Instances: []\n", - "[INFO] [1712609757.789226]: Direct Instances: []\n", - "[INFO] [1712609757.790608]: Inverse Restrictions: []\n", - "[INFO] [1712609757.790895]: -------------------\n", - "[INFO] [1712609757.791152]: SOMA.JointLimit \n", - "[INFO] [1712609757.791398]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712609757.791667]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.JointLimit, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609757.791920]: Subclasses: []\n", - "[INFO] [1712609757.792215]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.792720]: Instances: []\n", - "[INFO] [1712609757.792984]: Direct Instances: []\n", - "[INFO] [1712609757.793326]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712609757.793592]: -------------------\n", - "[INFO] [1712609757.793851]: SOMA.JointState \n", - "[INFO] [1712609757.794139]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712609757.794416]: Ancestors: {DUL.Entity, DUL.Region, SOMA.JointState, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609757.794666]: Subclasses: []\n", - "[INFO] [1712609757.794968]: Properties: [SOMA.hasJointPosition, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointVelocity]\n", - "[INFO] [1712609757.795477]: Instances: []\n", - "[INFO] [1712609757.795744]: Direct Instances: []\n", - "[INFO] [1712609757.796076]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712609757.796340]: -------------------\n", - "[INFO] [1712609757.796588]: SOMA.Localization \n", - "[INFO] [1712609757.796860]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712609757.797133]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609757.797383]: Subclasses: []\n", - "[INFO] [1712609757.797678]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.798193]: Instances: []\n", - "[INFO] [1712609757.798481]: Direct Instances: []\n", - "[INFO] [1712609757.800691]: Inverse Restrictions: []\n", - "[INFO] [1712609757.801000]: -------------------\n", - "[INFO] [1712609757.801264]: SOMA.MassAttribute \n", - "[INFO] [1712609757.801538]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712609757.801815]: Ancestors: {DUL.Entity, SOMA.MassAttribute, DUL.Region, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609757.802068]: Subclasses: []\n", - "[INFO] [1712609757.802391]: Properties: [rdf-schema.comment, SOMA.hasMassValue, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609757.802902]: Instances: []\n", - "[INFO] [1712609757.803174]: Direct Instances: []\n", - "[INFO] [1712609757.803438]: Inverse Restrictions: []\n", - "[INFO] [1712609757.803680]: -------------------\n", - "[INFO] [1712609757.803935]: SOMA.NetForce \n", - "[INFO] [1712609757.804180]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712609757.804470]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.NetForce, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", - "[INFO] [1712609757.804728]: Subclasses: []\n", - "[INFO] [1712609757.805195]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.805826]: Instances: []\n", - "[INFO] [1712609757.806136]: Direct Instances: []\n", - "[INFO] [1712609757.806515]: Inverse Restrictions: []\n", - "[INFO] [1712609757.806886]: -------------------\n", - "[INFO] [1712609757.807287]: SOMA.Succedence \n", - "[INFO] [1712609757.807642]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712609757.807957]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing}\n", - "[INFO] [1712609757.808241]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712609757.808562]: Properties: [rdf-schema.comment, SOMA.hasPredecessor, rdf-schema.isDefinedBy, SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence)]\n", - "[INFO] [1712609757.809074]: Instances: []\n", - "[INFO] [1712609757.809372]: Direct Instances: []\n", - "[INFO] [1712609757.809654]: Inverse Restrictions: []\n", - "[INFO] [1712609757.809913]: -------------------\n", - "[INFO] [1712609757.810166]: SOMA.Preference \n", - "[INFO] [1712609757.810435]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712609757.810718]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.Preference, SOMA.SocialQuality, owl.Thing}\n", - "[INFO] [1712609757.810995]: Subclasses: []\n", - "[INFO] [1712609757.811307]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.811808]: Instances: []\n", - "[INFO] [1712609757.812151]: Direct Instances: []\n", - "[INFO] [1712609757.813306]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712609757.813595]: -------------------\n", - "[INFO] [1712609757.813867]: SOMA.Shape \n", - "[INFO] [1712609757.814162]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712609757.814461]: Ancestors: {SOMA.Shape, DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609757.814728]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", - "[INFO] [1712609757.815044]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.815649]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712609757.815937]: Direct Instances: []\n", - "[INFO] [1712609757.818135]: Inverse Restrictions: []\n", - "[INFO] [1712609757.818401]: -------------------\n", - "[INFO] [1712609757.818653]: SOMA.ShapeRegion \n", - "[INFO] [1712609757.818918]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712609757.819299]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609757.819588]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712609757.819903]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.820420]: Instances: []\n", - "[INFO] [1712609757.820691]: Direct Instances: []\n", - "[INFO] [1712609757.821424]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712609757.821701]: -------------------\n", - "[INFO] [1712609757.821964]: SOMA.SoftwareInstance \n", - "[INFO] [1712609757.822633]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712609757.822935]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", - "[INFO] [1712609757.823204]: Subclasses: []\n", - "[INFO] [1712609757.823512]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.actsFor, SOMA.isDesignedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.824013]: Instances: []\n", - "[INFO] [1712609757.824293]: Direct Instances: []\n", - "[INFO] [1712609757.825006]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712609757.825267]: -------------------\n", - "[INFO] [1712609757.825512]: SOMA.StateType \n", - "[INFO] [1712609757.825782]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712609757.826071]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609757.826486]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712609757.826858]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.827407]: Instances: []\n", - "[INFO] [1712609757.827693]: Direct Instances: []\n", - "[INFO] [1712609757.828068]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712609757.828341]: -------------------\n", - "[INFO] [1712609757.828595]: SOMA.PhysicalEffector \n", - "[INFO] [1712609757.828865]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712609757.829150]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609757.829436]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712609757.829749]: Properties: [rdf-schema.comment, Inverse(DUL.hasPart), rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.830271]: Instances: []\n", - "[INFO] [1712609757.830539]: Direct Instances: []\n", - "[INFO] [1712609757.830803]: Inverse Restrictions: []\n", - "[INFO] [1712609757.831079]: -------------------\n", - "[INFO] [1712609757.831340]: SOMA.QueryingTask \n", - "[INFO] [1712609757.831994]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712609757.832288]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712609757.832562]: Subclasses: []\n", - "[INFO] [1712609757.832873]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.833367]: Instances: []\n", - "[INFO] [1712609757.833635]: Direct Instances: []\n", - "[INFO] [1712609757.835060]: Inverse Restrictions: []\n", - "[INFO] [1712609757.835323]: -------------------\n", - "[INFO] [1712609757.835577]: SOMA.Order \n", - "[INFO] [1712609757.835827]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712609757.836106]: Ancestors: {DUL.FormalEntity, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.Order}\n", - "[INFO] [1712609757.836371]: Subclasses: []\n", - "[INFO] [1712609757.836676]: Properties: [rdf-schema.comment, SOMA.orders, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.837175]: Instances: []\n", - "[INFO] [1712609757.837453]: Direct Instances: []\n", - "[INFO] [1712609757.837822]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712609757.838076]: -------------------\n", - "[INFO] [1712609757.838336]: SOMA.State \n", - "[INFO] [1712609757.838581]: Super classes: [DUL.Event]\n", - "[INFO] [1712609757.838857]: Ancestors: {DUL.Entity, owl.Thing, DUL.Event, SOMA.State}\n", - "[INFO] [1712609757.839135]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712609757.839435]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.839935]: Instances: []\n", - "[INFO] [1712609757.840214]: Direct Instances: []\n", - "[INFO] [1712609757.841085]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712609757.841381]: -------------------\n", - "[INFO] [1712609757.841634]: SOMA.Transient \n", - "[INFO] [1712609757.841907]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712609757.842203]: Ancestors: {DUL.Entity, SOMA.Transient, DUL.Object, owl.Thing}\n", - "[INFO] [1712609757.842598]: Subclasses: []\n", - "[INFO] [1712609757.843040]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.transitionsFrom]\n", - "[INFO] [1712609757.843657]: Instances: []\n", - "[INFO] [1712609757.844112]: Direct Instances: []\n", - "[INFO] [1712609757.844520]: Inverse Restrictions: []\n", - "[INFO] [1712609757.844914]: -------------------\n", - "[INFO] [1712609757.845265]: SOMA.ColorRegion \n", - "[INFO] [1712609757.845576]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712609757.845897]: Ancestors: {DUL.Entity, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609757.846196]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712609757.846524]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.847039]: Instances: []\n", - "[INFO] [1712609757.847311]: Direct Instances: []\n", - "[INFO] [1712609757.847642]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712609757.847911]: -------------------\n", - "[INFO] [1712609757.848170]: SOMA.ForceAttribute \n", - "[INFO] [1712609757.848519]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712609757.848797]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", - "[INFO] [1712609757.849078]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712609757.849401]: Properties: [rdf-schema.comment, SOMA.hasForceValue, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.849915]: Instances: []\n", - "[INFO] [1712609757.850191]: Direct Instances: []\n", - "[INFO] [1712609757.850464]: Inverse Restrictions: []\n", - "[INFO] [1712609757.850723]: -------------------\n", - "[INFO] [1712609757.850995]: SOMA.API_Specification \n", - "[INFO] [1712609757.851258]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712609757.851916]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712609757.852422]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712609757.852997]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.853832]: Instances: []\n", - "[INFO] [1712609757.854247]: Direct Instances: []\n", - "[INFO] [1712609757.854649]: Inverse Restrictions: []\n", - "[INFO] [1712609757.855026]: -------------------\n", - "[INFO] [1712609757.855384]: SOMA.InterfaceSpecification \n", - "[INFO] [1712609757.855685]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712609757.855969]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712609757.856251]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712609757.856575]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.857095]: Instances: []\n", - "[INFO] [1712609757.857426]: Direct Instances: []\n", - "[INFO] [1712609757.858512]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712609757.858826]: -------------------\n", - "[INFO] [1712609757.859098]: SOMA.AbductiveReasoning \n", - "[INFO] [1712609757.859354]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712609757.860614]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.AbductiveReasoning, SOMA.Reasoning}\n", - "[INFO] [1712609757.860905]: Subclasses: []\n", - "[INFO] [1712609757.861224]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.861727]: Instances: []\n", - "[INFO] [1712609757.861992]: Direct Instances: []\n", - "[INFO] [1712609757.862287]: Inverse Restrictions: []\n", - "[INFO] [1712609757.862542]: -------------------\n", - "[INFO] [1712609757.862789]: SOMA.Reasoning \n", - "[INFO] [1712609757.863040]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609757.863296]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Reasoning, owl.Thing}\n", - "[INFO] [1712609757.863560]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712609757.863859]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.864370]: Instances: []\n", - "[INFO] [1712609757.864684]: Direct Instances: []\n", - "[INFO] [1712609757.864969]: Inverse Restrictions: []\n", - "[INFO] [1712609757.865223]: -------------------\n", - "[INFO] [1712609757.865671]: SOMA.Accessor \n", - "[INFO] [1712609757.866039]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712609757.866469]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, SOMA.Instrument, owl.Thing, DUL.Role}\n", - "[INFO] [1712609757.866779]: Subclasses: []\n", - "[INFO] [1712609757.867107]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.867625]: Instances: []\n", - "[INFO] [1712609757.867900]: Direct Instances: []\n", - "[INFO] [1712609757.868175]: Inverse Restrictions: []\n", - "[INFO] [1712609757.868428]: -------------------\n", - "[INFO] [1712609757.868671]: SOMA.Instrument \n", - "[INFO] [1712609757.868916]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712609757.869164]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role}\n", - "[INFO] [1712609757.869447]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712609757.869751]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.870330]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609757.870626]: Direct Instances: []\n", - "[INFO] [1712609757.871038]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609757.871294]: -------------------\n", - "[INFO] [1712609757.871541]: SOMA.Accident \n", - "[INFO] [1712609757.871783]: Super classes: [DUL.Event]\n", - "[INFO] [1712609757.872062]: Ancestors: {DUL.Entity, SOMA.Accident, DUL.Event, owl.Thing}\n", - "[INFO] [1712609757.872337]: Subclasses: []\n", - "[INFO] [1712609757.872654]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.873151]: Instances: []\n", - "[INFO] [1712609757.873429]: Direct Instances: []\n", - "[INFO] [1712609757.873690]: Inverse Restrictions: []\n", - "[INFO] [1712609757.873972]: -------------------\n", - "[INFO] [1712609757.874258]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712609757.874718]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712609757.875020]: Ancestors: {DUL.Entity, DUL.Plan, SOMA.ActionExecutionPlan, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609757.875279]: Subclasses: []\n", - "[INFO] [1712609757.875586]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.876097]: Instances: []\n", - "[INFO] [1712609757.876368]: Direct Instances: []\n", - "[INFO] [1712609757.876626]: Inverse Restrictions: []\n", - "[INFO] [1712609757.876869]: -------------------\n", - "[INFO] [1712609757.877110]: SOMA.Actuating \n", - "[INFO] [1712609757.877352]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609757.877635]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609757.877923]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712609757.878227]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.878752]: Instances: []\n", - "[INFO] [1712609757.879033]: Direct Instances: []\n", - "[INFO] [1712609757.879309]: Inverse Restrictions: []\n", - "[INFO] [1712609757.879558]: -------------------\n", - "[INFO] [1712609757.879803]: SOMA.PhysicalTask \n", - "[INFO] [1712609757.881182]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712609757.881483]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712609757.881775]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712609757.882087]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.882807]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", - "[INFO] [1712609757.883101]: Direct Instances: []\n", - "[INFO] [1712609757.883441]: Inverse Restrictions: []\n", - "[INFO] [1712609757.883704]: -------------------\n", - "[INFO] [1712609757.883950]: SOMA.AestheticDesign \n", - "[INFO] [1712609757.884199]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712609757.884473]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.AestheticDesign, owl.Thing}\n", - "[INFO] [1712609757.884741]: Subclasses: []\n", - "[INFO] [1712609757.885053]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.885550]: Instances: []\n", - "[INFO] [1712609757.885815]: Direct Instances: []\n", - "[INFO] [1712609757.886069]: Inverse Restrictions: []\n", - "[INFO] [1712609757.886563]: -------------------\n", - "[INFO] [1712609757.886998]: SOMA.AffordsBeingSitOn \n", - "[INFO] [1712609757.888810]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", - "[INFO] [1712609757.889262]: Ancestors: {DUL.Entity, SOMA.Affordance, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.AffordsBeingSitOn, owl.Thing}\n", - "[INFO] [1712609757.889684]: Subclasses: []\n", - "[INFO] [1712609757.890201]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.describes]\n", - "[INFO] [1712609757.890771]: Instances: []\n", - "[INFO] [1712609757.891079]: Direct Instances: []\n", - "[INFO] [1712609757.891386]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", - "[INFO] [1712609757.891648]: -------------------\n", - "[INFO] [1712609757.891898]: SOMA.CanBeSatOn \n", - "[INFO] [1712609757.892174]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", - "[INFO] [1712609757.892472]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.CanBeSatOn, DUL.Quality, SOMA.Deposition, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609757.892733]: Subclasses: []\n", - "[INFO] [1712609757.893032]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.893531]: Instances: []\n", - "[INFO] [1712609757.893802]: Direct Instances: []\n", - "[INFO] [1712609757.894356]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712609757.894628]: -------------------\n", - "[INFO] [1712609757.894879]: SOMA.SittingDestination \n", - "[INFO] [1712609757.895141]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", - "[INFO] [1712609757.895444]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.SittingDestination, owl.Thing, DUL.Role, SOMA.Destination, SOMA.Location}\n", - "[INFO] [1712609757.895701]: Subclasses: []\n", - "[INFO] [1712609757.896008]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.896511]: Instances: []\n", - "[INFO] [1712609757.896774]: Direct Instances: []\n", - "[INFO] [1712609757.897047]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712609757.897293]: -------------------\n", - "[INFO] [1712609757.897550]: SOMA.CanSit \n", - "[INFO] [1712609757.897793]: Super classes: [SOMA.Capability]\n", - "[INFO] [1712609757.898071]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.CanSit, DUL.Quality, SOMA.Capability, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609757.898345]: Subclasses: []\n", - "[INFO] [1712609757.898655]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.899162]: Instances: []\n", - "[INFO] [1712609757.899432]: Direct Instances: []\n", - "[INFO] [1712609757.899724]: Inverse Restrictions: []\n", - "[INFO] [1712609757.899985]: -------------------\n", - "[INFO] [1712609757.900233]: SOMA.AgentRole \n", - "[INFO] [1712609757.900501]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712609757.900789]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.AgentRole}\n", - "[INFO] [1712609757.901061]: Subclasses: []\n", - "[INFO] [1712609757.901369]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.901879]: Instances: []\n", - "[INFO] [1712609757.902161]: Direct Instances: []\n", - "[INFO] [1712609757.902454]: Inverse Restrictions: []\n", - "[INFO] [1712609757.902707]: -------------------\n", - "[INFO] [1712609757.902946]: SOMA.Sitting \n", - "[INFO] [1712609757.903188]: Super classes: [SOMA.AssumingPose]\n", - "[INFO] [1712609757.903474]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Sitting, owl.Thing, SOMA.AssumingPose}\n", - "[INFO] [1712609757.903742]: Subclasses: []\n", - "[INFO] [1712609757.904067]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.904581]: Instances: []\n", - "[INFO] [1712609757.904848]: Direct Instances: []\n", - "[INFO] [1712609757.905148]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712609757.905410]: -------------------\n", - "[INFO] [1712609757.905661]: SOMA.CausativeRole \n", - "[INFO] [1712609757.905905]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609757.906155]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609757.906573]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712609757.906993]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.907629]: Instances: []\n", - "[INFO] [1712609757.908025]: Direct Instances: []\n", - "[INFO] [1712609757.908406]: Inverse Restrictions: []\n", - "[INFO] [1712609757.908768]: -------------------\n", - "[INFO] [1712609757.909048]: SOMA.Agonist \n", - "[INFO] [1712609757.909311]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609757.909590]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.Agonist, owl.Thing, DUL.Role}\n", - "[INFO] [1712609757.909846]: Subclasses: []\n", - "[INFO] [1712609757.910146]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.910656]: Instances: []\n", - "[INFO] [1712609757.910926]: Direct Instances: []\n", - "[INFO] [1712609757.911226]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712609757.911478]: -------------------\n", - "[INFO] [1712609757.911721]: SOMA.Patient \n", - "[INFO] [1712609757.911957]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609757.912209]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609757.912500]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712609757.912799]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.913362]: Instances: []\n", - "[INFO] [1712609757.913641]: Direct Instances: []\n", - "[INFO] [1712609757.914089]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609757.914354]: -------------------\n", - "[INFO] [1712609757.914600]: SOMA.Algorithm \n", - "[INFO] [1712609757.914844]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712609757.915124]: Ancestors: {DUL.Entity, DUL.Plan, DUL.SocialObject, SOMA.Algorithm, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609757.915382]: Subclasses: []\n", - "[INFO] [1712609757.915679]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.916173]: Instances: []\n", - "[INFO] [1712609757.916445]: Direct Instances: []\n", - "[INFO] [1712609757.917662]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712609757.917959]: -------------------\n", - "[INFO] [1712609757.918218]: SOMA.Alteration \n", - "[INFO] [1712609757.918465]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712609757.918775]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609757.919056]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712609757.919367]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.919887]: Instances: []\n", - "[INFO] [1712609757.920346]: Direct Instances: []\n", - "[INFO] [1712609757.920845]: Inverse Restrictions: []\n", - "[INFO] [1712609757.921330]: -------------------\n", - "[INFO] [1712609757.921824]: SOMA.AlterativeInteraction \n", - "[INFO] [1712609757.922245]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712609757.924060]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AlterativeInteraction, SOMA.ProcessType}\n", - "[INFO] [1712609757.924588]: Subclasses: []\n", - "[INFO] [1712609757.925134]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.925946]: Instances: []\n", - "[INFO] [1712609757.926448]: Direct Instances: []\n", - "[INFO] [1712609757.926868]: Inverse Restrictions: []\n", - "[INFO] [1712609757.927302]: -------------------\n", - "[INFO] [1712609757.927600]: SOMA.ForceInteraction \n", - "[INFO] [1712609757.927983]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712609757.928281]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609757.928558]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712609757.928879]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712609757.929391]: Instances: []\n", - "[INFO] [1712609757.929672]: Direct Instances: []\n", - "[INFO] [1712609757.929943]: Inverse Restrictions: []\n", - "[INFO] [1712609757.930196]: -------------------\n", - "[INFO] [1712609757.930441]: SOMA.PreservativeInteraction \n", - "[INFO] [1712609757.930684]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712609757.930973]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, SOMA.PreservativeInteraction, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609757.931232]: Subclasses: []\n", - "[INFO] [1712609757.931525]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.932016]: Instances: []\n", - "[INFO] [1712609757.932290]: Direct Instances: []\n", - "[INFO] [1712609757.932582]: Inverse Restrictions: []\n", - "[INFO] [1712609757.932827]: -------------------\n", - "[INFO] [1712609757.933065]: SOMA.AlteredObject \n", - "[INFO] [1712609757.933303]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609757.933572]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609757.933842]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712609757.934138]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.934643]: Instances: []\n", - "[INFO] [1712609757.934915]: Direct Instances: []\n", - "[INFO] [1712609757.935672]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712609757.935952]: -------------------\n", - "[INFO] [1712609757.936225]: SOMA.Amateurish \n", - "[INFO] [1712609757.936498]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712609757.936842]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609757.937165]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712609757.937536]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.938177]: Instances: []\n", - "[INFO] [1712609757.938541]: Direct Instances: []\n", - "[INFO] [1712609757.938898]: Inverse Restrictions: []\n", - "[INFO] [1712609757.939222]: -------------------\n", - "[INFO] [1712609757.939567]: SOMA.AnsweringTask \n", - "[INFO] [1712609757.939887]: Super classes: [owl.Thing]\n", - "[INFO] [1712609757.942908]: Ancestors: {SOMA.AnsweringTask, owl.Thing}\n", - "[INFO] [1712609757.943295]: Subclasses: []\n", - "[INFO] [1712609757.943642]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.944160]: Instances: []\n", - "[INFO] [1712609757.944462]: Direct Instances: []\n", - "[INFO] [1712609757.944775]: Inverse Restrictions: []\n", - "[INFO] [1712609757.945030]: -------------------\n", - "[INFO] [1712609757.945276]: SOMA.CommandingTask \n", - "[INFO] [1712609757.945943]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712609757.946265]: Ancestors: {SOMA.IllocutionaryTask, SOMA.CommandingTask, owl.Thing}\n", - "[INFO] [1712609757.946578]: Subclasses: []\n", - "[INFO] [1712609757.947033]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.947578]: Instances: []\n", - "[INFO] [1712609757.947862]: Direct Instances: []\n", - "[INFO] [1712609757.948225]: Inverse Restrictions: []\n", - "[INFO] [1712609757.948489]: -------------------\n", - "[INFO] [1712609757.948740]: SOMA.IllocutionaryTask \n", - "[INFO] [1712609757.950122]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712609757.950430]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712609757.950713]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712609757.951031]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.951544]: Instances: []\n", - "[INFO] [1712609757.951832]: Direct Instances: []\n", - "[INFO] [1712609757.952137]: Inverse Restrictions: []\n", - "[INFO] [1712609757.952394]: -------------------\n", - "[INFO] [1712609757.952642]: SOMA.Antagonist \n", - "[INFO] [1712609757.952889]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609757.953164]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Antagonist}\n", - "[INFO] [1712609757.953434]: Subclasses: []\n", - "[INFO] [1712609757.953737]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.954240]: Instances: []\n", - "[INFO] [1712609757.954528]: Direct Instances: []\n", - "[INFO] [1712609757.954834]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712609757.955091]: -------------------\n", - "[INFO] [1712609757.955340]: SOMA.Appliance \n", - "[INFO] [1712609757.955599]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712609757.955873]: Ancestors: {SOMA.Appliance, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609757.956158]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712609757.956459]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.956963]: Instances: []\n", - "[INFO] [1712609757.957226]: Direct Instances: []\n", - "[INFO] [1712609757.957527]: Inverse Restrictions: []\n", - "[INFO] [1712609757.957796]: -------------------\n", - "[INFO] [1712609757.958046]: SOMA.Approaching \n", - "[INFO] [1712609757.958298]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609757.958598]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Approaching, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609757.958885]: Subclasses: []\n", - "[INFO] [1712609757.959197]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.959700]: Instances: []\n", - "[INFO] [1712609757.959985]: Direct Instances: []\n", - "[INFO] [1712609757.960250]: Inverse Restrictions: []\n", - "[INFO] [1712609757.960501]: -------------------\n", - "[INFO] [1712609757.960743]: SOMA.Locomotion \n", - "[INFO] [1712609757.960989]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712609757.961259]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609757.961533]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712609757.961843]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.962351]: Instances: []\n", - "[INFO] [1712609757.962646]: Direct Instances: []\n", - "[INFO] [1712609757.962919]: Inverse Restrictions: []\n", - "[INFO] [1712609757.963172]: -------------------\n", - "[INFO] [1712609757.963419]: SOMA.ArchiveFile \n", - "[INFO] [1712609757.963659]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712609757.964915]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ArchiveFile, owl.Thing, SOMA.Digital_File, DUL.InformationRealization}\n", - "[INFO] [1712609757.965215]: Subclasses: []\n", - "[INFO] [1712609757.965540]: Properties: [rdf-schema.comment, DUL.realizes, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.966052]: Instances: []\n", - "[INFO] [1712609757.966348]: Direct Instances: []\n", - "[INFO] [1712609757.966617]: Inverse Restrictions: []\n", - "[INFO] [1712609757.966871]: -------------------\n", - "[INFO] [1712609757.967118]: SOMA.ArchiveText \n", - "[INFO] [1712609757.967358]: Super classes: [owl.Thing]\n", - "[INFO] [1712609757.969130]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", - "[INFO] [1712609757.969426]: Subclasses: []\n", - "[INFO] [1712609757.969747]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.970266]: Instances: []\n", - "[INFO] [1712609757.970545]: Direct Instances: []\n", - "[INFO] [1712609757.970985]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712609757.971272]: -------------------\n", - "[INFO] [1712609757.971536]: SOMA.Digital_File \n", - "[INFO] [1712609757.971817]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712609757.972080]: Ancestors: {DUL.Entity, DUL.InformationEntity, owl.Thing, SOMA.Digital_File, DUL.InformationRealization}\n", - "[INFO] [1712609757.972347]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712609757.972664]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasNameString, DUL.realizes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.973188]: Instances: []\n", - "[INFO] [1712609757.973466]: Direct Instances: []\n", - "[INFO] [1712609757.976033]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712609757.976367]: -------------------\n", - "[INFO] [1712609757.976640]: SOMA.ArchiveFormat \n", - "[INFO] [1712609757.976906]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712609757.977218]: Ancestors: {SOMA.ArchiveFormat, DUL.Entity, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609757.977496]: Subclasses: []\n", - "[INFO] [1712609757.977813]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.978328]: Instances: []\n", - "[INFO] [1712609757.978601]: Direct Instances: []\n", - "[INFO] [1712609757.978902]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712609757.979163]: -------------------\n", - "[INFO] [1712609757.979420]: SOMA.File_format \n", - "[INFO] [1712609757.979668]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609757.979923]: Ancestors: {DUL.Entity, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609757.980181]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712609757.980479]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.980997]: Instances: []\n", - "[INFO] [1712609757.981269]: Direct Instances: []\n", - "[INFO] [1712609757.981531]: Inverse Restrictions: []\n", - "[INFO] [1712609757.981778]: -------------------\n", - "[INFO] [1712609757.982018]: SOMA.FileConfiguration \n", - "[INFO] [1712609757.982276]: Super classes: [owl.Thing]\n", - "[INFO] [1712609757.982769]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", - "[INFO] [1712609757.983030]: Subclasses: []\n", - "[INFO] [1712609757.983329]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.983848]: Instances: []\n", - "[INFO] [1712609757.984118]: Direct Instances: []\n", - "[INFO] [1712609757.984441]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712609757.984704]: -------------------\n", - "[INFO] [1712609757.984982]: SOMA.Structured_Text \n", - "[INFO] [1712609757.985276]: Super classes: [owl.Thing]\n", - "[INFO] [1712609757.986722]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", - "[INFO] [1712609757.987300]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712609757.987856]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.988561]: Instances: []\n", - "[INFO] [1712609757.988973]: Direct Instances: []\n", - "[INFO] [1712609757.991748]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712609757.992172]: -------------------\n", - "[INFO] [1712609757.992543]: SOMA.AreaSurveying \n", - "[INFO] [1712609757.992902]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712609757.993291]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", - "[INFO] [1712609757.993666]: Subclasses: []\n", - "[INFO] [1712609757.994076]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.994686]: Instances: []\n", - "[INFO] [1712609757.995055]: Direct Instances: []\n", - "[INFO] [1712609757.995408]: Inverse Restrictions: []\n", - "[INFO] [1712609757.995753]: -------------------\n", - "[INFO] [1712609757.996101]: SOMA.Perceiving \n", - "[INFO] [1712609757.996453]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712609757.996805]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712609757.997158]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712609757.997548]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609757.998171]: Instances: []\n", - "[INFO] [1712609757.998550]: Direct Instances: []\n", - "[INFO] [1712609757.998913]: Inverse Restrictions: []\n", - "[INFO] [1712609757.999264]: -------------------\n", - "[INFO] [1712609757.999618]: SOMA.Arm \n", - "[INFO] [1712609757.999969]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712609758.000963]: Ancestors: {DUL.Entity, SOMA.Arm, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.001343]: Subclasses: []\n", - "[INFO] [1712609758.001745]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.002352]: Instances: []\n", - "[INFO] [1712609758.002730]: Direct Instances: []\n", - "[INFO] [1712609758.003123]: Inverse Restrictions: []\n", - "[INFO] [1712609758.003475]: -------------------\n", - "[INFO] [1712609758.003817]: SOMA.Limb \n", - "[INFO] [1712609758.004155]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712609758.004514]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.004887]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712609758.005296]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.005899]: Instances: []\n", - "[INFO] [1712609758.006260]: Direct Instances: []\n", - "[INFO] [1712609758.007032]: Inverse Restrictions: []\n", - "[INFO] [1712609758.007590]: -------------------\n", - "[INFO] [1712609758.008148]: SOMA.Armchair \n", - "[INFO] [1712609758.008678]: Super classes: [SOMA.DesignedChair]\n", - "[INFO] [1712609758.009270]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Armchair, DUL.PhysicalObject, owl.Thing, SOMA.DesignedChair, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.009774]: Subclasses: []\n", - "[INFO] [1712609758.010297]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.010911]: Instances: []\n", - "[INFO] [1712609758.011277]: Direct Instances: []\n", - "[INFO] [1712609758.011625]: Inverse Restrictions: []\n", - "[INFO] [1712609758.011959]: -------------------\n", - "[INFO] [1712609758.012297]: SOMA.DesignedChair \n", - "[INFO] [1712609758.012652]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712609758.013004]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedChair, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.013347]: Subclasses: [SOMA.Armchair]\n", - "[INFO] [1712609758.013733]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712609758.014334]: Instances: []\n", - "[INFO] [1712609758.014696]: Direct Instances: []\n", - "[INFO] [1712609758.015044]: Inverse Restrictions: []\n", - "[INFO] [1712609758.015379]: -------------------\n", - "[INFO] [1712609758.015718]: SOMA.Arranging \n", - "[INFO] [1712609758.016065]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712609758.016436]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Arranging, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing}\n", - "[INFO] [1712609758.016781]: Subclasses: []\n", - "[INFO] [1712609758.017166]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.017768]: Instances: []\n", - "[INFO] [1712609758.018135]: Direct Instances: []\n", - "[INFO] [1712609758.018488]: Inverse Restrictions: []\n", - "[INFO] [1712609758.018826]: -------------------\n", - "[INFO] [1712609758.019160]: SOMA.Constructing \n", - "[INFO] [1712609758.019507]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609758.019855]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing}\n", - "[INFO] [1712609758.020218]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712609758.020622]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.021215]: Instances: []\n", - "[INFO] [1712609758.021587]: Direct Instances: []\n", - "[INFO] [1712609758.021951]: Inverse Restrictions: []\n", - "[INFO] [1712609758.022298]: -------------------\n", - "[INFO] [1712609758.022689]: SOMA.ArtificialAgent \n", - "[INFO] [1712609758.023052]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712609758.023478]: Ancestors: {DUL.Entity, DUL.PhysicalAgent, DUL.Object, DUL.Agent, DUL.PhysicalObject, owl.Thing, SOMA.ArtificialAgent}\n", - "[INFO] [1712609758.023865]: Subclasses: []\n", - "[INFO] [1712609758.024288]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.024898]: Instances: []\n", - "[INFO] [1712609758.025299]: Direct Instances: []\n", - "[INFO] [1712609758.025681]: Inverse Restrictions: []\n", - "[INFO] [1712609758.025959]: -------------------\n", - "[INFO] [1712609758.026224]: SOMA.Assembling \n", - "[INFO] [1712609758.026476]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712609758.026761]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Assembling}\n", - "[INFO] [1712609758.027017]: Subclasses: []\n", - "[INFO] [1712609758.027311]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.027811]: Instances: []\n", - "[INFO] [1712609758.028079]: Direct Instances: []\n", - "[INFO] [1712609758.028331]: Inverse Restrictions: []\n", - "[INFO] [1712609758.028572]: -------------------\n", - "[INFO] [1712609758.028811]: SOMA.AssertionTask \n", - "[INFO] [1712609758.029459]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712609758.029747]: Ancestors: {SOMA.IllocutionaryTask, SOMA.AssertionTask, owl.Thing}\n", - "[INFO] [1712609758.029999]: Subclasses: []\n", - "[INFO] [1712609758.030302]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.030808]: Instances: []\n", - "[INFO] [1712609758.031076]: Direct Instances: []\n", - "[INFO] [1712609758.031328]: Inverse Restrictions: []\n", - "[INFO] [1712609758.031581]: -------------------\n", - "[INFO] [1712609758.031828]: SOMA.DeclarativeClause \n", - "[INFO] [1712609758.032072]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712609758.032369]: Ancestors: {SOMA.DeclarativeClause, DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609758.032639]: Subclasses: []\n", - "[INFO] [1712609758.032943]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.033434]: Instances: []\n", - "[INFO] [1712609758.033694]: Direct Instances: []\n", - "[INFO] [1712609758.033985]: Inverse Restrictions: []\n", - "[INFO] [1712609758.034247]: -------------------\n", - "[INFO] [1712609758.034498]: SOMA.AssumingArmPose \n", - "[INFO] [1712609758.034739]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712609758.035009]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose, SOMA.AssumingArmPose}\n", - "[INFO] [1712609758.035259]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712609758.035549]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.036066]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712609758.036339]: Direct Instances: []\n", - "[INFO] [1712609758.036597]: Inverse Restrictions: []\n", - "[INFO] [1712609758.036842]: -------------------\n", - "[INFO] [1712609758.037081]: SOMA.AssumingPose \n", - "[INFO] [1712609758.037335]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609758.037591]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose}\n", - "[INFO] [1712609758.037846]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712609758.038147]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.038689]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712609758.038990]: Direct Instances: []\n", - "[INFO] [1712609758.039262]: Inverse Restrictions: []\n", - "[INFO] [1712609758.039533]: -------------------\n", - "[INFO] [1712609758.039799]: SOMA.AttentionShift \n", - "[INFO] [1712609758.040066]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712609758.040372]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.AttentionShift, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609758.040649]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712609758.040946]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.041481]: Instances: []\n", - "[INFO] [1712609758.041793]: Direct Instances: []\n", - "[INFO] [1712609758.042265]: Inverse Restrictions: []\n", - "[INFO] [1712609758.042786]: -------------------\n", - "[INFO] [1712609758.043173]: SOMA.MentalTask \n", - "[INFO] [1712609758.043498]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712609758.043885]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609758.044196]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712609758.044534]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.045086]: Instances: []\n", - "[INFO] [1712609758.045376]: Direct Instances: []\n", - "[INFO] [1712609758.045696]: Inverse Restrictions: []\n", - "[INFO] [1712609758.045953]: -------------------\n", - "[INFO] [1712609758.046207]: SOMA.AvoidedObject \n", - "[INFO] [1712609758.046466]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.046759]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.AvoidedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.047025]: Subclasses: []\n", - "[INFO] [1712609758.047330]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.047832]: Instances: []\n", - "[INFO] [1712609758.048099]: Direct Instances: []\n", - "[INFO] [1712609758.048364]: Inverse Restrictions: []\n", - "[INFO] [1712609758.048620]: -------------------\n", - "[INFO] [1712609758.048875]: SOMA.Avoiding \n", - "[INFO] [1712609758.049118]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712609758.049407]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Avoiding, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", - "[INFO] [1712609758.049690]: Subclasses: []\n", - "[INFO] [1712609758.050004]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.050526]: Instances: []\n", - "[INFO] [1712609758.050818]: Direct Instances: []\n", - "[INFO] [1712609758.051099]: Inverse Restrictions: []\n", - "[INFO] [1712609758.051362]: -------------------\n", - "[INFO] [1712609758.051618]: SOMA.Navigating \n", - "[INFO] [1712609758.051873]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609758.052134]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", - "[INFO] [1712609758.052414]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712609758.052742]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.053267]: Instances: [SOMA.navigating]\n", - "[INFO] [1712609758.053569]: Direct Instances: [SOMA.navigating]\n", - "[INFO] [1712609758.053851]: Inverse Restrictions: []\n", - "[INFO] [1712609758.054107]: -------------------\n", - "[INFO] [1712609758.054354]: SOMA.BakedGood \n", - "[INFO] [1712609758.054599]: Super classes: [SOMA.Dish]\n", - "[INFO] [1712609758.054882]: Ancestors: {DUL.Entity, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.BakedGood}\n", - "[INFO] [1712609758.055184]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", - "[INFO] [1712609758.055494]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.055997]: Instances: []\n", - "[INFO] [1712609758.056277]: Direct Instances: []\n", - "[INFO] [1712609758.056539]: Inverse Restrictions: []\n", - "[INFO] [1712609758.056799]: -------------------\n", - "[INFO] [1712609758.057058]: SOMA.Dish \n", - "[INFO] [1712609758.057306]: Super classes: [DUL.DesignedArtifact]\n", - "[INFO] [1712609758.057573]: Ancestors: {DUL.Entity, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.057825]: Subclasses: [SOMA.BakedGood]\n", - "[INFO] [1712609758.058114]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.058781]: Instances: []\n", - "[INFO] [1712609758.059095]: Direct Instances: []\n", - "[INFO] [1712609758.059375]: Inverse Restrictions: []\n", - "[INFO] [1712609758.059633]: -------------------\n", - "[INFO] [1712609758.059884]: SOMA.Barrier \n", - "[INFO] [1712609758.060133]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712609758.060420]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609758.060704]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712609758.061015]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.061523]: Instances: []\n", - "[INFO] [1712609758.061803]: Direct Instances: []\n", - "[INFO] [1712609758.062122]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712609758.062387]: -------------------\n", - "[INFO] [1712609758.062638]: SOMA.Restrictor \n", - "[INFO] [1712609758.062876]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712609758.063132]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609758.063407]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712609758.063710]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.064229]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609758.064508]: Direct Instances: []\n", - "[INFO] [1712609758.064884]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712609758.065140]: -------------------\n", - "[INFO] [1712609758.065384]: SOMA.BedsideTable \n", - "[INFO] [1712609758.065634]: Super classes: [SOMA.Table]\n", - "[INFO] [1712609758.065922]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.BedsideTable, DUL.PhysicalArtifact, DUL.Object, SOMA.Table, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.066178]: Subclasses: []\n", - "[INFO] [1712609758.066470]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.066975]: Instances: []\n", - "[INFO] [1712609758.067243]: Direct Instances: []\n", - "[INFO] [1712609758.067501]: Inverse Restrictions: []\n", - "[INFO] [1712609758.067745]: -------------------\n", - "[INFO] [1712609758.067982]: SOMA.Table \n", - "[INFO] [1712609758.068220]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712609758.068483]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Table, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.068740]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", - "[INFO] [1712609758.069033]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.069523]: Instances: []\n", - "[INFO] [1712609758.069803]: Direct Instances: []\n", - "[INFO] [1712609758.070072]: Inverse Restrictions: []\n", - "[INFO] [1712609758.070330]: -------------------\n", - "[INFO] [1712609758.070570]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712609758.070828]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712609758.071098]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.071358]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712609758.071659]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609758.072190]: Instances: []\n", - "[INFO] [1712609758.072493]: Direct Instances: []\n", - "[INFO] [1712609758.072771]: Inverse Restrictions: []\n", - "[INFO] [1712609758.073027]: -------------------\n", - "[INFO] [1712609758.073269]: SOMA.BeneficiaryRole \n", - "[INFO] [1712609758.073512]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712609758.073808]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.074118]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712609758.074440]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.074941]: Instances: []\n", - "[INFO] [1712609758.075233]: Direct Instances: []\n", - "[INFO] [1712609758.075502]: Inverse Restrictions: []\n", - "[INFO] [1712609758.075750]: -------------------\n", - "[INFO] [1712609758.075994]: SOMA.GoalRole \n", - "[INFO] [1712609758.076232]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609758.076494]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.076756]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712609758.077054]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.077569]: Instances: []\n", - "[INFO] [1712609758.077874]: Direct Instances: []\n", - "[INFO] [1712609758.078154]: Inverse Restrictions: []\n", - "[INFO] [1712609758.078417]: -------------------\n", - "[INFO] [1712609758.078663]: SOMA.CounterfactualBinding \n", - "[INFO] [1712609758.078906]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712609758.079177]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, SOMA.CounterfactualBinding}\n", - "[INFO] [1712609758.079446]: Subclasses: []\n", - "[INFO] [1712609758.079759]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.080249]: Instances: []\n", - "[INFO] [1712609758.080511]: Direct Instances: []\n", - "[INFO] [1712609758.080853]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712609758.081112]: -------------------\n", - "[INFO] [1712609758.081357]: SOMA.FactualBinding \n", - "[INFO] [1712609758.081596]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712609758.081859]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, SOMA.FactualBinding, owl.Thing}\n", - "[INFO] [1712609758.082120]: Subclasses: []\n", - "[INFO] [1712609758.082425]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.082912]: Instances: []\n", - "[INFO] [1712609758.083168]: Direct Instances: []\n", - "[INFO] [1712609758.083508]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712609758.083759]: -------------------\n", - "[INFO] [1712609758.084003]: SOMA.RoleFillerBinding \n", - "[INFO] [1712609758.084240]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712609758.084505]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.RoleFillerBinding, SOMA.Binding, owl.Thing}\n", - "[INFO] [1712609758.084767]: Subclasses: []\n", - "[INFO] [1712609758.085078]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.085565]: Instances: []\n", - "[INFO] [1712609758.085844]: Direct Instances: []\n", - "[INFO] [1712609758.086145]: Inverse Restrictions: []\n", - "[INFO] [1712609758.086404]: -------------------\n", - "[INFO] [1712609758.086647]: SOMA.RoleRoleBinding \n", - "[INFO] [1712609758.087291]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712609758.087601]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, SOMA.RoleRoleBinding, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing}\n", - "[INFO] [1712609758.087869]: Subclasses: []\n", - "[INFO] [1712609758.088175]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.088667]: Instances: []\n", - "[INFO] [1712609758.088943]: Direct Instances: []\n", - "[INFO] [1712609758.089263]: Inverse Restrictions: []\n", - "[INFO] [1712609758.089517]: -------------------\n", - "[INFO] [1712609758.089769]: SOMA.Blade \n", - "[INFO] [1712609758.090009]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.090330]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Blade, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.090719]: Subclasses: []\n", - "[INFO] [1712609758.091084]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.091628]: Instances: []\n", - "[INFO] [1712609758.091926]: Direct Instances: []\n", - "[INFO] [1712609758.092255]: Inverse Restrictions: [SOMA.Knife]\n", - "[INFO] [1712609758.092523]: -------------------\n", - "[INFO] [1712609758.092787]: SOMA.DesignedComponent \n", - "[INFO] [1712609758.093064]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712609758.093356]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.093645]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712609758.093957]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712609758.094492]: Instances: []\n", - "[INFO] [1712609758.094778]: Direct Instances: []\n", - "[INFO] [1712609758.095050]: Inverse Restrictions: []\n", - "[INFO] [1712609758.095299]: -------------------\n", - "[INFO] [1712609758.095542]: SOMA.Blockage \n", - "[INFO] [1712609758.095812]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712609758.096094]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.096369]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712609758.096675]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.097181]: Instances: []\n", - "[INFO] [1712609758.097449]: Direct Instances: []\n", - "[INFO] [1712609758.097722]: Inverse Restrictions: []\n", - "[INFO] [1712609758.097975]: -------------------\n", - "[INFO] [1712609758.098231]: SOMA.BlockedObject \n", - "[INFO] [1712609758.098476]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.098746]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", - "[INFO] [1712609758.099027]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712609758.099338]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.099848]: Instances: []\n", - "[INFO] [1712609758.100133]: Direct Instances: []\n", - "[INFO] [1712609758.100439]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712609758.100695]: -------------------\n", - "[INFO] [1712609758.100947]: SOMA.BodyMovement \n", - "[INFO] [1712609758.102001]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712609758.102296]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.102571]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712609758.102883]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.103421]: Instances: []\n", - "[INFO] [1712609758.103696]: Direct Instances: []\n", - "[INFO] [1712609758.103960]: Inverse Restrictions: []\n", - "[INFO] [1712609758.104208]: -------------------\n", - "[INFO] [1712609758.104455]: SOMA.Motion \n", - "[INFO] [1712609758.104698]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712609758.104966]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.105240]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712609758.105542]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.106094]: Instances: []\n", - "[INFO] [1712609758.106403]: Direct Instances: []\n", - "[INFO] [1712609758.106681]: Inverse Restrictions: []\n", - "[INFO] [1712609758.106935]: -------------------\n", - "[INFO] [1712609758.107184]: SOMA.Boiling \n", - "[INFO] [1712609758.107512]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712609758.107824]: Ancestors: {SOMA.Boiling, DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Vaporizing, SOMA.ProcessType}\n", - "[INFO] [1712609758.108104]: Subclasses: []\n", - "[INFO] [1712609758.108410]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.108906]: Instances: []\n", - "[INFO] [1712609758.109189]: Direct Instances: []\n", - "[INFO] [1712609758.109456]: Inverse Restrictions: []\n", - "[INFO] [1712609758.109705]: -------------------\n", - "[INFO] [1712609758.109950]: SOMA.Vaporizing \n", - "[INFO] [1712609758.110617]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712609758.110924]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Vaporizing, SOMA.ProcessType}\n", - "[INFO] [1712609758.111200]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712609758.111513]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712609758.112021]: Instances: []\n", - "[INFO] [1712609758.112316]: Direct Instances: []\n", - "[INFO] [1712609758.112586]: Inverse Restrictions: []\n", - "[INFO] [1712609758.112840]: -------------------\n", - "[INFO] [1712609758.113086]: SOMA.Bottle \n", - "[INFO] [1712609758.113327]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712609758.113596]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.113874]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", - "[INFO] [1712609758.114210]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.114823]: Instances: []\n", - "[INFO] [1712609758.115143]: Direct Instances: []\n", - "[INFO] [1712609758.115437]: Inverse Restrictions: []\n", - "[INFO] [1712609758.115707]: -------------------\n", - "[INFO] [1712609758.115970]: SOMA.DesignedContainer \n", - "[INFO] [1712609758.116224]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712609758.116500]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.116790]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712609758.117096]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712609758.117698]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712609758.117985]: Direct Instances: []\n", - "[INFO] [1712609758.118444]: Inverse Restrictions: []\n", - "[INFO] [1712609758.118791]: -------------------\n", - "[INFO] [1712609758.119333]: SOMA.Bowl \n", - "[INFO] [1712609758.119708]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712609758.120135]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bowl, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.120441]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", - "[INFO] [1712609758.120756]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.121278]: Instances: []\n", - "[INFO] [1712609758.121566]: Direct Instances: []\n", - "[INFO] [1712609758.121867]: Inverse Restrictions: [SOMA.Spoon]\n", - "[INFO] [1712609758.122137]: -------------------\n", - "[INFO] [1712609758.122418]: SOMA.Crockery \n", - "[INFO] [1712609758.123331]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712609758.123643]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.123926]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", - "[INFO] [1712609758.124238]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712609758.124779]: Instances: []\n", - "[INFO] [1712609758.125057]: Direct Instances: []\n", - "[INFO] [1712609758.125325]: Inverse Restrictions: []\n", - "[INFO] [1712609758.125567]: -------------------\n", - "[INFO] [1712609758.125806]: SOMA.Box \n", - "[INFO] [1712609758.126073]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", - "[INFO] [1712609758.126366]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Box, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.126629]: Subclasses: [SOMA.CerealBox]\n", - "[INFO] [1712609758.126919]: Properties: [rdf-schema.comment, SOMA.hasShapeRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.127407]: Instances: []\n", - "[INFO] [1712609758.127691]: Direct Instances: []\n", - "[INFO] [1712609758.127969]: Inverse Restrictions: []\n", - "[INFO] [1712609758.128211]: -------------------\n", - "[INFO] [1712609758.128451]: SOMA.BoxShape \n", - "[INFO] [1712609758.128746]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712609758.129030]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, SOMA.BoxShape, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609758.129283]: Subclasses: []\n", - "[INFO] [1712609758.129577]: Properties: [SOMA.hasHeight, rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasWidth, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.130084]: Instances: []\n", - "[INFO] [1712609758.130362]: Direct Instances: []\n", - "[INFO] [1712609758.130639]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712609758.130880]: -------------------\n", - "[INFO] [1712609758.131117]: SOMA.Bread \n", - "[INFO] [1712609758.131365]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712609758.131643]: Ancestors: {DUL.Entity, SOMA.Dish, DUL.DesignedArtifact, SOMA.Bread, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.BakedGood}\n", - "[INFO] [1712609758.131893]: Subclasses: []\n", - "[INFO] [1712609758.132171]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.132670]: Instances: []\n", - "[INFO] [1712609758.132939]: Direct Instances: []\n", - "[INFO] [1712609758.133187]: Inverse Restrictions: []\n", - "[INFO] [1712609758.133420]: -------------------\n", - "[INFO] [1712609758.133654]: SOMA.BreadKnife \n", - "[INFO] [1712609758.133897]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712609758.134194]: Ancestors: {SOMA.KitchenKnife, DUL.Entity, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.BreadKnife, SOMA.DesignedTool}\n", - "[INFO] [1712609758.134456]: Subclasses: []\n", - "[INFO] [1712609758.134769]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.135302]: Instances: []\n", - "[INFO] [1712609758.135591]: Direct Instances: []\n", - "[INFO] [1712609758.135856]: Inverse Restrictions: []\n", - "[INFO] [1712609758.136110]: -------------------\n", - "[INFO] [1712609758.136384]: SOMA.KitchenKnife \n", - "[INFO] [1712609758.136631]: Super classes: [SOMA.Knife]\n", - "[INFO] [1712609758.136892]: Ancestors: {SOMA.KitchenKnife, DUL.Entity, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", - "[INFO] [1712609758.137157]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", - "[INFO] [1712609758.137454]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.137959]: Instances: []\n", - "[INFO] [1712609758.138260]: Direct Instances: []\n", - "[INFO] [1712609758.138533]: Inverse Restrictions: []\n", - "[INFO] [1712609758.138779]: -------------------\n", - "[INFO] [1712609758.139023]: SOMA.BreakfastPlate \n", - "[INFO] [1712609758.139257]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712609758.139549]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.BreakfastPlate, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.139838]: Subclasses: []\n", - "[INFO] [1712609758.140151]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.140649]: Instances: []\n", - "[INFO] [1712609758.140925]: Direct Instances: []\n", - "[INFO] [1712609758.141196]: Inverse Restrictions: []\n", - "[INFO] [1712609758.141442]: -------------------\n", - "[INFO] [1712609758.141683]: SOMA.Plate \n", - "[INFO] [1712609758.141928]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712609758.142187]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.142465]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", - "[INFO] [1712609758.142765]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.143270]: Instances: []\n", - "[INFO] [1712609758.143536]: Direct Instances: []\n", - "[INFO] [1712609758.143810]: Inverse Restrictions: []\n", - "[INFO] [1712609758.144063]: -------------------\n", - "[INFO] [1712609758.144311]: SOMA.Building \n", - "[INFO] [1712609758.144545]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712609758.144824]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Building, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.145088]: Subclasses: []\n", - "[INFO] [1712609758.145380]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.145875]: Instances: []\n", - "[INFO] [1712609758.146211]: Direct Instances: []\n", - "[INFO] [1712609758.146552]: Inverse Restrictions: []\n", - "[INFO] [1712609758.146854]: -------------------\n", - "[INFO] [1712609758.147125]: SOMA.Deposition \n", - "[INFO] [1712609758.147418]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712609758.147688]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Deposition, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.147949]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712609758.148254]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.148790]: Instances: []\n", - "[INFO] [1712609758.149077]: Direct Instances: []\n", - "[INFO] [1712609758.149796]: Inverse Restrictions: []\n", - "[INFO] [1712609758.150062]: -------------------\n", - "[INFO] [1712609758.150322]: SOMA.CanCut \n", - "[INFO] [1712609758.150632]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712609758.150924]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.151190]: Subclasses: []\n", - "[INFO] [1712609758.151505]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.152004]: Instances: []\n", - "[INFO] [1712609758.152268]: Direct Instances: []\n", - "[INFO] [1712609758.152520]: Inverse Restrictions: []\n", - "[INFO] [1712609758.152764]: -------------------\n", - "[INFO] [1712609758.153015]: SOMA.Variability \n", - "[INFO] [1712609758.153300]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712609758.153574]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.153845]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712609758.154164]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.154725]: Instances: []\n", - "[INFO] [1712609758.155020]: Direct Instances: []\n", - "[INFO] [1712609758.155287]: Inverse Restrictions: []\n", - "[INFO] [1712609758.155534]: -------------------\n", - "[INFO] [1712609758.155773]: SOMA.Cutter \n", - "[INFO] [1712609758.156031]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712609758.156352]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Cutter, SOMA.Tool}\n", - "[INFO] [1712609758.156618]: Subclasses: []\n", - "[INFO] [1712609758.156929]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.157462]: Instances: []\n", - "[INFO] [1712609758.157741]: Direct Instances: []\n", - "[INFO] [1712609758.158077]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712609758.158340]: -------------------\n", - "[INFO] [1712609758.158596]: SOMA.CutObject \n", - "[INFO] [1712609758.158853]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712609758.159136]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.CutObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.159388]: Subclasses: []\n", - "[INFO] [1712609758.159685]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.160190]: Instances: []\n", - "[INFO] [1712609758.160458]: Direct Instances: []\n", - "[INFO] [1712609758.160789]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712609758.161050]: -------------------\n", - "[INFO] [1712609758.161296]: SOMA.Capability \n", - "[INFO] [1712609758.162999]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712609758.163307]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.163579]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712609758.163892]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.164391]: Instances: []\n", - "[INFO] [1712609758.164675]: Direct Instances: []\n", - "[INFO] [1712609758.164934]: Inverse Restrictions: []\n", - "[INFO] [1712609758.165175]: -------------------\n", - "[INFO] [1712609758.165412]: SOMA.Capacity \n", - "[INFO] [1712609758.165647]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609758.165908]: Ancestors: {DUL.Entity, SOMA.Intrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capacity, owl.Thing}\n", - "[INFO] [1712609758.166183]: Subclasses: []\n", - "[INFO] [1712609758.166495]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.166996]: Instances: []\n", - "[INFO] [1712609758.167264]: Direct Instances: []\n", - "[INFO] [1712609758.167951]: Inverse Restrictions: []\n", - "[INFO] [1712609758.168231]: -------------------\n", - "[INFO] [1712609758.168487]: SOMA.Intrinsic \n", - "[INFO] [1712609758.168731]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712609758.168981]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609758.169248]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712609758.169555]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.170088]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712609758.170365]: Direct Instances: []\n", - "[INFO] [1712609758.170628]: Inverse Restrictions: []\n", - "[INFO] [1712609758.170871]: -------------------\n", - "[INFO] [1712609758.171118]: SOMA.Carafe \n", - "[INFO] [1712609758.171366]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712609758.171636]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Carafe, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.171885]: Subclasses: [SOMA.CoffeeCarafe]\n", - "[INFO] [1712609758.172167]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.172707]: Instances: []\n", - "[INFO] [1712609758.172985]: Direct Instances: []\n", - "[INFO] [1712609758.173253]: Inverse Restrictions: []\n", - "[INFO] [1712609758.173501]: -------------------\n", - "[INFO] [1712609758.173749]: SOMA.Catching \n", - "[INFO] [1712609758.174050]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.174338]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Catching, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609758.174607]: Subclasses: []\n", - "[INFO] [1712609758.174908]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.175442]: Instances: []\n", - "[INFO] [1712609758.175735]: Direct Instances: []\n", - "[INFO] [1712609758.175990]: Inverse Restrictions: []\n", - "[INFO] [1712609758.176231]: -------------------\n", - "[INFO] [1712609758.176467]: SOMA.PickingUp \n", - "[INFO] [1712609758.176710]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609758.176992]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing, SOMA.PickingUp}\n", - "[INFO] [1712609758.177244]: Subclasses: []\n", - "[INFO] [1712609758.177535]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.178044]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712609758.178330]: Direct Instances: [SOMA.picking_up]\n", - "[INFO] [1712609758.178590]: Inverse Restrictions: []\n", - "[INFO] [1712609758.178832]: -------------------\n", - "[INFO] [1712609758.179067]: SOMA.CausalEventRole \n", - "[INFO] [1712609758.179301]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712609758.179559]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.CausalEventRole}\n", - "[INFO] [1712609758.179813]: Subclasses: []\n", - "[INFO] [1712609758.180106]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.180591]: Instances: []\n", - "[INFO] [1712609758.180859]: Direct Instances: []\n", - "[INFO] [1712609758.181247]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609758.181500]: -------------------\n", - "[INFO] [1712609758.181741]: SOMA.EventAdjacentRole \n", - "[INFO] [1712609758.181974]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712609758.182236]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.182503]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712609758.182804]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.183474]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609758.183761]: Direct Instances: []\n", - "[INFO] [1712609758.184030]: Inverse Restrictions: []\n", - "[INFO] [1712609758.184279]: -------------------\n", - "[INFO] [1712609758.184524]: SOMA.CausedMotionTheory \n", - "[INFO] [1712609758.184807]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712609758.185121]: Ancestors: {DUL.Entity, SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609758.185380]: Subclasses: []\n", - "[INFO] [1712609758.185682]: Properties: [rdf-schema.comment, DUL.hasPart, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.186178]: Instances: []\n", - "[INFO] [1712609758.186455]: Direct Instances: []\n", - "[INFO] [1712609758.186711]: Inverse Restrictions: []\n", - "[INFO] [1712609758.186950]: -------------------\n", - "[INFO] [1712609758.187187]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712609758.187421]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712609758.187663]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609758.187928]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712609758.188220]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.188720]: Instances: []\n", - "[INFO] [1712609758.188985]: Direct Instances: []\n", - "[INFO] [1712609758.189326]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", - "[INFO] [1712609758.189594]: -------------------\n", - "[INFO] [1712609758.189837]: SOMA.PerformerRole \n", - "[INFO] [1712609758.190109]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712609758.190404]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", - "[INFO] [1712609758.190727]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712609758.191038]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.191539]: Instances: []\n", - "[INFO] [1712609758.191820]: Direct Instances: []\n", - "[INFO] [1712609758.192174]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609758.192435]: -------------------\n", - "[INFO] [1712609758.192688]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712609758.192973]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712609758.193266]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.SourcePathGoalTheory}\n", - "[INFO] [1712609758.193523]: Subclasses: []\n", - "[INFO] [1712609758.193825]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.194315]: Instances: []\n", - "[INFO] [1712609758.194575]: Direct Instances: []\n", - "[INFO] [1712609758.194874]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609758.195123]: -------------------\n", - "[INFO] [1712609758.195364]: SOMA.Ceiling \n", - "[INFO] [1712609758.195597]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712609758.195877]: Ancestors: {DUL.Entity, SOMA.Ceiling, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", - "[INFO] [1712609758.196139]: Subclasses: []\n", - "[INFO] [1712609758.196440]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.196929]: Instances: []\n", - "[INFO] [1712609758.197185]: Direct Instances: []\n", - "[INFO] [1712609758.197427]: Inverse Restrictions: []\n", - "[INFO] [1712609758.197672]: -------------------\n", - "[INFO] [1712609758.197908]: SOMA.RoomSurface \n", - "[INFO] [1712609758.198147]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712609758.198394]: Ancestors: {DUL.Entity, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", - "[INFO] [1712609758.198641]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712609758.198946]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.199447]: Instances: []\n", - "[INFO] [1712609758.199717]: Direct Instances: []\n", - "[INFO] [1712609758.199967]: Inverse Restrictions: []\n", - "[INFO] [1712609758.200202]: -------------------\n", - "[INFO] [1712609758.200447]: SOMA.Floor \n", - "[INFO] [1712609758.200688]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712609758.200957]: Ancestors: {SOMA.Floor, DUL.Entity, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", - "[INFO] [1712609758.201205]: Subclasses: []\n", - "[INFO] [1712609758.201507]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.202016]: Instances: []\n", - "[INFO] [1712609758.202285]: Direct Instances: []\n", - "[INFO] [1712609758.202540]: Inverse Restrictions: []\n", - "[INFO] [1712609758.202778]: -------------------\n", - "[INFO] [1712609758.203010]: SOMA.Wall \n", - "[INFO] [1712609758.203250]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712609758.203524]: Ancestors: {DUL.Entity, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing, SOMA.Wall}\n", - "[INFO] [1712609758.203770]: Subclasses: []\n", - "[INFO] [1712609758.204046]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.204528]: Instances: []\n", - "[INFO] [1712609758.204803]: Direct Instances: []\n", - "[INFO] [1712609758.205061]: Inverse Restrictions: []\n", - "[INFO] [1712609758.205302]: -------------------\n", - "[INFO] [1712609758.205564]: SOMA.CeramicCooktop \n", - "[INFO] [1712609758.205807]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712609758.206106]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.CeramicCooktop, SOMA.ElectricCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.206378]: Subclasses: []\n", - "[INFO] [1712609758.206668]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.207154]: Instances: []\n", - "[INFO] [1712609758.207458]: Direct Instances: []\n", - "[INFO] [1712609758.207737]: Inverse Restrictions: []\n", - "[INFO] [1712609758.207983]: -------------------\n", - "[INFO] [1712609758.208223]: SOMA.ElectricCooktop \n", - "[INFO] [1712609758.208455]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712609758.208710]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.ElectricCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.208976]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", - "[INFO] [1712609758.209278]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.209791]: Instances: []\n", - "[INFO] [1712609758.210068]: Direct Instances: []\n", - "[INFO] [1712609758.210336]: Inverse Restrictions: []\n", - "[INFO] [1712609758.210577]: -------------------\n", - "[INFO] [1712609758.210812]: SOMA.CerealBox \n", - "[INFO] [1712609758.211046]: Super classes: [SOMA.Box]\n", - "[INFO] [1712609758.211306]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Box, DUL.Object, SOMA.CerealBox, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.211563]: Subclasses: []\n", - "[INFO] [1712609758.211853]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.212337]: Instances: []\n", - "[INFO] [1712609758.212586]: Direct Instances: []\n", - "[INFO] [1712609758.212825]: Inverse Restrictions: []\n", - "[INFO] [1712609758.213066]: -------------------\n", - "[INFO] [1712609758.213300]: SOMA.Channel \n", - "[INFO] [1712609758.213556]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712609758.213834]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.214100]: Subclasses: []\n", - "[INFO] [1712609758.214417]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.214911]: Instances: []\n", - "[INFO] [1712609758.215172]: Direct Instances: []\n", - "[INFO] [1712609758.215486]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609758.215742]: -------------------\n", - "[INFO] [1712609758.215989]: SOMA.PathRole \n", - "[INFO] [1712609758.216227]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712609758.216473]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.PathRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.216750]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712609758.217051]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.217542]: Instances: []\n", - "[INFO] [1712609758.217803]: Direct Instances: []\n", - "[INFO] [1712609758.218099]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712609758.218358]: -------------------\n", - "[INFO] [1712609758.218599]: SOMA.CommunicationTask \n", - "[INFO] [1712609758.219629]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712609758.219988]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712609758.220274]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712609758.220587]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.221083]: Instances: []\n", - "[INFO] [1712609758.221357]: Direct Instances: []\n", - "[INFO] [1712609758.222237]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", - "[INFO] [1712609758.222508]: -------------------\n", - "[INFO] [1712609758.222756]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712609758.222997]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712609758.223275]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", - "[INFO] [1712609758.223525]: Subclasses: []\n", - "[INFO] [1712609758.223816]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.224339]: Instances: []\n", - "[INFO] [1712609758.224631]: Direct Instances: []\n", - "[INFO] [1712609758.224890]: Inverse Restrictions: []\n", - "[INFO] [1712609758.225142]: -------------------\n", - "[INFO] [1712609758.225390]: SOMA.ChemicalProcess \n", - "[INFO] [1712609758.225629]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712609758.225901]: Ancestors: {DUL.Entity, DUL.Process, SOMA.ChemicalProcess, owl.Thing, DUL.Event}\n", - "[INFO] [1712609758.226173]: Subclasses: []\n", - "[INFO] [1712609758.226478]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.227004]: Instances: []\n", - "[INFO] [1712609758.227283]: Direct Instances: []\n", - "[INFO] [1712609758.227539]: Inverse Restrictions: []\n", - "[INFO] [1712609758.227778]: -------------------\n", - "[INFO] [1712609758.228014]: SOMA.Choice \n", - "[INFO] [1712609758.228246]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712609758.228524]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, SOMA.Choice, DUL.Object, SOMA.EventAdjacentRole, SOMA.ResultRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.228777]: Subclasses: []\n", - "[INFO] [1712609758.229068]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.229550]: Instances: []\n", - "[INFO] [1712609758.229801]: Direct Instances: []\n", - "[INFO] [1712609758.230059]: Inverse Restrictions: []\n", - "[INFO] [1712609758.230419]: -------------------\n", - "[INFO] [1712609758.230747]: SOMA.ResultRole \n", - "[INFO] [1712609758.231026]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712609758.231304]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ResultRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.231579]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712609758.231884]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.232402]: Instances: []\n", - "[INFO] [1712609758.232690]: Direct Instances: []\n", - "[INFO] [1712609758.232957]: Inverse Restrictions: []\n", - "[INFO] [1712609758.233198]: -------------------\n", - "[INFO] [1712609758.233439]: SOMA.CircularCylinder \n", - "[INFO] [1712609758.233702]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712609758.234003]: Ancestors: {DUL.Entity, SOMA.CircularCylinder, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609758.234269]: Subclasses: []\n", - "[INFO] [1712609758.234579]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712609758.235075]: Instances: []\n", - "[INFO] [1712609758.235363]: Direct Instances: []\n", - "[INFO] [1712609758.235635]: Inverse Restrictions: []\n", - "[INFO] [1712609758.235919]: -------------------\n", - "[INFO] [1712609758.236173]: SOMA.CylinderShape \n", - "[INFO] [1712609758.236462]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712609758.236749]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609758.237027]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712609758.237349]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasLength, SOMA.hasRadius, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.237866]: Instances: []\n", - "[INFO] [1712609758.238156]: Direct Instances: []\n", - "[INFO] [1712609758.238427]: Inverse Restrictions: []\n", - "[INFO] [1712609758.238719]: -------------------\n", - "[INFO] [1712609758.238994]: SOMA.Classifier \n", - "[INFO] [1712609758.239249]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712609758.239558]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.Classifier, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.239851]: Subclasses: []\n", - "[INFO] [1712609758.240170]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.240682]: Instances: []\n", - "[INFO] [1712609758.240999]: Direct Instances: []\n", - "[INFO] [1712609758.241270]: Inverse Restrictions: []\n", - "[INFO] [1712609758.241533]: -------------------\n", - "[INFO] [1712609758.241786]: SOMA.StatisticalReasoner \n", - "[INFO] [1712609758.242027]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712609758.242314]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.242579]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712609758.242884]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.243617]: Instances: []\n", - "[INFO] [1712609758.244219]: Direct Instances: []\n", - "[INFO] [1712609758.244661]: Inverse Restrictions: []\n", - "[INFO] [1712609758.245084]: -------------------\n", - "[INFO] [1712609758.245443]: SOMA.ClausalObject \n", - "[INFO] [1712609758.245866]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712609758.246235]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609758.246696]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712609758.247183]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.247883]: Instances: []\n", - "[INFO] [1712609758.248283]: Direct Instances: []\n", - "[INFO] [1712609758.248653]: Inverse Restrictions: []\n", - "[INFO] [1712609758.249001]: -------------------\n", - "[INFO] [1712609758.249344]: SOMA.Phrase \n", - "[INFO] [1712609758.249678]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712609758.250034]: Ancestors: {DUL.Entity, DUL.InformationEntity, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609758.250501]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712609758.250893]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.251449]: Instances: []\n", - "[INFO] [1712609758.251745]: Direct Instances: []\n", - "[INFO] [1712609758.252028]: Inverse Restrictions: []\n", - "[INFO] [1712609758.252304]: -------------------\n", - "[INFO] [1712609758.252563]: SOMA.Clean \n", - "[INFO] [1712609758.252810]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712609758.253089]: Ancestors: {SOMA.Clean, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", - "[INFO] [1712609758.253340]: Subclasses: []\n", - "[INFO] [1712609758.253635]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.254148]: Instances: []\n", - "[INFO] [1712609758.254424]: Direct Instances: []\n", - "[INFO] [1712609758.255157]: Inverse Restrictions: []\n", - "[INFO] [1712609758.255450]: -------------------\n", - "[INFO] [1712609758.255786]: SOMA.CleanlinessRegion \n", - "[INFO] [1712609758.256060]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609758.256351]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", - "[INFO] [1712609758.256620]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712609758.256939]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.257509]: Instances: []\n", - "[INFO] [1712609758.257803]: Direct Instances: []\n", - "[INFO] [1712609758.258156]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712609758.258410]: -------------------\n", - "[INFO] [1712609758.258660]: SOMA.Cleaning \n", - "[INFO] [1712609758.258934]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712609758.259217]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Cleaning, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609758.259466]: Subclasses: []\n", - "[INFO] [1712609758.259760]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.260264]: Instances: []\n", - "[INFO] [1712609758.260543]: Direct Instances: []\n", - "[INFO] [1712609758.260801]: Inverse Restrictions: []\n", - "[INFO] [1712609758.261044]: -------------------\n", - "[INFO] [1712609758.261281]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712609758.261513]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609758.261772]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609758.262028]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712609758.262407]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.263000]: Instances: []\n", - "[INFO] [1712609758.263304]: Direct Instances: []\n", - "[INFO] [1712609758.263601]: Inverse Restrictions: []\n", - "[INFO] [1712609758.263863]: -------------------\n", - "[INFO] [1712609758.264111]: SOMA.Purification \n", - "[INFO] [1712609758.265161]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712609758.265483]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition, SOMA.Purification}\n", - "[INFO] [1712609758.265748]: Subclasses: []\n", - "[INFO] [1712609758.266045]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.266551]: Instances: []\n", - "[INFO] [1712609758.266832]: Direct Instances: []\n", - "[INFO] [1712609758.267138]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712609758.267388]: -------------------\n", - "[INFO] [1712609758.267653]: SOMA.Cleanliness \n", - "[INFO] [1712609758.267922]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712609758.268199]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing}\n", - "[INFO] [1712609758.268466]: Subclasses: []\n", - "[INFO] [1712609758.268771]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.269274]: Instances: []\n", - "[INFO] [1712609758.269545]: Direct Instances: []\n", - "[INFO] [1712609758.269888]: Inverse Restrictions: []\n", - "[INFO] [1712609758.270149]: -------------------\n", - "[INFO] [1712609758.270406]: SOMA.SocialQuality \n", - "[INFO] [1712609758.270662]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712609758.270915]: Ancestors: {SOMA.SocialQuality, DUL.Entity, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609758.271174]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712609758.271492]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.272005]: Instances: []\n", - "[INFO] [1712609758.272279]: Direct Instances: []\n", - "[INFO] [1712609758.272542]: Inverse Restrictions: []\n", - "[INFO] [1712609758.272795]: -------------------\n", - "[INFO] [1712609758.273037]: SOMA.Client-Server_Specification \n", - "[INFO] [1712609758.274067]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712609758.274401]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, SOMA.Client-Server_Specification, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712609758.274682]: Subclasses: []\n", - "[INFO] [1712609758.274999]: Properties: [rdf-schema.comment, DUL.definesRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.275498]: Instances: []\n", - "[INFO] [1712609758.275762]: Direct Instances: []\n", - "[INFO] [1712609758.276094]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712609758.276357]: -------------------\n", - "[INFO] [1712609758.276603]: SOMA.ClientRole \n", - "[INFO] [1712609758.276854]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712609758.278095]: Ancestors: {DUL.Concept, SOMA.ClientRole, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.278402]: Subclasses: []\n", - "[INFO] [1712609758.278740]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.279253]: Instances: []\n", - "[INFO] [1712609758.279531]: Direct Instances: []\n", - "[INFO] [1712609758.279855]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712609758.280123]: -------------------\n", - "[INFO] [1712609758.280374]: SOMA.ServerRole \n", - "[INFO] [1712609758.280631]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712609758.280910]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.ServerRole, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.281159]: Subclasses: []\n", - "[INFO] [1712609758.281455]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.281964]: Instances: []\n", - "[INFO] [1712609758.282244]: Direct Instances: []\n", - "[INFO] [1712609758.282559]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712609758.282809]: -------------------\n", - "[INFO] [1712609758.283054]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712609758.283309]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609758.283566]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.283825]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712609758.284131]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.284645]: Instances: []\n", - "[INFO] [1712609758.284917]: Direct Instances: []\n", - "[INFO] [1712609758.285176]: Inverse Restrictions: []\n", - "[INFO] [1712609758.285416]: -------------------\n", - "[INFO] [1712609758.285656]: SOMA.Closing \n", - "[INFO] [1712609758.285907]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.286185]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Closing, SOMA.Actuating}\n", - "[INFO] [1712609758.286446]: Subclasses: []\n", - "[INFO] [1712609758.286758]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.287265]: Instances: []\n", - "[INFO] [1712609758.287537]: Direct Instances: []\n", - "[INFO] [1712609758.287791]: Inverse Restrictions: []\n", - "[INFO] [1712609758.288035]: -------------------\n", - "[INFO] [1712609758.288279]: SOMA.Delivering \n", - "[INFO] [1712609758.288550]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712609758.288835]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Delivering, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609758.289096]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712609758.289411]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.289934]: Instances: []\n", - "[INFO] [1712609758.290226]: Direct Instances: []\n", - "[INFO] [1712609758.290497]: Inverse Restrictions: []\n", - "[INFO] [1712609758.290789]: -------------------\n", - "[INFO] [1712609758.291037]: SOMA.Fetching \n", - "[INFO] [1712609758.291444]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712609758.291737]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Fetching, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PhysicalAcquiring, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609758.291994]: Subclasses: []\n", - "[INFO] [1712609758.292299]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.292786]: Instances: []\n", - "[INFO] [1712609758.293069]: Direct Instances: []\n", - "[INFO] [1712609758.293331]: Inverse Restrictions: []\n", - "[INFO] [1712609758.293586]: -------------------\n", - "[INFO] [1712609758.293834]: SOMA.Lifting \n", - "[INFO] [1712609758.294075]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.294347]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Lifting, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609758.294614]: Subclasses: []\n", - "[INFO] [1712609758.294921]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.295412]: Instances: []\n", - "[INFO] [1712609758.295681]: Direct Instances: []\n", - "[INFO] [1712609758.295941]: Inverse Restrictions: []\n", - "[INFO] [1712609758.296201]: -------------------\n", - "[INFO] [1712609758.296450]: SOMA.Opening \n", - "[INFO] [1712609758.296696]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.296968]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating, SOMA.Opening}\n", - "[INFO] [1712609758.297239]: Subclasses: []\n", - "[INFO] [1712609758.297552]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.298046]: Instances: []\n", - "[INFO] [1712609758.298326]: Direct Instances: []\n", - "[INFO] [1712609758.298579]: Inverse Restrictions: []\n", - "[INFO] [1712609758.298823]: -------------------\n", - "[INFO] [1712609758.299073]: SOMA.Pulling \n", - "[INFO] [1712609758.299315]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.299582]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Pulling, SOMA.Actuating}\n", - "[INFO] [1712609758.299829]: Subclasses: []\n", - "[INFO] [1712609758.300130]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.300628]: Instances: []\n", - "[INFO] [1712609758.300892]: Direct Instances: []\n", - "[INFO] [1712609758.301148]: Inverse Restrictions: []\n", - "[INFO] [1712609758.301387]: -------------------\n", - "[INFO] [1712609758.301634]: SOMA.Pushing \n", - "[INFO] [1712609758.301882]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.302158]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609758.302415]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712609758.302727]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.303244]: Instances: []\n", - "[INFO] [1712609758.303531]: Direct Instances: []\n", - "[INFO] [1712609758.303806]: Inverse Restrictions: []\n", - "[INFO] [1712609758.304054]: -------------------\n", - "[INFO] [1712609758.304297]: SOMA.Squeezing \n", - "[INFO] [1712609758.304539]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.304800]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Squeezing, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609758.305063]: Subclasses: []\n", - "[INFO] [1712609758.305363]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.305865]: Instances: []\n", - "[INFO] [1712609758.306153]: Direct Instances: []\n", - "[INFO] [1712609758.306432]: Inverse Restrictions: []\n", - "[INFO] [1712609758.306674]: -------------------\n", - "[INFO] [1712609758.306916]: SOMA.ClosingDisposition \n", - "[INFO] [1712609758.307153]: Super classes: [SOMA.Linkage]\n", - "[INFO] [1712609758.307476]: Ancestors: {SOMA.Extrinsic, SOMA.ClosingDisposition, DUL.Entity, SOMA.Linkage, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.307743]: Subclasses: []\n", - "[INFO] [1712609758.308040]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.308532]: Instances: []\n", - "[INFO] [1712609758.308789]: Direct Instances: []\n", - "[INFO] [1712609758.309034]: Inverse Restrictions: []\n", - "[INFO] [1712609758.309282]: -------------------\n", - "[INFO] [1712609758.309539]: SOMA.Linkage \n", - "[INFO] [1712609758.309809]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712609758.310071]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.Linkage, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.310349]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712609758.310664]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.311173]: Instances: []\n", - "[INFO] [1712609758.311442]: Direct Instances: []\n", - "[INFO] [1712609758.311693]: Inverse Restrictions: []\n", - "[INFO] [1712609758.311946]: -------------------\n", - "[INFO] [1712609758.312191]: SOMA.Clumsiness \n", - "[INFO] [1712609758.312430]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712609758.312703]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Clumsiness, DUL.Diagnosis}\n", - "[INFO] [1712609758.312947]: Subclasses: []\n", - "[INFO] [1712609758.313239]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.313732]: Instances: []\n", - "[INFO] [1712609758.314000]: Direct Instances: []\n", - "[INFO] [1712609758.314403]: Inverse Restrictions: []\n", - "[INFO] [1712609758.314764]: -------------------\n", - "[INFO] [1712609758.315135]: SOMA.CoffeeCarafe \n", - "[INFO] [1712609758.315496]: Super classes: [SOMA.Carafe]\n", - "[INFO] [1712609758.315884]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Carafe, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.CoffeeCarafe}\n", - "[INFO] [1712609758.316269]: Subclasses: []\n", - "[INFO] [1712609758.316582]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.317097]: Instances: []\n", - "[INFO] [1712609758.317369]: Direct Instances: []\n", - "[INFO] [1712609758.317621]: Inverse Restrictions: []\n", - "[INFO] [1712609758.317988]: -------------------\n", - "[INFO] [1712609758.318259]: SOMA.CoffeeTable \n", - "[INFO] [1712609758.318518]: Super classes: [SOMA.Table]\n", - "[INFO] [1712609758.318793]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Table, SOMA.CoffeeTable, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.319266]: Subclasses: []\n", - "[INFO] [1712609758.319646]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.320149]: Instances: []\n", - "[INFO] [1712609758.320415]: Direct Instances: []\n", - "[INFO] [1712609758.320665]: Inverse Restrictions: []\n", - "[INFO] [1712609758.320904]: -------------------\n", - "[INFO] [1712609758.321139]: SOMA.CognitiveAgent \n", - "[INFO] [1712609758.321376]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712609758.321651]: Ancestors: {DUL.Entity, DUL.Agent, SOMA.CognitiveAgent, DUL.Object, owl.Thing}\n", - "[INFO] [1712609758.321907]: Subclasses: []\n", - "[INFO] [1712609758.322215]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.322714]: Instances: []\n", - "[INFO] [1712609758.323010]: Direct Instances: []\n", - "[INFO] [1712609758.323276]: Inverse Restrictions: []\n", - "[INFO] [1712609758.323519]: -------------------\n", - "[INFO] [1712609758.323987]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712609758.324399]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712609758.324835]: Ancestors: {DUL.Entity, SOMA.SubCognitiveAgent, DUL.Agent, DUL.Object, owl.Thing}\n", - "[INFO] [1712609758.325275]: Subclasses: []\n", - "[INFO] [1712609758.325757]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.326368]: Instances: []\n", - "[INFO] [1712609758.326798]: Direct Instances: []\n", - "[INFO] [1712609758.327229]: Inverse Restrictions: []\n", - "[INFO] [1712609758.327594]: -------------------\n", - "[INFO] [1712609758.328012]: SOMA.CoilCooktop \n", - "[INFO] [1712609758.328438]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712609758.328829]: Ancestors: {DUL.Entity, SOMA.CoilCooktop, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.ElectricCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.329187]: Subclasses: []\n", - "[INFO] [1712609758.329594]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.330198]: Instances: []\n", - "[INFO] [1712609758.330561]: Direct Instances: []\n", - "[INFO] [1712609758.330901]: Inverse Restrictions: []\n", - "[INFO] [1712609758.331236]: -------------------\n", - "[INFO] [1712609758.331571]: SOMA.Collision \n", - "[INFO] [1712609758.331906]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712609758.332263]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType, SOMA.Collision}\n", - "[INFO] [1712609758.332597]: Subclasses: []\n", - "[INFO] [1712609758.332986]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.333566]: Instances: []\n", - "[INFO] [1712609758.333919]: Direct Instances: []\n", - "[INFO] [1712609758.334288]: Inverse Restrictions: []\n", - "[INFO] [1712609758.334614]: -------------------\n", - "[INFO] [1712609758.334890]: SOMA.Extrinsic \n", - "[INFO] [1712609758.335145]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712609758.335393]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609758.335647]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712609758.335964]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.336526]: Instances: []\n", - "[INFO] [1712609758.336816]: Direct Instances: []\n", - "[INFO] [1712609758.337088]: Inverse Restrictions: []\n", - "[INFO] [1712609758.337333]: -------------------\n", - "[INFO] [1712609758.337568]: SOMA.ImperativeClause \n", - "[INFO] [1712609758.337838]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712609758.338132]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, SOMA.ImperativeClause, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609758.338395]: Subclasses: []\n", - "[INFO] [1712609758.338698]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.expresses]\n", - "[INFO] [1712609758.339193]: Instances: []\n", - "[INFO] [1712609758.339473]: Direct Instances: []\n", - "[INFO] [1712609758.339786]: Inverse Restrictions: []\n", - "[INFO] [1712609758.340038]: -------------------\n", - "[INFO] [1712609758.340277]: SOMA.CommitedObject \n", - "[INFO] [1712609758.340515]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712609758.340797]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.CommitedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.341067]: Subclasses: []\n", - "[INFO] [1712609758.341371]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.341867]: Instances: []\n", - "[INFO] [1712609758.342137]: Direct Instances: []\n", - "[INFO] [1712609758.342429]: Inverse Restrictions: []\n", - "[INFO] [1712609758.342700]: -------------------\n", - "[INFO] [1712609758.342957]: SOMA.ConnectedObject \n", - "[INFO] [1712609758.343206]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.343464]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.343743]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712609758.344049]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.344559]: Instances: []\n", - "[INFO] [1712609758.344846]: Direct Instances: []\n", - "[INFO] [1712609758.345232]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712609758.345511]: -------------------\n", - "[INFO] [1712609758.345772]: SOMA.CommunicationAction \n", - "[INFO] [1712609758.346049]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712609758.346347]: Ancestors: {DUL.Entity, SOMA.CommunicationAction, DUL.Action, owl.Thing, DUL.Event}\n", - "[INFO] [1712609758.346629]: Subclasses: []\n", - "[INFO] [1712609758.346954]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.347463]: Instances: []\n", - "[INFO] [1712609758.347738]: Direct Instances: []\n", - "[INFO] [1712609758.348778]: Inverse Restrictions: []\n", - "[INFO] [1712609758.349069]: -------------------\n", - "[INFO] [1712609758.349330]: SOMA.LinguisticObject \n", - "[INFO] [1712609758.349588]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712609758.350019]: Ancestors: {DUL.Entity, DUL.InformationEntity, DUL.SocialObject, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609758.350375]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712609758.350853]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.351492]: Instances: []\n", - "[INFO] [1712609758.351876]: Direct Instances: []\n", - "[INFO] [1712609758.352285]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712609758.352647]: -------------------\n", - "[INFO] [1712609758.353008]: SOMA.CommunicationReport \n", - "[INFO] [1712609758.353355]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609758.353726]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712609758.354076]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712609758.354474]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.355086]: Instances: []\n", - "[INFO] [1712609758.355461]: Direct Instances: []\n", - "[INFO] [1712609758.355817]: Inverse Restrictions: []\n", - "[INFO] [1712609758.356167]: -------------------\n", - "[INFO] [1712609758.356527]: SOMA.Receiver \n", - "[INFO] [1712609758.356877]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712609758.357257]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExperiencerRole, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Receiver, SOMA.PerformerRole}\n", - "[INFO] [1712609758.357614]: Subclasses: []\n", - "[INFO] [1712609758.358004]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.358766]: Instances: []\n", - "[INFO] [1712609758.359196]: Direct Instances: []\n", - "[INFO] [1712609758.359566]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609758.359833]: -------------------\n", - "[INFO] [1712609758.360082]: SOMA.Sender \n", - "[INFO] [1712609758.360330]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712609758.360617]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.Sender, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", - "[INFO] [1712609758.360870]: Subclasses: []\n", - "[INFO] [1712609758.361175]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.361676]: Instances: []\n", - "[INFO] [1712609758.361942]: Direct Instances: []\n", - "[INFO] [1712609758.362270]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609758.362535]: -------------------\n", - "[INFO] [1712609758.362787]: SOMA.CommunicationTopic \n", - "[INFO] [1712609758.363841]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712609758.364155]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.364429]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609758.364735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.365254]: Instances: []\n", - "[INFO] [1712609758.365529]: Direct Instances: []\n", - "[INFO] [1712609758.365788]: Inverse Restrictions: []\n", - "[INFO] [1712609758.366031]: -------------------\n", - "[INFO] [1712609758.366359]: SOMA.ResourceRole \n", - "[INFO] [1712609758.366656]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609758.366936]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.367214]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712609758.367525]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.368092]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609758.368388]: Direct Instances: []\n", - "[INFO] [1712609758.368659]: Inverse Restrictions: []\n", - "[INFO] [1712609758.368927]: -------------------\n", - "[INFO] [1712609758.369177]: SOMA.Compartment \n", - "[INFO] [1712609758.369414]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.369700]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, SOMA.Compartment}\n", - "[INFO] [1712609758.369969]: Subclasses: [SOMA.FreezerCompartment]\n", - "[INFO] [1712609758.370275]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.370777]: Instances: []\n", - "[INFO] [1712609758.371069]: Direct Instances: []\n", - "[INFO] [1712609758.371341]: Inverse Restrictions: []\n", - "[INFO] [1712609758.371603]: -------------------\n", - "[INFO] [1712609758.372019]: SOMA.Composing \n", - "[INFO] [1712609758.372369]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712609758.372741]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Composing, SOMA.Disposition}\n", - "[INFO] [1712609758.373106]: Subclasses: []\n", - "[INFO] [1712609758.373497]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.374088]: Instances: []\n", - "[INFO] [1712609758.374400]: Direct Instances: []\n", - "[INFO] [1712609758.374736]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712609758.375009]: -------------------\n", - "[INFO] [1712609758.375273]: SOMA.Computer_Language \n", - "[INFO] [1712609758.375646]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712609758.376022]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.376398]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712609758.376814]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.377441]: Instances: []\n", - "[INFO] [1712609758.377827]: Direct Instances: []\n", - "[INFO] [1712609758.378192]: Inverse Restrictions: []\n", - "[INFO] [1712609758.378540]: -------------------\n", - "[INFO] [1712609758.378873]: SOMA.FormalLanguage \n", - "[INFO] [1712609758.379217]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712609758.379580]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.379939]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609758.380341]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.380943]: Instances: []\n", - "[INFO] [1712609758.381310]: Direct Instances: []\n", - "[INFO] [1712609758.381719]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712609758.382056]: -------------------\n", - "[INFO] [1712609758.382429]: SOMA.Computer_Program \n", - "[INFO] [1712609758.382720]: Super classes: [owl.Thing]\n", - "[INFO] [1712609758.384897]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", - "[INFO] [1712609758.385239]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712609758.385596]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.386140]: Instances: []\n", - "[INFO] [1712609758.386438]: Direct Instances: []\n", - "[INFO] [1712609758.388289]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712609758.388587]: -------------------\n", - "[INFO] [1712609758.388843]: SOMA.Programming_Language \n", - "[INFO] [1712609758.389095]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712609758.389382]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Programming_Language, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.389648]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712609758.389962]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.390476]: Instances: []\n", - "[INFO] [1712609758.390759]: Direct Instances: []\n", - "[INFO] [1712609758.391096]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712609758.391360]: -------------------\n", - "[INFO] [1712609758.391616]: SOMA.Conclusion \n", - "[INFO] [1712609758.391868]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712609758.392178]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Conclusion, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.CreatedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.392453]: Subclasses: []\n", - "[INFO] [1712609758.392762]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.393267]: Instances: []\n", - "[INFO] [1712609758.393556]: Direct Instances: []\n", - "[INFO] [1712609758.394639]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609758.394925]: -------------------\n", - "[INFO] [1712609758.395181]: SOMA.CreatedObject \n", - "[INFO] [1712609758.395445]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.395703]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.CreatedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.395960]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712609758.396259]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.396774]: Instances: []\n", - "[INFO] [1712609758.397044]: Direct Instances: []\n", - "[INFO] [1712609758.397432]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712609758.397687]: -------------------\n", - "[INFO] [1712609758.397941]: SOMA.Knowledge \n", - "[INFO] [1712609758.398246]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712609758.398563]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.398849]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712609758.399160]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.399670]: Instances: []\n", - "[INFO] [1712609758.399955]: Direct Instances: []\n", - "[INFO] [1712609758.401126]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712609758.401396]: -------------------\n", - "[INFO] [1712609758.401646]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712609758.401902]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712609758.402198]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing, SOMA.ConditionalSuccedence}\n", - "[INFO] [1712609758.402465]: Subclasses: []\n", - "[INFO] [1712609758.402774]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.403269]: Instances: []\n", - "[INFO] [1712609758.403550]: Direct Instances: []\n", - "[INFO] [1712609758.403811]: Inverse Restrictions: []\n", - "[INFO] [1712609758.404052]: -------------------\n", - "[INFO] [1712609758.404287]: SOMA.Configuration \n", - "[INFO] [1712609758.404533]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712609758.404797]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Configuration, DUL.Description, owl.Thing}\n", - "[INFO] [1712609758.405062]: Subclasses: []\n", - "[INFO] [1712609758.405363]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.describes]\n", - "[INFO] [1712609758.405887]: Instances: []\n", - "[INFO] [1712609758.406157]: Direct Instances: []\n", - "[INFO] [1712609758.406411]: Inverse Restrictions: []\n", - "[INFO] [1712609758.406660]: -------------------\n", - "[INFO] [1712609758.406910]: SOMA.Connectivity \n", - "[INFO] [1712609758.407164]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712609758.407444]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Connectivity, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.407706]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712609758.408004]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.408535]: Instances: []\n", - "[INFO] [1712609758.408817]: Direct Instances: []\n", - "[INFO] [1712609758.409118]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712609758.409367]: -------------------\n", - "[INFO] [1712609758.409622]: SOMA.ContactState \n", - "[INFO] [1712609758.409923]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712609758.410219]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.ContactState, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609758.410535]: Subclasses: []\n", - "[INFO] [1712609758.410841]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.411332]: Instances: []\n", - "[INFO] [1712609758.411612]: Direct Instances: []\n", - "[INFO] [1712609758.411874]: Inverse Restrictions: []\n", - "[INFO] [1712609758.412123]: -------------------\n", - "[INFO] [1712609758.412366]: SOMA.Container \n", - "[INFO] [1712609758.412601]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712609758.412940]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Container, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609758.413225]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", - "[INFO] [1712609758.413533]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.414048]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609758.414364]: Direct Instances: []\n", - "[INFO] [1712609758.415111]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712609758.415395]: -------------------\n", - "[INFO] [1712609758.415643]: SOMA.Containment \n", - "[INFO] [1712609758.415921]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712609758.416217]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.416492]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712609758.416807]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.417322]: Instances: []\n", - "[INFO] [1712609758.417606]: Direct Instances: []\n", - "[INFO] [1712609758.418017]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712609758.418288]: -------------------\n", - "[INFO] [1712609758.418531]: SOMA.IncludedObject \n", - "[INFO] [1712609758.418768]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.419030]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.419299]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712609758.419594]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.420098]: Instances: []\n", - "[INFO] [1712609758.420380]: Direct Instances: []\n", - "[INFO] [1712609758.420677]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712609758.420929]: -------------------\n", - "[INFO] [1712609758.421172]: SOMA.ContainmentState \n", - "[INFO] [1712609758.422190]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712609758.422539]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.ContainmentState, SOMA.FunctionalControl}\n", - "[INFO] [1712609758.422816]: Subclasses: []\n", - "[INFO] [1712609758.423128]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.423628]: Instances: []\n", - "[INFO] [1712609758.423924]: Direct Instances: []\n", - "[INFO] [1712609758.424225]: Inverse Restrictions: []\n", - "[INFO] [1712609758.424478]: -------------------\n", - "[INFO] [1712609758.424725]: SOMA.FunctionalControl \n", - "[INFO] [1712609758.424992]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712609758.425248]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.FunctionalControl}\n", - "[INFO] [1712609758.425532]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712609758.425839]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.426344]: Instances: []\n", - "[INFO] [1712609758.426618]: Direct Instances: []\n", - "[INFO] [1712609758.426909]: Inverse Restrictions: []\n", - "[INFO] [1712609758.427164]: -------------------\n", - "[INFO] [1712609758.427404]: SOMA.ContainmentTheory \n", - "[INFO] [1712609758.427641]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712609758.427924]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", - "[INFO] [1712609758.428187]: Subclasses: []\n", - "[INFO] [1712609758.428492]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.428981]: Instances: []\n", - "[INFO] [1712609758.429236]: Direct Instances: []\n", - "[INFO] [1712609758.429485]: Inverse Restrictions: []\n", - "[INFO] [1712609758.429735]: -------------------\n", - "[INFO] [1712609758.429975]: SOMA.ControlTheory \n", - "[INFO] [1712609758.430216]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712609758.430470]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", - "[INFO] [1712609758.430727]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712609758.431027]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.431543]: Instances: []\n", - "[INFO] [1712609758.431819]: Direct Instances: []\n", - "[INFO] [1712609758.432088]: Inverse Restrictions: []\n", - "[INFO] [1712609758.432334]: -------------------\n", - "[INFO] [1712609758.432575]: SOMA.ContinuousJoint \n", - "[INFO] [1712609758.432822]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712609758.433120]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.ContinuousJoint}\n", - "[INFO] [1712609758.433383]: Subclasses: []\n", - "[INFO] [1712609758.433678]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.434168]: Instances: []\n", - "[INFO] [1712609758.434450]: Direct Instances: []\n", - "[INFO] [1712609758.434707]: Inverse Restrictions: []\n", - "[INFO] [1712609758.434951]: -------------------\n", - "[INFO] [1712609758.435190]: SOMA.HingeJoint \n", - "[INFO] [1712609758.435425]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712609758.435683]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.435935]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712609758.436227]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.436720]: Instances: []\n", - "[INFO] [1712609758.436994]: Direct Instances: []\n", - "[INFO] [1712609758.437254]: Inverse Restrictions: []\n", - "[INFO] [1712609758.437495]: -------------------\n", - "[INFO] [1712609758.437731]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712609758.438004]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712609758.438284]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", - "[INFO] [1712609758.438706]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712609758.439030]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.439536]: Instances: []\n", - "[INFO] [1712609758.439820]: Direct Instances: []\n", - "[INFO] [1712609758.440088]: Inverse Restrictions: []\n", - "[INFO] [1712609758.440341]: -------------------\n", - "[INFO] [1712609758.440608]: SOMA.Cooktop \n", - "[INFO] [1712609758.440904]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.441302]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.441694]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", - "[INFO] [1712609758.442116]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.442773]: Instances: []\n", - "[INFO] [1712609758.443175]: Direct Instances: []\n", - "[INFO] [1712609758.443566]: Inverse Restrictions: []\n", - "[INFO] [1712609758.443935]: -------------------\n", - "[INFO] [1712609758.444296]: SOMA.Countertop \n", - "[INFO] [1712609758.444935]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.445275]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.Countertop, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.445549]: Subclasses: []\n", - "[INFO] [1712609758.445851]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.446363]: Instances: []\n", - "[INFO] [1712609758.446636]: Direct Instances: []\n", - "[INFO] [1712609758.446895]: Inverse Restrictions: []\n", - "[INFO] [1712609758.447150]: -------------------\n", - "[INFO] [1712609758.447402]: SOMA.Cover \n", - "[INFO] [1712609758.447648]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712609758.447929]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Cover, SOMA.Restrictor}\n", - "[INFO] [1712609758.448184]: Subclasses: []\n", - "[INFO] [1712609758.448489]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.449003]: Instances: []\n", - "[INFO] [1712609758.449281]: Direct Instances: []\n", - "[INFO] [1712609758.449597]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712609758.449853]: -------------------\n", - "[INFO] [1712609758.450120]: SOMA.Coverage \n", - "[INFO] [1712609758.450415]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712609758.450703]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, SOMA.Coverage, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.450960]: Subclasses: []\n", - "[INFO] [1712609758.451273]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.451800]: Instances: []\n", - "[INFO] [1712609758.452094]: Direct Instances: []\n", - "[INFO] [1712609758.452363]: Inverse Restrictions: []\n", - "[INFO] [1712609758.452614]: -------------------\n", - "[INFO] [1712609758.452863]: SOMA.CoveredObject \n", - "[INFO] [1712609758.453109]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712609758.453404]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CoveredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", - "[INFO] [1712609758.453673]: Subclasses: []\n", - "[INFO] [1712609758.453975]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.454482]: Instances: []\n", - "[INFO] [1712609758.454790]: Direct Instances: []\n", - "[INFO] [1712609758.455098]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712609758.455358]: -------------------\n", - "[INFO] [1712609758.455609]: SOMA.CoverageTheory \n", - "[INFO] [1712609758.455857]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712609758.456151]: Ancestors: {DUL.Entity, SOMA.CoverageTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", - "[INFO] [1712609758.456438]: Subclasses: []\n", - "[INFO] [1712609758.456756]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.457289]: Instances: []\n", - "[INFO] [1712609758.457615]: Direct Instances: []\n", - "[INFO] [1712609758.457892]: Inverse Restrictions: []\n", - "[INFO] [1712609758.458171]: -------------------\n", - "[INFO] [1712609758.458425]: SOMA.CoveringTheory \n", - "[INFO] [1712609758.458752]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712609758.459041]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.CoveringTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609758.459311]: Subclasses: []\n", - "[INFO] [1712609758.459625]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.460133]: Instances: []\n", - "[INFO] [1712609758.460414]: Direct Instances: []\n", - "[INFO] [1712609758.460666]: Inverse Restrictions: []\n", - "[INFO] [1712609758.460916]: -------------------\n", - "[INFO] [1712609758.461159]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712609758.461402]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712609758.461646]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609758.461897]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712609758.462206]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.462712]: Instances: []\n", - "[INFO] [1712609758.462993]: Direct Instances: []\n", - "[INFO] [1712609758.463261]: Inverse Restrictions: []\n", - "[INFO] [1712609758.463524]: -------------------\n", - "[INFO] [1712609758.463773]: SOMA.CrackingTheory \n", - "[INFO] [1712609758.464037]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712609758.464314]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.CrackingTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609758.464562]: Subclasses: []\n", - "[INFO] [1712609758.464863]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.465371]: Instances: []\n", - "[INFO] [1712609758.465642]: Direct Instances: []\n", - "[INFO] [1712609758.465895]: Inverse Restrictions: []\n", - "[INFO] [1712609758.466143]: -------------------\n", - "[INFO] [1712609758.466396]: SOMA.Creation \n", - "[INFO] [1712609758.466673]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712609758.466981]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Creation, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609758.467256]: Subclasses: []\n", - "[INFO] [1712609758.467578]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.468091]: Instances: []\n", - "[INFO] [1712609758.468380]: Direct Instances: []\n", - "[INFO] [1712609758.468643]: Inverse Restrictions: []\n", - "[INFO] [1712609758.468889]: -------------------\n", - "[INFO] [1712609758.469130]: SOMA.Tableware \n", - "[INFO] [1712609758.469368]: Super classes: [SOMA.DesignedTool]\n", - "[INFO] [1712609758.469629]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.469885]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", - "[INFO] [1712609758.470179]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.470716]: Instances: []\n", - "[INFO] [1712609758.471003]: Direct Instances: []\n", - "[INFO] [1712609758.471262]: Inverse Restrictions: []\n", - "[INFO] [1712609758.471504]: -------------------\n", - "[INFO] [1712609758.471745]: SOMA.Insertion \n", - "[INFO] [1712609758.472008]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712609758.472313]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Insertion, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.472579]: Subclasses: []\n", - "[INFO] [1712609758.472894]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.473407]: Instances: []\n", - "[INFO] [1712609758.473681]: Direct Instances: []\n", - "[INFO] [1712609758.474317]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712609758.474603]: -------------------\n", - "[INFO] [1712609758.474869]: SOMA.Cup \n", - "[INFO] [1712609758.475140]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712609758.475424]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.Cup}\n", - "[INFO] [1712609758.475688]: Subclasses: []\n", - "[INFO] [1712609758.475982]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.476476]: Instances: []\n", - "[INFO] [1712609758.476749]: Direct Instances: []\n", - "[INFO] [1712609758.477006]: Inverse Restrictions: []\n", - "[INFO] [1712609758.477259]: -------------------\n", - "[INFO] [1712609758.477506]: SOMA.DesignedHandle \n", - "[INFO] [1712609758.477776]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", - "[INFO] [1712609758.478077]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedHandle, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.478448]: Subclasses: []\n", - "[INFO] [1712609758.478812]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712609758.479336]: Instances: []\n", - "[INFO] [1712609758.479631]: Direct Instances: []\n", - "[INFO] [1712609758.480010]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", - "[INFO] [1712609758.480274]: -------------------\n", - "[INFO] [1712609758.480538]: SOMA.Cupboard \n", - "[INFO] [1712609758.480815]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", - "[INFO] [1712609758.481226]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Cupboard, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.481611]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", - "[INFO] [1712609758.482037]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.482670]: Instances: []\n", - "[INFO] [1712609758.483050]: Direct Instances: []\n", - "[INFO] [1712609758.483428]: Inverse Restrictions: []\n", - "[INFO] [1712609758.483787]: -------------------\n", - "[INFO] [1712609758.484065]: SOMA.DesignedFurniture \n", - "[INFO] [1712609758.484417]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712609758.484709]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.484981]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712609758.485289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.485804]: Instances: []\n", - "[INFO] [1712609758.486069]: Direct Instances: []\n", - "[INFO] [1712609758.486341]: Inverse Restrictions: []\n", - "[INFO] [1712609758.486608]: -------------------\n", - "[INFO] [1712609758.486860]: SOMA.Rack \n", - "[INFO] [1712609758.487118]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.487431]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Rack, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.487720]: Subclasses: []\n", - "[INFO] [1712609758.488065]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.488603]: Instances: []\n", - "[INFO] [1712609758.488897]: Direct Instances: []\n", - "[INFO] [1712609758.489187]: Inverse Restrictions: [SOMA.Cupboard]\n", - "[INFO] [1712609758.489431]: -------------------\n", - "[INFO] [1712609758.489675]: SOMA.Cutlery \n", - "[INFO] [1712609758.489922]: Super classes: [SOMA.Tableware]\n", - "[INFO] [1712609758.490204]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.490467]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", - "[INFO] [1712609758.490757]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.491328]: Instances: []\n", - "[INFO] [1712609758.491627]: Direct Instances: []\n", - "[INFO] [1712609758.491893]: Inverse Restrictions: []\n", - "[INFO] [1712609758.492139]: -------------------\n", - "[INFO] [1712609758.492381]: SOMA.Cuttability \n", - "[INFO] [1712609758.492633]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712609758.492918]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.493178]: Subclasses: []\n", - "[INFO] [1712609758.493491]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.493985]: Instances: []\n", - "[INFO] [1712609758.494254]: Direct Instances: []\n", - "[INFO] [1712609758.494515]: Inverse Restrictions: []\n", - "[INFO] [1712609758.494755]: -------------------\n", - "[INFO] [1712609758.494994]: SOMA.Tool \n", - "[INFO] [1712609758.495224]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712609758.495469]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Tool}\n", - "[INFO] [1712609758.495732]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712609758.496029]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.496531]: Instances: []\n", - "[INFO] [1712609758.496794]: Direct Instances: []\n", - "[INFO] [1712609758.497099]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712609758.497349]: -------------------\n", - "[INFO] [1712609758.497590]: SOMA.Cutting \n", - "[INFO] [1712609758.497825]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712609758.498097]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609758.498370]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712609758.498673]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.499179]: Instances: []\n", - "[INFO] [1712609758.499471]: Direct Instances: []\n", - "[INFO] [1712609758.499743]: Inverse Restrictions: []\n", - "[INFO] [1712609758.499996]: -------------------\n", - "[INFO] [1712609758.500261]: SOMA.CuttingTool \n", - "[INFO] [1712609758.500534]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", - "[INFO] [1712609758.500800]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", - "[INFO] [1712609758.501059]: Subclasses: [SOMA.Knife]\n", - "[INFO] [1712609758.501368]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712609758.501877]: Instances: []\n", - "[INFO] [1712609758.502147]: Direct Instances: []\n", - "[INFO] [1712609758.502403]: Inverse Restrictions: []\n", - "[INFO] [1712609758.502659]: -------------------\n", - "[INFO] [1712609758.502908]: SOMA.DesignedTool \n", - "[INFO] [1712609758.503149]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712609758.503399]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", - "[INFO] [1712609758.503657]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712609758.503959]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.504500]: Instances: []\n", - "[INFO] [1712609758.504790]: Direct Instances: []\n", - "[INFO] [1712609758.505064]: Inverse Restrictions: []\n", - "[INFO] [1712609758.505316]: -------------------\n", - "[INFO] [1712609758.505563]: SOMA.Shaping \n", - "[INFO] [1712609758.505854]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712609758.506166]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Shaping, SOMA.Disposition}\n", - "[INFO] [1712609758.506444]: Subclasses: []\n", - "[INFO] [1712609758.506780]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.507292]: Instances: []\n", - "[INFO] [1712609758.507575]: Direct Instances: []\n", - "[INFO] [1712609758.507866]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712609758.508112]: -------------------\n", - "[INFO] [1712609758.508352]: SOMA.Database \n", - "[INFO] [1712609758.508583]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609758.508847]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.509117]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712609758.509415]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.509911]: Instances: []\n", - "[INFO] [1712609758.510191]: Direct Instances: []\n", - "[INFO] [1712609758.510462]: Inverse Restrictions: []\n", - "[INFO] [1712609758.510712]: -------------------\n", - "[INFO] [1712609758.510955]: SOMA.SoftwareRole \n", - "[INFO] [1712609758.511217]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712609758.511486]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.511752]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712609758.512053]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.512574]: Instances: []\n", - "[INFO] [1712609758.512860]: Direct Instances: []\n", - "[INFO] [1712609758.513167]: Inverse Restrictions: []\n", - "[INFO] [1712609758.513422]: -------------------\n", - "[INFO] [1712609758.513671]: SOMA.Deciding \n", - "[INFO] [1712609758.513912]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609758.514188]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Deciding, owl.Thing}\n", - "[INFO] [1712609758.514456]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712609758.514759]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.515260]: Instances: []\n", - "[INFO] [1712609758.515538]: Direct Instances: []\n", - "[INFO] [1712609758.515798]: Inverse Restrictions: []\n", - "[INFO] [1712609758.516036]: -------------------\n", - "[INFO] [1712609758.516273]: SOMA.DerivingInformation \n", - "[INFO] [1712609758.516519]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712609758.516766]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, owl.Thing}\n", - "[INFO] [1712609758.517035]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712609758.517338]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, SOMA.isTaskOfInputRole, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.517859]: Instances: []\n", - "[INFO] [1712609758.518140]: Direct Instances: []\n", - "[INFO] [1712609758.518407]: Inverse Restrictions: []\n", - "[INFO] [1712609758.518653]: -------------------\n", - "[INFO] [1712609758.518893]: SOMA.DeductiveReasoning \n", - "[INFO] [1712609758.519133]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712609758.519409]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.DeductiveReasoning, SOMA.Reasoning}\n", - "[INFO] [1712609758.519665]: Subclasses: []\n", - "[INFO] [1712609758.519959]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.520620]: Instances: []\n", - "[INFO] [1712609758.520962]: Direct Instances: []\n", - "[INFO] [1712609758.521224]: Inverse Restrictions: []\n", - "[INFO] [1712609758.521602]: -------------------\n", - "[INFO] [1712609758.521887]: SOMA.Deformation \n", - "[INFO] [1712609758.522178]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712609758.522483]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Deformation, SOMA.ProcessType}\n", - "[INFO] [1712609758.522746]: Subclasses: []\n", - "[INFO] [1712609758.523062]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.523562]: Instances: []\n", - "[INFO] [1712609758.523843]: Direct Instances: []\n", - "[INFO] [1712609758.524101]: Inverse Restrictions: []\n", - "[INFO] [1712609758.524348]: -------------------\n", - "[INFO] [1712609758.524591]: SOMA.ShapedObject \n", - "[INFO] [1712609758.524877]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712609758.525184]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ShapedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.525459]: Subclasses: []\n", - "[INFO] [1712609758.525776]: Properties: [rdf-schema.comment, SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.526326]: Instances: []\n", - "[INFO] [1712609758.526673]: Direct Instances: []\n", - "[INFO] [1712609758.527039]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712609758.527310]: -------------------\n", - "[INFO] [1712609758.527563]: SOMA.FluidFlow \n", - "[INFO] [1712609758.527844]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712609758.528133]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.FluidFlow, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.528415]: Subclasses: []\n", - "[INFO] [1712609758.528751]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.529268]: Instances: []\n", - "[INFO] [1712609758.529575]: Direct Instances: []\n", - "[INFO] [1712609758.529847]: Inverse Restrictions: []\n", - "[INFO] [1712609758.530105]: -------------------\n", - "[INFO] [1712609758.530373]: SOMA.Shifting \n", - "[INFO] [1712609758.530658]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712609758.530941]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition, SOMA.Shifting}\n", - "[INFO] [1712609758.531197]: Subclasses: []\n", - "[INFO] [1712609758.531500]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.532016]: Instances: []\n", - "[INFO] [1712609758.532289]: Direct Instances: []\n", - "[INFO] [1712609758.532623]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712609758.532875]: -------------------\n", - "[INFO] [1712609758.533124]: SOMA.DependentPlace \n", - "[INFO] [1712609758.533378]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712609758.533651]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing, SOMA.DependentPlace}\n", - "[INFO] [1712609758.533906]: Subclasses: []\n", - "[INFO] [1712609758.534203]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.534724]: Instances: []\n", - "[INFO] [1712609758.534999]: Direct Instances: []\n", - "[INFO] [1712609758.535262]: Inverse Restrictions: []\n", - "[INFO] [1712609758.535505]: -------------------\n", - "[INFO] [1712609758.535836]: SOMA.Deposit \n", - "[INFO] [1712609758.536098]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712609758.536389]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, SOMA.Deposit, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.536648]: Subclasses: []\n", - "[INFO] [1712609758.536941]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.537440]: Instances: []\n", - "[INFO] [1712609758.537704]: Direct Instances: []\n", - "[INFO] [1712609758.537998]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712609758.538249]: -------------------\n", - "[INFO] [1712609758.538492]: SOMA.DepositedObject \n", - "[INFO] [1712609758.538731]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.539011]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.DepositedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.539263]: Subclasses: []\n", - "[INFO] [1712609758.539568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.540066]: Instances: []\n", - "[INFO] [1712609758.540361]: Direct Instances: []\n", - "[INFO] [1712609758.540688]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712609758.540963]: -------------------\n", - "[INFO] [1712609758.541219]: SOMA.InformationAcquisition \n", - "[INFO] [1712609758.541490]: Super classes: [owl.Thing]\n", - "[INFO] [1712609758.541754]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712609758.542030]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712609758.542365]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.542925]: Instances: []\n", - "[INFO] [1712609758.543226]: Direct Instances: []\n", - "[INFO] [1712609758.543541]: Inverse Restrictions: []\n", - "[INFO] [1712609758.543797]: -------------------\n", - "[INFO] [1712609758.544041]: SOMA.Premise \n", - "[INFO] [1712609758.544285]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712609758.544569]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, SOMA.Premise, DUL.Role}\n", - "[INFO] [1712609758.544848]: Subclasses: []\n", - "[INFO] [1712609758.545151]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.545651]: Instances: []\n", - "[INFO] [1712609758.545925]: Direct Instances: []\n", - "[INFO] [1712609758.546246]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609758.546499]: -------------------\n", - "[INFO] [1712609758.546738]: SOMA.FunctionalPart \n", - "[INFO] [1712609758.547393]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712609758.547687]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.547977]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712609758.548289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.548840]: Instances: []\n", - "[INFO] [1712609758.549122]: Direct Instances: []\n", - "[INFO] [1712609758.549391]: Inverse Restrictions: []\n", - "[INFO] [1712609758.549636]: -------------------\n", - "[INFO] [1712609758.549877]: SOMA.Graspability \n", - "[INFO] [1712609758.550119]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712609758.550422]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Graspability, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.550696]: Subclasses: []\n", - "[INFO] [1712609758.550988]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.551479]: Instances: []\n", - "[INFO] [1712609758.551761]: Direct Instances: []\n", - "[INFO] [1712609758.552042]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712609758.552291]: -------------------\n", - "[INFO] [1712609758.552531]: SOMA.DesignedSpade \n", - "[INFO] [1712609758.552770]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.553048]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.DesignedSpade, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.553316]: Subclasses: []\n", - "[INFO] [1712609758.553614]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.554120]: Instances: []\n", - "[INFO] [1712609758.554401]: Direct Instances: []\n", - "[INFO] [1712609758.554687]: Inverse Restrictions: [SOMA.Spatula]\n", - "[INFO] [1712609758.554932]: -------------------\n", - "[INFO] [1712609758.555173]: SOMA.DessertFork \n", - "[INFO] [1712609758.555422]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712609758.555708]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, SOMA.DessertFork, DUL.PhysicalObject, owl.Thing, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.555964]: Subclasses: []\n", - "[INFO] [1712609758.556272]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.556813]: Instances: []\n", - "[INFO] [1712609758.557092]: Direct Instances: []\n", - "[INFO] [1712609758.557368]: Inverse Restrictions: []\n", - "[INFO] [1712609758.557612]: -------------------\n", - "[INFO] [1712609758.557859]: SOMA.Fork \n", - "[INFO] [1712609758.558109]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712609758.558382]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.558646]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", - "[INFO] [1712609758.558943]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.559432]: Instances: []\n", - "[INFO] [1712609758.559703]: Direct Instances: []\n", - "[INFO] [1712609758.559958]: Inverse Restrictions: []\n", - "[INFO] [1712609758.560199]: -------------------\n", - "[INFO] [1712609758.560434]: SOMA.Destination \n", - "[INFO] [1712609758.560666]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712609758.560916]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Destination, SOMA.Location}\n", - "[INFO] [1712609758.561177]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712609758.561470]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.561971]: Instances: []\n", - "[INFO] [1712609758.562238]: Direct Instances: []\n", - "[INFO] [1712609758.562569]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712609758.562811]: -------------------\n", - "[INFO] [1712609758.563047]: SOMA.Location \n", - "[INFO] [1712609758.563291]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712609758.563543]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Location}\n", - "[INFO] [1712609758.563788]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712609758.564075]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.564585]: Instances: []\n", - "[INFO] [1712609758.564851]: Direct Instances: []\n", - "[INFO] [1712609758.565104]: Inverse Restrictions: []\n", - "[INFO] [1712609758.565342]: -------------------\n", - "[INFO] [1712609758.565577]: SOMA.DestroyedObject \n", - "[INFO] [1712609758.565814]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.566116]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.DestroyedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.566377]: Subclasses: []\n", - "[INFO] [1712609758.566673]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.567160]: Instances: []\n", - "[INFO] [1712609758.567436]: Direct Instances: []\n", - "[INFO] [1712609758.567748]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712609758.567997]: -------------------\n", - "[INFO] [1712609758.568241]: SOMA.Destruction \n", - "[INFO] [1712609758.568499]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712609758.568775]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Destruction, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609758.569026]: Subclasses: []\n", - "[INFO] [1712609758.569321]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.569808]: Instances: []\n", - "[INFO] [1712609758.570080]: Direct Instances: []\n", - "[INFO] [1712609758.570504]: Inverse Restrictions: []\n", - "[INFO] [1712609758.570820]: -------------------\n", - "[INFO] [1712609758.571100]: SOMA.DetectedObject \n", - "[INFO] [1712609758.571364]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.571667]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.DetectedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.571940]: Subclasses: []\n", - "[INFO] [1712609758.572264]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.572782]: Instances: []\n", - "[INFO] [1712609758.573048]: Direct Instances: []\n", - "[INFO] [1712609758.573297]: Inverse Restrictions: []\n", - "[INFO] [1712609758.573530]: -------------------\n", - "[INFO] [1712609758.573780]: SOMA.DeviceState \n", - "[INFO] [1712609758.574047]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609758.574335]: Ancestors: {DUL.Entity, SOMA.Intrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.DeviceState}\n", - "[INFO] [1712609758.574598]: Subclasses: []\n", - "[INFO] [1712609758.574893]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.575407]: Instances: []\n", - "[INFO] [1712609758.575686]: Direct Instances: []\n", - "[INFO] [1712609758.575943]: Inverse Restrictions: []\n", - "[INFO] [1712609758.576190]: -------------------\n", - "[INFO] [1712609758.576433]: SOMA.DeviceStateRange \n", - "[INFO] [1712609758.576681]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609758.577551]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceStateRange}\n", - "[INFO] [1712609758.577829]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712609758.578139]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.578654]: Instances: []\n", - "[INFO] [1712609758.578926]: Direct Instances: []\n", - "[INFO] [1712609758.579188]: Inverse Restrictions: []\n", - "[INFO] [1712609758.579431]: -------------------\n", - "[INFO] [1712609758.579670]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712609758.579917]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712609758.580183]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceTurnedOff, owl.Thing, SOMA.DeviceStateRange}\n", - "[INFO] [1712609758.580427]: Subclasses: []\n", - "[INFO] [1712609758.580708]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.581202]: Instances: []\n", - "[INFO] [1712609758.581466]: Direct Instances: []\n", - "[INFO] [1712609758.581747]: Inverse Restrictions: []\n", - "[INFO] [1712609758.581988]: -------------------\n", - "[INFO] [1712609758.582245]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712609758.582508]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712609758.582862]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceTurnedOn, owl.Thing, SOMA.DeviceStateRange}\n", - "[INFO] [1712609758.583192]: Subclasses: []\n", - "[INFO] [1712609758.583529]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.584050]: Instances: []\n", - "[INFO] [1712609758.584333]: Direct Instances: []\n", - "[INFO] [1712609758.584626]: Inverse Restrictions: []\n", - "[INFO] [1712609758.584888]: -------------------\n", - "[INFO] [1712609758.585137]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712609758.585374]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712609758.585621]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.585871]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712609758.586172]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.586672]: Instances: []\n", - "[INFO] [1712609758.586948]: Direct Instances: []\n", - "[INFO] [1712609758.587207]: Inverse Restrictions: []\n", - "[INFO] [1712609758.587451]: -------------------\n", - "[INFO] [1712609758.587689]: SOMA.Dicing \n", - "[INFO] [1712609758.587921]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712609758.588216]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Dicing, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609758.588477]: Subclasses: []\n", - "[INFO] [1712609758.588766]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.589253]: Instances: []\n", - "[INFO] [1712609758.589549]: Direct Instances: []\n", - "[INFO] [1712609758.589822]: Inverse Restrictions: []\n", - "[INFO] [1712609758.590078]: -------------------\n", - "[INFO] [1712609758.590328]: SOMA.DinnerPlate \n", - "[INFO] [1712609758.590570]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712609758.590861]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DinnerPlate, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609758.591132]: Subclasses: []\n", - "[INFO] [1712609758.591427]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.591918]: Instances: []\n", - "[INFO] [1712609758.592224]: Direct Instances: []\n", - "[INFO] [1712609758.592489]: Inverse Restrictions: []\n", - "[INFO] [1712609758.592730]: -------------------\n", - "[INFO] [1712609758.592968]: SOMA.DirectedMotion \n", - "[INFO] [1712609758.593200]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712609758.593444]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.593714]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712609758.594018]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.594542]: Instances: []\n", - "[INFO] [1712609758.594822]: Direct Instances: []\n", - "[INFO] [1712609758.595082]: Inverse Restrictions: []\n", - "[INFO] [1712609758.595322]: -------------------\n", - "[INFO] [1712609758.595558]: SOMA.UndirectedMotion \n", - "[INFO] [1712609758.595794]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712609758.596056]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.UndirectedMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.596321]: Subclasses: []\n", - "[INFO] [1712609758.596618]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.597110]: Instances: []\n", - "[INFO] [1712609758.597370]: Direct Instances: []\n", - "[INFO] [1712609758.597622]: Inverse Restrictions: []\n", - "[INFO] [1712609758.597869]: -------------------\n", - "[INFO] [1712609758.598107]: SOMA.Dirty \n", - "[INFO] [1712609758.598554]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712609758.598988]: Ancestors: {SOMA.Dirty, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", - "[INFO] [1712609758.599383]: Subclasses: []\n", - "[INFO] [1712609758.599721]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.600238]: Instances: []\n", - "[INFO] [1712609758.600526]: Direct Instances: []\n", - "[INFO] [1712609758.600791]: Inverse Restrictions: []\n", - "[INFO] [1712609758.601039]: -------------------\n", - "[INFO] [1712609758.601279]: SOMA.Discourse \n", - "[INFO] [1712609758.601515]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609758.601790]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Discourse}\n", - "[INFO] [1712609758.602043]: Subclasses: []\n", - "[INFO] [1712609758.602408]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.602956]: Instances: []\n", - "[INFO] [1712609758.603349]: Direct Instances: []\n", - "[INFO] [1712609758.603725]: Inverse Restrictions: []\n", - "[INFO] [1712609758.604083]: -------------------\n", - "[INFO] [1712609758.604448]: SOMA.Dishwasher \n", - "[INFO] [1712609758.604825]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", - "[INFO] [1712609758.605223]: Ancestors: {SOMA.Appliance, DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Dishwasher, owl.Thing}\n", - "[INFO] [1712609758.605608]: Subclasses: []\n", - "[INFO] [1712609758.605934]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.606442]: Instances: []\n", - "[INFO] [1712609758.606731]: Direct Instances: []\n", - "[INFO] [1712609758.606992]: Inverse Restrictions: []\n", - "[INFO] [1712609758.607765]: -------------------\n", - "[INFO] [1712609758.608083]: SOMA.DishwasherTab \n", - "[INFO] [1712609758.608371]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712609758.608697]: Ancestors: {DUL.Entity, DUL.Substance, DUL.DesignedArtifact, SOMA.DishwasherTab, DUL.PhysicalBody, DUL.PhysicalArtifact, DUL.DesignedSubstance, DUL.Object, DUL.FunctionalSubstance, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.608968]: Subclasses: []\n", - "[INFO] [1712609758.609279]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.609776]: Instances: []\n", - "[INFO] [1712609758.610057]: Direct Instances: []\n", - "[INFO] [1712609758.610322]: Inverse Restrictions: []\n", - "[INFO] [1712609758.610568]: -------------------\n", - "[INFO] [1712609758.610806]: SOMA.Dispenser \n", - "[INFO] [1712609758.611039]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712609758.611305]: Ancestors: {DUL.Entity, SOMA.Dispenser, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.611574]: Subclasses: [SOMA.SugarDispenser]\n", - "[INFO] [1712609758.611899]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.612399]: Instances: []\n", - "[INFO] [1712609758.612662]: Direct Instances: []\n", - "[INFO] [1712609758.612910]: Inverse Restrictions: []\n", - "[INFO] [1712609758.613158]: -------------------\n", - "[INFO] [1712609758.613400]: SOMA.Distancing \n", - "[INFO] [1712609758.613639]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712609758.613904]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing, SOMA.Distancing}\n", - "[INFO] [1712609758.614147]: Subclasses: []\n", - "[INFO] [1712609758.614467]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.614968]: Instances: []\n", - "[INFO] [1712609758.615239]: Direct Instances: []\n", - "[INFO] [1712609758.615496]: Inverse Restrictions: []\n", - "[INFO] [1712609758.615746]: -------------------\n", - "[INFO] [1712609758.615998]: SOMA.Door \n", - "[INFO] [1712609758.616241]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.616508]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Door, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.616753]: Subclasses: []\n", - "[INFO] [1712609758.617049]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.617537]: Instances: []\n", - "[INFO] [1712609758.617795]: Direct Instances: []\n", - "[INFO] [1712609758.618074]: Inverse Restrictions: [SOMA.Refrigerator]\n", - "[INFO] [1712609758.618335]: -------------------\n", - "[INFO] [1712609758.618578]: SOMA.Drawer \n", - "[INFO] [1712609758.618816]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", - "[INFO] [1712609758.619088]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Drawer, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.619335]: Subclasses: []\n", - "[INFO] [1712609758.619632]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.620118]: Instances: []\n", - "[INFO] [1712609758.620374]: Direct Instances: []\n", - "[INFO] [1712609758.620628]: Inverse Restrictions: []\n", - "[INFO] [1712609758.620870]: -------------------\n", - "[INFO] [1712609758.621107]: SOMA.Dreaming \n", - "[INFO] [1712609758.621338]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609758.621589]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Dreaming, owl.Thing}\n", - "[INFO] [1712609758.621846]: Subclasses: []\n", - "[INFO] [1712609758.622143]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.622642]: Instances: []\n", - "[INFO] [1712609758.622913]: Direct Instances: []\n", - "[INFO] [1712609758.623169]: Inverse Restrictions: []\n", - "[INFO] [1712609758.623421]: -------------------\n", - "[INFO] [1712609758.623680]: SOMA.Driving \n", - "[INFO] [1712609758.623930]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609758.624203]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Driving, SOMA.Locomotion, DUL.EventType, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.624455]: Subclasses: []\n", - "[INFO] [1712609758.624761]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.625244]: Instances: []\n", - "[INFO] [1712609758.625501]: Direct Instances: []\n", - "[INFO] [1712609758.625748]: Inverse Restrictions: []\n", - "[INFO] [1712609758.625978]: -------------------\n", - "[INFO] [1712609758.626296]: SOMA.Flying \n", - "[INFO] [1712609758.626601]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609758.626910]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Flying, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.627188]: Subclasses: []\n", - "[INFO] [1712609758.627509]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.628016]: Instances: []\n", - "[INFO] [1712609758.628283]: Direct Instances: []\n", - "[INFO] [1712609758.628545]: Inverse Restrictions: []\n", - "[INFO] [1712609758.628782]: -------------------\n", - "[INFO] [1712609758.629016]: SOMA.Swimming \n", - "[INFO] [1712609758.629262]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609758.629536]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType, SOMA.Swimming}\n", - "[INFO] [1712609758.629782]: Subclasses: []\n", - "[INFO] [1712609758.630080]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.630600]: Instances: []\n", - "[INFO] [1712609758.630976]: Direct Instances: []\n", - "[INFO] [1712609758.631271]: Inverse Restrictions: []\n", - "[INFO] [1712609758.631537]: -------------------\n", - "[INFO] [1712609758.631924]: SOMA.Walking \n", - "[INFO] [1712609758.632231]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609758.632538]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Walking, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.632810]: Subclasses: []\n", - "[INFO] [1712609758.633119]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.633626]: Instances: []\n", - "[INFO] [1712609758.633910]: Direct Instances: []\n", - "[INFO] [1712609758.634182]: Inverse Restrictions: []\n", - "[INFO] [1712609758.634429]: -------------------\n", - "[INFO] [1712609758.634672]: SOMA.Dropping \n", - "[INFO] [1712609758.634909]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.635191]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Dropping, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609758.635452]: Subclasses: []\n", - "[INFO] [1712609758.635751]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.636242]: Instances: []\n", - "[INFO] [1712609758.636501]: Direct Instances: []\n", - "[INFO] [1712609758.636769]: Inverse Restrictions: []\n", - "[INFO] [1712609758.637012]: -------------------\n", - "[INFO] [1712609758.637246]: SOMA.Placing \n", - "[INFO] [1712609758.637477]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609758.637739]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Placing, owl.Thing}\n", - "[INFO] [1712609758.638004]: Subclasses: []\n", - "[INFO] [1712609758.638305]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.638807]: Instances: [SOMA.placing]\n", - "[INFO] [1712609758.639072]: Direct Instances: [SOMA.placing]\n", - "[INFO] [1712609758.639326]: Inverse Restrictions: []\n", - "[INFO] [1712609758.639579]: -------------------\n", - "[INFO] [1712609758.639835]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712609758.640145]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712609758.640459]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.ESTSchemaTheory, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609758.640708]: Subclasses: []\n", - "[INFO] [1712609758.641013]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.641515]: Instances: []\n", - "[INFO] [1712609758.641793]: Direct Instances: []\n", - "[INFO] [1712609758.642050]: Inverse Restrictions: []\n", - "[INFO] [1712609758.642311]: -------------------\n", - "[INFO] [1712609758.642551]: SOMA.ExistingObjectRole \n", - "[INFO] [1712609758.642790]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609758.643070]: Ancestors: {SOMA.ExistingObjectRole, DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.643307]: Subclasses: []\n", - "[INFO] [1712609758.643603]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.644097]: Instances: []\n", - "[INFO] [1712609758.644366]: Direct Instances: []\n", - "[INFO] [1712609758.644663]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712609758.644897]: -------------------\n", - "[INFO] [1712609758.645132]: SOMA.Effort \n", - "[INFO] [1712609758.645370]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712609758.645642]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Parameter, owl.Thing, SOMA.Effort}\n", - "[INFO] [1712609758.646078]: Subclasses: []\n", - "[INFO] [1712609758.646495]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.647053]: Instances: []\n", - "[INFO] [1712609758.647378]: Direct Instances: []\n", - "[INFO] [1712609758.647658]: Inverse Restrictions: []\n", - "[INFO] [1712609758.647910]: -------------------\n", - "[INFO] [1712609758.648162]: SOMA.EnclosedObject \n", - "[INFO] [1712609758.648405]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712609758.648695]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.648983]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712609758.649291]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.649794]: Instances: []\n", - "[INFO] [1712609758.650083]: Direct Instances: []\n", - "[INFO] [1712609758.650409]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712609758.650657]: -------------------\n", - "[INFO] [1712609758.650892]: SOMA.Enclosing \n", - "[INFO] [1712609758.651135]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712609758.651387]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.651656]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712609758.651957]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.652444]: Instances: []\n", - "[INFO] [1712609758.652724]: Direct Instances: []\n", - "[INFO] [1712609758.652985]: Inverse Restrictions: []\n", - "[INFO] [1712609758.653220]: -------------------\n", - "[INFO] [1712609758.653451]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712609758.653684]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609758.653974]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712609758.654249]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712609758.654552]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.655045]: Instances: []\n", - "[INFO] [1712609758.655328]: Direct Instances: []\n", - "[INFO] [1712609758.655592]: Inverse Restrictions: []\n", - "[INFO] [1712609758.655828]: -------------------\n", - "[INFO] [1712609758.656062]: SOMA.Manipulating \n", - "[INFO] [1712609758.656323]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712609758.656567]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609758.656843]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712609758.657144]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.657655]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712609758.657936]: Direct Instances: []\n", - "[INFO] [1712609758.658209]: Inverse Restrictions: []\n", - "[INFO] [1712609758.658445]: -------------------\n", - "[INFO] [1712609758.658754]: SOMA.Episode \n", - "[INFO] [1712609758.659032]: Super classes: [DUL.Situation]\n", - "[INFO] [1712609758.659327]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing}\n", - "[INFO] [1712609758.659610]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712609758.659925]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.660434]: Instances: []\n", - "[INFO] [1712609758.660714]: Direct Instances: []\n", - "[INFO] [1712609758.660972]: Inverse Restrictions: []\n", - "[INFO] [1712609758.661207]: -------------------\n", - "[INFO] [1712609758.661443]: SOMA.ExcludedObject \n", - "[INFO] [1712609758.661673]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.661958]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExcludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.662231]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712609758.662530]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.663023]: Instances: []\n", - "[INFO] [1712609758.663307]: Direct Instances: []\n", - "[INFO] [1712609758.663630]: Inverse Restrictions: []\n", - "[INFO] [1712609758.663956]: -------------------\n", - "[INFO] [1712609758.664192]: SOMA.ExecutableFile \n", - "[INFO] [1712609758.664427]: Super classes: [owl.Thing]\n", - "[INFO] [1712609758.665651]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", - "[INFO] [1712609758.665939]: Subclasses: []\n", - "[INFO] [1712609758.666258]: Properties: [rdf-schema.comment, DUL.realizes, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.666757]: Instances: []\n", - "[INFO] [1712609758.667024]: Direct Instances: []\n", - "[INFO] [1712609758.668077]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712609758.668351]: -------------------\n", - "[INFO] [1712609758.668601]: SOMA.Executable_Code \n", - "[INFO] [1712609758.668844]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712609758.670061]: Ancestors: {SOMA.Computer_Program, owl.Thing, SOMA.Executable_Code}\n", - "[INFO] [1712609758.670357]: Subclasses: []\n", - "[INFO] [1712609758.670687]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.671227]: Instances: []\n", - "[INFO] [1712609758.671513]: Direct Instances: []\n", - "[INFO] [1712609758.671880]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712609758.672148]: -------------------\n", - "[INFO] [1712609758.672392]: SOMA.ExecutableFormat \n", - "[INFO] [1712609758.672633]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712609758.672917]: Ancestors: {DUL.Entity, SOMA.ExecutableFormat, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.673186]: Subclasses: []\n", - "[INFO] [1712609758.673491]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.673985]: Instances: []\n", - "[INFO] [1712609758.674263]: Direct Instances: []\n", - "[INFO] [1712609758.674682]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712609758.674949]: -------------------\n", - "[INFO] [1712609758.675194]: SOMA.SchematicTheory \n", - "[INFO] [1712609758.675428]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712609758.675686]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609758.675946]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712609758.676254]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.676772]: Instances: []\n", - "[INFO] [1712609758.677040]: Direct Instances: []\n", - "[INFO] [1712609758.677306]: Inverse Restrictions: []\n", - "[INFO] [1712609758.677542]: -------------------\n", - "[INFO] [1712609758.677773]: SOMA.ExecutableSoftware \n", - "[INFO] [1712609758.678004]: Super classes: [owl.Thing]\n", - "[INFO] [1712609758.678493]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", - "[INFO] [1712609758.678782]: Subclasses: []\n", - "[INFO] [1712609758.679093]: Properties: [rdf-schema.comment, DUL.hasMember, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.679588]: Instances: []\n", - "[INFO] [1712609758.679851]: Direct Instances: []\n", - "[INFO] [1712609758.680099]: Inverse Restrictions: []\n", - "[INFO] [1712609758.680342]: -------------------\n", - "[INFO] [1712609758.680578]: SOMA.Software \n", - "[INFO] [1712609758.680847]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712609758.681123]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.Software}\n", - "[INFO] [1712609758.681373]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712609758.681681]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.describes]\n", - "[INFO] [1712609758.682178]: Instances: []\n", - "[INFO] [1712609758.682450]: Direct Instances: []\n", - "[INFO] [1712609758.682842]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609758.683107]: -------------------\n", - "[INFO] [1712609758.683350]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712609758.683589]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712609758.683830]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.684093]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712609758.684381]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.684888]: Instances: []\n", - "[INFO] [1712609758.685158]: Direct Instances: []\n", - "[INFO] [1712609758.685420]: Inverse Restrictions: []\n", - "[INFO] [1712609758.685653]: -------------------\n", - "[INFO] [1712609758.685884]: SOMA.ExperiencerRole \n", - "[INFO] [1712609758.686128]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712609758.686383]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExperiencerRole, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", - "[INFO] [1712609758.686640]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712609758.686928]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.687406]: Instances: []\n", - "[INFO] [1712609758.687678]: Direct Instances: []\n", - "[INFO] [1712609758.687935]: Inverse Restrictions: []\n", - "[INFO] [1712609758.688177]: -------------------\n", - "[INFO] [1712609758.688408]: SOMA.ExtractedObject \n", - "[INFO] [1712609758.688638]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.688920]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ExtractedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.689171]: Subclasses: []\n", - "[INFO] [1712609758.689461]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.689947]: Instances: []\n", - "[INFO] [1712609758.690316]: Direct Instances: []\n", - "[INFO] [1712609758.690590]: Inverse Restrictions: []\n", - "[INFO] [1712609758.690835]: -------------------\n", - "[INFO] [1712609758.691172]: SOMA.PhysicalQuality \n", - "[INFO] [1712609758.691445]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712609758.691718]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", - "[INFO] [1712609758.691994]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712609758.692307]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isQualityOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.692895]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712609758.693190]: Direct Instances: []\n", - "[INFO] [1712609758.693463]: Inverse Restrictions: []\n", - "[INFO] [1712609758.693709]: -------------------\n", - "[INFO] [1712609758.693947]: SOMA.FailedAttempt \n", - "[INFO] [1712609758.694189]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712609758.694509]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.FailedAttempt, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.694770]: Subclasses: []\n", - "[INFO] [1712609758.695072]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.695558]: Instances: []\n", - "[INFO] [1712609758.695840]: Direct Instances: []\n", - "[INFO] [1712609758.696093]: Inverse Restrictions: []\n", - "[INFO] [1712609758.696329]: -------------------\n", - "[INFO] [1712609758.696557]: SOMA.FaultySoftware \n", - "[INFO] [1712609758.696782]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712609758.697072]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, SOMA.FaultySoftware, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609758.697334]: Subclasses: []\n", - "[INFO] [1712609758.697639]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.698137]: Instances: []\n", - "[INFO] [1712609758.698476]: Direct Instances: []\n", - "[INFO] [1712609758.698761]: Inverse Restrictions: []\n", - "[INFO] [1712609758.699011]: -------------------\n", - "[INFO] [1712609758.699248]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712609758.699491]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712609758.699813]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609758.700101]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712609758.700421]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.700936]: Instances: []\n", - "[INFO] [1712609758.701217]: Direct Instances: []\n", - "[INFO] [1712609758.701486]: Inverse Restrictions: []\n", - "[INFO] [1712609758.701737]: -------------------\n", - "[INFO] [1712609758.701977]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712609758.702233]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712609758.702501]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PhysicalAcquiring, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609758.702769]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712609758.703089]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.703625]: Instances: []\n", - "[INFO] [1712609758.703931]: Direct Instances: []\n", - "[INFO] [1712609758.704204]: Inverse Restrictions: []\n", - "[INFO] [1712609758.704456]: -------------------\n", - "[INFO] [1712609758.704723]: SOMA.Finger \n", - "[INFO] [1712609758.705009]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712609758.705301]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, SOMA.Finger, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.705579]: Subclasses: []\n", - "[INFO] [1712609758.705909]: Properties: [rdf-schema.comment, DUL.isPartOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.706510]: Instances: []\n", - "[INFO] [1712609758.706816]: Direct Instances: []\n", - "[INFO] [1712609758.707071]: Inverse Restrictions: []\n", - "[INFO] [1712609758.707322]: -------------------\n", - "[INFO] [1712609758.707572]: SOMA.Hand \n", - "[INFO] [1712609758.707819]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712609758.708112]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.Hand, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.708356]: Subclasses: []\n", - "[INFO] [1712609758.708646]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.709152]: Instances: []\n", - "[INFO] [1712609758.709427]: Direct Instances: []\n", - "[INFO] [1712609758.709731]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712609758.709971]: -------------------\n", - "[INFO] [1712609758.710208]: SOMA.FixedJoint \n", - "[INFO] [1712609758.710484]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712609758.710788]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, SOMA.FixedJoint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.711046]: Subclasses: []\n", - "[INFO] [1712609758.711440]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.711982]: Instances: []\n", - "[INFO] [1712609758.712268]: Direct Instances: []\n", - "[INFO] [1712609758.712574]: Inverse Restrictions: []\n", - "[INFO] [1712609758.712822]: -------------------\n", - "[INFO] [1712609758.713061]: SOMA.MovableJoint \n", - "[INFO] [1712609758.713304]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712609758.713567]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.713842]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712609758.714146]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointState]\n", - "[INFO] [1712609758.714654]: Instances: []\n", - "[INFO] [1712609758.714940]: Direct Instances: []\n", - "[INFO] [1712609758.715255]: Inverse Restrictions: []\n", - "[INFO] [1712609758.715500]: -------------------\n", - "[INFO] [1712609758.715740]: SOMA.Flipping \n", - "[INFO] [1712609758.715981]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712609758.716277]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Flipping, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609758.716530]: Subclasses: []\n", - "[INFO] [1712609758.716851]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.717341]: Instances: []\n", - "[INFO] [1712609758.717623]: Direct Instances: []\n", - "[INFO] [1712609758.717880]: Inverse Restrictions: []\n", - "[INFO] [1712609758.718119]: -------------------\n", - "[INFO] [1712609758.718358]: SOMA.FloatingJoint \n", - "[INFO] [1712609758.718598]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712609758.718887]: Ancestors: {DUL.Entity, SOMA.FloatingJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.719148]: Subclasses: []\n", - "[INFO] [1712609758.719459]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.719977]: Instances: []\n", - "[INFO] [1712609758.720259]: Direct Instances: []\n", - "[INFO] [1712609758.720524]: Inverse Restrictions: []\n", - "[INFO] [1712609758.720761]: -------------------\n", - "[INFO] [1712609758.720994]: SOMA.Fluid \n", - "[INFO] [1712609758.721227]: Super classes: [DUL.Substance]\n", - "[INFO] [1712609758.721507]: Ancestors: {DUL.Entity, DUL.Substance, SOMA.Fluid, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609758.721950]: Subclasses: []\n", - "[INFO] [1712609758.722282]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.722779]: Instances: []\n", - "[INFO] [1712609758.723042]: Direct Instances: []\n", - "[INFO] [1712609758.723304]: Inverse Restrictions: []\n", - "[INFO] [1712609758.723548]: -------------------\n", - "[INFO] [1712609758.723784]: SOMA.MovedObject \n", - "[INFO] [1712609758.724063]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712609758.724371]: Ancestors: {SOMA.MovedObject, DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.724643]: Subclasses: []\n", - "[INFO] [1712609758.724958]: Properties: [rdf-schema.comment, SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.725446]: Instances: []\n", - "[INFO] [1712609758.725725]: Direct Instances: []\n", - "[INFO] [1712609758.726516]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712609758.726776]: -------------------\n", - "[INFO] [1712609758.727013]: SOMA.Focusing \n", - "[INFO] [1712609758.727248]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712609758.727540]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.AttentionShift, owl.Thing, SOMA.MentalTask, SOMA.Focusing}\n", - "[INFO] [1712609758.727803]: Subclasses: []\n", - "[INFO] [1712609758.728097]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.728580]: Instances: []\n", - "[INFO] [1712609758.728859]: Direct Instances: []\n", - "[INFO] [1712609758.729117]: Inverse Restrictions: []\n", - "[INFO] [1712609758.729354]: -------------------\n", - "[INFO] [1712609758.729584]: SOMA.Foolishness \n", - "[INFO] [1712609758.729823]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712609758.730099]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, SOMA.Foolishness, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.730359]: Subclasses: []\n", - "[INFO] [1712609758.730646]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.731134]: Instances: []\n", - "[INFO] [1712609758.731405]: Direct Instances: []\n", - "[INFO] [1712609758.731657]: Inverse Restrictions: []\n", - "[INFO] [1712609758.731892]: -------------------\n", - "[INFO] [1712609758.732126]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712609758.732356]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712609758.732638]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, SOMA.ForgettingIncorrectInformation, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609758.732896]: Subclasses: []\n", - "[INFO] [1712609758.733193]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.733678]: Instances: []\n", - "[INFO] [1712609758.733926]: Direct Instances: []\n", - "[INFO] [1712609758.734241]: Inverse Restrictions: []\n", - "[INFO] [1712609758.734566]: -------------------\n", - "[INFO] [1712609758.734844]: SOMA.InformationDismissal \n", - "[INFO] [1712609758.735158]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712609758.735435]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609758.735699]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712609758.735998]: Properties: [rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.736498]: Instances: []\n", - "[INFO] [1712609758.736772]: Direct Instances: []\n", - "[INFO] [1712609758.737034]: Inverse Restrictions: []\n", - "[INFO] [1712609758.737270]: -------------------\n", - "[INFO] [1712609758.737506]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712609758.737735]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712609758.738000]: Ancestors: {SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609758.738264]: Subclasses: []\n", - "[INFO] [1712609758.738561]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.739053]: Instances: []\n", - "[INFO] [1712609758.739307]: Direct Instances: []\n", - "[INFO] [1712609758.739567]: Inverse Restrictions: []\n", - "[INFO] [1712609758.739808]: -------------------\n", - "[INFO] [1712609758.740044]: SOMA.Language \n", - "[INFO] [1712609758.740298]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712609758.740541]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.740790]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712609758.741093]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.741617]: Instances: []\n", - "[INFO] [1712609758.741872]: Direct Instances: []\n", - "[INFO] [1712609758.742930]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712609758.743212]: -------------------\n", - "[INFO] [1712609758.743476]: SOMA.FreezerCompartment \n", - "[INFO] [1712609758.743802]: Super classes: [SOMA.Compartment]\n", - "[INFO] [1712609758.744108]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.FreezerCompartment, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart, SOMA.Compartment}\n", - "[INFO] [1712609758.744390]: Subclasses: []\n", - "[INFO] [1712609758.744695]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.745195]: Instances: []\n", - "[INFO] [1712609758.745454]: Direct Instances: []\n", - "[INFO] [1712609758.745700]: Inverse Restrictions: []\n", - "[INFO] [1712609758.745934]: -------------------\n", - "[INFO] [1712609758.746203]: SOMA.Item \n", - "[INFO] [1712609758.746458]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609758.746703]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.746960]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712609758.747290]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.747839]: Instances: []\n", - "[INFO] [1712609758.748109]: Direct Instances: []\n", - "[INFO] [1712609758.748470]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712609758.748733]: -------------------\n", - "[INFO] [1712609758.748977]: SOMA.FunctionalDesign \n", - "[INFO] [1712609758.749215]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712609758.749474]: Ancestors: {DUL.Entity, SOMA.FunctionalDesign, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609758.749718]: Subclasses: []\n", - "[INFO] [1712609758.750004]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.750609]: Instances: []\n", - "[INFO] [1712609758.750978]: Direct Instances: []\n", - "[INFO] [1712609758.751273]: Inverse Restrictions: []\n", - "[INFO] [1712609758.751538]: -------------------\n", - "[INFO] [1712609758.751792]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712609758.752036]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712609758.752287]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609758.752558]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712609758.752861]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.753364]: Instances: []\n", - "[INFO] [1712609758.753645]: Direct Instances: []\n", - "[INFO] [1712609758.753905]: Inverse Restrictions: []\n", - "[INFO] [1712609758.754144]: -------------------\n", - "[INFO] [1712609758.754377]: SOMA.LocatumRole \n", - "[INFO] [1712609758.754613]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609758.754900]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.LocatumRole, SOMA.SpatialRelationRole}\n", - "[INFO] [1712609758.755152]: Subclasses: []\n", - "[INFO] [1712609758.755464]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.755955]: Instances: []\n", - "[INFO] [1712609758.756227]: Direct Instances: []\n", - "[INFO] [1712609758.756564]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712609758.756812]: -------------------\n", - "[INFO] [1712609758.757053]: SOMA.RelatumRole \n", - "[INFO] [1712609758.757349]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609758.757656]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, SOMA.RelatumRole, owl.Thing, DUL.Role, SOMA.SpatialRelationRole}\n", - "[INFO] [1712609758.757920]: Subclasses: []\n", - "[INFO] [1712609758.758225]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.758721]: Instances: []\n", - "[INFO] [1712609758.758980]: Direct Instances: []\n", - "[INFO] [1712609758.759313]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712609758.759564]: -------------------\n", - "[INFO] [1712609758.759802]: SOMA.GasCooktop \n", - "[INFO] [1712609758.760039]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712609758.760308]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.GasCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.760570]: Subclasses: []\n", - "[INFO] [1712609758.760863]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.761354]: Instances: []\n", - "[INFO] [1712609758.761609]: Direct Instances: []\n", - "[INFO] [1712609758.761856]: Inverse Restrictions: []\n", - "[INFO] [1712609758.762090]: -------------------\n", - "[INFO] [1712609758.762343]: SOMA.GetTaskParameter \n", - "[INFO] [1712609758.762585]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712609758.762855]: Ancestors: {SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712609758.763122]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712609758.763422]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.763978]: Instances: []\n", - "[INFO] [1712609758.764257]: Direct Instances: []\n", - "[INFO] [1712609758.764520]: Inverse Restrictions: []\n", - "[INFO] [1712609758.764771]: -------------------\n", - "[INFO] [1712609758.765256]: SOMA.Planning \n", - "[INFO] [1712609758.766137]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712609758.766660]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712609758.767171]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712609758.767709]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.768441]: Instances: []\n", - "[INFO] [1712609758.768950]: Direct Instances: []\n", - "[INFO] [1712609758.769444]: Inverse Restrictions: []\n", - "[INFO] [1712609758.769860]: -------------------\n", - "[INFO] [1712609758.770210]: SOMA.Glass \n", - "[INFO] [1712609758.770556]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712609758.770924]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool, SOMA.Glass}\n", - "[INFO] [1712609758.771292]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", - "[INFO] [1712609758.771679]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.772266]: Instances: []\n", - "[INFO] [1712609758.772612]: Direct Instances: []\n", - "[INFO] [1712609758.772949]: Inverse Restrictions: []\n", - "[INFO] [1712609758.773292]: -------------------\n", - "[INFO] [1712609758.773623]: SOMA.GraphDatabase \n", - "[INFO] [1712609758.773984]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712609758.774361]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.774704]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712609758.775095]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.775680]: Instances: []\n", - "[INFO] [1712609758.776028]: Direct Instances: []\n", - "[INFO] [1712609758.776371]: Inverse Restrictions: []\n", - "[INFO] [1712609758.776706]: -------------------\n", - "[INFO] [1712609758.777040]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712609758.777369]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712609758.777730]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.GraphQueryLanguage, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.778059]: Subclasses: []\n", - "[INFO] [1712609758.778447]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.779026]: Instances: []\n", - "[INFO] [1712609758.779371]: Direct Instances: []\n", - "[INFO] [1712609758.779701]: Inverse Restrictions: []\n", - "[INFO] [1712609758.780016]: -------------------\n", - "[INFO] [1712609758.780339]: SOMA.QueryLanguage \n", - "[INFO] [1712609758.780670]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609758.781003]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.781343]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712609758.781729]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.782312]: Instances: []\n", - "[INFO] [1712609758.782662]: Direct Instances: []\n", - "[INFO] [1712609758.783002]: Inverse Restrictions: []\n", - "[INFO] [1712609758.783334]: -------------------\n", - "[INFO] [1712609758.783659]: SOMA.GraspTransfer \n", - "[INFO] [1712609758.783986]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712609758.784346]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.GraspTransfer, DUL.SocialObject, SOMA.Grasping, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609758.784696]: Subclasses: []\n", - "[INFO] [1712609758.785081]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.785662]: Instances: []\n", - "[INFO] [1712609758.786027]: Direct Instances: []\n", - "[INFO] [1712609758.786368]: Inverse Restrictions: []\n", - "[INFO] [1712609758.786702]: -------------------\n", - "[INFO] [1712609758.787027]: SOMA.Grasping \n", - "[INFO] [1712609758.787344]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609758.787667]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, SOMA.Grasping, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609758.787995]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712609758.788374]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.788974]: Instances: []\n", - "[INFO] [1712609758.789333]: Direct Instances: []\n", - "[INFO] [1712609758.789667]: Inverse Restrictions: []\n", - "[INFO] [1712609758.789986]: -------------------\n", - "[INFO] [1712609758.790319]: SOMA.Releasing \n", - "[INFO] [1712609758.790704]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609758.791070]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Releasing, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609758.791408]: Subclasses: []\n", - "[INFO] [1712609758.791785]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.792370]: Instances: []\n", - "[INFO] [1712609758.792721]: Direct Instances: []\n", - "[INFO] [1712609758.793056]: Inverse Restrictions: []\n", - "[INFO] [1712609758.793374]: -------------------\n", - "[INFO] [1712609758.793693]: SOMA.GraspingMotion \n", - "[INFO] [1712609758.794018]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712609758.795556]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.795940]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712609758.796350]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.796936]: Instances: []\n", - "[INFO] [1712609758.797287]: Direct Instances: []\n", - "[INFO] [1712609758.797677]: Inverse Restrictions: []\n", - "[INFO] [1712609758.798010]: -------------------\n", - "[INFO] [1712609758.798374]: SOMA.IntermediateGrasp \n", - "[INFO] [1712609758.798742]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712609758.799129]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.IntermediateGrasp, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.799504]: Subclasses: []\n", - "[INFO] [1712609758.799932]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.800539]: Instances: []\n", - "[INFO] [1712609758.800915]: Direct Instances: []\n", - "[INFO] [1712609758.801326]: Inverse Restrictions: []\n", - "[INFO] [1712609758.801691]: -------------------\n", - "[INFO] [1712609758.801958]: SOMA.PowerGrasp \n", - "[INFO] [1712609758.802207]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712609758.802478]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PowerGrasp, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.802742]: Subclasses: []\n", - "[INFO] [1712609758.803045]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.803530]: Instances: []\n", - "[INFO] [1712609758.803785]: Direct Instances: []\n", - "[INFO] [1712609758.804078]: Inverse Restrictions: []\n", - "[INFO] [1712609758.804324]: -------------------\n", - "[INFO] [1712609758.804562]: SOMA.PrecisionGrasp \n", - "[INFO] [1712609758.804798]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712609758.805184]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PrecisionGrasp, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.805531]: Subclasses: []\n", - "[INFO] [1712609758.805915]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.806491]: Instances: []\n", - "[INFO] [1712609758.806832]: Direct Instances: []\n", - "[INFO] [1712609758.807208]: Inverse Restrictions: []\n", - "[INFO] [1712609758.807586]: -------------------\n", - "[INFO] [1712609758.807937]: SOMA.PrehensileMotion \n", - "[INFO] [1712609758.808673]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712609758.809032]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.809382]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712609758.809775]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.810361]: Instances: []\n", - "[INFO] [1712609758.810726]: Direct Instances: []\n", - "[INFO] [1712609758.811075]: Inverse Restrictions: []\n", - "[INFO] [1712609758.811404]: -------------------\n", - "[INFO] [1712609758.811725]: SOMA.ReleasingMotion \n", - "[INFO] [1712609758.812041]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712609758.812402]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, SOMA.ReleasingMotion, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.812740]: Subclasses: []\n", - "[INFO] [1712609758.813116]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.813693]: Instances: []\n", - "[INFO] [1712609758.814052]: Direct Instances: []\n", - "[INFO] [1712609758.814435]: Inverse Restrictions: []\n", - "[INFO] [1712609758.814767]: -------------------\n", - "[INFO] [1712609758.815088]: SOMA.GreenColor \n", - "[INFO] [1712609758.815398]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712609758.815753]: Ancestors: {DUL.Entity, SOMA.GreenColor, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609758.816083]: Subclasses: []\n", - "[INFO] [1712609758.816447]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.817014]: Instances: []\n", - "[INFO] [1712609758.817366]: Direct Instances: []\n", - "[INFO] [1712609758.817702]: Inverse Restrictions: []\n", - "[INFO] [1712609758.818020]: -------------------\n", - "[INFO] [1712609758.818330]: SOMA.Gripper \n", - "[INFO] [1712609758.818600]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712609758.818878]: Ancestors: {DUL.Entity, SOMA.Gripper, DUL.PhysicalBody, DUL.Object, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.819141]: Subclasses: []\n", - "[INFO] [1712609758.819427]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.819908]: Instances: []\n", - "[INFO] [1712609758.820159]: Direct Instances: []\n", - "[INFO] [1712609758.820404]: Inverse Restrictions: []\n", - "[INFO] [1712609758.820652]: -------------------\n", - "[INFO] [1712609758.820887]: SOMA.PrehensileEffector \n", - "[INFO] [1712609758.821119]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712609758.821359]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.821603]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712609758.821888]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.822394]: Instances: []\n", - "[INFO] [1712609758.822661]: Direct Instances: []\n", - "[INFO] [1712609758.822988]: Inverse Restrictions: []\n", - "[INFO] [1712609758.823239]: -------------------\n", - "[INFO] [1712609758.823477]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712609758.823710]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712609758.824018]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.TechnicalDiagnosis, owl.Thing, SOMA.HardwareDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.824299]: Subclasses: []\n", - "[INFO] [1712609758.824600]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.825092]: Instances: []\n", - "[INFO] [1712609758.825350]: Direct Instances: []\n", - "[INFO] [1712609758.825597]: Inverse Restrictions: []\n", - "[INFO] [1712609758.825845]: -------------------\n", - "[INFO] [1712609758.826081]: SOMA.HasQualityRegion \n", - "[INFO] [1712609758.826565]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712609758.826988]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing, SOMA.HasQualityRegion}\n", - "[INFO] [1712609758.827387]: Subclasses: []\n", - "[INFO] [1712609758.827828]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasQuality, DUL.hasRegion]\n", - "[INFO] [1712609758.828441]: Instances: []\n", - "[INFO] [1712609758.828731]: Direct Instances: []\n", - "[INFO] [1712609758.828993]: Inverse Restrictions: []\n", - "[INFO] [1712609758.829333]: -------------------\n", - "[INFO] [1712609758.829608]: SOMA.Head \n", - "[INFO] [1712609758.829859]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712609758.830135]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.Head, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.830387]: Subclasses: []\n", - "[INFO] [1712609758.830681]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.831183]: Instances: []\n", - "[INFO] [1712609758.831448]: Direct Instances: []\n", - "[INFO] [1712609758.831697]: Inverse Restrictions: []\n", - "[INFO] [1712609758.831934]: -------------------\n", - "[INFO] [1712609758.832163]: SOMA.HeadMovement \n", - "[INFO] [1712609758.832407]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712609758.832674]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.HeadMovement, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.832923]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712609758.833205]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.833719]: Instances: []\n", - "[INFO] [1712609758.833987]: Direct Instances: []\n", - "[INFO] [1712609758.834247]: Inverse Restrictions: []\n", - "[INFO] [1712609758.834486]: -------------------\n", - "[INFO] [1712609758.834716]: SOMA.HeadTurning \n", - "[INFO] [1712609758.834949]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712609758.835227]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.HeadTurning, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.HeadMovement, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.835476]: Subclasses: []\n", - "[INFO] [1712609758.835758]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.836245]: Instances: []\n", - "[INFO] [1712609758.836513]: Direct Instances: []\n", - "[INFO] [1712609758.836765]: Inverse Restrictions: []\n", - "[INFO] [1712609758.836999]: -------------------\n", - "[INFO] [1712609758.837234]: SOMA.Holding \n", - "[INFO] [1712609758.837463]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609758.837721]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Holding, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609758.837977]: Subclasses: []\n", - "[INFO] [1712609758.838270]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.838757]: Instances: []\n", - "[INFO] [1712609758.839013]: Direct Instances: []\n", - "[INFO] [1712609758.839258]: Inverse Restrictions: []\n", - "[INFO] [1712609758.839492]: -------------------\n", - "[INFO] [1712609758.839729]: SOMA.HostRole \n", - "[INFO] [1712609758.839984]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712609758.840250]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.HostRole, SOMA.SoftwareRole}\n", - "[INFO] [1712609758.840490]: Subclasses: []\n", - "[INFO] [1712609758.840817]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.841328]: Instances: []\n", - "[INFO] [1712609758.841592]: Direct Instances: []\n", - "[INFO] [1712609758.842640]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712609758.842897]: -------------------\n", - "[INFO] [1712609758.843154]: SOMA.PluginSpecification \n", - "[INFO] [1712609758.843404]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712609758.843670]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, SOMA.PluginSpecification}\n", - "[INFO] [1712609758.843911]: Subclasses: []\n", - "[INFO] [1712609758.844198]: Properties: [rdf-schema.comment, DUL.definesRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.844703]: Instances: []\n", - "[INFO] [1712609758.844963]: Direct Instances: []\n", - "[INFO] [1712609758.845290]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712609758.845540]: -------------------\n", - "[INFO] [1712609758.845787]: SOMA.Hotplate \n", - "[INFO] [1712609758.846025]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.846293]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Hotplate, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.846536]: Subclasses: []\n", - "[INFO] [1712609758.846813]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.847435]: Instances: []\n", - "[INFO] [1712609758.847896]: Direct Instances: []\n", - "[INFO] [1712609758.848288]: Inverse Restrictions: [SOMA.Stove]\n", - "[INFO] [1712609758.848583]: -------------------\n", - "[INFO] [1712609758.849097]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712609758.849671]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712609758.850221]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, SOMA.Programming_Language, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.850726]: Subclasses: []\n", - "[INFO] [1712609758.851291]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.852043]: Instances: []\n", - "[INFO] [1712609758.852546]: Direct Instances: []\n", - "[INFO] [1712609758.853757]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712609758.854199]: -------------------\n", - "[INFO] [1712609758.854639]: SOMA.Source_Code \n", - "[INFO] [1712609758.855074]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712609758.855670]: Ancestors: {SOMA.Computer_Program, SOMA.Source_Code, owl.Thing}\n", - "[INFO] [1712609758.856027]: Subclasses: []\n", - "[INFO] [1712609758.856432]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.857029]: Instances: []\n", - "[INFO] [1712609758.857396]: Direct Instances: []\n", - "[INFO] [1712609758.857772]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712609758.858105]: -------------------\n", - "[INFO] [1712609758.858453]: SOMA.HumanActivityRecording \n", - "[INFO] [1712609758.858793]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712609758.859156]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.Episode, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712609758.859489]: Subclasses: []\n", - "[INFO] [1712609758.859863]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.860452]: Instances: []\n", - "[INFO] [1712609758.860809]: Direct Instances: []\n", - "[INFO] [1712609758.861157]: Inverse Restrictions: []\n", - "[INFO] [1712609758.861483]: -------------------\n", - "[INFO] [1712609758.861811]: SOMA.Imagining \n", - "[INFO] [1712609758.862137]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712609758.862491]: Ancestors: {SOMA.InformationAcquisition, SOMA.Imagining, owl.Thing}\n", - "[INFO] [1712609758.862828]: Subclasses: []\n", - "[INFO] [1712609758.863199]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.863776]: Instances: []\n", - "[INFO] [1712609758.864140]: Direct Instances: []\n", - "[INFO] [1712609758.864481]: Inverse Restrictions: []\n", - "[INFO] [1712609758.864805]: -------------------\n", - "[INFO] [1712609758.865128]: SOMA.Impediment \n", - "[INFO] [1712609758.865484]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712609758.865855]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Impediment, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609758.866203]: Subclasses: []\n", - "[INFO] [1712609758.866585]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.867161]: Instances: []\n", - "[INFO] [1712609758.867520]: Direct Instances: []\n", - "[INFO] [1712609758.867862]: Inverse Restrictions: []\n", - "[INFO] [1712609758.868183]: -------------------\n", - "[INFO] [1712609758.868507]: SOMA.Obstacle \n", - "[INFO] [1712609758.868827]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712609758.869197]: Ancestors: {DUL.Concept, SOMA.Obstacle, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609758.869536]: Subclasses: []\n", - "[INFO] [1712609758.869915]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.870499]: Instances: []\n", - "[INFO] [1712609758.870862]: Direct Instances: []\n", - "[INFO] [1712609758.871251]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712609758.871591]: -------------------\n", - "[INFO] [1712609758.871927]: SOMA.RestrictedObject \n", - "[INFO] [1712609758.872264]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712609758.872641]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RestrictedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", - "[INFO] [1712609758.872999]: Subclasses: []\n", - "[INFO] [1712609758.873391]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.873968]: Instances: []\n", - "[INFO] [1712609758.874366]: Direct Instances: []\n", - "[INFO] [1712609758.874801]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712609758.875166]: -------------------\n", - "[INFO] [1712609758.875520]: SOMA.StateTransition \n", - "[INFO] [1712609758.875904]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712609758.876301]: Ancestors: {DUL.Entity, DUL.Situation, DUL.Transition, SOMA.StateTransition, owl.Thing}\n", - "[INFO] [1712609758.876582]: Subclasses: []\n", - "[INFO] [1712609758.876890]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, SOMA.hasInitialScene, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.877378]: Instances: []\n", - "[INFO] [1712609758.877644]: Direct Instances: []\n", - "[INFO] [1712609758.877969]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712609758.878220]: -------------------\n", - "[INFO] [1712609758.878461]: SOMA.Inability \n", - "[INFO] [1712609758.878695]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712609758.878955]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Inability, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.879216]: Subclasses: []\n", - "[INFO] [1712609758.879509]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.879996]: Instances: []\n", - "[INFO] [1712609758.880252]: Direct Instances: []\n", - "[INFO] [1712609758.880496]: Inverse Restrictions: []\n", - "[INFO] [1712609758.880728]: -------------------\n", - "[INFO] [1712609758.880970]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712609758.881206]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712609758.881535]: Ancestors: {DUL.Entity, SOMA.IncompatibleSoftware, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609758.881777]: Subclasses: []\n", - "[INFO] [1712609758.882062]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.882560]: Instances: []\n", - "[INFO] [1712609758.882822]: Direct Instances: []\n", - "[INFO] [1712609758.883069]: Inverse Restrictions: []\n", - "[INFO] [1712609758.883306]: -------------------\n", - "[INFO] [1712609758.883539]: SOMA.InductionCooktop \n", - "[INFO] [1712609758.883783]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712609758.884055]: Ancestors: {DUL.Entity, SOMA.InductionCooktop, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.ElectricCooktop, DUL.PhysicalObject, owl.Thing, SOMA.Cooktop, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.884302]: Subclasses: []\n", - "[INFO] [1712609758.884585]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.885078]: Instances: []\n", - "[INFO] [1712609758.885339]: Direct Instances: []\n", - "[INFO] [1712609758.885584]: Inverse Restrictions: []\n", - "[INFO] [1712609758.885814]: -------------------\n", - "[INFO] [1712609758.886046]: SOMA.InductiveReasoning \n", - "[INFO] [1712609758.886294]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712609758.886556]: Ancestors: {SOMA.InductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.Reasoning}\n", - "[INFO] [1712609758.886833]: Subclasses: []\n", - "[INFO] [1712609758.887128]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.887625]: Instances: []\n", - "[INFO] [1712609758.887898]: Direct Instances: []\n", - "[INFO] [1712609758.888150]: Inverse Restrictions: []\n", - "[INFO] [1712609758.888389]: -------------------\n", - "[INFO] [1712609758.888691]: SOMA.Infeasibility \n", - "[INFO] [1712609758.888945]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712609758.889212]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.889456]: Subclasses: []\n", - "[INFO] [1712609758.889735]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.890234]: Instances: []\n", - "[INFO] [1712609758.890507]: Direct Instances: []\n", - "[INFO] [1712609758.890762]: Inverse Restrictions: []\n", - "[INFO] [1712609758.891000]: -------------------\n", - "[INFO] [1712609758.891243]: SOMA.InferenceRules \n", - "[INFO] [1712609758.891489]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712609758.891769]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.InferenceRules}\n", - "[INFO] [1712609758.892017]: Subclasses: []\n", - "[INFO] [1712609758.892299]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.892781]: Instances: []\n", - "[INFO] [1712609758.893056]: Direct Instances: []\n", - "[INFO] [1712609758.893308]: Inverse Restrictions: []\n", - "[INFO] [1712609758.893543]: -------------------\n", - "[INFO] [1712609758.893774]: SOMA.InformationRetrieval \n", - "[INFO] [1712609758.894018]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712609758.894301]: Ancestors: {SOMA.InformationAcquisition, SOMA.InformationRetrieval, owl.Thing}\n", - "[INFO] [1712609758.894562]: Subclasses: []\n", - "[INFO] [1712609758.894857]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.895339]: Instances: []\n", - "[INFO] [1712609758.895593]: Direct Instances: []\n", - "[INFO] [1712609758.895905]: Inverse Restrictions: []\n", - "[INFO] [1712609758.896146]: -------------------\n", - "[INFO] [1712609758.896375]: SOMA.InformationStorage \n", - "[INFO] [1712609758.896641]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712609758.897007]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", - "[INFO] [1712609758.897276]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712609758.897577]: Properties: [rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.898076]: Instances: []\n", - "[INFO] [1712609758.898350]: Direct Instances: []\n", - "[INFO] [1712609758.898604]: Inverse Restrictions: []\n", - "[INFO] [1712609758.898843]: -------------------\n", - "[INFO] [1712609758.899076]: SOMA.StoredObject \n", - "[INFO] [1712609758.899307]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712609758.899571]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, DUL.Role, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.StoredObject, owl.Thing, SOMA.EnclosedObject}\n", - "[INFO] [1712609758.899828]: Subclasses: []\n", - "[INFO] [1712609758.900118]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.900602]: Instances: []\n", - "[INFO] [1712609758.900878]: Direct Instances: []\n", - "[INFO] [1712609758.901226]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712609758.901469]: -------------------\n", - "[INFO] [1712609758.901704]: SOMA.InsertedObject \n", - "[INFO] [1712609758.901942]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712609758.902215]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, DUL.Role, SOMA.Patient, DUL.SocialObject, SOMA.InsertedObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, SOMA.EnclosedObject}\n", - "[INFO] [1712609758.902469]: Subclasses: []\n", - "[INFO] [1712609758.902754]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.903244]: Instances: []\n", - "[INFO] [1712609758.903504]: Direct Instances: []\n", - "[INFO] [1712609758.903792]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712609758.904030]: -------------------\n", - "[INFO] [1712609758.904268]: SOMA.Instructions \n", - "[INFO] [1712609758.904500]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712609758.904771]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Instructions, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.905017]: Subclasses: []\n", - "[INFO] [1712609758.905306]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.905795]: Instances: []\n", - "[INFO] [1712609758.906063]: Direct Instances: []\n", - "[INFO] [1712609758.906494]: Inverse Restrictions: []\n", - "[INFO] [1712609758.906811]: -------------------\n", - "[INFO] [1712609758.907082]: SOMA.Interpreting \n", - "[INFO] [1712609758.907338]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609758.907618]: Ancestors: {SOMA.InformationAcquisition, SOMA.Interpreting, SOMA.DerivingInformation, owl.Thing}\n", - "[INFO] [1712609758.907876]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712609758.908167]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.908680]: Instances: []\n", - "[INFO] [1712609758.908946]: Direct Instances: []\n", - "[INFO] [1712609758.909199]: Inverse Restrictions: []\n", - "[INFO] [1712609758.909436]: -------------------\n", - "[INFO] [1712609758.909667]: SOMA.InterrogativeClause \n", - "[INFO] [1712609758.909925]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712609758.910200]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, SOMA.InterrogativeClause, DUL.InformationObject}\n", - "[INFO] [1712609758.910447]: Subclasses: []\n", - "[INFO] [1712609758.910735]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.911231]: Instances: []\n", - "[INFO] [1712609758.911496]: Direct Instances: []\n", - "[INFO] [1712609758.911784]: Inverse Restrictions: []\n", - "[INFO] [1712609758.912020]: -------------------\n", - "[INFO] [1712609758.912248]: SOMA.Introspecting \n", - "[INFO] [1712609758.912477]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712609758.912741]: Ancestors: {SOMA.InformationAcquisition, SOMA.Introspecting, owl.Thing}\n", - "[INFO] [1712609758.912992]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712609758.913272]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.913753]: Instances: []\n", - "[INFO] [1712609758.914023]: Direct Instances: []\n", - "[INFO] [1712609758.914280]: Inverse Restrictions: []\n", - "[INFO] [1712609758.914520]: -------------------\n", - "[INFO] [1712609758.914752]: SOMA.JamJar \n", - "[INFO] [1712609758.914983]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712609758.915251]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.JamJar, DUL.PhysicalObject, owl.Thing, SOMA.Jar}\n", - "[INFO] [1712609758.915517]: Subclasses: [SOMA.RaspberryJamJar]\n", - "[INFO] [1712609758.915800]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.916281]: Instances: []\n", - "[INFO] [1712609758.916545]: Direct Instances: []\n", - "[INFO] [1712609758.916796]: Inverse Restrictions: []\n", - "[INFO] [1712609758.917031]: -------------------\n", - "[INFO] [1712609758.917260]: SOMA.Jar \n", - "[INFO] [1712609758.917486]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712609758.917738]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Jar}\n", - "[INFO] [1712609758.917983]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", - "[INFO] [1712609758.918315]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.918941]: Instances: []\n", - "[INFO] [1712609758.919317]: Direct Instances: []\n", - "[INFO] [1712609758.919695]: Inverse Restrictions: []\n", - "[INFO] [1712609758.920056]: -------------------\n", - "[INFO] [1712609758.920415]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712609758.920770]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712609758.921079]: Ancestors: {DUL.Entity, DUL.Region, SOMA.KineticFrictionAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609758.921345]: Subclasses: []\n", - "[INFO] [1712609758.921644]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.922144]: Instances: []\n", - "[INFO] [1712609758.922497]: Direct Instances: []\n", - "[INFO] [1712609758.922790]: Inverse Restrictions: []\n", - "[INFO] [1712609758.923047]: -------------------\n", - "[INFO] [1712609758.923430]: SOMA.KinoDynamicData \n", - "[INFO] [1712609758.923768]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609758.924145]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.KinoDynamicData, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609758.924442]: Subclasses: []\n", - "[INFO] [1712609758.924834]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.925364]: Instances: []\n", - "[INFO] [1712609758.925657]: Direct Instances: []\n", - "[INFO] [1712609758.925923]: Inverse Restrictions: []\n", - "[INFO] [1712609758.926206]: -------------------\n", - "[INFO] [1712609758.926461]: SOMA.Kitchen \n", - "[INFO] [1712609758.926707]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712609758.926990]: Ancestors: {DUL.Entity, SOMA.Room, DUL.Object, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing, SOMA.Kitchen}\n", - "[INFO] [1712609758.927254]: Subclasses: []\n", - "[INFO] [1712609758.927554]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712609758.928042]: Instances: []\n", - "[INFO] [1712609758.928299]: Direct Instances: []\n", - "[INFO] [1712609758.928548]: Inverse Restrictions: []\n", - "[INFO] [1712609758.928791]: -------------------\n", - "[INFO] [1712609758.929033]: SOMA.Room \n", - "[INFO] [1712609758.929268]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712609758.929507]: Ancestors: {DUL.Entity, SOMA.Room, DUL.Object, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", - "[INFO] [1712609758.929752]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712609758.930038]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.930605]: Instances: []\n", - "[INFO] [1712609758.930931]: Direct Instances: []\n", - "[INFO] [1712609758.931220]: Inverse Restrictions: []\n", - "[INFO] [1712609758.931478]: -------------------\n", - "[INFO] [1712609758.931728]: SOMA.KitchenCabinet \n", - "[INFO] [1712609758.931976]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712609758.932259]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Cupboard, DUL.PhysicalObject, owl.Thing, SOMA.KitchenCabinet, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.932509]: Subclasses: []\n", - "[INFO] [1712609758.932801]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.933286]: Instances: []\n", - "[INFO] [1712609758.933560]: Direct Instances: []\n", - "[INFO] [1712609758.933814]: Inverse Restrictions: []\n", - "[INFO] [1712609758.934045]: -------------------\n", - "[INFO] [1712609758.934278]: SOMA.Knife \n", - "[INFO] [1712609758.934515]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712609758.934762]: Ancestors: {DUL.Entity, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", - "[INFO] [1712609758.935021]: Subclasses: [SOMA.KitchenKnife]\n", - "[INFO] [1712609758.935311]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.935802]: Instances: []\n", - "[INFO] [1712609758.936074]: Direct Instances: []\n", - "[INFO] [1712609758.936338]: Inverse Restrictions: []\n", - "[INFO] [1712609758.936577]: -------------------\n", - "[INFO] [1712609758.936806]: SOMA.KitchenUnit \n", - "[INFO] [1712609758.937035]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712609758.937311]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.KitchenUnit, owl.Thing, SOMA.DesignedFurniture}\n", - "[INFO] [1712609758.937557]: Subclasses: []\n", - "[INFO] [1712609758.937844]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.938325]: Instances: []\n", - "[INFO] [1712609758.938594]: Direct Instances: []\n", - "[INFO] [1712609758.938875]: Inverse Restrictions: []\n", - "[INFO] [1712609758.939117]: -------------------\n", - "[INFO] [1712609758.939353]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712609758.939583]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609758.939853]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.KnowledgeRepresentationLanguage, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.940124]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712609758.940417]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.940958]: Instances: []\n", - "[INFO] [1712609758.941240]: Direct Instances: []\n", - "[INFO] [1712609758.941498]: Inverse Restrictions: []\n", - "[INFO] [1712609758.941731]: -------------------\n", - "[INFO] [1712609758.941959]: SOMA.Labeling \n", - "[INFO] [1712609758.942187]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712609758.942451]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing}\n", - "[INFO] [1712609758.942709]: Subclasses: []\n", - "[INFO] [1712609758.943003]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.943483]: Instances: []\n", - "[INFO] [1712609758.943728]: Direct Instances: []\n", - "[INFO] [1712609758.943976]: Inverse Restrictions: []\n", - "[INFO] [1712609758.944218]: -------------------\n", - "[INFO] [1712609758.944453]: SOMA.Text \n", - "[INFO] [1712609758.944682]: Super classes: [owl.Thing]\n", - "[INFO] [1712609758.945900]: Ancestors: {SOMA.Text, owl.Thing}\n", - "[INFO] [1712609758.946295]: Subclasses: []\n", - "[INFO] [1712609758.946642]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.947155]: Instances: []\n", - "[INFO] [1712609758.947431]: Direct Instances: []\n", - "[INFO] [1712609758.948580]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712609758.948873]: -------------------\n", - "[INFO] [1712609758.949131]: SOMA.Leaning \n", - "[INFO] [1712609758.949373]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712609758.949668]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Leaning, SOMA.ProcessType, SOMA.Motion}\n", - "[INFO] [1712609758.949934]: Subclasses: []\n", - "[INFO] [1712609758.950252]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.950746]: Instances: []\n", - "[INFO] [1712609758.951007]: Direct Instances: []\n", - "[INFO] [1712609758.951259]: Inverse Restrictions: []\n", - "[INFO] [1712609758.951495]: -------------------\n", - "[INFO] [1712609758.951730]: SOMA.PosturalMoving \n", - "[INFO] [1712609758.951961]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712609758.952201]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.952451]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712609758.952750]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.953237]: Instances: []\n", - "[INFO] [1712609758.953499]: Direct Instances: []\n", - "[INFO] [1712609758.953756]: Inverse Restrictions: []\n", - "[INFO] [1712609758.953998]: -------------------\n", - "[INFO] [1712609758.954237]: SOMA.Learning \n", - "[INFO] [1712609758.954472]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712609758.954741]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", - "[INFO] [1712609758.955007]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712609758.955299]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.955780]: Instances: []\n", - "[INFO] [1712609758.956028]: Direct Instances: []\n", - "[INFO] [1712609758.956279]: Inverse Restrictions: []\n", - "[INFO] [1712609758.956525]: -------------------\n", - "[INFO] [1712609758.956758]: SOMA.Leg \n", - "[INFO] [1712609758.956987]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712609758.957253]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.957510]: Subclasses: []\n", - "[INFO] [1712609758.957799]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.958280]: Instances: []\n", - "[INFO] [1712609758.958553]: Direct Instances: []\n", - "[INFO] [1712609758.958845]: Inverse Restrictions: []\n", - "[INFO] [1712609758.959082]: -------------------\n", - "[INFO] [1712609758.959312]: SOMA.Lid \n", - "[INFO] [1712609758.959544]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609758.959828]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Lid, SOMA.FunctionalPart}\n", - "[INFO] [1712609758.960073]: Subclasses: []\n", - "[INFO] [1712609758.960357]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.960832]: Instances: []\n", - "[INFO] [1712609758.961107]: Direct Instances: []\n", - "[INFO] [1712609758.961359]: Inverse Restrictions: []\n", - "[INFO] [1712609758.961604]: -------------------\n", - "[INFO] [1712609758.961842]: SOMA.LimbMotion \n", - "[INFO] [1712609758.962491]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712609758.962805]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.LimbMotion, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609758.963071]: Subclasses: []\n", - "[INFO] [1712609758.963389]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.963881]: Instances: []\n", - "[INFO] [1712609758.964158]: Direct Instances: []\n", - "[INFO] [1712609758.964414]: Inverse Restrictions: []\n", - "[INFO] [1712609758.964654]: -------------------\n", - "[INFO] [1712609758.964885]: SOMA.LinkedObject \n", - "[INFO] [1712609758.965114]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712609758.965378]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, SOMA.LinkedObject, SOMA.ConnectedObject, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.965638]: Subclasses: []\n", - "[INFO] [1712609758.965933]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.966421]: Instances: []\n", - "[INFO] [1712609758.966678]: Direct Instances: []\n", - "[INFO] [1712609758.967034]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712609758.967286]: -------------------\n", - "[INFO] [1712609758.967530]: SOMA.LinkageState \n", - "[INFO] [1712609758.967771]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712609758.968032]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.LinkageState, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609758.968290]: Subclasses: []\n", - "[INFO] [1712609758.968588]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.969076]: Instances: []\n", - "[INFO] [1712609758.969329]: Direct Instances: []\n", - "[INFO] [1712609758.969572]: Inverse Restrictions: []\n", - "[INFO] [1712609758.969815]: -------------------\n", - "[INFO] [1712609758.970052]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712609758.970289]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609758.970532]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609758.970775]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712609758.971060]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.971567]: Instances: []\n", - "[INFO] [1712609758.971824]: Direct Instances: []\n", - "[INFO] [1712609758.972072]: Inverse Restrictions: []\n", - "[INFO] [1712609758.972306]: -------------------\n", - "[INFO] [1712609758.972545]: SOMA.SpatialRelationRole \n", - "[INFO] [1712609758.972786]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712609758.973036]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SpatialRelationRole}\n", - "[INFO] [1712609758.973283]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712609758.973568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.974077]: Instances: []\n", - "[INFO] [1712609758.974355]: Direct Instances: []\n", - "[INFO] [1712609758.974634]: Inverse Restrictions: []\n", - "[INFO] [1712609758.974891]: -------------------\n", - "[INFO] [1712609758.975136]: SOMA.LocutionaryAction \n", - "[INFO] [1712609758.975383]: Super classes: [owl.Thing]\n", - "[INFO] [1712609758.976605]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", - "[INFO] [1712609758.976897]: Subclasses: []\n", - "[INFO] [1712609758.977206]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.977714]: Instances: []\n", - "[INFO] [1712609758.977986]: Direct Instances: []\n", - "[INFO] [1712609758.978302]: Inverse Restrictions: []\n", - "[INFO] [1712609758.978740]: -------------------\n", - "[INFO] [1712609758.979121]: SOMA.LookingAt \n", - "[INFO] [1712609758.979492]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609758.979885]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.LookingAt}\n", - "[INFO] [1712609758.980255]: Subclasses: []\n", - "[INFO] [1712609758.980584]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.981111]: Instances: []\n", - "[INFO] [1712609758.981390]: Direct Instances: []\n", - "[INFO] [1712609758.981646]: Inverse Restrictions: []\n", - "[INFO] [1712609758.981886]: -------------------\n", - "[INFO] [1712609758.982119]: SOMA.LookingFor \n", - "[INFO] [1712609758.982359]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712609758.982638]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", - "[INFO] [1712609758.982893]: Subclasses: []\n", - "[INFO] [1712609758.983189]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.983681]: Instances: []\n", - "[INFO] [1712609758.984072]: Direct Instances: []\n", - "[INFO] [1712609758.984360]: Inverse Restrictions: []\n", - "[INFO] [1712609758.984616]: -------------------\n", - "[INFO] [1712609758.984853]: SOMA.Lowering \n", - "[INFO] [1712609758.985085]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609758.985364]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Lowering, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609758.985619]: Subclasses: []\n", - "[INFO] [1712609758.985917]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.986404]: Instances: []\n", - "[INFO] [1712609758.986679]: Direct Instances: []\n", - "[INFO] [1712609758.986935]: Inverse Restrictions: []\n", - "[INFO] [1712609758.987172]: -------------------\n", - "[INFO] [1712609758.987412]: SOMA.PhysicalAction \n", - "[INFO] [1712609758.987653]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712609758.987963]: Ancestors: {DUL.Entity, SOMA.PhysicalAction, DUL.Action, owl.Thing, DUL.Event}\n", - "[INFO] [1712609758.988254]: Subclasses: []\n", - "[INFO] [1712609758.988588]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.989128]: Instances: []\n", - "[INFO] [1712609758.989504]: Direct Instances: []\n", - "[INFO] [1712609758.989878]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609758.990181]: -------------------\n", - "[INFO] [1712609758.990465]: SOMA.Markup_Language \n", - "[INFO] [1712609758.990735]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609758.991050]: Ancestors: {DUL.Entity, SOMA.Markup_Language, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609758.991332]: Subclasses: []\n", - "[INFO] [1712609758.991640]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.992139]: Instances: []\n", - "[INFO] [1712609758.992426]: Direct Instances: []\n", - "[INFO] [1712609758.992681]: Inverse Restrictions: []\n", - "[INFO] [1712609758.992919]: -------------------\n", - "[INFO] [1712609758.993147]: SOMA.Masterful \n", - "[INFO] [1712609758.993371]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712609758.993646]: Ancestors: {DUL.Entity, SOMA.Masterful, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.993900]: Subclasses: []\n", - "[INFO] [1712609758.994198]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.994699]: Instances: []\n", - "[INFO] [1712609758.994976]: Direct Instances: []\n", - "[INFO] [1712609758.995236]: Inverse Restrictions: []\n", - "[INFO] [1712609758.995470]: -------------------\n", - "[INFO] [1712609758.995696]: SOMA.Material \n", - "[INFO] [1712609758.995922]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609758.996190]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, SOMA.Material}\n", - "[INFO] [1712609758.996443]: Subclasses: []\n", - "[INFO] [1712609758.996731]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609758.997206]: Instances: []\n", - "[INFO] [1712609758.997479]: Direct Instances: []\n", - "[INFO] [1712609758.997728]: Inverse Restrictions: []\n", - "[INFO] [1712609758.997958]: -------------------\n", - "[INFO] [1712609758.998187]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712609758.998446]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712609758.998736]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, owl.Thing, SOMA.MedicalDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609758.998982]: Subclasses: []\n", - "[INFO] [1712609758.999286]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609758.999761]: Instances: []\n", - "[INFO] [1712609759.000035]: Direct Instances: []\n", - "[INFO] [1712609759.000296]: Inverse Restrictions: []\n", - "[INFO] [1712609759.000536]: -------------------\n", - "[INFO] [1712609759.000785]: SOMA.Memorizing \n", - "[INFO] [1712609759.001017]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712609759.001288]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Memorizing, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", - "[INFO] [1712609759.001545]: Subclasses: []\n", - "[INFO] [1712609759.001840]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.002325]: Instances: []\n", - "[INFO] [1712609759.002592]: Direct Instances: []\n", - "[INFO] [1712609759.002831]: Inverse Restrictions: []\n", - "[INFO] [1712609759.003062]: -------------------\n", - "[INFO] [1712609759.003296]: SOMA.MentalAction \n", - "[INFO] [1712609759.003952]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712609759.004238]: Ancestors: {DUL.Entity, SOMA.MentalAction, DUL.Action, owl.Thing, DUL.Event}\n", - "[INFO] [1712609759.004496]: Subclasses: []\n", - "[INFO] [1712609759.004796]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.005276]: Instances: []\n", - "[INFO] [1712609759.005529]: Direct Instances: []\n", - "[INFO] [1712609759.005819]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712609759.006068]: -------------------\n", - "[INFO] [1712609759.006315]: SOMA.MeshShape \n", - "[INFO] [1712609759.006611]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712609759.006897]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, SOMA.MeshShape, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609759.007139]: Subclasses: []\n", - "[INFO] [1712609759.007436]: Properties: [rdf-schema.comment, SOMA.hasFilePath, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.007930]: Instances: []\n", - "[INFO] [1712609759.008189]: Direct Instances: []\n", - "[INFO] [1712609759.008435]: Inverse Restrictions: []\n", - "[INFO] [1712609759.008668]: -------------------\n", - "[INFO] [1712609759.008903]: SOMA.MeshShapeData \n", - "[INFO] [1712609759.009146]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609759.009414]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.MeshShapeData, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609759.009651]: Subclasses: []\n", - "[INFO] [1712609759.009939]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.010442]: Instances: []\n", - "[INFO] [1712609759.010719]: Direct Instances: []\n", - "[INFO] [1712609759.010971]: Inverse Restrictions: []\n", - "[INFO] [1712609759.011207]: -------------------\n", - "[INFO] [1712609759.011440]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712609759.011674]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712609759.011969]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.012219]: Subclasses: []\n", - "[INFO] [1712609759.012506]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.012988]: Instances: []\n", - "[INFO] [1712609759.013263]: Direct Instances: []\n", - "[INFO] [1712609759.013513]: Inverse Restrictions: []\n", - "[INFO] [1712609759.013744]: -------------------\n", - "[INFO] [1712609759.013969]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712609759.014197]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609759.014453]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.014721]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712609759.015013]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.015507]: Instances: []\n", - "[INFO] [1712609759.015773]: Direct Instances: []\n", - "[INFO] [1712609759.016027]: Inverse Restrictions: []\n", - "[INFO] [1712609759.016254]: -------------------\n", - "[INFO] [1712609759.016476]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712609759.016698]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712609759.016974]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.017227]: Subclasses: []\n", - "[INFO] [1712609759.017515]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.017989]: Instances: []\n", - "[INFO] [1712609759.018270]: Direct Instances: []\n", - "[INFO] [1712609759.018521]: Inverse Restrictions: []\n", - "[INFO] [1712609759.018753]: -------------------\n", - "[INFO] [1712609759.018982]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712609759.019208]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712609759.019474]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.019727]: Subclasses: []\n", - "[INFO] [1712609759.020021]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.020502]: Instances: []\n", - "[INFO] [1712609759.020756]: Direct Instances: []\n", - "[INFO] [1712609759.021000]: Inverse Restrictions: []\n", - "[INFO] [1712609759.021237]: -------------------\n", - "[INFO] [1712609759.021472]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712609759.021699]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712609759.021935]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.022197]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712609759.022494]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.023009]: Instances: []\n", - "[INFO] [1712609759.023276]: Direct Instances: []\n", - "[INFO] [1712609759.023534]: Inverse Restrictions: []\n", - "[INFO] [1712609759.023769]: -------------------\n", - "[INFO] [1712609759.024004]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712609759.024234]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712609759.024498]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MetacognitiveControlling, SOMA.MentalTask}\n", - "[INFO] [1712609759.024746]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712609759.025041]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.025523]: Instances: []\n", - "[INFO] [1712609759.025780]: Direct Instances: []\n", - "[INFO] [1712609759.026032]: Inverse Restrictions: []\n", - "[INFO] [1712609759.026263]: -------------------\n", - "[INFO] [1712609759.026502]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712609759.026733]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712609759.026994]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting, owl.Thing}\n", - "[INFO] [1712609759.027231]: Subclasses: []\n", - "[INFO] [1712609759.027511]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.028001]: Instances: []\n", - "[INFO] [1712609759.028266]: Direct Instances: []\n", - "[INFO] [1712609759.028513]: Inverse Restrictions: []\n", - "[INFO] [1712609759.028743]: -------------------\n", - "[INFO] [1712609759.028972]: SOMA.MilkBottle \n", - "[INFO] [1712609759.029200]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712609759.029479]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.MilkBottle, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.029725]: Subclasses: []\n", - "[INFO] [1712609759.030009]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.030494]: Instances: []\n", - "[INFO] [1712609759.030806]: Direct Instances: []\n", - "[INFO] [1712609759.031059]: Inverse Restrictions: []\n", - "[INFO] [1712609759.031293]: -------------------\n", - "[INFO] [1712609759.031530]: SOMA.MilkPack \n", - "[INFO] [1712609759.031756]: Super classes: [SOMA.Pack]\n", - "[INFO] [1712609759.032030]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Pack, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.MilkPack}\n", - "[INFO] [1712609759.032285]: Subclasses: []\n", - "[INFO] [1712609759.032577]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.033075]: Instances: []\n", - "[INFO] [1712609759.033357]: Direct Instances: []\n", - "[INFO] [1712609759.033623]: Inverse Restrictions: []\n", - "[INFO] [1712609759.033868]: -------------------\n", - "[INFO] [1712609759.034106]: SOMA.Pack \n", - "[INFO] [1712609759.034350]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712609759.034591]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Pack, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.034837]: Subclasses: [SOMA.MilkPack]\n", - "[INFO] [1712609759.035136]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.035632]: Instances: []\n", - "[INFO] [1712609759.035890]: Direct Instances: []\n", - "[INFO] [1712609759.036138]: Inverse Restrictions: []\n", - "[INFO] [1712609759.036364]: -------------------\n", - "[INFO] [1712609759.036592]: SOMA.Mixing \n", - "[INFO] [1712609759.036831]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712609759.037105]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Mixing}\n", - "[INFO] [1712609759.037357]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712609759.037638]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.038137]: Instances: []\n", - "[INFO] [1712609759.038406]: Direct Instances: []\n", - "[INFO] [1712609759.038660]: Inverse Restrictions: []\n", - "[INFO] [1712609759.038906]: -------------------\n", - "[INFO] [1712609759.039136]: SOMA.MixingTheory \n", - "[INFO] [1712609759.039384]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712609759.039660]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.MixingTheory, owl.Thing, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609759.039901]: Subclasses: []\n", - "[INFO] [1712609759.040194]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.040692]: Instances: []\n", - "[INFO] [1712609759.040961]: Direct Instances: []\n", - "[INFO] [1712609759.041207]: Inverse Restrictions: []\n", - "[INFO] [1712609759.041436]: -------------------\n", - "[INFO] [1712609759.041668]: SOMA.MonitoringJointState \n", - "[INFO] [1712609759.041901]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712609759.042186]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, DUL.SocialObject, DUL.Object, SOMA.Proprioceiving, owl.Thing}\n", - "[INFO] [1712609759.042433]: Subclasses: []\n", - "[INFO] [1712609759.042717]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.043217]: Instances: []\n", - "[INFO] [1712609759.043484]: Direct Instances: []\n", - "[INFO] [1712609759.043730]: Inverse Restrictions: []\n", - "[INFO] [1712609759.043959]: -------------------\n", - "[INFO] [1712609759.044184]: SOMA.Proprioceiving \n", - "[INFO] [1712609759.044407]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609759.044658]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Proprioceiving, owl.Thing}\n", - "[INFO] [1712609759.044911]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712609759.045196]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.045685]: Instances: []\n", - "[INFO] [1712609759.045957]: Direct Instances: []\n", - "[INFO] [1712609759.046222]: Inverse Restrictions: []\n", - "[INFO] [1712609759.046455]: -------------------\n", - "[INFO] [1712609759.046694]: SOMA.MovingAway \n", - "[INFO] [1712609759.046937]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609759.047219]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.MovingAway, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.047466]: Subclasses: []\n", - "[INFO] [1712609759.047775]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.048549]: Instances: []\n", - "[INFO] [1712609759.048886]: Direct Instances: []\n", - "[INFO] [1712609759.049138]: Inverse Restrictions: []\n", - "[INFO] [1712609759.049371]: -------------------\n", - "[INFO] [1712609759.049607]: SOMA.MovingTo \n", - "[INFO] [1712609759.049847]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712609759.050135]: Ancestors: {SOMA.MovingTo, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", - "[INFO] [1712609759.050395]: Subclasses: []\n", - "[INFO] [1712609759.050686]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.051165]: Instances: []\n", - "[INFO] [1712609759.051454]: Direct Instances: []\n", - "[INFO] [1712609759.051721]: Inverse Restrictions: []\n", - "[INFO] [1712609759.051962]: -------------------\n", - "[INFO] [1712609759.052195]: SOMA.Natural_Language \n", - "[INFO] [1712609759.052458]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712609759.052748]: Ancestors: {DUL.Entity, SOMA.Natural_Language, DUL.SocialObject, DUL.Object, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.053004]: Subclasses: []\n", - "[INFO] [1712609759.053306]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.053804]: Instances: []\n", - "[INFO] [1712609759.054092]: Direct Instances: []\n", - "[INFO] [1712609759.054443]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712609759.054946]: -------------------\n", - "[INFO] [1712609759.055839]: SOMA.Natural_Language_Text \n", - "[INFO] [1712609759.056642]: Super classes: [owl.Thing]\n", - "[INFO] [1712609759.058667]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", - "[INFO] [1712609759.060206]: Subclasses: []\n", - "[INFO] [1712609759.060971]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.062027]: Instances: []\n", - "[INFO] [1712609759.062593]: Direct Instances: []\n", - "[INFO] [1712609759.063130]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712609759.063530]: -------------------\n", - "[INFO] [1712609759.063924]: SOMA.NutellaJar \n", - "[INFO] [1712609759.064316]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712609759.064780]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Jar, SOMA.NutellaJar}\n", - "[INFO] [1712609759.065187]: Subclasses: []\n", - "[INFO] [1712609759.065681]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.066506]: Instances: []\n", - "[INFO] [1712609759.066911]: Direct Instances: []\n", - "[INFO] [1712609759.067299]: Inverse Restrictions: []\n", - "[INFO] [1712609759.067675]: -------------------\n", - "[INFO] [1712609759.068047]: SOMA.Ontology \n", - "[INFO] [1712609759.068431]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712609759.070610]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", - "[INFO] [1712609759.071004]: Subclasses: []\n", - "[INFO] [1712609759.071350]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.071872]: Instances: []\n", - "[INFO] [1712609759.072159]: Direct Instances: []\n", - "[INFO] [1712609759.072478]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712609759.072736]: -------------------\n", - "[INFO] [1712609759.072990]: SOMA.Ontology_Language \n", - "[INFO] [1712609759.073241]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712609759.073532]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.073803]: Subclasses: []\n", - "[INFO] [1712609759.074112]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.074615]: Instances: []\n", - "[INFO] [1712609759.074880]: Direct Instances: []\n", - "[INFO] [1712609759.075206]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712609759.075458]: -------------------\n", - "[INFO] [1712609759.075697]: SOMA.Option \n", - "[INFO] [1712609759.075932]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712609759.076204]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.Option, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.076462]: Subclasses: []\n", - "[INFO] [1712609759.076758]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.077246]: Instances: []\n", - "[INFO] [1712609759.077503]: Direct Instances: []\n", - "[INFO] [1712609759.077744]: Inverse Restrictions: []\n", - "[INFO] [1712609759.077981]: -------------------\n", - "[INFO] [1712609759.078217]: SOMA.Singleton \n", - "[INFO] [1712609759.078455]: Super classes: [owl.Thing]\n", - "[INFO] [1712609759.078689]: Ancestors: {SOMA.Singleton, owl.Thing}\n", - "[INFO] [1712609759.078933]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712609759.079233]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.encapsulates]\n", - "[INFO] [1712609759.079722]: Instances: []\n", - "[INFO] [1712609759.079980]: Direct Instances: []\n", - "[INFO] [1712609759.080228]: Inverse Restrictions: []\n", - "[INFO] [1712609759.080465]: -------------------\n", - "[INFO] [1712609759.080693]: SOMA.Orienting \n", - "[INFO] [1712609759.080919]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712609759.081193]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Orienting, DUL.Entity, DUL.Task, SOMA.Positioning, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.081447]: Subclasses: []\n", - "[INFO] [1712609759.081738]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.082220]: Instances: []\n", - "[INFO] [1712609759.082491]: Direct Instances: []\n", - "[INFO] [1712609759.082758]: Inverse Restrictions: []\n", - "[INFO] [1712609759.082995]: -------------------\n", - "[INFO] [1712609759.083410]: SOMA.Positioning \n", - "[INFO] [1712609759.083848]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609759.084269]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Positioning, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.084674]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712609759.085127]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.085757]: Instances: []\n", - "[INFO] [1712609759.086178]: Direct Instances: []\n", - "[INFO] [1712609759.086585]: Inverse Restrictions: []\n", - "[INFO] [1712609759.086950]: -------------------\n", - "[INFO] [1712609759.087220]: SOMA.Origin \n", - "[INFO] [1712609759.087472]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712609759.087756]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Origin, SOMA.Location}\n", - "[INFO] [1712609759.088033]: Subclasses: []\n", - "[INFO] [1712609759.088337]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.088839]: Instances: []\n", - "[INFO] [1712609759.089106]: Direct Instances: []\n", - "[INFO] [1712609759.089407]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712609759.089685]: -------------------\n", - "[INFO] [1712609759.089937]: SOMA.Oven \n", - "[INFO] [1712609759.090216]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", - "[INFO] [1712609759.090505]: Ancestors: {SOMA.Appliance, DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Oven}\n", - "[INFO] [1712609759.090788]: Subclasses: []\n", - "[INFO] [1712609759.091096]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712609759.091609]: Instances: []\n", - "[INFO] [1712609759.091884]: Direct Instances: []\n", - "[INFO] [1712609759.092139]: Inverse Restrictions: []\n", - "[INFO] [1712609759.092381]: -------------------\n", - "[INFO] [1712609759.092624]: SOMA.TemperingByHeating \n", - "[INFO] [1712609759.092866]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712609759.093159]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, SOMA.TemperingByHeating, owl.Thing, SOMA.Tempering, SOMA.Disposition}\n", - "[INFO] [1712609759.093410]: Subclasses: []\n", - "[INFO] [1712609759.093703]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.094212]: Instances: []\n", - "[INFO] [1712609759.094495]: Direct Instances: []\n", - "[INFO] [1712609759.094784]: Inverse Restrictions: [SOMA.Oven]\n", - "[INFO] [1712609759.095034]: -------------------\n", - "[INFO] [1712609759.095268]: SOMA.Pan \n", - "[INFO] [1712609759.095515]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712609759.095798]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Pan, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609759.096053]: Subclasses: []\n", - "[INFO] [1712609759.096344]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.096833]: Instances: []\n", - "[INFO] [1712609759.097114]: Direct Instances: []\n", - "[INFO] [1712609759.097374]: Inverse Restrictions: []\n", - "[INFO] [1712609759.097609]: -------------------\n", - "[INFO] [1712609759.097842]: SOMA.Pancake \n", - "[INFO] [1712609759.098085]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712609759.098366]: Ancestors: {DUL.Entity, SOMA.Dish, DUL.DesignedArtifact, SOMA.Pancake, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.BakedGood}\n", - "[INFO] [1712609759.098608]: Subclasses: []\n", - "[INFO] [1712609759.098897]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.099408]: Instances: []\n", - "[INFO] [1712609759.099680]: Direct Instances: []\n", - "[INFO] [1712609759.099939]: Inverse Restrictions: []\n", - "[INFO] [1712609759.100179]: -------------------\n", - "[INFO] [1712609759.100409]: SOMA.PancakeMix \n", - "[INFO] [1712609759.100649]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712609759.100924]: Ancestors: {DUL.Entity, DUL.Substance, SOMA.PancakeMix, DUL.DesignedArtifact, DUL.PhysicalBody, DUL.PhysicalArtifact, DUL.DesignedSubstance, DUL.Object, DUL.FunctionalSubstance, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.101167]: Subclasses: []\n", - "[INFO] [1712609759.101453]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.101958]: Instances: []\n", - "[INFO] [1712609759.102238]: Direct Instances: []\n", - "[INFO] [1712609759.102488]: Inverse Restrictions: []\n", - "[INFO] [1712609759.102747]: -------------------\n", - "[INFO] [1712609759.102996]: SOMA.ParkingArms \n", - "[INFO] [1712609759.103231]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712609759.103503]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose, SOMA.AssumingArmPose, SOMA.ParkingArms}\n", - "[INFO] [1712609759.103743]: Subclasses: []\n", - "[INFO] [1712609759.104035]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.104566]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712609759.104859]: Direct Instances: [SOMA.parking_arms]\n", - "[INFO] [1712609759.105126]: Inverse Restrictions: []\n", - "[INFO] [1712609759.105371]: -------------------\n", - "[INFO] [1712609759.105605]: SOMA.PastaBowl \n", - "[INFO] [1712609759.105855]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712609759.106153]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bowl, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.PastaBowl, SOMA.DesignedTool}\n", - "[INFO] [1712609759.106422]: Subclasses: []\n", - "[INFO] [1712609759.106714]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.107201]: Instances: []\n", - "[INFO] [1712609759.107504]: Direct Instances: []\n", - "[INFO] [1712609759.107775]: Inverse Restrictions: []\n", - "[INFO] [1712609759.108018]: -------------------\n", - "[INFO] [1712609759.108256]: SOMA.PepperShaker \n", - "[INFO] [1712609759.108494]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712609759.108784]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.PepperShaker, SOMA.Shaker, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.109054]: Subclasses: []\n", - "[INFO] [1712609759.109354]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.109848]: Instances: []\n", - "[INFO] [1712609759.110129]: Direct Instances: []\n", - "[INFO] [1712609759.110538]: Inverse Restrictions: []\n", - "[INFO] [1712609759.110804]: -------------------\n", - "[INFO] [1712609759.111051]: SOMA.Shaker \n", - "[INFO] [1712609759.111285]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712609759.111525]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Shaker, owl.Thing}\n", - "[INFO] [1712609759.111771]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", - "[INFO] [1712609759.112058]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.112570]: Instances: []\n", - "[INFO] [1712609759.112840]: Direct Instances: []\n", - "[INFO] [1712609759.113095]: Inverse Restrictions: []\n", - "[INFO] [1712609759.113325]: -------------------\n", - "[INFO] [1712609759.113551]: SOMA.PhaseTransition \n", - "[INFO] [1712609759.113787]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712609759.114027]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609759.114278]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712609759.114561]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712609759.115061]: Instances: []\n", - "[INFO] [1712609759.115326]: Direct Instances: []\n", - "[INFO] [1712609759.115580]: Inverse Restrictions: []\n", - "[INFO] [1712609759.115809]: -------------------\n", - "[INFO] [1712609759.116031]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712609759.116272]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712609759.116545]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.PhysicalAccessibility, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609759.116786]: Subclasses: []\n", - "[INFO] [1712609759.117073]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.117575]: Instances: []\n", - "[INFO] [1712609759.117831]: Direct Instances: []\n", - "[INFO] [1712609759.118078]: Inverse Restrictions: []\n", - "[INFO] [1712609759.118318]: -------------------\n", - "[INFO] [1712609759.118553]: SOMA.PhysicalBlockage \n", - "[INFO] [1712609759.118788]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712609759.119071]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.PhysicalBlockage, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609759.119314]: Subclasses: []\n", - "[INFO] [1712609759.119599]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.120071]: Instances: []\n", - "[INFO] [1712609759.120346]: Direct Instances: []\n", - "[INFO] [1712609759.120598]: Inverse Restrictions: []\n", - "[INFO] [1712609759.120825]: -------------------\n", - "[INFO] [1712609759.121047]: SOMA.PhysicalExistence \n", - "[INFO] [1712609759.121267]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712609759.121534]: Ancestors: {DUL.Entity, SOMA.PhysicalExistence, owl.Thing, SOMA.State, SOMA.PhysicalState, DUL.Event}\n", - "[INFO] [1712609759.121774]: Subclasses: []\n", - "[INFO] [1712609759.122056]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.122540]: Instances: []\n", - "[INFO] [1712609759.122832]: Direct Instances: []\n", - "[INFO] [1712609759.123093]: Inverse Restrictions: []\n", - "[INFO] [1712609759.123325]: -------------------\n", - "[INFO] [1712609759.123550]: SOMA.PhysicalState \n", - "[INFO] [1712609759.123957]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712609759.124323]: Ancestors: {DUL.Entity, owl.Thing, SOMA.State, SOMA.PhysicalState, DUL.Event}\n", - "[INFO] [1712609759.124584]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712609759.124878]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.125367]: Instances: []\n", - "[INFO] [1712609759.125820]: Direct Instances: []\n", - "[INFO] [1712609759.126115]: Inverse Restrictions: []\n", - "[INFO] [1712609759.126371]: -------------------\n", - "[INFO] [1712609759.126604]: SOMA.PhysicsProcess \n", - "[INFO] [1712609759.126914]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712609759.127213]: Ancestors: {DUL.Entity, DUL.Process, SOMA.PhysicsProcess, owl.Thing, DUL.Event}\n", - "[INFO] [1712609759.127487]: Subclasses: []\n", - "[INFO] [1712609759.127802]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.128290]: Instances: []\n", - "[INFO] [1712609759.128543]: Direct Instances: []\n", - "[INFO] [1712609759.128803]: Inverse Restrictions: []\n", - "[INFO] [1712609759.129039]: -------------------\n", - "[INFO] [1712609759.129271]: SOMA.PlacingTheory \n", - "[INFO] [1712609759.129506]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712609759.129774]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.PlacingTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609759.130027]: Subclasses: []\n", - "[INFO] [1712609759.130335]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.130825]: Instances: []\n", - "[INFO] [1712609759.131082]: Direct Instances: []\n", - "[INFO] [1712609759.131332]: Inverse Restrictions: []\n", - "[INFO] [1712609759.131568]: -------------------\n", - "[INFO] [1712609759.131796]: SOMA.PlanarJoint \n", - "[INFO] [1712609759.132021]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712609759.132284]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PlanarJoint}\n", - "[INFO] [1712609759.132535]: Subclasses: []\n", - "[INFO] [1712609759.132827]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.133301]: Instances: []\n", - "[INFO] [1712609759.133545]: Direct Instances: []\n", - "[INFO] [1712609759.133781]: Inverse Restrictions: []\n", - "[INFO] [1712609759.134016]: -------------------\n", - "[INFO] [1712609759.134294]: SOMA.PluginRole \n", - "[INFO] [1712609759.134607]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712609759.134907]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, SOMA.PluginRole, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.135154]: Subclasses: []\n", - "[INFO] [1712609759.135448]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.135944]: Instances: []\n", - "[INFO] [1712609759.136213]: Direct Instances: []\n", - "[INFO] [1712609759.136526]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712609759.136760]: -------------------\n", - "[INFO] [1712609759.136991]: SOMA.Pot \n", - "[INFO] [1712609759.137227]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712609759.137499]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Pot, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609759.137742]: Subclasses: [SOMA.SoupPot]\n", - "[INFO] [1712609759.138016]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.138497]: Instances: []\n", - "[INFO] [1712609759.138766]: Direct Instances: []\n", - "[INFO] [1712609759.139019]: Inverse Restrictions: []\n", - "[INFO] [1712609759.139251]: -------------------\n", - "[INFO] [1712609759.139485]: SOMA.Pourable \n", - "[INFO] [1712609759.139749]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712609759.140034]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Pourable, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.140284]: Subclasses: []\n", - "[INFO] [1712609759.140567]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.141068]: Instances: []\n", - "[INFO] [1712609759.141325]: Direct Instances: []\n", - "[INFO] [1712609759.141617]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712609759.141927]: -------------------\n", - "[INFO] [1712609759.142178]: SOMA.PouredObject \n", - "[INFO] [1712609759.142412]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609759.142681]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.PouredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.142915]: Subclasses: []\n", - "[INFO] [1712609759.143202]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.143698]: Instances: []\n", - "[INFO] [1712609759.143960]: Direct Instances: []\n", - "[INFO] [1712609759.144247]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712609759.144478]: -------------------\n", - "[INFO] [1712609759.144704]: SOMA.Pouring \n", - "[INFO] [1712609759.144935]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712609759.145211]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712609759.145465]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712609759.145749]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.146243]: Instances: []\n", - "[INFO] [1712609759.146563]: Direct Instances: []\n", - "[INFO] [1712609759.146837]: Inverse Restrictions: []\n", - "[INFO] [1712609759.147073]: -------------------\n", - "[INFO] [1712609759.147306]: SOMA.PouringInto \n", - "[INFO] [1712609759.147540]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712609759.147824]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.PouringInto, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712609759.148080]: Subclasses: []\n", - "[INFO] [1712609759.148377]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.148864]: Instances: []\n", - "[INFO] [1712609759.149154]: Direct Instances: []\n", - "[INFO] [1712609759.149433]: Inverse Restrictions: []\n", - "[INFO] [1712609759.149683]: -------------------\n", - "[INFO] [1712609759.149918]: SOMA.PouringOnto \n", - "[INFO] [1712609759.150149]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712609759.150432]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PouringOnto, owl.Thing, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712609759.150698]: Subclasses: []\n", - "[INFO] [1712609759.150995]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.151477]: Instances: []\n", - "[INFO] [1712609759.151748]: Direct Instances: []\n", - "[INFO] [1712609759.151996]: Inverse Restrictions: []\n", - "[INFO] [1712609759.152224]: -------------------\n", - "[INFO] [1712609759.152451]: SOMA.Prediction \n", - "[INFO] [1712609759.152676]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712609759.152954]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing}\n", - "[INFO] [1712609759.153206]: Subclasses: []\n", - "[INFO] [1712609759.153503]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.153976]: Instances: []\n", - "[INFO] [1712609759.154265]: Direct Instances: []\n", - "[INFO] [1712609759.154524]: Inverse Restrictions: []\n", - "[INFO] [1712609759.154771]: -------------------\n", - "[INFO] [1712609759.155001]: SOMA.Prospecting \n", - "[INFO] [1712609759.155229]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609759.155472]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, owl.Thing, SOMA.Prospecting}\n", - "[INFO] [1712609759.155728]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712609759.156020]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.156507]: Instances: []\n", - "[INFO] [1712609759.156776]: Direct Instances: []\n", - "[INFO] [1712609759.157034]: Inverse Restrictions: []\n", - "[INFO] [1712609759.157263]: -------------------\n", - "[INFO] [1712609759.157494]: SOMA.Predilection \n", - "[INFO] [1712609759.158531]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712609759.158876]: Ancestors: {SOMA.Predilection, DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609759.159144]: Subclasses: []\n", - "[INFO] [1712609759.159454]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.159941]: Instances: []\n", - "[INFO] [1712609759.160196]: Direct Instances: []\n", - "[INFO] [1712609759.160447]: Inverse Restrictions: []\n", - "[INFO] [1712609759.160685]: -------------------\n", - "[INFO] [1712609759.160920]: SOMA.PreferenceOrder \n", - "[INFO] [1712609759.161553]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712609759.161835]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing, SOMA.PreferenceOrder}\n", - "[INFO] [1712609759.162097]: Subclasses: []\n", - "[INFO] [1712609759.162416]: Properties: [rdf-schema.label, SOMA.orders, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.162905]: Instances: []\n", - "[INFO] [1712609759.163161]: Direct Instances: []\n", - "[INFO] [1712609759.163405]: Inverse Restrictions: []\n", - "[INFO] [1712609759.163648]: -------------------\n", - "[INFO] [1712609759.163882]: SOMA.PreferenceRegion \n", - "[INFO] [1712609759.164128]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712609759.164397]: Ancestors: {DUL.Entity, SOMA.PreferenceRegion, DUL.Region, DUL.Abstract, DUL.SocialObjectAttribute, owl.Thing}\n", - "[INFO] [1712609759.164642]: Subclasses: []\n", - "[INFO] [1712609759.164937]: Properties: [rdf-schema.comment, DUL.isRegionFor, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609759.165413]: Instances: []\n", - "[INFO] [1712609759.165675]: Direct Instances: []\n", - "[INFO] [1712609759.165917]: Inverse Restrictions: []\n", - "[INFO] [1712609759.166156]: -------------------\n", - "[INFO] [1712609759.166389]: SOMA.PrismaticJoint \n", - "[INFO] [1712609759.166628]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712609759.166907]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PrismaticJoint}\n", - "[INFO] [1712609759.167146]: Subclasses: []\n", - "[INFO] [1712609759.167589]: Properties: [rdf-schema.comment, SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.168212]: Instances: []\n", - "[INFO] [1712609759.168599]: Direct Instances: []\n", - "[INFO] [1712609759.168983]: Inverse Restrictions: []\n", - "[INFO] [1712609759.169348]: -------------------\n", - "[INFO] [1712609759.169710]: SOMA.ProcessFlow \n", - "[INFO] [1712609759.169993]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712609759.170282]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.ProcessFlow}\n", - "[INFO] [1712609759.170543]: Subclasses: []\n", - "[INFO] [1712609759.170844]: Properties: [rdf-schema.comment, SOMA.definesProcess, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.171330]: Instances: []\n", - "[INFO] [1712609759.171612]: Direct Instances: []\n", - "[INFO] [1712609759.172280]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712609759.172528]: -------------------\n", - "[INFO] [1712609759.172766]: SOMA.Progression \n", - "[INFO] [1712609759.172999]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712609759.173844]: Ancestors: {DUL.Entity, SOMA.Progression, DUL.Situation, owl.Thing}\n", - "[INFO] [1712609759.174119]: Subclasses: []\n", - "[INFO] [1712609759.174443]: Properties: [rdf-schema.comment, DUL.satisfies, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.174933]: Instances: []\n", - "[INFO] [1712609759.175200]: Direct Instances: []\n", - "[INFO] [1712609759.175466]: Inverse Restrictions: []\n", - "[INFO] [1712609759.175714]: -------------------\n", - "[INFO] [1712609759.175957]: SOMA.Protector \n", - "[INFO] [1712609759.176190]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712609759.176464]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Protector, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609759.176725]: Subclasses: []\n", - "[INFO] [1712609759.177028]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.177526]: Instances: []\n", - "[INFO] [1712609759.177799]: Direct Instances: []\n", - "[INFO] [1712609759.178046]: Inverse Restrictions: []\n", - "[INFO] [1712609759.178316]: -------------------\n", - "[INFO] [1712609759.178555]: SOMA.ProximalTheory \n", - "[INFO] [1712609759.178813]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712609759.179086]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, SOMA.ProximalTheory, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609759.179326]: Subclasses: []\n", - "[INFO] [1712609759.179625]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.180142]: Instances: []\n", - "[INFO] [1712609759.180423]: Direct Instances: []\n", - "[INFO] [1712609759.180680]: Inverse Restrictions: []\n", - "[INFO] [1712609759.180920]: -------------------\n", - "[INFO] [1712609759.181168]: SOMA.PushingAway \n", - "[INFO] [1712609759.181404]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712609759.181697]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.Actuating, SOMA.PushingAway}\n", - "[INFO] [1712609759.181947]: Subclasses: []\n", - "[INFO] [1712609759.182262]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.183036]: Instances: []\n", - "[INFO] [1712609759.183337]: Direct Instances: []\n", - "[INFO] [1712609759.183596]: Inverse Restrictions: []\n", - "[INFO] [1712609759.183839]: -------------------\n", - "[INFO] [1712609759.184076]: SOMA.PushingDown \n", - "[INFO] [1712609759.184314]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712609759.184587]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.PushingDown, SOMA.Actuating}\n", - "[INFO] [1712609759.184828]: Subclasses: []\n", - "[INFO] [1712609759.185115]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.185607]: Instances: []\n", - "[INFO] [1712609759.185865]: Direct Instances: []\n", - "[INFO] [1712609759.186117]: Inverse Restrictions: []\n", - "[INFO] [1712609759.186352]: -------------------\n", - "[INFO] [1712609759.186580]: SOMA.PuttingDown \n", - "[INFO] [1712609759.186818]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609759.187090]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.PuttingDown, owl.Thing}\n", - "[INFO] [1712609759.187330]: Subclasses: []\n", - "[INFO] [1712609759.187610]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.188095]: Instances: []\n", - "[INFO] [1712609759.188358]: Direct Instances: []\n", - "[INFO] [1712609759.188603]: Inverse Restrictions: []\n", - "[INFO] [1712609759.188826]: -------------------\n", - "[INFO] [1712609759.189045]: SOMA.QualityTransition \n", - "[INFO] [1712609759.189268]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712609759.189538]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.QualityTransition, DUL.Transition, owl.Thing}\n", - "[INFO] [1712609759.189774]: Subclasses: []\n", - "[INFO] [1712609759.190075]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.190572]: Instances: []\n", - "[INFO] [1712609759.190844]: Direct Instances: []\n", - "[INFO] [1712609759.191094]: Inverse Restrictions: []\n", - "[INFO] [1712609759.191321]: -------------------\n", - "[INFO] [1712609759.191550]: SOMA.Query \n", - "[INFO] [1712609759.191782]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712609759.192050]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, SOMA.Query, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Message}\n", - "[INFO] [1712609759.192282]: Subclasses: []\n", - "[INFO] [1712609759.192566]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.193072]: Instances: []\n", - "[INFO] [1712609759.193347]: Direct Instances: []\n", - "[INFO] [1712609759.193645]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712609759.193880]: -------------------\n", - "[INFO] [1712609759.194108]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712609759.194363]: Super classes: [owl.Thing]\n", - "[INFO] [1712609759.196307]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", - "[INFO] [1712609759.196593]: Subclasses: []\n", - "[INFO] [1712609759.196897]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.197399]: Instances: []\n", - "[INFO] [1712609759.197668]: Direct Instances: []\n", - "[INFO] [1712609759.197920]: Inverse Restrictions: []\n", - "[INFO] [1712609759.198162]: -------------------\n", - "[INFO] [1712609759.198393]: SOMA.QueryEngine \n", - "[INFO] [1712609759.198630]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609759.198903]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.QueryEngine, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.199153]: Subclasses: []\n", - "[INFO] [1712609759.199444]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.199920]: Instances: []\n", - "[INFO] [1712609759.200200]: Direct Instances: []\n", - "[INFO] [1712609759.200456]: Inverse Restrictions: []\n", - "[INFO] [1712609759.200688]: -------------------\n", - "[INFO] [1712609759.200917]: SOMA.RaspberryJamJar \n", - "[INFO] [1712609759.201145]: Super classes: [SOMA.JamJar]\n", - "[INFO] [1712609759.201412]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.RaspberryJamJar, DUL.PhysicalArtifact, DUL.Object, SOMA.JamJar, DUL.PhysicalObject, owl.Thing, SOMA.Jar}\n", - "[INFO] [1712609759.201684]: Subclasses: []\n", - "[INFO] [1712609759.201982]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.202477]: Instances: []\n", - "[INFO] [1712609759.202739]: Direct Instances: []\n", - "[INFO] [1712609759.202989]: Inverse Restrictions: []\n", - "[INFO] [1712609759.203219]: -------------------\n", - "[INFO] [1712609759.203463]: SOMA.Reaching \n", - "[INFO] [1712609759.203710]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712609759.204000]: Ancestors: {SOMA.PhysicalTask, SOMA.Reaching, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712609759.204241]: Subclasses: []\n", - "[INFO] [1712609759.204550]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.205038]: Instances: []\n", - "[INFO] [1712609759.205302]: Direct Instances: []\n", - "[INFO] [1712609759.205556]: Inverse Restrictions: []\n", - "[INFO] [1712609759.205787]: -------------------\n", - "[INFO] [1712609759.206027]: SOMA.Retracting \n", - "[INFO] [1712609759.206266]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712609759.206538]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing, SOMA.Retracting}\n", - "[INFO] [1712609759.206794]: Subclasses: []\n", - "[INFO] [1712609759.207098]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.207650]: Instances: []\n", - "[INFO] [1712609759.207929]: Direct Instances: []\n", - "[INFO] [1712609759.208196]: Inverse Restrictions: []\n", - "[INFO] [1712609759.208430]: -------------------\n", - "[INFO] [1712609759.208662]: SOMA.Reasoner \n", - "[INFO] [1712609759.208907]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609759.209154]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.209417]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712609759.209710]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.210234]: Instances: []\n", - "[INFO] [1712609759.210724]: Direct Instances: []\n", - "[INFO] [1712609759.211101]: Inverse Restrictions: []\n", - "[INFO] [1712609759.211444]: -------------------\n", - "[INFO] [1712609759.211786]: SOMA.RecipientRole \n", - "[INFO] [1712609759.212147]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712609759.212549]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.RecipientRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.212903]: Subclasses: []\n", - "[INFO] [1712609759.213302]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.213915]: Instances: []\n", - "[INFO] [1712609759.214306]: Direct Instances: []\n", - "[INFO] [1712609759.214660]: Inverse Restrictions: []\n", - "[INFO] [1712609759.214995]: -------------------\n", - "[INFO] [1712609759.215330]: SOMA.RecordedEpisode \n", - "[INFO] [1712609759.215706]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712609759.216059]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712609759.216422]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712609759.216810]: Properties: [rdf-schema.comment, SOMA.includesRecord, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.217397]: Instances: []\n", - "[INFO] [1712609759.217765]: Direct Instances: []\n", - "[INFO] [1712609759.218130]: Inverse Restrictions: []\n", - "[INFO] [1712609759.218480]: -------------------\n", - "[INFO] [1712609759.218818]: SOMA.RedColor \n", - "[INFO] [1712609759.219144]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712609759.219512]: Ancestors: {DUL.Entity, DUL.Region, SOMA.ColorRegion, DUL.Abstract, SOMA.RedColor, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609759.219866]: Subclasses: []\n", - "[INFO] [1712609759.220266]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.220860]: Instances: []\n", - "[INFO] [1712609759.221216]: Direct Instances: []\n", - "[INFO] [1712609759.221554]: Inverse Restrictions: []\n", - "[INFO] [1712609759.221882]: -------------------\n", - "[INFO] [1712609759.222225]: SOMA.Refrigerator \n", - "[INFO] [1712609759.222572]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", - "[INFO] [1712609759.222964]: Ancestors: {SOMA.Appliance, DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Refrigerator, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.223309]: Subclasses: []\n", - "[INFO] [1712609759.223710]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.224326]: Instances: []\n", - "[INFO] [1712609759.224711]: Direct Instances: []\n", - "[INFO] [1712609759.225062]: Inverse Restrictions: []\n", - "[INFO] [1712609759.225390]: -------------------\n", - "[INFO] [1712609759.225728]: SOMA.Reification \n", - "[INFO] [1712609759.226099]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712609759.226482]: Ancestors: {DUL.Entity, SOMA.Reification, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609759.226823]: Subclasses: []\n", - "[INFO] [1712609759.227232]: Properties: [rdf-schema.comment, SOMA.isReificationOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.227873]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712609759.228254]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712609759.228609]: Inverse Restrictions: []\n", - "[INFO] [1712609759.228939]: -------------------\n", - "[INFO] [1712609759.229261]: SOMA.RelationalDatabase \n", - "[INFO] [1712609759.229597]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712609759.229968]: Ancestors: {SOMA.RelationalDatabase, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.230320]: Subclasses: []\n", - "[INFO] [1712609759.230726]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.231340]: Instances: []\n", - "[INFO] [1712609759.231733]: Direct Instances: []\n", - "[INFO] [1712609759.232075]: Inverse Restrictions: []\n", - "[INFO] [1712609759.232408]: -------------------\n", - "[INFO] [1712609759.232742]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712609759.233088]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712609759.233483]: Ancestors: {DUL.Entity, SOMA.RelationalQueryLanguage, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.233814]: Subclasses: []\n", - "[INFO] [1712609759.234203]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.234798]: Instances: []\n", - "[INFO] [1712609759.235157]: Direct Instances: []\n", - "[INFO] [1712609759.235493]: Inverse Restrictions: []\n", - "[INFO] [1712609759.235811]: -------------------\n", - "[INFO] [1712609759.236126]: SOMA.RelevantPart \n", - "[INFO] [1712609759.236451]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712609759.236814]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing, SOMA.RelevantPart}\n", - "[INFO] [1712609759.237144]: Subclasses: []\n", - "[INFO] [1712609759.237521]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.238085]: Instances: []\n", - "[INFO] [1712609759.238497]: Direct Instances: []\n", - "[INFO] [1712609759.238799]: Inverse Restrictions: []\n", - "[INFO] [1712609759.239057]: -------------------\n", - "[INFO] [1712609759.239303]: SOMA.Remembering \n", - "[INFO] [1712609759.239550]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712609759.239838]: Ancestors: {SOMA.Remembering, owl.Thing}\n", - "[INFO] [1712609759.240094]: Subclasses: []\n", - "[INFO] [1712609759.240398]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.240891]: Instances: []\n", - "[INFO] [1712609759.241181]: Direct Instances: []\n", - "[INFO] [1712609759.241524]: Inverse Restrictions: []\n", - "[INFO] [1712609759.241797]: -------------------\n", - "[INFO] [1712609759.242051]: SOMA.Retrospecting \n", - "[INFO] [1712609759.242306]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712609759.242584]: Ancestors: {SOMA.InformationAcquisition, SOMA.Retrospecting, owl.Thing}\n", - "[INFO] [1712609759.242851]: Subclasses: []\n", - "[INFO] [1712609759.243159]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.243649]: Instances: []\n", - "[INFO] [1712609759.243913]: Direct Instances: []\n", - "[INFO] [1712609759.244212]: Inverse Restrictions: []\n", - "[INFO] [1712609759.244456]: -------------------\n", - "[INFO] [1712609759.244694]: SOMA.RemovedObject \n", - "[INFO] [1712609759.244926]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712609759.245209]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExcludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.RemovedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.245451]: Subclasses: []\n", - "[INFO] [1712609759.245742]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.246244]: Instances: []\n", - "[INFO] [1712609759.246515]: Direct Instances: []\n", - "[INFO] [1712609759.246771]: Inverse Restrictions: []\n", - "[INFO] [1712609759.247002]: -------------------\n", - "[INFO] [1712609759.247233]: SOMA.Replanning \n", - "[INFO] [1712609759.247463]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712609759.247743]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, SOMA.Replanning, owl.Thing}\n", - "[INFO] [1712609759.248010]: Subclasses: []\n", - "[INFO] [1712609759.248307]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.248804]: Instances: []\n", - "[INFO] [1712609759.249074]: Direct Instances: []\n", - "[INFO] [1712609759.249538]: Inverse Restrictions: []\n", - "[INFO] [1712609759.249884]: -------------------\n", - "[INFO] [1712609759.250122]: SOMA.RevoluteJoint \n", - "[INFO] [1712609759.250373]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712609759.250664]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, SOMA.RevoluteJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.250927]: Subclasses: []\n", - "[INFO] [1712609759.251248]: Properties: [rdf-schema.comment, SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.251763]: Instances: []\n", - "[INFO] [1712609759.252029]: Direct Instances: []\n", - "[INFO] [1712609759.252282]: Inverse Restrictions: []\n", - "[INFO] [1712609759.252532]: -------------------\n", - "[INFO] [1712609759.252777]: SOMA.Surface \n", - "[INFO] [1712609759.253012]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712609759.253264]: Ancestors: {DUL.Entity, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", - "[INFO] [1712609759.253535]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712609759.253834]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.254334]: Instances: []\n", - "[INFO] [1712609759.254625]: Direct Instances: []\n", - "[INFO] [1712609759.254880]: Inverse Restrictions: []\n", - "[INFO] [1712609759.255125]: -------------------\n", - "[INFO] [1712609759.255364]: SOMA.Rubbing \n", - "[INFO] [1712609759.255598]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712609759.255880]: Ancestors: {SOMA.Rubbing, SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.256145]: Subclasses: []\n", - "[INFO] [1712609759.256442]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.256927]: Instances: []\n", - "[INFO] [1712609759.257200]: Direct Instances: []\n", - "[INFO] [1712609759.257463]: Inverse Restrictions: []\n", - "[INFO] [1712609759.257709]: -------------------\n", - "[INFO] [1712609759.257948]: SOMA.SaladBowl \n", - "[INFO] [1712609759.258188]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712609759.258484]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Bowl, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.SaladBowl, SOMA.DesignedTool}\n", - "[INFO] [1712609759.258734]: Subclasses: []\n", - "[INFO] [1712609759.259025]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.259507]: Instances: []\n", - "[INFO] [1712609759.259783]: Direct Instances: []\n", - "[INFO] [1712609759.260047]: Inverse Restrictions: []\n", - "[INFO] [1712609759.260295]: -------------------\n", - "[INFO] [1712609759.260531]: SOMA.SaltShaker \n", - "[INFO] [1712609759.260769]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712609759.261046]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Shaker, SOMA.SaltShaker, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.261303]: Subclasses: []\n", - "[INFO] [1712609759.261599]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.262081]: Instances: []\n", - "[INFO] [1712609759.262372]: Direct Instances: []\n", - "[INFO] [1712609759.262639]: Inverse Restrictions: []\n", - "[INFO] [1712609759.262889]: -------------------\n", - "[INFO] [1712609759.263131]: SOMA.Scene \n", - "[INFO] [1712609759.263385]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712609759.263666]: Ancestors: {SOMA.Scene, DUL.Situation, DUL.Entity, owl.Thing}\n", - "[INFO] [1712609759.263914]: Subclasses: []\n", - "[INFO] [1712609759.264260]: Properties: [rdf-schema.comment, DUL.satisfies, rdf-schema.isDefinedBy, DUL.includesEvent]\n", - "[INFO] [1712609759.264753]: Instances: []\n", - "[INFO] [1712609759.265028]: Direct Instances: []\n", - "[INFO] [1712609759.265330]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712609759.265579]: -------------------\n", - "[INFO] [1712609759.265818]: SOMA.SelectedObject \n", - "[INFO] [1712609759.266053]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712609759.266334]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.SelectedObject, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.266588]: Subclasses: []\n", - "[INFO] [1712609759.266897]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.267391]: Instances: []\n", - "[INFO] [1712609759.267662]: Direct Instances: []\n", - "[INFO] [1712609759.267988]: Inverse Restrictions: []\n", - "[INFO] [1712609759.268240]: -------------------\n", - "[INFO] [1712609759.268481]: SOMA.Selecting \n", - "[INFO] [1712609759.268715]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712609759.268988]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.Selecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712609759.269244]: Subclasses: []\n", - "[INFO] [1712609759.269545]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.270025]: Instances: []\n", - "[INFO] [1712609759.270316]: Direct Instances: []\n", - "[INFO] [1712609759.270570]: Inverse Restrictions: []\n", - "[INFO] [1712609759.270800]: -------------------\n", - "[INFO] [1712609759.271041]: SOMA.SelectingItem \n", - "[INFO] [1712609759.271734]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712609759.272063]: Ancestors: {SOMA.SelectingItem, SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712609759.272339]: Subclasses: []\n", - "[INFO] [1712609759.272655]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.273160]: Instances: []\n", - "[INFO] [1712609759.273422]: Direct Instances: []\n", - "[INFO] [1712609759.273678]: Inverse Restrictions: []\n", - "[INFO] [1712609759.274031]: -------------------\n", - "[INFO] [1712609759.274312]: SOMA.SelfReflection \n", - "[INFO] [1712609759.274570]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712609759.274871]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MetacognitiveControlling, SOMA.MentalTask, SOMA.SelfReflection}\n", - "[INFO] [1712609759.275123]: Subclasses: []\n", - "[INFO] [1712609759.275420]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.275920]: Instances: []\n", - "[INFO] [1712609759.276187]: Direct Instances: []\n", - "[INFO] [1712609759.276432]: Inverse Restrictions: []\n", - "[INFO] [1712609759.276664]: -------------------\n", - "[INFO] [1712609759.276894]: SOMA.Serving \n", - "[INFO] [1712609759.278283]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712609759.278608]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Delivering, owl.Thing, SOMA.Serving, SOMA.Actuating}\n", - "[INFO] [1712609759.278862]: Subclasses: []\n", - "[INFO] [1712609759.279163]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.279670]: Instances: []\n", - "[INFO] [1712609759.279950]: Direct Instances: []\n", - "[INFO] [1712609759.280196]: Inverse Restrictions: []\n", - "[INFO] [1712609759.280430]: -------------------\n", - "[INFO] [1712609759.280659]: SOMA.SettingGripper \n", - "[INFO] [1712609759.280887]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712609759.281160]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.SettingGripper, owl.Thing, SOMA.AssumingPose}\n", - "[INFO] [1712609759.281425]: Subclasses: []\n", - "[INFO] [1712609759.281731]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.282233]: Instances: []\n", - "[INFO] [1712609759.282498]: Direct Instances: []\n", - "[INFO] [1712609759.282744]: Inverse Restrictions: []\n", - "[INFO] [1712609759.282981]: -------------------\n", - "[INFO] [1712609759.283221]: SOMA.6DPose \n", - "[INFO] [1712609759.283492]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712609759.283778]: Ancestors: {DUL.Entity, DUL.Region, SOMA.6DPose, DUL.Abstract, owl.Thing, DUL.SpaceRegion}\n", - "[INFO] [1712609759.284017]: Subclasses: []\n", - "[INFO] [1712609759.284309]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasPositionData]\n", - "[INFO] [1712609759.284811]: Instances: []\n", - "[INFO] [1712609759.285078]: Direct Instances: []\n", - "[INFO] [1712609759.285373]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712609759.285612]: -------------------\n", - "[INFO] [1712609759.285851]: SOMA.Sharpness \n", - "[INFO] [1712609759.286088]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609759.286371]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Sharpness, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609759.286627]: Subclasses: []\n", - "[INFO] [1712609759.286914]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.287397]: Instances: []\n", - "[INFO] [1712609759.287674]: Direct Instances: []\n", - "[INFO] [1712609759.287939]: Inverse Restrictions: []\n", - "[INFO] [1712609759.288181]: -------------------\n", - "[INFO] [1712609759.288417]: SOMA.Simulating \n", - "[INFO] [1712609759.288653]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712609759.288912]: Ancestors: {SOMA.DerivingInformation, SOMA.Simulating, SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing}\n", - "[INFO] [1712609759.289171]: Subclasses: []\n", - "[INFO] [1712609759.289467]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.289960]: Instances: []\n", - "[INFO] [1712609759.290235]: Direct Instances: []\n", - "[INFO] [1712609759.290493]: Inverse Restrictions: []\n", - "[INFO] [1712609759.290746]: -------------------\n", - "[INFO] [1712609759.290986]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712609759.291221]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712609759.291491]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.Simulation_Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.291744]: Subclasses: []\n", - "[INFO] [1712609759.292044]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.292539]: Instances: []\n", - "[INFO] [1712609759.292816]: Direct Instances: []\n", - "[INFO] [1712609759.293074]: Inverse Restrictions: []\n", - "[INFO] [1712609759.293326]: -------------------\n", - "[INFO] [1712609759.293564]: SOMA.Sink \n", - "[INFO] [1712609759.293804]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609759.294077]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Sink, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609759.294353]: Subclasses: []\n", - "[INFO] [1712609759.294657]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.295153]: Instances: []\n", - "[INFO] [1712609759.295436]: Direct Instances: []\n", - "[INFO] [1712609759.295698]: Inverse Restrictions: []\n", - "[INFO] [1712609759.295946]: -------------------\n", - "[INFO] [1712609759.296183]: SOMA.Size \n", - "[INFO] [1712609759.296419]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609759.296693]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Size, owl.Thing}\n", - "[INFO] [1712609759.296956]: Subclasses: []\n", - "[INFO] [1712609759.297251]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.297743]: Instances: []\n", - "[INFO] [1712609759.298010]: Direct Instances: []\n", - "[INFO] [1712609759.298267]: Inverse Restrictions: []\n", - "[INFO] [1712609759.298519]: -------------------\n", - "[INFO] [1712609759.298766]: SOMA.Slicing \n", - "[INFO] [1712609759.299003]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712609759.299271]: Ancestors: {SOMA.Cutting, SOMA.Slicing, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609759.299517]: Subclasses: []\n", - "[INFO] [1712609759.299796]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.300299]: Instances: []\n", - "[INFO] [1712609759.300572]: Direct Instances: []\n", - "[INFO] [1712609759.300822]: Inverse Restrictions: []\n", - "[INFO] [1712609759.301067]: -------------------\n", - "[INFO] [1712609759.301308]: SOMA.Sluggishness \n", - "[INFO] [1712609759.301542]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712609759.301818]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Sluggishness, DUL.Diagnosis}\n", - "[INFO] [1712609759.302067]: Subclasses: []\n", - "[INFO] [1712609759.302369]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.302875]: Instances: []\n", - "[INFO] [1712609759.303141]: Direct Instances: []\n", - "[INFO] [1712609759.303391]: Inverse Restrictions: []\n", - "[INFO] [1712609759.303632]: -------------------\n", - "[INFO] [1712609759.303869]: SOMA.SocialState \n", - "[INFO] [1712609759.304127]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712609759.304423]: Ancestors: {DUL.Entity, SOMA.SocialState, owl.Thing, SOMA.State, DUL.Event}\n", - "[INFO] [1712609759.304678]: Subclasses: []\n", - "[INFO] [1712609759.304973]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.305464]: Instances: []\n", - "[INFO] [1712609759.305720]: Direct Instances: []\n", - "[INFO] [1712609759.305974]: Inverse Restrictions: []\n", - "[INFO] [1712609759.306226]: -------------------\n", - "[INFO] [1712609759.306481]: SOMA.Sofa \n", - "[INFO] [1712609759.306727]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712609759.306993]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Sofa, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", - "[INFO] [1712609759.307255]: Subclasses: []\n", - "[INFO] [1712609759.307555]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712609759.308053]: Instances: []\n", - "[INFO] [1712609759.308320]: Direct Instances: []\n", - "[INFO] [1712609759.308574]: Inverse Restrictions: []\n", - "[INFO] [1712609759.308814]: -------------------\n", - "[INFO] [1712609759.309065]: SOMA.Software_Configuration \n", - "[INFO] [1712609759.309323]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712609759.309612]: Ancestors: {DUL.Entity, DUL.Collection, DUL.SocialObject, DUL.Configuration, SOMA.Software_Configuration, DUL.Object, owl.Thing}\n", - "[INFO] [1712609759.309859]: Subclasses: []\n", - "[INFO] [1712609759.310166]: Properties: [rdf-schema.label, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.310685]: Instances: []\n", - "[INFO] [1712609759.310962]: Direct Instances: []\n", - "[INFO] [1712609759.311314]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712609759.311560]: -------------------\n", - "[INFO] [1712609759.311800]: SOMA.SoftwareLibrary \n", - "[INFO] [1712609759.312040]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712609759.312325]: Ancestors: {DUL.Entity, SOMA.SoftwareLibrary, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.Software}\n", - "[INFO] [1712609759.312590]: Subclasses: []\n", - "[INFO] [1712609759.312883]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.313380]: Instances: []\n", - "[INFO] [1712609759.313666]: Direct Instances: []\n", - "[INFO] [1712609759.313931]: Inverse Restrictions: []\n", - "[INFO] [1712609759.314179]: -------------------\n", - "[INFO] [1712609759.314423]: SOMA.SoupPot \n", - "[INFO] [1712609759.314662]: Super classes: [SOMA.Pot]\n", - "[INFO] [1712609759.314934]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Pot, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.SoupPot, SOMA.DesignedTool}\n", - "[INFO] [1712609759.315194]: Subclasses: []\n", - "[INFO] [1712609759.315485]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.315979]: Instances: []\n", - "[INFO] [1712609759.316238]: Direct Instances: []\n", - "[INFO] [1712609759.316478]: Inverse Restrictions: []\n", - "[INFO] [1712609759.316715]: -------------------\n", - "[INFO] [1712609759.316951]: SOMA.SourceMaterialRole \n", - "[INFO] [1712609759.317193]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712609759.317462]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.SourceMaterialRole, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.317706]: Subclasses: []\n", - "[INFO] [1712609759.317989]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.318496]: Instances: []\n", - "[INFO] [1712609759.318769]: Direct Instances: []\n", - "[INFO] [1712609759.319023]: Inverse Restrictions: []\n", - "[INFO] [1712609759.319264]: -------------------\n", - "[INFO] [1712609759.319499]: SOMA.Spatula \n", - "[INFO] [1712609759.319743]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", - "[INFO] [1712609759.320028]: Ancestors: {DUL.Entity, SOMA.Spatula, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609759.320283]: Subclasses: []\n", - "[INFO] [1712609759.320575]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.321064]: Instances: []\n", - "[INFO] [1712609759.321337]: Direct Instances: []\n", - "[INFO] [1712609759.321592]: Inverse Restrictions: []\n", - "[INFO] [1712609759.321831]: -------------------\n", - "[INFO] [1712609759.322066]: SOMA.SphereShape \n", - "[INFO] [1712609759.322357]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712609759.322674]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, SOMA.SphereShape}\n", - "[INFO] [1712609759.322946]: Subclasses: []\n", - "[INFO] [1712609759.323261]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712609759.323766]: Instances: []\n", - "[INFO] [1712609759.324048]: Direct Instances: []\n", - "[INFO] [1712609759.324307]: Inverse Restrictions: []\n", - "[INFO] [1712609759.324555]: -------------------\n", - "[INFO] [1712609759.324795]: SOMA.Spoon \n", - "[INFO] [1712609759.325690]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712609759.326147]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, SOMA.Tableware, DUL.PhysicalObject, owl.Thing, SOMA.Spoon, SOMA.DesignedTool}\n", - "[INFO] [1712609759.326468]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", - "[INFO] [1712609759.326802]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712609759.327330]: Instances: []\n", - "[INFO] [1712609759.327623]: Direct Instances: []\n", - "[INFO] [1712609759.327920]: Inverse Restrictions: []\n", - "[INFO] [1712609759.328199]: -------------------\n", - "[INFO] [1712609759.328524]: SOMA.Standing \n", - "[INFO] [1712609759.328861]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712609759.329170]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Standing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.329448]: Subclasses: []\n", - "[INFO] [1712609759.329758]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.330263]: Instances: []\n", - "[INFO] [1712609759.330536]: Direct Instances: []\n", - "[INFO] [1712609759.330817]: Inverse Restrictions: []\n", - "[INFO] [1712609759.331069]: -------------------\n", - "[INFO] [1712609759.331328]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712609759.331573]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712609759.331845]: Ancestors: {DUL.Entity, SOMA.StaticFrictionAttribute, DUL.Region, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609759.332118]: Subclasses: []\n", - "[INFO] [1712609759.332443]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.332966]: Instances: []\n", - "[INFO] [1712609759.333246]: Direct Instances: []\n", - "[INFO] [1712609759.333504]: Inverse Restrictions: []\n", - "[INFO] [1712609759.333752]: -------------------\n", - "[INFO] [1712609759.334003]: SOMA.Status \n", - "[INFO] [1712609759.334273]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712609759.334559]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Status, DUL.SocialObject, DUL.Object, DUL.Parameter, owl.Thing}\n", - "[INFO] [1712609759.334820]: Subclasses: []\n", - "[INFO] [1712609759.335118]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.335634]: Instances: []\n", - "[INFO] [1712609759.335917]: Direct Instances: []\n", - "[INFO] [1712609759.336203]: Inverse Restrictions: []\n", - "[INFO] [1712609759.336453]: -------------------\n", - "[INFO] [1712609759.336703]: SOMA.StatusFailure \n", - "[INFO] [1712609759.336961]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609759.337236]: Ancestors: {SOMA.StatusFailure, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609759.337490]: Subclasses: []\n", - "[INFO] [1712609759.337784]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.338393]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712609759.338726]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712609759.339013]: Inverse Restrictions: []\n", - "[INFO] [1712609759.339270]: -------------------\n", - "[INFO] [1712609759.339524]: SOMA.StimulusRole \n", - "[INFO] [1712609759.339776]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712609759.340061]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.StimulusRole}\n", - "[INFO] [1712609759.340331]: Subclasses: []\n", - "[INFO] [1712609759.340637]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.341140]: Instances: []\n", - "[INFO] [1712609759.341413]: Direct Instances: []\n", - "[INFO] [1712609759.341672]: Inverse Restrictions: []\n", - "[INFO] [1712609759.341926]: -------------------\n", - "[INFO] [1712609759.342173]: SOMA.Stirring \n", - "[INFO] [1712609759.342430]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712609759.342711]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Stirring, SOMA.Mixing}\n", - "[INFO] [1712609759.342995]: Subclasses: []\n", - "[INFO] [1712609759.343335]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.343849]: Instances: []\n", - "[INFO] [1712609759.344112]: Direct Instances: []\n", - "[INFO] [1712609759.344361]: Inverse Restrictions: []\n", - "[INFO] [1712609759.344602]: -------------------\n", - "[INFO] [1712609759.344856]: SOMA.Storage \n", - "[INFO] [1712609759.345104]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712609759.345379]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, SOMA.Storage, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.345626]: Subclasses: []\n", - "[INFO] [1712609759.345926]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.346442]: Instances: []\n", - "[INFO] [1712609759.346724]: Direct Instances: []\n", - "[INFO] [1712609759.346978]: Inverse Restrictions: []\n", - "[INFO] [1712609759.347224]: -------------------\n", - "[INFO] [1712609759.347473]: SOMA.Stove \n", - "[INFO] [1712609759.347718]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", - "[INFO] [1712609759.348002]: Ancestors: {SOMA.Appliance, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Stove, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.348261]: Subclasses: []\n", - "[INFO] [1712609759.348556]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.349042]: Instances: []\n", - "[INFO] [1712609759.349314]: Direct Instances: []\n", - "[INFO] [1712609759.349574]: Inverse Restrictions: []\n", - "[INFO] [1712609759.349832]: -------------------\n", - "[INFO] [1712609759.350074]: SOMA.StructuralDesign \n", - "[INFO] [1712609759.350320]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712609759.350582]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.StructuralDesign, owl.Thing}\n", - "[INFO] [1712609759.350829]: Subclasses: []\n", - "[INFO] [1712609759.351127]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.351631]: Instances: []\n", - "[INFO] [1712609759.351897]: Direct Instances: []\n", - "[INFO] [1712609759.352144]: Inverse Restrictions: []\n", - "[INFO] [1712609759.352396]: -------------------\n", - "[INFO] [1712609759.352639]: SOMA.TaskInvocation \n", - "[INFO] [1712609759.352910]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712609759.353190]: Ancestors: {DUL.Workflow, DUL.Entity, DUL.Plan, DUL.SocialObject, DUL.Object, SOMA.TaskInvocation, DUL.Description, owl.Thing}\n", - "[INFO] [1712609759.353461]: Subclasses: []\n", - "[INFO] [1712609759.353770]: Properties: [rdf-schema.comment, DUL.definesTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.354262]: Instances: []\n", - "[INFO] [1712609759.354529]: Direct Instances: []\n", - "[INFO] [1712609759.354854]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712609759.355102]: -------------------\n", - "[INFO] [1712609759.355340]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712609759.355575]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712609759.355823]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609759.356085]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712609759.356380]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.356884]: Instances: []\n", - "[INFO] [1712609759.357144]: Direct Instances: []\n", - "[INFO] [1712609759.357396]: Inverse Restrictions: []\n", - "[INFO] [1712609759.357643]: -------------------\n", - "[INFO] [1712609759.357884]: SOMA.Successfulness \n", - "[INFO] [1712609759.358121]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712609759.358404]: Ancestors: {DUL.Entity, SOMA.Successfulness, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609759.358668]: Subclasses: []\n", - "[INFO] [1712609759.358971]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.359457]: Instances: []\n", - "[INFO] [1712609759.359728]: Direct Instances: []\n", - "[INFO] [1712609759.359981]: Inverse Restrictions: []\n", - "[INFO] [1712609759.360232]: -------------------\n", - "[INFO] [1712609759.360470]: SOMA.SugarDispenser \n", - "[INFO] [1712609759.360709]: Super classes: [SOMA.Dispenser]\n", - "[INFO] [1712609759.360977]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Dispenser, SOMA.SugarDispenser, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.361240]: Subclasses: []\n", - "[INFO] [1712609759.361534]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.362113]: Instances: []\n", - "[INFO] [1712609759.362408]: Direct Instances: []\n", - "[INFO] [1712609759.362667]: Inverse Restrictions: []\n", - "[INFO] [1712609759.362902]: -------------------\n", - "[INFO] [1712609759.363132]: SOMA.SupportState \n", - "[INFO] [1712609759.364176]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712609759.364505]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.SupportState, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.FunctionalControl}\n", - "[INFO] [1712609759.364773]: Subclasses: []\n", - "[INFO] [1712609759.365077]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.365571]: Instances: []\n", - "[INFO] [1712609759.365842]: Direct Instances: []\n", - "[INFO] [1712609759.366091]: Inverse Restrictions: []\n", - "[INFO] [1712609759.366336]: -------------------\n", - "[INFO] [1712609759.366566]: SOMA.Supporter \n", - "[INFO] [1712609759.366802]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712609759.367076]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Supporter, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609759.367344]: Subclasses: []\n", - "[INFO] [1712609759.367644]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.368135]: Instances: []\n", - "[INFO] [1712609759.368416]: Direct Instances: []\n", - "[INFO] [1712609759.368742]: Inverse Restrictions: []\n", - "[INFO] [1712609759.368985]: -------------------\n", - "[INFO] [1712609759.369219]: SOMA.SupportTheory \n", - "[INFO] [1712609759.369448]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712609759.369730]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.SupportTheory}\n", - "[INFO] [1712609759.369983]: Subclasses: []\n", - "[INFO] [1712609759.370285]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.370769]: Instances: []\n", - "[INFO] [1712609759.371050]: Direct Instances: []\n", - "[INFO] [1712609759.371303]: Inverse Restrictions: []\n", - "[INFO] [1712609759.371538]: -------------------\n", - "[INFO] [1712609759.371768]: SOMA.SupportedObject \n", - "[INFO] [1712609759.371999]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712609759.372272]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.SupportedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.372534]: Subclasses: []\n", - "[INFO] [1712609759.372831]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.373323]: Instances: []\n", - "[INFO] [1712609759.373580]: Direct Instances: []\n", - "[INFO] [1712609759.373837]: Inverse Restrictions: []\n", - "[INFO] [1712609759.374074]: -------------------\n", - "[INFO] [1712609759.374310]: SOMA.SymbolicReasoner \n", - "[INFO] [1712609759.374539]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712609759.374808]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SymbolicReasoner, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.375056]: Subclasses: []\n", - "[INFO] [1712609759.375357]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.375848]: Instances: []\n", - "[INFO] [1712609759.376100]: Direct Instances: []\n", - "[INFO] [1712609759.376345]: Inverse Restrictions: []\n", - "[INFO] [1712609759.376587]: -------------------\n", - "[INFO] [1712609759.376822]: SOMA.TableFork \n", - "[INFO] [1712609759.377052]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712609759.377324]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.TableFork, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712609759.377580]: Subclasses: []\n", - "[INFO] [1712609759.377872]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.378356]: Instances: []\n", - "[INFO] [1712609759.378636]: Direct Instances: []\n", - "[INFO] [1712609759.378891]: Inverse Restrictions: []\n", - "[INFO] [1712609759.379129]: -------------------\n", - "[INFO] [1712609759.379361]: SOMA.TableKnife \n", - "[INFO] [1712609759.379591]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712609759.379864]: Ancestors: {SOMA.KitchenKnife, DUL.Entity, SOMA.Knife, SOMA.TableKnife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", - "[INFO] [1712609759.380123]: Subclasses: []\n", - "[INFO] [1712609759.380421]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.380911]: Instances: []\n", - "[INFO] [1712609759.381167]: Direct Instances: []\n", - "[INFO] [1712609759.381417]: Inverse Restrictions: []\n", - "[INFO] [1712609759.381651]: -------------------\n", - "[INFO] [1712609759.381890]: SOMA.TableSpoon \n", - "[INFO] [1712609759.382170]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712609759.382452]: Ancestors: {SOMA.TableSpoon, DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, SOMA.Tableware, DUL.PhysicalObject, owl.Thing, SOMA.Spoon, SOMA.DesignedTool}\n", - "[INFO] [1712609759.382705]: Subclasses: []\n", - "[INFO] [1712609759.383001]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.383504]: Instances: []\n", - "[INFO] [1712609759.383773]: Direct Instances: []\n", - "[INFO] [1712609759.384043]: Inverse Restrictions: []\n", - "[INFO] [1712609759.384289]: -------------------\n", - "[INFO] [1712609759.384527]: SOMA.TeaSpoon \n", - "[INFO] [1712609759.384758]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712609759.385036]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, SOMA.Tableware, DUL.PhysicalObject, owl.Thing, SOMA.Spoon, SOMA.TeaSpoon, SOMA.DesignedTool}\n", - "[INFO] [1712609759.385287]: Subclasses: []\n", - "[INFO] [1712609759.385571]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.386057]: Instances: []\n", - "[INFO] [1712609759.386428]: Direct Instances: []\n", - "[INFO] [1712609759.386719]: Inverse Restrictions: []\n", - "[INFO] [1712609759.386979]: -------------------\n", - "[INFO] [1712609759.387240]: SOMA.Tap \n", - "[INFO] [1712609759.387481]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712609759.387750]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, SOMA.Tap, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609759.388014]: Subclasses: []\n", - "[INFO] [1712609759.388310]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.388803]: Instances: []\n", - "[INFO] [1712609759.389062]: Direct Instances: []\n", - "[INFO] [1712609759.389318]: Inverse Restrictions: []\n", - "[INFO] [1712609759.389563]: -------------------\n", - "[INFO] [1712609759.389803]: SOMA.Tapping \n", - "[INFO] [1712609759.390038]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712609759.390312]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Tapping, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.390575]: Subclasses: []\n", - "[INFO] [1712609759.390872]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.391366]: Instances: []\n", - "[INFO] [1712609759.391627]: Direct Instances: []\n", - "[INFO] [1712609759.391870]: Inverse Restrictions: []\n", - "[INFO] [1712609759.392101]: -------------------\n", - "[INFO] [1712609759.392349]: SOMA.Taxis \n", - "[INFO] [1712609759.392594]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712609759.392861]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, SOMA.Taxis, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.393110]: Subclasses: []\n", - "[INFO] [1712609759.393401]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.393903]: Instances: []\n", - "[INFO] [1712609759.394173]: Direct Instances: []\n", - "[INFO] [1712609759.394427]: Inverse Restrictions: []\n", - "[INFO] [1712609759.394673]: -------------------\n", - "[INFO] [1712609759.394909]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712609759.395168]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712609759.395443]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609759.395703]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712609759.395998]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609759.396499]: Instances: []\n", - "[INFO] [1712609759.396780]: Direct Instances: []\n", - "[INFO] [1712609759.397041]: Inverse Restrictions: []\n", - "[INFO] [1712609759.397281]: -------------------\n", - "[INFO] [1712609759.397525]: SOMA.Temperature \n", - "[INFO] [1712609759.397793]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712609759.398077]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Temperature, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609759.398337]: Subclasses: []\n", - "[INFO] [1712609759.398628]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.399112]: Instances: []\n", - "[INFO] [1712609759.399386]: Direct Instances: []\n", - "[INFO] [1712609759.400069]: Inverse Restrictions: []\n", - "[INFO] [1712609759.400342]: -------------------\n", - "[INFO] [1712609759.400586]: SOMA.TemperatureRegion \n", - "[INFO] [1712609759.400834]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609759.401126]: Ancestors: {DUL.Entity, SOMA.TemperatureRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609759.401385]: Subclasses: []\n", - "[INFO] [1712609759.401683]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.402182]: Instances: []\n", - "[INFO] [1712609759.402458]: Direct Instances: []\n", - "[INFO] [1712609759.402803]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712609759.403053]: -------------------\n", - "[INFO] [1712609759.403291]: SOMA.Tempering \n", - "[INFO] [1712609759.403560]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712609759.403814]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, SOMA.Disposition}\n", - "[INFO] [1712609759.404088]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712609759.404390]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.404890]: Instances: []\n", - "[INFO] [1712609759.405166]: Direct Instances: []\n", - "[INFO] [1712609759.405438]: Inverse Restrictions: []\n", - "[INFO] [1712609759.405678]: -------------------\n", - "[INFO] [1712609759.405920]: SOMA.TemperingByCooling \n", - "[INFO] [1712609759.406164]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712609759.406436]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, SOMA.Disposition, SOMA.TemperingByCooling}\n", - "[INFO] [1712609759.406690]: Subclasses: []\n", - "[INFO] [1712609759.406987]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.407470]: Instances: []\n", - "[INFO] [1712609759.407726]: Direct Instances: []\n", - "[INFO] [1712609759.407985]: Inverse Restrictions: []\n", - "[INFO] [1712609759.408246]: -------------------\n", - "[INFO] [1712609759.408491]: SOMA.ThinkAloud \n", - "[INFO] [1712609759.408724]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712609759.409019]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ThinkAloud}\n", - "[INFO] [1712609759.409296]: Subclasses: []\n", - "[INFO] [1712609759.409599]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.410098]: Instances: []\n", - "[INFO] [1712609759.410388]: Direct Instances: []\n", - "[INFO] [1712609759.410645]: Inverse Restrictions: []\n", - "[INFO] [1712609759.410884]: -------------------\n", - "[INFO] [1712609759.411117]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712609759.411347]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609759.411621]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudActionTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.411885]: Subclasses: []\n", - "[INFO] [1712609759.412183]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.412669]: Instances: []\n", - "[INFO] [1712609759.412950]: Direct Instances: []\n", - "[INFO] [1712609759.413204]: Inverse Restrictions: []\n", - "[INFO] [1712609759.413442]: -------------------\n", - "[INFO] [1712609759.413677]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712609759.413903]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712609759.414189]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.414454]: Subclasses: []\n", - "[INFO] [1712609759.414773]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.415278]: Instances: []\n", - "[INFO] [1712609759.415547]: Direct Instances: []\n", - "[INFO] [1712609759.415805]: Inverse Restrictions: []\n", - "[INFO] [1712609759.416043]: -------------------\n", - "[INFO] [1712609759.416285]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712609759.416524]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609759.416791]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.417052]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712609759.417351]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.417844]: Instances: []\n", - "[INFO] [1712609759.418113]: Direct Instances: []\n", - "[INFO] [1712609759.418387]: Inverse Restrictions: []\n", - "[INFO] [1712609759.418623]: -------------------\n", - "[INFO] [1712609759.418858]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712609759.419099]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609759.419374]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.419625]: Subclasses: []\n", - "[INFO] [1712609759.419917]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.420394]: Instances: []\n", - "[INFO] [1712609759.420665]: Direct Instances: []\n", - "[INFO] [1712609759.420914]: Inverse Restrictions: []\n", - "[INFO] [1712609759.421149]: -------------------\n", - "[INFO] [1712609759.421379]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712609759.421605]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609759.421885]: Ancestors: {SOMA.ThinkAloudOpinionTopic, DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.422135]: Subclasses: []\n", - "[INFO] [1712609759.422432]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.422918]: Instances: []\n", - "[INFO] [1712609759.423191]: Direct Instances: []\n", - "[INFO] [1712609759.423435]: Inverse Restrictions: []\n", - "[INFO] [1712609759.423665]: -------------------\n", - "[INFO] [1712609759.423893]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712609759.424118]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609759.424399]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.424648]: Subclasses: []\n", - "[INFO] [1712609759.424942]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.425441]: Instances: []\n", - "[INFO] [1712609759.425709]: Direct Instances: []\n", - "[INFO] [1712609759.425966]: Inverse Restrictions: []\n", - "[INFO] [1712609759.426207]: -------------------\n", - "[INFO] [1712609759.426436]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712609759.426660]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609759.426933]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudPlanTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.427183]: Subclasses: []\n", - "[INFO] [1712609759.427472]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.427949]: Instances: []\n", - "[INFO] [1712609759.428233]: Direct Instances: []\n", - "[INFO] [1712609759.428490]: Inverse Restrictions: []\n", - "[INFO] [1712609759.428729]: -------------------\n", - "[INFO] [1712609759.428965]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712609759.429194]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712609759.429462]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, SOMA.ThinkAloudSceneKnowledgeTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609759.429726]: Subclasses: []\n", - "[INFO] [1712609759.430031]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.430533]: Instances: []\n", - "[INFO] [1712609759.430793]: Direct Instances: []\n", - "[INFO] [1712609759.431042]: Inverse Restrictions: []\n", - "[INFO] [1712609759.431270]: -------------------\n", - "[INFO] [1712609759.431496]: SOMA.Threshold \n", - "[INFO] [1712609759.431734]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712609759.432004]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.Threshold, DUL.Object, DUL.Parameter, owl.Thing}\n", - "[INFO] [1712609759.432243]: Subclasses: []\n", - "[INFO] [1712609759.432527]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.433001]: Instances: []\n", - "[INFO] [1712609759.433275]: Direct Instances: []\n", - "[INFO] [1712609759.433526]: Inverse Restrictions: []\n", - "[INFO] [1712609759.433757]: -------------------\n", - "[INFO] [1712609759.433984]: SOMA.Throwing \n", - "[INFO] [1712609759.434216]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712609759.434500]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Throwing, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.434771]: Subclasses: []\n", - "[INFO] [1712609759.435068]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.435554]: Instances: []\n", - "[INFO] [1712609759.435838]: Direct Instances: []\n", - "[INFO] [1712609759.436095]: Inverse Restrictions: []\n", - "[INFO] [1712609759.436340]: -------------------\n", - "[INFO] [1712609759.436577]: SOMA.TimeRole \n", - "[INFO] [1712609759.436805]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712609759.437070]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.437320]: Subclasses: []\n", - "[INFO] [1712609759.437613]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.438091]: Instances: []\n", - "[INFO] [1712609759.438432]: Direct Instances: []\n", - "[INFO] [1712609759.438730]: Inverse Restrictions: []\n", - "[INFO] [1712609759.438988]: -------------------\n", - "[INFO] [1712609759.439231]: SOMA.Transporting \n", - "[INFO] [1712609759.439468]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712609759.439738]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", - "[INFO] [1712609759.439985]: Subclasses: []\n", - "[INFO] [1712609759.440278]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.440783]: Instances: []\n", - "[INFO] [1712609759.441063]: Direct Instances: []\n", - "[INFO] [1712609759.441312]: Inverse Restrictions: []\n", - "[INFO] [1712609759.441542]: -------------------\n", - "[INFO] [1712609759.441776]: SOMA.TrashContainer \n", - "[INFO] [1712609759.442013]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712609759.442297]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.TrashContainer}\n", - "[INFO] [1712609759.442544]: Subclasses: []\n", - "[INFO] [1712609759.442835]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.443340]: Instances: []\n", - "[INFO] [1712609759.443605]: Direct Instances: []\n", - "[INFO] [1712609759.443848]: Inverse Restrictions: []\n", - "[INFO] [1712609759.444083]: -------------------\n", - "[INFO] [1712609759.444309]: SOMA.Triplestore \n", - "[INFO] [1712609759.444538]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712609759.444826]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Triplestore, owl.Thing, SOMA.Database, DUL.Role, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.445077]: Subclasses: []\n", - "[INFO] [1712609759.445375]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.445874]: Instances: []\n", - "[INFO] [1712609759.446163]: Direct Instances: []\n", - "[INFO] [1712609759.446434]: Inverse Restrictions: []\n", - "[INFO] [1712609759.446674]: -------------------\n", - "[INFO] [1712609759.446910]: SOMA.Turning \n", - "[INFO] [1712609759.447138]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712609759.447409]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Turning, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.447666]: Subclasses: []\n", - "[INFO] [1712609759.447962]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.448447]: Instances: []\n", - "[INFO] [1712609759.448704]: Direct Instances: []\n", - "[INFO] [1712609759.448947]: Inverse Restrictions: []\n", - "[INFO] [1712609759.449187]: -------------------\n", - "[INFO] [1712609759.449433]: SOMA.UnavailableSoftware \n", - "[INFO] [1712609759.449666]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712609759.449932]: Ancestors: {DUL.Entity, SOMA.UnavailableSoftware, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609759.450489]: Subclasses: []\n", - "[INFO] [1712609759.450876]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.451425]: Instances: []\n", - "[INFO] [1712609759.451724]: Direct Instances: []\n", - "[INFO] [1712609759.452010]: Inverse Restrictions: []\n", - "[INFO] [1712609759.452273]: -------------------\n", - "[INFO] [1712609759.452523]: SOMA.Unsuccessfulness \n", - "[INFO] [1712609759.452824]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712609759.453109]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609759.453380]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712609759.453680]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.454186]: Instances: []\n", - "[INFO] [1712609759.454476]: Direct Instances: []\n", - "[INFO] [1712609759.454744]: Inverse Restrictions: []\n", - "[INFO] [1712609759.454997]: -------------------\n", - "[INFO] [1712609759.455244]: SOMA.VideoData \n", - "[INFO] [1712609759.455486]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712609759.455775]: Ancestors: {DUL.Entity, SOMA.VideoData, DUL.InformationEntity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609759.456023]: Subclasses: []\n", - "[INFO] [1712609759.456320]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.456805]: Instances: []\n", - "[INFO] [1712609759.457066]: Direct Instances: []\n", - "[INFO] [1712609759.457328]: Inverse Restrictions: []\n", - "[INFO] [1712609759.457570]: -------------------\n", - "[INFO] [1712609759.457805]: SOMA.Wardrobe \n", - "[INFO] [1712609759.458033]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712609759.458323]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Cupboard, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture, SOMA.Wardrobe}\n", - "[INFO] [1712609759.458595]: Subclasses: []\n", - "[INFO] [1712609759.458896]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.459386]: Instances: []\n", - "[INFO] [1712609759.459661]: Direct Instances: []\n", - "[INFO] [1712609759.459925]: Inverse Restrictions: []\n", - "[INFO] [1712609759.460161]: -------------------\n", - "[INFO] [1712609759.460396]: SOMA.WaterBottle \n", - "[INFO] [1712609759.460621]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712609759.460886]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.WaterBottle}\n", - "[INFO] [1712609759.461148]: Subclasses: []\n", - "[INFO] [1712609759.461437]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.461914]: Instances: []\n", - "[INFO] [1712609759.462180]: Direct Instances: []\n", - "[INFO] [1712609759.462431]: Inverse Restrictions: []\n", - "[INFO] [1712609759.462665]: -------------------\n", - "[INFO] [1712609759.462909]: SOMA.WaterGlass \n", - "[INFO] [1712609759.463140]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712609759.463411]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, SOMA.WaterGlass, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool, SOMA.Glass}\n", - "[INFO] [1712609759.463643]: Subclasses: []\n", - "[INFO] [1712609759.463922]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.464424]: Instances: []\n", - "[INFO] [1712609759.464695]: Direct Instances: []\n", - "[INFO] [1712609759.464943]: Inverse Restrictions: []\n", - "[INFO] [1712609759.465178]: -------------------\n", - "[INFO] [1712609759.465413]: SOMA.WineBottle \n", - "[INFO] [1712609759.465642]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712609759.465926]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.WineBottle, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.466183]: Subclasses: []\n", - "[INFO] [1712609759.466478]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.466954]: Instances: []\n", - "[INFO] [1712609759.467227]: Direct Instances: []\n", - "[INFO] [1712609759.467479]: Inverse Restrictions: []\n", - "[INFO] [1712609759.467715]: -------------------\n", - "[INFO] [1712609759.467945]: SOMA.WineGlass \n", - "[INFO] [1712609759.468173]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712609759.468442]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.WineGlass, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.DesignedTool, SOMA.Glass}\n", - "[INFO] [1712609759.468700]: Subclasses: []\n", - "[INFO] [1712609759.468995]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.469483]: Instances: []\n", - "[INFO] [1712609759.469740]: Direct Instances: []\n", - "[INFO] [1712609759.469981]: Inverse Restrictions: []\n", - "[INFO] [1712609759.470214]: -------------------\n", - "[INFO] [1712609759.470455]: SOMA.3DPosition \n", - "[INFO] [1712609759.470732]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712609759.471010]: Ancestors: {DUL.Entity, SOMA.3DPosition, DUL.Region, DUL.Abstract, owl.Thing, DUL.SpaceRegion}\n", - "[INFO] [1712609759.471255]: Subclasses: []\n", - "[INFO] [1712609759.471547]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasPositionData]\n", - "[INFO] [1712609759.472050]: Instances: []\n", - "[INFO] [1712609759.472338]: Direct Instances: []\n", - "[INFO] [1712609759.472597]: Inverse Restrictions: []\n", - "[INFO] [1712609759.472840]: -------------------\n", - "[INFO] [1712609759.473075]: SOMA.Affordance \n", - "[INFO] [1712609759.473335]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712609759.473590]: Ancestors: {DUL.Entity, SOMA.Affordance, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609759.473870]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712609759.474178]: Properties: [rdf-schema.comment, SOMA.definesBearer, SOMA.definesTrigger, DUL.definesTask, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.474693]: Instances: []\n", - "[INFO] [1712609759.474974]: Direct Instances: []\n", - "[INFO] [1712609759.475380]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712609759.475646]: -------------------\n", - "[INFO] [1712609759.475904]: SOMA.Disposition \n", - "[INFO] [1712609759.476174]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712609759.476435]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.476712]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712609759.477012]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.477573]: Instances: []\n", - "[INFO] [1712609759.477844]: Direct Instances: []\n", - "[INFO] [1712609759.478165]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712609759.478430]: -------------------\n", - "[INFO] [1712609759.478681]: SOMA.Setpoint \n", - "[INFO] [1712609759.478923]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712609759.479165]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Parameter, SOMA.Setpoint, owl.Thing}\n", - "[INFO] [1712609759.479404]: Subclasses: []\n", - "[INFO] [1712609759.479687]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.480193]: Instances: []\n", - "[INFO] [1712609759.480459]: Direct Instances: []\n", - "[INFO] [1712609759.480715]: Inverse Restrictions: []\n", - "[INFO] [1712609759.480952]: -------------------\n", - "[INFO] [1712609759.481181]: SOMA.Answer \n", - "[INFO] [1712609759.481426]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712609759.481682]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Answer, SOMA.Message}\n", - "[INFO] [1712609759.481928]: Subclasses: []\n", - "[INFO] [1712609759.482218]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.482708]: Instances: []\n", - "[INFO] [1712609759.482976]: Direct Instances: []\n", - "[INFO] [1712609759.483271]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712609759.483514]: -------------------\n", - "[INFO] [1712609759.483750]: SOMA.Message \n", - "[INFO] [1712609759.483993]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712609759.484255]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Message}\n", - "[INFO] [1712609759.484509]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712609759.484809]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.485311]: Instances: []\n", - "[INFO] [1712609759.485605]: Direct Instances: []\n", - "[INFO] [1712609759.485928]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609759.486183]: -------------------\n", - "[INFO] [1712609759.486425]: SOMA.ProcessType \n", - "[INFO] [1712609759.486673]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712609759.486937]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609759.487210]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712609759.487509]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.488078]: Instances: []\n", - "[INFO] [1712609759.488355]: Direct Instances: []\n", - "[INFO] [1712609759.488687]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712609759.488947]: -------------------\n", - "[INFO] [1712609759.489200]: SOMA.OrderedElement \n", - "[INFO] [1712609759.489466]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712609759.489738]: Ancestors: {SOMA.OrderedElement, SOMA.Singleton, owl.Thing}\n", - "[INFO] [1712609759.490021]: Subclasses: []\n", - "[INFO] [1712609759.490423]: Properties: [rdf-schema.comment, SOMA.isOrderedBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.490988]: Instances: []\n", - "[INFO] [1712609759.491458]: Direct Instances: []\n", - "[INFO] [1712609759.491921]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712609759.492228]: -------------------\n", - "[INFO] [1712609759.492515]: SOMA.System \n", - "[INFO] [1712609759.492780]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712609759.493056]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.493338]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712609759.493666]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.494245]: Instances: []\n", - "[INFO] [1712609759.494557]: Direct Instances: []\n", - "[INFO] [1712609759.494834]: Inverse Restrictions: []\n", - "[INFO] [1712609759.495077]: -------------------\n", - "[INFO] [1712609759.495317]: SOMA.Binding \n", - "[INFO] [1712609759.495608]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712609759.495880]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing}\n", - "[INFO] [1712609759.496156]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712609759.496477]: Properties: [rdf-schema.comment, SOMA.hasBindingFiller, Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, SOMA.hasBindingRole]\n", - "[INFO] [1712609759.497009]: Instances: []\n", - "[INFO] [1712609759.497294]: Direct Instances: []\n", - "[INFO] [1712609759.497567]: Inverse Restrictions: []\n", - "[INFO] [1712609759.497808]: -------------------\n", - "[INFO] [1712609759.498046]: SOMA.Joint \n", - "[INFO] [1712609759.498324]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712609759.498582]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.498855]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712609759.499174]: Properties: [rdf-schema.comment, SOMA.hasChildLink, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", - "[INFO] [1712609759.499702]: Instances: []\n", - "[INFO] [1712609759.499979]: Direct Instances: []\n", - "[INFO] [1712609759.500250]: Inverse Restrictions: []\n", - "[INFO] [1712609759.500698]: -------------------\n", - "[INFO] [1712609759.501117]: SOMA.Color \n", - "[INFO] [1712609759.501524]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712609759.501927]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609759.502329]: Subclasses: []\n", - "[INFO] [1712609759.502689]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609759.503217]: Instances: []\n", - "[INFO] [1712609759.503501]: Direct Instances: []\n", - "[INFO] [1712609759.503815]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712609759.504130]: -------------------\n", - "[INFO] [1712609759.504421]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712609759.504691]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609759.504973]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.ExecutionStateRegion, owl.Thing}\n", - "[INFO] [1712609759.505422]: Subclasses: []\n", - "[INFO] [1712609759.505881]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.506545]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712609759.506969]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712609759.507372]: Inverse Restrictions: []\n", - "[INFO] [1712609759.507763]: -------------------\n", - "[INFO] [1712609759.508140]: SOMA.Feature \n", - "[INFO] [1712609759.508547]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712609759.508839]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing}\n", - "[INFO] [1712609759.509123]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712609759.509447]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.isFeatureOf]\n", - "[INFO] [1712609759.509956]: Instances: []\n", - "[INFO] [1712609759.510288]: Direct Instances: []\n", - "[INFO] [1712609759.510663]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712609759.510946]: -------------------\n", - "[INFO] [1712609759.511211]: SOMA.FrictionAttribute \n", - "[INFO] [1712609759.511494]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712609759.511778]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609759.512089]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712609759.512441]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasFrictionValue]\n", - "[INFO] [1712609759.513027]: Instances: []\n", - "[INFO] [1712609759.513356]: Direct Instances: []\n", - "[INFO] [1712609759.513676]: Inverse Restrictions: []\n", - "[INFO] [1712609759.513958]: -------------------\n", - "[INFO] [1712609759.514253]: SOMA.SituationTransition \n", - "[INFO] [1712609759.514544]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712609759.514847]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.SituationTransition, DUL.Transition, owl.Thing}\n", - "[INFO] [1712609759.515187]: Subclasses: []\n", - "[INFO] [1712609759.515566]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.516187]: Instances: []\n", - "[INFO] [1712609759.516501]: Direct Instances: []\n", - "[INFO] [1712609759.518603]: Inverse Restrictions: []\n", - "[INFO] [1712609759.518888]: -------------------\n", - "[INFO] [1712609759.519142]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712609759.519377]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712609759.519625]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation}\n", - "[INFO] [1712609759.519877]: Subclasses: []\n", - "[INFO] [1712609759.520177]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.520662]: Instances: []\n", - "[INFO] [1712609759.520923]: Direct Instances: []\n", - "[INFO] [1712609759.522308]: Inverse Restrictions: []\n", - "[INFO] [1712609759.522590]: -------------------\n", - "[INFO] [1712609759.522842]: SOMA.JointLimit \n", - "[INFO] [1712609759.523086]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712609759.523329]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.JointLimit, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609759.523581]: Subclasses: []\n", - "[INFO] [1712609759.523874]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.524385]: Instances: []\n", - "[INFO] [1712609759.524660]: Direct Instances: []\n", - "[INFO] [1712609759.524985]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712609759.525265]: -------------------\n", - "[INFO] [1712609759.525514]: SOMA.JointState \n", - "[INFO] [1712609759.525770]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712609759.526017]: Ancestors: {DUL.Entity, DUL.Region, SOMA.JointState, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609759.526276]: Subclasses: []\n", - "[INFO] [1712609759.526581]: Properties: [SOMA.hasJointPosition, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointVelocity]\n", - "[INFO] [1712609759.527269]: Instances: []\n", - "[INFO] [1712609759.527602]: Direct Instances: []\n", - "[INFO] [1712609759.527959]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712609759.528239]: -------------------\n", - "[INFO] [1712609759.528509]: SOMA.Localization \n", - "[INFO] [1712609759.528783]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712609759.529050]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609759.529314]: Subclasses: []\n", - "[INFO] [1712609759.529636]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.530149]: Instances: []\n", - "[INFO] [1712609759.530443]: Direct Instances: []\n", - "[INFO] [1712609759.531605]: Inverse Restrictions: []\n", - "[INFO] [1712609759.531898]: -------------------\n", - "[INFO] [1712609759.532162]: SOMA.MassAttribute \n", - "[INFO] [1712609759.532424]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712609759.532700]: Ancestors: {DUL.Entity, SOMA.MassAttribute, DUL.Region, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609759.532963]: Subclasses: []\n", - "[INFO] [1712609759.533271]: Properties: [rdf-schema.comment, SOMA.hasMassValue, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609759.533774]: Instances: []\n", - "[INFO] [1712609759.534064]: Direct Instances: []\n", - "[INFO] [1712609759.534347]: Inverse Restrictions: []\n", - "[INFO] [1712609759.534616]: -------------------\n", - "[INFO] [1712609759.534872]: SOMA.NetForce \n", - "[INFO] [1712609759.535118]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712609759.535378]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.NetForce, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", - "[INFO] [1712609759.535646]: Subclasses: []\n", - "[INFO] [1712609759.535956]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.536465]: Instances: []\n", - "[INFO] [1712609759.536728]: Direct Instances: []\n", - "[INFO] [1712609759.536996]: Inverse Restrictions: []\n", - "[INFO] [1712609759.537252]: -------------------\n", - "[INFO] [1712609759.537503]: SOMA.Succedence \n", - "[INFO] [1712609759.537763]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712609759.538014]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing}\n", - "[INFO] [1712609759.538273]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712609759.538599]: Properties: [rdf-schema.comment, SOMA.hasPredecessor, rdf-schema.isDefinedBy, SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence)]\n", - "[INFO] [1712609759.539112]: Instances: []\n", - "[INFO] [1712609759.539383]: Direct Instances: []\n", - "[INFO] [1712609759.539655]: Inverse Restrictions: []\n", - "[INFO] [1712609759.539900]: -------------------\n", - "[INFO] [1712609759.540159]: SOMA.Preference \n", - "[INFO] [1712609759.540413]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712609759.540667]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.Preference, SOMA.SocialQuality, owl.Thing}\n", - "[INFO] [1712609759.540915]: Subclasses: []\n", - "[INFO] [1712609759.541215]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.541734]: Instances: []\n", - "[INFO] [1712609759.542017]: Direct Instances: []\n", - "[INFO] [1712609759.542404]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712609759.542663]: -------------------\n", - "[INFO] [1712609759.542920]: SOMA.Shape \n", - "[INFO] [1712609759.543182]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712609759.543440]: Ancestors: {SOMA.Shape, DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609759.543699]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", - "[INFO] [1712609759.544005]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.544518]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712609759.544803]: Direct Instances: []\n", - "[INFO] [1712609759.545936]: Inverse Restrictions: []\n", - "[INFO] [1712609759.546204]: -------------------\n", - "[INFO] [1712609759.546465]: SOMA.ShapeRegion \n", - "[INFO] [1712609759.546733]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712609759.546995]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609759.547261]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712609759.547570]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.548083]: Instances: []\n", - "[INFO] [1712609759.548372]: Direct Instances: []\n", - "[INFO] [1712609759.549106]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712609759.549402]: -------------------\n", - "[INFO] [1712609759.549665]: SOMA.SoftwareInstance \n", - "[INFO] [1712609759.549926]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712609759.550187]: Ancestors: {SOMA.SoftwareInstance, owl.Thing}\n", - "[INFO] [1712609759.550442]: Subclasses: []\n", - "[INFO] [1712609759.550760]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.actsFor, SOMA.isDesignedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.551273]: Instances: []\n", - "[INFO] [1712609759.551554]: Direct Instances: []\n", - "[INFO] [1712609759.551884]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712609759.552157]: -------------------\n", - "[INFO] [1712609759.552429]: SOMA.StateType \n", - "[INFO] [1712609759.552702]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712609759.552956]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609759.553226]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712609759.553530]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.554059]: Instances: []\n", - "[INFO] [1712609759.554345]: Direct Instances: []\n", - "[INFO] [1712609759.554684]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712609759.554946]: -------------------\n", - "[INFO] [1712609759.555198]: SOMA.PhysicalEffector \n", - "[INFO] [1712609759.555456]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712609759.555722]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609759.555988]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712609759.556298]: Properties: [rdf-schema.comment, Inverse(DUL.hasPart), rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.556810]: Instances: []\n", - "[INFO] [1712609759.557096]: Direct Instances: []\n", - "[INFO] [1712609759.557367]: Inverse Restrictions: []\n", - "[INFO] [1712609759.557620]: -------------------\n", - "[INFO] [1712609759.557883]: SOMA.QueryingTask \n", - "[INFO] [1712609759.558155]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712609759.558431]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712609759.558688]: Subclasses: []\n", - "[INFO] [1712609759.558995]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.559510]: Instances: []\n", - "[INFO] [1712609759.559787]: Direct Instances: []\n", - "[INFO] [1712609759.560123]: Inverse Restrictions: []\n", - "[INFO] [1712609759.560378]: -------------------\n", - "[INFO] [1712609759.560625]: SOMA.Order \n", - "[INFO] [1712609759.560880]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712609759.561142]: Ancestors: {DUL.FormalEntity, DUL.Entity, DUL.Abstract, owl.Thing, SOMA.Order}\n", - "[INFO] [1712609759.561398]: Subclasses: []\n", - "[INFO] [1712609759.561701]: Properties: [rdf-schema.comment, SOMA.orders, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.562200]: Instances: []\n", - "[INFO] [1712609759.562493]: Direct Instances: []\n", - "[INFO] [1712609759.562866]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712609759.563127]: -------------------\n", - "[INFO] [1712609759.563379]: SOMA.State \n", - "[INFO] [1712609759.563629]: Super classes: [DUL.Event]\n", - "[INFO] [1712609759.563885]: Ancestors: {DUL.Entity, owl.Thing, DUL.Event, SOMA.State}\n", - "[INFO] [1712609759.564154]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712609759.564456]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.564963]: Instances: []\n", - "[INFO] [1712609759.565224]: Direct Instances: []\n", - "[INFO] [1712609759.565725]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712609759.566004]: -------------------\n", - "[INFO] [1712609759.566270]: SOMA.Transient \n", - "[INFO] [1712609759.566533]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712609759.566789]: Ancestors: {DUL.Entity, SOMA.Transient, DUL.Object, owl.Thing}\n", - "[INFO] [1712609759.567040]: Subclasses: []\n", - "[INFO] [1712609759.567349]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.transitionsFrom]\n", - "[INFO] [1712609759.567846]: Instances: []\n", - "[INFO] [1712609759.568111]: Direct Instances: []\n", - "[INFO] [1712609759.568369]: Inverse Restrictions: []\n", - "[INFO] [1712609759.568610]: -------------------\n", - "[INFO] [1712609759.568854]: SOMA.ColorRegion \n", - "[INFO] [1712609759.569111]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712609759.569366]: Ancestors: {DUL.Entity, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609759.569625]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712609759.569924]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.570440]: Instances: []\n", - "[INFO] [1712609759.570717]: Direct Instances: []\n", - "[INFO] [1712609759.571045]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712609759.571298]: -------------------\n", - "[INFO] [1712609759.571541]: SOMA.ForceAttribute \n", - "[INFO] [1712609759.571794]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712609759.572061]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", - "[INFO] [1712609759.572323]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712609759.572631]: Properties: [rdf-schema.comment, SOMA.hasForceValue, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.573129]: Instances: []\n", - "[INFO] [1712609759.573411]: Direct Instances: []\n", - "[INFO] [1712609759.573680]: Inverse Restrictions: []\n", - "[INFO] [1712609759.573933]: -------------------\n", - "[INFO] [1712609759.574188]: SOMA.API_Specification \n", - "[INFO] [1712609759.574436]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712609759.574689]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712609759.574961]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712609759.575270]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.575783]: Instances: []\n", - "[INFO] [1712609759.576077]: Direct Instances: []\n", - "[INFO] [1712609759.576347]: Inverse Restrictions: []\n", - "[INFO] [1712609759.576599]: -------------------\n", - "[INFO] [1712609759.576849]: SOMA.InterfaceSpecification \n", - "[INFO] [1712609759.577090]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712609759.577342]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712609759.577617]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712609759.577926]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.578438]: Instances: []\n", - "[INFO] [1712609759.578707]: Direct Instances: []\n", - "[INFO] [1712609759.579038]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712609759.579296]: -------------------\n", - "[INFO] [1712609759.579541]: SOMA.AbductiveReasoning \n", - "[INFO] [1712609759.579788]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712609759.580039]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.AbductiveReasoning, SOMA.Reasoning}\n", - "[INFO] [1712609759.580297]: Subclasses: []\n", - "[INFO] [1712609759.580600]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.581091]: Instances: []\n", - "[INFO] [1712609759.581352]: Direct Instances: []\n", - "[INFO] [1712609759.581601]: Inverse Restrictions: []\n", - "[INFO] [1712609759.581857]: -------------------\n", - "[INFO] [1712609759.582108]: SOMA.Reasoning \n", - "[INFO] [1712609759.582361]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609759.582609]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Reasoning, owl.Thing}\n", - "[INFO] [1712609759.582865]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712609759.583172]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.583672]: Instances: []\n", - "[INFO] [1712609759.583946]: Direct Instances: []\n", - "[INFO] [1712609759.584213]: Inverse Restrictions: []\n", - "[INFO] [1712609759.584463]: -------------------\n", - "[INFO] [1712609759.584707]: SOMA.Accessor \n", - "[INFO] [1712609759.584952]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712609759.585210]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, SOMA.Instrument, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.585475]: Subclasses: []\n", - "[INFO] [1712609759.585775]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.586272]: Instances: []\n", - "[INFO] [1712609759.586553]: Direct Instances: []\n", - "[INFO] [1712609759.586813]: Inverse Restrictions: []\n", - "[INFO] [1712609759.587056]: -------------------\n", - "[INFO] [1712609759.587297]: SOMA.Instrument \n", - "[INFO] [1712609759.587533]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712609759.587797]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.588061]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712609759.588352]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.588871]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609759.589150]: Direct Instances: []\n", - "[INFO] [1712609759.589532]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609759.589788]: -------------------\n", - "[INFO] [1712609759.590037]: SOMA.Accident \n", - "[INFO] [1712609759.590298]: Super classes: [DUL.Event]\n", - "[INFO] [1712609759.590559]: Ancestors: {DUL.Entity, SOMA.Accident, DUL.Event, owl.Thing}\n", - "[INFO] [1712609759.590811]: Subclasses: []\n", - "[INFO] [1712609759.591113]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.591604]: Instances: []\n", - "[INFO] [1712609759.591882]: Direct Instances: []\n", - "[INFO] [1712609759.592142]: Inverse Restrictions: []\n", - "[INFO] [1712609759.592390]: -------------------\n", - "[INFO] [1712609759.592633]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712609759.592882]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712609759.593144]: Ancestors: {DUL.Entity, DUL.Plan, SOMA.ActionExecutionPlan, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609759.593398]: Subclasses: []\n", - "[INFO] [1712609759.593693]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.594191]: Instances: []\n", - "[INFO] [1712609759.594470]: Direct Instances: []\n", - "[INFO] [1712609759.594737]: Inverse Restrictions: []\n", - "[INFO] [1712609759.594987]: -------------------\n", - "[INFO] [1712609759.595231]: SOMA.Actuating \n", - "[INFO] [1712609759.595472]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609759.595738]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.596026]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712609759.596333]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.596875]: Instances: []\n", - "[INFO] [1712609759.597165]: Direct Instances: []\n", - "[INFO] [1712609759.597445]: Inverse Restrictions: []\n", - "[INFO] [1712609759.597696]: -------------------\n", - "[INFO] [1712609759.597940]: SOMA.PhysicalTask \n", - "[INFO] [1712609759.598205]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712609759.598478]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712609759.598766]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712609759.599084]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.599729]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", - "[INFO] [1712609759.600028]: Direct Instances: []\n", - "[INFO] [1712609759.600353]: Inverse Restrictions: []\n", - "[INFO] [1712609759.600614]: -------------------\n", - "[INFO] [1712609759.600866]: SOMA.AestheticDesign \n", - "[INFO] [1712609759.601120]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712609759.601391]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.AestheticDesign, owl.Thing}\n", - "[INFO] [1712609759.601650]: Subclasses: []\n", - "[INFO] [1712609759.601954]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.602460]: Instances: []\n", - "[INFO] [1712609759.602748]: Direct Instances: []\n", - "[INFO] [1712609759.603014]: Inverse Restrictions: []\n", - "[INFO] [1712609759.603272]: -------------------\n", - "[INFO] [1712609759.603524]: SOMA.AgentRole \n", - "[INFO] [1712609759.603781]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712609759.604038]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.AgentRole}\n", - "[INFO] [1712609759.604304]: Subclasses: []\n", - "[INFO] [1712609759.604611]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.605108]: Instances: []\n", - "[INFO] [1712609759.605372]: Direct Instances: []\n", - "[INFO] [1712609759.605674]: Inverse Restrictions: []\n", - "[INFO] [1712609759.605929]: -------------------\n", - "[INFO] [1712609759.606183]: SOMA.CausativeRole \n", - "[INFO] [1712609759.606434]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609759.606695]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.606977]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712609759.607290]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.607818]: Instances: []\n", - "[INFO] [1712609759.608094]: Direct Instances: []\n", - "[INFO] [1712609759.608367]: Inverse Restrictions: []\n", - "[INFO] [1712609759.608624]: -------------------\n", - "[INFO] [1712609759.608873]: SOMA.Agonist \n", - "[INFO] [1712609759.609118]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609759.609370]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.Agonist, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.609621]: Subclasses: []\n", - "[INFO] [1712609759.609932]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.610441]: Instances: []\n", - "[INFO] [1712609759.610965]: Direct Instances: []\n", - "[INFO] [1712609759.611435]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712609759.611877]: -------------------\n", - "[INFO] [1712609759.612330]: SOMA.Patient \n", - "[INFO] [1712609759.612764]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609759.613200]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.613675]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712609759.614101]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.614809]: Instances: []\n", - "[INFO] [1712609759.615278]: Direct Instances: []\n", - "[INFO] [1712609759.615885]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609759.616273]: -------------------\n", - "[INFO] [1712609759.616650]: SOMA.Algorithm \n", - "[INFO] [1712609759.617012]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712609759.617378]: Ancestors: {DUL.Entity, DUL.Plan, DUL.SocialObject, SOMA.Algorithm, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609759.617750]: Subclasses: []\n", - "[INFO] [1712609759.618167]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.618773]: Instances: []\n", - "[INFO] [1712609759.619139]: Direct Instances: []\n", - "[INFO] [1712609759.619564]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712609759.619916]: -------------------\n", - "[INFO] [1712609759.620260]: SOMA.Alteration \n", - "[INFO] [1712609759.620594]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712609759.620945]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609759.621309]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712609759.621708]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.622315]: Instances: []\n", - "[INFO] [1712609759.622677]: Direct Instances: []\n", - "[INFO] [1712609759.623037]: Inverse Restrictions: []\n", - "[INFO] [1712609759.623394]: -------------------\n", - "[INFO] [1712609759.623740]: SOMA.AlterativeInteraction \n", - "[INFO] [1712609759.624077]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712609759.624429]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AlterativeInteraction, SOMA.ProcessType}\n", - "[INFO] [1712609759.624768]: Subclasses: []\n", - "[INFO] [1712609759.625162]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.625773]: Instances: []\n", - "[INFO] [1712609759.626155]: Direct Instances: []\n", - "[INFO] [1712609759.626550]: Inverse Restrictions: []\n", - "[INFO] [1712609759.626901]: -------------------\n", - "[INFO] [1712609759.627243]: SOMA.ForceInteraction \n", - "[INFO] [1712609759.627611]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712609759.627976]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609759.628336]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712609759.628759]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712609759.629374]: Instances: []\n", - "[INFO] [1712609759.629762]: Direct Instances: []\n", - "[INFO] [1712609759.630127]: Inverse Restrictions: []\n", - "[INFO] [1712609759.630478]: -------------------\n", - "[INFO] [1712609759.630828]: SOMA.PreservativeInteraction \n", - "[INFO] [1712609759.631169]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712609759.631535]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, DUL.Entity, SOMA.PreservativeInteraction, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609759.631884]: Subclasses: []\n", - "[INFO] [1712609759.632275]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.632864]: Instances: []\n", - "[INFO] [1712609759.633235]: Direct Instances: []\n", - "[INFO] [1712609759.633631]: Inverse Restrictions: []\n", - "[INFO] [1712609759.633979]: -------------------\n", - "[INFO] [1712609759.634322]: SOMA.AlteredObject \n", - "[INFO] [1712609759.634662]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609759.635006]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.635373]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712609759.635773]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.636365]: Instances: []\n", - "[INFO] [1712609759.636728]: Direct Instances: []\n", - "[INFO] [1712609759.637172]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712609759.637527]: -------------------\n", - "[INFO] [1712609759.637863]: SOMA.Amateurish \n", - "[INFO] [1712609759.638200]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712609759.638557]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609759.638929]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712609759.639333]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.639936]: Instances: []\n", - "[INFO] [1712609759.640297]: Direct Instances: []\n", - "[INFO] [1712609759.640657]: Inverse Restrictions: []\n", - "[INFO] [1712609759.640999]: -------------------\n", - "[INFO] [1712609759.641339]: SOMA.AnsweringTask \n", - "[INFO] [1712609759.641668]: Super classes: [owl.Thing]\n", - "[INFO] [1712609759.641996]: Ancestors: {SOMA.AnsweringTask, owl.Thing}\n", - "[INFO] [1712609759.642399]: Subclasses: []\n", - "[INFO] [1712609759.642780]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.643309]: Instances: []\n", - "[INFO] [1712609759.643598]: Direct Instances: []\n", - "[INFO] [1712609759.643916]: Inverse Restrictions: []\n", - "[INFO] [1712609759.644181]: -------------------\n", - "[INFO] [1712609759.644428]: SOMA.CommandingTask \n", - "[INFO] [1712609759.644680]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712609759.645036]: Ancestors: {SOMA.IllocutionaryTask, SOMA.CommandingTask, owl.Thing}\n", - "[INFO] [1712609759.645367]: Subclasses: []\n", - "[INFO] [1712609759.645765]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.646357]: Instances: []\n", - "[INFO] [1712609759.646726]: Direct Instances: []\n", - "[INFO] [1712609759.647141]: Inverse Restrictions: []\n", - "[INFO] [1712609759.647490]: -------------------\n", - "[INFO] [1712609759.647829]: SOMA.IllocutionaryTask \n", - "[INFO] [1712609759.648177]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712609759.648513]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712609759.648872]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712609759.649228]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.649767]: Instances: []\n", - "[INFO] [1712609759.650057]: Direct Instances: []\n", - "[INFO] [1712609759.650424]: Inverse Restrictions: []\n", - "[INFO] [1712609759.650707]: -------------------\n", - "[INFO] [1712609759.650978]: SOMA.Antagonist \n", - "[INFO] [1712609759.651232]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609759.651495]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Antagonist}\n", - "[INFO] [1712609759.652095]: Subclasses: []\n", - "[INFO] [1712609759.652537]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.653214]: Instances: []\n", - "[INFO] [1712609759.653642]: Direct Instances: []\n", - "[INFO] [1712609759.654213]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712609759.654843]: -------------------\n", - "[INFO] [1712609759.655413]: SOMA.Appliance \n", - "[INFO] [1712609759.656008]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712609759.656603]: Ancestors: {SOMA.Appliance, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.657229]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712609759.657902]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.658870]: Instances: []\n", - "[INFO] [1712609759.659415]: Direct Instances: []\n", - "[INFO] [1712609759.659997]: Inverse Restrictions: []\n", - "[INFO] [1712609759.660550]: -------------------\n", - "[INFO] [1712609759.661062]: SOMA.Approaching \n", - "[INFO] [1712609759.661630]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609759.662210]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Approaching, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.662738]: Subclasses: []\n", - "[INFO] [1712609759.663329]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.664241]: Instances: []\n", - "[INFO] [1712609759.664785]: Direct Instances: []\n", - "[INFO] [1712609759.665288]: Inverse Restrictions: []\n", - "[INFO] [1712609759.665772]: -------------------\n", - "[INFO] [1712609759.666279]: SOMA.Locomotion \n", - "[INFO] [1712609759.666702]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712609759.667083]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.667469]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712609759.667895]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.668513]: Instances: []\n", - "[INFO] [1712609759.668886]: Direct Instances: []\n", - "[INFO] [1712609759.669264]: Inverse Restrictions: []\n", - "[INFO] [1712609759.669620]: -------------------\n", - "[INFO] [1712609759.669965]: SOMA.ArchiveFile \n", - "[INFO] [1712609759.670313]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712609759.670673]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ArchiveFile, owl.Thing, SOMA.Digital_File, DUL.InformationRealization}\n", - "[INFO] [1712609759.671021]: Subclasses: []\n", - "[INFO] [1712609759.671448]: Properties: [rdf-schema.comment, DUL.realizes, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.672050]: Instances: []\n", - "[INFO] [1712609759.672411]: Direct Instances: []\n", - "[INFO] [1712609759.672760]: Inverse Restrictions: []\n", - "[INFO] [1712609759.673102]: -------------------\n", - "[INFO] [1712609759.673453]: SOMA.ArchiveText \n", - "[INFO] [1712609759.673801]: Super classes: [owl.Thing]\n", - "[INFO] [1712609759.674157]: Ancestors: {SOMA.ArchiveText, owl.Thing}\n", - "[INFO] [1712609759.674509]: Subclasses: []\n", - "[INFO] [1712609759.674905]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.675512]: Instances: []\n", - "[INFO] [1712609759.675893]: Direct Instances: []\n", - "[INFO] [1712609759.676346]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712609759.676703]: -------------------\n", - "[INFO] [1712609759.677059]: SOMA.Digital_File \n", - "[INFO] [1712609759.677440]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712609759.677809]: Ancestors: {DUL.Entity, DUL.InformationEntity, owl.Thing, SOMA.Digital_File, DUL.InformationRealization}\n", - "[INFO] [1712609759.678174]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712609759.678586]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasNameString, DUL.realizes, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.679209]: Instances: []\n", - "[INFO] [1712609759.679578]: Direct Instances: []\n", - "[INFO] [1712609759.680769]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712609759.681128]: -------------------\n", - "[INFO] [1712609759.681475]: SOMA.ArchiveFormat \n", - "[INFO] [1712609759.681824]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712609759.682189]: Ancestors: {SOMA.ArchiveFormat, DUL.Entity, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.682550]: Subclasses: []\n", - "[INFO] [1712609759.682951]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.683560]: Instances: []\n", - "[INFO] [1712609759.683941]: Direct Instances: []\n", - "[INFO] [1712609759.684328]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712609759.684675]: -------------------\n", - "[INFO] [1712609759.685019]: SOMA.File_format \n", - "[INFO] [1712609759.685367]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609759.685710]: Ancestors: {DUL.Entity, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.686062]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712609759.686485]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.687047]: Instances: []\n", - "[INFO] [1712609759.687347]: Direct Instances: []\n", - "[INFO] [1712609759.687634]: Inverse Restrictions: []\n", - "[INFO] [1712609759.687893]: -------------------\n", - "[INFO] [1712609759.688268]: SOMA.FileConfiguration \n", - "[INFO] [1712609759.688629]: Super classes: [owl.Thing]\n", - "[INFO] [1712609759.688997]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", - "[INFO] [1712609759.689364]: Subclasses: []\n", - "[INFO] [1712609759.689782]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.690419]: Instances: []\n", - "[INFO] [1712609759.690822]: Direct Instances: []\n", - "[INFO] [1712609759.691255]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712609759.691622]: -------------------\n", - "[INFO] [1712609759.691889]: SOMA.Structured_Text \n", - "[INFO] [1712609759.692134]: Super classes: [owl.Thing]\n", - "[INFO] [1712609759.692386]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", - "[INFO] [1712609759.692654]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712609759.692958]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.693454]: Instances: []\n", - "[INFO] [1712609759.693709]: Direct Instances: []\n", - "[INFO] [1712609759.694155]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712609759.694411]: -------------------\n", - "[INFO] [1712609759.694653]: SOMA.AreaSurveying \n", - "[INFO] [1712609759.694895]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712609759.695134]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", - "[INFO] [1712609759.695379]: Subclasses: []\n", - "[INFO] [1712609759.695681]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.696175]: Instances: []\n", - "[INFO] [1712609759.696440]: Direct Instances: []\n", - "[INFO] [1712609759.696688]: Inverse Restrictions: []\n", - "[INFO] [1712609759.696919]: -------------------\n", - "[INFO] [1712609759.697165]: SOMA.Perceiving \n", - "[INFO] [1712609759.697415]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712609759.697658]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712609759.697908]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712609759.698210]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.698735]: Instances: []\n", - "[INFO] [1712609759.699019]: Direct Instances: []\n", - "[INFO] [1712609759.699277]: Inverse Restrictions: []\n", - "[INFO] [1712609759.699518]: -------------------\n", - "[INFO] [1712609759.699769]: SOMA.Arm \n", - "[INFO] [1712609759.700021]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712609759.700280]: Ancestors: {DUL.Entity, SOMA.Arm, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609759.700525]: Subclasses: []\n", - "[INFO] [1712609759.700811]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.701293]: Instances: []\n", - "[INFO] [1712609759.701571]: Direct Instances: []\n", - "[INFO] [1712609759.701865]: Inverse Restrictions: []\n", - "[INFO] [1712609759.702118]: -------------------\n", - "[INFO] [1712609759.702379]: SOMA.Limb \n", - "[INFO] [1712609759.702622]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712609759.702877]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609759.703149]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712609759.703459]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.703972]: Instances: []\n", - "[INFO] [1712609759.704242]: Direct Instances: []\n", - "[INFO] [1712609759.704559]: Inverse Restrictions: []\n", - "[INFO] [1712609759.704824]: -------------------\n", - "[INFO] [1712609759.705072]: SOMA.Arranging \n", - "[INFO] [1712609759.705318]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712609759.705573]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Arranging, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing}\n", - "[INFO] [1712609759.705822]: Subclasses: []\n", - "[INFO] [1712609759.706103]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.706614]: Instances: []\n", - "[INFO] [1712609759.706886]: Direct Instances: []\n", - "[INFO] [1712609759.707143]: Inverse Restrictions: []\n", - "[INFO] [1712609759.707387]: -------------------\n", - "[INFO] [1712609759.707631]: SOMA.Constructing \n", - "[INFO] [1712609759.707873]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609759.708131]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing}\n", - "[INFO] [1712609759.708393]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712609759.708700]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.709212]: Instances: []\n", - "[INFO] [1712609759.709487]: Direct Instances: []\n", - "[INFO] [1712609759.709763]: Inverse Restrictions: []\n", - "[INFO] [1712609759.710003]: -------------------\n", - "[INFO] [1712609759.710253]: SOMA.ArtificialAgent \n", - "[INFO] [1712609759.710511]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712609759.710772]: Ancestors: {DUL.Entity, DUL.PhysicalAgent, DUL.Object, DUL.Agent, DUL.PhysicalObject, owl.Thing, SOMA.ArtificialAgent}\n", - "[INFO] [1712609759.711026]: Subclasses: []\n", - "[INFO] [1712609759.711321]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.711810]: Instances: []\n", - "[INFO] [1712609759.712089]: Direct Instances: []\n", - "[INFO] [1712609759.712344]: Inverse Restrictions: []\n", - "[INFO] [1712609759.712583]: -------------------\n", - "[INFO] [1712609759.712816]: SOMA.Assembling \n", - "[INFO] [1712609759.713050]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712609759.713299]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Assembling}\n", - "[INFO] [1712609759.713551]: Subclasses: []\n", - "[INFO] [1712609759.713840]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.714332]: Instances: []\n", - "[INFO] [1712609759.714599]: Direct Instances: []\n", - "[INFO] [1712609759.714860]: Inverse Restrictions: []\n", - "[INFO] [1712609759.715105]: -------------------\n", - "[INFO] [1712609759.715350]: SOMA.AssertionTask \n", - "[INFO] [1712609759.715600]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712609759.715856]: Ancestors: {SOMA.IllocutionaryTask, SOMA.AssertionTask, owl.Thing}\n", - "[INFO] [1712609759.716109]: Subclasses: []\n", - "[INFO] [1712609759.716407]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.716895]: Instances: []\n", - "[INFO] [1712609759.717174]: Direct Instances: []\n", - "[INFO] [1712609759.717427]: Inverse Restrictions: []\n", - "[INFO] [1712609759.717666]: -------------------\n", - "[INFO] [1712609759.717905]: SOMA.DeclarativeClause \n", - "[INFO] [1712609759.718144]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712609759.718401]: Ancestors: {SOMA.DeclarativeClause, DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609759.718663]: Subclasses: []\n", - "[INFO] [1712609759.718962]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.719454]: Instances: []\n", - "[INFO] [1712609759.719716]: Direct Instances: []\n", - "[INFO] [1712609759.720091]: Inverse Restrictions: []\n", - "[INFO] [1712609759.720359]: -------------------\n", - "[INFO] [1712609759.720611]: SOMA.AssumingArmPose \n", - "[INFO] [1712609759.720861]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712609759.721115]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose, SOMA.AssumingArmPose}\n", - "[INFO] [1712609759.721367]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712609759.721670]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.722177]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712609759.722444]: Direct Instances: []\n", - "[INFO] [1712609759.722694]: Inverse Restrictions: []\n", - "[INFO] [1712609759.722939]: -------------------\n", - "[INFO] [1712609759.723185]: SOMA.AssumingPose \n", - "[INFO] [1712609759.723419]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609759.723670]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose}\n", - "[INFO] [1712609759.723919]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712609759.724211]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.724733]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712609759.725005]: Direct Instances: []\n", - "[INFO] [1712609759.725262]: Inverse Restrictions: []\n", - "[INFO] [1712609759.725501]: -------------------\n", - "[INFO] [1712609759.725744]: SOMA.AttentionShift \n", - "[INFO] [1712609759.725995]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712609759.726262]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.AttentionShift, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609759.726523]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712609759.726815]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.727324]: Instances: []\n", - "[INFO] [1712609759.727594]: Direct Instances: []\n", - "[INFO] [1712609759.727847]: Inverse Restrictions: []\n", - "[INFO] [1712609759.728087]: -------------------\n", - "[INFO] [1712609759.728484]: SOMA.MentalTask \n", - "[INFO] [1712609759.729046]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712609759.729489]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609759.729930]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712609759.730468]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.731117]: Instances: []\n", - "[INFO] [1712609759.731516]: Direct Instances: []\n", - "[INFO] [1712609759.731943]: Inverse Restrictions: []\n", - "[INFO] [1712609759.732314]: -------------------\n", - "[INFO] [1712609759.732691]: SOMA.AvoidedObject \n", - "[INFO] [1712609759.733066]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609759.733367]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.AvoidedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.733639]: Subclasses: []\n", - "[INFO] [1712609759.733950]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.734465]: Instances: []\n", - "[INFO] [1712609759.734736]: Direct Instances: []\n", - "[INFO] [1712609759.734990]: Inverse Restrictions: []\n", - "[INFO] [1712609759.735232]: -------------------\n", - "[INFO] [1712609759.735486]: SOMA.Avoiding \n", - "[INFO] [1712609759.735729]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712609759.736074]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Avoiding, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", - "[INFO] [1712609759.736354]: Subclasses: []\n", - "[INFO] [1712609759.736663]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.737186]: Instances: []\n", - "[INFO] [1712609759.737474]: Direct Instances: []\n", - "[INFO] [1712609759.737741]: Inverse Restrictions: []\n", - "[INFO] [1712609759.737987]: -------------------\n", - "[INFO] [1712609759.738236]: SOMA.Navigating \n", - "[INFO] [1712609759.738480]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609759.738736]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", - "[INFO] [1712609759.738999]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712609759.739293]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.739793]: Instances: [SOMA.navigating]\n", - "[INFO] [1712609759.740079]: Direct Instances: [SOMA.navigating]\n", - "[INFO] [1712609759.740352]: Inverse Restrictions: []\n", - "[INFO] [1712609759.740600]: -------------------\n", - "[INFO] [1712609759.740851]: SOMA.Barrier \n", - "[INFO] [1712609759.741091]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712609759.741359]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609759.741651]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712609759.741966]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.742487]: Instances: []\n", - "[INFO] [1712609759.742763]: Direct Instances: []\n", - "[INFO] [1712609759.743073]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712609759.743331]: -------------------\n", - "[INFO] [1712609759.743579]: SOMA.Restrictor \n", - "[INFO] [1712609759.743816]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712609759.744065]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609759.744334]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712609759.744632]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.745161]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609759.745461]: Direct Instances: []\n", - "[INFO] [1712609759.745814]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712609759.746066]: -------------------\n", - "[INFO] [1712609759.746418]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712609759.746784]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712609759.747160]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609759.747543]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712609759.747872]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609759.748506]: Instances: []\n", - "[INFO] [1712609759.748798]: Direct Instances: []\n", - "[INFO] [1712609759.749065]: Inverse Restrictions: []\n", - "[INFO] [1712609759.749317]: -------------------\n", - "[INFO] [1712609759.749568]: SOMA.BeneficiaryRole \n", - "[INFO] [1712609759.749806]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712609759.750053]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.750311]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712609759.750614]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.751114]: Instances: []\n", - "[INFO] [1712609759.751377]: Direct Instances: []\n", - "[INFO] [1712609759.751630]: Inverse Restrictions: []\n", - "[INFO] [1712609759.751869]: -------------------\n", - "[INFO] [1712609759.752123]: SOMA.GoalRole \n", - "[INFO] [1712609759.752366]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609759.752611]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.752861]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712609759.753151]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.753665]: Instances: []\n", - "[INFO] [1712609759.753933]: Direct Instances: []\n", - "[INFO] [1712609759.754235]: Inverse Restrictions: []\n", - "[INFO] [1712609759.754534]: -------------------\n", - "[INFO] [1712609759.754792]: SOMA.CounterfactualBinding \n", - "[INFO] [1712609759.755045]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712609759.755316]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing, SOMA.CounterfactualBinding}\n", - "[INFO] [1712609759.755580]: Subclasses: []\n", - "[INFO] [1712609759.755895]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.756416]: Instances: []\n", - "[INFO] [1712609759.756707]: Direct Instances: []\n", - "[INFO] [1712609759.757042]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712609759.757294]: -------------------\n", - "[INFO] [1712609759.757567]: SOMA.FactualBinding \n", - "[INFO] [1712609759.757817]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712609759.758080]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Binding, SOMA.FactualBinding, owl.Thing}\n", - "[INFO] [1712609759.758355]: Subclasses: []\n", - "[INFO] [1712609759.758665]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.759185]: Instances: []\n", - "[INFO] [1712609759.759466]: Direct Instances: []\n", - "[INFO] [1712609759.759814]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712609759.760069]: -------------------\n", - "[INFO] [1712609759.760314]: SOMA.RoleFillerBinding \n", - "[INFO] [1712609759.760562]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712609759.760821]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.RoleFillerBinding, SOMA.Binding, owl.Thing}\n", - "[INFO] [1712609759.761075]: Subclasses: []\n", - "[INFO] [1712609759.761382]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.761877]: Instances: []\n", - "[INFO] [1712609759.762192]: Direct Instances: []\n", - "[INFO] [1712609759.762559]: Inverse Restrictions: []\n", - "[INFO] [1712609759.762839]: -------------------\n", - "[INFO] [1712609759.763099]: SOMA.RoleRoleBinding \n", - "[INFO] [1712609759.763360]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712609759.763616]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, SOMA.RoleRoleBinding, DUL.Object, DUL.Description, SOMA.Binding, owl.Thing}\n", - "[INFO] [1712609759.763866]: Subclasses: []\n", - "[INFO] [1712609759.764167]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.764673]: Instances: []\n", - "[INFO] [1712609759.764950]: Direct Instances: []\n", - "[INFO] [1712609759.765246]: Inverse Restrictions: []\n", - "[INFO] [1712609759.765493]: -------------------\n", - "[INFO] [1712609759.765735]: SOMA.DesignedComponent \n", - "[INFO] [1712609759.765989]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712609759.766271]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609759.766556]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712609759.766867]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712609759.767390]: Instances: []\n", - "[INFO] [1712609759.767673]: Direct Instances: []\n", - "[INFO] [1712609759.767940]: Inverse Restrictions: []\n", - "[INFO] [1712609759.768185]: -------------------\n", - "[INFO] [1712609759.768425]: SOMA.Blockage \n", - "[INFO] [1712609759.768676]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712609759.768941]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.769204]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712609759.769504]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.770000]: Instances: []\n", - "[INFO] [1712609759.770422]: Direct Instances: []\n", - "[INFO] [1712609759.770703]: Inverse Restrictions: []\n", - "[INFO] [1712609759.770954]: -------------------\n", - "[INFO] [1712609759.771198]: SOMA.BlockedObject \n", - "[INFO] [1712609759.771441]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609759.771705]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", - "[INFO] [1712609759.771972]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712609759.772273]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.772771]: Instances: []\n", - "[INFO] [1712609759.773050]: Direct Instances: []\n", - "[INFO] [1712609759.773354]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712609759.773606]: -------------------\n", - "[INFO] [1712609759.773847]: SOMA.BodyMovement \n", - "[INFO] [1712609759.774155]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712609759.774545]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.774863]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712609759.775191]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.775731]: Instances: []\n", - "[INFO] [1712609759.776031]: Direct Instances: []\n", - "[INFO] [1712609759.776309]: Inverse Restrictions: []\n", - "[INFO] [1712609759.776563]: -------------------\n", - "[INFO] [1712609759.776816]: SOMA.Motion \n", - "[INFO] [1712609759.777061]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712609759.777326]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609759.777596]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712609759.777902]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.778464]: Instances: []\n", - "[INFO] [1712609759.778759]: Direct Instances: []\n", - "[INFO] [1712609759.779038]: Inverse Restrictions: []\n", - "[INFO] [1712609759.779294]: -------------------\n", - "[INFO] [1712609759.779537]: SOMA.Boiling \n", - "[INFO] [1712609759.779785]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712609759.780048]: Ancestors: {SOMA.Boiling, DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Vaporizing, SOMA.ProcessType}\n", - "[INFO] [1712609759.780315]: Subclasses: []\n", - "[INFO] [1712609759.780617]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.781110]: Instances: []\n", - "[INFO] [1712609759.781390]: Direct Instances: []\n", - "[INFO] [1712609759.781648]: Inverse Restrictions: []\n", - "[INFO] [1712609759.781896]: -------------------\n", - "[INFO] [1712609759.782140]: SOMA.Vaporizing \n", - "[INFO] [1712609759.782393]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712609759.782655]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Vaporizing, SOMA.ProcessType}\n", - "[INFO] [1712609759.782926]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712609759.783237]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712609759.783735]: Instances: []\n", - "[INFO] [1712609759.783998]: Direct Instances: []\n", - "[INFO] [1712609759.784251]: Inverse Restrictions: []\n", - "[INFO] [1712609759.784504]: -------------------\n", - "[INFO] [1712609759.784750]: SOMA.DesignedContainer \n", - "[INFO] [1712609759.784993]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712609759.785238]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609759.785518]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712609759.785844]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712609759.786456]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712609759.786733]: Direct Instances: []\n", - "[INFO] [1712609759.786998]: Inverse Restrictions: []\n", - "[INFO] [1712609759.787251]: -------------------\n", - "[INFO] [1712609759.787495]: SOMA.BoxShape \n", - "[INFO] [1712609759.787742]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712609759.787986]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, SOMA.BoxShape, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609759.788232]: Subclasses: []\n", - "[INFO] [1712609759.788545]: Properties: [SOMA.hasHeight, rdf-schema.comment, SOMA.hasLength, rdf-schema.label, SOMA.hasWidth, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.789054]: Instances: []\n", - "[INFO] [1712609759.789317]: Direct Instances: []\n", - "[INFO] [1712609759.789588]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712609759.789837]: -------------------\n", - "[INFO] [1712609759.790089]: SOMA.Deposition \n", - "[INFO] [1712609759.790342]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712609759.790597]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Deposition, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.790848]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712609759.791147]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.791664]: Instances: []\n", - "[INFO] [1712609759.791948]: Direct Instances: []\n", - "[INFO] [1712609759.792284]: Inverse Restrictions: []\n", - "[INFO] [1712609759.792536]: -------------------\n", - "[INFO] [1712609759.792781]: SOMA.CanCut \n", - "[INFO] [1712609759.793073]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712609759.793353]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.793614]: Subclasses: []\n", - "[INFO] [1712609759.793920]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.794502]: Instances: []\n", - "[INFO] [1712609759.794818]: Direct Instances: []\n", - "[INFO] [1712609759.795088]: Inverse Restrictions: []\n", - "[INFO] [1712609759.795336]: -------------------\n", - "[INFO] [1712609759.795583]: SOMA.Variability \n", - "[INFO] [1712609759.795836]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712609759.796105]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.796381]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712609759.796687]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.797201]: Instances: []\n", - "[INFO] [1712609759.797483]: Direct Instances: []\n", - "[INFO] [1712609759.797755]: Inverse Restrictions: []\n", - "[INFO] [1712609759.797999]: -------------------\n", - "[INFO] [1712609759.798253]: SOMA.Cutter \n", - "[INFO] [1712609759.798499]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712609759.798753]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Cutter, SOMA.Tool}\n", - "[INFO] [1712609759.799017]: Subclasses: []\n", - "[INFO] [1712609759.799322]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.799819]: Instances: []\n", - "[INFO] [1712609759.800087]: Direct Instances: []\n", - "[INFO] [1712609759.800401]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712609759.800663]: -------------------\n", - "[INFO] [1712609759.800913]: SOMA.CutObject \n", - "[INFO] [1712609759.801155]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712609759.801409]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.CutObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.801658]: Subclasses: []\n", - "[INFO] [1712609759.801955]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.802466]: Instances: []\n", - "[INFO] [1712609759.802744]: Direct Instances: []\n", - "[INFO] [1712609759.803067]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712609759.803321]: -------------------\n", - "[INFO] [1712609759.803565]: SOMA.Capability \n", - "[INFO] [1712609759.803847]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712609759.804113]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.804366]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712609759.804663]: Properties: [rdf-schema.comment, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.805175]: Instances: []\n", - "[INFO] [1712609759.805465]: Direct Instances: []\n", - "[INFO] [1712609759.805727]: Inverse Restrictions: []\n", - "[INFO] [1712609759.805973]: -------------------\n", - "[INFO] [1712609759.806214]: SOMA.Capacity \n", - "[INFO] [1712609759.806448]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609759.806693]: Ancestors: {DUL.Entity, SOMA.Intrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capacity, owl.Thing}\n", - "[INFO] [1712609759.806952]: Subclasses: []\n", - "[INFO] [1712609759.807260]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.807759]: Instances: []\n", - "[INFO] [1712609759.808026]: Direct Instances: []\n", - "[INFO] [1712609759.808322]: Inverse Restrictions: []\n", - "[INFO] [1712609759.808578]: -------------------\n", - "[INFO] [1712609759.808824]: SOMA.Intrinsic \n", - "[INFO] [1712609759.809064]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712609759.809307]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609759.809568]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712609759.809863]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.810416]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712609759.810698]: Direct Instances: []\n", - "[INFO] [1712609759.810967]: Inverse Restrictions: []\n", - "[INFO] [1712609759.811213]: -------------------\n", - "[INFO] [1712609759.811461]: SOMA.Catching \n", - "[INFO] [1712609759.811717]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609759.811978]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Catching, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.812229]: Subclasses: []\n", - "[INFO] [1712609759.812531]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.813037]: Instances: []\n", - "[INFO] [1712609759.813306]: Direct Instances: []\n", - "[INFO] [1712609759.813561]: Inverse Restrictions: []\n", - "[INFO] [1712609759.813801]: -------------------\n", - "[INFO] [1712609759.814034]: SOMA.PickingUp \n", - "[INFO] [1712609759.814291]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609759.814555]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing, SOMA.PickingUp}\n", - "[INFO] [1712609759.814807]: Subclasses: []\n", - "[INFO] [1712609759.815096]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.815612]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712609759.815883]: Direct Instances: [SOMA.picking_up]\n", - "[INFO] [1712609759.816143]: Inverse Restrictions: []\n", - "[INFO] [1712609759.816392]: -------------------\n", - "[INFO] [1712609759.816634]: SOMA.CausalEventRole \n", - "[INFO] [1712609759.816874]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712609759.817133]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.CausalEventRole}\n", - "[INFO] [1712609759.817384]: Subclasses: []\n", - "[INFO] [1712609759.817684]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.818190]: Instances: []\n", - "[INFO] [1712609759.818476]: Direct Instances: []\n", - "[INFO] [1712609759.818776]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609759.819024]: -------------------\n", - "[INFO] [1712609759.819261]: SOMA.EventAdjacentRole \n", - "[INFO] [1712609759.819499]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712609759.819756]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.820020]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712609759.820318]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.820993]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609759.821281]: Direct Instances: []\n", - "[INFO] [1712609759.821553]: Inverse Restrictions: []\n", - "[INFO] [1712609759.821804]: -------------------\n", - "[INFO] [1712609759.822049]: SOMA.CausedMotionTheory \n", - "[INFO] [1712609759.822318]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712609759.822593]: Ancestors: {DUL.Entity, SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609759.822850]: Subclasses: []\n", - "[INFO] [1712609759.823163]: Properties: [rdf-schema.comment, DUL.hasPart, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.823658]: Instances: []\n", - "[INFO] [1712609759.823928]: Direct Instances: []\n", - "[INFO] [1712609759.824188]: Inverse Restrictions: []\n", - "[INFO] [1712609759.824426]: -------------------\n", - "[INFO] [1712609759.824664]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712609759.824898]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712609759.825141]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609759.825407]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712609759.825706]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.826259]: Instances: []\n", - "[INFO] [1712609759.826656]: Direct Instances: []\n", - "[INFO] [1712609759.827106]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", - "[INFO] [1712609759.827476]: -------------------\n", - "[INFO] [1712609759.827833]: SOMA.PerformerRole \n", - "[INFO] [1712609759.828114]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712609759.828379]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", - "[INFO] [1712609759.828757]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712609759.829094]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.829622]: Instances: []\n", - "[INFO] [1712609759.829893]: Direct Instances: []\n", - "[INFO] [1712609759.830215]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609759.830468]: -------------------\n", - "[INFO] [1712609759.830712]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712609759.830966]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712609759.831229]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.SourcePathGoalTheory}\n", - "[INFO] [1712609759.831477]: Subclasses: []\n", - "[INFO] [1712609759.831775]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.832275]: Instances: []\n", - "[INFO] [1712609759.832547]: Direct Instances: []\n", - "[INFO] [1712609759.832836]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712609759.833078]: -------------------\n", - "[INFO] [1712609759.833312]: SOMA.RoomSurface \n", - "[INFO] [1712609759.833562]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712609759.833811]: Ancestors: {DUL.Entity, SOMA.RoomSurface, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", - "[INFO] [1712609759.834057]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712609759.834353]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.834864]: Instances: []\n", - "[INFO] [1712609759.835132]: Direct Instances: []\n", - "[INFO] [1712609759.835382]: Inverse Restrictions: []\n", - "[INFO] [1712609759.835622]: -------------------\n", - "[INFO] [1712609759.835861]: SOMA.Channel \n", - "[INFO] [1712609759.836097]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712609759.836362]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.836618]: Subclasses: []\n", - "[INFO] [1712609759.836917]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.837409]: Instances: []\n", - "[INFO] [1712609759.837671]: Direct Instances: []\n", - "[INFO] [1712609759.837985]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609759.838235]: -------------------\n", - "[INFO] [1712609759.838480]: SOMA.PathRole \n", - "[INFO] [1712609759.838718]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712609759.838969]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.PathRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.839245]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712609759.839553]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.840059]: Instances: []\n", - "[INFO] [1712609759.840338]: Direct Instances: []\n", - "[INFO] [1712609759.840647]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712609759.840918]: -------------------\n", - "[INFO] [1712609759.841425]: SOMA.CommunicationTask \n", - "[INFO] [1712609759.841877]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712609759.842266]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712609759.842661]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712609759.843181]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.843875]: Instances: []\n", - "[INFO] [1712609759.844344]: Direct Instances: []\n", - "[INFO] [1712609759.845010]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", - "[INFO] [1712609759.845464]: -------------------\n", - "[INFO] [1712609759.845895]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712609759.846288]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712609759.846737]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", - "[INFO] [1712609759.847109]: Subclasses: []\n", - "[INFO] [1712609759.847591]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.848226]: Instances: []\n", - "[INFO] [1712609759.848624]: Direct Instances: []\n", - "[INFO] [1712609759.848997]: Inverse Restrictions: []\n", - "[INFO] [1712609759.849347]: -------------------\n", - "[INFO] [1712609759.849688]: SOMA.ChemicalProcess \n", - "[INFO] [1712609759.850028]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712609759.850499]: Ancestors: {DUL.Entity, DUL.Process, SOMA.ChemicalProcess, owl.Thing, DUL.Event}\n", - "[INFO] [1712609759.850843]: Subclasses: []\n", - "[INFO] [1712609759.851183]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.851709]: Instances: []\n", - "[INFO] [1712609759.851989]: Direct Instances: []\n", - "[INFO] [1712609759.852251]: Inverse Restrictions: []\n", - "[INFO] [1712609759.852501]: -------------------\n", - "[INFO] [1712609759.852755]: SOMA.Choice \n", - "[INFO] [1712609759.853227]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712609759.853788]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, SOMA.Choice, DUL.Object, SOMA.EventAdjacentRole, SOMA.ResultRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.854084]: Subclasses: []\n", - "[INFO] [1712609759.854429]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.854959]: Instances: []\n", - "[INFO] [1712609759.855359]: Direct Instances: []\n", - "[INFO] [1712609759.855650]: Inverse Restrictions: []\n", - "[INFO] [1712609759.855910]: -------------------\n", - "[INFO] [1712609759.856171]: SOMA.ResultRole \n", - "[INFO] [1712609759.856422]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712609759.856679]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ResultRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.856931]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712609759.857225]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.857738]: Instances: []\n", - "[INFO] [1712609759.858020]: Direct Instances: []\n", - "[INFO] [1712609759.858293]: Inverse Restrictions: []\n", - "[INFO] [1712609759.858544]: -------------------\n", - "[INFO] [1712609759.858796]: SOMA.CircularCylinder \n", - "[INFO] [1712609759.859051]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712609759.859331]: Ancestors: {DUL.Entity, SOMA.CircularCylinder, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609759.859603]: Subclasses: []\n", - "[INFO] [1712609759.859923]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712609759.860432]: Instances: []\n", - "[INFO] [1712609759.860722]: Direct Instances: []\n", - "[INFO] [1712609759.860993]: Inverse Restrictions: []\n", - "[INFO] [1712609759.861248]: -------------------\n", - "[INFO] [1712609759.861492]: SOMA.CylinderShape \n", - "[INFO] [1712609759.861748]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712609759.862006]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609759.862286]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712609759.862599]: Properties: [rdf-schema.comment, rdf-schema.label, SOMA.hasLength, SOMA.hasRadius, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.863107]: Instances: []\n", - "[INFO] [1712609759.863393]: Direct Instances: []\n", - "[INFO] [1712609759.863657]: Inverse Restrictions: []\n", - "[INFO] [1712609759.863904]: -------------------\n", - "[INFO] [1712609759.864148]: SOMA.Classifier \n", - "[INFO] [1712609759.864390]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712609759.864661]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.Classifier, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.864917]: Subclasses: []\n", - "[INFO] [1712609759.865214]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.865713]: Instances: []\n", - "[INFO] [1712609759.866000]: Direct Instances: []\n", - "[INFO] [1712609759.866267]: Inverse Restrictions: []\n", - "[INFO] [1712609759.866513]: -------------------\n", - "[INFO] [1712609759.866755]: SOMA.StatisticalReasoner \n", - "[INFO] [1712609759.867011]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712609759.867271]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.867539]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712609759.867840]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.868338]: Instances: []\n", - "[INFO] [1712609759.868621]: Direct Instances: []\n", - "[INFO] [1712609759.868884]: Inverse Restrictions: []\n", - "[INFO] [1712609759.869130]: -------------------\n", - "[INFO] [1712609759.869371]: SOMA.ClausalObject \n", - "[INFO] [1712609759.869610]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712609759.869862]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609759.870145]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712609759.870448]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.870950]: Instances: []\n", - "[INFO] [1712609759.871220]: Direct Instances: []\n", - "[INFO] [1712609759.871480]: Inverse Restrictions: []\n", - "[INFO] [1712609759.871720]: -------------------\n", - "[INFO] [1712609759.871954]: SOMA.Phrase \n", - "[INFO] [1712609759.872191]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712609759.872433]: Ancestors: {DUL.Entity, DUL.InformationEntity, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609759.872694]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712609759.872989]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.873485]: Instances: []\n", - "[INFO] [1712609759.873741]: Direct Instances: []\n", - "[INFO] [1712609759.873991]: Inverse Restrictions: []\n", - "[INFO] [1712609759.874250]: -------------------\n", - "[INFO] [1712609759.874502]: SOMA.Clean \n", - "[INFO] [1712609759.874743]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712609759.874988]: Ancestors: {SOMA.Clean, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", - "[INFO] [1712609759.875243]: Subclasses: []\n", - "[INFO] [1712609759.875546]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.876043]: Instances: []\n", - "[INFO] [1712609759.876313]: Direct Instances: []\n", - "[INFO] [1712609759.876646]: Inverse Restrictions: []\n", - "[INFO] [1712609759.876895]: -------------------\n", - "[INFO] [1712609759.877137]: SOMA.CleanlinessRegion \n", - "[INFO] [1712609759.877377]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609759.877622]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", - "[INFO] [1712609759.877893]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712609759.878201]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.878707]: Instances: []\n", - "[INFO] [1712609759.878994]: Direct Instances: []\n", - "[INFO] [1712609759.879332]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712609759.879592]: -------------------\n", - "[INFO] [1712609759.879835]: SOMA.Cleaning \n", - "[INFO] [1712609759.880079]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712609759.880347]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Cleaning, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609759.880605]: Subclasses: []\n", - "[INFO] [1712609759.880905]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.881395]: Instances: []\n", - "[INFO] [1712609759.881660]: Direct Instances: []\n", - "[INFO] [1712609759.881921]: Inverse Restrictions: []\n", - "[INFO] [1712609759.882179]: -------------------\n", - "[INFO] [1712609759.882427]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712609759.882666]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609759.882912]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609759.883162]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712609759.883464]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.883974]: Instances: []\n", - "[INFO] [1712609759.884233]: Direct Instances: []\n", - "[INFO] [1712609759.884482]: Inverse Restrictions: []\n", - "[INFO] [1712609759.884713]: -------------------\n", - "[INFO] [1712609759.884959]: SOMA.Purification \n", - "[INFO] [1712609759.885221]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712609759.885475]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition, SOMA.Purification}\n", - "[INFO] [1712609759.885718]: Subclasses: []\n", - "[INFO] [1712609759.886010]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.886518]: Instances: []\n", - "[INFO] [1712609759.886787]: Direct Instances: []\n", - "[INFO] [1712609759.887083]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712609759.887330]: -------------------\n", - "[INFO] [1712609759.887571]: SOMA.Cleanliness \n", - "[INFO] [1712609759.887819]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712609759.888080]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing}\n", - "[INFO] [1712609759.888329]: Subclasses: []\n", - "[INFO] [1712609759.888621]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.889121]: Instances: []\n", - "[INFO] [1712609759.889402]: Direct Instances: []\n", - "[INFO] [1712609759.889736]: Inverse Restrictions: []\n", - "[INFO] [1712609759.889981]: -------------------\n", - "[INFO] [1712609759.890222]: SOMA.SocialQuality \n", - "[INFO] [1712609759.890454]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712609759.890693]: Ancestors: {SOMA.SocialQuality, DUL.Entity, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609759.890957]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712609759.891256]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.891763]: Instances: []\n", - "[INFO] [1712609759.892032]: Direct Instances: []\n", - "[INFO] [1712609759.892287]: Inverse Restrictions: []\n", - "[INFO] [1712609759.892534]: -------------------\n", - "[INFO] [1712609759.892772]: SOMA.Client-Server_Specification \n", - "[INFO] [1712609759.893018]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712609759.893269]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, SOMA.Client-Server_Specification, DUL.Object, DUL.Description, SOMA.InterfaceSpecification, owl.Thing}\n", - "[INFO] [1712609759.893526]: Subclasses: []\n", - "[INFO] [1712609759.893837]: Properties: [rdf-schema.comment, DUL.definesRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.894338]: Instances: []\n", - "[INFO] [1712609759.894601]: Direct Instances: []\n", - "[INFO] [1712609759.894926]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712609759.895176]: -------------------\n", - "[INFO] [1712609759.895419]: SOMA.ClientRole \n", - "[INFO] [1712609759.895660]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712609759.895906]: Ancestors: {DUL.Concept, SOMA.ClientRole, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.896163]: Subclasses: []\n", - "[INFO] [1712609759.896461]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.896956]: Instances: []\n", - "[INFO] [1712609759.897220]: Direct Instances: []\n", - "[INFO] [1712609759.897523]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712609759.897777]: -------------------\n", - "[INFO] [1712609759.898015]: SOMA.ServerRole \n", - "[INFO] [1712609759.898262]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712609759.898534]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.ServerRole, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.898786]: Subclasses: []\n", - "[INFO] [1712609759.899082]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.899569]: Instances: []\n", - "[INFO] [1712609759.899834]: Direct Instances: []\n", - "[INFO] [1712609759.900148]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712609759.900392]: -------------------\n", - "[INFO] [1712609759.900630]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712609759.900869]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609759.901110]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609759.901376]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712609759.901687]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.902223]: Instances: []\n", - "[INFO] [1712609759.902553]: Direct Instances: []\n", - "[INFO] [1712609759.902837]: Inverse Restrictions: []\n", - "[INFO] [1712609759.903098]: -------------------\n", - "[INFO] [1712609759.903348]: SOMA.Closing \n", - "[INFO] [1712609759.903598]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609759.903858]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Closing, SOMA.Actuating}\n", - "[INFO] [1712609759.904110]: Subclasses: []\n", - "[INFO] [1712609759.904430]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.904936]: Instances: []\n", - "[INFO] [1712609759.905201]: Direct Instances: []\n", - "[INFO] [1712609759.905452]: Inverse Restrictions: []\n", - "[INFO] [1712609759.905694]: -------------------\n", - "[INFO] [1712609759.905945]: SOMA.Delivering \n", - "[INFO] [1712609759.906195]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712609759.906449]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Delivering, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.906699]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712609759.907024]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.907560]: Instances: []\n", - "[INFO] [1712609759.907834]: Direct Instances: []\n", - "[INFO] [1712609759.908089]: Inverse Restrictions: []\n", - "[INFO] [1712609759.908342]: -------------------\n", - "[INFO] [1712609759.908608]: SOMA.Fetching \n", - "[INFO] [1712609759.908868]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712609759.909127]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Fetching, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PhysicalAcquiring, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609759.909370]: Subclasses: []\n", - "[INFO] [1712609759.909670]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.910177]: Instances: []\n", - "[INFO] [1712609759.910457]: Direct Instances: []\n", - "[INFO] [1712609759.910720]: Inverse Restrictions: []\n", - "[INFO] [1712609759.910970]: -------------------\n", - "[INFO] [1712609759.911223]: SOMA.Lifting \n", - "[INFO] [1712609759.911468]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609759.911720]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Lifting, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.911964]: Subclasses: []\n", - "[INFO] [1712609759.912263]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.912767]: Instances: []\n", - "[INFO] [1712609759.913033]: Direct Instances: []\n", - "[INFO] [1712609759.913287]: Inverse Restrictions: []\n", - "[INFO] [1712609759.913527]: -------------------\n", - "[INFO] [1712609759.913767]: SOMA.Opening \n", - "[INFO] [1712609759.914001]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609759.914280]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating, SOMA.Opening}\n", - "[INFO] [1712609759.914538]: Subclasses: []\n", - "[INFO] [1712609759.914844]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.915329]: Instances: []\n", - "[INFO] [1712609759.915602]: Direct Instances: []\n", - "[INFO] [1712609759.915865]: Inverse Restrictions: []\n", - "[INFO] [1712609759.916116]: -------------------\n", - "[INFO] [1712609759.916366]: SOMA.Pulling \n", - "[INFO] [1712609759.916625]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609759.916904]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Pulling, SOMA.Actuating}\n", - "[INFO] [1712609759.917186]: Subclasses: []\n", - "[INFO] [1712609759.917517]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.918035]: Instances: []\n", - "[INFO] [1712609759.918314]: Direct Instances: []\n", - "[INFO] [1712609759.918590]: Inverse Restrictions: []\n", - "[INFO] [1712609759.918836]: -------------------\n", - "[INFO] [1712609759.919077]: SOMA.Pushing \n", - "[INFO] [1712609759.919315]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609759.919563]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.919811]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712609759.920129]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.920636]: Instances: []\n", - "[INFO] [1712609759.920904]: Direct Instances: []\n", - "[INFO] [1712609759.921164]: Inverse Restrictions: []\n", - "[INFO] [1712609759.921409]: -------------------\n", - "[INFO] [1712609759.921658]: SOMA.Squeezing \n", - "[INFO] [1712609759.921896]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609759.922151]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Squeezing, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609759.922396]: Subclasses: []\n", - "[INFO] [1712609759.922686]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.923193]: Instances: []\n", - "[INFO] [1712609759.923462]: Direct Instances: []\n", - "[INFO] [1712609759.923723]: Inverse Restrictions: []\n", - "[INFO] [1712609759.924004]: -------------------\n", - "[INFO] [1712609759.924270]: SOMA.Linkage \n", - "[INFO] [1712609759.924534]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712609759.924798]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.Linkage, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.925047]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712609759.925336]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.925819]: Instances: []\n", - "[INFO] [1712609759.926092]: Direct Instances: []\n", - "[INFO] [1712609759.926356]: Inverse Restrictions: []\n", - "[INFO] [1712609759.926601]: -------------------\n", - "[INFO] [1712609759.926838]: SOMA.Clumsiness \n", - "[INFO] [1712609759.927068]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712609759.927318]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Clumsiness, DUL.Diagnosis}\n", - "[INFO] [1712609759.927575]: Subclasses: []\n", - "[INFO] [1712609759.927871]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.928356]: Instances: []\n", - "[INFO] [1712609759.928613]: Direct Instances: []\n", - "[INFO] [1712609759.928863]: Inverse Restrictions: []\n", - "[INFO] [1712609759.929101]: -------------------\n", - "[INFO] [1712609759.929340]: SOMA.CognitiveAgent \n", - "[INFO] [1712609759.929742]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712609759.930082]: Ancestors: {DUL.Entity, DUL.Agent, SOMA.CognitiveAgent, DUL.Object, owl.Thing}\n", - "[INFO] [1712609759.930340]: Subclasses: []\n", - "[INFO] [1712609759.930652]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.931144]: Instances: []\n", - "[INFO] [1712609759.931405]: Direct Instances: []\n", - "[INFO] [1712609759.931653]: Inverse Restrictions: []\n", - "[INFO] [1712609759.931897]: -------------------\n", - "[INFO] [1712609759.932141]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712609759.932377]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712609759.932620]: Ancestors: {DUL.Entity, SOMA.SubCognitiveAgent, DUL.Agent, DUL.Object, owl.Thing}\n", - "[INFO] [1712609759.932865]: Subclasses: []\n", - "[INFO] [1712609759.933155]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.933666]: Instances: []\n", - "[INFO] [1712609759.933940]: Direct Instances: []\n", - "[INFO] [1712609759.934203]: Inverse Restrictions: []\n", - "[INFO] [1712609759.934449]: -------------------\n", - "[INFO] [1712609759.934697]: SOMA.Collision \n", - "[INFO] [1712609759.934953]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712609759.935206]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType, SOMA.Collision}\n", - "[INFO] [1712609759.935452]: Subclasses: []\n", - "[INFO] [1712609759.935738]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.936229]: Instances: []\n", - "[INFO] [1712609759.936502]: Direct Instances: []\n", - "[INFO] [1712609759.936758]: Inverse Restrictions: []\n", - "[INFO] [1712609759.936999]: -------------------\n", - "[INFO] [1712609759.937238]: SOMA.Extrinsic \n", - "[INFO] [1712609759.937474]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712609759.937714]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609759.937977]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712609759.938288]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.938845]: Instances: []\n", - "[INFO] [1712609759.939122]: Direct Instances: []\n", - "[INFO] [1712609759.939384]: Inverse Restrictions: []\n", - "[INFO] [1712609759.939647]: -------------------\n", - "[INFO] [1712609759.939895]: SOMA.ImperativeClause \n", - "[INFO] [1712609759.940142]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712609759.940412]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, SOMA.ImperativeClause, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609759.940686]: Subclasses: []\n", - "[INFO] [1712609759.940997]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.expresses]\n", - "[INFO] [1712609759.941488]: Instances: []\n", - "[INFO] [1712609759.941761]: Direct Instances: []\n", - "[INFO] [1712609759.942058]: Inverse Restrictions: []\n", - "[INFO] [1712609759.942306]: -------------------\n", - "[INFO] [1712609759.942543]: SOMA.CommitedObject \n", - "[INFO] [1712609759.942777]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712609759.943024]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.CommitedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.943275]: Subclasses: []\n", - "[INFO] [1712609759.943568]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.944050]: Instances: []\n", - "[INFO] [1712609759.944303]: Direct Instances: []\n", - "[INFO] [1712609759.944559]: Inverse Restrictions: []\n", - "[INFO] [1712609759.944800]: -------------------\n", - "[INFO] [1712609759.945033]: SOMA.ConnectedObject \n", - "[INFO] [1712609759.945265]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609759.945501]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.945748]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712609759.946051]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.946556]: Instances: []\n", - "[INFO] [1712609759.946812]: Direct Instances: []\n", - "[INFO] [1712609759.947155]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712609759.947412]: -------------------\n", - "[INFO] [1712609759.947659]: SOMA.CommunicationAction \n", - "[INFO] [1712609759.947902]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712609759.948153]: Ancestors: {DUL.Entity, SOMA.CommunicationAction, DUL.Action, owl.Thing, DUL.Event}\n", - "[INFO] [1712609759.948419]: Subclasses: []\n", - "[INFO] [1712609759.948726]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.949218]: Instances: []\n", - "[INFO] [1712609759.949489]: Direct Instances: []\n", - "[INFO] [1712609759.949784]: Inverse Restrictions: []\n", - "[INFO] [1712609759.950023]: -------------------\n", - "[INFO] [1712609759.950279]: SOMA.LinguisticObject \n", - "[INFO] [1712609759.950523]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712609759.950768]: Ancestors: {DUL.Entity, DUL.InformationEntity, DUL.SocialObject, DUL.Object, SOMA.LinguisticObject, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609759.951032]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712609759.951327]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.951830]: Instances: []\n", - "[INFO] [1712609759.952100]: Direct Instances: []\n", - "[INFO] [1712609759.952402]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712609759.952657]: -------------------\n", - "[INFO] [1712609759.952895]: SOMA.CommunicationReport \n", - "[INFO] [1712609759.953131]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609759.953377]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712609759.953634]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712609759.953928]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.954449]: Instances: []\n", - "[INFO] [1712609759.954730]: Direct Instances: []\n", - "[INFO] [1712609759.954989]: Inverse Restrictions: []\n", - "[INFO] [1712609759.955231]: -------------------\n", - "[INFO] [1712609759.955477]: SOMA.Receiver \n", - "[INFO] [1712609759.955739]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712609759.955998]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExperiencerRole, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Receiver, SOMA.PerformerRole}\n", - "[INFO] [1712609759.956249]: Subclasses: []\n", - "[INFO] [1712609759.956557]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.957068]: Instances: []\n", - "[INFO] [1712609759.957363]: Direct Instances: []\n", - "[INFO] [1712609759.957688]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609759.957958]: -------------------\n", - "[INFO] [1712609759.958221]: SOMA.Sender \n", - "[INFO] [1712609759.958474]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712609759.958727]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, SOMA.Sender, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", - "[INFO] [1712609759.958988]: Subclasses: []\n", - "[INFO] [1712609759.959287]: Properties: [rdf-schema.comment, DUL.hasTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.959793]: Instances: []\n", - "[INFO] [1712609759.960057]: Direct Instances: []\n", - "[INFO] [1712609759.960376]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609759.960621]: -------------------\n", - "[INFO] [1712609759.960859]: SOMA.CommunicationTopic \n", - "[INFO] [1712609759.961123]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712609759.961397]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.961654]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609759.961951]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.962465]: Instances: []\n", - "[INFO] [1712609759.962745]: Direct Instances: []\n", - "[INFO] [1712609759.963007]: Inverse Restrictions: []\n", - "[INFO] [1712609759.963250]: -------------------\n", - "[INFO] [1712609759.963487]: SOMA.ResourceRole \n", - "[INFO] [1712609759.963724]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609759.963968]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.964235]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712609759.964530]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.965088]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609759.965365]: Direct Instances: []\n", - "[INFO] [1712609759.965645]: Inverse Restrictions: []\n", - "[INFO] [1712609759.965899]: -------------------\n", - "[INFO] [1712609759.966142]: SOMA.Composing \n", - "[INFO] [1712609759.966398]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712609759.966652]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Composing, SOMA.Disposition}\n", - "[INFO] [1712609759.966894]: Subclasses: []\n", - "[INFO] [1712609759.967182]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.967684]: Instances: []\n", - "[INFO] [1712609759.967950]: Direct Instances: []\n", - "[INFO] [1712609759.968243]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712609759.968488]: -------------------\n", - "[INFO] [1712609759.968729]: SOMA.Computer_Language \n", - "[INFO] [1712609759.968978]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712609759.969227]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.969485]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712609759.969771]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.970297]: Instances: []\n", - "[INFO] [1712609759.970564]: Direct Instances: []\n", - "[INFO] [1712609759.970820]: Inverse Restrictions: []\n", - "[INFO] [1712609759.971057]: -------------------\n", - "[INFO] [1712609759.971292]: SOMA.FormalLanguage \n", - "[INFO] [1712609759.971537]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712609759.971794]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.972044]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609759.972334]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.972864]: Instances: []\n", - "[INFO] [1712609759.973134]: Direct Instances: []\n", - "[INFO] [1712609759.973449]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712609759.973693]: -------------------\n", - "[INFO] [1712609759.973949]: SOMA.Computer_Program \n", - "[INFO] [1712609759.974222]: Super classes: [owl.Thing]\n", - "[INFO] [1712609759.974477]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", - "[INFO] [1712609759.974732]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712609759.975032]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, DUL.expresses, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.975544]: Instances: []\n", - "[INFO] [1712609759.975811]: Direct Instances: []\n", - "[INFO] [1712609759.976163]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712609759.976408]: -------------------\n", - "[INFO] [1712609759.976644]: SOMA.Programming_Language \n", - "[INFO] [1712609759.976884]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712609759.977142]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Programming_Language, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609759.977396]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712609759.977690]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.978175]: Instances: []\n", - "[INFO] [1712609759.978447]: Direct Instances: []\n", - "[INFO] [1712609759.978758]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712609759.979005]: -------------------\n", - "[INFO] [1712609759.979241]: SOMA.Conclusion \n", - "[INFO] [1712609759.979474]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712609759.979724]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Conclusion, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.CreatedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.979977]: Subclasses: []\n", - "[INFO] [1712609759.980271]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.980756]: Instances: []\n", - "[INFO] [1712609759.981007]: Direct Instances: []\n", - "[INFO] [1712609759.981308]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609759.981566]: -------------------\n", - "[INFO] [1712609759.981811]: SOMA.CreatedObject \n", - "[INFO] [1712609759.982049]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609759.982424]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.CreatedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.982769]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712609759.983105]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.983621]: Instances: []\n", - "[INFO] [1712609759.983896]: Direct Instances: []\n", - "[INFO] [1712609759.984191]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712609759.984439]: -------------------\n", - "[INFO] [1712609759.984694]: SOMA.Knowledge \n", - "[INFO] [1712609759.984935]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712609759.985184]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609759.985437]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712609759.985730]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.986235]: Instances: []\n", - "[INFO] [1712609759.986504]: Direct Instances: []\n", - "[INFO] [1712609759.986937]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712609759.987199]: -------------------\n", - "[INFO] [1712609759.987449]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712609759.987694]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712609759.987941]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, SOMA.Succedence, owl.Thing, SOMA.ConditionalSuccedence}\n", - "[INFO] [1712609759.988182]: Subclasses: []\n", - "[INFO] [1712609759.988471]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.988975]: Instances: []\n", - "[INFO] [1712609759.989247]: Direct Instances: []\n", - "[INFO] [1712609759.989506]: Inverse Restrictions: []\n", - "[INFO] [1712609759.989751]: -------------------\n", - "[INFO] [1712609759.990013]: SOMA.Configuration \n", - "[INFO] [1712609759.990330]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712609759.990641]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Configuration, DUL.Description, owl.Thing}\n", - "[INFO] [1712609759.990946]: Subclasses: []\n", - "[INFO] [1712609759.991369]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, DUL.describes]\n", - "[INFO] [1712609759.991933]: Instances: []\n", - "[INFO] [1712609759.992255]: Direct Instances: []\n", - "[INFO] [1712609759.992559]: Inverse Restrictions: []\n", - "[INFO] [1712609759.992829]: -------------------\n", - "[INFO] [1712609759.993233]: SOMA.Connectivity \n", - "[INFO] [1712609759.993610]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712609759.994013]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Connectivity, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609759.994410]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712609759.994838]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.995458]: Instances: []\n", - "[INFO] [1712609759.995839]: Direct Instances: []\n", - "[INFO] [1712609759.996263]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712609759.996545]: -------------------\n", - "[INFO] [1712609759.996795]: SOMA.ContactState \n", - "[INFO] [1712609759.997048]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712609759.997305]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.ContactState, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609759.997543]: Subclasses: []\n", - "[INFO] [1712609759.997831]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609759.998341]: Instances: []\n", - "[INFO] [1712609759.998608]: Direct Instances: []\n", - "[INFO] [1712609759.998857]: Inverse Restrictions: []\n", - "[INFO] [1712609759.999093]: -------------------\n", - "[INFO] [1712609759.999326]: SOMA.Container \n", - "[INFO] [1712609759.999574]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712609759.999829]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Container, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609760.000080]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", - "[INFO] [1712609760.000395]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.000920]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609760.001218]: Direct Instances: []\n", - "[INFO] [1712609760.001566]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712609760.001821]: -------------------\n", - "[INFO] [1712609760.002065]: SOMA.Containment \n", - "[INFO] [1712609760.002335]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712609760.002599]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.002871]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712609760.003187]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.003696]: Instances: []\n", - "[INFO] [1712609760.003986]: Direct Instances: []\n", - "[INFO] [1712609760.004373]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712609760.004623]: -------------------\n", - "[INFO] [1712609760.004866]: SOMA.IncludedObject \n", - "[INFO] [1712609760.005104]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609760.005349]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.005612]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712609760.005921]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.006478]: Instances: []\n", - "[INFO] [1712609760.006803]: Direct Instances: []\n", - "[INFO] [1712609760.007128]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712609760.007402]: -------------------\n", - "[INFO] [1712609760.007670]: SOMA.ContainmentState \n", - "[INFO] [1712609760.007940]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712609760.008212]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.ContainmentState, SOMA.FunctionalControl}\n", - "[INFO] [1712609760.008474]: Subclasses: []\n", - "[INFO] [1712609760.008783]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.009281]: Instances: []\n", - "[INFO] [1712609760.009547]: Direct Instances: []\n", - "[INFO] [1712609760.009794]: Inverse Restrictions: []\n", - "[INFO] [1712609760.010032]: -------------------\n", - "[INFO] [1712609760.010286]: SOMA.FunctionalControl \n", - "[INFO] [1712609760.010537]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712609760.010787]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.FunctionalControl}\n", - "[INFO] [1712609760.011037]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712609760.011331]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.011845]: Instances: []\n", - "[INFO] [1712609760.012116]: Direct Instances: []\n", - "[INFO] [1712609760.012374]: Inverse Restrictions: []\n", - "[INFO] [1712609760.012618]: -------------------\n", - "[INFO] [1712609760.012854]: SOMA.ContainmentTheory \n", - "[INFO] [1712609760.013090]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712609760.013341]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", - "[INFO] [1712609760.013606]: Subclasses: []\n", - "[INFO] [1712609760.013906]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.014396]: Instances: []\n", - "[INFO] [1712609760.014653]: Direct Instances: []\n", - "[INFO] [1712609760.014898]: Inverse Restrictions: []\n", - "[INFO] [1712609760.015135]: -------------------\n", - "[INFO] [1712609760.015386]: SOMA.ControlTheory \n", - "[INFO] [1712609760.015626]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712609760.015875]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", - "[INFO] [1712609760.016119]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712609760.016399]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.016902]: Instances: []\n", - "[INFO] [1712609760.017164]: Direct Instances: []\n", - "[INFO] [1712609760.017418]: Inverse Restrictions: []\n", - "[INFO] [1712609760.017669]: -------------------\n", - "[INFO] [1712609760.017912]: SOMA.ContinuousJoint \n", - "[INFO] [1712609760.018155]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712609760.018409]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.ContinuousJoint}\n", - "[INFO] [1712609760.018651]: Subclasses: []\n", - "[INFO] [1712609760.018942]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.019439]: Instances: []\n", - "[INFO] [1712609760.019706]: Direct Instances: []\n", - "[INFO] [1712609760.019962]: Inverse Restrictions: []\n", - "[INFO] [1712609760.020198]: -------------------\n", - "[INFO] [1712609760.020451]: SOMA.HingeJoint \n", - "[INFO] [1712609760.020695]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712609760.020944]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609760.021193]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712609760.021481]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.021985]: Instances: []\n", - "[INFO] [1712609760.022254]: Direct Instances: []\n", - "[INFO] [1712609760.022510]: Inverse Restrictions: []\n", - "[INFO] [1712609760.022753]: -------------------\n", - "[INFO] [1712609760.022988]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712609760.023249]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712609760.023508]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", - "[INFO] [1712609760.023765]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712609760.024089]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.024596]: Instances: []\n", - "[INFO] [1712609760.024880]: Direct Instances: []\n", - "[INFO] [1712609760.025144]: Inverse Restrictions: []\n", - "[INFO] [1712609760.025388]: -------------------\n", - "[INFO] [1712609760.025630]: SOMA.Cover \n", - "[INFO] [1712609760.025869]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712609760.026120]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Cover, SOMA.Restrictor}\n", - "[INFO] [1712609760.026412]: Subclasses: []\n", - "[INFO] [1712609760.026724]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.027238]: Instances: []\n", - "[INFO] [1712609760.027505]: Direct Instances: []\n", - "[INFO] [1712609760.027790]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712609760.028053]: -------------------\n", - "[INFO] [1712609760.028305]: SOMA.Coverage \n", - "[INFO] [1712609760.028558]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712609760.028809]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, SOMA.Coverage, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.029048]: Subclasses: []\n", - "[INFO] [1712609760.029336]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.029835]: Instances: []\n", - "[INFO] [1712609760.030096]: Direct Instances: []\n", - "[INFO] [1712609760.030354]: Inverse Restrictions: []\n", - "[INFO] [1712609760.030591]: -------------------\n", - "[INFO] [1712609760.030829]: SOMA.CoveredObject \n", - "[INFO] [1712609760.031069]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712609760.031333]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CoveredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", - "[INFO] [1712609760.031580]: Subclasses: []\n", - "[INFO] [1712609760.031870]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.032357]: Instances: []\n", - "[INFO] [1712609760.032633]: Direct Instances: []\n", - "[INFO] [1712609760.032929]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712609760.033174]: -------------------\n", - "[INFO] [1712609760.033411]: SOMA.CoverageTheory \n", - "[INFO] [1712609760.033644]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712609760.033897]: Ancestors: {DUL.Entity, SOMA.CoverageTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing}\n", - "[INFO] [1712609760.034149]: Subclasses: []\n", - "[INFO] [1712609760.034446]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.034932]: Instances: []\n", - "[INFO] [1712609760.035203]: Direct Instances: []\n", - "[INFO] [1712609760.035458]: Inverse Restrictions: []\n", - "[INFO] [1712609760.035696]: -------------------\n", - "[INFO] [1712609760.035936]: SOMA.CoveringTheory \n", - "[INFO] [1712609760.036186]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712609760.036430]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.CoveringTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609760.036693]: Subclasses: []\n", - "[INFO] [1712609760.036998]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.037484]: Instances: []\n", - "[INFO] [1712609760.037758]: Direct Instances: []\n", - "[INFO] [1712609760.038013]: Inverse Restrictions: []\n", - "[INFO] [1712609760.038318]: -------------------\n", - "[INFO] [1712609760.038679]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712609760.038971]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712609760.039250]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609760.039520]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712609760.039822]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.040339]: Instances: []\n", - "[INFO] [1712609760.040610]: Direct Instances: []\n", - "[INFO] [1712609760.040879]: Inverse Restrictions: []\n", - "[INFO] [1712609760.041126]: -------------------\n", - "[INFO] [1712609760.041370]: SOMA.CrackingTheory \n", - "[INFO] [1712609760.041620]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712609760.041881]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.CrackingTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609760.042132]: Subclasses: []\n", - "[INFO] [1712609760.042431]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.042925]: Instances: []\n", - "[INFO] [1712609760.043205]: Direct Instances: []\n", - "[INFO] [1712609760.043461]: Inverse Restrictions: []\n", - "[INFO] [1712609760.043705]: -------------------\n", - "[INFO] [1712609760.043944]: SOMA.Creation \n", - "[INFO] [1712609760.044184]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712609760.044448]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Creation, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609760.044708]: Subclasses: []\n", - "[INFO] [1712609760.045008]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.045499]: Instances: []\n", - "[INFO] [1712609760.045779]: Direct Instances: []\n", - "[INFO] [1712609760.046039]: Inverse Restrictions: []\n", - "[INFO] [1712609760.046287]: -------------------\n", - "[INFO] [1712609760.046527]: SOMA.Insertion \n", - "[INFO] [1712609760.046769]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712609760.047016]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Insertion, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.047274]: Subclasses: []\n", - "[INFO] [1712609760.047572]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.048059]: Instances: []\n", - "[INFO] [1712609760.048317]: Direct Instances: []\n", - "[INFO] [1712609760.048645]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712609760.048907]: -------------------\n", - "[INFO] [1712609760.049160]: SOMA.DesignedFurniture \n", - "[INFO] [1712609760.049420]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712609760.049671]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedFurniture}\n", - "[INFO] [1712609760.049925]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712609760.050226]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.050744]: Instances: []\n", - "[INFO] [1712609760.051014]: Direct Instances: []\n", - "[INFO] [1712609760.051265]: Inverse Restrictions: []\n", - "[INFO] [1712609760.051514]: -------------------\n", - "[INFO] [1712609760.051777]: SOMA.Cuttability \n", - "[INFO] [1712609760.052035]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712609760.052296]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.052551]: Subclasses: []\n", - "[INFO] [1712609760.052868]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.053362]: Instances: []\n", - "[INFO] [1712609760.053623]: Direct Instances: []\n", - "[INFO] [1712609760.053878]: Inverse Restrictions: []\n", - "[INFO] [1712609760.054141]: -------------------\n", - "[INFO] [1712609760.054697]: SOMA.Tool \n", - "[INFO] [1712609760.055170]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712609760.055517]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Tool}\n", - "[INFO] [1712609760.055804]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712609760.056125]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.056659]: Instances: []\n", - "[INFO] [1712609760.056954]: Direct Instances: []\n", - "[INFO] [1712609760.057264]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712609760.057557]: -------------------\n", - "[INFO] [1712609760.057819]: SOMA.Cutting \n", - "[INFO] [1712609760.058063]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712609760.058336]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609760.058615]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712609760.058927]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.059443]: Instances: []\n", - "[INFO] [1712609760.059717]: Direct Instances: []\n", - "[INFO] [1712609760.059981]: Inverse Restrictions: []\n", - "[INFO] [1712609760.060235]: -------------------\n", - "[INFO] [1712609760.060478]: SOMA.DesignedTool \n", - "[INFO] [1712609760.060721]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712609760.060978]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.DesignedTool}\n", - "[INFO] [1712609760.061244]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712609760.061544]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.062081]: Instances: []\n", - "[INFO] [1712609760.062366]: Direct Instances: []\n", - "[INFO] [1712609760.062636]: Inverse Restrictions: []\n", - "[INFO] [1712609760.062884]: -------------------\n", - "[INFO] [1712609760.063122]: SOMA.Shaping \n", - "[INFO] [1712609760.063373]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712609760.063627]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Shaping, SOMA.Disposition}\n", - "[INFO] [1712609760.063884]: Subclasses: []\n", - "[INFO] [1712609760.064184]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.064674]: Instances: []\n", - "[INFO] [1712609760.064936]: Direct Instances: []\n", - "[INFO] [1712609760.065226]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712609760.065475]: -------------------\n", - "[INFO] [1712609760.065711]: SOMA.Database \n", - "[INFO] [1712609760.065949]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609760.066245]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.066681]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712609760.067028]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.067548]: Instances: []\n", - "[INFO] [1712609760.067832]: Direct Instances: []\n", - "[INFO] [1712609760.068101]: Inverse Restrictions: []\n", - "[INFO] [1712609760.068350]: -------------------\n", - "[INFO] [1712609760.068596]: SOMA.SoftwareRole \n", - "[INFO] [1712609760.068839]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712609760.069085]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.069338]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712609760.069645]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.070176]: Instances: []\n", - "[INFO] [1712609760.070440]: Direct Instances: []\n", - "[INFO] [1712609760.070729]: Inverse Restrictions: []\n", - "[INFO] [1712609760.070981]: -------------------\n", - "[INFO] [1712609760.071225]: SOMA.Deciding \n", - "[INFO] [1712609760.071460]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609760.071701]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Deciding, owl.Thing}\n", - "[INFO] [1712609760.071960]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712609760.072271]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.072775]: Instances: []\n", - "[INFO] [1712609760.073055]: Direct Instances: []\n", - "[INFO] [1712609760.073315]: Inverse Restrictions: []\n", - "[INFO] [1712609760.073558]: -------------------\n", - "[INFO] [1712609760.073795]: SOMA.DerivingInformation \n", - "[INFO] [1712609760.074071]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712609760.074450]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, owl.Thing}\n", - "[INFO] [1712609760.074765]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712609760.075086]: Properties: [rdf-schema.label, SOMA.isTaskOfOutputRole, SOMA.isTaskOfInputRole, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.075628]: Instances: []\n", - "[INFO] [1712609760.075912]: Direct Instances: []\n", - "[INFO] [1712609760.076183]: Inverse Restrictions: []\n", - "[INFO] [1712609760.076431]: -------------------\n", - "[INFO] [1712609760.076801]: SOMA.DeductiveReasoning \n", - "[INFO] [1712609760.078393]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712609760.078700]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.DeductiveReasoning, SOMA.Reasoning}\n", - "[INFO] [1712609760.078978]: Subclasses: []\n", - "[INFO] [1712609760.079401]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.080031]: Instances: []\n", - "[INFO] [1712609760.080407]: Direct Instances: []\n", - "[INFO] [1712609760.080792]: Inverse Restrictions: []\n", - "[INFO] [1712609760.081161]: -------------------\n", - "[INFO] [1712609760.081540]: SOMA.Deformation \n", - "[INFO] [1712609760.081830]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712609760.082098]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Deformation, SOMA.ProcessType}\n", - "[INFO] [1712609760.082361]: Subclasses: []\n", - "[INFO] [1712609760.082677]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.083175]: Instances: []\n", - "[INFO] [1712609760.083439]: Direct Instances: []\n", - "[INFO] [1712609760.083703]: Inverse Restrictions: []\n", - "[INFO] [1712609760.083948]: -------------------\n", - "[INFO] [1712609760.084186]: SOMA.ShapedObject \n", - "[INFO] [1712609760.084438]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712609760.084689]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ShapedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.084936]: Subclasses: []\n", - "[INFO] [1712609760.085245]: Properties: [rdf-schema.comment, SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.085738]: Instances: []\n", - "[INFO] [1712609760.085997]: Direct Instances: []\n", - "[INFO] [1712609760.086319]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712609760.086584]: -------------------\n", - "[INFO] [1712609760.086834]: SOMA.FluidFlow \n", - "[INFO] [1712609760.087080]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712609760.087330]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.FluidFlow, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.087576]: Subclasses: []\n", - "[INFO] [1712609760.087875]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.088372]: Instances: []\n", - "[INFO] [1712609760.088639]: Direct Instances: []\n", - "[INFO] [1712609760.088891]: Inverse Restrictions: []\n", - "[INFO] [1712609760.089123]: -------------------\n", - "[INFO] [1712609760.089365]: SOMA.Shifting \n", - "[INFO] [1712609760.089621]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712609760.089876]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Disposition, SOMA.Shifting}\n", - "[INFO] [1712609760.090121]: Subclasses: []\n", - "[INFO] [1712609760.090449]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.090939]: Instances: []\n", - "[INFO] [1712609760.091227]: Direct Instances: []\n", - "[INFO] [1712609760.091560]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712609760.091810]: -------------------\n", - "[INFO] [1712609760.092048]: SOMA.DependentPlace \n", - "[INFO] [1712609760.092283]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712609760.092538]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing, SOMA.DependentPlace}\n", - "[INFO] [1712609760.092793]: Subclasses: []\n", - "[INFO] [1712609760.093091]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.093580]: Instances: []\n", - "[INFO] [1712609760.093847]: Direct Instances: []\n", - "[INFO] [1712609760.094135]: Inverse Restrictions: []\n", - "[INFO] [1712609760.094383]: -------------------\n", - "[INFO] [1712609760.094621]: SOMA.Deposit \n", - "[INFO] [1712609760.094856]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712609760.095102]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, SOMA.Deposit, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.095342]: Subclasses: []\n", - "[INFO] [1712609760.095645]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.096142]: Instances: []\n", - "[INFO] [1712609760.096403]: Direct Instances: []\n", - "[INFO] [1712609760.096687]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712609760.096927]: -------------------\n", - "[INFO] [1712609760.097173]: SOMA.DepositedObject \n", - "[INFO] [1712609760.097411]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609760.097656]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.DepositedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.097896]: Subclasses: []\n", - "[INFO] [1712609760.098213]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.098898]: Instances: []\n", - "[INFO] [1712609760.099303]: Direct Instances: []\n", - "[INFO] [1712609760.099722]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712609760.100091]: -------------------\n", - "[INFO] [1712609760.100451]: SOMA.InformationAcquisition \n", - "[INFO] [1712609760.100724]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.100989]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712609760.101254]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712609760.101557]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.102097]: Instances: []\n", - "[INFO] [1712609760.102376]: Direct Instances: []\n", - "[INFO] [1712609760.102675]: Inverse Restrictions: []\n", - "[INFO] [1712609760.102919]: -------------------\n", - "[INFO] [1712609760.103158]: SOMA.Premise \n", - "[INFO] [1712609760.103388]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712609760.103649]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, SOMA.Premise, DUL.Role}\n", - "[INFO] [1712609760.103899]: Subclasses: []\n", - "[INFO] [1712609760.104191]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.104695]: Instances: []\n", - "[INFO] [1712609760.104957]: Direct Instances: []\n", - "[INFO] [1712609760.105255]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609760.105493]: -------------------\n", - "[INFO] [1712609760.105731]: SOMA.FunctionalPart \n", - "[INFO] [1712609760.105976]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712609760.106233]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609760.106490]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712609760.106782]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.107317]: Instances: []\n", - "[INFO] [1712609760.107624]: Direct Instances: []\n", - "[INFO] [1712609760.107894]: Inverse Restrictions: []\n", - "[INFO] [1712609760.108138]: -------------------\n", - "[INFO] [1712609760.108375]: SOMA.Graspability \n", - "[INFO] [1712609760.108613]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712609760.108860]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, SOMA.Graspability, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.109112]: Subclasses: []\n", - "[INFO] [1712609760.109405]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.109886]: Instances: []\n", - "[INFO] [1712609760.110140]: Direct Instances: []\n", - "[INFO] [1712609760.110411]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712609760.110656]: -------------------\n", - "[INFO] [1712609760.110897]: SOMA.Destination \n", - "[INFO] [1712609760.111132]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712609760.111374]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Destination, SOMA.Location}\n", - "[INFO] [1712609760.111614]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712609760.111890]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.112428]: Instances: []\n", - "[INFO] [1712609760.112691]: Direct Instances: []\n", - "[INFO] [1712609760.113003]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712609760.113246]: -------------------\n", - "[INFO] [1712609760.113481]: SOMA.Location \n", - "[INFO] [1712609760.113722]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712609760.113977]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Location}\n", - "[INFO] [1712609760.114232]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712609760.114513]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.115009]: Instances: []\n", - "[INFO] [1712609760.115280]: Direct Instances: []\n", - "[INFO] [1712609760.115543]: Inverse Restrictions: []\n", - "[INFO] [1712609760.115784]: -------------------\n", - "[INFO] [1712609760.116021]: SOMA.DestroyedObject \n", - "[INFO] [1712609760.116251]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609760.116503]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.DestroyedObject, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.116751]: Subclasses: []\n", - "[INFO] [1712609760.117037]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.117522]: Instances: []\n", - "[INFO] [1712609760.117770]: Direct Instances: []\n", - "[INFO] [1712609760.118063]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712609760.118309]: -------------------\n", - "[INFO] [1712609760.118543]: SOMA.Destruction \n", - "[INFO] [1712609760.118776]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712609760.119014]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Destruction, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609760.119261]: Subclasses: []\n", - "[INFO] [1712609760.119554]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.120035]: Instances: []\n", - "[INFO] [1712609760.120285]: Direct Instances: []\n", - "[INFO] [1712609760.120526]: Inverse Restrictions: []\n", - "[INFO] [1712609760.120762]: -------------------\n", - "[INFO] [1712609760.120996]: SOMA.DetectedObject \n", - "[INFO] [1712609760.121222]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609760.121460]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.DetectedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.121711]: Subclasses: []\n", - "[INFO] [1712609760.121999]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.122485]: Instances: []\n", - "[INFO] [1712609760.122736]: Direct Instances: []\n", - "[INFO] [1712609760.122985]: Inverse Restrictions: []\n", - "[INFO] [1712609760.123227]: -------------------\n", - "[INFO] [1712609760.123462]: SOMA.DeviceState \n", - "[INFO] [1712609760.123691]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609760.123925]: Ancestors: {DUL.Entity, SOMA.Intrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.DeviceState}\n", - "[INFO] [1712609760.124195]: Subclasses: []\n", - "[INFO] [1712609760.124492]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.124974]: Instances: []\n", - "[INFO] [1712609760.125223]: Direct Instances: []\n", - "[INFO] [1712609760.125461]: Inverse Restrictions: []\n", - "[INFO] [1712609760.125701]: -------------------\n", - "[INFO] [1712609760.125933]: SOMA.DeviceStateRange \n", - "[INFO] [1712609760.126168]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609760.126410]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceStateRange}\n", - "[INFO] [1712609760.126663]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712609760.126964]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.127458]: Instances: []\n", - "[INFO] [1712609760.127724]: Direct Instances: []\n", - "[INFO] [1712609760.127980]: Inverse Restrictions: []\n", - "[INFO] [1712609760.128217]: -------------------\n", - "[INFO] [1712609760.128449]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712609760.128680]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712609760.128916]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceTurnedOff, owl.Thing, SOMA.DeviceStateRange}\n", - "[INFO] [1712609760.129162]: Subclasses: []\n", - "[INFO] [1712609760.129446]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.129930]: Instances: []\n", - "[INFO] [1712609760.130476]: Direct Instances: []\n", - "[INFO] [1712609760.130865]: Inverse Restrictions: []\n", - "[INFO] [1712609760.131113]: -------------------\n", - "[INFO] [1712609760.131351]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712609760.131586]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712609760.131845]: Ancestors: {DUL.Entity, DUL.Region, DUL.Abstract, SOMA.DeviceTurnedOn, owl.Thing, SOMA.DeviceStateRange}\n", - "[INFO] [1712609760.132102]: Subclasses: []\n", - "[INFO] [1712609760.132396]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.132881]: Instances: []\n", - "[INFO] [1712609760.133290]: Direct Instances: []\n", - "[INFO] [1712609760.133705]: Inverse Restrictions: []\n", - "[INFO] [1712609760.134073]: -------------------\n", - "[INFO] [1712609760.134662]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712609760.135240]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712609760.135842]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.136429]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712609760.137098]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.138093]: Instances: []\n", - "[INFO] [1712609760.138641]: Direct Instances: []\n", - "[INFO] [1712609760.139171]: Inverse Restrictions: []\n", - "[INFO] [1712609760.139584]: -------------------\n", - "[INFO] [1712609760.139967]: SOMA.Dicing \n", - "[INFO] [1712609760.140341]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712609760.140741]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Dicing, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609760.141120]: Subclasses: []\n", - "[INFO] [1712609760.141589]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.142299]: Instances: []\n", - "[INFO] [1712609760.142700]: Direct Instances: []\n", - "[INFO] [1712609760.143011]: Inverse Restrictions: []\n", - "[INFO] [1712609760.143286]: -------------------\n", - "[INFO] [1712609760.143555]: SOMA.DirectedMotion \n", - "[INFO] [1712609760.143820]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712609760.144084]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.144351]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712609760.144677]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.145220]: Instances: []\n", - "[INFO] [1712609760.145499]: Direct Instances: []\n", - "[INFO] [1712609760.145762]: Inverse Restrictions: []\n", - "[INFO] [1712609760.146005]: -------------------\n", - "[INFO] [1712609760.146249]: SOMA.UndirectedMotion \n", - "[INFO] [1712609760.146488]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712609760.146734]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.UndirectedMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.146993]: Subclasses: []\n", - "[INFO] [1712609760.147289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.147775]: Instances: []\n", - "[INFO] [1712609760.148050]: Direct Instances: []\n", - "[INFO] [1712609760.148310]: Inverse Restrictions: []\n", - "[INFO] [1712609760.148734]: -------------------\n", - "[INFO] [1712609760.149103]: SOMA.Dirty \n", - "[INFO] [1712609760.149454]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712609760.149806]: Ancestors: {SOMA.Dirty, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing, SOMA.CleanlinessRegion}\n", - "[INFO] [1712609760.150172]: Subclasses: []\n", - "[INFO] [1712609760.150578]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.151170]: Instances: []\n", - "[INFO] [1712609760.151531]: Direct Instances: []\n", - "[INFO] [1712609760.151879]: Inverse Restrictions: []\n", - "[INFO] [1712609760.152243]: -------------------\n", - "[INFO] [1712609760.152594]: SOMA.Discourse \n", - "[INFO] [1712609760.152935]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712609760.153285]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Discourse}\n", - "[INFO] [1712609760.153640]: Subclasses: []\n", - "[INFO] [1712609760.154040]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.154635]: Instances: []\n", - "[INFO] [1712609760.155026]: Direct Instances: []\n", - "[INFO] [1712609760.155392]: Inverse Restrictions: []\n", - "[INFO] [1712609760.155746]: -------------------\n", - "[INFO] [1712609760.156099]: SOMA.Distancing \n", - "[INFO] [1712609760.156443]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712609760.156829]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing, SOMA.Distancing}\n", - "[INFO] [1712609760.157226]: Subclasses: []\n", - "[INFO] [1712609760.157634]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.158262]: Instances: []\n", - "[INFO] [1712609760.158692]: Direct Instances: []\n", - "[INFO] [1712609760.159065]: Inverse Restrictions: []\n", - "[INFO] [1712609760.159415]: -------------------\n", - "[INFO] [1712609760.159757]: SOMA.Dreaming \n", - "[INFO] [1712609760.160096]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609760.160438]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, SOMA.Dreaming, owl.Thing}\n", - "[INFO] [1712609760.160792]: Subclasses: []\n", - "[INFO] [1712609760.161182]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.161766]: Instances: []\n", - "[INFO] [1712609760.162114]: Direct Instances: []\n", - "[INFO] [1712609760.162472]: Inverse Restrictions: []\n", - "[INFO] [1712609760.162816]: -------------------\n", - "[INFO] [1712609760.163152]: SOMA.Driving \n", - "[INFO] [1712609760.163489]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609760.163829]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Driving, SOMA.Locomotion, DUL.EventType, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.164174]: Subclasses: []\n", - "[INFO] [1712609760.164576]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.165165]: Instances: []\n", - "[INFO] [1712609760.165527]: Direct Instances: []\n", - "[INFO] [1712609760.165880]: Inverse Restrictions: []\n", - "[INFO] [1712609760.166218]: -------------------\n", - "[INFO] [1712609760.166550]: SOMA.Flying \n", - "[INFO] [1712609760.166882]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609760.167221]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Flying, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.167575]: Subclasses: []\n", - "[INFO] [1712609760.167968]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.168551]: Instances: []\n", - "[INFO] [1712609760.168896]: Direct Instances: []\n", - "[INFO] [1712609760.169231]: Inverse Restrictions: []\n", - "[INFO] [1712609760.169561]: -------------------\n", - "[INFO] [1712609760.169898]: SOMA.Swimming \n", - "[INFO] [1712609760.170247]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609760.170603]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType, SOMA.Swimming}\n", - "[INFO] [1712609760.170950]: Subclasses: []\n", - "[INFO] [1712609760.171355]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.171938]: Instances: []\n", - "[INFO] [1712609760.172284]: Direct Instances: []\n", - "[INFO] [1712609760.172620]: Inverse Restrictions: []\n", - "[INFO] [1712609760.172952]: -------------------\n", - "[INFO] [1712609760.173285]: SOMA.Walking \n", - "[INFO] [1712609760.173613]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609760.173947]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Walking, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.174284]: Subclasses: []\n", - "[INFO] [1712609760.174660]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.175250]: Instances: []\n", - "[INFO] [1712609760.175597]: Direct Instances: []\n", - "[INFO] [1712609760.175961]: Inverse Restrictions: []\n", - "[INFO] [1712609760.176285]: -------------------\n", - "[INFO] [1712609760.176608]: SOMA.Dropping \n", - "[INFO] [1712609760.176934]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609760.177279]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Dropping, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609760.177605]: Subclasses: []\n", - "[INFO] [1712609760.177989]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.178586]: Instances: []\n", - "[INFO] [1712609760.178938]: Direct Instances: []\n", - "[INFO] [1712609760.179277]: Inverse Restrictions: []\n", - "[INFO] [1712609760.179693]: -------------------\n", - "[INFO] [1712609760.180033]: SOMA.Placing \n", - "[INFO] [1712609760.180361]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609760.180694]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Placing, owl.Thing}\n", - "[INFO] [1712609760.181023]: Subclasses: []\n", - "[INFO] [1712609760.181393]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.181995]: Instances: [SOMA.placing]\n", - "[INFO] [1712609760.182442]: Direct Instances: [SOMA.placing]\n", - "[INFO] [1712609760.182791]: Inverse Restrictions: []\n", - "[INFO] [1712609760.183078]: -------------------\n", - "[INFO] [1712609760.183350]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712609760.183618]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712609760.183888]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.ESTSchemaTheory, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609760.184141]: Subclasses: []\n", - "[INFO] [1712609760.184439]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.184944]: Instances: []\n", - "[INFO] [1712609760.185215]: Direct Instances: []\n", - "[INFO] [1712609760.185473]: Inverse Restrictions: []\n", - "[INFO] [1712609760.185709]: -------------------\n", - "[INFO] [1712609760.185955]: SOMA.ExistingObjectRole \n", - "[INFO] [1712609760.186218]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609760.186476]: Ancestors: {SOMA.ExistingObjectRole, DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.186720]: Subclasses: []\n", - "[INFO] [1712609760.187009]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.187496]: Instances: []\n", - "[INFO] [1712609760.187767]: Direct Instances: []\n", - "[INFO] [1712609760.188061]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712609760.188307]: -------------------\n", - "[INFO] [1712609760.188548]: SOMA.Effort \n", - "[INFO] [1712609760.188780]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712609760.189023]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Parameter, owl.Thing, SOMA.Effort}\n", - "[INFO] [1712609760.189278]: Subclasses: []\n", - "[INFO] [1712609760.189574]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.190063]: Instances: []\n", - "[INFO] [1712609760.190321]: Direct Instances: []\n", - "[INFO] [1712609760.190589]: Inverse Restrictions: []\n", - "[INFO] [1712609760.190878]: -------------------\n", - "[INFO] [1712609760.191134]: SOMA.EnclosedObject \n", - "[INFO] [1712609760.191377]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712609760.191626]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.EnclosedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.191882]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712609760.192174]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.192684]: Instances: []\n", - "[INFO] [1712609760.192961]: Direct Instances: []\n", - "[INFO] [1712609760.193261]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712609760.193508]: -------------------\n", - "[INFO] [1712609760.193750]: SOMA.Enclosing \n", - "[INFO] [1712609760.194000]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712609760.194280]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.194553]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712609760.194854]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.195357]: Instances: []\n", - "[INFO] [1712609760.195626]: Direct Instances: []\n", - "[INFO] [1712609760.195886]: Inverse Restrictions: []\n", - "[INFO] [1712609760.196125]: -------------------\n", - "[INFO] [1712609760.196358]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712609760.196590]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609760.196833]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712609760.197093]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712609760.197383]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.197873]: Instances: []\n", - "[INFO] [1712609760.198127]: Direct Instances: []\n", - "[INFO] [1712609760.198382]: Inverse Restrictions: []\n", - "[INFO] [1712609760.198631]: -------------------\n", - "[INFO] [1712609760.198867]: SOMA.Manipulating \n", - "[INFO] [1712609760.199104]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712609760.199343]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609760.199598]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712609760.199899]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.200421]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712609760.200682]: Direct Instances: []\n", - "[INFO] [1712609760.200935]: Inverse Restrictions: []\n", - "[INFO] [1712609760.201169]: -------------------\n", - "[INFO] [1712609760.201409]: SOMA.Episode \n", - "[INFO] [1712609760.201646]: Super classes: [DUL.Situation]\n", - "[INFO] [1712609760.201882]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing}\n", - "[INFO] [1712609760.202128]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712609760.202410]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.202914]: Instances: []\n", - "[INFO] [1712609760.203176]: Direct Instances: []\n", - "[INFO] [1712609760.203430]: Inverse Restrictions: []\n", - "[INFO] [1712609760.203668]: -------------------\n", - "[INFO] [1712609760.203909]: SOMA.ExcludedObject \n", - "[INFO] [1712609760.204155]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609760.204492]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExcludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.204773]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712609760.205076]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.205590]: Instances: []\n", - "[INFO] [1712609760.205875]: Direct Instances: []\n", - "[INFO] [1712609760.206191]: Inverse Restrictions: []\n", - "[INFO] [1712609760.206440]: -------------------\n", - "[INFO] [1712609760.206684]: SOMA.ExecutableFile \n", - "[INFO] [1712609760.206935]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.207181]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", - "[INFO] [1712609760.207453]: Subclasses: []\n", - "[INFO] [1712609760.207761]: Properties: [rdf-schema.comment, DUL.realizes, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.208249]: Instances: []\n", - "[INFO] [1712609760.208511]: Direct Instances: []\n", - "[INFO] [1712609760.208827]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712609760.209071]: -------------------\n", - "[INFO] [1712609760.209307]: SOMA.Executable_Code \n", - "[INFO] [1712609760.209541]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712609760.209793]: Ancestors: {SOMA.Computer_Program, owl.Thing, SOMA.Executable_Code}\n", - "[INFO] [1712609760.210043]: Subclasses: []\n", - "[INFO] [1712609760.210472]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.211048]: Instances: []\n", - "[INFO] [1712609760.211357]: Direct Instances: []\n", - "[INFO] [1712609760.211728]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712609760.212014]: -------------------\n", - "[INFO] [1712609760.212278]: SOMA.ExecutableFormat \n", - "[INFO] [1712609760.212531]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712609760.212790]: Ancestors: {DUL.Entity, SOMA.ExecutableFormat, SOMA.File_format, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.213033]: Subclasses: []\n", - "[INFO] [1712609760.213329]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.213838]: Instances: []\n", - "[INFO] [1712609760.214108]: Direct Instances: []\n", - "[INFO] [1712609760.214425]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712609760.214675]: -------------------\n", - "[INFO] [1712609760.214918]: SOMA.SchematicTheory \n", - "[INFO] [1712609760.215168]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712609760.215420]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609760.215673]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712609760.215959]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.216472]: Instances: []\n", - "[INFO] [1712609760.216747]: Direct Instances: []\n", - "[INFO] [1712609760.217010]: Inverse Restrictions: []\n", - "[INFO] [1712609760.217259]: -------------------\n", - "[INFO] [1712609760.217500]: SOMA.ExecutableSoftware \n", - "[INFO] [1712609760.217734]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.217988]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", - "[INFO] [1712609760.218242]: Subclasses: []\n", - "[INFO] [1712609760.218536]: Properties: [rdf-schema.comment, DUL.hasMember, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.219028]: Instances: []\n", - "[INFO] [1712609760.219279]: Direct Instances: []\n", - "[INFO] [1712609760.219527]: Inverse Restrictions: []\n", - "[INFO] [1712609760.219772]: -------------------\n", - "[INFO] [1712609760.220011]: SOMA.Software \n", - "[INFO] [1712609760.220260]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712609760.220505]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.Software}\n", - "[INFO] [1712609760.220763]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712609760.221059]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.describes]\n", - "[INFO] [1712609760.221552]: Instances: []\n", - "[INFO] [1712609760.221812]: Direct Instances: []\n", - "[INFO] [1712609760.222195]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609760.222445]: -------------------\n", - "[INFO] [1712609760.222685]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712609760.222923]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712609760.223171]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.223427]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712609760.223722]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.224217]: Instances: []\n", - "[INFO] [1712609760.224511]: Direct Instances: []\n", - "[INFO] [1712609760.224779]: Inverse Restrictions: []\n", - "[INFO] [1712609760.225021]: -------------------\n", - "[INFO] [1712609760.225257]: SOMA.ExperiencerRole \n", - "[INFO] [1712609760.225486]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712609760.225728]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExperiencerRole, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.PerformerRole}\n", - "[INFO] [1712609760.225987]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712609760.226285]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.226781]: Instances: []\n", - "[INFO] [1712609760.227052]: Direct Instances: []\n", - "[INFO] [1712609760.227313]: Inverse Restrictions: []\n", - "[INFO] [1712609760.227554]: -------------------\n", - "[INFO] [1712609760.227787]: SOMA.ExtractedObject \n", - "[INFO] [1712609760.228020]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609760.228264]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.ExtractedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.228517]: Subclasses: []\n", - "[INFO] [1712609760.228809]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.229296]: Instances: []\n", - "[INFO] [1712609760.229548]: Direct Instances: []\n", - "[INFO] [1712609760.229796]: Inverse Restrictions: []\n", - "[INFO] [1712609760.230041]: -------------------\n", - "[INFO] [1712609760.230278]: SOMA.PhysicalQuality \n", - "[INFO] [1712609760.230521]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712609760.230754]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", - "[INFO] [1712609760.231001]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712609760.231300]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isQualityOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.231894]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712609760.232169]: Direct Instances: []\n", - "[INFO] [1712609760.232428]: Inverse Restrictions: []\n", - "[INFO] [1712609760.232669]: -------------------\n", - "[INFO] [1712609760.232908]: SOMA.FailedAttempt \n", - "[INFO] [1712609760.233140]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712609760.233388]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.FailedAttempt, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.233641]: Subclasses: []\n", - "[INFO] [1712609760.233930]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.234434]: Instances: []\n", - "[INFO] [1712609760.234689]: Direct Instances: []\n", - "[INFO] [1712609760.234946]: Inverse Restrictions: []\n", - "[INFO] [1712609760.235189]: -------------------\n", - "[INFO] [1712609760.235427]: SOMA.FaultySoftware \n", - "[INFO] [1712609760.235660]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712609760.235907]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, SOMA.FaultySoftware, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609760.236163]: Subclasses: []\n", - "[INFO] [1712609760.236454]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.236941]: Instances: []\n", - "[INFO] [1712609760.237192]: Direct Instances: []\n", - "[INFO] [1712609760.237437]: Inverse Restrictions: []\n", - "[INFO] [1712609760.237681]: -------------------\n", - "[INFO] [1712609760.237915]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712609760.238149]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712609760.238388]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609760.238635]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712609760.238931]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.239429]: Instances: []\n", - "[INFO] [1712609760.239687]: Direct Instances: []\n", - "[INFO] [1712609760.239938]: Inverse Restrictions: []\n", - "[INFO] [1712609760.240173]: -------------------\n", - "[INFO] [1712609760.240415]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712609760.240652]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712609760.240924]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PhysicalAcquiring, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609760.241178]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712609760.241473]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.241983]: Instances: []\n", - "[INFO] [1712609760.242253]: Direct Instances: []\n", - "[INFO] [1712609760.242507]: Inverse Restrictions: []\n", - "[INFO] [1712609760.242749]: -------------------\n", - "[INFO] [1712609760.242981]: SOMA.Finger \n", - "[INFO] [1712609760.243220]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712609760.243485]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, SOMA.Finger, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609760.243735]: Subclasses: []\n", - "[INFO] [1712609760.244023]: Properties: [rdf-schema.comment, DUL.isPartOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.244512]: Instances: []\n", - "[INFO] [1712609760.244780]: Direct Instances: []\n", - "[INFO] [1712609760.245035]: Inverse Restrictions: []\n", - "[INFO] [1712609760.245272]: -------------------\n", - "[INFO] [1712609760.245511]: SOMA.Hand \n", - "[INFO] [1712609760.245753]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712609760.246007]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.Hand, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609760.246253]: Subclasses: []\n", - "[INFO] [1712609760.246540]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.247044]: Instances: []\n", - "[INFO] [1712609760.247309]: Direct Instances: []\n", - "[INFO] [1712609760.247605]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712609760.247847]: -------------------\n", - "[INFO] [1712609760.248091]: SOMA.FixedJoint \n", - "[INFO] [1712609760.248337]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712609760.248599]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, SOMA.FixedJoint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609760.248845]: Subclasses: []\n", - "[INFO] [1712609760.249149]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.249639]: Instances: []\n", - "[INFO] [1712609760.249909]: Direct Instances: []\n", - "[INFO] [1712609760.250204]: Inverse Restrictions: []\n", - "[INFO] [1712609760.250452]: -------------------\n", - "[INFO] [1712609760.250691]: SOMA.MovableJoint \n", - "[INFO] [1712609760.250930]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712609760.251173]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609760.251442]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712609760.251741]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasJointState]\n", - "[INFO] [1712609760.252245]: Instances: []\n", - "[INFO] [1712609760.252498]: Direct Instances: []\n", - "[INFO] [1712609760.252794]: Inverse Restrictions: []\n", - "[INFO] [1712609760.253045]: -------------------\n", - "[INFO] [1712609760.253292]: SOMA.Flipping \n", - "[INFO] [1712609760.253649]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712609760.254055]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Flipping, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609760.254356]: Subclasses: []\n", - "[INFO] [1712609760.254737]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.255255]: Instances: []\n", - "[INFO] [1712609760.255526]: Direct Instances: []\n", - "[INFO] [1712609760.255780]: Inverse Restrictions: []\n", - "[INFO] [1712609760.256253]: -------------------\n", - "[INFO] [1712609760.256604]: SOMA.FloatingJoint \n", - "[INFO] [1712609760.256849]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712609760.257117]: Ancestors: {DUL.Entity, SOMA.FloatingJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609760.257371]: Subclasses: []\n", - "[INFO] [1712609760.257684]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.258188]: Instances: []\n", - "[INFO] [1712609760.258477]: Direct Instances: []\n", - "[INFO] [1712609760.258743]: Inverse Restrictions: []\n", - "[INFO] [1712609760.258994]: -------------------\n", - "[INFO] [1712609760.259256]: SOMA.Fluid \n", - "[INFO] [1712609760.259504]: Super classes: [DUL.Substance]\n", - "[INFO] [1712609760.259765]: Ancestors: {DUL.Entity, DUL.Substance, SOMA.Fluid, DUL.PhysicalBody, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609760.260018]: Subclasses: []\n", - "[INFO] [1712609760.260319]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.260834]: Instances: []\n", - "[INFO] [1712609760.261344]: Direct Instances: []\n", - "[INFO] [1712609760.261787]: Inverse Restrictions: []\n", - "[INFO] [1712609760.262210]: -------------------\n", - "[INFO] [1712609760.262636]: SOMA.MovedObject \n", - "[INFO] [1712609760.263036]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712609760.263409]: Ancestors: {SOMA.MovedObject, DUL.Concept, DUL.Entity, SOMA.AlteredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.263835]: Subclasses: []\n", - "[INFO] [1712609760.264314]: Properties: [rdf-schema.comment, SOMA.isTriggerDefinedIn, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.265018]: Instances: []\n", - "[INFO] [1712609760.265497]: Direct Instances: []\n", - "[INFO] [1712609760.266045]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712609760.266415]: -------------------\n", - "[INFO] [1712609760.266768]: SOMA.Focusing \n", - "[INFO] [1712609760.267114]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712609760.267476]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.AttentionShift, owl.Thing, SOMA.MentalTask, SOMA.Focusing}\n", - "[INFO] [1712609760.267836]: Subclasses: []\n", - "[INFO] [1712609760.268234]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.268829]: Instances: []\n", - "[INFO] [1712609760.269213]: Direct Instances: []\n", - "[INFO] [1712609760.269572]: Inverse Restrictions: []\n", - "[INFO] [1712609760.269911]: -------------------\n", - "[INFO] [1712609760.270252]: SOMA.Foolishness \n", - "[INFO] [1712609760.270585]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712609760.270939]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, SOMA.Foolishness, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.271295]: Subclasses: []\n", - "[INFO] [1712609760.271682]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.272288]: Instances: []\n", - "[INFO] [1712609760.272685]: Direct Instances: []\n", - "[INFO] [1712609760.273041]: Inverse Restrictions: []\n", - "[INFO] [1712609760.273390]: -------------------\n", - "[INFO] [1712609760.273720]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712609760.274050]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712609760.274437]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, SOMA.ForgettingIncorrectInformation, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609760.274729]: Subclasses: []\n", - "[INFO] [1712609760.275043]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.275562]: Instances: []\n", - "[INFO] [1712609760.275833]: Direct Instances: []\n", - "[INFO] [1712609760.276087]: Inverse Restrictions: []\n", - "[INFO] [1712609760.276327]: -------------------\n", - "[INFO] [1712609760.276562]: SOMA.InformationDismissal \n", - "[INFO] [1712609760.276807]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712609760.277069]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609760.277323]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712609760.277616]: Properties: [rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.278107]: Instances: []\n", - "[INFO] [1712609760.278392]: Direct Instances: []\n", - "[INFO] [1712609760.278662]: Inverse Restrictions: []\n", - "[INFO] [1712609760.278910]: -------------------\n", - "[INFO] [1712609760.279154]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712609760.279392]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712609760.279645]: Ancestors: {SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, SOMA.MentalTask}\n", - "[INFO] [1712609760.279913]: Subclasses: []\n", - "[INFO] [1712609760.280216]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.280722]: Instances: []\n", - "[INFO] [1712609760.281006]: Direct Instances: []\n", - "[INFO] [1712609760.281277]: Inverse Restrictions: []\n", - "[INFO] [1712609760.281538]: -------------------\n", - "[INFO] [1712609760.281789]: SOMA.Language \n", - "[INFO] [1712609760.282046]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712609760.282405]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.282730]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712609760.283077]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.283628]: Instances: []\n", - "[INFO] [1712609760.283930]: Direct Instances: []\n", - "[INFO] [1712609760.284266]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712609760.284526]: -------------------\n", - "[INFO] [1712609760.284773]: SOMA.Item \n", - "[INFO] [1712609760.285017]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609760.285274]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.285544]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712609760.285843]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.286369]: Instances: []\n", - "[INFO] [1712609760.286660]: Direct Instances: []\n", - "[INFO] [1712609760.287019]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712609760.287275]: -------------------\n", - "[INFO] [1712609760.287522]: SOMA.FunctionalDesign \n", - "[INFO] [1712609760.287763]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712609760.288025]: Ancestors: {DUL.Entity, SOMA.FunctionalDesign, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609760.288280]: Subclasses: []\n", - "[INFO] [1712609760.288578]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.289075]: Instances: []\n", - "[INFO] [1712609760.289368]: Direct Instances: []\n", - "[INFO] [1712609760.289638]: Inverse Restrictions: []\n", - "[INFO] [1712609760.289892]: -------------------\n", - "[INFO] [1712609760.290151]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712609760.290398]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712609760.290658]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609760.290940]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712609760.291251]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.291758]: Instances: []\n", - "[INFO] [1712609760.292017]: Direct Instances: []\n", - "[INFO] [1712609760.292278]: Inverse Restrictions: []\n", - "[INFO] [1712609760.292518]: -------------------\n", - "[INFO] [1712609760.292761]: SOMA.LocatumRole \n", - "[INFO] [1712609760.293014]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609760.293268]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.LocatumRole, SOMA.SpatialRelationRole}\n", - "[INFO] [1712609760.293512]: Subclasses: []\n", - "[INFO] [1712609760.293803]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.294329]: Instances: []\n", - "[INFO] [1712609760.294608]: Direct Instances: []\n", - "[INFO] [1712609760.294938]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712609760.295183]: -------------------\n", - "[INFO] [1712609760.295430]: SOMA.RelatumRole \n", - "[INFO] [1712609760.295693]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609760.295954]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, SOMA.RelatumRole, owl.Thing, DUL.Role, SOMA.SpatialRelationRole}\n", - "[INFO] [1712609760.296203]: Subclasses: []\n", - "[INFO] [1712609760.296503]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.297015]: Instances: []\n", - "[INFO] [1712609760.297289]: Direct Instances: []\n", - "[INFO] [1712609760.297610]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712609760.297857]: -------------------\n", - "[INFO] [1712609760.298098]: SOMA.GetTaskParameter \n", - "[INFO] [1712609760.298359]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712609760.298621]: Ancestors: {SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712609760.298877]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712609760.299167]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.299664]: Instances: []\n", - "[INFO] [1712609760.299940]: Direct Instances: []\n", - "[INFO] [1712609760.300197]: Inverse Restrictions: []\n", - "[INFO] [1712609760.300439]: -------------------\n", - "[INFO] [1712609760.300672]: SOMA.Planning \n", - "[INFO] [1712609760.300913]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712609760.301159]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712609760.301420]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712609760.301722]: Properties: [DUL.isTaskOf, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.302233]: Instances: []\n", - "[INFO] [1712609760.302508]: Direct Instances: []\n", - "[INFO] [1712609760.302767]: Inverse Restrictions: []\n", - "[INFO] [1712609760.303007]: -------------------\n", - "[INFO] [1712609760.303238]: SOMA.GraphDatabase \n", - "[INFO] [1712609760.303472]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712609760.303728]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.303998]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712609760.304297]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.304794]: Instances: []\n", - "[INFO] [1712609760.305066]: Direct Instances: []\n", - "[INFO] [1712609760.305330]: Inverse Restrictions: []\n", - "[INFO] [1712609760.305572]: -------------------\n", - "[INFO] [1712609760.305802]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712609760.306034]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712609760.306293]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.GraphQueryLanguage, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.306549]: Subclasses: []\n", - "[INFO] [1712609760.306842]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.307335]: Instances: []\n", - "[INFO] [1712609760.307603]: Direct Instances: []\n", - "[INFO] [1712609760.307859]: Inverse Restrictions: []\n", - "[INFO] [1712609760.308096]: -------------------\n", - "[INFO] [1712609760.308328]: SOMA.QueryLanguage \n", - "[INFO] [1712609760.308560]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609760.308820]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.309076]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712609760.309367]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.309866]: Instances: []\n", - "[INFO] [1712609760.310147]: Direct Instances: []\n", - "[INFO] [1712609760.310409]: Inverse Restrictions: []\n", - "[INFO] [1712609760.310654]: -------------------\n", - "[INFO] [1712609760.310890]: SOMA.GraspTransfer \n", - "[INFO] [1712609760.311126]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712609760.311376]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.GraspTransfer, DUL.SocialObject, SOMA.Grasping, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609760.311631]: Subclasses: []\n", - "[INFO] [1712609760.311924]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.312413]: Instances: []\n", - "[INFO] [1712609760.312675]: Direct Instances: []\n", - "[INFO] [1712609760.312924]: Inverse Restrictions: []\n", - "[INFO] [1712609760.313169]: -------------------\n", - "[INFO] [1712609760.313410]: SOMA.Grasping \n", - "[INFO] [1712609760.313642]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609760.313884]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, SOMA.Grasping, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609760.314134]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712609760.314447]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.314950]: Instances: []\n", - "[INFO] [1712609760.315207]: Direct Instances: []\n", - "[INFO] [1712609760.315456]: Inverse Restrictions: []\n", - "[INFO] [1712609760.315714]: -------------------\n", - "[INFO] [1712609760.315958]: SOMA.Releasing \n", - "[INFO] [1712609760.316197]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609760.316450]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Releasing, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609760.316691]: Subclasses: []\n", - "[INFO] [1712609760.316990]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.317486]: Instances: []\n", - "[INFO] [1712609760.317744]: Direct Instances: []\n", - "[INFO] [1712609760.318007]: Inverse Restrictions: []\n", - "[INFO] [1712609760.318252]: -------------------\n", - "[INFO] [1712609760.318488]: SOMA.GraspingMotion \n", - "[INFO] [1712609760.318722]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712609760.318970]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.319235]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712609760.319552]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.320064]: Instances: []\n", - "[INFO] [1712609760.320330]: Direct Instances: []\n", - "[INFO] [1712609760.320611]: Inverse Restrictions: []\n", - "[INFO] [1712609760.320864]: -------------------\n", - "[INFO] [1712609760.321107]: SOMA.IntermediateGrasp \n", - "[INFO] [1712609760.321342]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712609760.321587]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.IntermediateGrasp, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.321828]: Subclasses: []\n", - "[INFO] [1712609760.322141]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.322637]: Instances: []\n", - "[INFO] [1712609760.322892]: Direct Instances: []\n", - "[INFO] [1712609760.323180]: Inverse Restrictions: []\n", - "[INFO] [1712609760.323427]: -------------------\n", - "[INFO] [1712609760.323671]: SOMA.PowerGrasp \n", - "[INFO] [1712609760.323910]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712609760.324163]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PowerGrasp, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.324405]: Subclasses: []\n", - "[INFO] [1712609760.324704]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.325214]: Instances: []\n", - "[INFO] [1712609760.325482]: Direct Instances: []\n", - "[INFO] [1712609760.325773]: Inverse Restrictions: []\n", - "[INFO] [1712609760.326018]: -------------------\n", - "[INFO] [1712609760.326265]: SOMA.PrecisionGrasp \n", - "[INFO] [1712609760.326514]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712609760.326773]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PrecisionGrasp, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.327021]: Subclasses: []\n", - "[INFO] [1712609760.327313]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.327800]: Instances: []\n", - "[INFO] [1712609760.328073]: Direct Instances: []\n", - "[INFO] [1712609760.328375]: Inverse Restrictions: []\n", - "[INFO] [1712609760.328621]: -------------------\n", - "[INFO] [1712609760.328858]: SOMA.PrehensileMotion \n", - "[INFO] [1712609760.329105]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712609760.329359]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.329622]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712609760.329936]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.330442]: Instances: []\n", - "[INFO] [1712609760.330701]: Direct Instances: []\n", - "[INFO] [1712609760.330967]: Inverse Restrictions: []\n", - "[INFO] [1712609760.331209]: -------------------\n", - "[INFO] [1712609760.331450]: SOMA.ReleasingMotion \n", - "[INFO] [1712609760.331905]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712609760.332288]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.PrehensileMotion, DUL.SocialObject, DUL.EventType, SOMA.ReleasingMotion, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.332565]: Subclasses: []\n", - "[INFO] [1712609760.332879]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.333412]: Instances: []\n", - "[INFO] [1712609760.333736]: Direct Instances: []\n", - "[INFO] [1712609760.334049]: Inverse Restrictions: []\n", - "[INFO] [1712609760.334311]: -------------------\n", - "[INFO] [1712609760.334558]: SOMA.GreenColor \n", - "[INFO] [1712609760.334801]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712609760.335063]: Ancestors: {DUL.Entity, SOMA.GreenColor, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609760.335314]: Subclasses: []\n", - "[INFO] [1712609760.335612]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.336107]: Instances: []\n", - "[INFO] [1712609760.336375]: Direct Instances: []\n", - "[INFO] [1712609760.336643]: Inverse Restrictions: []\n", - "[INFO] [1712609760.336888]: -------------------\n", - "[INFO] [1712609760.337129]: SOMA.Gripper \n", - "[INFO] [1712609760.337368]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712609760.337617]: Ancestors: {DUL.Entity, SOMA.Gripper, DUL.PhysicalBody, DUL.Object, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609760.337855]: Subclasses: []\n", - "[INFO] [1712609760.338156]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.338757]: Instances: []\n", - "[INFO] [1712609760.339142]: Direct Instances: []\n", - "[INFO] [1712609760.339506]: Inverse Restrictions: []\n", - "[INFO] [1712609760.339844]: -------------------\n", - "[INFO] [1712609760.340113]: SOMA.PrehensileEffector \n", - "[INFO] [1712609760.340364]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712609760.340616]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.PrehensileEffector, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712609760.340894]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712609760.341199]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.341691]: Instances: []\n", - "[INFO] [1712609760.341960]: Direct Instances: []\n", - "[INFO] [1712609760.342350]: Inverse Restrictions: []\n", - "[INFO] [1712609760.342650]: -------------------\n", - "[INFO] [1712609760.342921]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712609760.343176]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712609760.343444]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.TechnicalDiagnosis, owl.Thing, SOMA.HardwareDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.343710]: Subclasses: []\n", - "[INFO] [1712609760.344019]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.344520]: Instances: []\n", - "[INFO] [1712609760.344785]: Direct Instances: []\n", - "[INFO] [1712609760.345037]: Inverse Restrictions: []\n", - "[INFO] [1712609760.345273]: -------------------\n", - "[INFO] [1712609760.345530]: SOMA.HasQualityRegion \n", - "[INFO] [1712609760.345786]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712609760.346038]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing, SOMA.HasQualityRegion}\n", - "[INFO] [1712609760.346286]: Subclasses: []\n", - "[INFO] [1712609760.346585]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasQuality, DUL.hasRegion]\n", - "[INFO] [1712609760.347088]: Instances: []\n", - "[INFO] [1712609760.347351]: Direct Instances: []\n", - "[INFO] [1712609760.347599]: Inverse Restrictions: []\n", - "[INFO] [1712609760.347838]: -------------------\n", - "[INFO] [1712609760.348070]: SOMA.Head \n", - "[INFO] [1712609760.348304]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712609760.348557]: Ancestors: {DUL.Entity, DUL.PhysicalBody, DUL.Object, SOMA.Head, DUL.PhysicalObject, owl.Thing, SOMA.FunctionalPart}\n", - "[INFO] [1712609760.348806]: Subclasses: []\n", - "[INFO] [1712609760.349093]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.349577]: Instances: []\n", - "[INFO] [1712609760.349852]: Direct Instances: []\n", - "[INFO] [1712609760.350103]: Inverse Restrictions: []\n", - "[INFO] [1712609760.350345]: -------------------\n", - "[INFO] [1712609760.350581]: SOMA.HeadMovement \n", - "[INFO] [1712609760.350810]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712609760.351055]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.HeadMovement, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.351314]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712609760.351611]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.352100]: Instances: []\n", - "[INFO] [1712609760.352368]: Direct Instances: []\n", - "[INFO] [1712609760.352627]: Inverse Restrictions: []\n", - "[INFO] [1712609760.352865]: -------------------\n", - "[INFO] [1712609760.353101]: SOMA.HeadTurning \n", - "[INFO] [1712609760.353334]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712609760.353584]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.HeadTurning, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.HeadMovement, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.353839]: Subclasses: []\n", - "[INFO] [1712609760.354131]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.354626]: Instances: []\n", - "[INFO] [1712609760.354904]: Direct Instances: []\n", - "[INFO] [1712609760.355159]: Inverse Restrictions: []\n", - "[INFO] [1712609760.355405]: -------------------\n", - "[INFO] [1712609760.355649]: SOMA.Holding \n", - "[INFO] [1712609760.355879]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609760.356142]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, SOMA.Holding, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712609760.356397]: Subclasses: []\n", - "[INFO] [1712609760.356692]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.357175]: Instances: []\n", - "[INFO] [1712609760.357474]: Direct Instances: []\n", - "[INFO] [1712609760.357745]: Inverse Restrictions: []\n", - "[INFO] [1712609760.357999]: -------------------\n", - "[INFO] [1712609760.358241]: SOMA.HostRole \n", - "[INFO] [1712609760.358484]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712609760.358732]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.HostRole, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.358981]: Subclasses: []\n", - "[INFO] [1712609760.359287]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.359776]: Instances: []\n", - "[INFO] [1712609760.360047]: Direct Instances: []\n", - "[INFO] [1712609760.360360]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712609760.360604]: -------------------\n", - "[INFO] [1712609760.360842]: SOMA.PluginSpecification \n", - "[INFO] [1712609760.361088]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712609760.361351]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, owl.Thing, SOMA.PluginSpecification}\n", - "[INFO] [1712609760.361602]: Subclasses: []\n", - "[INFO] [1712609760.361902]: Properties: [rdf-schema.comment, DUL.definesRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.362397]: Instances: []\n", - "[INFO] [1712609760.362682]: Direct Instances: []\n", - "[INFO] [1712609760.363005]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712609760.363256]: -------------------\n", - "[INFO] [1712609760.363496]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712609760.363735]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712609760.363996]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, SOMA.Programming_Language, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.364244]: Subclasses: []\n", - "[INFO] [1712609760.364535]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.365025]: Instances: []\n", - "[INFO] [1712609760.365302]: Direct Instances: []\n", - "[INFO] [1712609760.365629]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712609760.365895]: -------------------\n", - "[INFO] [1712609760.366144]: SOMA.Source_Code \n", - "[INFO] [1712609760.366386]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712609760.366629]: Ancestors: {SOMA.Computer_Program, SOMA.Source_Code, owl.Thing}\n", - "[INFO] [1712609760.366884]: Subclasses: []\n", - "[INFO] [1712609760.367192]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.367690]: Instances: []\n", - "[INFO] [1712609760.367944]: Direct Instances: []\n", - "[INFO] [1712609760.368232]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712609760.368481]: -------------------\n", - "[INFO] [1712609760.368723]: SOMA.HumanActivityRecording \n", - "[INFO] [1712609760.368957]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712609760.369197]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.Episode, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712609760.369454]: Subclasses: []\n", - "[INFO] [1712609760.369747]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.370242]: Instances: []\n", - "[INFO] [1712609760.370499]: Direct Instances: []\n", - "[INFO] [1712609760.370754]: Inverse Restrictions: []\n", - "[INFO] [1712609760.371003]: -------------------\n", - "[INFO] [1712609760.371240]: SOMA.Imagining \n", - "[INFO] [1712609760.371474]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712609760.371706]: Ancestors: {SOMA.InformationAcquisition, SOMA.Imagining, owl.Thing}\n", - "[INFO] [1712609760.371949]: Subclasses: []\n", - "[INFO] [1712609760.372263]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.372763]: Instances: []\n", - "[INFO] [1712609760.373023]: Direct Instances: []\n", - "[INFO] [1712609760.373269]: Inverse Restrictions: []\n", - "[INFO] [1712609760.373514]: -------------------\n", - "[INFO] [1712609760.373756]: SOMA.Impediment \n", - "[INFO] [1712609760.374011]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712609760.374298]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Impediment, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.374545]: Subclasses: []\n", - "[INFO] [1712609760.374850]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.375346]: Instances: []\n", - "[INFO] [1712609760.375607]: Direct Instances: []\n", - "[INFO] [1712609760.375857]: Inverse Restrictions: []\n", - "[INFO] [1712609760.376093]: -------------------\n", - "[INFO] [1712609760.376326]: SOMA.Obstacle \n", - "[INFO] [1712609760.376568]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712609760.376820]: Ancestors: {DUL.Concept, SOMA.Obstacle, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Barrier, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609760.377059]: Subclasses: []\n", - "[INFO] [1712609760.377340]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.377835]: Instances: []\n", - "[INFO] [1712609760.378097]: Direct Instances: []\n", - "[INFO] [1712609760.378393]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712609760.378637]: -------------------\n", - "[INFO] [1712609760.378874]: SOMA.RestrictedObject \n", - "[INFO] [1712609760.379111]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712609760.379365]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RestrictedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.BlockedObject}\n", - "[INFO] [1712609760.379608]: Subclasses: []\n", - "[INFO] [1712609760.379893]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.380378]: Instances: []\n", - "[INFO] [1712609760.380651]: Direct Instances: []\n", - "[INFO] [1712609760.380950]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712609760.381197]: -------------------\n", - "[INFO] [1712609760.381433]: SOMA.StateTransition \n", - "[INFO] [1712609760.381684]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712609760.381938]: Ancestors: {DUL.Entity, DUL.Situation, DUL.Transition, SOMA.StateTransition, owl.Thing}\n", - "[INFO] [1712609760.382186]: Subclasses: []\n", - "[INFO] [1712609760.382485]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.satisfies, DUL.includesEvent, SOMA.hasTerminalScene, SOMA.hasInitialScene, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.382992]: Instances: []\n", - "[INFO] [1712609760.383254]: Direct Instances: []\n", - "[INFO] [1712609760.383570]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712609760.383813]: -------------------\n", - "[INFO] [1712609760.384049]: SOMA.Inability \n", - "[INFO] [1712609760.384283]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712609760.384542]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Inability, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.384786]: Subclasses: []\n", - "[INFO] [1712609760.385070]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.385556]: Instances: []\n", - "[INFO] [1712609760.385823]: Direct Instances: []\n", - "[INFO] [1712609760.386075]: Inverse Restrictions: []\n", - "[INFO] [1712609760.386319]: -------------------\n", - "[INFO] [1712609760.386556]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712609760.386783]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712609760.387040]: Ancestors: {DUL.Entity, SOMA.IncompatibleSoftware, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609760.387287]: Subclasses: []\n", - "[INFO] [1712609760.387572]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.388056]: Instances: []\n", - "[INFO] [1712609760.388309]: Direct Instances: []\n", - "[INFO] [1712609760.388562]: Inverse Restrictions: []\n", - "[INFO] [1712609760.388799]: -------------------\n", - "[INFO] [1712609760.389028]: SOMA.InductiveReasoning \n", - "[INFO] [1712609760.389256]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712609760.389493]: Ancestors: {SOMA.InductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.Reasoning}\n", - "[INFO] [1712609760.389741]: Subclasses: []\n", - "[INFO] [1712609760.390028]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.390533]: Instances: []\n", - "[INFO] [1712609760.390828]: Direct Instances: []\n", - "[INFO] [1712609760.391091]: Inverse Restrictions: []\n", - "[INFO] [1712609760.391338]: -------------------\n", - "[INFO] [1712609760.391571]: SOMA.Infeasibility \n", - "[INFO] [1712609760.391801]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712609760.392044]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.392297]: Subclasses: []\n", - "[INFO] [1712609760.392589]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.393078]: Instances: []\n", - "[INFO] [1712609760.393344]: Direct Instances: []\n", - "[INFO] [1712609760.393600]: Inverse Restrictions: []\n", - "[INFO] [1712609760.393840]: -------------------\n", - "[INFO] [1712609760.394073]: SOMA.InferenceRules \n", - "[INFO] [1712609760.394310]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712609760.394552]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Knowledge, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.InferenceRules}\n", - "[INFO] [1712609760.394802]: Subclasses: []\n", - "[INFO] [1712609760.395096]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.395582]: Instances: []\n", - "[INFO] [1712609760.395838]: Direct Instances: []\n", - "[INFO] [1712609760.396093]: Inverse Restrictions: []\n", - "[INFO] [1712609760.396329]: -------------------\n", - "[INFO] [1712609760.396560]: SOMA.InformationRetrieval \n", - "[INFO] [1712609760.396791]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712609760.397023]: Ancestors: {SOMA.InformationAcquisition, SOMA.InformationRetrieval, owl.Thing}\n", - "[INFO] [1712609760.397259]: Subclasses: []\n", - "[INFO] [1712609760.397555]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.398043]: Instances: []\n", - "[INFO] [1712609760.398317]: Direct Instances: []\n", - "[INFO] [1712609760.398608]: Inverse Restrictions: []\n", - "[INFO] [1712609760.398851]: -------------------\n", - "[INFO] [1712609760.399089]: SOMA.InformationStorage \n", - "[INFO] [1712609760.399334]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712609760.399586]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", - "[INFO] [1712609760.399840]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712609760.400130]: Properties: [rdf-schema.comment, SOMA.isTaskOfInputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.400620]: Instances: []\n", - "[INFO] [1712609760.400890]: Direct Instances: []\n", - "[INFO] [1712609760.401150]: Inverse Restrictions: []\n", - "[INFO] [1712609760.401389]: -------------------\n", - "[INFO] [1712609760.401627]: SOMA.StoredObject \n", - "[INFO] [1712609760.401859]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712609760.402103]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, DUL.Role, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.StoredObject, owl.Thing, SOMA.EnclosedObject}\n", - "[INFO] [1712609760.402366]: Subclasses: []\n", - "[INFO] [1712609760.402660]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.403148]: Instances: []\n", - "[INFO] [1712609760.403399]: Direct Instances: []\n", - "[INFO] [1712609760.403729]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712609760.404073]: -------------------\n", - "[INFO] [1712609760.404491]: SOMA.InsertedObject \n", - "[INFO] [1712609760.404870]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712609760.405155]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.IncludedObject, DUL.Role, SOMA.Patient, DUL.SocialObject, SOMA.InsertedObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, SOMA.EnclosedObject}\n", - "[INFO] [1712609760.405413]: Subclasses: []\n", - "[INFO] [1712609760.405708]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.406222]: Instances: []\n", - "[INFO] [1712609760.406499]: Direct Instances: []\n", - "[INFO] [1712609760.406802]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712609760.407055]: -------------------\n", - "[INFO] [1712609760.407305]: SOMA.Instructions \n", - "[INFO] [1712609760.407560]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712609760.407822]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Instructions, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.408202]: Subclasses: []\n", - "[INFO] [1712609760.408616]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.409227]: Instances: []\n", - "[INFO] [1712609760.409618]: Direct Instances: []\n", - "[INFO] [1712609760.409992]: Inverse Restrictions: []\n", - "[INFO] [1712609760.410357]: -------------------\n", - "[INFO] [1712609760.410715]: SOMA.Interpreting \n", - "[INFO] [1712609760.411066]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609760.411349]: Ancestors: {SOMA.InformationAcquisition, SOMA.Interpreting, SOMA.DerivingInformation, owl.Thing}\n", - "[INFO] [1712609760.411614]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712609760.411910]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.412401]: Instances: []\n", - "[INFO] [1712609760.412674]: Direct Instances: []\n", - "[INFO] [1712609760.412932]: Inverse Restrictions: []\n", - "[INFO] [1712609760.413173]: -------------------\n", - "[INFO] [1712609760.413406]: SOMA.InterrogativeClause \n", - "[INFO] [1712609760.413645]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712609760.413895]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.ClausalObject, DUL.SocialObject, SOMA.Phrase, DUL.Object, SOMA.LinguisticObject, owl.Thing, SOMA.InterrogativeClause, DUL.InformationObject}\n", - "[INFO] [1712609760.414154]: Subclasses: []\n", - "[INFO] [1712609760.414449]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.414937]: Instances: []\n", - "[INFO] [1712609760.415196]: Direct Instances: []\n", - "[INFO] [1712609760.415490]: Inverse Restrictions: []\n", - "[INFO] [1712609760.415743]: -------------------\n", - "[INFO] [1712609760.415985]: SOMA.Introspecting \n", - "[INFO] [1712609760.416215]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712609760.416453]: Ancestors: {SOMA.InformationAcquisition, SOMA.Introspecting, owl.Thing}\n", - "[INFO] [1712609760.416697]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712609760.416986]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.417485]: Instances: []\n", - "[INFO] [1712609760.417749]: Direct Instances: []\n", - "[INFO] [1712609760.418002]: Inverse Restrictions: []\n", - "[INFO] [1712609760.418257]: -------------------\n", - "[INFO] [1712609760.418506]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712609760.418744]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712609760.418988]: Ancestors: {DUL.Entity, DUL.Region, SOMA.KineticFrictionAttribute, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609760.419241]: Subclasses: []\n", - "[INFO] [1712609760.419534]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.420017]: Instances: []\n", - "[INFO] [1712609760.420269]: Direct Instances: []\n", - "[INFO] [1712609760.420522]: Inverse Restrictions: []\n", - "[INFO] [1712609760.420767]: -------------------\n", - "[INFO] [1712609760.421005]: SOMA.KinoDynamicData \n", - "[INFO] [1712609760.421243]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609760.421481]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.KinoDynamicData, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609760.421731]: Subclasses: []\n", - "[INFO] [1712609760.422028]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.422515]: Instances: []\n", - "[INFO] [1712609760.422783]: Direct Instances: []\n", - "[INFO] [1712609760.423037]: Inverse Restrictions: []\n", - "[INFO] [1712609760.423272]: -------------------\n", - "[INFO] [1712609760.423508]: SOMA.Room \n", - "[INFO] [1712609760.423752]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712609760.424003]: Ancestors: {DUL.Entity, SOMA.Room, DUL.Object, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", - "[INFO] [1712609760.424248]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712609760.424531]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.425033]: Instances: []\n", - "[INFO] [1712609760.425301]: Direct Instances: []\n", - "[INFO] [1712609760.425554]: Inverse Restrictions: []\n", - "[INFO] [1712609760.425792]: -------------------\n", - "[INFO] [1712609760.426026]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712609760.426275]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609760.426527]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.KnowledgeRepresentationLanguage, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.426777]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712609760.427062]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.427542]: Instances: []\n", - "[INFO] [1712609760.427816]: Direct Instances: []\n", - "[INFO] [1712609760.428077]: Inverse Restrictions: []\n", - "[INFO] [1712609760.428320]: -------------------\n", - "[INFO] [1712609760.428558]: SOMA.Labeling \n", - "[INFO] [1712609760.428794]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712609760.429048]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing}\n", - "[INFO] [1712609760.429298]: Subclasses: []\n", - "[INFO] [1712609760.429589]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.430069]: Instances: []\n", - "[INFO] [1712609760.430325]: Direct Instances: []\n", - "[INFO] [1712609760.430565]: Inverse Restrictions: []\n", - "[INFO] [1712609760.430804]: -------------------\n", - "[INFO] [1712609760.431044]: SOMA.Text \n", - "[INFO] [1712609760.431280]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.431515]: Ancestors: {SOMA.Text, owl.Thing}\n", - "[INFO] [1712609760.431750]: Subclasses: []\n", - "[INFO] [1712609760.432038]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.432537]: Instances: []\n", - "[INFO] [1712609760.432798]: Direct Instances: []\n", - "[INFO] [1712609760.433143]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712609760.433383]: -------------------\n", - "[INFO] [1712609760.433619]: SOMA.Leaning \n", - "[INFO] [1712609760.433859]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712609760.434127]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Leaning, SOMA.ProcessType, SOMA.Motion}\n", - "[INFO] [1712609760.434379]: Subclasses: []\n", - "[INFO] [1712609760.434665]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.435151]: Instances: []\n", - "[INFO] [1712609760.435420]: Direct Instances: []\n", - "[INFO] [1712609760.435676]: Inverse Restrictions: []\n", - "[INFO] [1712609760.435913]: -------------------\n", - "[INFO] [1712609760.436148]: SOMA.PosturalMoving \n", - "[INFO] [1712609760.436383]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712609760.436641]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.436895]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712609760.437179]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.437660]: Instances: []\n", - "[INFO] [1712609760.437926]: Direct Instances: []\n", - "[INFO] [1712609760.438183]: Inverse Restrictions: []\n", - "[INFO] [1712609760.438419]: -------------------\n", - "[INFO] [1712609760.438653]: SOMA.Learning \n", - "[INFO] [1712609760.438886]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712609760.439127]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", - "[INFO] [1712609760.439384]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712609760.439669]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.440155]: Instances: []\n", - "[INFO] [1712609760.440429]: Direct Instances: []\n", - "[INFO] [1712609760.440687]: Inverse Restrictions: []\n", - "[INFO] [1712609760.440926]: -------------------\n", - "[INFO] [1712609760.441163]: SOMA.Leg \n", - "[INFO] [1712609760.441394]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712609760.441641]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Limb, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart}\n", - "[INFO] [1712609760.441894]: Subclasses: []\n", - "[INFO] [1712609760.442186]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.442671]: Instances: []\n", - "[INFO] [1712609760.442930]: Direct Instances: []\n", - "[INFO] [1712609760.443230]: Inverse Restrictions: []\n", - "[INFO] [1712609760.443500]: -------------------\n", - "[INFO] [1712609760.443786]: SOMA.LimbMotion \n", - "[INFO] [1712609760.444063]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712609760.444355]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.LimbMotion, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.444622]: Subclasses: []\n", - "[INFO] [1712609760.444943]: Properties: [rdf-schema.comment, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.445459]: Instances: []\n", - "[INFO] [1712609760.445750]: Direct Instances: []\n", - "[INFO] [1712609760.446013]: Inverse Restrictions: []\n", - "[INFO] [1712609760.446350]: -------------------\n", - "[INFO] [1712609760.446707]: SOMA.LinkedObject \n", - "[INFO] [1712609760.446990]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712609760.447269]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, SOMA.LinkedObject, SOMA.ConnectedObject, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.447541]: Subclasses: []\n", - "[INFO] [1712609760.447851]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.448372]: Instances: []\n", - "[INFO] [1712609760.448647]: Direct Instances: []\n", - "[INFO] [1712609760.448988]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712609760.449235]: -------------------\n", - "[INFO] [1712609760.449484]: SOMA.LinkageState \n", - "[INFO] [1712609760.449741]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712609760.450006]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.LinkageState, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609760.450263]: Subclasses: []\n", - "[INFO] [1712609760.450561]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.451061]: Instances: []\n", - "[INFO] [1712609760.451325]: Direct Instances: []\n", - "[INFO] [1712609760.451573]: Inverse Restrictions: []\n", - "[INFO] [1712609760.451809]: -------------------\n", - "[INFO] [1712609760.452043]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712609760.452280]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712609760.452541]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.452824]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712609760.453134]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.453650]: Instances: []\n", - "[INFO] [1712609760.453948]: Direct Instances: []\n", - "[INFO] [1712609760.454230]: Inverse Restrictions: []\n", - "[INFO] [1712609760.454483]: -------------------\n", - "[INFO] [1712609760.454728]: SOMA.SpatialRelationRole \n", - "[INFO] [1712609760.454971]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712609760.455225]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.RelationAdjacentRole, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SpatialRelationRole}\n", - "[INFO] [1712609760.455514]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712609760.455838]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.456373]: Instances: []\n", - "[INFO] [1712609760.456669]: Direct Instances: []\n", - "[INFO] [1712609760.456948]: Inverse Restrictions: []\n", - "[INFO] [1712609760.457404]: -------------------\n", - "[INFO] [1712609760.457824]: SOMA.LocutionaryAction \n", - "[INFO] [1712609760.458180]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.458479]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", - "[INFO] [1712609760.458812]: Subclasses: []\n", - "[INFO] [1712609760.459191]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.459737]: Instances: []\n", - "[INFO] [1712609760.460032]: Direct Instances: []\n", - "[INFO] [1712609760.460309]: Inverse Restrictions: []\n", - "[INFO] [1712609760.460564]: -------------------\n", - "[INFO] [1712609760.460814]: SOMA.LookingAt \n", - "[INFO] [1712609760.461069]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609760.461343]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.LookingAt}\n", - "[INFO] [1712609760.461619]: Subclasses: []\n", - "[INFO] [1712609760.461955]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.462488]: Instances: []\n", - "[INFO] [1712609760.462813]: Direct Instances: []\n", - "[INFO] [1712609760.463097]: Inverse Restrictions: []\n", - "[INFO] [1712609760.463354]: -------------------\n", - "[INFO] [1712609760.463593]: SOMA.LookingFor \n", - "[INFO] [1712609760.463828]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712609760.464068]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", - "[INFO] [1712609760.464316]: Subclasses: []\n", - "[INFO] [1712609760.464612]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.465105]: Instances: []\n", - "[INFO] [1712609760.465377]: Direct Instances: []\n", - "[INFO] [1712609760.465633]: Inverse Restrictions: []\n", - "[INFO] [1712609760.465876]: -------------------\n", - "[INFO] [1712609760.466110]: SOMA.Lowering \n", - "[INFO] [1712609760.466349]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609760.466598]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Lowering, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609760.466850]: Subclasses: []\n", - "[INFO] [1712609760.467140]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.467621]: Instances: []\n", - "[INFO] [1712609760.467878]: Direct Instances: []\n", - "[INFO] [1712609760.468143]: Inverse Restrictions: []\n", - "[INFO] [1712609760.468390]: -------------------\n", - "[INFO] [1712609760.468627]: SOMA.PhysicalAction \n", - "[INFO] [1712609760.468863]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712609760.469102]: Ancestors: {DUL.Entity, SOMA.PhysicalAction, DUL.Action, owl.Thing, DUL.Event}\n", - "[INFO] [1712609760.469352]: Subclasses: []\n", - "[INFO] [1712609760.469648]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.470139]: Instances: []\n", - "[INFO] [1712609760.470404]: Direct Instances: []\n", - "[INFO] [1712609760.470698]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609760.470959]: -------------------\n", - "[INFO] [1712609760.471208]: SOMA.Markup_Language \n", - "[INFO] [1712609760.471450]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712609760.471702]: Ancestors: {DUL.Entity, SOMA.Markup_Language, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.471963]: Subclasses: []\n", - "[INFO] [1712609760.472263]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.472756]: Instances: []\n", - "[INFO] [1712609760.473016]: Direct Instances: []\n", - "[INFO] [1712609760.473268]: Inverse Restrictions: []\n", - "[INFO] [1712609760.473532]: -------------------\n", - "[INFO] [1712609760.473782]: SOMA.Masterful \n", - "[INFO] [1712609760.474017]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712609760.474391]: Ancestors: {DUL.Entity, SOMA.Masterful, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.474753]: Subclasses: []\n", - "[INFO] [1712609760.475098]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.475620]: Instances: []\n", - "[INFO] [1712609760.475904]: Direct Instances: []\n", - "[INFO] [1712609760.476170]: Inverse Restrictions: []\n", - "[INFO] [1712609760.476422]: -------------------\n", - "[INFO] [1712609760.476668]: SOMA.Material \n", - "[INFO] [1712609760.476908]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609760.477159]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, SOMA.Material}\n", - "[INFO] [1712609760.477420]: Subclasses: []\n", - "[INFO] [1712609760.477715]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.478210]: Instances: []\n", - "[INFO] [1712609760.478471]: Direct Instances: []\n", - "[INFO] [1712609760.478718]: Inverse Restrictions: []\n", - "[INFO] [1712609760.478963]: -------------------\n", - "[INFO] [1712609760.479215]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712609760.479617]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712609760.479918]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, owl.Thing, SOMA.MedicalDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.480191]: Subclasses: []\n", - "[INFO] [1712609760.480518]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609760.481053]: Instances: []\n", - "[INFO] [1712609760.481345]: Direct Instances: []\n", - "[INFO] [1712609760.481622]: Inverse Restrictions: []\n", - "[INFO] [1712609760.481889]: -------------------\n", - "[INFO] [1712609760.482166]: SOMA.Memorizing \n", - "[INFO] [1712609760.482702]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712609760.483163]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Memorizing, owl.Thing, SOMA.InformationStorage, SOMA.MentalTask}\n", - "[INFO] [1712609760.483604]: Subclasses: []\n", - "[INFO] [1712609760.484100]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.484667]: Instances: []\n", - "[INFO] [1712609760.484969]: Direct Instances: []\n", - "[INFO] [1712609760.485243]: Inverse Restrictions: []\n", - "[INFO] [1712609760.485493]: -------------------\n", - "[INFO] [1712609760.485742]: SOMA.MentalAction \n", - "[INFO] [1712609760.485997]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712609760.486269]: Ancestors: {DUL.Entity, SOMA.MentalAction, DUL.Action, owl.Thing, DUL.Event}\n", - "[INFO] [1712609760.486588]: Subclasses: []\n", - "[INFO] [1712609760.486947]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.487461]: Instances: []\n", - "[INFO] [1712609760.487731]: Direct Instances: []\n", - "[INFO] [1712609760.488028]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712609760.488274]: -------------------\n", - "[INFO] [1712609760.488512]: SOMA.MeshShape \n", - "[INFO] [1712609760.488762]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712609760.489027]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, SOMA.MeshShape, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609760.489281]: Subclasses: []\n", - "[INFO] [1712609760.489584]: Properties: [rdf-schema.comment, SOMA.hasFilePath, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.490079]: Instances: []\n", - "[INFO] [1712609760.490367]: Direct Instances: []\n", - "[INFO] [1712609760.490633]: Inverse Restrictions: []\n", - "[INFO] [1712609760.490883]: -------------------\n", - "[INFO] [1712609760.491130]: SOMA.MeshShapeData \n", - "[INFO] [1712609760.491396]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712609760.491669]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.MeshShapeData, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609760.491936]: Subclasses: []\n", - "[INFO] [1712609760.492244]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.492755]: Instances: []\n", - "[INFO] [1712609760.493059]: Direct Instances: []\n", - "[INFO] [1712609760.493342]: Inverse Restrictions: []\n", - "[INFO] [1712609760.493618]: -------------------\n", - "[INFO] [1712609760.493892]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712609760.494178]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712609760.494502]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.495034]: Subclasses: []\n", - "[INFO] [1712609760.495543]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.496245]: Instances: []\n", - "[INFO] [1712609760.496717]: Direct Instances: []\n", - "[INFO] [1712609760.497153]: Inverse Restrictions: []\n", - "[INFO] [1712609760.497579]: -------------------\n", - "[INFO] [1712609760.497950]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712609760.498366]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609760.498701]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.498987]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712609760.499298]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.499804]: Instances: []\n", - "[INFO] [1712609760.500081]: Direct Instances: []\n", - "[INFO] [1712609760.500344]: Inverse Restrictions: []\n", - "[INFO] [1712609760.500593]: -------------------\n", - "[INFO] [1712609760.500853]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712609760.501103]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712609760.501385]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.501746]: Subclasses: []\n", - "[INFO] [1712609760.502084]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.502615]: Instances: []\n", - "[INFO] [1712609760.502891]: Direct Instances: []\n", - "[INFO] [1712609760.503158]: Inverse Restrictions: []\n", - "[INFO] [1712609760.503407]: -------------------\n", - "[INFO] [1712609760.503655]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712609760.503896]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712609760.504165]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.504427]: Subclasses: []\n", - "[INFO] [1712609760.504729]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.505220]: Instances: []\n", - "[INFO] [1712609760.505499]: Direct Instances: []\n", - "[INFO] [1712609760.505757]: Inverse Restrictions: []\n", - "[INFO] [1712609760.506000]: -------------------\n", - "[INFO] [1712609760.506242]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712609760.506583]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712609760.506875]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.507158]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712609760.507464]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.507993]: Instances: []\n", - "[INFO] [1712609760.508266]: Direct Instances: []\n", - "[INFO] [1712609760.508531]: Inverse Restrictions: []\n", - "[INFO] [1712609760.508772]: -------------------\n", - "[INFO] [1712609760.509004]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712609760.509248]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712609760.509503]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MetacognitiveControlling, SOMA.MentalTask}\n", - "[INFO] [1712609760.509753]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712609760.510043]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.510539]: Instances: []\n", - "[INFO] [1712609760.510814]: Direct Instances: []\n", - "[INFO] [1712609760.511070]: Inverse Restrictions: []\n", - "[INFO] [1712609760.511309]: -------------------\n", - "[INFO] [1712609760.511544]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712609760.511777]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712609760.512038]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting, owl.Thing}\n", - "[INFO] [1712609760.512287]: Subclasses: []\n", - "[INFO] [1712609760.512575]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.513062]: Instances: []\n", - "[INFO] [1712609760.513334]: Direct Instances: []\n", - "[INFO] [1712609760.513588]: Inverse Restrictions: []\n", - "[INFO] [1712609760.513826]: -------------------\n", - "[INFO] [1712609760.514058]: SOMA.Mixing \n", - "[INFO] [1712609760.514294]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712609760.514543]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Mixing}\n", - "[INFO] [1712609760.514813]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712609760.515109]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.515605]: Instances: []\n", - "[INFO] [1712609760.515867]: Direct Instances: []\n", - "[INFO] [1712609760.516126]: Inverse Restrictions: []\n", - "[INFO] [1712609760.516372]: -------------------\n", - "[INFO] [1712609760.516614]: SOMA.MixingTheory \n", - "[INFO] [1712609760.516859]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712609760.517107]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, SOMA.MixingTheory, owl.Thing, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609760.517357]: Subclasses: []\n", - "[INFO] [1712609760.517654]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.518151]: Instances: []\n", - "[INFO] [1712609760.518430]: Direct Instances: []\n", - "[INFO] [1712609760.518687]: Inverse Restrictions: []\n", - "[INFO] [1712609760.518929]: -------------------\n", - "[INFO] [1712609760.519166]: SOMA.MonitoringJointState \n", - "[INFO] [1712609760.519399]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712609760.519643]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, DUL.SocialObject, DUL.Object, SOMA.Proprioceiving, owl.Thing}\n", - "[INFO] [1712609760.519895]: Subclasses: []\n", - "[INFO] [1712609760.520188]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.520677]: Instances: []\n", - "[INFO] [1712609760.520947]: Direct Instances: []\n", - "[INFO] [1712609760.521201]: Inverse Restrictions: []\n", - "[INFO] [1712609760.521440]: -------------------\n", - "[INFO] [1712609760.521674]: SOMA.Proprioceiving \n", - "[INFO] [1712609760.521905]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712609760.522163]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Proprioceiving, owl.Thing}\n", - "[INFO] [1712609760.522418]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712609760.522704]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.523205]: Instances: []\n", - "[INFO] [1712609760.523474]: Direct Instances: []\n", - "[INFO] [1712609760.523726]: Inverse Restrictions: []\n", - "[INFO] [1712609760.523957]: -------------------\n", - "[INFO] [1712609760.524192]: SOMA.MovingAway \n", - "[INFO] [1712609760.524425]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712609760.524681]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, SOMA.MovingAway, SOMA.Locomotion, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.524932]: Subclasses: []\n", - "[INFO] [1712609760.525227]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.525709]: Instances: []\n", - "[INFO] [1712609760.525980]: Direct Instances: []\n", - "[INFO] [1712609760.526238]: Inverse Restrictions: []\n", - "[INFO] [1712609760.526484]: -------------------\n", - "[INFO] [1712609760.526724]: SOMA.MovingTo \n", - "[INFO] [1712609760.526958]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712609760.527201]: Ancestors: {SOMA.MovingTo, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Navigating, owl.Thing}\n", - "[INFO] [1712609760.527449]: Subclasses: []\n", - "[INFO] [1712609760.527745]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.528234]: Instances: []\n", - "[INFO] [1712609760.528492]: Direct Instances: []\n", - "[INFO] [1712609760.528739]: Inverse Restrictions: []\n", - "[INFO] [1712609760.528986]: -------------------\n", - "[INFO] [1712609760.529221]: SOMA.Natural_Language \n", - "[INFO] [1712609760.529457]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712609760.529700]: Ancestors: {DUL.Entity, SOMA.Natural_Language, DUL.SocialObject, DUL.Object, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.529953]: Subclasses: []\n", - "[INFO] [1712609760.530258]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.530757]: Instances: []\n", - "[INFO] [1712609760.531039]: Direct Instances: []\n", - "[INFO] [1712609760.531358]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712609760.531605]: -------------------\n", - "[INFO] [1712609760.531839]: SOMA.Natural_Language_Text \n", - "[INFO] [1712609760.532067]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.532301]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", - "[INFO] [1712609760.532553]: Subclasses: []\n", - "[INFO] [1712609760.533169]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.533933]: Instances: []\n", - "[INFO] [1712609760.534356]: Direct Instances: []\n", - "[INFO] [1712609760.534805]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712609760.535173]: -------------------\n", - "[INFO] [1712609760.535557]: SOMA.Ontology \n", - "[INFO] [1712609760.535920]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712609760.536386]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", - "[INFO] [1712609760.536812]: Subclasses: []\n", - "[INFO] [1712609760.537301]: Properties: [rdf-schema.comment, SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.537975]: Instances: []\n", - "[INFO] [1712609760.538522]: Direct Instances: []\n", - "[INFO] [1712609760.538868]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712609760.539135]: -------------------\n", - "[INFO] [1712609760.539390]: SOMA.Ontology_Language \n", - "[INFO] [1712609760.539818]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712609760.540255]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.FormalLanguage, SOMA.Language, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.540694]: Subclasses: []\n", - "[INFO] [1712609760.541203]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.541813]: Instances: []\n", - "[INFO] [1712609760.542248]: Direct Instances: []\n", - "[INFO] [1712609760.542741]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712609760.543117]: -------------------\n", - "[INFO] [1712609760.543468]: SOMA.Option \n", - "[INFO] [1712609760.543807]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712609760.544148]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.Option, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.544501]: Subclasses: []\n", - "[INFO] [1712609760.544890]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.545478]: Instances: []\n", - "[INFO] [1712609760.545827]: Direct Instances: []\n", - "[INFO] [1712609760.546165]: Inverse Restrictions: []\n", - "[INFO] [1712609760.546502]: -------------------\n", - "[INFO] [1712609760.546835]: SOMA.Singleton \n", - "[INFO] [1712609760.547165]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.547490]: Ancestors: {SOMA.Singleton, owl.Thing}\n", - "[INFO] [1712609760.547823]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712609760.548203]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.encapsulates]\n", - "[INFO] [1712609760.548799]: Instances: []\n", - "[INFO] [1712609760.549166]: Direct Instances: []\n", - "[INFO] [1712609760.549505]: Inverse Restrictions: []\n", - "[INFO] [1712609760.549845]: -------------------\n", - "[INFO] [1712609760.550189]: SOMA.Orienting \n", - "[INFO] [1712609760.550522]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712609760.550861]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Orienting, DUL.Entity, DUL.Task, SOMA.Positioning, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609760.551187]: Subclasses: []\n", - "[INFO] [1712609760.551576]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.552163]: Instances: []\n", - "[INFO] [1712609760.552507]: Direct Instances: []\n", - "[INFO] [1712609760.552849]: Inverse Restrictions: []\n", - "[INFO] [1712609760.553184]: -------------------\n", - "[INFO] [1712609760.553509]: SOMA.Positioning \n", - "[INFO] [1712609760.553830]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712609760.554175]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Positioning, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609760.554533]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712609760.554935]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.555522]: Instances: []\n", - "[INFO] [1712609760.555874]: Direct Instances: []\n", - "[INFO] [1712609760.556235]: Inverse Restrictions: []\n", - "[INFO] [1712609760.556567]: -------------------\n", - "[INFO] [1712609760.556996]: SOMA.Origin \n", - "[INFO] [1712609760.557412]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712609760.557837]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Origin, SOMA.Location}\n", - "[INFO] [1712609760.558285]: Subclasses: []\n", - "[INFO] [1712609760.558770]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.559435]: Instances: []\n", - "[INFO] [1712609760.559866]: Direct Instances: []\n", - "[INFO] [1712609760.560330]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712609760.560700]: -------------------\n", - "[INFO] [1712609760.561054]: SOMA.ParkingArms \n", - "[INFO] [1712609760.561471]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712609760.561857]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.AssumingPose, SOMA.AssumingArmPose, SOMA.ParkingArms}\n", - "[INFO] [1712609760.562287]: Subclasses: []\n", - "[INFO] [1712609760.562748]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.563376]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712609760.563765]: Direct Instances: [SOMA.parking_arms]\n", - "[INFO] [1712609760.564127]: Inverse Restrictions: []\n", - "[INFO] [1712609760.564470]: -------------------\n", - "[INFO] [1712609760.564817]: SOMA.PhaseTransition \n", - "[INFO] [1712609760.565162]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712609760.565537]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Alteration, SOMA.PhaseTransition, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ProcessType}\n", - "[INFO] [1712609760.565910]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712609760.566304]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.seeAlso]\n", - "[INFO] [1712609760.566909]: Instances: []\n", - "[INFO] [1712609760.567278]: Direct Instances: []\n", - "[INFO] [1712609760.567629]: Inverse Restrictions: []\n", - "[INFO] [1712609760.567961]: -------------------\n", - "[INFO] [1712609760.568295]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712609760.568639]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712609760.568986]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.PhysicalAccessibility, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609760.569338]: Subclasses: []\n", - "[INFO] [1712609760.569749]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.570431]: Instances: []\n", - "[INFO] [1712609760.570864]: Direct Instances: []\n", - "[INFO] [1712609760.571282]: Inverse Restrictions: []\n", - "[INFO] [1712609760.571696]: -------------------\n", - "[INFO] [1712609760.572113]: SOMA.PhysicalBlockage \n", - "[INFO] [1712609760.572587]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712609760.573075]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.PhysicalBlockage, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType}\n", - "[INFO] [1712609760.573589]: Subclasses: []\n", - "[INFO] [1712609760.574239]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.575221]: Instances: []\n", - "[INFO] [1712609760.575850]: Direct Instances: []\n", - "[INFO] [1712609760.576479]: Inverse Restrictions: []\n", - "[INFO] [1712609760.577099]: -------------------\n", - "[INFO] [1712609760.577713]: SOMA.PhysicalExistence \n", - "[INFO] [1712609760.578332]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712609760.578973]: Ancestors: {DUL.Entity, SOMA.PhysicalExistence, owl.Thing, SOMA.State, SOMA.PhysicalState, DUL.Event}\n", - "[INFO] [1712609760.579617]: Subclasses: []\n", - "[INFO] [1712609760.580339]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.581414]: Instances: []\n", - "[INFO] [1712609760.582062]: Direct Instances: []\n", - "[INFO] [1712609760.582694]: Inverse Restrictions: []\n", - "[INFO] [1712609760.583259]: -------------------\n", - "[INFO] [1712609760.583817]: SOMA.PhysicalState \n", - "[INFO] [1712609760.584387]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712609760.584980]: Ancestors: {DUL.Entity, owl.Thing, SOMA.State, SOMA.PhysicalState, DUL.Event}\n", - "[INFO] [1712609760.585582]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712609760.586248]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.587244]: Instances: []\n", - "[INFO] [1712609760.587852]: Direct Instances: []\n", - "[INFO] [1712609760.588425]: Inverse Restrictions: []\n", - "[INFO] [1712609760.588933]: -------------------\n", - "[INFO] [1712609760.589451]: SOMA.PhysicsProcess \n", - "[INFO] [1712609760.589965]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712609760.590707]: Ancestors: {DUL.Entity, DUL.Process, SOMA.PhysicsProcess, owl.Thing, DUL.Event}\n", - "[INFO] [1712609760.591366]: Subclasses: []\n", - "[INFO] [1712609760.592037]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.592937]: Instances: []\n", - "[INFO] [1712609760.593507]: Direct Instances: []\n", - "[INFO] [1712609760.594030]: Inverse Restrictions: []\n", - "[INFO] [1712609760.594550]: -------------------\n", - "[INFO] [1712609760.594958]: SOMA.PlacingTheory \n", - "[INFO] [1712609760.595340]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712609760.595711]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, DUL.Theory, owl.Thing, SOMA.PlacingTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712609760.596089]: Subclasses: []\n", - "[INFO] [1712609760.596526]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.597218]: Instances: []\n", - "[INFO] [1712609760.597568]: Direct Instances: []\n", - "[INFO] [1712609760.597899]: Inverse Restrictions: []\n", - "[INFO] [1712609760.598233]: -------------------\n", - "[INFO] [1712609760.598547]: SOMA.PlanarJoint \n", - "[INFO] [1712609760.598843]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712609760.599149]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PlanarJoint}\n", - "[INFO] [1712609760.599436]: Subclasses: []\n", - "[INFO] [1712609760.599776]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.600333]: Instances: []\n", - "[INFO] [1712609760.600621]: Direct Instances: []\n", - "[INFO] [1712609760.600888]: Inverse Restrictions: []\n", - "[INFO] [1712609760.601145]: -------------------\n", - "[INFO] [1712609760.601398]: SOMA.PluginRole \n", - "[INFO] [1712609760.601647]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712609760.601908]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Object, SOMA.PluginRole, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.602165]: Subclasses: []\n", - "[INFO] [1712609760.602464]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.isDefinedIn, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.602967]: Instances: []\n", - "[INFO] [1712609760.603233]: Direct Instances: []\n", - "[INFO] [1712609760.603544]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712609760.603789]: -------------------\n", - "[INFO] [1712609760.604023]: SOMA.Pourable \n", - "[INFO] [1712609760.604265]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712609760.604525]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Pourable, DUL.Quality, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.604773]: Subclasses: []\n", - "[INFO] [1712609760.605063]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.605550]: Instances: []\n", - "[INFO] [1712609760.605819]: Direct Instances: []\n", - "[INFO] [1712609760.606122]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712609760.606380]: -------------------\n", - "[INFO] [1712609760.606626]: SOMA.PouredObject \n", - "[INFO] [1712609760.606872]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712609760.607121]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.PouredObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.607388]: Subclasses: []\n", - "[INFO] [1712609760.607702]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.608196]: Instances: []\n", - "[INFO] [1712609760.608463]: Direct Instances: []\n", - "[INFO] [1712609760.608754]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712609760.608999]: -------------------\n", - "[INFO] [1712609760.609232]: SOMA.Pouring \n", - "[INFO] [1712609760.609466]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712609760.609724]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712609760.609977]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712609760.610269]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.610758]: Instances: []\n", - "[INFO] [1712609760.611028]: Direct Instances: []\n", - "[INFO] [1712609760.611289]: Inverse Restrictions: []\n", - "[INFO] [1712609760.611528]: -------------------\n", - "[INFO] [1712609760.611760]: SOMA.PouringInto \n", - "[INFO] [1712609760.612001]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712609760.612256]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.PouringInto, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712609760.612499]: Subclasses: []\n", - "[INFO] [1712609760.612784]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.613284]: Instances: []\n", - "[INFO] [1712609760.613544]: Direct Instances: []\n", - "[INFO] [1712609760.613790]: Inverse Restrictions: []\n", - "[INFO] [1712609760.614029]: -------------------\n", - "[INFO] [1712609760.614273]: SOMA.PouringOnto \n", - "[INFO] [1712609760.614515]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712609760.614764]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.PouringOnto, owl.Thing, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712609760.615003]: Subclasses: []\n", - "[INFO] [1712609760.615289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.615793]: Instances: []\n", - "[INFO] [1712609760.616057]: Direct Instances: []\n", - "[INFO] [1712609760.616312]: Inverse Restrictions: []\n", - "[INFO] [1712609760.616547]: -------------------\n", - "[INFO] [1712609760.616783]: SOMA.Prediction \n", - "[INFO] [1712609760.617013]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712609760.617267]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing}\n", - "[INFO] [1712609760.617512]: Subclasses: []\n", - "[INFO] [1712609760.617800]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.618286]: Instances: []\n", - "[INFO] [1712609760.618561]: Direct Instances: []\n", - "[INFO] [1712609760.618817]: Inverse Restrictions: []\n", - "[INFO] [1712609760.619055]: -------------------\n", - "[INFO] [1712609760.619290]: SOMA.Prospecting \n", - "[INFO] [1712609760.619524]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712609760.619771]: Ancestors: {SOMA.InformationAcquisition, SOMA.DerivingInformation, owl.Thing, SOMA.Prospecting}\n", - "[INFO] [1712609760.620029]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712609760.620318]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.620812]: Instances: []\n", - "[INFO] [1712609760.621083]: Direct Instances: []\n", - "[INFO] [1712609760.621345]: Inverse Restrictions: []\n", - "[INFO] [1712609760.621584]: -------------------\n", - "[INFO] [1712609760.621815]: SOMA.Predilection \n", - "[INFO] [1712609760.622064]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712609760.622431]: Ancestors: {SOMA.Predilection, DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609760.622745]: Subclasses: []\n", - "[INFO] [1712609760.623090]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.623594]: Instances: []\n", - "[INFO] [1712609760.623853]: Direct Instances: []\n", - "[INFO] [1712609760.624134]: Inverse Restrictions: []\n", - "[INFO] [1712609760.624388]: -------------------\n", - "[INFO] [1712609760.624639]: SOMA.PreferenceOrder \n", - "[INFO] [1712609760.624899]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712609760.625143]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, DUL.Description, owl.Thing, SOMA.PreferenceOrder}\n", - "[INFO] [1712609760.625384]: Subclasses: []\n", - "[INFO] [1712609760.625676]: Properties: [rdf-schema.label, SOMA.orders, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.626183]: Instances: []\n", - "[INFO] [1712609760.626456]: Direct Instances: []\n", - "[INFO] [1712609760.626719]: Inverse Restrictions: []\n", - "[INFO] [1712609760.626960]: -------------------\n", - "[INFO] [1712609760.627200]: SOMA.PreferenceRegion \n", - "[INFO] [1712609760.627443]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712609760.627700]: Ancestors: {DUL.Entity, SOMA.PreferenceRegion, DUL.Region, DUL.Abstract, DUL.SocialObjectAttribute, owl.Thing}\n", - "[INFO] [1712609760.627946]: Subclasses: []\n", - "[INFO] [1712609760.628236]: Properties: [rdf-schema.comment, DUL.isRegionFor, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609760.628720]: Instances: []\n", - "[INFO] [1712609760.628972]: Direct Instances: []\n", - "[INFO] [1712609760.629227]: Inverse Restrictions: []\n", - "[INFO] [1712609760.629467]: -------------------\n", - "[INFO] [1712609760.629700]: SOMA.PrismaticJoint \n", - "[INFO] [1712609760.629935]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712609760.630178]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing, SOMA.PrismaticJoint}\n", - "[INFO] [1712609760.630419]: Subclasses: []\n", - "[INFO] [1712609760.630718]: Properties: [rdf-schema.comment, SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.631209]: Instances: []\n", - "[INFO] [1712609760.631462]: Direct Instances: []\n", - "[INFO] [1712609760.631707]: Inverse Restrictions: []\n", - "[INFO] [1712609760.631941]: -------------------\n", - "[INFO] [1712609760.632180]: SOMA.ProcessFlow \n", - "[INFO] [1712609760.632419]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712609760.632658]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.ProcessFlow}\n", - "[INFO] [1712609760.632891]: Subclasses: []\n", - "[INFO] [1712609760.633175]: Properties: [rdf-schema.comment, SOMA.definesProcess, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.633677]: Instances: []\n", - "[INFO] [1712609760.633942]: Direct Instances: []\n", - "[INFO] [1712609760.634237]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712609760.634484]: -------------------\n", - "[INFO] [1712609760.634719]: SOMA.Progression \n", - "[INFO] [1712609760.634960]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712609760.635211]: Ancestors: {DUL.Entity, SOMA.Progression, DUL.Situation, owl.Thing}\n", - "[INFO] [1712609760.635454]: Subclasses: []\n", - "[INFO] [1712609760.635752]: Properties: [rdf-schema.comment, DUL.satisfies, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.636242]: Instances: []\n", - "[INFO] [1712609760.636509]: Direct Instances: []\n", - "[INFO] [1712609760.636769]: Inverse Restrictions: []\n", - "[INFO] [1712609760.637009]: -------------------\n", - "[INFO] [1712609760.637248]: SOMA.Protector \n", - "[INFO] [1712609760.637479]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712609760.637723]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Protector, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609760.637981]: Subclasses: []\n", - "[INFO] [1712609760.638278]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.638773]: Instances: []\n", - "[INFO] [1712609760.639026]: Direct Instances: []\n", - "[INFO] [1712609760.639272]: Inverse Restrictions: []\n", - "[INFO] [1712609760.639516]: -------------------\n", - "[INFO] [1712609760.639758]: SOMA.ProximalTheory \n", - "[INFO] [1712609760.640001]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712609760.640243]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, DUL.Description, SOMA.ProximalTheory, DUL.Theory, owl.Thing}\n", - "[INFO] [1712609760.640499]: Subclasses: []\n", - "[INFO] [1712609760.640828]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.defines, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.641598]: Instances: []\n", - "[INFO] [1712609760.641881]: Direct Instances: []\n", - "[INFO] [1712609760.642148]: Inverse Restrictions: []\n", - "[INFO] [1712609760.642396]: -------------------\n", - "[INFO] [1712609760.642639]: SOMA.PushingAway \n", - "[INFO] [1712609760.642879]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712609760.643137]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.Actuating, SOMA.PushingAway}\n", - "[INFO] [1712609760.643396]: Subclasses: []\n", - "[INFO] [1712609760.643702]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.644207]: Instances: []\n", - "[INFO] [1712609760.644472]: Direct Instances: []\n", - "[INFO] [1712609760.644728]: Inverse Restrictions: []\n", - "[INFO] [1712609760.644965]: -------------------\n", - "[INFO] [1712609760.645198]: SOMA.PushingDown \n", - "[INFO] [1712609760.645434]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712609760.645693]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Pushing, owl.Thing, SOMA.PushingDown, SOMA.Actuating}\n", - "[INFO] [1712609760.645938]: Subclasses: []\n", - "[INFO] [1712609760.646265]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.646855]: Instances: []\n", - "[INFO] [1712609760.647168]: Direct Instances: []\n", - "[INFO] [1712609760.647456]: Inverse Restrictions: []\n", - "[INFO] [1712609760.647711]: -------------------\n", - "[INFO] [1712609760.647957]: SOMA.PuttingDown \n", - "[INFO] [1712609760.648205]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712609760.648466]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.PuttingDown, owl.Thing}\n", - "[INFO] [1712609760.648715]: Subclasses: []\n", - "[INFO] [1712609760.649005]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.649496]: Instances: []\n", - "[INFO] [1712609760.649768]: Direct Instances: []\n", - "[INFO] [1712609760.650025]: Inverse Restrictions: []\n", - "[INFO] [1712609760.650292]: -------------------\n", - "[INFO] [1712609760.650549]: SOMA.QualityTransition \n", - "[INFO] [1712609760.650793]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712609760.651047]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.QualityTransition, DUL.Transition, owl.Thing}\n", - "[INFO] [1712609760.651294]: Subclasses: []\n", - "[INFO] [1712609760.651584]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.652088]: Instances: []\n", - "[INFO] [1712609760.652356]: Direct Instances: []\n", - "[INFO] [1712609760.652613]: Inverse Restrictions: []\n", - "[INFO] [1712609760.652851]: -------------------\n", - "[INFO] [1712609760.653085]: SOMA.Query \n", - "[INFO] [1712609760.653331]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712609760.653578]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Item, SOMA.Patient, DUL.SocialObject, SOMA.Query, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.Message}\n", - "[INFO] [1712609760.653820]: Subclasses: []\n", - "[INFO] [1712609760.654109]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.654622]: Instances: []\n", - "[INFO] [1712609760.654890]: Direct Instances: []\n", - "[INFO] [1712609760.655181]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712609760.655446]: -------------------\n", - "[INFO] [1712609760.655687]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712609760.655934]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.656178]: Ancestors: {SOMA.QueryAnsweringTask, owl.Thing}\n", - "[INFO] [1712609760.656418]: Subclasses: []\n", - "[INFO] [1712609760.656707]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.657211]: Instances: []\n", - "[INFO] [1712609760.657592]: Direct Instances: []\n", - "[INFO] [1712609760.657884]: Inverse Restrictions: []\n", - "[INFO] [1712609760.658149]: -------------------\n", - "[INFO] [1712609760.658408]: SOMA.QueryEngine \n", - "[INFO] [1712609760.658889]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609760.659209]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.QueryEngine, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.659460]: Subclasses: []\n", - "[INFO] [1712609760.659750]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.660243]: Instances: []\n", - "[INFO] [1712609760.660529]: Direct Instances: []\n", - "[INFO] [1712609760.660788]: Inverse Restrictions: []\n", - "[INFO] [1712609760.661031]: -------------------\n", - "[INFO] [1712609760.661268]: SOMA.Reaching \n", - "[INFO] [1712609760.661512]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712609760.662011]: Ancestors: {SOMA.PhysicalTask, SOMA.Reaching, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing}\n", - "[INFO] [1712609760.662443]: Subclasses: []\n", - "[INFO] [1712609760.662898]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.663418]: Instances: []\n", - "[INFO] [1712609760.663688]: Direct Instances: []\n", - "[INFO] [1712609760.663936]: Inverse Restrictions: []\n", - "[INFO] [1712609760.664180]: -------------------\n", - "[INFO] [1712609760.664421]: SOMA.Retracting \n", - "[INFO] [1712609760.664654]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712609760.664896]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, SOMA.EndEffectorPositioning, owl.Thing, SOMA.Retracting}\n", - "[INFO] [1712609760.665135]: Subclasses: []\n", - "[INFO] [1712609760.665456]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.665962]: Instances: []\n", - "[INFO] [1712609760.666246]: Direct Instances: []\n", - "[INFO] [1712609760.666509]: Inverse Restrictions: []\n", - "[INFO] [1712609760.666744]: -------------------\n", - "[INFO] [1712609760.666973]: SOMA.Reasoner \n", - "[INFO] [1712609760.667203]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712609760.667457]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.667719]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712609760.668009]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.668493]: Instances: []\n", - "[INFO] [1712609760.668762]: Direct Instances: []\n", - "[INFO] [1712609760.669027]: Inverse Restrictions: []\n", - "[INFO] [1712609760.669261]: -------------------\n", - "[INFO] [1712609760.669496]: SOMA.RecipientRole \n", - "[INFO] [1712609760.669724]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712609760.669970]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, DUL.Entity, SOMA.GoalRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.RecipientRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.670230]: Subclasses: []\n", - "[INFO] [1712609760.670529]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.671014]: Instances: []\n", - "[INFO] [1712609760.671268]: Direct Instances: []\n", - "[INFO] [1712609760.671509]: Inverse Restrictions: []\n", - "[INFO] [1712609760.671739]: -------------------\n", - "[INFO] [1712609760.671997]: SOMA.RecordedEpisode \n", - "[INFO] [1712609760.672244]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712609760.672488]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.Episode, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712609760.672740]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712609760.673028]: Properties: [rdf-schema.comment, SOMA.includesRecord, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.673538]: Instances: []\n", - "[INFO] [1712609760.673810]: Direct Instances: []\n", - "[INFO] [1712609760.674072]: Inverse Restrictions: []\n", - "[INFO] [1712609760.674340]: -------------------\n", - "[INFO] [1712609760.674575]: SOMA.RedColor \n", - "[INFO] [1712609760.674810]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712609760.675061]: Ancestors: {DUL.Entity, DUL.Region, SOMA.ColorRegion, DUL.Abstract, SOMA.RedColor, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609760.675307]: Subclasses: []\n", - "[INFO] [1712609760.675595]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.676076]: Instances: []\n", - "[INFO] [1712609760.676356]: Direct Instances: []\n", - "[INFO] [1712609760.676611]: Inverse Restrictions: []\n", - "[INFO] [1712609760.676845]: -------------------\n", - "[INFO] [1712609760.677074]: SOMA.Reification \n", - "[INFO] [1712609760.677301]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712609760.677546]: Ancestors: {DUL.Entity, SOMA.Reification, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing}\n", - "[INFO] [1712609760.677787]: Subclasses: []\n", - "[INFO] [1712609760.678074]: Properties: [rdf-schema.comment, SOMA.isReificationOf, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.678736]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712609760.679075]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712609760.679374]: Inverse Restrictions: []\n", - "[INFO] [1712609760.679634]: -------------------\n", - "[INFO] [1712609760.679886]: SOMA.RelationalDatabase \n", - "[INFO] [1712609760.680146]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712609760.680407]: Ancestors: {SOMA.RelationalDatabase, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, SOMA.Database, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.680664]: Subclasses: []\n", - "[INFO] [1712609760.680967]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.681564]: Instances: []\n", - "[INFO] [1712609760.681879]: Direct Instances: []\n", - "[INFO] [1712609760.682156]: Inverse Restrictions: []\n", - "[INFO] [1712609760.682409]: -------------------\n", - "[INFO] [1712609760.682654]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712609760.682900]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712609760.683237]: Ancestors: {DUL.Entity, SOMA.RelationalQueryLanguage, DUL.SocialObject, SOMA.Computer_Language, DUL.Object, SOMA.FormalLanguage, SOMA.Language, SOMA.QueryLanguage, owl.Thing, SOMA.System}\n", - "[INFO] [1712609760.683525]: Subclasses: []\n", - "[INFO] [1712609760.683908]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.684525]: Instances: []\n", - "[INFO] [1712609760.684886]: Direct Instances: []\n", - "[INFO] [1712609760.685179]: Inverse Restrictions: []\n", - "[INFO] [1712609760.685440]: -------------------\n", - "[INFO] [1712609760.685690]: SOMA.RelevantPart \n", - "[INFO] [1712609760.685935]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712609760.686222]: Ancestors: {DUL.Entity, SOMA.Feature, DUL.Object, owl.Thing, SOMA.RelevantPart}\n", - "[INFO] [1712609760.686503]: Subclasses: []\n", - "[INFO] [1712609760.686815]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.687337]: Instances: []\n", - "[INFO] [1712609760.687603]: Direct Instances: []\n", - "[INFO] [1712609760.687875]: Inverse Restrictions: []\n", - "[INFO] [1712609760.688127]: -------------------\n", - "[INFO] [1712609760.688373]: SOMA.Remembering \n", - "[INFO] [1712609760.688610]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712609760.688844]: Ancestors: {SOMA.Remembering, owl.Thing}\n", - "[INFO] [1712609760.689096]: Subclasses: []\n", - "[INFO] [1712609760.689415]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.689913]: Instances: []\n", - "[INFO] [1712609760.690176]: Direct Instances: []\n", - "[INFO] [1712609760.690423]: Inverse Restrictions: []\n", - "[INFO] [1712609760.690665]: -------------------\n", - "[INFO] [1712609760.690935]: SOMA.Retrospecting \n", - "[INFO] [1712609760.691180]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712609760.691422]: Ancestors: {SOMA.InformationAcquisition, SOMA.Retrospecting, owl.Thing}\n", - "[INFO] [1712609760.691664]: Subclasses: []\n", - "[INFO] [1712609760.691961]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.692474]: Instances: []\n", - "[INFO] [1712609760.692752]: Direct Instances: []\n", - "[INFO] [1712609760.693058]: Inverse Restrictions: []\n", - "[INFO] [1712609760.693297]: -------------------\n", - "[INFO] [1712609760.693529]: SOMA.RemovedObject \n", - "[INFO] [1712609760.693762]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712609760.694019]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ExcludedObject, SOMA.Patient, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.RemovedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.694280]: Subclasses: []\n", - "[INFO] [1712609760.694577]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.695065]: Instances: []\n", - "[INFO] [1712609760.695340]: Direct Instances: []\n", - "[INFO] [1712609760.695595]: Inverse Restrictions: []\n", - "[INFO] [1712609760.695830]: -------------------\n", - "[INFO] [1712609760.696058]: SOMA.Replanning \n", - "[INFO] [1712609760.696284]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712609760.696520]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, SOMA.Replanning, owl.Thing}\n", - "[INFO] [1712609760.696768]: Subclasses: []\n", - "[INFO] [1712609760.697061]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.697535]: Instances: []\n", - "[INFO] [1712609760.697806]: Direct Instances: []\n", - "[INFO] [1712609760.698050]: Inverse Restrictions: []\n", - "[INFO] [1712609760.698292]: -------------------\n", - "[INFO] [1712609760.698520]: SOMA.RevoluteJoint \n", - "[INFO] [1712609760.698760]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712609760.699016]: Ancestors: {SOMA.HingeJoint, DUL.Entity, SOMA.MovableJoint, SOMA.RevoluteJoint, DUL.PhysicalBody, SOMA.Joint, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609760.699261]: Subclasses: []\n", - "[INFO] [1712609760.699552]: Properties: [rdf-schema.comment, SOMA.hasJointLimit, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.700033]: Instances: []\n", - "[INFO] [1712609760.700304]: Direct Instances: []\n", - "[INFO] [1712609760.700555]: Inverse Restrictions: []\n", - "[INFO] [1712609760.700788]: -------------------\n", - "[INFO] [1712609760.701016]: SOMA.Surface \n", - "[INFO] [1712609760.701250]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712609760.701494]: Ancestors: {DUL.Entity, DUL.Object, SOMA.Surface, DUL.PhysicalObject, DUL.PhysicalPlace, owl.Thing}\n", - "[INFO] [1712609760.701748]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712609760.702038]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.702547]: Instances: []\n", - "[INFO] [1712609760.702813]: Direct Instances: []\n", - "[INFO] [1712609760.703070]: Inverse Restrictions: []\n", - "[INFO] [1712609760.703300]: -------------------\n", - "[INFO] [1712609760.703538]: SOMA.Rubbing \n", - "[INFO] [1712609760.703767]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712609760.704022]: Ancestors: {SOMA.Rubbing, SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.704267]: Subclasses: []\n", - "[INFO] [1712609760.704554]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.705049]: Instances: []\n", - "[INFO] [1712609760.705314]: Direct Instances: []\n", - "[INFO] [1712609760.705563]: Inverse Restrictions: []\n", - "[INFO] [1712609760.705799]: -------------------\n", - "[INFO] [1712609760.706028]: SOMA.Scene \n", - "[INFO] [1712609760.706357]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712609760.706737]: Ancestors: {SOMA.Scene, DUL.Situation, DUL.Entity, owl.Thing}\n", - "[INFO] [1712609760.707112]: Subclasses: []\n", - "[INFO] [1712609760.707480]: Properties: [rdf-schema.comment, DUL.satisfies, rdf-schema.isDefinedBy, DUL.includesEvent]\n", - "[INFO] [1712609760.707991]: Instances: []\n", - "[INFO] [1712609760.708257]: Direct Instances: []\n", - "[INFO] [1712609760.708553]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712609760.708788]: -------------------\n", - "[INFO] [1712609760.709017]: SOMA.SelectedObject \n", - "[INFO] [1712609760.709263]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712609760.709508]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.SelectedObject, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.709748]: Subclasses: []\n", - "[INFO] [1712609760.710030]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.710511]: Instances: []\n", - "[INFO] [1712609760.710785]: Direct Instances: []\n", - "[INFO] [1712609760.711095]: Inverse Restrictions: []\n", - "[INFO] [1712609760.711329]: -------------------\n", - "[INFO] [1712609760.711557]: SOMA.Selecting \n", - "[INFO] [1712609760.711784]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712609760.712027]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.Selecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712609760.712271]: Subclasses: []\n", - "[INFO] [1712609760.712557]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.713032]: Instances: []\n", - "[INFO] [1712609760.713296]: Direct Instances: []\n", - "[INFO] [1712609760.713545]: Inverse Restrictions: []\n", - "[INFO] [1712609760.713774]: -------------------\n", - "[INFO] [1712609760.714000]: SOMA.SelectingItem \n", - "[INFO] [1712609760.714242]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712609760.714484]: Ancestors: {SOMA.SelectingItem, SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712609760.714732]: Subclasses: []\n", - "[INFO] [1712609760.715023]: Properties: [rdf-schema.comment, SOMA.isTaskOfOutputRole, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.715507]: Instances: []\n", - "[INFO] [1712609760.715777]: Direct Instances: []\n", - "[INFO] [1712609760.716026]: Inverse Restrictions: []\n", - "[INFO] [1712609760.716255]: -------------------\n", - "[INFO] [1712609760.716479]: SOMA.SelfReflection \n", - "[INFO] [1712609760.716702]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712609760.716940]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.MetacognitiveControlling, SOMA.MentalTask, SOMA.SelfReflection}\n", - "[INFO] [1712609760.717185]: Subclasses: []\n", - "[INFO] [1712609760.717512]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.717994]: Instances: []\n", - "[INFO] [1712609760.718250]: Direct Instances: []\n", - "[INFO] [1712609760.718497]: Inverse Restrictions: []\n", - "[INFO] [1712609760.718735]: -------------------\n", - "[INFO] [1712609760.718965]: SOMA.Serving \n", - "[INFO] [1712609760.719209]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712609760.719450]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Delivering, owl.Thing, SOMA.Serving, SOMA.Actuating}\n", - "[INFO] [1712609760.719704]: Subclasses: []\n", - "[INFO] [1712609760.719995]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.720476]: Instances: []\n", - "[INFO] [1712609760.720746]: Direct Instances: []\n", - "[INFO] [1712609760.720991]: Inverse Restrictions: []\n", - "[INFO] [1712609760.721219]: -------------------\n", - "[INFO] [1712609760.721442]: SOMA.SettingGripper \n", - "[INFO] [1712609760.721663]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712609760.721894]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.SettingGripper, owl.Thing, SOMA.AssumingPose}\n", - "[INFO] [1712609760.722145]: Subclasses: []\n", - "[INFO] [1712609760.722433]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.722905]: Instances: []\n", - "[INFO] [1712609760.723175]: Direct Instances: []\n", - "[INFO] [1712609760.723420]: Inverse Restrictions: []\n", - "[INFO] [1712609760.723645]: -------------------\n", - "[INFO] [1712609760.723864]: SOMA.6DPose \n", - "[INFO] [1712609760.724134]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712609760.724386]: Ancestors: {DUL.Entity, DUL.Region, SOMA.6DPose, DUL.Abstract, owl.Thing, DUL.SpaceRegion}\n", - "[INFO] [1712609760.724629]: Subclasses: []\n", - "[INFO] [1712609760.724916]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasPositionData]\n", - "[INFO] [1712609760.725407]: Instances: []\n", - "[INFO] [1712609760.725664]: Direct Instances: []\n", - "[INFO] [1712609760.725950]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712609760.726187]: -------------------\n", - "[INFO] [1712609760.726413]: SOMA.Sharpness \n", - "[INFO] [1712609760.726649]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609760.726885]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Sharpness, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609760.727120]: Subclasses: []\n", - "[INFO] [1712609760.727410]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.727891]: Instances: []\n", - "[INFO] [1712609760.728133]: Direct Instances: []\n", - "[INFO] [1712609760.728363]: Inverse Restrictions: []\n", - "[INFO] [1712609760.728598]: -------------------\n", - "[INFO] [1712609760.728828]: SOMA.Simulating \n", - "[INFO] [1712609760.729052]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712609760.729281]: Ancestors: {SOMA.DerivingInformation, SOMA.Simulating, SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing}\n", - "[INFO] [1712609760.729526]: Subclasses: []\n", - "[INFO] [1712609760.729812]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.730293]: Instances: []\n", - "[INFO] [1712609760.730546]: Direct Instances: []\n", - "[INFO] [1712609760.730795]: Inverse Restrictions: []\n", - "[INFO] [1712609760.731031]: -------------------\n", - "[INFO] [1712609760.731258]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712609760.731482]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712609760.731722]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.Simulation_Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.731963]: Subclasses: []\n", - "[INFO] [1712609760.732249]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.732725]: Instances: []\n", - "[INFO] [1712609760.732997]: Direct Instances: []\n", - "[INFO] [1712609760.733249]: Inverse Restrictions: []\n", - "[INFO] [1712609760.733483]: -------------------\n", - "[INFO] [1712609760.733709]: SOMA.Size \n", - "[INFO] [1712609760.733933]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712609760.734354]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Size, owl.Thing}\n", - "[INFO] [1712609760.734725]: Subclasses: []\n", - "[INFO] [1712609760.735016]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.735497]: Instances: []\n", - "[INFO] [1712609760.735782]: Direct Instances: []\n", - "[INFO] [1712609760.736047]: Inverse Restrictions: []\n", - "[INFO] [1712609760.736282]: -------------------\n", - "[INFO] [1712609760.736512]: SOMA.Slicing \n", - "[INFO] [1712609760.736738]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712609760.736982]: Ancestors: {SOMA.Cutting, SOMA.Slicing, SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712609760.737237]: Subclasses: []\n", - "[INFO] [1712609760.737535]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.738011]: Instances: []\n", - "[INFO] [1712609760.738442]: Direct Instances: []\n", - "[INFO] [1712609760.738827]: Inverse Restrictions: []\n", - "[INFO] [1712609760.739190]: -------------------\n", - "[INFO] [1712609760.739587]: SOMA.Sluggishness \n", - "[INFO] [1712609760.739952]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712609760.740242]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Amateurish, DUL.Description, SOMA.DexterityDiagnosis, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.Sluggishness, DUL.Diagnosis}\n", - "[INFO] [1712609760.740500]: Subclasses: []\n", - "[INFO] [1712609760.740838]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.741326]: Instances: []\n", - "[INFO] [1712609760.741612]: Direct Instances: []\n", - "[INFO] [1712609760.741872]: Inverse Restrictions: []\n", - "[INFO] [1712609760.742108]: -------------------\n", - "[INFO] [1712609760.742344]: SOMA.SocialState \n", - "[INFO] [1712609760.742578]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712609760.742813]: Ancestors: {DUL.Entity, SOMA.SocialState, owl.Thing, SOMA.State, DUL.Event}\n", - "[INFO] [1712609760.743053]: Subclasses: []\n", - "[INFO] [1712609760.743356]: Properties: [rdf-schema.comment, rdf-schema.label, DUL.hasParticipant, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.743839]: Instances: []\n", - "[INFO] [1712609760.744087]: Direct Instances: []\n", - "[INFO] [1712609760.744327]: Inverse Restrictions: []\n", - "[INFO] [1712609760.744561]: -------------------\n", - "[INFO] [1712609760.744799]: SOMA.Software_Configuration \n", - "[INFO] [1712609760.745034]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712609760.745271]: Ancestors: {DUL.Entity, DUL.Collection, DUL.SocialObject, DUL.Configuration, SOMA.Software_Configuration, DUL.Object, owl.Thing}\n", - "[INFO] [1712609760.745511]: Subclasses: []\n", - "[INFO] [1712609760.745804]: Properties: [rdf-schema.label, DUL.isDescribedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.746282]: Instances: []\n", - "[INFO] [1712609760.746557]: Direct Instances: []\n", - "[INFO] [1712609760.746910]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712609760.747146]: -------------------\n", - "[INFO] [1712609760.747373]: SOMA.SoftwareLibrary \n", - "[INFO] [1712609760.747596]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712609760.747839]: Ancestors: {DUL.Entity, SOMA.SoftwareLibrary, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.Software}\n", - "[INFO] [1712609760.748083]: Subclasses: []\n", - "[INFO] [1712609760.748366]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.748839]: Instances: []\n", - "[INFO] [1712609760.749136]: Direct Instances: []\n", - "[INFO] [1712609760.749418]: Inverse Restrictions: []\n", - "[INFO] [1712609760.749657]: -------------------\n", - "[INFO] [1712609760.749887]: SOMA.SourceMaterialRole \n", - "[INFO] [1712609760.750113]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712609760.750372]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.SourceMaterialRole, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.750617]: Subclasses: []\n", - "[INFO] [1712609760.750902]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.751377]: Instances: []\n", - "[INFO] [1712609760.751623]: Direct Instances: []\n", - "[INFO] [1712609760.751866]: Inverse Restrictions: []\n", - "[INFO] [1712609760.752108]: -------------------\n", - "[INFO] [1712609760.752341]: SOMA.SphereShape \n", - "[INFO] [1712609760.752577]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712609760.752815]: Ancestors: {DUL.Entity, SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, SOMA.SphereShape}\n", - "[INFO] [1712609760.753051]: Subclasses: []\n", - "[INFO] [1712609760.753351]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712609760.753871]: Instances: []\n", - "[INFO] [1712609760.754138]: Direct Instances: []\n", - "[INFO] [1712609760.754388]: Inverse Restrictions: []\n", - "[INFO] [1712609760.754631]: -------------------\n", - "[INFO] [1712609760.754868]: SOMA.Standing \n", - "[INFO] [1712609760.755105]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712609760.755351]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Standing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.755588]: Subclasses: []\n", - "[INFO] [1712609760.755898]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.756393]: Instances: []\n", - "[INFO] [1712609760.756678]: Direct Instances: []\n", - "[INFO] [1712609760.756929]: Inverse Restrictions: []\n", - "[INFO] [1712609760.757169]: -------------------\n", - "[INFO] [1712609760.757444]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712609760.757692]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712609760.757933]: Ancestors: {DUL.Entity, SOMA.StaticFrictionAttribute, DUL.Region, DUL.Abstract, SOMA.FrictionAttribute, owl.Thing, DUL.PhysicalAttribute}\n", - "[INFO] [1712609760.758192]: Subclasses: []\n", - "[INFO] [1712609760.758500]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.758996]: Instances: []\n", - "[INFO] [1712609760.759282]: Direct Instances: []\n", - "[INFO] [1712609760.759548]: Inverse Restrictions: []\n", - "[INFO] [1712609760.759786]: -------------------\n", - "[INFO] [1712609760.760021]: SOMA.Status \n", - "[INFO] [1712609760.760252]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712609760.760487]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Status, DUL.SocialObject, DUL.Object, DUL.Parameter, owl.Thing}\n", - "[INFO] [1712609760.760747]: Subclasses: []\n", - "[INFO] [1712609760.761050]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.761536]: Instances: []\n", - "[INFO] [1712609760.761791]: Direct Instances: []\n", - "[INFO] [1712609760.762090]: Inverse Restrictions: []\n", - "[INFO] [1712609760.762355]: -------------------\n", - "[INFO] [1712609760.762593]: SOMA.StatusFailure \n", - "[INFO] [1712609760.762821]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609760.763055]: Ancestors: {SOMA.StatusFailure, DUL.Entity, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609760.763306]: Subclasses: []\n", - "[INFO] [1712609760.763601]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.764132]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712609760.764459]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712609760.764748]: Inverse Restrictions: []\n", - "[INFO] [1712609760.764995]: -------------------\n", - "[INFO] [1712609760.765227]: SOMA.StimulusRole \n", - "[INFO] [1712609760.765486]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712609760.765731]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CausativeRole, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.StimulusRole}\n", - "[INFO] [1712609760.765987]: Subclasses: []\n", - "[INFO] [1712609760.766289]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.766778]: Instances: []\n", - "[INFO] [1712609760.767054]: Direct Instances: []\n", - "[INFO] [1712609760.767307]: Inverse Restrictions: []\n", - "[INFO] [1712609760.767540]: -------------------\n", - "[INFO] [1712609760.767767]: SOMA.Stirring \n", - "[INFO] [1712609760.767998]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712609760.768250]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Constructing, owl.Thing, SOMA.Stirring, SOMA.Mixing}\n", - "[INFO] [1712609760.768491]: Subclasses: []\n", - "[INFO] [1712609760.768780]: Properties: [rdf-schema.comment, SOMA.isTaskAffordedBy, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.769277]: Instances: []\n", - "[INFO] [1712609760.769543]: Direct Instances: []\n", - "[INFO] [1712609760.769790]: Inverse Restrictions: []\n", - "[INFO] [1712609760.770019]: -------------------\n", - "[INFO] [1712609760.770253]: SOMA.Storage \n", - "[INFO] [1712609760.770511]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712609760.770773]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, SOMA.Storage, owl.Thing, SOMA.Disposition}\n", - "[INFO] [1712609760.771020]: Subclasses: []\n", - "[INFO] [1712609760.771318]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.771805]: Instances: []\n", - "[INFO] [1712609760.772051]: Direct Instances: []\n", - "[INFO] [1712609760.772310]: Inverse Restrictions: []\n", - "[INFO] [1712609760.772556]: -------------------\n", - "[INFO] [1712609760.772789]: SOMA.StructuralDesign \n", - "[INFO] [1712609760.773017]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712609760.773253]: Ancestors: {DUL.Entity, DUL.Design, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.StructuralDesign, owl.Thing}\n", - "[INFO] [1712609760.773497]: Subclasses: []\n", - "[INFO] [1712609760.773791]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.774302]: Instances: []\n", - "[INFO] [1712609760.774571]: Direct Instances: []\n", - "[INFO] [1712609760.774814]: Inverse Restrictions: []\n", - "[INFO] [1712609760.775057]: -------------------\n", - "[INFO] [1712609760.775298]: SOMA.TaskInvocation \n", - "[INFO] [1712609760.775540]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712609760.775781]: Ancestors: {DUL.Workflow, DUL.Entity, DUL.Plan, DUL.SocialObject, DUL.Object, SOMA.TaskInvocation, DUL.Description, owl.Thing}\n", - "[INFO] [1712609760.776022]: Subclasses: []\n", - "[INFO] [1712609760.776333]: Properties: [rdf-schema.comment, DUL.definesTask, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.776820]: Instances: []\n", - "[INFO] [1712609760.777086]: Direct Instances: []\n", - "[INFO] [1712609760.777415]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712609760.777662]: -------------------\n", - "[INFO] [1712609760.777897]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712609760.778131]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712609760.778378]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.778636]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712609760.778935]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.779429]: Instances: []\n", - "[INFO] [1712609760.779684]: Direct Instances: []\n", - "[INFO] [1712609760.779948]: Inverse Restrictions: []\n", - "[INFO] [1712609760.780184]: -------------------\n", - "[INFO] [1712609760.780415]: SOMA.Successfulness \n", - "[INFO] [1712609760.780638]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712609760.780871]: Ancestors: {DUL.Entity, SOMA.Successfulness, DUL.SocialObject, DUL.Object, DUL.Description, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.781119]: Subclasses: []\n", - "[INFO] [1712609760.781417]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.781891]: Instances: []\n", - "[INFO] [1712609760.782143]: Direct Instances: []\n", - "[INFO] [1712609760.782403]: Inverse Restrictions: []\n", - "[INFO] [1712609760.782640]: -------------------\n", - "[INFO] [1712609760.782868]: SOMA.SupportState \n", - "[INFO] [1712609760.783111]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712609760.783370]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.SupportState, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.StateType, SOMA.FunctionalControl}\n", - "[INFO] [1712609760.783618]: Subclasses: []\n", - "[INFO] [1712609760.783907]: Properties: [rdf-schema.comment, SOMA.isStateTypeOf, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.784380]: Instances: []\n", - "[INFO] [1712609760.784651]: Direct Instances: []\n", - "[INFO] [1712609760.784899]: Inverse Restrictions: []\n", - "[INFO] [1712609760.785127]: -------------------\n", - "[INFO] [1712609760.785353]: SOMA.Supporter \n", - "[INFO] [1712609760.785589]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712609760.785834]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Supporter, SOMA.EventAdjacentRole, SOMA.ResourceRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712609760.786068]: Subclasses: []\n", - "[INFO] [1712609760.786367]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.786874]: Instances: []\n", - "[INFO] [1712609760.787145]: Direct Instances: []\n", - "[INFO] [1712609760.787449]: Inverse Restrictions: []\n", - "[INFO] [1712609760.787686]: -------------------\n", - "[INFO] [1712609760.787917]: SOMA.SupportTheory \n", - "[INFO] [1712609760.788157]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712609760.788407]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, DUL.Object, SOMA.SchematicTheory, SOMA.ControlTheory, DUL.Description, DUL.Theory, SOMA.FunctionalSpatialSchemaTheory, owl.Thing, SOMA.SupportTheory}\n", - "[INFO] [1712609760.788650]: Subclasses: []\n", - "[INFO] [1712609760.788938]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.789429]: Instances: []\n", - "[INFO] [1712609760.789694]: Direct Instances: []\n", - "[INFO] [1712609760.789938]: Inverse Restrictions: []\n", - "[INFO] [1712609760.790175]: -------------------\n", - "[INFO] [1712609760.790405]: SOMA.SupportedObject \n", - "[INFO] [1712609760.790647]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712609760.790920]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.Patient, DUL.SocialObject, SOMA.ConnectedObject, DUL.Object, SOMA.EventAdjacentRole, SOMA.SupportedObject, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.791170]: Subclasses: []\n", - "[INFO] [1712609760.791462]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.791971]: Instances: []\n", - "[INFO] [1712609760.792240]: Direct Instances: []\n", - "[INFO] [1712609760.792488]: Inverse Restrictions: []\n", - "[INFO] [1712609760.792720]: -------------------\n", - "[INFO] [1712609760.792953]: SOMA.SymbolicReasoner \n", - "[INFO] [1712609760.793194]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712609760.793439]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.SymbolicReasoner, owl.Thing, DUL.Role, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.793678]: Subclasses: []\n", - "[INFO] [1712609760.793964]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.794470]: Instances: []\n", - "[INFO] [1712609760.794748]: Direct Instances: []\n", - "[INFO] [1712609760.795000]: Inverse Restrictions: []\n", - "[INFO] [1712609760.795233]: -------------------\n", - "[INFO] [1712609760.795463]: SOMA.Tapping \n", - "[INFO] [1712609760.795692]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712609760.795951]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Tapping, owl.Thing, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.796196]: Subclasses: []\n", - "[INFO] [1712609760.796484]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.796961]: Instances: []\n", - "[INFO] [1712609760.797239]: Direct Instances: []\n", - "[INFO] [1712609760.797484]: Inverse Restrictions: []\n", - "[INFO] [1712609760.797714]: -------------------\n", - "[INFO] [1712609760.797942]: SOMA.Taxis \n", - "[INFO] [1712609760.798171]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712609760.798412]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, SOMA.Taxis, DUL.Object, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.798664]: Subclasses: []\n", - "[INFO] [1712609760.798960]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.799438]: Instances: []\n", - "[INFO] [1712609760.799684]: Direct Instances: []\n", - "[INFO] [1712609760.799930]: Inverse Restrictions: []\n", - "[INFO] [1712609760.800169]: -------------------\n", - "[INFO] [1712609760.800398]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712609760.800629]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712609760.800868]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609760.801116]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712609760.801414]: Properties: [rdf-schema.comment, DUL.hasConstituent, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712609760.801917]: Instances: []\n", - "[INFO] [1712609760.802182]: Direct Instances: []\n", - "[INFO] [1712609760.802438]: Inverse Restrictions: []\n", - "[INFO] [1712609760.802682]: -------------------\n", - "[INFO] [1712609760.802916]: SOMA.Temperature \n", - "[INFO] [1712609760.803154]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712609760.803387]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Temperature, DUL.Quality, owl.Thing}\n", - "[INFO] [1712609760.803656]: Subclasses: []\n", - "[INFO] [1712609760.803989]: Properties: [rdf-schema.comment, DUL.hasRegion, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.804474]: Instances: []\n", - "[INFO] [1712609760.804731]: Direct Instances: []\n", - "[INFO] [1712609760.805033]: Inverse Restrictions: []\n", - "[INFO] [1712609760.805290]: -------------------\n", - "[INFO] [1712609760.805526]: SOMA.TemperatureRegion \n", - "[INFO] [1712609760.805756]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712609760.805990]: Ancestors: {DUL.Entity, SOMA.TemperatureRegion, DUL.Region, DUL.Abstract, owl.Thing}\n", - "[INFO] [1712609760.806249]: Subclasses: []\n", - "[INFO] [1712609760.806559]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.807046]: Instances: []\n", - "[INFO] [1712609760.807301]: Direct Instances: []\n", - "[INFO] [1712609760.807631]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712609760.807895]: -------------------\n", - "[INFO] [1712609760.808136]: SOMA.Tempering \n", - "[INFO] [1712609760.808374]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712609760.808619]: Ancestors: {SOMA.Extrinsic, DUL.Entity, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, SOMA.Disposition}\n", - "[INFO] [1712609760.808871]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712609760.809177]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.809671]: Instances: []\n", - "[INFO] [1712609760.809936]: Direct Instances: []\n", - "[INFO] [1712609760.810206]: Inverse Restrictions: []\n", - "[INFO] [1712609760.810451]: -------------------\n", - "[INFO] [1712609760.810686]: SOMA.ThinkAloud \n", - "[INFO] [1712609760.810916]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712609760.811155]: Ancestors: {DUL.Concept, DUL.Entity, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ThinkAloud}\n", - "[INFO] [1712609760.811390]: Subclasses: []\n", - "[INFO] [1712609760.811690]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.812177]: Instances: []\n", - "[INFO] [1712609760.812429]: Direct Instances: []\n", - "[INFO] [1712609760.812662]: Inverse Restrictions: []\n", - "[INFO] [1712609760.812887]: -------------------\n", - "[INFO] [1712609760.813124]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712609760.813355]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609760.813594]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudActionTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.813831]: Subclasses: []\n", - "[INFO] [1712609760.814114]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.814760]: Instances: []\n", - "[INFO] [1712609760.815088]: Direct Instances: []\n", - "[INFO] [1712609760.815372]: Inverse Restrictions: []\n", - "[INFO] [1712609760.815623]: -------------------\n", - "[INFO] [1712609760.815867]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712609760.816104]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712609760.816351]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.816599]: Subclasses: []\n", - "[INFO] [1712609760.816906]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.817392]: Instances: []\n", - "[INFO] [1712609760.817657]: Direct Instances: []\n", - "[INFO] [1712609760.817905]: Inverse Restrictions: []\n", - "[INFO] [1712609760.818159]: -------------------\n", - "[INFO] [1712609760.818401]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712609760.818635]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609760.818880]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.819134]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712609760.819434]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.819926]: Instances: []\n", - "[INFO] [1712609760.820187]: Direct Instances: []\n", - "[INFO] [1712609760.820439]: Inverse Restrictions: []\n", - "[INFO] [1712609760.820666]: -------------------\n", - "[INFO] [1712609760.820896]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712609760.821136]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609760.821383]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.821622]: Subclasses: []\n", - "[INFO] [1712609760.821906]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.822387]: Instances: []\n", - "[INFO] [1712609760.822663]: Direct Instances: []\n", - "[INFO] [1712609760.822911]: Inverse Restrictions: []\n", - "[INFO] [1712609760.823141]: -------------------\n", - "[INFO] [1712609760.823383]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712609760.823618]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609760.823863]: Ancestors: {SOMA.ThinkAloudOpinionTopic, DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.824146]: Subclasses: []\n", - "[INFO] [1712609760.824453]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.824946]: Instances: []\n", - "[INFO] [1712609760.825207]: Direct Instances: []\n", - "[INFO] [1712609760.825452]: Inverse Restrictions: []\n", - "[INFO] [1712609760.825689]: -------------------\n", - "[INFO] [1712609760.825924]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712609760.826159]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609760.826403]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, owl.Thing, DUL.Role, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.826640]: Subclasses: []\n", - "[INFO] [1712609760.826927]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.827420]: Instances: []\n", - "[INFO] [1712609760.827679]: Direct Instances: []\n", - "[INFO] [1712609760.827925]: Inverse Restrictions: []\n", - "[INFO] [1712609760.828154]: -------------------\n", - "[INFO] [1712609760.828398]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712609760.828637]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712609760.828880]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudPlanTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.829119]: Subclasses: []\n", - "[INFO] [1712609760.829403]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.829921]: Instances: []\n", - "[INFO] [1712609760.830198]: Direct Instances: []\n", - "[INFO] [1712609760.830446]: Inverse Restrictions: []\n", - "[INFO] [1712609760.830678]: -------------------\n", - "[INFO] [1712609760.830907]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712609760.831141]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712609760.831395]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.CommunicationTopic, DUL.SocialObject, DUL.Object, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, SOMA.ThinkAloudSceneKnowledgeTopic, owl.Thing, DUL.Role, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712609760.831646]: Subclasses: []\n", - "[INFO] [1712609760.831933]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.832410]: Instances: []\n", - "[INFO] [1712609760.832676]: Direct Instances: []\n", - "[INFO] [1712609760.832921]: Inverse Restrictions: []\n", - "[INFO] [1712609760.833152]: -------------------\n", - "[INFO] [1712609760.833381]: SOMA.Threshold \n", - "[INFO] [1712609760.833607]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712609760.833843]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, SOMA.Threshold, DUL.Object, DUL.Parameter, owl.Thing}\n", - "[INFO] [1712609760.834097]: Subclasses: []\n", - "[INFO] [1712609760.834396]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.834882]: Instances: []\n", - "[INFO] [1712609760.835163]: Direct Instances: []\n", - "[INFO] [1712609760.835416]: Inverse Restrictions: []\n", - "[INFO] [1712609760.835651]: -------------------\n", - "[INFO] [1712609760.835881]: SOMA.Throwing \n", - "[INFO] [1712609760.836111]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712609760.836363]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, SOMA.Throwing, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Manipulating, owl.Thing, SOMA.Actuating}\n", - "[INFO] [1712609760.836612]: Subclasses: []\n", - "[INFO] [1712609760.836903]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.837402]: Instances: []\n", - "[INFO] [1712609760.837667]: Direct Instances: []\n", - "[INFO] [1712609760.837913]: Inverse Restrictions: []\n", - "[INFO] [1712609760.838155]: -------------------\n", - "[INFO] [1712609760.838396]: SOMA.TimeRole \n", - "[INFO] [1712609760.838639]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712609760.838888]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.EventAdjacentRole, owl.Thing, DUL.Role}\n", - "[INFO] [1712609760.839151]: Subclasses: []\n", - "[INFO] [1712609760.839448]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.839963]: Instances: []\n", - "[INFO] [1712609760.840254]: Direct Instances: []\n", - "[INFO] [1712609760.840504]: Inverse Restrictions: []\n", - "[INFO] [1712609760.840770]: -------------------\n", - "[INFO] [1712609760.841035]: SOMA.Transporting \n", - "[INFO] [1712609760.841275]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712609760.841524]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", - "[INFO] [1712609760.841765]: Subclasses: []\n", - "[INFO] [1712609760.842052]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.842726]: Instances: []\n", - "[INFO] [1712609760.843164]: Direct Instances: []\n", - "[INFO] [1712609760.843564]: Inverse Restrictions: []\n", - "[INFO] [1712609760.843931]: -------------------\n", - "[INFO] [1712609760.844211]: SOMA.Triplestore \n", - "[INFO] [1712609760.844463]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712609760.844723]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Triplestore, owl.Thing, SOMA.Database, DUL.Role, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", - "[INFO] [1712609760.844977]: Subclasses: []\n", - "[INFO] [1712609760.845271]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.845777]: Instances: []\n", - "[INFO] [1712609760.846038]: Direct Instances: []\n", - "[INFO] [1712609760.846290]: Inverse Restrictions: []\n", - "[INFO] [1712609760.846524]: -------------------\n", - "[INFO] [1712609760.846750]: SOMA.Turning \n", - "[INFO] [1712609760.846975]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712609760.847225]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Turning, owl.Thing, SOMA.BodyMovement, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712609760.847465]: Subclasses: []\n", - "[INFO] [1712609760.847746]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.848221]: Instances: []\n", - "[INFO] [1712609760.848486]: Direct Instances: []\n", - "[INFO] [1712609760.848729]: Inverse Restrictions: []\n", - "[INFO] [1712609760.848953]: -------------------\n", - "[INFO] [1712609760.849175]: SOMA.UnavailableSoftware \n", - "[INFO] [1712609760.849396]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712609760.849639]: Ancestors: {DUL.Entity, SOMA.UnavailableSoftware, DUL.SocialObject, SOMA.FunctionalDiagnosis, DUL.Object, DUL.Description, SOMA.SoftwareDiagnosis, SOMA.TechnicalDiagnosis, owl.Thing, DUL.Diagnosis}\n", - "[INFO] [1712609760.849879]: Subclasses: []\n", - "[INFO] [1712609760.850172]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.850675]: Instances: []\n", - "[INFO] [1712609760.850936]: Direct Instances: []\n", - "[INFO] [1712609760.851181]: Inverse Restrictions: []\n", - "[INFO] [1712609760.851409]: -------------------\n", - "[INFO] [1712609760.851633]: SOMA.Unsuccessfulness \n", - "[INFO] [1712609760.851852]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712609760.852095]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Object, DUL.Description, SOMA.Unsuccessfulness, owl.Thing, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712609760.852349]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712609760.852632]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.853110]: Instances: []\n", - "[INFO] [1712609760.853379]: Direct Instances: []\n", - "[INFO] [1712609760.853646]: Inverse Restrictions: []\n", - "[INFO] [1712609760.853891]: -------------------\n", - "[INFO] [1712609760.854135]: SOMA.VideoData \n", - "[INFO] [1712609760.854368]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712609760.854608]: Ancestors: {DUL.Entity, SOMA.VideoData, DUL.InformationEntity, DUL.SocialObject, DUL.Object, owl.Thing, DUL.InformationObject}\n", - "[INFO] [1712609760.854863]: Subclasses: []\n", - "[INFO] [1712609760.855152]: Properties: [rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.855645]: Instances: []\n", - "[INFO] [1712609760.855916]: Direct Instances: []\n", - "[INFO] [1712609760.856167]: Inverse Restrictions: []\n", - "[INFO] [1712609760.856395]: -------------------\n", - "[INFO] [1712609760.856620]: SOMA.3DPosition \n", - "[INFO] [1712609760.856847]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712609760.857079]: Ancestors: {DUL.Entity, SOMA.3DPosition, DUL.Region, DUL.Abstract, owl.Thing, DUL.SpaceRegion}\n", - "[INFO] [1712609760.857333]: Subclasses: []\n", - "[INFO] [1712609760.857666]: Properties: [rdf-schema.comment, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasPositionData]\n", - "[INFO] [1712609760.858166]: Instances: []\n", - "[INFO] [1712609760.858421]: Direct Instances: []\n", - "[INFO] [1712609760.858665]: Inverse Restrictions: []\n", - "[INFO] [1712609760.858903]: -------------------\n", - "[INFO] [1712609760.859132]: SOMA.OntologyPlaceHolderObject \n", - "[INFO] [1712609760.859356]: Super classes: [SOMA.Container, owl.Thing]\n", - "[INFO] [1712609760.859624]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Container, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor, SOMA.OntologyPlaceHolderObject}\n", - "[INFO] [1712609760.860160]: Subclasses: [SOMA.Ontoegg_tray]\n", - "[INFO] [1712609760.860477]: Properties: []\n", - "[INFO] [1712609760.860991]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609760.861277]: Direct Instances: []\n", - "[INFO] [1712609760.861556]: Inverse Restrictions: []\n", - "[INFO] [1712609760.861802]: -------------------\n", - "[INFO] [1712609760.862041]: SOMA.OntologyHandheldObject \n", - "[INFO] [1712609760.862276]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.862541]: Ancestors: {SOMA.OntologyHandheldObject, owl.Thing}\n", - "[INFO] [1712609760.862806]: Subclasses: [SOMA.Ontoegg]\n", - "[INFO] [1712609760.863095]: Properties: []\n", - "[INFO] [1712609760.863650]: Instances: [SOMA.egg_concept]\n", - "[INFO] [1712609760.863935]: Direct Instances: []\n", - "[INFO] [1712609760.864203]: Inverse Restrictions: []\n", - "[INFO] [1712609760.864448]: -------------------\n", - "[INFO] [1712609760.864685]: SOMA.OntologySubject \n", - "[INFO] [1712609760.864926]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.865194]: Ancestors: {SOMA.OntologySubject, owl.Thing}\n", - "[INFO] [1712609760.865510]: Subclasses: []\n", - "[INFO] [1712609760.865808]: Properties: []\n", - "[INFO] [1712609760.866347]: Instances: [SOMA.subject]\n", - "[INFO] [1712609760.866781]: Direct Instances: [SOMA.subject]\n", - "[INFO] [1712609760.867154]: Inverse Restrictions: []\n", - "[INFO] [1712609760.867517]: -------------------\n", - "[INFO] [1712609760.867873]: SOMA.OntologyObject \n", - "[INFO] [1712609760.868222]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.868513]: Ancestors: {SOMA.OntologyObject, owl.Thing}\n", - "[INFO] [1712609760.868774]: Subclasses: []\n", - "[INFO] [1712609760.869061]: Properties: []\n", - "[INFO] [1712609760.869582]: Instances: [SOMA.object]\n", - "[INFO] [1712609760.869868]: Direct Instances: [SOMA.object]\n", - "[INFO] [1712609760.870132]: Inverse Restrictions: []\n", - "[INFO] [1712609760.870368]: -------------------\n", - "[INFO] [1712609760.870598]: SOMA.Ontoegg \n", - "[INFO] [1712609760.870827]: Super classes: [SOMA.OntologyHandheldObject, owl.Thing]\n", - "[INFO] [1712609760.871099]: Ancestors: {SOMA.OntologyHandheldObject, SOMA.Ontoegg, owl.Thing}\n", - "[INFO] [1712609760.871346]: Subclasses: []\n", - "[INFO] [1712609760.871622]: Properties: []\n", - "[INFO] [1712609760.872126]: Instances: [SOMA.egg_concept]\n", - "[INFO] [1712609760.872395]: Direct Instances: [SOMA.egg_concept]\n", - "[INFO] [1712609760.872649]: Inverse Restrictions: []\n", - "[INFO] [1712609760.872880]: -------------------\n", - "[INFO] [1712609760.873106]: SOMA.Ontoegg_tray \n", - "[INFO] [1712609760.873328]: Super classes: [SOMA.OntologyPlaceHolderObject, owl.Thing]\n", - "[INFO] [1712609760.873610]: Ancestors: {DUL.Concept, DUL.Entity, DUL.SocialObject, DUL.Object, SOMA.Container, SOMA.ResourceRole, SOMA.Ontoegg_tray, SOMA.EventAdjacentRole, SOMA.Instrument, owl.Thing, DUL.Role, SOMA.Restrictor, SOMA.OntologyPlaceHolderObject}\n", - "[INFO] [1712609760.873862]: Subclasses: []\n", - "[INFO] [1712609760.874140]: Properties: []\n", - "[INFO] [1712609760.874644]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609760.874917]: Direct Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712609760.875167]: Inverse Restrictions: []\n", - "[INFO] [1712609760.875396]: -------------------\n", - "[INFO] [1712609760.875620]: SOMA.DynamicOntologyConcept \n", - "[INFO] [1712609760.875842]: Super classes: [owl.Thing]\n", - "[INFO] [1712609760.876108]: Ancestors: {SOMA.DynamicOntologyConcept, owl.Thing}\n", - "[INFO] [1712609760.876350]: Subclasses: []\n", - "[INFO] [1712609760.876621]: Properties: []\n", - "[INFO] [1712609760.877166]: Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", - "[INFO] [1712609760.877461]: Direct Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", - "[INFO] [1712609760.877729]: Inverse Restrictions: []\n" + "[INFO] [1712656207.127047]: -------------------\n", + "[INFO] [1712656207.128073]: SOMA.DesignedContainer \n", + "[INFO] [1712656207.128598]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712656207.129241]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.129774]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712656207.130342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712656207.188885]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712656207.189859]: Direct Instances: []\n", + "[INFO] [1712656207.190473]: Inverse Restrictions: []\n", + "[INFO] [1712656207.192216]: -------------------\n", + "[INFO] [1712656207.192697]: DUL.PhysicalObject \n", + "[INFO] [1712656207.193218]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656207.193636]: Ancestors: {DUL.Object, DUL.Entity, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712656207.194052]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712656207.194525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.195542]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712656207.195909]: Direct Instances: []\n", + "[INFO] [1712656207.201609]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712656207.202125]: -------------------\n", + "[INFO] [1712656207.202554]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712656207.202980]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656207.203378]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656207.204038]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712656207.204571]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.205712]: Instances: []\n", + "[INFO] [1712656207.206279]: Direct Instances: []\n", + "[INFO] [1712656207.206787]: Inverse Restrictions: []\n", + "[INFO] [1712656207.207264]: -------------------\n", + "[INFO] [1712656207.207658]: DUL.PhysicalObject \n", + "[INFO] [1712656207.208049]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656207.208490]: Ancestors: {DUL.Object, DUL.Entity, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712656207.208920]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712656207.209446]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.210652]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712656207.211106]: Direct Instances: []\n", + "[INFO] [1712656207.216467]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712656207.216970]: -------------------\n", + "[INFO] [1712656207.217282]: DUL.PhysicalObject \n", + "[INFO] [1712656207.217549]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656207.217814]: Ancestors: {DUL.Object, DUL.Entity, DUL.PhysicalObject, owl.Thing}\n", + "[INFO] [1712656207.218094]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712656207.218422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.219232]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712656207.219532]: Direct Instances: []\n", + "[INFO] [1712656207.222016]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712656207.222344]: -------------------\n", + "[INFO] [1712656207.222613]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712656207.222874]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656207.223144]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656207.223431]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712656207.223754]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.224289]: Instances: []\n", + "[INFO] [1712656207.224574]: Direct Instances: []\n", + "[INFO] [1712656207.224850]: Inverse Restrictions: []\n", + "[INFO] [1712656207.226048]: -------------------\n", + "[INFO] [1712656207.226377]: SOMA.Affordance \n", + "[INFO] [1712656207.226702]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712656207.227022]: Ancestors: {SOMA.Affordance, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.227307]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712656207.227633]: Properties: [rdf-schema.isDefinedBy, SOMA.definesBearer, rdf-schema.comment, SOMA.definesTrigger, DUL.definesTask]\n", + "[INFO] [1712656207.228154]: Instances: []\n", + "[INFO] [1712656207.228432]: Direct Instances: []\n", + "[INFO] [1712656207.229578]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712656207.229886]: -------------------\n", + "[INFO] [1712656207.230155]: SOMA.Disposition \n", + "[INFO] [1712656207.231886]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712656207.232248]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.232556]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712656207.232882]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.233451]: Instances: []\n", + "[INFO] [1712656207.233736]: Direct Instances: []\n", + "[INFO] [1712656207.234069]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712656207.234324]: -------------------\n", + "[INFO] [1712656207.234566]: SOMA.Setpoint \n", + "[INFO] [1712656207.234803]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712656207.235089]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.Parameter, SOMA.Setpoint, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.235351]: Subclasses: []\n", + "[INFO] [1712656207.235659]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.236161]: Instances: []\n", + "[INFO] [1712656207.236426]: Direct Instances: []\n", + "[INFO] [1712656207.236701]: Inverse Restrictions: []\n", + "[INFO] [1712656207.236970]: -------------------\n", + "[INFO] [1712656207.237217]: SOMA.Answer \n", + "[INFO] [1712656207.237458]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712656207.237768]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Answer, SOMA.Message}\n", + "[INFO] [1712656207.238039]: Subclasses: []\n", + "[INFO] [1712656207.238353]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.238853]: Instances: []\n", + "[INFO] [1712656207.239125]: Direct Instances: []\n", + "[INFO] [1712656207.239813]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712656207.240078]: -------------------\n", + "[INFO] [1712656207.240319]: SOMA.Message \n", + "[INFO] [1712656207.240598]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712656207.240882]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Message}\n", + "[INFO] [1712656207.241159]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712656207.241465]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.241977]: Instances: []\n", + "[INFO] [1712656207.242277]: Direct Instances: []\n", + "[INFO] [1712656207.244113]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656207.244402]: -------------------\n", + "[INFO] [1712656207.244653]: SOMA.ProcessType \n", + "[INFO] [1712656207.244962]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712656207.245257]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656207.245546]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712656207.245851]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.246430]: Instances: []\n", + "[INFO] [1712656207.246711]: Direct Instances: []\n", + "[INFO] [1712656207.247062]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712656207.247315]: -------------------\n", + "[INFO] [1712656207.247556]: SOMA.OrderedElement \n", + "[INFO] [1712656207.247856]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712656207.249221]: Ancestors: {SOMA.OrderedElement, SOMA.Singleton, owl.Thing}\n", + "[INFO] [1712656207.249521]: Subclasses: []\n", + "[INFO] [1712656207.249835]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isOrderedBy]\n", + "[INFO] [1712656207.250343]: Instances: []\n", + "[INFO] [1712656207.250621]: Direct Instances: []\n", + "[INFO] [1712656207.251022]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712656207.251276]: -------------------\n", + "[INFO] [1712656207.251522]: SOMA.System \n", + "[INFO] [1712656207.251771]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712656207.252046]: Ancestors: {DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656207.252311]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712656207.252609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.253163]: Instances: []\n", + "[INFO] [1712656207.253440]: Direct Instances: []\n", + "[INFO] [1712656207.253706]: Inverse Restrictions: []\n", + "[INFO] [1712656207.253946]: -------------------\n", + "[INFO] [1712656207.254189]: SOMA.Binding \n", + "[INFO] [1712656207.254915]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712656207.255243]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.255535]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712656207.255854]: Properties: [SOMA.hasBindingFiller, Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasBindingRole]\n", + "[INFO] [1712656207.256377]: Instances: []\n", + "[INFO] [1712656207.256658]: Direct Instances: []\n", + "[INFO] [1712656207.256938]: Inverse Restrictions: []\n", + "[INFO] [1712656207.257181]: -------------------\n", + "[INFO] [1712656207.257424]: SOMA.Joint \n", + "[INFO] [1712656207.257703]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712656207.258600]: Ancestors: {DUL.PhysicalBody, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.258890]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712656207.259208]: Properties: [SOMA.hasChildLink, rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", + "[INFO] [1712656207.259724]: Instances: []\n", + "[INFO] [1712656207.260005]: Direct Instances: []\n", + "[INFO] [1712656207.260284]: Inverse Restrictions: []\n", + "[INFO] [1712656207.260524]: -------------------\n", + "[INFO] [1712656207.260759]: SOMA.Color \n", + "[INFO] [1712656207.261042]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712656207.261337]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.261595]: Subclasses: []\n", + "[INFO] [1712656207.261900]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion, rdf-schema.label]\n", + "[INFO] [1712656207.262397]: Instances: []\n", + "[INFO] [1712656207.262681]: Direct Instances: []\n", + "[INFO] [1712656207.262997]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712656207.263249]: -------------------\n", + "[INFO] [1712656207.263487]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712656207.263727]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656207.264766]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.ExecutionStateRegion, DUL.Entity}\n", + "[INFO] [1712656207.265310]: Subclasses: []\n", + "[INFO] [1712656207.265871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.266739]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712656207.267180]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712656207.267594]: Inverse Restrictions: []\n", + "[INFO] [1712656207.267982]: -------------------\n", + "[INFO] [1712656207.268366]: SOMA.Feature \n", + "[INFO] [1712656207.268808]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712656207.269246]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Feature, owl.Thing}\n", + "[INFO] [1712656207.269650]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712656207.270158]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isFeatureOf]\n", + "[INFO] [1712656207.270980]: Instances: []\n", + "[INFO] [1712656207.271379]: Direct Instances: []\n", + "[INFO] [1712656207.271865]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712656207.272244]: -------------------\n", + "[INFO] [1712656207.272620]: SOMA.FrictionAttribute \n", + "[INFO] [1712656207.273047]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712656207.273493]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656207.273898]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712656207.274395]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasFrictionValue]\n", + "[INFO] [1712656207.275210]: Instances: []\n", + "[INFO] [1712656207.275607]: Direct Instances: []\n", + "[INFO] [1712656207.276003]: Inverse Restrictions: []\n", + "[INFO] [1712656207.276381]: -------------------\n", + "[INFO] [1712656207.276763]: SOMA.SituationTransition \n", + "[INFO] [1712656207.277216]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712656207.277575]: Ancestors: {DUL.Situation, SOMA.SituationTransition, DUL.Transition, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.277871]: Subclasses: []\n", + "[INFO] [1712656207.278200]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.278733]: Instances: []\n", + "[INFO] [1712656207.279032]: Direct Instances: []\n", + "[INFO] [1712656207.280831]: Inverse Restrictions: []\n", + "[INFO] [1712656207.281111]: -------------------\n", + "[INFO] [1712656207.281377]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712656207.281636]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712656207.282974]: Ancestors: {DUL.Entity, DUL.Situation, owl.Thing, SOMA.NonmanifestedSituation}\n", + "[INFO] [1712656207.283305]: Subclasses: []\n", + "[INFO] [1712656207.283648]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.284165]: Instances: []\n", + "[INFO] [1712656207.284443]: Direct Instances: []\n", + "[INFO] [1712656207.285864]: Inverse Restrictions: []\n", + "[INFO] [1712656207.286168]: -------------------\n", + "[INFO] [1712656207.286437]: SOMA.JointLimit \n", + "[INFO] [1712656207.286697]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712656207.286978]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.JointLimit, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656207.287247]: Subclasses: []\n", + "[INFO] [1712656207.287560]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.288075]: Instances: []\n", + "[INFO] [1712656207.288370]: Direct Instances: []\n", + "[INFO] [1712656207.288740]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712656207.289012]: -------------------\n", + "[INFO] [1712656207.289263]: SOMA.JointState \n", + "[INFO] [1712656207.289551]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712656207.289850]: Ancestors: {DUL.Region, SOMA.JointState, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656207.290119]: Subclasses: []\n", + "[INFO] [1712656207.290427]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasJointPosition, rdf-schema.comment, SOMA.hasJointVelocity]\n", + "[INFO] [1712656207.290939]: Instances: []\n", + "[INFO] [1712656207.291230]: Direct Instances: []\n", + "[INFO] [1712656207.291571]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712656207.291830]: -------------------\n", + "[INFO] [1712656207.292079]: SOMA.Localization \n", + "[INFO] [1712656207.292353]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712656207.292646]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.292917]: Subclasses: []\n", + "[INFO] [1712656207.293233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712656207.293737]: Instances: []\n", + "[INFO] [1712656207.294028]: Direct Instances: []\n", + "[INFO] [1712656207.296274]: Inverse Restrictions: []\n", + "[INFO] [1712656207.296561]: -------------------\n", + "[INFO] [1712656207.296840]: SOMA.MassAttribute \n", + "[INFO] [1712656207.297138]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712656207.297447]: Ancestors: {SOMA.MassAttribute, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656207.297713]: Subclasses: []\n", + "[INFO] [1712656207.298015]: Properties: [SOMA.hasMassValue, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.298539]: Instances: []\n", + "[INFO] [1712656207.298822]: Direct Instances: []\n", + "[INFO] [1712656207.299088]: Inverse Restrictions: []\n", + "[INFO] [1712656207.299332]: -------------------\n", + "[INFO] [1712656207.299579]: SOMA.NetForce \n", + "[INFO] [1712656207.299841]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712656207.300137]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.NetForce, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", + "[INFO] [1712656207.300398]: Subclasses: []\n", + "[INFO] [1712656207.300704]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.301260]: Instances: []\n", + "[INFO] [1712656207.301555]: Direct Instances: []\n", + "[INFO] [1712656207.301826]: Inverse Restrictions: []\n", + "[INFO] [1712656207.302075]: -------------------\n", + "[INFO] [1712656207.302322]: SOMA.Succedence \n", + "[INFO] [1712656207.302622]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712656207.302917]: Ancestors: {DUL.Relation, DUL.Description, DUL.Object, owl.Thing, SOMA.Succedence, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.303185]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712656207.303489]: Properties: [Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy, SOMA.hasPredecessor, SOMA.hasSuccessor, rdf-schema.comment]\n", + "[INFO] [1712656207.303994]: Instances: []\n", + "[INFO] [1712656207.304282]: Direct Instances: []\n", + "[INFO] [1712656207.304556]: Inverse Restrictions: []\n", + "[INFO] [1712656207.304805]: -------------------\n", + "[INFO] [1712656207.305059]: SOMA.Preference \n", + "[INFO] [1712656207.305333]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712656207.305634]: Ancestors: {DUL.Quality, SOMA.Preference, SOMA.SocialQuality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.305905]: Subclasses: []\n", + "[INFO] [1712656207.306211]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.306730]: Instances: []\n", + "[INFO] [1712656207.307011]: Direct Instances: []\n", + "[INFO] [1712656207.308144]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712656207.308425]: -------------------\n", + "[INFO] [1712656207.308699]: SOMA.Shape \n", + "[INFO] [1712656207.309005]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712656207.309310]: Ancestors: {SOMA.Shape, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.309578]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", + "[INFO] [1712656207.309884]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712656207.310501]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712656207.310814]: Direct Instances: []\n", + "[INFO] [1712656207.313077]: Inverse Restrictions: []\n", + "[INFO] [1712656207.313404]: -------------------\n", + "[INFO] [1712656207.313677]: SOMA.ShapeRegion \n", + "[INFO] [1712656207.313963]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712656207.314375]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.314673]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712656207.314997]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.315527]: Instances: []\n", + "[INFO] [1712656207.315810]: Direct Instances: []\n", + "[INFO] [1712656207.316543]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712656207.316835]: -------------------\n", + "[INFO] [1712656207.317097]: SOMA.SoftwareInstance \n", + "[INFO] [1712656207.317768]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712656207.318060]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", + "[INFO] [1712656207.318321]: Subclasses: []\n", + "[INFO] [1712656207.318628]: Properties: [DUL.actsFor, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isDesignedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.319141]: Instances: []\n", + "[INFO] [1712656207.319417]: Direct Instances: []\n", + "[INFO] [1712656207.320132]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712656207.320415]: -------------------\n", + "[INFO] [1712656207.320677]: SOMA.StateType \n", + "[INFO] [1712656207.320964]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712656207.321257]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656207.321531]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712656207.321839]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.322367]: Instances: []\n", + "[INFO] [1712656207.322645]: Direct Instances: []\n", + "[INFO] [1712656207.322989]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712656207.323259]: -------------------\n", + "[INFO] [1712656207.323512]: SOMA.PhysicalEffector \n", + "[INFO] [1712656207.323785]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712656207.324071]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.324333]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712656207.324646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, Inverse(DUL.hasPart)]\n", + "[INFO] [1712656207.325178]: Instances: []\n", + "[INFO] [1712656207.325456]: Direct Instances: []\n", + "[INFO] [1712656207.325718]: Inverse Restrictions: []\n", + "[INFO] [1712656207.325963]: -------------------\n", + "[INFO] [1712656207.326209]: SOMA.QueryingTask \n", + "[INFO] [1712656207.326870]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712656207.327167]: Ancestors: {owl.Thing, SOMA.QueryingTask, SOMA.IllocutionaryTask}\n", + "[INFO] [1712656207.327435]: Subclasses: []\n", + "[INFO] [1712656207.328425]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712656207.328972]: Instances: []\n", + "[INFO] [1712656207.329264]: Direct Instances: []\n", + "[INFO] [1712656207.330692]: Inverse Restrictions: []\n", + "[INFO] [1712656207.330972]: -------------------\n", + "[INFO] [1712656207.331222]: SOMA.Order \n", + "[INFO] [1712656207.331493]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712656207.331788]: Ancestors: {DUL.FormalEntity, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.Order}\n", + "[INFO] [1712656207.332052]: Subclasses: []\n", + "[INFO] [1712656207.332362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.orders]\n", + "[INFO] [1712656207.332937]: Instances: []\n", + "[INFO] [1712656207.333314]: Direct Instances: []\n", + "[INFO] [1712656207.333720]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712656207.334003]: -------------------\n", + "[INFO] [1712656207.334267]: SOMA.State \n", + "[INFO] [1712656207.334523]: Super classes: [DUL.Event]\n", + "[INFO] [1712656207.334811]: Ancestors: {DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", + "[INFO] [1712656207.335102]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712656207.335417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.335937]: Instances: []\n", + "[INFO] [1712656207.336214]: Direct Instances: []\n", + "[INFO] [1712656207.336750]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712656207.337038]: -------------------\n", + "[INFO] [1712656207.337298]: SOMA.Transient \n", + "[INFO] [1712656207.337569]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712656207.337851]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Transient, owl.Thing}\n", + "[INFO] [1712656207.338131]: Subclasses: []\n", + "[INFO] [1712656207.338445]: Properties: [rdf-schema.isDefinedBy, SOMA.transitionsFrom, rdf-schema.comment]\n", + "[INFO] [1712656207.338945]: Instances: []\n", + "[INFO] [1712656207.339217]: Direct Instances: []\n", + "[INFO] [1712656207.339483]: Inverse Restrictions: []\n", + "[INFO] [1712656207.339741]: -------------------\n", + "[INFO] [1712656207.339991]: SOMA.ColorRegion \n", + "[INFO] [1712656207.340242]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712656207.340519]: Ancestors: {DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656207.340786]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712656207.341110]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.341632]: Instances: []\n", + "[INFO] [1712656207.341909]: Direct Instances: []\n", + "[INFO] [1712656207.342242]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712656207.342496]: -------------------\n", + "[INFO] [1712656207.342752]: SOMA.ForceAttribute \n", + "[INFO] [1712656207.343115]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712656207.343394]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", + "[INFO] [1712656207.343663]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712656207.343984]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasForceValue, rdf-schema.label]\n", + "[INFO] [1712656207.344493]: Instances: []\n", + "[INFO] [1712656207.344765]: Direct Instances: []\n", + "[INFO] [1712656207.345032]: Inverse Restrictions: []\n", + "[INFO] [1712656207.345289]: -------------------\n", + "[INFO] [1712656207.345546]: SOMA.API_Specification \n", + "[INFO] [1712656207.345793]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712656207.346089]: Ancestors: {DUL.Design, SOMA.API_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.346351]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712656207.346658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.347174]: Instances: []\n", + "[INFO] [1712656207.347453]: Direct Instances: []\n", + "[INFO] [1712656207.347715]: Inverse Restrictions: []\n", + "[INFO] [1712656207.347965]: -------------------\n", + "[INFO] [1712656207.348228]: SOMA.InterfaceSpecification \n", + "[INFO] [1712656207.348483]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712656207.348737]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.349022]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712656207.349323]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.349847]: Instances: []\n", + "[INFO] [1712656207.350128]: Direct Instances: []\n", + "[INFO] [1712656207.351196]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712656207.351472]: -------------------\n", + "[INFO] [1712656207.351888]: SOMA.AbductiveReasoning \n", + "[INFO] [1712656207.352229]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712656207.353590]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.AbductiveReasoning, SOMA.Reasoning}\n", + "[INFO] [1712656207.353984]: Subclasses: []\n", + "[INFO] [1712656207.354393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.355002]: Instances: []\n", + "[INFO] [1712656207.355374]: Direct Instances: []\n", + "[INFO] [1712656207.355722]: Inverse Restrictions: []\n", + "[INFO] [1712656207.356054]: -------------------\n", + "[INFO] [1712656207.356385]: SOMA.Reasoning \n", + "[INFO] [1712656207.356714]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656207.357074]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Reasoning}\n", + "[INFO] [1712656207.357435]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712656207.357830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.358426]: Instances: []\n", + "[INFO] [1712656207.358803]: Direct Instances: []\n", + "[INFO] [1712656207.359154]: Inverse Restrictions: []\n", + "[INFO] [1712656207.359483]: -------------------\n", + "[INFO] [1712656207.359807]: SOMA.Accessor \n", + "[INFO] [1712656207.360133]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712656207.360517]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.360892]: Subclasses: []\n", + "[INFO] [1712656207.361259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.361787]: Instances: []\n", + "[INFO] [1712656207.362082]: Direct Instances: []\n", + "[INFO] [1712656207.362357]: Inverse Restrictions: []\n", + "[INFO] [1712656207.362610]: -------------------\n", + "[INFO] [1712656207.363081]: SOMA.Instrument \n", + "[INFO] [1712656207.363497]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712656207.363938]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.364394]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712656207.364878]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.365654]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656207.366128]: Direct Instances: []\n", + "[INFO] [1712656207.366722]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656207.367165]: -------------------\n", + "[INFO] [1712656207.367592]: SOMA.Accident \n", + "[INFO] [1712656207.368016]: Super classes: [DUL.Event]\n", + "[INFO] [1712656207.368405]: Ancestors: {DUL.Entity, SOMA.Accident, DUL.Event, owl.Thing}\n", + "[INFO] [1712656207.368784]: Subclasses: []\n", + "[INFO] [1712656207.369206]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.369806]: Instances: []\n", + "[INFO] [1712656207.370180]: Direct Instances: []\n", + "[INFO] [1712656207.370535]: Inverse Restrictions: []\n", + "[INFO] [1712656207.370893]: -------------------\n", + "[INFO] [1712656207.371243]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712656207.371785]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712656207.372172]: Ancestors: {DUL.Plan, SOMA.ActionExecutionPlan, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.372538]: Subclasses: []\n", + "[INFO] [1712656207.372939]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.373533]: Instances: []\n", + "[INFO] [1712656207.373889]: Direct Instances: []\n", + "[INFO] [1712656207.374236]: Inverse Restrictions: []\n", + "[INFO] [1712656207.374583]: -------------------\n", + "[INFO] [1712656207.374922]: SOMA.Actuating \n", + "[INFO] [1712656207.375270]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656207.375639]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656207.376017]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712656207.376426]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.377061]: Instances: []\n", + "[INFO] [1712656207.377445]: Direct Instances: []\n", + "[INFO] [1712656207.377822]: Inverse Restrictions: []\n", + "[INFO] [1712656207.378164]: -------------------\n", + "[INFO] [1712656207.378494]: SOMA.PhysicalTask \n", + "[INFO] [1712656207.379974]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712656207.380376]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.380760]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712656207.381177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.381987]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", + "[INFO] [1712656207.382385]: Direct Instances: []\n", + "[INFO] [1712656207.382818]: Inverse Restrictions: []\n", + "[INFO] [1712656207.383168]: -------------------\n", + "[INFO] [1712656207.383499]: SOMA.AestheticDesign \n", + "[INFO] [1712656207.383832]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712656207.384192]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.AestheticDesign, DUL.Entity}\n", + "[INFO] [1712656207.384658]: Subclasses: []\n", + "[INFO] [1712656207.385345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.386239]: Instances: []\n", + "[INFO] [1712656207.386677]: Direct Instances: []\n", + "[INFO] [1712656207.387100]: Inverse Restrictions: []\n", + "[INFO] [1712656207.387512]: -------------------\n", + "[INFO] [1712656207.387928]: SOMA.AffordsBeingSitOn \n", + "[INFO] [1712656207.389935]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", + "[INFO] [1712656207.390409]: Ancestors: {SOMA.Affordance, DUL.Relation, DUL.Description, SOMA.AffordsBeingSitOn, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.390822]: Subclasses: []\n", + "[INFO] [1712656207.391329]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", + "[INFO] [1712656207.392152]: Instances: []\n", + "[INFO] [1712656207.392572]: Direct Instances: []\n", + "[INFO] [1712656207.393037]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", + "[INFO] [1712656207.393419]: -------------------\n", + "[INFO] [1712656207.393788]: SOMA.CanBeSatOn \n", + "[INFO] [1712656207.394169]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", + "[INFO] [1712656207.394595]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.CanBeSatOn, DUL.Quality, SOMA.Deposition, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.394963]: Subclasses: []\n", + "[INFO] [1712656207.395403]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.396145]: Instances: []\n", + "[INFO] [1712656207.396546]: Direct Instances: []\n", + "[INFO] [1712656207.397509]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712656207.397888]: -------------------\n", + "[INFO] [1712656207.398268]: SOMA.SittingDestination \n", + "[INFO] [1712656207.398658]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", + "[INFO] [1712656207.399124]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.SittingDestination, DUL.SocialObject, DUL.Role, SOMA.Destination, DUL.Entity, SOMA.Location}\n", + "[INFO] [1712656207.399497]: Subclasses: []\n", + "[INFO] [1712656207.399958]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.400699]: Instances: []\n", + "[INFO] [1712656207.401087]: Direct Instances: []\n", + "[INFO] [1712656207.401505]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712656207.401865]: -------------------\n", + "[INFO] [1712656207.402216]: SOMA.CanSit \n", + "[INFO] [1712656207.402567]: Super classes: [SOMA.Capability]\n", + "[INFO] [1712656207.402983]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.CanSit, DUL.Quality, SOMA.Capability, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.403347]: Subclasses: []\n", + "[INFO] [1712656207.403788]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.404527]: Instances: []\n", + "[INFO] [1712656207.405427]: Direct Instances: []\n", + "[INFO] [1712656207.405982]: Inverse Restrictions: []\n", + "[INFO] [1712656207.406370]: -------------------\n", + "[INFO] [1712656207.406747]: SOMA.AgentRole \n", + "[INFO] [1712656207.407140]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712656207.407559]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.AgentRole}\n", + "[INFO] [1712656207.407925]: Subclasses: []\n", + "[INFO] [1712656207.408376]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.409032]: Instances: []\n", + "[INFO] [1712656207.409579]: Direct Instances: []\n", + "[INFO] [1712656207.409997]: Inverse Restrictions: []\n", + "[INFO] [1712656207.410350]: -------------------\n", + "[INFO] [1712656207.410702]: SOMA.Sitting \n", + "[INFO] [1712656207.411038]: Super classes: [SOMA.AssumingPose]\n", + "[INFO] [1712656207.411422]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Sitting, DUL.Entity, SOMA.AssumingPose}\n", + "[INFO] [1712656207.411764]: Subclasses: []\n", + "[INFO] [1712656207.412168]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.412760]: Instances: []\n", + "[INFO] [1712656207.413132]: Direct Instances: []\n", + "[INFO] [1712656207.413504]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712656207.413837]: -------------------\n", + "[INFO] [1712656207.414164]: SOMA.CausativeRole \n", + "[INFO] [1712656207.414506]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656207.414854]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.415212]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712656207.415592]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.416200]: Instances: []\n", + "[INFO] [1712656207.416555]: Direct Instances: []\n", + "[INFO] [1712656207.416913]: Inverse Restrictions: []\n", + "[INFO] [1712656207.417243]: -------------------\n", + "[INFO] [1712656207.417568]: SOMA.Agonist \n", + "[INFO] [1712656207.417890]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656207.418263]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.Agonist, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.418601]: Subclasses: []\n", + "[INFO] [1712656207.418979]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.419544]: Instances: []\n", + "[INFO] [1712656207.419889]: Direct Instances: []\n", + "[INFO] [1712656207.420286]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712656207.420618]: -------------------\n", + "[INFO] [1712656207.420981]: SOMA.Patient \n", + "[INFO] [1712656207.421290]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656207.421566]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.421894]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712656207.422213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.422788]: Instances: []\n", + "[INFO] [1712656207.423075]: Direct Instances: []\n", + "[INFO] [1712656207.423532]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656207.423792]: -------------------\n", + "[INFO] [1712656207.424039]: SOMA.Algorithm \n", + "[INFO] [1712656207.424277]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712656207.424552]: Ancestors: {DUL.Plan, SOMA.Algorithm, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.424834]: Subclasses: []\n", + "[INFO] [1712656207.425146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.425653]: Instances: []\n", + "[INFO] [1712656207.425951]: Direct Instances: []\n", + "[INFO] [1712656207.427026]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712656207.427295]: -------------------\n", + "[INFO] [1712656207.427540]: SOMA.Alteration \n", + "[INFO] [1712656207.427795]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712656207.428082]: Ancestors: {DUL.Concept, SOMA.Alteration, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656207.428353]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712656207.428668]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.429191]: Instances: []\n", + "[INFO] [1712656207.429470]: Direct Instances: []\n", + "[INFO] [1712656207.429733]: Inverse Restrictions: []\n", + "[INFO] [1712656207.429980]: -------------------\n", + "[INFO] [1712656207.430235]: SOMA.AlterativeInteraction \n", + "[INFO] [1712656207.430493]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712656207.431395]: Ancestors: {DUL.Concept, SOMA.ForceInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AlterativeInteraction, SOMA.ProcessType}\n", + "[INFO] [1712656207.431692]: Subclasses: []\n", + "[INFO] [1712656207.432027]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.432692]: Instances: []\n", + "[INFO] [1712656207.433008]: Direct Instances: []\n", + "[INFO] [1712656207.433442]: Inverse Restrictions: []\n", + "[INFO] [1712656207.433812]: -------------------\n", + "[INFO] [1712656207.434185]: SOMA.ForceInteraction \n", + "[INFO] [1712656207.434587]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712656207.435004]: Ancestors: {DUL.Concept, SOMA.ForceInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656207.435393]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712656207.435738]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.label, rdf-schema.comment]\n", + "[INFO] [1712656207.436268]: Instances: []\n", + "[INFO] [1712656207.436554]: Direct Instances: []\n", + "[INFO] [1712656207.436852]: Inverse Restrictions: []\n", + "[INFO] [1712656207.437256]: -------------------\n", + "[INFO] [1712656207.437537]: SOMA.PreservativeInteraction \n", + "[INFO] [1712656207.437790]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712656207.438081]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, SOMA.PreservativeInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656207.438339]: Subclasses: []\n", + "[INFO] [1712656207.438649]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.439156]: Instances: []\n", + "[INFO] [1712656207.439423]: Direct Instances: []\n", + "[INFO] [1712656207.439715]: Inverse Restrictions: []\n", + "[INFO] [1712656207.439951]: -------------------\n", + "[INFO] [1712656207.440184]: SOMA.AlteredObject \n", + "[INFO] [1712656207.440433]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656207.440709]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.440982]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712656207.441275]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.441773]: Instances: []\n", + "[INFO] [1712656207.442044]: Direct Instances: []\n", + "[INFO] [1712656207.442769]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712656207.443039]: -------------------\n", + "[INFO] [1712656207.443284]: SOMA.Amateurish \n", + "[INFO] [1712656207.443519]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712656207.443818]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656207.444078]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712656207.444390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.444893]: Instances: []\n", + "[INFO] [1712656207.445153]: Direct Instances: []\n", + "[INFO] [1712656207.445411]: Inverse Restrictions: []\n", + "[INFO] [1712656207.445648]: -------------------\n", + "[INFO] [1712656207.445888]: SOMA.AnsweringTask \n", + "[INFO] [1712656207.446122]: Super classes: [owl.Thing]\n", + "[INFO] [1712656207.448709]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", + "[INFO] [1712656207.449044]: Subclasses: []\n", + "[INFO] [1712656207.449384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712656207.449908]: Instances: []\n", + "[INFO] [1712656207.450190]: Direct Instances: []\n", + "[INFO] [1712656207.450509]: Inverse Restrictions: []\n", + "[INFO] [1712656207.450763]: -------------------\n", + "[INFO] [1712656207.451005]: SOMA.CommandingTask \n", + "[INFO] [1712656207.451662]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712656207.451990]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask, SOMA.CommandingTask}\n", + "[INFO] [1712656207.452262]: Subclasses: []\n", + "[INFO] [1712656207.452572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.453073]: Instances: []\n", + "[INFO] [1712656207.453355]: Direct Instances: []\n", + "[INFO] [1712656207.453708]: Inverse Restrictions: []\n", + "[INFO] [1712656207.453954]: -------------------\n", + "[INFO] [1712656207.454192]: SOMA.IllocutionaryTask \n", + "[INFO] [1712656207.455592]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712656207.455882]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712656207.456163]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712656207.456510]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.457039]: Instances: []\n", + "[INFO] [1712656207.457330]: Direct Instances: []\n", + "[INFO] [1712656207.457641]: Inverse Restrictions: []\n", + "[INFO] [1712656207.457890]: -------------------\n", + "[INFO] [1712656207.458131]: SOMA.Antagonist \n", + "[INFO] [1712656207.458369]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656207.458646]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Antagonist}\n", + "[INFO] [1712656207.458913]: Subclasses: []\n", + "[INFO] [1712656207.459213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.459707]: Instances: []\n", + "[INFO] [1712656207.459969]: Direct Instances: []\n", + "[INFO] [1712656207.460270]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712656207.460523]: -------------------\n", + "[INFO] [1712656207.460765]: SOMA.Appliance \n", + "[INFO] [1712656207.461021]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712656207.461298]: Ancestors: {SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.461562]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712656207.461869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.462375]: Instances: []\n", + "[INFO] [1712656207.462643]: Direct Instances: []\n", + "[INFO] [1712656207.462903]: Inverse Restrictions: []\n", + "[INFO] [1712656207.463140]: -------------------\n", + "[INFO] [1712656207.463417]: SOMA.Approaching \n", + "[INFO] [1712656207.463690]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656207.464030]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Approaching, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656207.464288]: Subclasses: []\n", + "[INFO] [1712656207.464621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.465134]: Instances: []\n", + "[INFO] [1712656207.465398]: Direct Instances: []\n", + "[INFO] [1712656207.465673]: Inverse Restrictions: []\n", + "[INFO] [1712656207.465924]: -------------------\n", + "[INFO] [1712656207.466171]: SOMA.Locomotion \n", + "[INFO] [1712656207.466412]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712656207.466662]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656207.466928]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712656207.467232]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.467753]: Instances: []\n", + "[INFO] [1712656207.468026]: Direct Instances: []\n", + "[INFO] [1712656207.468293]: Inverse Restrictions: []\n", + "[INFO] [1712656207.468540]: -------------------\n", + "[INFO] [1712656207.468791]: SOMA.ArchiveFile \n", + "[INFO] [1712656207.469040]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712656207.470296]: Ancestors: {DUL.InformationEntity, owl.Thing, SOMA.ArchiveFile, DUL.Entity, SOMA.Digital_File, DUL.InformationRealization}\n", + "[INFO] [1712656207.470587]: Subclasses: []\n", + "[INFO] [1712656207.470906]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.realizes]\n", + "[INFO] [1712656207.471400]: Instances: []\n", + "[INFO] [1712656207.471662]: Direct Instances: []\n", + "[INFO] [1712656207.471926]: Inverse Restrictions: []\n", + "[INFO] [1712656207.472169]: -------------------\n", + "[INFO] [1712656207.472407]: SOMA.ArchiveText \n", + "[INFO] [1712656207.472637]: Super classes: [owl.Thing]\n", + "[INFO] [1712656207.474412]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", + "[INFO] [1712656207.474709]: Subclasses: []\n", + "[INFO] [1712656207.475028]: Properties: [rdf-schema.isDefinedBy, DUL.expresses, rdf-schema.label, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656207.475530]: Instances: []\n", + "[INFO] [1712656207.475810]: Direct Instances: []\n", + "[INFO] [1712656207.476247]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712656207.476523]: -------------------\n", + "[INFO] [1712656207.476780]: SOMA.Digital_File \n", + "[INFO] [1712656207.477083]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712656207.477360]: Ancestors: {DUL.InformationEntity, owl.Thing, DUL.Entity, SOMA.Digital_File, DUL.InformationRealization}\n", + "[INFO] [1712656207.477643]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712656207.477989]: Properties: [SOMA.hasNameString, rdf-schema.isDefinedBy, rdf-schema.label, DUL.realizes, rdf-schema.comment]\n", + "[INFO] [1712656207.478502]: Instances: []\n", + "[INFO] [1712656207.478771]: Direct Instances: []\n", + "[INFO] [1712656207.481393]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712656207.481718]: -------------------\n", + "[INFO] [1712656207.481993]: SOMA.ArchiveFormat \n", + "[INFO] [1712656207.482248]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712656207.482570]: Ancestors: {SOMA.ArchiveFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656207.482843]: Subclasses: []\n", + "[INFO] [1712656207.483162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.483683]: Instances: []\n", + "[INFO] [1712656207.483972]: Direct Instances: []\n", + "[INFO] [1712656207.484288]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712656207.484553]: -------------------\n", + "[INFO] [1712656207.484815]: SOMA.File_format \n", + "[INFO] [1712656207.485067]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656207.485325]: Ancestors: {SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656207.485591]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712656207.485903]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.486435]: Instances: []\n", + "[INFO] [1712656207.486724]: Direct Instances: []\n", + "[INFO] [1712656207.486992]: Inverse Restrictions: []\n", + "[INFO] [1712656207.487233]: -------------------\n", + "[INFO] [1712656207.487482]: SOMA.FileConfiguration \n", + "[INFO] [1712656207.487725]: Super classes: [owl.Thing]\n", + "[INFO] [1712656207.488212]: Ancestors: {owl.Thing, SOMA.FileConfiguration}\n", + "[INFO] [1712656207.488479]: Subclasses: []\n", + "[INFO] [1712656207.488793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.489303]: Instances: []\n", + "[INFO] [1712656207.489578]: Direct Instances: []\n", + "[INFO] [1712656207.489893]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712656207.490147]: -------------------\n", + "[INFO] [1712656207.490393]: SOMA.Structured_Text \n", + "[INFO] [1712656207.490631]: Super classes: [owl.Thing]\n", + "[INFO] [1712656207.491854]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", + "[INFO] [1712656207.492162]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712656207.492474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656207.492976]: Instances: []\n", + "[INFO] [1712656207.493246]: Direct Instances: []\n", + "[INFO] [1712656207.495894]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712656207.496179]: -------------------\n", + "[INFO] [1712656207.496432]: SOMA.AreaSurveying \n", + "[INFO] [1712656207.496693]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712656207.497235]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", + "[INFO] [1712656207.497584]: Subclasses: []\n", + "[INFO] [1712656207.497916]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.498435]: Instances: []\n", + "[INFO] [1712656207.498721]: Direct Instances: []\n", + "[INFO] [1712656207.498986]: Inverse Restrictions: []\n", + "[INFO] [1712656207.499237]: -------------------\n", + "[INFO] [1712656207.499479]: SOMA.Perceiving \n", + "[INFO] [1712656207.499723]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712656207.499964]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712656207.500220]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712656207.500512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.501035]: Instances: []\n", + "[INFO] [1712656207.501320]: Direct Instances: []\n", + "[INFO] [1712656207.501586]: Inverse Restrictions: []\n", + "[INFO] [1712656207.501823]: -------------------\n", + "[INFO] [1712656207.502055]: SOMA.Arm \n", + "[INFO] [1712656207.502293]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712656207.503184]: Ancestors: {SOMA.Arm, DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.503454]: Subclasses: []\n", + "[INFO] [1712656207.503753]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.504257]: Instances: []\n", + "[INFO] [1712656207.504522]: Direct Instances: []\n", + "[INFO] [1712656207.504820]: Inverse Restrictions: []\n", + "[INFO] [1712656207.505067]: -------------------\n", + "[INFO] [1712656207.505302]: SOMA.Limb \n", + "[INFO] [1712656207.505547]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712656207.505797]: Ancestors: {DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.506056]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712656207.506355]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.506873]: Instances: []\n", + "[INFO] [1712656207.507142]: Direct Instances: []\n", + "[INFO] [1712656207.507822]: Inverse Restrictions: []\n", + "[INFO] [1712656207.508095]: -------------------\n", + "[INFO] [1712656207.508343]: SOMA.Armchair \n", + "[INFO] [1712656207.508577]: Super classes: [SOMA.DesignedChair]\n", + "[INFO] [1712656207.508866]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Armchair, DUL.PhysicalObject, SOMA.DesignedChair, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656207.509125]: Subclasses: []\n", + "[INFO] [1712656207.509422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.509908]: Instances: []\n", + "[INFO] [1712656207.510161]: Direct Instances: []\n", + "[INFO] [1712656207.510396]: Inverse Restrictions: []\n", + "[INFO] [1712656207.510635]: -------------------\n", + "[INFO] [1712656207.510873]: SOMA.DesignedChair \n", + "[INFO] [1712656207.511109]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712656207.511354]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.DesignedChair, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656207.511603]: Subclasses: [SOMA.Armchair]\n", + "[INFO] [1712656207.511907]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712656207.512405]: Instances: []\n", + "[INFO] [1712656207.512661]: Direct Instances: []\n", + "[INFO] [1712656207.512920]: Inverse Restrictions: []\n", + "[INFO] [1712656207.513154]: -------------------\n", + "[INFO] [1712656207.513395]: SOMA.Arranging \n", + "[INFO] [1712656207.513652]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712656207.513938]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Arranging, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.514175]: Subclasses: []\n", + "[INFO] [1712656207.514477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.514971]: Instances: []\n", + "[INFO] [1712656207.515226]: Direct Instances: []\n", + "[INFO] [1712656207.515491]: Inverse Restrictions: []\n", + "[INFO] [1712656207.515726]: -------------------\n", + "[INFO] [1712656207.515957]: SOMA.Constructing \n", + "[INFO] [1712656207.516188]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656207.516428]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.516698]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712656207.517009]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.517510]: Instances: []\n", + "[INFO] [1712656207.517789]: Direct Instances: []\n", + "[INFO] [1712656207.518054]: Inverse Restrictions: []\n", + "[INFO] [1712656207.518291]: -------------------\n", + "[INFO] [1712656207.518523]: SOMA.ArtificialAgent \n", + "[INFO] [1712656207.518754]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712656207.519048]: Ancestors: {DUL.PhysicalAgent, DUL.Agent, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.ArtificialAgent}\n", + "[INFO] [1712656207.519294]: Subclasses: []\n", + "[INFO] [1712656207.519579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.520060]: Instances: []\n", + "[INFO] [1712656207.520335]: Direct Instances: []\n", + "[INFO] [1712656207.520589]: Inverse Restrictions: []\n", + "[INFO] [1712656207.520863]: -------------------\n", + "[INFO] [1712656207.521250]: SOMA.Assembling \n", + "[INFO] [1712656207.521545]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712656207.521849]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Assembling}\n", + "[INFO] [1712656207.522112]: Subclasses: []\n", + "[INFO] [1712656207.522414]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.522903]: Instances: []\n", + "[INFO] [1712656207.523197]: Direct Instances: []\n", + "[INFO] [1712656207.523468]: Inverse Restrictions: []\n", + "[INFO] [1712656207.523710]: -------------------\n", + "[INFO] [1712656207.523948]: SOMA.AssertionTask \n", + "[INFO] [1712656207.524585]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712656207.524892]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask, SOMA.AssertionTask}\n", + "[INFO] [1712656207.525158]: Subclasses: []\n", + "[INFO] [1712656207.525462]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.525953]: Instances: []\n", + "[INFO] [1712656207.526242]: Direct Instances: []\n", + "[INFO] [1712656207.526508]: Inverse Restrictions: []\n", + "[INFO] [1712656207.526749]: -------------------\n", + "[INFO] [1712656207.526985]: SOMA.DeclarativeClause \n", + "[INFO] [1712656207.527216]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712656207.527518]: Ancestors: {SOMA.DeclarativeClause, DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656207.527786]: Subclasses: []\n", + "[INFO] [1712656207.528110]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.528610]: Instances: []\n", + "[INFO] [1712656207.529096]: Direct Instances: []\n", + "[INFO] [1712656207.529508]: Inverse Restrictions: []\n", + "[INFO] [1712656207.529849]: -------------------\n", + "[INFO] [1712656207.530170]: SOMA.AssumingArmPose \n", + "[INFO] [1712656207.530448]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712656207.530744]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose, SOMA.AssumingArmPose}\n", + "[INFO] [1712656207.531090]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712656207.531438]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.531974]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712656207.532264]: Direct Instances: []\n", + "[INFO] [1712656207.532545]: Inverse Restrictions: []\n", + "[INFO] [1712656207.532825]: -------------------\n", + "[INFO] [1712656207.533085]: SOMA.AssumingPose \n", + "[INFO] [1712656207.533343]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656207.533614]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose}\n", + "[INFO] [1712656207.533905]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712656207.534218]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.534740]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712656207.535052]: Direct Instances: []\n", + "[INFO] [1712656207.535330]: Inverse Restrictions: []\n", + "[INFO] [1712656207.535573]: -------------------\n", + "[INFO] [1712656207.535813]: SOMA.AttentionShift \n", + "[INFO] [1712656207.536048]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712656207.536331]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.AttentionShift, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656207.536608]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712656207.536919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.537415]: Instances: []\n", + "[INFO] [1712656207.537699]: Direct Instances: []\n", + "[INFO] [1712656207.537969]: Inverse Restrictions: []\n", + "[INFO] [1712656207.538213]: -------------------\n", + "[INFO] [1712656207.538452]: SOMA.MentalTask \n", + "[INFO] [1712656207.538719]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712656207.538973]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656207.539363]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712656207.539723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.540436]: Instances: []\n", + "[INFO] [1712656207.540858]: Direct Instances: []\n", + "[INFO] [1712656207.541209]: Inverse Restrictions: []\n", + "[INFO] [1712656207.541472]: -------------------\n", + "[INFO] [1712656207.541724]: SOMA.AvoidedObject \n", + "[INFO] [1712656207.541969]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656207.542251]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.AvoidedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.542530]: Subclasses: []\n", + "[INFO] [1712656207.542839]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.543342]: Instances: []\n", + "[INFO] [1712656207.543631]: Direct Instances: []\n", + "[INFO] [1712656207.543906]: Inverse Restrictions: []\n", + "[INFO] [1712656207.544151]: -------------------\n", + "[INFO] [1712656207.544390]: SOMA.Avoiding \n", + "[INFO] [1712656207.544626]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712656207.544923]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Avoiding, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.545188]: Subclasses: []\n", + "[INFO] [1712656207.545489]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.545975]: Instances: []\n", + "[INFO] [1712656207.546257]: Direct Instances: []\n", + "[INFO] [1712656207.546515]: Inverse Restrictions: []\n", + "[INFO] [1712656207.546802]: -------------------\n", + "[INFO] [1712656207.547077]: SOMA.Navigating \n", + "[INFO] [1712656207.547329]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656207.547597]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.547870]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712656207.548165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.548680]: Instances: [SOMA.navigating]\n", + "[INFO] [1712656207.549120]: Direct Instances: [SOMA.navigating]\n", + "[INFO] [1712656207.549481]: Inverse Restrictions: []\n", + "[INFO] [1712656207.549783]: -------------------\n", + "[INFO] [1712656207.550057]: SOMA.BakedGood \n", + "[INFO] [1712656207.550319]: Super classes: [SOMA.Dish]\n", + "[INFO] [1712656207.550612]: Ancestors: {SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.BakedGood}\n", + "[INFO] [1712656207.550883]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", + "[INFO] [1712656207.551187]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.551708]: Instances: []\n", + "[INFO] [1712656207.551981]: Direct Instances: []\n", + "[INFO] [1712656207.552241]: Inverse Restrictions: []\n", + "[INFO] [1712656207.552494]: -------------------\n", + "[INFO] [1712656207.552743]: SOMA.Dish \n", + "[INFO] [1712656207.552996]: Super classes: [DUL.DesignedArtifact]\n", + "[INFO] [1712656207.553264]: Ancestors: {SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.553521]: Subclasses: [SOMA.BakedGood]\n", + "[INFO] [1712656207.553808]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.554305]: Instances: []\n", + "[INFO] [1712656207.554585]: Direct Instances: []\n", + "[INFO] [1712656207.554845]: Inverse Restrictions: []\n", + "[INFO] [1712656207.555090]: -------------------\n", + "[INFO] [1712656207.555329]: SOMA.Barrier \n", + "[INFO] [1712656207.555567]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712656207.555848]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656207.556126]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712656207.556428]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.556935]: Instances: []\n", + "[INFO] [1712656207.557200]: Direct Instances: []\n", + "[INFO] [1712656207.557510]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712656207.557773]: -------------------\n", + "[INFO] [1712656207.558016]: SOMA.Restrictor \n", + "[INFO] [1712656207.558257]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712656207.558519]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656207.558782]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712656207.559079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.559603]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656207.559878]: Direct Instances: []\n", + "[INFO] [1712656207.560251]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712656207.560517]: -------------------\n", + "[INFO] [1712656207.560773]: SOMA.BedsideTable \n", + "[INFO] [1712656207.561037]: Super classes: [SOMA.Table]\n", + "[INFO] [1712656207.561337]: Ancestors: {DUL.DesignedArtifact, SOMA.BedsideTable, DUL.PhysicalArtifact, SOMA.Table, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656207.561585]: Subclasses: []\n", + "[INFO] [1712656207.561884]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.562377]: Instances: []\n", + "[INFO] [1712656207.562644]: Direct Instances: []\n", + "[INFO] [1712656207.562893]: Inverse Restrictions: []\n", + "[INFO] [1712656207.563129]: -------------------\n", + "[INFO] [1712656207.563376]: SOMA.Table \n", + "[INFO] [1712656207.563638]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712656207.563899]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Table, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656207.564162]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", + "[INFO] [1712656207.564459]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.564985]: Instances: []\n", + "[INFO] [1712656207.565268]: Direct Instances: []\n", + "[INFO] [1712656207.565532]: Inverse Restrictions: []\n", + "[INFO] [1712656207.565783]: -------------------\n", + "[INFO] [1712656207.566042]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712656207.566316]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712656207.566577]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656207.566835]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712656207.567150]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712656207.567683]: Instances: []\n", + "[INFO] [1712656207.567957]: Direct Instances: []\n", + "[INFO] [1712656207.568216]: Inverse Restrictions: []\n", + "[INFO] [1712656207.568455]: -------------------\n", + "[INFO] [1712656207.568691]: SOMA.BeneficiaryRole \n", + "[INFO] [1712656207.568943]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712656207.569234]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.569500]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712656207.569798]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.570310]: Instances: []\n", + "[INFO] [1712656207.570585]: Direct Instances: []\n", + "[INFO] [1712656207.570841]: Inverse Restrictions: []\n", + "[INFO] [1712656207.571084]: -------------------\n", + "[INFO] [1712656207.571319]: SOMA.GoalRole \n", + "[INFO] [1712656207.571570]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656207.571821]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.572075]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712656207.572371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.572885]: Instances: []\n", + "[INFO] [1712656207.573249]: Direct Instances: []\n", + "[INFO] [1712656207.573543]: Inverse Restrictions: []\n", + "[INFO] [1712656207.573803]: -------------------\n", + "[INFO] [1712656207.574069]: SOMA.CounterfactualBinding \n", + "[INFO] [1712656207.574319]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712656207.574602]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.CounterfactualBinding}\n", + "[INFO] [1712656207.574853]: Subclasses: []\n", + "[INFO] [1712656207.575156]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.575662]: Instances: []\n", + "[INFO] [1712656207.575937]: Direct Instances: []\n", + "[INFO] [1712656207.576268]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712656207.576518]: -------------------\n", + "[INFO] [1712656207.576759]: SOMA.FactualBinding \n", + "[INFO] [1712656207.577017]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712656207.577289]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.FactualBinding, DUL.Entity}\n", + "[INFO] [1712656207.577538]: Subclasses: []\n", + "[INFO] [1712656207.577849]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.578358]: Instances: []\n", + "[INFO] [1712656207.578643]: Direct Instances: []\n", + "[INFO] [1712656207.578990]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712656207.579243]: -------------------\n", + "[INFO] [1712656207.579485]: SOMA.RoleFillerBinding \n", + "[INFO] [1712656207.579736]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712656207.580013]: Ancestors: {DUL.Relation, DUL.Description, SOMA.RoleFillerBinding, SOMA.Binding, DUL.Object, DUL.SocialObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.580269]: Subclasses: []\n", + "[INFO] [1712656207.580576]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.581099]: Instances: []\n", + "[INFO] [1712656207.581381]: Direct Instances: []\n", + "[INFO] [1712656207.581688]: Inverse Restrictions: []\n", + "[INFO] [1712656207.581947]: -------------------\n", + "[INFO] [1712656207.582214]: SOMA.RoleRoleBinding \n", + "[INFO] [1712656207.582882]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712656207.583198]: Ancestors: {DUL.Relation, SOMA.RoleRoleBinding, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.583479]: Subclasses: []\n", + "[INFO] [1712656207.583796]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.584699]: Instances: []\n", + "[INFO] [1712656207.585243]: Direct Instances: []\n", + "[INFO] [1712656207.585629]: Inverse Restrictions: []\n", + "[INFO] [1712656207.585930]: -------------------\n", + "[INFO] [1712656207.586220]: SOMA.Blade \n", + "[INFO] [1712656207.586485]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656207.586862]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Blade, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.587147]: Subclasses: []\n", + "[INFO] [1712656207.587457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.587990]: Instances: []\n", + "[INFO] [1712656207.588273]: Direct Instances: []\n", + "[INFO] [1712656207.588565]: Inverse Restrictions: [SOMA.Knife]\n", + "[INFO] [1712656207.588816]: -------------------\n", + "[INFO] [1712656207.589058]: SOMA.DesignedComponent \n", + "[INFO] [1712656207.589325]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712656207.589601]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.589876]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712656207.590174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712656207.590702]: Instances: []\n", + "[INFO] [1712656207.590982]: Direct Instances: []\n", + "[INFO] [1712656207.591253]: Inverse Restrictions: []\n", + "[INFO] [1712656207.591501]: -------------------\n", + "[INFO] [1712656207.591742]: SOMA.Blockage \n", + "[INFO] [1712656207.592009]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712656207.592295]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.592563]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712656207.592870]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.593383]: Instances: []\n", + "[INFO] [1712656207.593684]: Direct Instances: []\n", + "[INFO] [1712656207.593952]: Inverse Restrictions: []\n", + "[INFO] [1712656207.594195]: -------------------\n", + "[INFO] [1712656207.594431]: SOMA.BlockedObject \n", + "[INFO] [1712656207.594661]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656207.594926]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", + "[INFO] [1712656207.595200]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712656207.595501]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.596000]: Instances: []\n", + "[INFO] [1712656207.596261]: Direct Instances: []\n", + "[INFO] [1712656207.596554]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712656207.596817]: -------------------\n", + "[INFO] [1712656207.597071]: SOMA.BodyMovement \n", + "[INFO] [1712656207.598100]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712656207.598387]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656207.598664]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712656207.598964]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.599479]: Instances: []\n", + "[INFO] [1712656207.599756]: Direct Instances: []\n", + "[INFO] [1712656207.600016]: Inverse Restrictions: []\n", + "[INFO] [1712656207.600256]: -------------------\n", + "[INFO] [1712656207.600492]: SOMA.Motion \n", + "[INFO] [1712656207.600728]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712656207.601049]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656207.601329]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712656207.601627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.602182]: Instances: []\n", + "[INFO] [1712656207.602450]: Direct Instances: []\n", + "[INFO] [1712656207.602708]: Inverse Restrictions: []\n", + "[INFO] [1712656207.602947]: -------------------\n", + "[INFO] [1712656207.603185]: SOMA.Boiling \n", + "[INFO] [1712656207.603429]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712656207.603709]: Ancestors: {SOMA.Boiling, DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Vaporizing, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656207.603950]: Subclasses: []\n", + "[INFO] [1712656207.604226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.604721]: Instances: []\n", + "[INFO] [1712656207.604990]: Direct Instances: []\n", + "[INFO] [1712656207.605238]: Inverse Restrictions: []\n", + "[INFO] [1712656207.605472]: -------------------\n", + "[INFO] [1712656207.605695]: SOMA.Vaporizing \n", + "[INFO] [1712656207.606337]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712656207.606808]: Ancestors: {DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Vaporizing, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656207.607176]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712656207.607488]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.seeAlso]\n", + "[INFO] [1712656207.607988]: Instances: []\n", + "[INFO] [1712656207.608280]: Direct Instances: []\n", + "[INFO] [1712656207.608550]: Inverse Restrictions: []\n", + "[INFO] [1712656207.608799]: -------------------\n", + "[INFO] [1712656207.609123]: SOMA.Bottle \n", + "[INFO] [1712656207.609379]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712656207.609841]: Ancestors: {SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.610245]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", + "[INFO] [1712656207.610664]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.611275]: Instances: []\n", + "[INFO] [1712656207.611648]: Direct Instances: []\n", + "[INFO] [1712656207.612000]: Inverse Restrictions: []\n", + "[INFO] [1712656207.612354]: -------------------\n", + "[INFO] [1712656207.612699]: SOMA.DesignedContainer \n", + "[INFO] [1712656207.613057]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712656207.613346]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.613653]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712656207.613974]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712656207.614594]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712656207.614892]: Direct Instances: []\n", + "[INFO] [1712656207.615171]: Inverse Restrictions: []\n", + "[INFO] [1712656207.615421]: -------------------\n", + "[INFO] [1712656207.615664]: SOMA.Bowl \n", + "[INFO] [1712656207.615903]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712656207.616198]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Bowl, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656207.616477]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", + "[INFO] [1712656207.616782]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.617293]: Instances: []\n", + "[INFO] [1712656207.617566]: Direct Instances: []\n", + "[INFO] [1712656207.617860]: Inverse Restrictions: [SOMA.Spoon]\n", + "[INFO] [1712656207.618126]: -------------------\n", + "[INFO] [1712656207.618385]: SOMA.Crockery \n", + "[INFO] [1712656207.619272]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712656207.619569]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656207.619849]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", + "[INFO] [1712656207.620157]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712656207.620677]: Instances: []\n", + "[INFO] [1712656207.620954]: Direct Instances: []\n", + "[INFO] [1712656207.621221]: Inverse Restrictions: []\n", + "[INFO] [1712656207.621469]: -------------------\n", + "[INFO] [1712656207.621711]: SOMA.Box \n", + "[INFO] [1712656207.621966]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", + "[INFO] [1712656207.622238]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Box, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.622519]: Subclasses: [SOMA.CerealBox]\n", + "[INFO] [1712656207.622823]: Properties: [SOMA.hasShapeRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.623317]: Instances: []\n", + "[INFO] [1712656207.623584]: Direct Instances: []\n", + "[INFO] [1712656207.623837]: Inverse Restrictions: []\n", + "[INFO] [1712656207.624077]: -------------------\n", + "[INFO] [1712656207.624330]: SOMA.BoxShape \n", + "[INFO] [1712656207.624620]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712656207.624907]: Ancestors: {SOMA.ShapeRegion, DUL.Region, SOMA.BoxShape, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.625165]: Subclasses: []\n", + "[INFO] [1712656207.625457]: Properties: [SOMA.hasWidth, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasHeight, rdf-schema.comment, SOMA.hasLength]\n", + "[INFO] [1712656207.625992]: Instances: []\n", + "[INFO] [1712656207.626280]: Direct Instances: []\n", + "[INFO] [1712656207.626560]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712656207.626808]: -------------------\n", + "[INFO] [1712656207.627048]: SOMA.Bread \n", + "[INFO] [1712656207.627295]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712656207.627569]: Ancestors: {SOMA.Dish, DUL.DesignedArtifact, SOMA.Bread, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.BakedGood}\n", + "[INFO] [1712656207.627817]: Subclasses: []\n", + "[INFO] [1712656207.628110]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.628604]: Instances: []\n", + "[INFO] [1712656207.628882]: Direct Instances: []\n", + "[INFO] [1712656207.629149]: Inverse Restrictions: []\n", + "[INFO] [1712656207.629402]: -------------------\n", + "[INFO] [1712656207.629640]: SOMA.BreadKnife \n", + "[INFO] [1712656207.629878]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712656207.630172]: Ancestors: {SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.BreadKnife, SOMA.DesignedTool}\n", + "[INFO] [1712656207.630440]: Subclasses: []\n", + "[INFO] [1712656207.630734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.631221]: Instances: []\n", + "[INFO] [1712656207.631507]: Direct Instances: []\n", + "[INFO] [1712656207.631770]: Inverse Restrictions: []\n", + "[INFO] [1712656207.632013]: -------------------\n", + "[INFO] [1712656207.632249]: SOMA.KitchenKnife \n", + "[INFO] [1712656207.632486]: Super classes: [SOMA.Knife]\n", + "[INFO] [1712656207.632738]: Ancestors: {SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656207.633007]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", + "[INFO] [1712656207.633309]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.633809]: Instances: []\n", + "[INFO] [1712656207.634115]: Direct Instances: []\n", + "[INFO] [1712656207.634385]: Inverse Restrictions: []\n", + "[INFO] [1712656207.634629]: -------------------\n", + "[INFO] [1712656207.634876]: SOMA.BreakfastPlate \n", + "[INFO] [1712656207.635111]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712656207.635391]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.BreakfastPlate, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656207.635658]: Subclasses: []\n", + "[INFO] [1712656207.635957]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.636448]: Instances: []\n", + "[INFO] [1712656207.636727]: Direct Instances: []\n", + "[INFO] [1712656207.636998]: Inverse Restrictions: []\n", + "[INFO] [1712656207.637241]: -------------------\n", + "[INFO] [1712656207.637483]: SOMA.Plate \n", + "[INFO] [1712656207.637719]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712656207.637965]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656207.638229]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", + "[INFO] [1712656207.638525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.639031]: Instances: []\n", + "[INFO] [1712656207.639373]: Direct Instances: []\n", + "[INFO] [1712656207.639650]: Inverse Restrictions: []\n", + "[INFO] [1712656207.639898]: -------------------\n", + "[INFO] [1712656207.640148]: SOMA.Building \n", + "[INFO] [1712656207.640384]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712656207.640660]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Building, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.640916]: Subclasses: []\n", + "[INFO] [1712656207.641203]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.641679]: Instances: []\n", + "[INFO] [1712656207.641949]: Direct Instances: []\n", + "[INFO] [1712656207.642202]: Inverse Restrictions: []\n", + "[INFO] [1712656207.642438]: -------------------\n", + "[INFO] [1712656207.642674]: SOMA.Deposition \n", + "[INFO] [1712656207.642953]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712656207.643209]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Deposition, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.643457]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712656207.643745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.644248]: Instances: []\n", + "[INFO] [1712656207.644512]: Direct Instances: []\n", + "[INFO] [1712656207.645213]: Inverse Restrictions: []\n", + "[INFO] [1712656207.645469]: -------------------\n", + "[INFO] [1712656207.645721]: SOMA.CanCut \n", + "[INFO] [1712656207.645998]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712656207.646281]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.646530]: Subclasses: []\n", + "[INFO] [1712656207.646823]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.647328]: Instances: []\n", + "[INFO] [1712656207.647594]: Direct Instances: []\n", + "[INFO] [1712656207.647850]: Inverse Restrictions: []\n", + "[INFO] [1712656207.648089]: -------------------\n", + "[INFO] [1712656207.648326]: SOMA.Variability \n", + "[INFO] [1712656207.648598]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712656207.648862]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.649132]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712656207.649427]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.649943]: Instances: []\n", + "[INFO] [1712656207.650214]: Direct Instances: []\n", + "[INFO] [1712656207.650474]: Inverse Restrictions: []\n", + "[INFO] [1712656207.650711]: -------------------\n", + "[INFO] [1712656207.650950]: SOMA.Cutter \n", + "[INFO] [1712656207.651183]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712656207.651473]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Cutter, DUL.Entity, SOMA.Tool}\n", + "[INFO] [1712656207.651725]: Subclasses: []\n", + "[INFO] [1712656207.652012]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.652518]: Instances: []\n", + "[INFO] [1712656207.652818]: Direct Instances: []\n", + "[INFO] [1712656207.653242]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712656207.653531]: -------------------\n", + "[INFO] [1712656207.653795]: SOMA.CutObject \n", + "[INFO] [1712656207.654047]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712656207.654328]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.CutObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.654581]: Subclasses: []\n", + "[INFO] [1712656207.654881]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.655392]: Instances: []\n", + "[INFO] [1712656207.655668]: Direct Instances: []\n", + "[INFO] [1712656207.656006]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712656207.656263]: -------------------\n", + "[INFO] [1712656207.656509]: SOMA.Capability \n", + "[INFO] [1712656207.658237]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712656207.658541]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.658813]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712656207.659122]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.659634]: Instances: []\n", + "[INFO] [1712656207.659914]: Direct Instances: []\n", + "[INFO] [1712656207.660173]: Inverse Restrictions: []\n", + "[INFO] [1712656207.660421]: -------------------\n", + "[INFO] [1712656207.660662]: SOMA.Capacity \n", + "[INFO] [1712656207.660925]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656207.661199]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Capacity, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.661447]: Subclasses: []\n", + "[INFO] [1712656207.661737]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.662247]: Instances: []\n", + "[INFO] [1712656207.662518]: Direct Instances: []\n", + "[INFO] [1712656207.663193]: Inverse Restrictions: []\n", + "[INFO] [1712656207.663481]: -------------------\n", + "[INFO] [1712656207.663744]: SOMA.Intrinsic \n", + "[INFO] [1712656207.663995]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712656207.664243]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.664506]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712656207.664795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.665365]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712656207.665653]: Direct Instances: []\n", + "[INFO] [1712656207.665919]: Inverse Restrictions: []\n", + "[INFO] [1712656207.666165]: -------------------\n", + "[INFO] [1712656207.666412]: SOMA.Carafe \n", + "[INFO] [1712656207.666666]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712656207.666940]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Carafe, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.667195]: Subclasses: [SOMA.CoffeeCarafe]\n", + "[INFO] [1712656207.667486]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.667971]: Instances: []\n", + "[INFO] [1712656207.668248]: Direct Instances: []\n", + "[INFO] [1712656207.668509]: Inverse Restrictions: []\n", + "[INFO] [1712656207.668752]: -------------------\n", + "[INFO] [1712656207.668999]: SOMA.Catching \n", + "[INFO] [1712656207.669238]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656207.669512]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Catching, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656207.669766]: Subclasses: []\n", + "[INFO] [1712656207.670068]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.670571]: Instances: []\n", + "[INFO] [1712656207.670844]: Direct Instances: []\n", + "[INFO] [1712656207.671093]: Inverse Restrictions: []\n", + "[INFO] [1712656207.671332]: -------------------\n", + "[INFO] [1712656207.671578]: SOMA.PickingUp \n", + "[INFO] [1712656207.671821]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656207.672092]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PickingUp}\n", + "[INFO] [1712656207.672353]: Subclasses: []\n", + "[INFO] [1712656207.672647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.673143]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712656207.673409]: Direct Instances: [SOMA.picking_up]\n", + "[INFO] [1712656207.673658]: Inverse Restrictions: []\n", + "[INFO] [1712656207.673903]: -------------------\n", + "[INFO] [1712656207.674142]: SOMA.CausalEventRole \n", + "[INFO] [1712656207.674375]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712656207.674633]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.CausalEventRole, DUL.Entity}\n", + "[INFO] [1712656207.674889]: Subclasses: []\n", + "[INFO] [1712656207.675174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.675660]: Instances: []\n", + "[INFO] [1712656207.675932]: Direct Instances: []\n", + "[INFO] [1712656207.676320]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656207.676578]: -------------------\n", + "[INFO] [1712656207.676824]: SOMA.EventAdjacentRole \n", + "[INFO] [1712656207.677066]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712656207.677320]: Ancestors: {DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.677585]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712656207.677885]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.678548]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656207.678831]: Direct Instances: []\n", + "[INFO] [1712656207.679095]: Inverse Restrictions: []\n", + "[INFO] [1712656207.679336]: -------------------\n", + "[INFO] [1712656207.679578]: SOMA.CausedMotionTheory \n", + "[INFO] [1712656207.679859]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712656207.680197]: Ancestors: {SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.680461]: Subclasses: []\n", + "[INFO] [1712656207.680764]: Properties: [rdf-schema.isDefinedBy, DUL.defines, rdf-schema.label, rdf-schema.comment, DUL.hasPart]\n", + "[INFO] [1712656207.681257]: Instances: []\n", + "[INFO] [1712656207.681535]: Direct Instances: []\n", + "[INFO] [1712656207.681791]: Inverse Restrictions: []\n", + "[INFO] [1712656207.682029]: -------------------\n", + "[INFO] [1712656207.682267]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712656207.682508]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712656207.682765]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.683025]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712656207.683321]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.683852]: Instances: []\n", + "[INFO] [1712656207.684223]: Direct Instances: []\n", + "[INFO] [1712656207.684628]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", + "[INFO] [1712656207.684938]: -------------------\n", + "[INFO] [1712656207.685223]: SOMA.PerformerRole \n", + "[INFO] [1712656207.685535]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712656207.685881]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", + "[INFO] [1712656207.686197]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712656207.686543]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.687098]: Instances: []\n", + "[INFO] [1712656207.687417]: Direct Instances: []\n", + "[INFO] [1712656207.687785]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656207.688051]: -------------------\n", + "[INFO] [1712656207.688297]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712656207.688591]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712656207.688918]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.SourcePathGoalTheory}\n", + "[INFO] [1712656207.689198]: Subclasses: []\n", + "[INFO] [1712656207.689530]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656207.690062]: Instances: []\n", + "[INFO] [1712656207.690363]: Direct Instances: []\n", + "[INFO] [1712656207.690693]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656207.690967]: -------------------\n", + "[INFO] [1712656207.691213]: SOMA.Ceiling \n", + "[INFO] [1712656207.691481]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712656207.691822]: Ancestors: {SOMA.Ceiling, SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.692093]: Subclasses: []\n", + "[INFO] [1712656207.692421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.692954]: Instances: []\n", + "[INFO] [1712656207.693255]: Direct Instances: []\n", + "[INFO] [1712656207.693535]: Inverse Restrictions: []\n", + "[INFO] [1712656207.693790]: -------------------\n", + "[INFO] [1712656207.694036]: SOMA.RoomSurface \n", + "[INFO] [1712656207.694284]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712656207.694560]: Ancestors: {SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.694834]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712656207.695150]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.695690]: Instances: []\n", + "[INFO] [1712656207.695985]: Direct Instances: []\n", + "[INFO] [1712656207.696244]: Inverse Restrictions: []\n", + "[INFO] [1712656207.696476]: -------------------\n", + "[INFO] [1712656207.696722]: SOMA.Floor \n", + "[INFO] [1712656207.696995]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712656207.697282]: Ancestors: {SOMA.Floor, SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.697534]: Subclasses: []\n", + "[INFO] [1712656207.697837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.698325]: Instances: []\n", + "[INFO] [1712656207.698624]: Direct Instances: []\n", + "[INFO] [1712656207.698887]: Inverse Restrictions: []\n", + "[INFO] [1712656207.699121]: -------------------\n", + "[INFO] [1712656207.699352]: SOMA.Wall \n", + "[INFO] [1712656207.699577]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712656207.699847]: Ancestors: {SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity, SOMA.Wall}\n", + "[INFO] [1712656207.700100]: Subclasses: []\n", + "[INFO] [1712656207.700392]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.700880]: Instances: []\n", + "[INFO] [1712656207.701139]: Direct Instances: []\n", + "[INFO] [1712656207.701389]: Inverse Restrictions: []\n", + "[INFO] [1712656207.701630]: -------------------\n", + "[INFO] [1712656207.701860]: SOMA.CeramicCooktop \n", + "[INFO] [1712656207.702087]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712656207.702368]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.CeramicCooktop, DUL.Object, owl.Thing, SOMA.ElectricCooktop, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.702618]: Subclasses: []\n", + "[INFO] [1712656207.702911]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.703397]: Instances: []\n", + "[INFO] [1712656207.703646]: Direct Instances: []\n", + "[INFO] [1712656207.703885]: Inverse Restrictions: []\n", + "[INFO] [1712656207.704123]: -------------------\n", + "[INFO] [1712656207.704354]: SOMA.ElectricCooktop \n", + "[INFO] [1712656207.704580]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712656207.704822]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.ElectricCooktop, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.705086]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", + "[INFO] [1712656207.705375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.705864]: Instances: []\n", + "[INFO] [1712656207.706140]: Direct Instances: []\n", + "[INFO] [1712656207.706398]: Inverse Restrictions: []\n", + "[INFO] [1712656207.706632]: -------------------\n", + "[INFO] [1712656207.706863]: SOMA.CerealBox \n", + "[INFO] [1712656207.707088]: Super classes: [SOMA.Box]\n", + "[INFO] [1712656207.707350]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Box, SOMA.CerealBox, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.707612]: Subclasses: []\n", + "[INFO] [1712656207.707902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.708386]: Instances: []\n", + "[INFO] [1712656207.708635]: Direct Instances: []\n", + "[INFO] [1712656207.708884]: Inverse Restrictions: []\n", + "[INFO] [1712656207.709112]: -------------------\n", + "[INFO] [1712656207.709350]: SOMA.Channel \n", + "[INFO] [1712656207.709619]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712656207.709908]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.Channel, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.PathRole, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.710152]: Subclasses: []\n", + "[INFO] [1712656207.710446]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.710951]: Instances: []\n", + "[INFO] [1712656207.711214]: Direct Instances: []\n", + "[INFO] [1712656207.711541]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656207.711784]: -------------------\n", + "[INFO] [1712656207.712015]: SOMA.PathRole \n", + "[INFO] [1712656207.712252]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712656207.712499]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.PathRole, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.712749]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712656207.713042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.713546]: Instances: []\n", + "[INFO] [1712656207.713830]: Direct Instances: []\n", + "[INFO] [1712656207.714133]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712656207.714378]: -------------------\n", + "[INFO] [1712656207.714610]: SOMA.CommunicationTask \n", + "[INFO] [1712656207.715657]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712656207.715977]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.716254]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712656207.716559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712656207.717059]: Instances: []\n", + "[INFO] [1712656207.717324]: Direct Instances: []\n", + "[INFO] [1712656207.718192]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", + "[INFO] [1712656207.718452]: -------------------\n", + "[INFO] [1712656207.718690]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712656207.718920]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712656207.719179]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", + "[INFO] [1712656207.719439]: Subclasses: []\n", + "[INFO] [1712656207.719730]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.720214]: Instances: []\n", + "[INFO] [1712656207.720468]: Direct Instances: []\n", + "[INFO] [1712656207.720710]: Inverse Restrictions: []\n", + "[INFO] [1712656207.721231]: -------------------\n", + "[INFO] [1712656207.721689]: SOMA.ChemicalProcess \n", + "[INFO] [1712656207.722103]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712656207.722574]: Ancestors: {DUL.Process, owl.Thing, SOMA.ChemicalProcess, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656207.722978]: Subclasses: []\n", + "[INFO] [1712656207.723476]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.724291]: Instances: []\n", + "[INFO] [1712656207.724695]: Direct Instances: []\n", + "[INFO] [1712656207.725097]: Inverse Restrictions: []\n", + "[INFO] [1712656207.725483]: -------------------\n", + "[INFO] [1712656207.725868]: SOMA.Choice \n", + "[INFO] [1712656207.726249]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712656207.726707]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.Choice, SOMA.EventAdjacentRole, DUL.Object, SOMA.ResultRole, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.727096]: Subclasses: []\n", + "[INFO] [1712656207.727569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.728370]: Instances: []\n", + "[INFO] [1712656207.728786]: Direct Instances: []\n", + "[INFO] [1712656207.729184]: Inverse Restrictions: []\n", + "[INFO] [1712656207.729564]: -------------------\n", + "[INFO] [1712656207.729942]: SOMA.ResultRole \n", + "[INFO] [1712656207.730627]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712656207.731140]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.ResultRole, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.731627]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712656207.732128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.732960]: Instances: []\n", + "[INFO] [1712656207.733402]: Direct Instances: []\n", + "[INFO] [1712656207.733814]: Inverse Restrictions: []\n", + "[INFO] [1712656207.734201]: -------------------\n", + "[INFO] [1712656207.734604]: SOMA.CircularCylinder \n", + "[INFO] [1712656207.735046]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712656207.735499]: Ancestors: {SOMA.CircularCylinder, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.735904]: Subclasses: []\n", + "[INFO] [1712656207.736388]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712656207.737178]: Instances: []\n", + "[INFO] [1712656207.737564]: Direct Instances: []\n", + "[INFO] [1712656207.737926]: Inverse Restrictions: []\n", + "[INFO] [1712656207.738274]: -------------------\n", + "[INFO] [1712656207.738627]: SOMA.CylinderShape \n", + "[INFO] [1712656207.739031]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712656207.739406]: Ancestors: {SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.739769]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712656207.740215]: Properties: [SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.label, rdf-schema.comment, SOMA.hasLength]\n", + "[INFO] [1712656207.740934]: Instances: []\n", + "[INFO] [1712656207.741305]: Direct Instances: []\n", + "[INFO] [1712656207.741618]: Inverse Restrictions: []\n", + "[INFO] [1712656207.741893]: -------------------\n", + "[INFO] [1712656207.742146]: SOMA.Classifier \n", + "[INFO] [1712656207.742398]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712656207.742721]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Classifier, DUL.Entity, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", + "[INFO] [1712656207.742984]: Subclasses: []\n", + "[INFO] [1712656207.743295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656207.743814]: Instances: []\n", + "[INFO] [1712656207.744102]: Direct Instances: []\n", + "[INFO] [1712656207.744361]: Inverse Restrictions: []\n", + "[INFO] [1712656207.744601]: -------------------\n", + "[INFO] [1712656207.744894]: SOMA.StatisticalReasoner \n", + "[INFO] [1712656207.745288]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712656207.745681]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", + "[INFO] [1712656207.745977]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712656207.746285]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656207.746795]: Instances: []\n", + "[INFO] [1712656207.747087]: Direct Instances: []\n", + "[INFO] [1712656207.747358]: Inverse Restrictions: []\n", + "[INFO] [1712656207.747596]: -------------------\n", + "[INFO] [1712656207.747829]: SOMA.ClausalObject \n", + "[INFO] [1712656207.748059]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712656207.748308]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656207.748579]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712656207.748898]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.749394]: Instances: []\n", + "[INFO] [1712656207.749660]: Direct Instances: []\n", + "[INFO] [1712656207.749928]: Inverse Restrictions: []\n", + "[INFO] [1712656207.750165]: -------------------\n", + "[INFO] [1712656207.750395]: SOMA.Phrase \n", + "[INFO] [1712656207.750622]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712656207.750861]: Ancestors: {DUL.InformationEntity, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656207.751125]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712656207.751418]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.751914]: Instances: []\n", + "[INFO] [1712656207.752212]: Direct Instances: []\n", + "[INFO] [1712656207.752478]: Inverse Restrictions: []\n", + "[INFO] [1712656207.752717]: -------------------\n", + "[INFO] [1712656207.753073]: SOMA.Clean \n", + "[INFO] [1712656207.753423]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712656207.753817]: Ancestors: {SOMA.Clean, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", + "[INFO] [1712656207.754198]: Subclasses: []\n", + "[INFO] [1712656207.754615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.755224]: Instances: []\n", + "[INFO] [1712656207.755604]: Direct Instances: []\n", + "[INFO] [1712656207.756340]: Inverse Restrictions: []\n", + "[INFO] [1712656207.756627]: -------------------\n", + "[INFO] [1712656207.756887]: SOMA.CleanlinessRegion \n", + "[INFO] [1712656207.757129]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656207.757370]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", + "[INFO] [1712656207.757625]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712656207.757931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.758430]: Instances: []\n", + "[INFO] [1712656207.758700]: Direct Instances: []\n", + "[INFO] [1712656207.759036]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712656207.759296]: -------------------\n", + "[INFO] [1712656207.759538]: SOMA.Cleaning \n", + "[INFO] [1712656207.759802]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712656207.760081]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Cleaning, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656207.760322]: Subclasses: []\n", + "[INFO] [1712656207.760605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656207.761108]: Instances: []\n", + "[INFO] [1712656207.761382]: Direct Instances: []\n", + "[INFO] [1712656207.761629]: Inverse Restrictions: []\n", + "[INFO] [1712656207.761860]: -------------------\n", + "[INFO] [1712656207.762087]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712656207.762313]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656207.762562]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656207.762825]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712656207.763110]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.763628]: Instances: []\n", + "[INFO] [1712656207.763924]: Direct Instances: []\n", + "[INFO] [1712656207.764205]: Inverse Restrictions: []\n", + "[INFO] [1712656207.764449]: -------------------\n", + "[INFO] [1712656207.764684]: SOMA.Purification \n", + "[INFO] [1712656207.765747]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712656207.766079]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition, SOMA.Purification}\n", + "[INFO] [1712656207.766345]: Subclasses: []\n", + "[INFO] [1712656207.766644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.767137]: Instances: []\n", + "[INFO] [1712656207.767416]: Direct Instances: []\n", + "[INFO] [1712656207.767973]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712656207.768427]: -------------------\n", + "[INFO] [1712656207.768846]: SOMA.Cleanliness \n", + "[INFO] [1712656207.769172]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712656207.769471]: Ancestors: {DUL.Quality, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.769735]: Subclasses: []\n", + "[INFO] [1712656207.770037]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712656207.770535]: Instances: []\n", + "[INFO] [1712656207.770869]: Direct Instances: []\n", + "[INFO] [1712656207.771246]: Inverse Restrictions: []\n", + "[INFO] [1712656207.771514]: -------------------\n", + "[INFO] [1712656207.771764]: SOMA.SocialQuality \n", + "[INFO] [1712656207.772022]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712656207.772279]: Ancestors: {SOMA.SocialQuality, DUL.Entity, DUL.Quality, owl.Thing}\n", + "[INFO] [1712656207.772548]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712656207.772853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.773359]: Instances: []\n", + "[INFO] [1712656207.773647]: Direct Instances: []\n", + "[INFO] [1712656207.773917]: Inverse Restrictions: []\n", + "[INFO] [1712656207.774389]: -------------------\n", + "[INFO] [1712656207.774798]: SOMA.Client-Server_Specification \n", + "[INFO] [1712656207.776001]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712656207.776522]: Ancestors: {DUL.Design, SOMA.Client-Server_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.776988]: Subclasses: []\n", + "[INFO] [1712656207.777482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", + "[INFO] [1712656207.778159]: Instances: []\n", + "[INFO] [1712656207.778625]: Direct Instances: []\n", + "[INFO] [1712656207.779149]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712656207.779517]: -------------------\n", + "[INFO] [1712656207.779939]: SOMA.ClientRole \n", + "[INFO] [1712656207.780361]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712656207.781743]: Ancestors: {DUL.Concept, SOMA.ClientRole, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656207.782170]: Subclasses: []\n", + "[INFO] [1712656207.782592]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", + "[INFO] [1712656207.783196]: Instances: []\n", + "[INFO] [1712656207.783576]: Direct Instances: []\n", + "[INFO] [1712656207.783997]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712656207.784358]: -------------------\n", + "[INFO] [1712656207.784707]: SOMA.ServerRole \n", + "[INFO] [1712656207.785058]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712656207.785365]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ServerRole, SOMA.SoftwareRole}\n", + "[INFO] [1712656207.785616]: Subclasses: []\n", + "[INFO] [1712656207.785936]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", + "[INFO] [1712656207.786428]: Instances: []\n", + "[INFO] [1712656207.786691]: Direct Instances: []\n", + "[INFO] [1712656207.787006]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712656207.787258]: -------------------\n", + "[INFO] [1712656207.787503]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712656207.787737]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656207.787983]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656207.788334]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712656207.788693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656207.789261]: Instances: []\n", + "[INFO] [1712656207.789549]: Direct Instances: []\n", + "[INFO] [1712656207.789821]: Inverse Restrictions: []\n", + "[INFO] [1712656207.790057]: -------------------\n", + "[INFO] [1712656207.790292]: SOMA.Closing \n", + "[INFO] [1712656207.790522]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656207.790792]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Closing, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656207.791045]: Subclasses: []\n", + "[INFO] [1712656207.791354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.791842]: Instances: []\n", + "[INFO] [1712656207.792114]: Direct Instances: []\n", + "[INFO] [1712656207.792378]: Inverse Restrictions: []\n", + "[INFO] [1712656207.792619]: -------------------\n", + "[INFO] [1712656207.792860]: SOMA.Delivering \n", + "[INFO] [1712656207.793127]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712656207.793403]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Delivering, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656207.793660]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712656207.793973]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656207.794470]: Instances: []\n", + "[INFO] [1712656207.794727]: Direct Instances: []\n", + "[INFO] [1712656207.794990]: Inverse Restrictions: []\n", + "[INFO] [1712656207.795237]: -------------------\n", + "[INFO] [1712656207.795475]: SOMA.Fetching \n", + "[INFO] [1712656207.795710]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712656207.796008]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Fetching, DUL.EventType, SOMA.PhysicalAcquiring, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656207.796289]: Subclasses: []\n", + "[INFO] [1712656207.796607]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.797119]: Instances: []\n", + "[INFO] [1712656207.797405]: Direct Instances: []\n", + "[INFO] [1712656207.797669]: Inverse Restrictions: []\n", + "[INFO] [1712656207.797905]: -------------------\n", + "[INFO] [1712656207.798138]: SOMA.Lifting \n", + "[INFO] [1712656207.798370]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656207.798655]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Lifting, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656207.798907]: Subclasses: []\n", + "[INFO] [1712656207.799212]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.799707]: Instances: []\n", + "[INFO] [1712656207.800002]: Direct Instances: []\n", + "[INFO] [1712656207.800278]: Inverse Restrictions: []\n", + "[INFO] [1712656207.800519]: -------------------\n", + "[INFO] [1712656207.800751]: SOMA.Opening \n", + "[INFO] [1712656207.800998]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656207.801283]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Opening}\n", + "[INFO] [1712656207.801549]: Subclasses: []\n", + "[INFO] [1712656207.801859]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.802346]: Instances: []\n", + "[INFO] [1712656207.802617]: Direct Instances: []\n", + "[INFO] [1712656207.802884]: Inverse Restrictions: []\n", + "[INFO] [1712656207.803123]: -------------------\n", + "[INFO] [1712656207.803354]: SOMA.Pulling \n", + "[INFO] [1712656207.803586]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656207.803856]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Pulling, SOMA.Actuating}\n", + "[INFO] [1712656207.804116]: Subclasses: []\n", + "[INFO] [1712656207.804419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.804915]: Instances: []\n", + "[INFO] [1712656207.805186]: Direct Instances: []\n", + "[INFO] [1712656207.805457]: Inverse Restrictions: []\n", + "[INFO] [1712656207.805696]: -------------------\n", + "[INFO] [1712656207.805926]: SOMA.Pushing \n", + "[INFO] [1712656207.806157]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656207.806425]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656207.806705]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712656207.807013]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.807643]: Instances: []\n", + "[INFO] [1712656207.808021]: Direct Instances: []\n", + "[INFO] [1712656207.808291]: Inverse Restrictions: []\n", + "[INFO] [1712656207.808540]: -------------------\n", + "[INFO] [1712656207.808805]: SOMA.Squeezing \n", + "[INFO] [1712656207.809294]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656207.809689]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Squeezing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656207.810050]: Subclasses: []\n", + "[INFO] [1712656207.810447]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.811028]: Instances: []\n", + "[INFO] [1712656207.811382]: Direct Instances: []\n", + "[INFO] [1712656207.811748]: Inverse Restrictions: []\n", + "[INFO] [1712656207.812095]: -------------------\n", + "[INFO] [1712656207.812439]: SOMA.ClosingDisposition \n", + "[INFO] [1712656207.812780]: Super classes: [SOMA.Linkage]\n", + "[INFO] [1712656207.813180]: Ancestors: {SOMA.ClosingDisposition, SOMA.Extrinsic, SOMA.Linkage, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.813537]: Subclasses: []\n", + "[INFO] [1712656207.813934]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.814522]: Instances: []\n", + "[INFO] [1712656207.814901]: Direct Instances: []\n", + "[INFO] [1712656207.815249]: Inverse Restrictions: []\n", + "[INFO] [1712656207.815593]: -------------------\n", + "[INFO] [1712656207.815941]: SOMA.Linkage \n", + "[INFO] [1712656207.816320]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712656207.816677]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Linkage, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.817079]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712656207.817515]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.818135]: Instances: []\n", + "[INFO] [1712656207.818538]: Direct Instances: []\n", + "[INFO] [1712656207.818930]: Inverse Restrictions: []\n", + "[INFO] [1712656207.819293]: -------------------\n", + "[INFO] [1712656207.819651]: SOMA.Clumsiness \n", + "[INFO] [1712656207.819910]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712656207.820200]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Clumsiness, DUL.Diagnosis}\n", + "[INFO] [1712656207.820458]: Subclasses: []\n", + "[INFO] [1712656207.820750]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.821254]: Instances: []\n", + "[INFO] [1712656207.821535]: Direct Instances: []\n", + "[INFO] [1712656207.821787]: Inverse Restrictions: []\n", + "[INFO] [1712656207.822024]: -------------------\n", + "[INFO] [1712656207.822258]: SOMA.CoffeeCarafe \n", + "[INFO] [1712656207.822487]: Super classes: [SOMA.Carafe]\n", + "[INFO] [1712656207.822758]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Carafe, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.CoffeeCarafe, DUL.Entity}\n", + "[INFO] [1712656207.823020]: Subclasses: []\n", + "[INFO] [1712656207.823317]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.823804]: Instances: []\n", + "[INFO] [1712656207.824083]: Direct Instances: []\n", + "[INFO] [1712656207.824335]: Inverse Restrictions: []\n", + "[INFO] [1712656207.824569]: -------------------\n", + "[INFO] [1712656207.824805]: SOMA.CoffeeTable \n", + "[INFO] [1712656207.825037]: Super classes: [SOMA.Table]\n", + "[INFO] [1712656207.825305]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Table, DUL.Object, owl.Thing, SOMA.CoffeeTable, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656207.825557]: Subclasses: []\n", + "[INFO] [1712656207.825861]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.826413]: Instances: []\n", + "[INFO] [1712656207.826722]: Direct Instances: []\n", + "[INFO] [1712656207.826978]: Inverse Restrictions: []\n", + "[INFO] [1712656207.827229]: -------------------\n", + "[INFO] [1712656207.827498]: SOMA.CognitiveAgent \n", + "[INFO] [1712656207.827758]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712656207.828030]: Ancestors: {DUL.Agent, SOMA.CognitiveAgent, DUL.Object, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.828281]: Subclasses: []\n", + "[INFO] [1712656207.828586]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.829101]: Instances: []\n", + "[INFO] [1712656207.829396]: Direct Instances: []\n", + "[INFO] [1712656207.829656]: Inverse Restrictions: []\n", + "[INFO] [1712656207.829899]: -------------------\n", + "[INFO] [1712656207.830135]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712656207.830384]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712656207.830663]: Ancestors: {SOMA.SubCognitiveAgent, DUL.Agent, DUL.Object, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.830928]: Subclasses: []\n", + "[INFO] [1712656207.831221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.831717]: Instances: []\n", + "[INFO] [1712656207.831984]: Direct Instances: []\n", + "[INFO] [1712656207.832241]: Inverse Restrictions: []\n", + "[INFO] [1712656207.832515]: -------------------\n", + "[INFO] [1712656207.832775]: SOMA.CoilCooktop \n", + "[INFO] [1712656207.833028]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712656207.833304]: Ancestors: {SOMA.CoilCooktop, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.ElectricCooktop, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.833555]: Subclasses: []\n", + "[INFO] [1712656207.833845]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.834337]: Instances: []\n", + "[INFO] [1712656207.834612]: Direct Instances: []\n", + "[INFO] [1712656207.834863]: Inverse Restrictions: []\n", + "[INFO] [1712656207.835096]: -------------------\n", + "[INFO] [1712656207.835325]: SOMA.Collision \n", + "[INFO] [1712656207.835565]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712656207.835842]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType, SOMA.Collision}\n", + "[INFO] [1712656207.836087]: Subclasses: []\n", + "[INFO] [1712656207.836374]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.836887]: Instances: []\n", + "[INFO] [1712656207.837190]: Direct Instances: []\n", + "[INFO] [1712656207.837457]: Inverse Restrictions: []\n", + "[INFO] [1712656207.837690]: -------------------\n", + "[INFO] [1712656207.837924]: SOMA.Extrinsic \n", + "[INFO] [1712656207.838152]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712656207.838391]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656207.838661]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712656207.838966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.839509]: Instances: []\n", + "[INFO] [1712656207.839793]: Direct Instances: []\n", + "[INFO] [1712656207.840062]: Inverse Restrictions: []\n", + "[INFO] [1712656207.840299]: -------------------\n", + "[INFO] [1712656207.840533]: SOMA.ImperativeClause \n", + "[INFO] [1712656207.840815]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712656207.841119]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, SOMA.ImperativeClause, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656207.841376]: Subclasses: []\n", + "[INFO] [1712656207.841675]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.expresses, rdf-schema.label]\n", + "[INFO] [1712656207.842162]: Instances: []\n", + "[INFO] [1712656207.842422]: Direct Instances: []\n", + "[INFO] [1712656207.842736]: Inverse Restrictions: []\n", + "[INFO] [1712656207.842973]: -------------------\n", + "[INFO] [1712656207.843204]: SOMA.CommitedObject \n", + "[INFO] [1712656207.843430]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712656207.843705]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.CommitedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.843964]: Subclasses: []\n", + "[INFO] [1712656207.844256]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.844739]: Instances: []\n", + "[INFO] [1712656207.845001]: Direct Instances: []\n", + "[INFO] [1712656207.845237]: Inverse Restrictions: []\n", + "[INFO] [1712656207.845461]: -------------------\n", + "[INFO] [1712656207.845692]: SOMA.ConnectedObject \n", + "[INFO] [1712656207.845927]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656207.846169]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.846422]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712656207.846706]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.847207]: Instances: []\n", + "[INFO] [1712656207.847471]: Direct Instances: []\n", + "[INFO] [1712656207.847836]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712656207.848082]: -------------------\n", + "[INFO] [1712656207.848312]: SOMA.CommunicationAction \n", + "[INFO] [1712656207.848582]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712656207.848867]: Ancestors: {SOMA.CommunicationAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656207.849114]: Subclasses: []\n", + "[INFO] [1712656207.849406]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656207.849901]: Instances: []\n", + "[INFO] [1712656207.850160]: Direct Instances: []\n", + "[INFO] [1712656207.851190]: Inverse Restrictions: []\n", + "[INFO] [1712656207.851432]: -------------------\n", + "[INFO] [1712656207.851676]: SOMA.LinguisticObject \n", + "[INFO] [1712656207.851907]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712656207.852143]: Ancestors: {DUL.InformationEntity, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656207.852391]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712656207.852674]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656207.853291]: Instances: []\n", + "[INFO] [1712656207.853656]: Direct Instances: []\n", + "[INFO] [1712656207.853993]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712656207.854264]: -------------------\n", + "[INFO] [1712656207.854513]: SOMA.CommunicationReport \n", + "[INFO] [1712656207.854766]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656207.855054]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.855323]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712656207.855621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.856111]: Instances: []\n", + "[INFO] [1712656207.856382]: Direct Instances: []\n", + "[INFO] [1712656207.856644]: Inverse Restrictions: []\n", + "[INFO] [1712656207.856887]: -------------------\n", + "[INFO] [1712656207.857117]: SOMA.Receiver \n", + "[INFO] [1712656207.857352]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712656207.857644]: Ancestors: {DUL.Concept, SOMA.ExperiencerRole, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Receiver, SOMA.PerformerRole}\n", + "[INFO] [1712656207.857898]: Subclasses: []\n", + "[INFO] [1712656207.858189]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.858692]: Instances: []\n", + "[INFO] [1712656207.858963]: Direct Instances: []\n", + "[INFO] [1712656207.859287]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656207.859536]: -------------------\n", + "[INFO] [1712656207.859776]: SOMA.Sender \n", + "[INFO] [1712656207.860015]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712656207.860288]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.Sender, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", + "[INFO] [1712656207.860525]: Subclasses: []\n", + "[INFO] [1712656207.860815]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.861320]: Instances: []\n", + "[INFO] [1712656207.861593]: Direct Instances: []\n", + "[INFO] [1712656207.861931]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656207.862181]: -------------------\n", + "[INFO] [1712656207.862421]: SOMA.CommunicationTopic \n", + "[INFO] [1712656207.863452]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712656207.863749]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.864015]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656207.864308]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.864839]: Instances: []\n", + "[INFO] [1712656207.865123]: Direct Instances: []\n", + "[INFO] [1712656207.865385]: Inverse Restrictions: []\n", + "[INFO] [1712656207.865630]: -------------------\n", + "[INFO] [1712656207.865866]: SOMA.ResourceRole \n", + "[INFO] [1712656207.866098]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656207.866340]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.866613]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712656207.866908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.867458]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656207.867733]: Direct Instances: []\n", + "[INFO] [1712656207.868003]: Inverse Restrictions: []\n", + "[INFO] [1712656207.868262]: -------------------\n", + "[INFO] [1712656207.868498]: SOMA.Compartment \n", + "[INFO] [1712656207.868728]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656207.869010]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart, SOMA.Compartment}\n", + "[INFO] [1712656207.869287]: Subclasses: [SOMA.FreezerCompartment]\n", + "[INFO] [1712656207.869584]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.870085]: Instances: []\n", + "[INFO] [1712656207.870375]: Direct Instances: []\n", + "[INFO] [1712656207.870650]: Inverse Restrictions: []\n", + "[INFO] [1712656207.870888]: -------------------\n", + "[INFO] [1712656207.871122]: SOMA.Composing \n", + "[INFO] [1712656207.871358]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712656207.871627]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Composing, SOMA.Disposition}\n", + "[INFO] [1712656207.871895]: Subclasses: []\n", + "[INFO] [1712656207.872197]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.872691]: Instances: []\n", + "[INFO] [1712656207.872960]: Direct Instances: []\n", + "[INFO] [1712656207.873265]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712656207.873525]: -------------------\n", + "[INFO] [1712656207.873768]: SOMA.Computer_Language \n", + "[INFO] [1712656207.874001]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712656207.874242]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656207.874500]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712656207.874794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.875319]: Instances: []\n", + "[INFO] [1712656207.875592]: Direct Instances: []\n", + "[INFO] [1712656207.875855]: Inverse Restrictions: []\n", + "[INFO] [1712656207.876093]: -------------------\n", + "[INFO] [1712656207.876328]: SOMA.FormalLanguage \n", + "[INFO] [1712656207.876585]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712656207.876906]: Ancestors: {SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656207.877396]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656207.877835]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.878477]: Instances: []\n", + "[INFO] [1712656207.878866]: Direct Instances: []\n", + "[INFO] [1712656207.879304]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712656207.879683]: -------------------\n", + "[INFO] [1712656207.880043]: SOMA.Computer_Program \n", + "[INFO] [1712656207.880396]: Super classes: [owl.Thing]\n", + "[INFO] [1712656207.882568]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", + "[INFO] [1712656207.882880]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712656207.883313]: Properties: [rdf-schema.isDefinedBy, DUL.expresses, rdf-schema.label, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656207.883845]: Instances: []\n", + "[INFO] [1712656207.884129]: Direct Instances: []\n", + "[INFO] [1712656207.885960]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712656207.886224]: -------------------\n", + "[INFO] [1712656207.886467]: SOMA.Programming_Language \n", + "[INFO] [1712656207.886706]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712656207.886979]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, SOMA.Programming_Language, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656207.887254]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712656207.887553]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.888046]: Instances: []\n", + "[INFO] [1712656207.888309]: Direct Instances: []\n", + "[INFO] [1712656207.888625]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712656207.888879]: -------------------\n", + "[INFO] [1712656207.889123]: SOMA.Conclusion \n", + "[INFO] [1712656207.889363]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712656207.889654]: Ancestors: {DUL.Concept, SOMA.Conclusion, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.CreatedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.889915]: Subclasses: []\n", + "[INFO] [1712656207.890210]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.890694]: Instances: []\n", + "[INFO] [1712656207.890947]: Direct Instances: []\n", + "[INFO] [1712656207.891997]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656207.892269]: -------------------\n", + "[INFO] [1712656207.892511]: SOMA.CreatedObject \n", + "[INFO] [1712656207.892743]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656207.892995]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.CreatedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.893251]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712656207.893551]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.894044]: Instances: []\n", + "[INFO] [1712656207.894300]: Direct Instances: []\n", + "[INFO] [1712656207.894684]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712656207.894937]: -------------------\n", + "[INFO] [1712656207.895174]: SOMA.Knowledge \n", + "[INFO] [1712656207.895407]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712656207.895654]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.895923]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712656207.896217]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.896711]: Instances: []\n", + "[INFO] [1712656207.896991]: Direct Instances: []\n", + "[INFO] [1712656207.898158]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712656207.898416]: -------------------\n", + "[INFO] [1712656207.898655]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712656207.898898]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712656207.899185]: Ancestors: {DUL.Relation, DUL.Description, DUL.Object, owl.Thing, SOMA.Succedence, DUL.SocialObject, DUL.Entity, SOMA.ConditionalSuccedence}\n", + "[INFO] [1712656207.899446]: Subclasses: []\n", + "[INFO] [1712656207.899740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.900224]: Instances: []\n", + "[INFO] [1712656207.900492]: Direct Instances: []\n", + "[INFO] [1712656207.900748]: Inverse Restrictions: []\n", + "[INFO] [1712656207.901008]: -------------------\n", + "[INFO] [1712656207.901243]: SOMA.Configuration \n", + "[INFO] [1712656207.901481]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712656207.901759]: Ancestors: {SOMA.Configuration, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.902000]: Subclasses: []\n", + "[INFO] [1712656207.902291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", + "[INFO] [1712656207.902803]: Instances: []\n", + "[INFO] [1712656207.903076]: Direct Instances: []\n", + "[INFO] [1712656207.903329]: Inverse Restrictions: []\n", + "[INFO] [1712656207.903563]: -------------------\n", + "[INFO] [1712656207.903790]: SOMA.Connectivity \n", + "[INFO] [1712656207.904027]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712656207.904283]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.904540]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712656207.904837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.905350]: Instances: []\n", + "[INFO] [1712656207.905625]: Direct Instances: []\n", + "[INFO] [1712656207.905917]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712656207.906154]: -------------------\n", + "[INFO] [1712656207.906382]: SOMA.ContactState \n", + "[INFO] [1712656207.906641]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712656207.906924]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ContactState, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656207.907174]: Subclasses: []\n", + "[INFO] [1712656207.907463]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.907947]: Instances: []\n", + "[INFO] [1712656207.908219]: Direct Instances: []\n", + "[INFO] [1712656207.908468]: Inverse Restrictions: []\n", + "[INFO] [1712656207.908700]: -------------------\n", + "[INFO] [1712656207.908930]: SOMA.Container \n", + "[INFO] [1712656207.909153]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712656207.909429]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Container, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656207.909684]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", + "[INFO] [1712656207.909974]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.910470]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656207.910749]: Direct Instances: []\n", + "[INFO] [1712656207.911469]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712656207.911733]: -------------------\n", + "[INFO] [1712656207.911967]: SOMA.Containment \n", + "[INFO] [1712656207.912258]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712656207.912539]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.912797]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712656207.913091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.913602]: Instances: []\n", + "[INFO] [1712656207.913865]: Direct Instances: []\n", + "[INFO] [1712656207.914258]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712656207.914508]: -------------------\n", + "[INFO] [1712656207.914751]: SOMA.IncludedObject \n", + "[INFO] [1712656207.914985]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656207.915254]: Ancestors: {DUL.Concept, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656207.915505]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712656207.915790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.916302]: Instances: []\n", + "[INFO] [1712656207.916574]: Direct Instances: []\n", + "[INFO] [1712656207.916874]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712656207.917120]: -------------------\n", + "[INFO] [1712656207.917363]: SOMA.ContainmentState \n", + "[INFO] [1712656207.918382]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712656207.918686]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity, SOMA.ContainmentState}\n", + "[INFO] [1712656207.918961]: Subclasses: []\n", + "[INFO] [1712656207.919261]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.919749]: Instances: []\n", + "[INFO] [1712656207.919998]: Direct Instances: []\n", + "[INFO] [1712656207.920244]: Inverse Restrictions: []\n", + "[INFO] [1712656207.920485]: -------------------\n", + "[INFO] [1712656207.920719]: SOMA.FunctionalControl \n", + "[INFO] [1712656207.921184]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712656207.921593]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656207.922005]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712656207.922436]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.923053]: Instances: []\n", + "[INFO] [1712656207.923427]: Direct Instances: []\n", + "[INFO] [1712656207.923817]: Inverse Restrictions: []\n", + "[INFO] [1712656207.924177]: -------------------\n", + "[INFO] [1712656207.924451]: SOMA.ContainmentTheory \n", + "[INFO] [1712656207.924695]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712656207.924993]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", + "[INFO] [1712656207.925239]: Subclasses: []\n", + "[INFO] [1712656207.925533]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.926040]: Instances: []\n", + "[INFO] [1712656207.926309]: Direct Instances: []\n", + "[INFO] [1712656207.926557]: Inverse Restrictions: []\n", + "[INFO] [1712656207.926788]: -------------------\n", + "[INFO] [1712656207.927022]: SOMA.ControlTheory \n", + "[INFO] [1712656207.927261]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712656207.927508]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", + "[INFO] [1712656207.927760]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712656207.928091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.928601]: Instances: []\n", + "[INFO] [1712656207.928869]: Direct Instances: []\n", + "[INFO] [1712656207.929122]: Inverse Restrictions: []\n", + "[INFO] [1712656207.929353]: -------------------\n", + "[INFO] [1712656207.929584]: SOMA.ContinuousJoint \n", + "[INFO] [1712656207.929823]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712656207.930144]: Ancestors: {SOMA.HingeJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.ContinuousJoint}\n", + "[INFO] [1712656207.930410]: Subclasses: []\n", + "[INFO] [1712656207.930708]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.931212]: Instances: []\n", + "[INFO] [1712656207.931485]: Direct Instances: []\n", + "[INFO] [1712656207.931733]: Inverse Restrictions: []\n", + "[INFO] [1712656207.931967]: -------------------\n", + "[INFO] [1712656207.932409]: SOMA.HingeJoint \n", + "[INFO] [1712656207.932692]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712656207.932954]: Ancestors: {SOMA.HingeJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656207.933219]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712656207.933517]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.934014]: Instances: []\n", + "[INFO] [1712656207.934298]: Direct Instances: []\n", + "[INFO] [1712656207.934565]: Inverse Restrictions: []\n", + "[INFO] [1712656207.934803]: -------------------\n", + "[INFO] [1712656207.935038]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712656207.935388]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712656207.935693]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", + "[INFO] [1712656207.935976]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712656207.936287]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656207.936799]: Instances: []\n", + "[INFO] [1712656207.937081]: Direct Instances: []\n", + "[INFO] [1712656207.937359]: Inverse Restrictions: []\n", + "[INFO] [1712656207.937616]: -------------------\n", + "[INFO] [1712656207.937873]: SOMA.Cooktop \n", + "[INFO] [1712656207.938109]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656207.938354]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.938604]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", + "[INFO] [1712656207.938899]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.939389]: Instances: []\n", + "[INFO] [1712656207.939661]: Direct Instances: []\n", + "[INFO] [1712656207.939919]: Inverse Restrictions: []\n", + "[INFO] [1712656207.940148]: -------------------\n", + "[INFO] [1712656207.940386]: SOMA.Countertop \n", + "[INFO] [1712656207.940623]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656207.940899]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, SOMA.Countertop, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.941139]: Subclasses: []\n", + "[INFO] [1712656207.941421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.941918]: Instances: []\n", + "[INFO] [1712656207.942187]: Direct Instances: []\n", + "[INFO] [1712656207.942434]: Inverse Restrictions: []\n", + "[INFO] [1712656207.942667]: -------------------\n", + "[INFO] [1712656207.942894]: SOMA.Cover \n", + "[INFO] [1712656207.943132]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712656207.943402]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Cover, SOMA.Restrictor}\n", + "[INFO] [1712656207.943640]: Subclasses: []\n", + "[INFO] [1712656207.943923]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.944431]: Instances: []\n", + "[INFO] [1712656207.944695]: Direct Instances: []\n", + "[INFO] [1712656207.945012]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712656207.945258]: -------------------\n", + "[INFO] [1712656207.945499]: SOMA.Coverage \n", + "[INFO] [1712656207.945774]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712656207.946084]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Coverage, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.946349]: Subclasses: []\n", + "[INFO] [1712656207.946664]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.947197]: Instances: []\n", + "[INFO] [1712656207.947498]: Direct Instances: []\n", + "[INFO] [1712656207.947780]: Inverse Restrictions: []\n", + "[INFO] [1712656207.948040]: -------------------\n", + "[INFO] [1712656207.948305]: SOMA.CoveredObject \n", + "[INFO] [1712656207.948565]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712656207.948922]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.CoveredObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", + "[INFO] [1712656207.949370]: Subclasses: []\n", + "[INFO] [1712656207.949774]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.950341]: Instances: []\n", + "[INFO] [1712656207.950652]: Direct Instances: []\n", + "[INFO] [1712656207.951013]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712656207.951315]: -------------------\n", + "[INFO] [1712656207.951608]: SOMA.CoverageTheory \n", + "[INFO] [1712656207.951884]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712656207.952184]: Ancestors: {SOMA.CoverageTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", + "[INFO] [1712656207.952451]: Subclasses: []\n", + "[INFO] [1712656207.952758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.953298]: Instances: []\n", + "[INFO] [1712656207.953579]: Direct Instances: []\n", + "[INFO] [1712656207.953838]: Inverse Restrictions: []\n", + "[INFO] [1712656207.954085]: -------------------\n", + "[INFO] [1712656207.954334]: SOMA.CoveringTheory \n", + "[INFO] [1712656207.954586]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712656207.954880]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.CoveringTheory}\n", + "[INFO] [1712656207.955136]: Subclasses: []\n", + "[INFO] [1712656207.955436]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656207.955921]: Instances: []\n", + "[INFO] [1712656207.956191]: Direct Instances: []\n", + "[INFO] [1712656207.956448]: Inverse Restrictions: []\n", + "[INFO] [1712656207.956688]: -------------------\n", + "[INFO] [1712656207.956931]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712656207.957179]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712656207.957438]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656207.957697]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712656207.957990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656207.958486]: Instances: []\n", + "[INFO] [1712656207.958759]: Direct Instances: []\n", + "[INFO] [1712656207.959029]: Inverse Restrictions: []\n", + "[INFO] [1712656207.959269]: -------------------\n", + "[INFO] [1712656207.959501]: SOMA.CrackingTheory \n", + "[INFO] [1712656207.959740]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712656207.960003]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.CrackingTheory, DUL.Entity}\n", + "[INFO] [1712656207.960263]: Subclasses: []\n", + "[INFO] [1712656207.960563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656207.961046]: Instances: []\n", + "[INFO] [1712656207.961303]: Direct Instances: []\n", + "[INFO] [1712656207.961547]: Inverse Restrictions: []\n", + "[INFO] [1712656207.961791]: -------------------\n", + "[INFO] [1712656207.962026]: SOMA.Creation \n", + "[INFO] [1712656207.962265]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712656207.962527]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Creation, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656207.962770]: Subclasses: []\n", + "[INFO] [1712656207.963067]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.963556]: Instances: []\n", + "[INFO] [1712656207.963844]: Direct Instances: []\n", + "[INFO] [1712656207.964103]: Inverse Restrictions: []\n", + "[INFO] [1712656207.964354]: -------------------\n", + "[INFO] [1712656207.964604]: SOMA.Tableware \n", + "[INFO] [1712656207.964844]: Super classes: [SOMA.DesignedTool]\n", + "[INFO] [1712656207.965089]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712656207.965333]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", + "[INFO] [1712656207.965609]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.966157]: Instances: []\n", + "[INFO] [1712656207.966431]: Direct Instances: []\n", + "[INFO] [1712656207.966685]: Inverse Restrictions: []\n", + "[INFO] [1712656207.966919]: -------------------\n", + "[INFO] [1712656207.967165]: SOMA.Insertion \n", + "[INFO] [1712656207.967432]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712656207.967713]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Insertion, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.967961]: Subclasses: []\n", + "[INFO] [1712656207.968248]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.968739]: Instances: []\n", + "[INFO] [1712656207.969006]: Direct Instances: []\n", + "[INFO] [1712656207.969553]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712656207.969804]: -------------------\n", + "[INFO] [1712656207.970051]: SOMA.Cup \n", + "[INFO] [1712656207.970301]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712656207.970589]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.Cup}\n", + "[INFO] [1712656207.970847]: Subclasses: []\n", + "[INFO] [1712656207.971133]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712656207.971620]: Instances: []\n", + "[INFO] [1712656207.971887]: Direct Instances: []\n", + "[INFO] [1712656207.972143]: Inverse Restrictions: []\n", + "[INFO] [1712656207.972381]: -------------------\n", + "[INFO] [1712656207.972617]: SOMA.DesignedHandle \n", + "[INFO] [1712656207.972863]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", + "[INFO] [1712656207.973130]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedHandle, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.973393]: Subclasses: []\n", + "[INFO] [1712656207.973687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712656207.974175]: Instances: []\n", + "[INFO] [1712656207.974432]: Direct Instances: []\n", + "[INFO] [1712656207.974776]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", + "[INFO] [1712656207.975026]: -------------------\n", + "[INFO] [1712656207.975260]: SOMA.Cupboard \n", + "[INFO] [1712656207.975511]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", + "[INFO] [1712656207.975791]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Cupboard, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656207.976051]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", + "[INFO] [1712656207.976336]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712656207.976830]: Instances: []\n", + "[INFO] [1712656207.977097]: Direct Instances: []\n", + "[INFO] [1712656207.977353]: Inverse Restrictions: []\n", + "[INFO] [1712656207.977588]: -------------------\n", + "[INFO] [1712656207.977821]: SOMA.DesignedFurniture \n", + "[INFO] [1712656207.978052]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712656207.978298]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656207.978561]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712656207.978866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.979360]: Instances: []\n", + "[INFO] [1712656207.979616]: Direct Instances: []\n", + "[INFO] [1712656207.979882]: Inverse Restrictions: []\n", + "[INFO] [1712656207.980126]: -------------------\n", + "[INFO] [1712656207.980371]: SOMA.Rack \n", + "[INFO] [1712656207.980598]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656207.980872]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Rack, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656207.981136]: Subclasses: []\n", + "[INFO] [1712656207.981429]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.981909]: Instances: []\n", + "[INFO] [1712656207.982167]: Direct Instances: []\n", + "[INFO] [1712656207.982452]: Inverse Restrictions: [SOMA.Cupboard]\n", + "[INFO] [1712656207.982696]: -------------------\n", + "[INFO] [1712656207.982930]: SOMA.Cutlery \n", + "[INFO] [1712656207.983164]: Super classes: [SOMA.Tableware]\n", + "[INFO] [1712656207.983436]: Ancestors: {DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712656207.983693]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", + "[INFO] [1712656207.983996]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656207.984502]: Instances: []\n", + "[INFO] [1712656207.984773]: Direct Instances: []\n", + "[INFO] [1712656207.985034]: Inverse Restrictions: []\n", + "[INFO] [1712656207.985283]: -------------------\n", + "[INFO] [1712656207.985522]: SOMA.Cuttability \n", + "[INFO] [1712656207.985760]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712656207.986165]: Ancestors: {SOMA.Extrinsic, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656207.986484]: Subclasses: []\n", + "[INFO] [1712656207.986805]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.987305]: Instances: []\n", + "[INFO] [1712656207.987565]: Direct Instances: []\n", + "[INFO] [1712656207.987814]: Inverse Restrictions: []\n", + "[INFO] [1712656207.988049]: -------------------\n", + "[INFO] [1712656207.988281]: SOMA.Tool \n", + "[INFO] [1712656207.988524]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712656207.988783]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Tool}\n", + "[INFO] [1712656207.989050]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712656207.989341]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.989850]: Instances: []\n", + "[INFO] [1712656207.990121]: Direct Instances: []\n", + "[INFO] [1712656207.990413]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712656207.990648]: -------------------\n", + "[INFO] [1712656207.990873]: SOMA.Cutting \n", + "[INFO] [1712656207.991109]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712656207.991381]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656207.991637]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712656207.991916]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656207.992391]: Instances: []\n", + "[INFO] [1712656207.992661]: Direct Instances: []\n", + "[INFO] [1712656207.992927]: Inverse Restrictions: []\n", + "[INFO] [1712656207.993161]: -------------------\n", + "[INFO] [1712656207.993391]: SOMA.CuttingTool \n", + "[INFO] [1712656207.993643]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", + "[INFO] [1712656207.993885]: Ancestors: {DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656207.994159]: Subclasses: [SOMA.Knife]\n", + "[INFO] [1712656207.994455]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712656207.994949]: Instances: []\n", + "[INFO] [1712656207.995211]: Direct Instances: []\n", + "[INFO] [1712656207.995457]: Inverse Restrictions: []\n", + "[INFO] [1712656207.995696]: -------------------\n", + "[INFO] [1712656207.995926]: SOMA.DesignedTool \n", + "[INFO] [1712656207.996155]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712656207.996390]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656207.996635]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712656207.996974]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656207.997505]: Instances: []\n", + "[INFO] [1712656207.997762]: Direct Instances: []\n", + "[INFO] [1712656207.998014]: Inverse Restrictions: []\n", + "[INFO] [1712656207.998255]: -------------------\n", + "[INFO] [1712656207.998496]: SOMA.Shaping \n", + "[INFO] [1712656207.998772]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712656207.999042]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Shaping, SOMA.Disposition}\n", + "[INFO] [1712656207.999291]: Subclasses: []\n", + "[INFO] [1712656207.999587]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.000070]: Instances: []\n", + "[INFO] [1712656208.000320]: Direct Instances: []\n", + "[INFO] [1712656208.000591]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712656208.000836]: -------------------\n", + "[INFO] [1712656208.001082]: SOMA.Database \n", + "[INFO] [1712656208.001316]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656208.001583]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.001853]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712656208.002389]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.003232]: Instances: []\n", + "[INFO] [1712656208.003623]: Direct Instances: []\n", + "[INFO] [1712656208.004022]: Inverse Restrictions: []\n", + "[INFO] [1712656208.004393]: -------------------\n", + "[INFO] [1712656208.004774]: SOMA.SoftwareRole \n", + "[INFO] [1712656208.005190]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712656208.005593]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.005992]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712656208.006465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.007295]: Instances: []\n", + "[INFO] [1712656208.007687]: Direct Instances: []\n", + "[INFO] [1712656208.008171]: Inverse Restrictions: []\n", + "[INFO] [1712656208.008538]: -------------------\n", + "[INFO] [1712656208.009130]: SOMA.Deciding \n", + "[INFO] [1712656208.009586]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656208.010018]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding}\n", + "[INFO] [1712656208.010443]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712656208.010928]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656208.011761]: Instances: []\n", + "[INFO] [1712656208.012164]: Direct Instances: []\n", + "[INFO] [1712656208.012553]: Inverse Restrictions: []\n", + "[INFO] [1712656208.012924]: -------------------\n", + "[INFO] [1712656208.013232]: SOMA.DerivingInformation \n", + "[INFO] [1712656208.013550]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712656208.013837]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712656208.014126]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712656208.014451]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isTaskOfOutputRole, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712656208.015011]: Instances: []\n", + "[INFO] [1712656208.015304]: Direct Instances: []\n", + "[INFO] [1712656208.015582]: Inverse Restrictions: []\n", + "[INFO] [1712656208.015838]: -------------------\n", + "[INFO] [1712656208.016090]: SOMA.DeductiveReasoning \n", + "[INFO] [1712656208.016337]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712656208.016618]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.DeductiveReasoning, SOMA.Reasoning}\n", + "[INFO] [1712656208.016891]: Subclasses: []\n", + "[INFO] [1712656208.017204]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.017708]: Instances: []\n", + "[INFO] [1712656208.017988]: Direct Instances: []\n", + "[INFO] [1712656208.018252]: Inverse Restrictions: []\n", + "[INFO] [1712656208.018508]: -------------------\n", + "[INFO] [1712656208.018751]: SOMA.Deformation \n", + "[INFO] [1712656208.019029]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712656208.019315]: Ancestors: {DUL.Concept, SOMA.Alteration, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Deformation, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656208.019570]: Subclasses: []\n", + "[INFO] [1712656208.019904]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712656208.020419]: Instances: []\n", + "[INFO] [1712656208.020701]: Direct Instances: []\n", + "[INFO] [1712656208.020967]: Inverse Restrictions: []\n", + "[INFO] [1712656208.021212]: -------------------\n", + "[INFO] [1712656208.021464]: SOMA.ShapedObject \n", + "[INFO] [1712656208.021761]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712656208.022052]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.ShapedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.022311]: Subclasses: []\n", + "[INFO] [1712656208.022626]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.023149]: Instances: []\n", + "[INFO] [1712656208.023431]: Direct Instances: []\n", + "[INFO] [1712656208.023771]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712656208.024021]: -------------------\n", + "[INFO] [1712656208.024265]: SOMA.FluidFlow \n", + "[INFO] [1712656208.024551]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712656208.024859]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, SOMA.FluidFlow, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.025127]: Subclasses: []\n", + "[INFO] [1712656208.025436]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.025936]: Instances: []\n", + "[INFO] [1712656208.026230]: Direct Instances: []\n", + "[INFO] [1712656208.026504]: Inverse Restrictions: []\n", + "[INFO] [1712656208.026753]: -------------------\n", + "[INFO] [1712656208.026995]: SOMA.Shifting \n", + "[INFO] [1712656208.027286]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712656208.027600]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition, SOMA.Shifting}\n", + "[INFO] [1712656208.027870]: Subclasses: []\n", + "[INFO] [1712656208.028213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.028711]: Instances: []\n", + "[INFO] [1712656208.028987]: Direct Instances: []\n", + "[INFO] [1712656208.029346]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712656208.029603]: -------------------\n", + "[INFO] [1712656208.029846]: SOMA.DependentPlace \n", + "[INFO] [1712656208.030086]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712656208.030371]: Ancestors: {SOMA.Feature, DUL.Object, owl.Thing, DUL.Entity, SOMA.DependentPlace}\n", + "[INFO] [1712656208.030627]: Subclasses: []\n", + "[INFO] [1712656208.030939]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.031439]: Instances: []\n", + "[INFO] [1712656208.031697]: Direct Instances: []\n", + "[INFO] [1712656208.031953]: Inverse Restrictions: []\n", + "[INFO] [1712656208.032190]: -------------------\n", + "[INFO] [1712656208.032445]: SOMA.Deposit \n", + "[INFO] [1712656208.032698]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712656208.032986]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Deposit, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.033248]: Subclasses: []\n", + "[INFO] [1712656208.033547]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.034066]: Instances: []\n", + "[INFO] [1712656208.034350]: Direct Instances: []\n", + "[INFO] [1712656208.034659]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712656208.034906]: -------------------\n", + "[INFO] [1712656208.035154]: SOMA.DepositedObject \n", + "[INFO] [1712656208.035409]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656208.035701]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.DepositedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.035975]: Subclasses: []\n", + "[INFO] [1712656208.036281]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.036803]: Instances: []\n", + "[INFO] [1712656208.037138]: Direct Instances: []\n", + "[INFO] [1712656208.037456]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712656208.037714]: -------------------\n", + "[INFO] [1712656208.037957]: SOMA.InformationAcquisition \n", + "[INFO] [1712656208.038194]: Super classes: [owl.Thing]\n", + "[INFO] [1712656208.038431]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712656208.038692]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712656208.038990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712656208.039539]: Instances: []\n", + "[INFO] [1712656208.039812]: Direct Instances: []\n", + "[INFO] [1712656208.040117]: Inverse Restrictions: []\n", + "[INFO] [1712656208.040375]: -------------------\n", + "[INFO] [1712656208.040617]: SOMA.Premise \n", + "[INFO] [1712656208.040863]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712656208.041141]: Ancestors: {DUL.Concept, SOMA.Item, DUL.Entity, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Premise}\n", + "[INFO] [1712656208.041381]: Subclasses: []\n", + "[INFO] [1712656208.041667]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.042167]: Instances: []\n", + "[INFO] [1712656208.042452]: Direct Instances: []\n", + "[INFO] [1712656208.042762]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656208.043005]: -------------------\n", + "[INFO] [1712656208.043242]: SOMA.FunctionalPart \n", + "[INFO] [1712656208.043923]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712656208.044195]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.044456]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712656208.044766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.045323]: Instances: []\n", + "[INFO] [1712656208.045601]: Direct Instances: []\n", + "[INFO] [1712656208.045880]: Inverse Restrictions: []\n", + "[INFO] [1712656208.046157]: -------------------\n", + "[INFO] [1712656208.046415]: SOMA.Graspability \n", + "[INFO] [1712656208.046663]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712656208.046962]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Graspability, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656208.047223]: Subclasses: []\n", + "[INFO] [1712656208.047518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.048007]: Instances: []\n", + "[INFO] [1712656208.048273]: Direct Instances: []\n", + "[INFO] [1712656208.048578]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712656208.048833]: -------------------\n", + "[INFO] [1712656208.049090]: SOMA.DesignedSpade \n", + "[INFO] [1712656208.049330]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656208.049604]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.DesignedSpade, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.049850]: Subclasses: []\n", + "[INFO] [1712656208.050174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.050683]: Instances: []\n", + "[INFO] [1712656208.050948]: Direct Instances: []\n", + "[INFO] [1712656208.051242]: Inverse Restrictions: [SOMA.Spatula]\n", + "[INFO] [1712656208.051503]: -------------------\n", + "[INFO] [1712656208.051755]: SOMA.DessertFork \n", + "[INFO] [1712656208.051987]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712656208.052257]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.DessertFork, DUL.PhysicalObject, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712656208.052499]: Subclasses: []\n", + "[INFO] [1712656208.052788]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.053423]: Instances: []\n", + "[INFO] [1712656208.053770]: Direct Instances: []\n", + "[INFO] [1712656208.054058]: Inverse Restrictions: []\n", + "[INFO] [1712656208.054310]: -------------------\n", + "[INFO] [1712656208.054637]: SOMA.Fork \n", + "[INFO] [1712656208.054919]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712656208.055301]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712656208.055590]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", + "[INFO] [1712656208.055894]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712656208.056383]: Instances: []\n", + "[INFO] [1712656208.056659]: Direct Instances: []\n", + "[INFO] [1712656208.056926]: Inverse Restrictions: []\n", + "[INFO] [1712656208.057162]: -------------------\n", + "[INFO] [1712656208.057391]: SOMA.Destination \n", + "[INFO] [1712656208.057621]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712656208.057870]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Destination, DUL.Entity, SOMA.Location}\n", + "[INFO] [1712656208.058120]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712656208.058403]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.058880]: Instances: []\n", + "[INFO] [1712656208.059149]: Direct Instances: []\n", + "[INFO] [1712656208.059482]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712656208.059730]: -------------------\n", + "[INFO] [1712656208.059964]: SOMA.Location \n", + "[INFO] [1712656208.060204]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712656208.060455]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Location}\n", + "[INFO] [1712656208.060710]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712656208.061128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.061708]: Instances: []\n", + "[INFO] [1712656208.062018]: Direct Instances: []\n", + "[INFO] [1712656208.062484]: Inverse Restrictions: []\n", + "[INFO] [1712656208.062846]: -------------------\n", + "[INFO] [1712656208.063200]: SOMA.DestroyedObject \n", + "[INFO] [1712656208.063544]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656208.063926]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.DestroyedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.064266]: Subclasses: []\n", + "[INFO] [1712656208.064681]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.065313]: Instances: []\n", + "[INFO] [1712656208.065718]: Direct Instances: []\n", + "[INFO] [1712656208.066154]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712656208.066529]: -------------------\n", + "[INFO] [1712656208.066896]: SOMA.Destruction \n", + "[INFO] [1712656208.067261]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712656208.067676]: Ancestors: {DUL.Concept, SOMA.Destruction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656208.068050]: Subclasses: []\n", + "[INFO] [1712656208.068475]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.069122]: Instances: []\n", + "[INFO] [1712656208.069531]: Direct Instances: []\n", + "[INFO] [1712656208.069904]: Inverse Restrictions: []\n", + "[INFO] [1712656208.070256]: -------------------\n", + "[INFO] [1712656208.070602]: SOMA.DetectedObject \n", + "[INFO] [1712656208.071139]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656208.071717]: Ancestors: {DUL.Concept, SOMA.DetectedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.072263]: Subclasses: []\n", + "[INFO] [1712656208.072897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.073832]: Instances: []\n", + "[INFO] [1712656208.074374]: Direct Instances: []\n", + "[INFO] [1712656208.074888]: Inverse Restrictions: []\n", + "[INFO] [1712656208.075402]: -------------------\n", + "[INFO] [1712656208.075892]: SOMA.DeviceState \n", + "[INFO] [1712656208.076408]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656208.076952]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity, SOMA.DeviceState}\n", + "[INFO] [1712656208.077470]: Subclasses: []\n", + "[INFO] [1712656208.078069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.078992]: Instances: []\n", + "[INFO] [1712656208.079504]: Direct Instances: []\n", + "[INFO] [1712656208.079997]: Inverse Restrictions: []\n", + "[INFO] [1712656208.080486]: -------------------\n", + "[INFO] [1712656208.080981]: SOMA.DeviceStateRange \n", + "[INFO] [1712656208.081454]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656208.083316]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceStateRange}\n", + "[INFO] [1712656208.083870]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712656208.084483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.085256]: Instances: []\n", + "[INFO] [1712656208.085673]: Direct Instances: []\n", + "[INFO] [1712656208.086040]: Inverse Restrictions: []\n", + "[INFO] [1712656208.086378]: -------------------\n", + "[INFO] [1712656208.086731]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712656208.087073]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712656208.087434]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOff, DUL.Entity, SOMA.DeviceStateRange}\n", + "[INFO] [1712656208.087789]: Subclasses: []\n", + "[INFO] [1712656208.088183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.088779]: Instances: []\n", + "[INFO] [1712656208.089165]: Direct Instances: []\n", + "[INFO] [1712656208.089556]: Inverse Restrictions: []\n", + "[INFO] [1712656208.089884]: -------------------\n", + "[INFO] [1712656208.090212]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712656208.090535]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712656208.090905]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOn, DUL.Entity, SOMA.DeviceStateRange}\n", + "[INFO] [1712656208.091241]: Subclasses: []\n", + "[INFO] [1712656208.091633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.092230]: Instances: []\n", + "[INFO] [1712656208.092589]: Direct Instances: []\n", + "[INFO] [1712656208.093006]: Inverse Restrictions: []\n", + "[INFO] [1712656208.093337]: -------------------\n", + "[INFO] [1712656208.093599]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712656208.093845]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712656208.094093]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.094358]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712656208.094650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.095149]: Instances: []\n", + "[INFO] [1712656208.095415]: Direct Instances: []\n", + "[INFO] [1712656208.095680]: Inverse Restrictions: []\n", + "[INFO] [1712656208.095915]: -------------------\n", + "[INFO] [1712656208.096145]: SOMA.Dicing \n", + "[INFO] [1712656208.096375]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712656208.096652]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Dicing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656208.096958]: Subclasses: []\n", + "[INFO] [1712656208.097267]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.097764]: Instances: []\n", + "[INFO] [1712656208.098039]: Direct Instances: []\n", + "[INFO] [1712656208.098294]: Inverse Restrictions: []\n", + "[INFO] [1712656208.098530]: -------------------\n", + "[INFO] [1712656208.098770]: SOMA.DinnerPlate \n", + "[INFO] [1712656208.099039]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712656208.099328]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DinnerPlate, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656208.099579]: Subclasses: []\n", + "[INFO] [1712656208.099872]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.100389]: Instances: []\n", + "[INFO] [1712656208.100677]: Direct Instances: []\n", + "[INFO] [1712656208.100951]: Inverse Restrictions: []\n", + "[INFO] [1712656208.101208]: -------------------\n", + "[INFO] [1712656208.101468]: SOMA.DirectedMotion \n", + "[INFO] [1712656208.101721]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712656208.101979]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.102265]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712656208.102601]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.103154]: Instances: []\n", + "[INFO] [1712656208.103437]: Direct Instances: []\n", + "[INFO] [1712656208.103715]: Inverse Restrictions: []\n", + "[INFO] [1712656208.103980]: -------------------\n", + "[INFO] [1712656208.104226]: SOMA.UndirectedMotion \n", + "[INFO] [1712656208.104466]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712656208.104745]: Ancestors: {DUL.Concept, SOMA.UndirectedMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.105008]: Subclasses: []\n", + "[INFO] [1712656208.105324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.105834]: Instances: []\n", + "[INFO] [1712656208.106105]: Direct Instances: []\n", + "[INFO] [1712656208.106386]: Inverse Restrictions: []\n", + "[INFO] [1712656208.106637]: -------------------\n", + "[INFO] [1712656208.106877]: SOMA.Dirty \n", + "[INFO] [1712656208.107106]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712656208.107375]: Ancestors: {SOMA.Dirty, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", + "[INFO] [1712656208.107638]: Subclasses: []\n", + "[INFO] [1712656208.107944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.108444]: Instances: []\n", + "[INFO] [1712656208.108715]: Direct Instances: []\n", + "[INFO] [1712656208.109167]: Inverse Restrictions: []\n", + "[INFO] [1712656208.109563]: -------------------\n", + "[INFO] [1712656208.109950]: SOMA.Discourse \n", + "[INFO] [1712656208.110326]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656208.110760]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Discourse}\n", + "[INFO] [1712656208.111174]: Subclasses: []\n", + "[INFO] [1712656208.111664]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.112490]: Instances: []\n", + "[INFO] [1712656208.112910]: Direct Instances: []\n", + "[INFO] [1712656208.113326]: Inverse Restrictions: []\n", + "[INFO] [1712656208.113722]: -------------------\n", + "[INFO] [1712656208.114124]: SOMA.Dishwasher \n", + "[INFO] [1712656208.114514]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", + "[INFO] [1712656208.114959]: Ancestors: {SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Dishwasher, DUL.Entity}\n", + "[INFO] [1712656208.115359]: Subclasses: []\n", + "[INFO] [1712656208.115847]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.116669]: Instances: []\n", + "[INFO] [1712656208.117107]: Direct Instances: []\n", + "[INFO] [1712656208.117501]: Inverse Restrictions: []\n", + "[INFO] [1712656208.117881]: -------------------\n", + "[INFO] [1712656208.118257]: SOMA.DishwasherTab \n", + "[INFO] [1712656208.118639]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712656208.119144]: Ancestors: {DUL.Substance, DUL.DesignedArtifact, SOMA.DishwasherTab, DUL.PhysicalBody, DUL.PhysicalArtifact, DUL.DesignedSubstance, DUL.Object, owl.Thing, DUL.FunctionalSubstance, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.119562]: Subclasses: []\n", + "[INFO] [1712656208.120053]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.120872]: Instances: []\n", + "[INFO] [1712656208.121342]: Direct Instances: []\n", + "[INFO] [1712656208.121762]: Inverse Restrictions: []\n", + "[INFO] [1712656208.122153]: -------------------\n", + "[INFO] [1712656208.122532]: SOMA.Dispenser \n", + "[INFO] [1712656208.122908]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712656208.123324]: Ancestors: {SOMA.DesignedContainer, SOMA.Dispenser, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.123716]: Subclasses: [SOMA.SugarDispenser]\n", + "[INFO] [1712656208.124193]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.124958]: Instances: []\n", + "[INFO] [1712656208.125549]: Direct Instances: []\n", + "[INFO] [1712656208.125959]: Inverse Restrictions: []\n", + "[INFO] [1712656208.126331]: -------------------\n", + "[INFO] [1712656208.126693]: SOMA.Distancing \n", + "[INFO] [1712656208.127051]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712656208.127453]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Distancing}\n", + "[INFO] [1712656208.127851]: Subclasses: []\n", + "[INFO] [1712656208.128267]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.128873]: Instances: []\n", + "[INFO] [1712656208.129249]: Direct Instances: []\n", + "[INFO] [1712656208.129617]: Inverse Restrictions: []\n", + "[INFO] [1712656208.129976]: -------------------\n", + "[INFO] [1712656208.130337]: SOMA.Door \n", + "[INFO] [1712656208.130677]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656208.131066]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Door, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.131433]: Subclasses: []\n", + "[INFO] [1712656208.131838]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.132428]: Instances: []\n", + "[INFO] [1712656208.132794]: Direct Instances: []\n", + "[INFO] [1712656208.133266]: Inverse Restrictions: [SOMA.Refrigerator]\n", + "[INFO] [1712656208.133822]: -------------------\n", + "[INFO] [1712656208.134288]: SOMA.Drawer \n", + "[INFO] [1712656208.134674]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", + "[INFO] [1712656208.135279]: Ancestors: {SOMA.DesignedContainer, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Drawer, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.135821]: Subclasses: []\n", + "[INFO] [1712656208.136440]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.137208]: Instances: []\n", + "[INFO] [1712656208.137648]: Direct Instances: []\n", + "[INFO] [1712656208.137955]: Inverse Restrictions: []\n", + "[INFO] [1712656208.138233]: -------------------\n", + "[INFO] [1712656208.138494]: SOMA.Dreaming \n", + "[INFO] [1712656208.138745]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656208.139035]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Dreaming}\n", + "[INFO] [1712656208.139296]: Subclasses: []\n", + "[INFO] [1712656208.139611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.140137]: Instances: []\n", + "[INFO] [1712656208.140432]: Direct Instances: []\n", + "[INFO] [1712656208.140701]: Inverse Restrictions: []\n", + "[INFO] [1712656208.140966]: -------------------\n", + "[INFO] [1712656208.141214]: SOMA.Driving \n", + "[INFO] [1712656208.141465]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656208.141762]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Driving, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.142028]: Subclasses: []\n", + "[INFO] [1712656208.142347]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.142852]: Instances: []\n", + "[INFO] [1712656208.143146]: Direct Instances: []\n", + "[INFO] [1712656208.143414]: Inverse Restrictions: []\n", + "[INFO] [1712656208.143660]: -------------------\n", + "[INFO] [1712656208.143903]: SOMA.Flying \n", + "[INFO] [1712656208.144149]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656208.144436]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Flying, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.144705]: Subclasses: []\n", + "[INFO] [1712656208.145033]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.145547]: Instances: []\n", + "[INFO] [1712656208.145847]: Direct Instances: []\n", + "[INFO] [1712656208.146125]: Inverse Restrictions: []\n", + "[INFO] [1712656208.146377]: -------------------\n", + "[INFO] [1712656208.146619]: SOMA.Swimming \n", + "[INFO] [1712656208.146858]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656208.147142]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType, SOMA.Swimming}\n", + "[INFO] [1712656208.147416]: Subclasses: []\n", + "[INFO] [1712656208.147745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.148260]: Instances: []\n", + "[INFO] [1712656208.148532]: Direct Instances: []\n", + "[INFO] [1712656208.148805]: Inverse Restrictions: []\n", + "[INFO] [1712656208.149083]: -------------------\n", + "[INFO] [1712656208.149333]: SOMA.Walking \n", + "[INFO] [1712656208.149574]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656208.149857]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Walking, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.150115]: Subclasses: []\n", + "[INFO] [1712656208.150412]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.150934]: Instances: []\n", + "[INFO] [1712656208.151242]: Direct Instances: []\n", + "[INFO] [1712656208.151517]: Inverse Restrictions: []\n", + "[INFO] [1712656208.151757]: -------------------\n", + "[INFO] [1712656208.151996]: SOMA.Dropping \n", + "[INFO] [1712656208.152238]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656208.152529]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Dropping, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656208.152791]: Subclasses: []\n", + "[INFO] [1712656208.153111]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.153608]: Instances: []\n", + "[INFO] [1712656208.153897]: Direct Instances: []\n", + "[INFO] [1712656208.154164]: Inverse Restrictions: []\n", + "[INFO] [1712656208.154406]: -------------------\n", + "[INFO] [1712656208.154644]: SOMA.Placing \n", + "[INFO] [1712656208.154879]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656208.155154]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Placing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.155424]: Subclasses: []\n", + "[INFO] [1712656208.155729]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.156235]: Instances: [SOMA.placing]\n", + "[INFO] [1712656208.156531]: Direct Instances: [SOMA.placing]\n", + "[INFO] [1712656208.156811]: Inverse Restrictions: []\n", + "[INFO] [1712656208.157069]: -------------------\n", + "[INFO] [1712656208.157308]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712656208.157600]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712656208.157902]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.ESTSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.158170]: Subclasses: []\n", + "[INFO] [1712656208.158480]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656208.158971]: Instances: []\n", + "[INFO] [1712656208.159259]: Direct Instances: []\n", + "[INFO] [1712656208.159516]: Inverse Restrictions: []\n", + "[INFO] [1712656208.159757]: -------------------\n", + "[INFO] [1712656208.159997]: SOMA.ExistingObjectRole \n", + "[INFO] [1712656208.160245]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656208.160560]: Ancestors: {SOMA.ExistingObjectRole, DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.160851]: Subclasses: []\n", + "[INFO] [1712656208.161180]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.161689]: Instances: []\n", + "[INFO] [1712656208.161965]: Direct Instances: []\n", + "[INFO] [1712656208.162280]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712656208.162534]: -------------------\n", + "[INFO] [1712656208.162788]: SOMA.Effort \n", + "[INFO] [1712656208.163041]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712656208.163312]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity, SOMA.Effort}\n", + "[INFO] [1712656208.163565]: Subclasses: []\n", + "[INFO] [1712656208.163859]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.164371]: Instances: []\n", + "[INFO] [1712656208.164647]: Direct Instances: []\n", + "[INFO] [1712656208.164913]: Inverse Restrictions: []\n", + "[INFO] [1712656208.165216]: -------------------\n", + "[INFO] [1712656208.165499]: SOMA.EnclosedObject \n", + "[INFO] [1712656208.165747]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712656208.166026]: Ancestors: {DUL.Concept, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.166309]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712656208.166616]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.167126]: Instances: []\n", + "[INFO] [1712656208.167413]: Direct Instances: []\n", + "[INFO] [1712656208.167735]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712656208.167991]: -------------------\n", + "[INFO] [1712656208.168237]: SOMA.Enclosing \n", + "[INFO] [1712656208.168483]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712656208.168743]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656208.169025]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712656208.169334]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.169838]: Instances: []\n", + "[INFO] [1712656208.170118]: Direct Instances: []\n", + "[INFO] [1712656208.170401]: Inverse Restrictions: []\n", + "[INFO] [1712656208.170646]: -------------------\n", + "[INFO] [1712656208.170885]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712656208.171120]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656208.171392]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.171674]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712656208.171980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.172477]: Instances: []\n", + "[INFO] [1712656208.172750]: Direct Instances: []\n", + "[INFO] [1712656208.173034]: Inverse Restrictions: []\n", + "[INFO] [1712656208.173283]: -------------------\n", + "[INFO] [1712656208.173523]: SOMA.Manipulating \n", + "[INFO] [1712656208.173801]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712656208.174055]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.174345]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712656208.174653]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.175178]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712656208.175452]: Direct Instances: []\n", + "[INFO] [1712656208.175735]: Inverse Restrictions: []\n", + "[INFO] [1712656208.175977]: -------------------\n", + "[INFO] [1712656208.176214]: SOMA.Episode \n", + "[INFO] [1712656208.176445]: Super classes: [DUL.Situation]\n", + "[INFO] [1712656208.176706]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing}\n", + "[INFO] [1712656208.177015]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712656208.177339]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.177843]: Instances: []\n", + "[INFO] [1712656208.178129]: Direct Instances: []\n", + "[INFO] [1712656208.178391]: Inverse Restrictions: []\n", + "[INFO] [1712656208.178637]: -------------------\n", + "[INFO] [1712656208.178880]: SOMA.ExcludedObject \n", + "[INFO] [1712656208.179130]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656208.179406]: Ancestors: {DUL.Concept, SOMA.ExcludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.179684]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712656208.179992]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.180493]: Instances: []\n", + "[INFO] [1712656208.180786]: Direct Instances: []\n", + "[INFO] [1712656208.181191]: Inverse Restrictions: []\n", + "[INFO] [1712656208.181455]: -------------------\n", + "[INFO] [1712656208.181695]: SOMA.ExecutableFile \n", + "[INFO] [1712656208.181929]: Super classes: [owl.Thing]\n", + "[INFO] [1712656208.183178]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", + "[INFO] [1712656208.183478]: Subclasses: []\n", + "[INFO] [1712656208.183800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.realizes]\n", + "[INFO] [1712656208.184317]: Instances: []\n", + "[INFO] [1712656208.184605]: Direct Instances: []\n", + "[INFO] [1712656208.185733]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712656208.186133]: -------------------\n", + "[INFO] [1712656208.186409]: SOMA.Executable_Code \n", + "[INFO] [1712656208.186659]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712656208.187897]: Ancestors: {SOMA.Computer_Program, owl.Thing, SOMA.Executable_Code}\n", + "[INFO] [1712656208.188203]: Subclasses: []\n", + "[INFO] [1712656208.188548]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656208.189068]: Instances: []\n", + "[INFO] [1712656208.189345]: Direct Instances: []\n", + "[INFO] [1712656208.189715]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712656208.189988]: -------------------\n", + "[INFO] [1712656208.190237]: SOMA.ExecutableFormat \n", + "[INFO] [1712656208.190483]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712656208.190769]: Ancestors: {SOMA.ExecutableFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.191024]: Subclasses: []\n", + "[INFO] [1712656208.191339]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.191867]: Instances: []\n", + "[INFO] [1712656208.192162]: Direct Instances: []\n", + "[INFO] [1712656208.192495]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712656208.192746]: -------------------\n", + "[INFO] [1712656208.192996]: SOMA.SchematicTheory \n", + "[INFO] [1712656208.193235]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712656208.193498]: Ancestors: {SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.193772]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712656208.194078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.194603]: Instances: []\n", + "[INFO] [1712656208.194894]: Direct Instances: []\n", + "[INFO] [1712656208.195169]: Inverse Restrictions: []\n", + "[INFO] [1712656208.195413]: -------------------\n", + "[INFO] [1712656208.195659]: SOMA.ExecutableSoftware \n", + "[INFO] [1712656208.195896]: Super classes: [owl.Thing]\n", + "[INFO] [1712656208.196388]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", + "[INFO] [1712656208.196680]: Subclasses: []\n", + "[INFO] [1712656208.196999]: Properties: [rdf-schema.isDefinedBy, DUL.hasMember, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.197497]: Instances: []\n", + "[INFO] [1712656208.197770]: Direct Instances: []\n", + "[INFO] [1712656208.198017]: Inverse Restrictions: []\n", + "[INFO] [1712656208.198263]: -------------------\n", + "[INFO] [1712656208.198500]: SOMA.Software \n", + "[INFO] [1712656208.198774]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712656208.199054]: Ancestors: {DUL.Design, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, SOMA.Software, DUL.Entity}\n", + "[INFO] [1712656208.199321]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712656208.199640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.describes]\n", + "[INFO] [1712656208.200140]: Instances: []\n", + "[INFO] [1712656208.200404]: Direct Instances: []\n", + "[INFO] [1712656208.200809]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656208.201083]: -------------------\n", + "[INFO] [1712656208.201337]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712656208.201578]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712656208.201824]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.202088]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712656208.202402]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.202916]: Instances: []\n", + "[INFO] [1712656208.203190]: Direct Instances: []\n", + "[INFO] [1712656208.203458]: Inverse Restrictions: []\n", + "[INFO] [1712656208.203696]: -------------------\n", + "[INFO] [1712656208.203941]: SOMA.ExperiencerRole \n", + "[INFO] [1712656208.204180]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712656208.204427]: Ancestors: {DUL.Concept, SOMA.ExperiencerRole, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", + "[INFO] [1712656208.204683]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712656208.204985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.205494]: Instances: []\n", + "[INFO] [1712656208.205773]: Direct Instances: []\n", + "[INFO] [1712656208.206037]: Inverse Restrictions: []\n", + "[INFO] [1712656208.206280]: -------------------\n", + "[INFO] [1712656208.206526]: SOMA.ExtractedObject \n", + "[INFO] [1712656208.206765]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656208.207042]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.ExtractedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.207283]: Subclasses: []\n", + "[INFO] [1712656208.207579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.208086]: Instances: []\n", + "[INFO] [1712656208.208358]: Direct Instances: []\n", + "[INFO] [1712656208.208616]: Inverse Restrictions: []\n", + "[INFO] [1712656208.208859]: -------------------\n", + "[INFO] [1712656208.209094]: SOMA.PhysicalQuality \n", + "[INFO] [1712656208.209344]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712656208.209594]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", + "[INFO] [1712656208.209857]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712656208.210159]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf, rdf-schema.label]\n", + "[INFO] [1712656208.211041]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712656208.211453]: Direct Instances: []\n", + "[INFO] [1712656208.211756]: Inverse Restrictions: []\n", + "[INFO] [1712656208.212023]: -------------------\n", + "[INFO] [1712656208.212279]: SOMA.FailedAttempt \n", + "[INFO] [1712656208.212522]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712656208.212834]: Ancestors: {DUL.Description, SOMA.FailedAttempt, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.213105]: Subclasses: []\n", + "[INFO] [1712656208.213426]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.213939]: Instances: []\n", + "[INFO] [1712656208.214216]: Direct Instances: []\n", + "[INFO] [1712656208.214464]: Inverse Restrictions: []\n", + "[INFO] [1712656208.214728]: -------------------\n", + "[INFO] [1712656208.214991]: SOMA.FaultySoftware \n", + "[INFO] [1712656208.215245]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712656208.215560]: Ancestors: {SOMA.FaultySoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656208.215816]: Subclasses: []\n", + "[INFO] [1712656208.216119]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.216636]: Instances: []\n", + "[INFO] [1712656208.216939]: Direct Instances: []\n", + "[INFO] [1712656208.217201]: Inverse Restrictions: []\n", + "[INFO] [1712656208.217440]: -------------------\n", + "[INFO] [1712656208.217678]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712656208.217920]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712656208.218177]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656208.218455]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712656208.218764]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.219269]: Instances: []\n", + "[INFO] [1712656208.219561]: Direct Instances: []\n", + "[INFO] [1712656208.219839]: Inverse Restrictions: []\n", + "[INFO] [1712656208.220079]: -------------------\n", + "[INFO] [1712656208.220316]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712656208.220550]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712656208.220808]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.PhysicalAcquiring, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656208.221082]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712656208.221390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.221882]: Instances: []\n", + "[INFO] [1712656208.222166]: Direct Instances: []\n", + "[INFO] [1712656208.222432]: Inverse Restrictions: []\n", + "[INFO] [1712656208.222670]: -------------------\n", + "[INFO] [1712656208.222902]: SOMA.Finger \n", + "[INFO] [1712656208.223166]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712656208.223452]: Ancestors: {DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Finger, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.223717]: Subclasses: []\n", + "[INFO] [1712656208.224033]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isPartOf]\n", + "[INFO] [1712656208.224526]: Instances: []\n", + "[INFO] [1712656208.224810]: Direct Instances: []\n", + "[INFO] [1712656208.225084]: Inverse Restrictions: []\n", + "[INFO] [1712656208.225330]: -------------------\n", + "[INFO] [1712656208.225572]: SOMA.Hand \n", + "[INFO] [1712656208.225815]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712656208.226114]: Ancestors: {DUL.PhysicalBody, SOMA.Hand, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.226396]: Subclasses: []\n", + "[INFO] [1712656208.226711]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.227229]: Instances: []\n", + "[INFO] [1712656208.227512]: Direct Instances: []\n", + "[INFO] [1712656208.227819]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712656208.228078]: -------------------\n", + "[INFO] [1712656208.228324]: SOMA.FixedJoint \n", + "[INFO] [1712656208.228595]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712656208.228947]: Ancestors: {DUL.PhysicalBody, SOMA.Joint, SOMA.FixedJoint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.229339]: Subclasses: []\n", + "[INFO] [1712656208.229770]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.230292]: Instances: []\n", + "[INFO] [1712656208.230598]: Direct Instances: []\n", + "[INFO] [1712656208.230921]: Inverse Restrictions: []\n", + "[INFO] [1712656208.231177]: -------------------\n", + "[INFO] [1712656208.231473]: SOMA.MovableJoint \n", + "[INFO] [1712656208.231722]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712656208.231976]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.232245]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712656208.232542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointState]\n", + "[INFO] [1712656208.233039]: Instances: []\n", + "[INFO] [1712656208.233321]: Direct Instances: []\n", + "[INFO] [1712656208.233623]: Inverse Restrictions: []\n", + "[INFO] [1712656208.233860]: -------------------\n", + "[INFO] [1712656208.234092]: SOMA.Flipping \n", + "[INFO] [1712656208.234337]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712656208.234618]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Flipping, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656208.234871]: Subclasses: []\n", + "[INFO] [1712656208.235178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656208.235682]: Instances: []\n", + "[INFO] [1712656208.235959]: Direct Instances: []\n", + "[INFO] [1712656208.236213]: Inverse Restrictions: []\n", + "[INFO] [1712656208.236444]: -------------------\n", + "[INFO] [1712656208.236671]: SOMA.FloatingJoint \n", + "[INFO] [1712656208.236905]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712656208.237188]: Ancestors: {SOMA.FloatingJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.237435]: Subclasses: []\n", + "[INFO] [1712656208.237722]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.238219]: Instances: []\n", + "[INFO] [1712656208.238492]: Direct Instances: []\n", + "[INFO] [1712656208.238745]: Inverse Restrictions: []\n", + "[INFO] [1712656208.238977]: -------------------\n", + "[INFO] [1712656208.239205]: SOMA.Fluid \n", + "[INFO] [1712656208.239433]: Super classes: [DUL.Substance]\n", + "[INFO] [1712656208.239706]: Ancestors: {DUL.Substance, SOMA.Fluid, DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.239946]: Subclasses: []\n", + "[INFO] [1712656208.240226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.240710]: Instances: []\n", + "[INFO] [1712656208.240983]: Direct Instances: []\n", + "[INFO] [1712656208.241231]: Inverse Restrictions: []\n", + "[INFO] [1712656208.241462]: -------------------\n", + "[INFO] [1712656208.241688]: SOMA.MovedObject \n", + "[INFO] [1712656208.241956]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712656208.242253]: Ancestors: {SOMA.MovedObject, DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.242511]: Subclasses: []\n", + "[INFO] [1712656208.242813]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.243301]: Instances: []\n", + "[INFO] [1712656208.243587]: Direct Instances: []\n", + "[INFO] [1712656208.244375]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712656208.244634]: -------------------\n", + "[INFO] [1712656208.244882]: SOMA.Focusing \n", + "[INFO] [1712656208.245120]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712656208.245401]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.AttentionShift, DUL.SocialObject, SOMA.MentalTask, DUL.Entity, SOMA.Focusing}\n", + "[INFO] [1712656208.245655]: Subclasses: []\n", + "[INFO] [1712656208.245944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.246429]: Instances: []\n", + "[INFO] [1712656208.246705]: Direct Instances: []\n", + "[INFO] [1712656208.246959]: Inverse Restrictions: []\n", + "[INFO] [1712656208.247197]: -------------------\n", + "[INFO] [1712656208.247428]: SOMA.Foolishness \n", + "[INFO] [1712656208.247656]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712656208.247926]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.Foolishness, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.248188]: Subclasses: []\n", + "[INFO] [1712656208.248485]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.248974]: Instances: []\n", + "[INFO] [1712656208.249243]: Direct Instances: []\n", + "[INFO] [1712656208.249485]: Inverse Restrictions: []\n", + "[INFO] [1712656208.249734]: -------------------\n", + "[INFO] [1712656208.249974]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712656208.250206]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712656208.250482]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, SOMA.ForgettingIncorrectInformation, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656208.250721]: Subclasses: []\n", + "[INFO] [1712656208.251003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.251497]: Instances: []\n", + "[INFO] [1712656208.251755]: Direct Instances: []\n", + "[INFO] [1712656208.251998]: Inverse Restrictions: []\n", + "[INFO] [1712656208.252227]: -------------------\n", + "[INFO] [1712656208.252452]: SOMA.InformationDismissal \n", + "[INFO] [1712656208.252728]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712656208.252998]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656208.253259]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712656208.253554]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712656208.254042]: Instances: []\n", + "[INFO] [1712656208.254320]: Direct Instances: []\n", + "[INFO] [1712656208.254582]: Inverse Restrictions: []\n", + "[INFO] [1712656208.254817]: -------------------\n", + "[INFO] [1712656208.255057]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712656208.255290]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712656208.255557]: Ancestors: {SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656208.255797]: Subclasses: []\n", + "[INFO] [1712656208.256080]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.256582]: Instances: []\n", + "[INFO] [1712656208.256845]: Direct Instances: []\n", + "[INFO] [1712656208.257097]: Inverse Restrictions: []\n", + "[INFO] [1712656208.257335]: -------------------\n", + "[INFO] [1712656208.257565]: SOMA.Language \n", + "[INFO] [1712656208.257822]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712656208.258086]: Ancestors: {DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.258347]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712656208.258640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.259159]: Instances: []\n", + "[INFO] [1712656208.259427]: Direct Instances: []\n", + "[INFO] [1712656208.260465]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712656208.260740]: -------------------\n", + "[INFO] [1712656208.260992]: SOMA.FreezerCompartment \n", + "[INFO] [1712656208.261225]: Super classes: [SOMA.Compartment]\n", + "[INFO] [1712656208.261499]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.FreezerCompartment, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart, SOMA.Compartment}\n", + "[INFO] [1712656208.261733]: Subclasses: []\n", + "[INFO] [1712656208.262015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.262512]: Instances: []\n", + "[INFO] [1712656208.262768]: Direct Instances: []\n", + "[INFO] [1712656208.263010]: Inverse Restrictions: []\n", + "[INFO] [1712656208.263243]: -------------------\n", + "[INFO] [1712656208.263471]: SOMA.Item \n", + "[INFO] [1712656208.263711]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656208.263957]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.264218]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712656208.264512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.265039]: Instances: []\n", + "[INFO] [1712656208.265324]: Direct Instances: []\n", + "[INFO] [1712656208.265697]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712656208.265956]: -------------------\n", + "[INFO] [1712656208.266197]: SOMA.FunctionalDesign \n", + "[INFO] [1712656208.266428]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712656208.266690]: Ancestors: {SOMA.FunctionalDesign, DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.266925]: Subclasses: []\n", + "[INFO] [1712656208.267220]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.267702]: Instances: []\n", + "[INFO] [1712656208.267968]: Direct Instances: []\n", + "[INFO] [1712656208.268220]: Inverse Restrictions: []\n", + "[INFO] [1712656208.268453]: -------------------\n", + "[INFO] [1712656208.268678]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712656208.269018]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712656208.269359]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656208.269654]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712656208.269967]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.270492]: Instances: []\n", + "[INFO] [1712656208.270778]: Direct Instances: []\n", + "[INFO] [1712656208.271046]: Inverse Restrictions: []\n", + "[INFO] [1712656208.271289]: -------------------\n", + "[INFO] [1712656208.271523]: SOMA.LocatumRole \n", + "[INFO] [1712656208.271756]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656208.272035]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.LocatumRole, DUL.Entity, SOMA.SpatialRelationRole}\n", + "[INFO] [1712656208.272303]: Subclasses: []\n", + "[INFO] [1712656208.272601]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.273094]: Instances: []\n", + "[INFO] [1712656208.273359]: Direct Instances: []\n", + "[INFO] [1712656208.273696]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712656208.273943]: -------------------\n", + "[INFO] [1712656208.274173]: SOMA.RelatumRole \n", + "[INFO] [1712656208.274403]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656208.274667]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, SOMA.RelatumRole, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SpatialRelationRole}\n", + "[INFO] [1712656208.274924]: Subclasses: []\n", + "[INFO] [1712656208.275226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.275717]: Instances: []\n", + "[INFO] [1712656208.275977]: Direct Instances: []\n", + "[INFO] [1712656208.276308]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712656208.276559]: -------------------\n", + "[INFO] [1712656208.276799]: SOMA.GasCooktop \n", + "[INFO] [1712656208.277030]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712656208.277300]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.GasCooktop, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.277558]: Subclasses: []\n", + "[INFO] [1712656208.277860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.278348]: Instances: []\n", + "[INFO] [1712656208.278605]: Direct Instances: []\n", + "[INFO] [1712656208.278869]: Inverse Restrictions: []\n", + "[INFO] [1712656208.279103]: -------------------\n", + "[INFO] [1712656208.279330]: SOMA.GetTaskParameter \n", + "[INFO] [1712656208.279552]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712656208.279818]: Ancestors: {SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712656208.280084]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712656208.280374]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.280954]: Instances: []\n", + "[INFO] [1712656208.281363]: Direct Instances: []\n", + "[INFO] [1712656208.281749]: Inverse Restrictions: []\n", + "[INFO] [1712656208.282107]: -------------------\n", + "[INFO] [1712656208.282464]: SOMA.Planning \n", + "[INFO] [1712656208.283135]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712656208.283447]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712656208.283729]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712656208.284031]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isTaskOf]\n", + "[INFO] [1712656208.284542]: Instances: []\n", + "[INFO] [1712656208.284826]: Direct Instances: []\n", + "[INFO] [1712656208.285096]: Inverse Restrictions: []\n", + "[INFO] [1712656208.285331]: -------------------\n", + "[INFO] [1712656208.285559]: SOMA.Glass \n", + "[INFO] [1712656208.285786]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712656208.286052]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool, SOMA.Glass}\n", + "[INFO] [1712656208.286323]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", + "[INFO] [1712656208.286611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.287094]: Instances: []\n", + "[INFO] [1712656208.287341]: Direct Instances: []\n", + "[INFO] [1712656208.287586]: Inverse Restrictions: []\n", + "[INFO] [1712656208.287817]: -------------------\n", + "[INFO] [1712656208.288046]: SOMA.GraphDatabase \n", + "[INFO] [1712656208.288272]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712656208.288534]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.288778]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712656208.289081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.289571]: Instances: []\n", + "[INFO] [1712656208.289840]: Direct Instances: []\n", + "[INFO] [1712656208.290089]: Inverse Restrictions: []\n", + "[INFO] [1712656208.290318]: -------------------\n", + "[INFO] [1712656208.290546]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712656208.290784]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712656208.291058]: Ancestors: {SOMA.Computer_Language, SOMA.GraphQueryLanguage, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.291293]: Subclasses: []\n", + "[INFO] [1712656208.291573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.292074]: Instances: []\n", + "[INFO] [1712656208.292351]: Direct Instances: []\n", + "[INFO] [1712656208.292598]: Inverse Restrictions: []\n", + "[INFO] [1712656208.292844]: -------------------\n", + "[INFO] [1712656208.293081]: SOMA.QueryLanguage \n", + "[INFO] [1712656208.293327]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656208.293576]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.293824]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712656208.294114]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.294606]: Instances: []\n", + "[INFO] [1712656208.294864]: Direct Instances: []\n", + "[INFO] [1712656208.295116]: Inverse Restrictions: []\n", + "[INFO] [1712656208.295344]: -------------------\n", + "[INFO] [1712656208.295573]: SOMA.GraspTransfer \n", + "[INFO] [1712656208.295798]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712656208.296083]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.GraspTransfer, SOMA.Grasping, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.296317]: Subclasses: []\n", + "[INFO] [1712656208.296597]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.297129]: Instances: []\n", + "[INFO] [1712656208.297417]: Direct Instances: []\n", + "[INFO] [1712656208.297669]: Inverse Restrictions: []\n", + "[INFO] [1712656208.297904]: -------------------\n", + "[INFO] [1712656208.298132]: SOMA.Grasping \n", + "[INFO] [1712656208.298357]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656208.298622]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Grasping, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.298891]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712656208.299195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.299685]: Instances: []\n", + "[INFO] [1712656208.299957]: Direct Instances: []\n", + "[INFO] [1712656208.300218]: Inverse Restrictions: []\n", + "[INFO] [1712656208.300450]: -------------------\n", + "[INFO] [1712656208.300675]: SOMA.Releasing \n", + "[INFO] [1712656208.300908]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656208.301177]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Releasing, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.301436]: Subclasses: []\n", + "[INFO] [1712656208.301726]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.302214]: Instances: []\n", + "[INFO] [1712656208.302485]: Direct Instances: []\n", + "[INFO] [1712656208.302739]: Inverse Restrictions: []\n", + "[INFO] [1712656208.302971]: -------------------\n", + "[INFO] [1712656208.303202]: SOMA.GraspingMotion \n", + "[INFO] [1712656208.303426]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712656208.304874]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.305181]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712656208.305513]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.306045]: Instances: []\n", + "[INFO] [1712656208.306349]: Direct Instances: []\n", + "[INFO] [1712656208.306659]: Inverse Restrictions: []\n", + "[INFO] [1712656208.306913]: -------------------\n", + "[INFO] [1712656208.307144]: SOMA.IntermediateGrasp \n", + "[INFO] [1712656208.307372]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712656208.307643]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.IntermediateGrasp, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.307897]: Subclasses: []\n", + "[INFO] [1712656208.308199]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.308681]: Instances: []\n", + "[INFO] [1712656208.308961]: Direct Instances: []\n", + "[INFO] [1712656208.309258]: Inverse Restrictions: []\n", + "[INFO] [1712656208.309503]: -------------------\n", + "[INFO] [1712656208.309741]: SOMA.PowerGrasp \n", + "[INFO] [1712656208.309971]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712656208.310245]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.PowerGrasp, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.310506]: Subclasses: []\n", + "[INFO] [1712656208.310814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.311312]: Instances: []\n", + "[INFO] [1712656208.311570]: Direct Instances: []\n", + "[INFO] [1712656208.311872]: Inverse Restrictions: []\n", + "[INFO] [1712656208.312115]: -------------------\n", + "[INFO] [1712656208.312352]: SOMA.PrecisionGrasp \n", + "[INFO] [1712656208.312581]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712656208.312855]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, SOMA.PrecisionGrasp, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.313094]: Subclasses: []\n", + "[INFO] [1712656208.313431]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.313956]: Instances: []\n", + "[INFO] [1712656208.314237]: Direct Instances: []\n", + "[INFO] [1712656208.314538]: Inverse Restrictions: []\n", + "[INFO] [1712656208.314788]: -------------------\n", + "[INFO] [1712656208.315027]: SOMA.PrehensileMotion \n", + "[INFO] [1712656208.315685]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712656208.315950]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.316210]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712656208.316526]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.317033]: Instances: []\n", + "[INFO] [1712656208.317305]: Direct Instances: []\n", + "[INFO] [1712656208.317565]: Inverse Restrictions: []\n", + "[INFO] [1712656208.317809]: -------------------\n", + "[INFO] [1712656208.318044]: SOMA.ReleasingMotion \n", + "[INFO] [1712656208.318277]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712656208.318545]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.PrehensileMotion, DUL.EventType, SOMA.ReleasingMotion, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.318783]: Subclasses: []\n", + "[INFO] [1712656208.319081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.319568]: Instances: []\n", + "[INFO] [1712656208.319837]: Direct Instances: []\n", + "[INFO] [1712656208.320140]: Inverse Restrictions: []\n", + "[INFO] [1712656208.320382]: -------------------\n", + "[INFO] [1712656208.320615]: SOMA.GreenColor \n", + "[INFO] [1712656208.320852]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712656208.321126]: Ancestors: {SOMA.GreenColor, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656208.321388]: Subclasses: []\n", + "[INFO] [1712656208.321685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.322182]: Instances: []\n", + "[INFO] [1712656208.322458]: Direct Instances: []\n", + "[INFO] [1712656208.322710]: Inverse Restrictions: []\n", + "[INFO] [1712656208.322949]: -------------------\n", + "[INFO] [1712656208.323179]: SOMA.Gripper \n", + "[INFO] [1712656208.323411]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712656208.323680]: Ancestors: {SOMA.Gripper, DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.323939]: Subclasses: []\n", + "[INFO] [1712656208.324233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.324721]: Instances: []\n", + "[INFO] [1712656208.324998]: Direct Instances: []\n", + "[INFO] [1712656208.325255]: Inverse Restrictions: []\n", + "[INFO] [1712656208.325485]: -------------------\n", + "[INFO] [1712656208.325713]: SOMA.PrehensileEffector \n", + "[INFO] [1712656208.325941]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712656208.326188]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.326443]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712656208.326733]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.327215]: Instances: []\n", + "[INFO] [1712656208.327489]: Direct Instances: []\n", + "[INFO] [1712656208.327804]: Inverse Restrictions: []\n", + "[INFO] [1712656208.328057]: -------------------\n", + "[INFO] [1712656208.328290]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712656208.328526]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712656208.328806]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, SOMA.HardwareDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.329055]: Subclasses: []\n", + "[INFO] [1712656208.329338]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.329818]: Instances: []\n", + "[INFO] [1712656208.330113]: Direct Instances: []\n", + "[INFO] [1712656208.330380]: Inverse Restrictions: []\n", + "[INFO] [1712656208.330614]: -------------------\n", + "[INFO] [1712656208.330846]: SOMA.HasQualityRegion \n", + "[INFO] [1712656208.331111]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712656208.331403]: Ancestors: {DUL.Relation, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, SOMA.HasQualityRegion, DUL.Entity}\n", + "[INFO] [1712656208.331670]: Subclasses: []\n", + "[INFO] [1712656208.331965]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.label, DUL.hasQuality, rdf-schema.comment]\n", + "[INFO] [1712656208.332459]: Instances: []\n", + "[INFO] [1712656208.332721]: Direct Instances: []\n", + "[INFO] [1712656208.332985]: Inverse Restrictions: []\n", + "[INFO] [1712656208.333217]: -------------------\n", + "[INFO] [1712656208.333453]: SOMA.Head \n", + "[INFO] [1712656208.333678]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712656208.333941]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.Head, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.334197]: Subclasses: []\n", + "[INFO] [1712656208.334930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.335490]: Instances: []\n", + "[INFO] [1712656208.335753]: Direct Instances: []\n", + "[INFO] [1712656208.336004]: Inverse Restrictions: []\n", + "[INFO] [1712656208.336259]: -------------------\n", + "[INFO] [1712656208.336508]: SOMA.HeadMovement \n", + "[INFO] [1712656208.336744]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712656208.337710]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.HeadMovement, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.338257]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712656208.338869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.339665]: Instances: []\n", + "[INFO] [1712656208.340182]: Direct Instances: []\n", + "[INFO] [1712656208.340605]: Inverse Restrictions: []\n", + "[INFO] [1712656208.340991]: -------------------\n", + "[INFO] [1712656208.341298]: SOMA.HeadTurning \n", + "[INFO] [1712656208.341561]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712656208.341838]: Ancestors: {DUL.Concept, SOMA.HeadTurning, DUL.EventType, SOMA.HeadMovement, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.342083]: Subclasses: []\n", + "[INFO] [1712656208.342370]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.342877]: Instances: []\n", + "[INFO] [1712656208.343148]: Direct Instances: []\n", + "[INFO] [1712656208.343401]: Inverse Restrictions: []\n", + "[INFO] [1712656208.343638]: -------------------\n", + "[INFO] [1712656208.343873]: SOMA.Holding \n", + "[INFO] [1712656208.344109]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656208.344387]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Holding, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.344635]: Subclasses: []\n", + "[INFO] [1712656208.344924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.345430]: Instances: []\n", + "[INFO] [1712656208.345703]: Direct Instances: []\n", + "[INFO] [1712656208.345960]: Inverse Restrictions: []\n", + "[INFO] [1712656208.346198]: -------------------\n", + "[INFO] [1712656208.346436]: SOMA.HostRole \n", + "[INFO] [1712656208.346707]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712656208.347022]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.HostRole, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.347286]: Subclasses: []\n", + "[INFO] [1712656208.347581]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", + "[INFO] [1712656208.348082]: Instances: []\n", + "[INFO] [1712656208.348368]: Direct Instances: []\n", + "[INFO] [1712656208.349430]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712656208.349694]: -------------------\n", + "[INFO] [1712656208.349939]: SOMA.PluginSpecification \n", + "[INFO] [1712656208.350185]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712656208.350468]: Ancestors: {DUL.Design, SOMA.API_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PluginSpecification}\n", + "[INFO] [1712656208.350719]: Subclasses: []\n", + "[INFO] [1712656208.351009]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", + "[INFO] [1712656208.351498]: Instances: []\n", + "[INFO] [1712656208.351773]: Direct Instances: []\n", + "[INFO] [1712656208.352105]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712656208.352352]: -------------------\n", + "[INFO] [1712656208.352585]: SOMA.Hotplate \n", + "[INFO] [1712656208.352823]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656208.353100]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Hotplate, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.353346]: Subclasses: []\n", + "[INFO] [1712656208.353628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.354131]: Instances: []\n", + "[INFO] [1712656208.354393]: Direct Instances: []\n", + "[INFO] [1712656208.354669]: Inverse Restrictions: [SOMA.Stove]\n", + "[INFO] [1712656208.354913]: -------------------\n", + "[INFO] [1712656208.355146]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712656208.355398]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712656208.355690]: Ancestors: {SOMA.Computer_Language, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, SOMA.Programming_Language, DUL.Object, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.355942]: Subclasses: []\n", + "[INFO] [1712656208.356233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.356717]: Instances: []\n", + "[INFO] [1712656208.357110]: Direct Instances: []\n", + "[INFO] [1712656208.358229]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712656208.358506]: -------------------\n", + "[INFO] [1712656208.358754]: SOMA.Source_Code \n", + "[INFO] [1712656208.358991]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712656208.359465]: Ancestors: {SOMA.Computer_Program, SOMA.Source_Code, owl.Thing}\n", + "[INFO] [1712656208.359741]: Subclasses: []\n", + "[INFO] [1712656208.360336]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656208.361037]: Instances: []\n", + "[INFO] [1712656208.361365]: Direct Instances: []\n", + "[INFO] [1712656208.361690]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712656208.361951]: -------------------\n", + "[INFO] [1712656208.362212]: SOMA.HumanActivityRecording \n", + "[INFO] [1712656208.362458]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712656208.362742]: Ancestors: {DUL.Situation, SOMA.Episode, SOMA.HumanActivityRecording, owl.Thing, DUL.Entity, SOMA.RecordedEpisode}\n", + "[INFO] [1712656208.362988]: Subclasses: []\n", + "[INFO] [1712656208.363281]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.363826]: Instances: []\n", + "[INFO] [1712656208.364113]: Direct Instances: []\n", + "[INFO] [1712656208.364375]: Inverse Restrictions: []\n", + "[INFO] [1712656208.364611]: -------------------\n", + "[INFO] [1712656208.364874]: SOMA.Imagining \n", + "[INFO] [1712656208.365257]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712656208.365648]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Imagining}\n", + "[INFO] [1712656208.365935]: Subclasses: []\n", + "[INFO] [1712656208.366237]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.366737]: Instances: []\n", + "[INFO] [1712656208.366999]: Direct Instances: []\n", + "[INFO] [1712656208.367244]: Inverse Restrictions: []\n", + "[INFO] [1712656208.367479]: -------------------\n", + "[INFO] [1712656208.367712]: SOMA.Impediment \n", + "[INFO] [1712656208.367987]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712656208.368256]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Impediment, DUL.Quality, SOMA.Blockage, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656208.368497]: Subclasses: []\n", + "[INFO] [1712656208.368781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.369278]: Instances: []\n", + "[INFO] [1712656208.369537]: Direct Instances: []\n", + "[INFO] [1712656208.369785]: Inverse Restrictions: []\n", + "[INFO] [1712656208.370014]: -------------------\n", + "[INFO] [1712656208.370240]: SOMA.Obstacle \n", + "[INFO] [1712656208.370465]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712656208.370736]: Ancestors: {DUL.Concept, SOMA.Obstacle, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656208.370980]: Subclasses: []\n", + "[INFO] [1712656208.371256]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.371732]: Instances: []\n", + "[INFO] [1712656208.371997]: Direct Instances: []\n", + "[INFO] [1712656208.372280]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712656208.372516]: -------------------\n", + "[INFO] [1712656208.372743]: SOMA.RestrictedObject \n", + "[INFO] [1712656208.372973]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712656208.373242]: Ancestors: {DUL.Concept, SOMA.RestrictedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", + "[INFO] [1712656208.373483]: Subclasses: []\n", + "[INFO] [1712656208.373762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.374243]: Instances: []\n", + "[INFO] [1712656208.374508]: Direct Instances: []\n", + "[INFO] [1712656208.374797]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712656208.375036]: -------------------\n", + "[INFO] [1712656208.375266]: SOMA.StateTransition \n", + "[INFO] [1712656208.375529]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712656208.375801]: Ancestors: {DUL.Situation, DUL.Transition, owl.Thing, SOMA.StateTransition, DUL.Entity}\n", + "[INFO] [1712656208.376047]: Subclasses: []\n", + "[INFO] [1712656208.376336]: Properties: [SOMA.hasTerminalScene, DUL.satisfies, rdf-schema.isDefinedBy, SOMA.hasInitialScene, rdf-schema.label, rdf-schema.comment, DUL.includesEvent]\n", + "[INFO] [1712656208.376848]: Instances: []\n", + "[INFO] [1712656208.377103]: Direct Instances: []\n", + "[INFO] [1712656208.377415]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712656208.377649]: -------------------\n", + "[INFO] [1712656208.377891]: SOMA.Inability \n", + "[INFO] [1712656208.378131]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712656208.378397]: Ancestors: {SOMA.Inability, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.378641]: Subclasses: []\n", + "[INFO] [1712656208.378920]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.379425]: Instances: []\n", + "[INFO] [1712656208.379682]: Direct Instances: []\n", + "[INFO] [1712656208.379931]: Inverse Restrictions: []\n", + "[INFO] [1712656208.380197]: -------------------\n", + "[INFO] [1712656208.380430]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712656208.380671]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712656208.380943]: Ancestors: {SOMA.IncompatibleSoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656208.381186]: Subclasses: []\n", + "[INFO] [1712656208.381469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.381969]: Instances: []\n", + "[INFO] [1712656208.382228]: Direct Instances: []\n", + "[INFO] [1712656208.382478]: Inverse Restrictions: []\n", + "[INFO] [1712656208.382709]: -------------------\n", + "[INFO] [1712656208.382941]: SOMA.InductionCooktop \n", + "[INFO] [1712656208.383171]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712656208.383450]: Ancestors: {SOMA.InductionCooktop, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.ElectricCooktop, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.383712]: Subclasses: []\n", + "[INFO] [1712656208.384056]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.384569]: Instances: []\n", + "[INFO] [1712656208.384837]: Direct Instances: []\n", + "[INFO] [1712656208.385095]: Inverse Restrictions: []\n", + "[INFO] [1712656208.385331]: -------------------\n", + "[INFO] [1712656208.385571]: SOMA.InductiveReasoning \n", + "[INFO] [1712656208.385821]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712656208.386085]: Ancestors: {SOMA.InductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.Reasoning}\n", + "[INFO] [1712656208.386330]: Subclasses: []\n", + "[INFO] [1712656208.386613]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.387116]: Instances: []\n", + "[INFO] [1712656208.387377]: Direct Instances: []\n", + "[INFO] [1712656208.387630]: Inverse Restrictions: []\n", + "[INFO] [1712656208.387862]: -------------------\n", + "[INFO] [1712656208.388091]: SOMA.Infeasibility \n", + "[INFO] [1712656208.388320]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712656208.388592]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.388841]: Subclasses: []\n", + "[INFO] [1712656208.389123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.389606]: Instances: []\n", + "[INFO] [1712656208.389888]: Direct Instances: []\n", + "[INFO] [1712656208.390141]: Inverse Restrictions: []\n", + "[INFO] [1712656208.390375]: -------------------\n", + "[INFO] [1712656208.390607]: SOMA.InferenceRules \n", + "[INFO] [1712656208.390837]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712656208.391099]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.InferenceRules}\n", + "[INFO] [1712656208.391362]: Subclasses: []\n", + "[INFO] [1712656208.391658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.392146]: Instances: []\n", + "[INFO] [1712656208.392399]: Direct Instances: []\n", + "[INFO] [1712656208.392656]: Inverse Restrictions: []\n", + "[INFO] [1712656208.392895]: -------------------\n", + "[INFO] [1712656208.393132]: SOMA.InformationRetrieval \n", + "[INFO] [1712656208.393373]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712656208.393627]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.InformationRetrieval}\n", + "[INFO] [1712656208.393888]: Subclasses: []\n", + "[INFO] [1712656208.394180]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712656208.394667]: Instances: []\n", + "[INFO] [1712656208.394918]: Direct Instances: []\n", + "[INFO] [1712656208.395223]: Inverse Restrictions: []\n", + "[INFO] [1712656208.395475]: -------------------\n", + "[INFO] [1712656208.395720]: SOMA.InformationStorage \n", + "[INFO] [1712656208.395993]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712656208.396260]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656208.396601]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712656208.396947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712656208.397456]: Instances: []\n", + "[INFO] [1712656208.397729]: Direct Instances: []\n", + "[INFO] [1712656208.397985]: Inverse Restrictions: []\n", + "[INFO] [1712656208.398222]: -------------------\n", + "[INFO] [1712656208.398455]: SOMA.StoredObject \n", + "[INFO] [1712656208.398686]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712656208.398949]: Ancestors: {DUL.Concept, DUL.Role, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, SOMA.StoredObject, owl.Thing, DUL.SocialObject, SOMA.EnclosedObject, DUL.Entity}\n", + "[INFO] [1712656208.399227]: Subclasses: []\n", + "[INFO] [1712656208.399524]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.400014]: Instances: []\n", + "[INFO] [1712656208.400265]: Direct Instances: []\n", + "[INFO] [1712656208.400599]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712656208.400856]: -------------------\n", + "[INFO] [1712656208.401100]: SOMA.InsertedObject \n", + "[INFO] [1712656208.401335]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712656208.401601]: Ancestors: {DUL.Concept, DUL.Role, SOMA.IncludedObject, SOMA.Patient, SOMA.InsertedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.EnclosedObject, DUL.Entity}\n", + "[INFO] [1712656208.401843]: Subclasses: []\n", + "[INFO] [1712656208.402136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.402626]: Instances: []\n", + "[INFO] [1712656208.402879]: Direct Instances: []\n", + "[INFO] [1712656208.403162]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712656208.403397]: -------------------\n", + "[INFO] [1712656208.403644]: SOMA.Instructions \n", + "[INFO] [1712656208.403878]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712656208.404139]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Instructions, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.404378]: Subclasses: []\n", + "[INFO] [1712656208.404655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.405155]: Instances: []\n", + "[INFO] [1712656208.405414]: Direct Instances: []\n", + "[INFO] [1712656208.405661]: Inverse Restrictions: []\n", + "[INFO] [1712656208.405892]: -------------------\n", + "[INFO] [1712656208.406120]: SOMA.Interpreting \n", + "[INFO] [1712656208.406359]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656208.406618]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Interpreting, SOMA.DerivingInformation}\n", + "[INFO] [1712656208.406865]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712656208.407143]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.407635]: Instances: []\n", + "[INFO] [1712656208.407905]: Direct Instances: []\n", + "[INFO] [1712656208.408159]: Inverse Restrictions: []\n", + "[INFO] [1712656208.408397]: -------------------\n", + "[INFO] [1712656208.408642]: SOMA.InterrogativeClause \n", + "[INFO] [1712656208.408878]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712656208.409139]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, SOMA.InterrogativeClause, DUL.InformationObject}\n", + "[INFO] [1712656208.409379]: Subclasses: []\n", + "[INFO] [1712656208.409662]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.410160]: Instances: []\n", + "[INFO] [1712656208.410420]: Direct Instances: []\n", + "[INFO] [1712656208.410712]: Inverse Restrictions: []\n", + "[INFO] [1712656208.410954]: -------------------\n", + "[INFO] [1712656208.411203]: SOMA.Introspecting \n", + "[INFO] [1712656208.411444]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712656208.411702]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Introspecting}\n", + "[INFO] [1712656208.411948]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712656208.412519]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.413066]: Instances: []\n", + "[INFO] [1712656208.413343]: Direct Instances: []\n", + "[INFO] [1712656208.413637]: Inverse Restrictions: []\n", + "[INFO] [1712656208.413899]: -------------------\n", + "[INFO] [1712656208.414144]: SOMA.JamJar \n", + "[INFO] [1712656208.414396]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712656208.414675]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.JamJar, DUL.PhysicalObject, SOMA.Jar, DUL.Entity}\n", + "[INFO] [1712656208.414927]: Subclasses: [SOMA.RaspberryJamJar]\n", + "[INFO] [1712656208.415215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.416223]: Instances: []\n", + "[INFO] [1712656208.416695]: Direct Instances: []\n", + "[INFO] [1712656208.417184]: Inverse Restrictions: []\n", + "[INFO] [1712656208.417702]: -------------------\n", + "[INFO] [1712656208.418238]: SOMA.Jar \n", + "[INFO] [1712656208.418764]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712656208.419305]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Jar, DUL.Entity}\n", + "[INFO] [1712656208.419732]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", + "[INFO] [1712656208.420214]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.420948]: Instances: []\n", + "[INFO] [1712656208.421334]: Direct Instances: []\n", + "[INFO] [1712656208.421640]: Inverse Restrictions: []\n", + "[INFO] [1712656208.421911]: -------------------\n", + "[INFO] [1712656208.422166]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712656208.422415]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712656208.422698]: Ancestors: {DUL.Region, SOMA.KineticFrictionAttribute, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656208.422941]: Subclasses: []\n", + "[INFO] [1712656208.423234]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.423740]: Instances: []\n", + "[INFO] [1712656208.424016]: Direct Instances: []\n", + "[INFO] [1712656208.424265]: Inverse Restrictions: []\n", + "[INFO] [1712656208.424499]: -------------------\n", + "[INFO] [1712656208.424728]: SOMA.KinoDynamicData \n", + "[INFO] [1712656208.424981]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656208.425269]: Ancestors: {DUL.InformationEntity, SOMA.KinoDynamicData, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656208.425523]: Subclasses: []\n", + "[INFO] [1712656208.425812]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.426290]: Instances: []\n", + "[INFO] [1712656208.426567]: Direct Instances: []\n", + "[INFO] [1712656208.426825]: Inverse Restrictions: []\n", + "[INFO] [1712656208.427059]: -------------------\n", + "[INFO] [1712656208.427303]: SOMA.Kitchen \n", + "[INFO] [1712656208.427552]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712656208.427847]: Ancestors: {SOMA.Room, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity, SOMA.Kitchen}\n", + "[INFO] [1712656208.428138]: Subclasses: []\n", + "[INFO] [1712656208.428482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712656208.429068]: Instances: []\n", + "[INFO] [1712656208.429391]: Direct Instances: []\n", + "[INFO] [1712656208.429723]: Inverse Restrictions: []\n", + "[INFO] [1712656208.430039]: -------------------\n", + "[INFO] [1712656208.430383]: SOMA.Room \n", + "[INFO] [1712656208.430720]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712656208.431069]: Ancestors: {SOMA.Room, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity}\n", + "[INFO] [1712656208.431447]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712656208.431897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.432617]: Instances: []\n", + "[INFO] [1712656208.432999]: Direct Instances: []\n", + "[INFO] [1712656208.433360]: Inverse Restrictions: []\n", + "[INFO] [1712656208.433678]: -------------------\n", + "[INFO] [1712656208.433982]: SOMA.KitchenCabinet \n", + "[INFO] [1712656208.434290]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712656208.434902]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Cupboard, DUL.PhysicalObject, DUL.Entity, SOMA.KitchenCabinet, SOMA.DesignedFurniture}\n", + "[INFO] [1712656208.435460]: Subclasses: []\n", + "[INFO] [1712656208.436056]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.436886]: Instances: []\n", + "[INFO] [1712656208.437448]: Direct Instances: []\n", + "[INFO] [1712656208.437984]: Inverse Restrictions: []\n", + "[INFO] [1712656208.438519]: -------------------\n", + "[INFO] [1712656208.439056]: SOMA.Knife \n", + "[INFO] [1712656208.439521]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712656208.439970]: Ancestors: {SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656208.440489]: Subclasses: [SOMA.KitchenKnife]\n", + "[INFO] [1712656208.441064]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712656208.441669]: Instances: []\n", + "[INFO] [1712656208.441975]: Direct Instances: []\n", + "[INFO] [1712656208.442245]: Inverse Restrictions: []\n", + "[INFO] [1712656208.442491]: -------------------\n", + "[INFO] [1712656208.442735]: SOMA.KitchenUnit \n", + "[INFO] [1712656208.442980]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712656208.443257]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.KitchenUnit, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656208.443496]: Subclasses: []\n", + "[INFO] [1712656208.443780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.444276]: Instances: []\n", + "[INFO] [1712656208.444539]: Direct Instances: []\n", + "[INFO] [1712656208.444784]: Inverse Restrictions: []\n", + "[INFO] [1712656208.445021]: -------------------\n", + "[INFO] [1712656208.445251]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712656208.445480]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656208.445761]: Ancestors: {SOMA.Computer_Language, SOMA.KnowledgeRepresentationLanguage, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.446017]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712656208.446304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.446780]: Instances: []\n", + "[INFO] [1712656208.447061]: Direct Instances: []\n", + "[INFO] [1712656208.447319]: Inverse Restrictions: []\n", + "[INFO] [1712656208.447549]: -------------------\n", + "[INFO] [1712656208.447782]: SOMA.Labeling \n", + "[INFO] [1712656208.448014]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712656208.448290]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing}\n", + "[INFO] [1712656208.448537]: Subclasses: []\n", + "[INFO] [1712656208.448826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656208.449333]: Instances: []\n", + "[INFO] [1712656208.449640]: Direct Instances: []\n", + "[INFO] [1712656208.449904]: Inverse Restrictions: []\n", + "[INFO] [1712656208.450138]: -------------------\n", + "[INFO] [1712656208.450366]: SOMA.Text \n", + "[INFO] [1712656208.450592]: Super classes: [owl.Thing]\n", + "[INFO] [1712656208.451811]: Ancestors: {owl.Thing, SOMA.Text}\n", + "[INFO] [1712656208.452093]: Subclasses: []\n", + "[INFO] [1712656208.452397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656208.452915]: Instances: []\n", + "[INFO] [1712656208.453192]: Direct Instances: []\n", + "[INFO] [1712656208.454283]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712656208.454545]: -------------------\n", + "[INFO] [1712656208.454794]: SOMA.Leaning \n", + "[INFO] [1712656208.455033]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712656208.455318]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Leaning, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.455560]: Subclasses: []\n", + "[INFO] [1712656208.455844]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.456348]: Instances: []\n", + "[INFO] [1712656208.456617]: Direct Instances: []\n", + "[INFO] [1712656208.456877]: Inverse Restrictions: []\n", + "[INFO] [1712656208.457111]: -------------------\n", + "[INFO] [1712656208.457341]: SOMA.PosturalMoving \n", + "[INFO] [1712656208.457576]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712656208.457827]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.458085]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712656208.458370]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.458856]: Instances: []\n", + "[INFO] [1712656208.459133]: Direct Instances: []\n", + "[INFO] [1712656208.459400]: Inverse Restrictions: []\n", + "[INFO] [1712656208.459644]: -------------------\n", + "[INFO] [1712656208.459876]: SOMA.Learning \n", + "[INFO] [1712656208.460103]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712656208.460369]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656208.460635]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712656208.460932]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.461426]: Instances: []\n", + "[INFO] [1712656208.461681]: Direct Instances: []\n", + "[INFO] [1712656208.461945]: Inverse Restrictions: []\n", + "[INFO] [1712656208.462178]: -------------------\n", + "[INFO] [1712656208.462404]: SOMA.Leg \n", + "[INFO] [1712656208.462628]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712656208.462892]: Ancestors: {DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.463147]: Subclasses: []\n", + "[INFO] [1712656208.463434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.463921]: Instances: []\n", + "[INFO] [1712656208.464175]: Direct Instances: []\n", + "[INFO] [1712656208.464478]: Inverse Restrictions: []\n", + "[INFO] [1712656208.464711]: -------------------\n", + "[INFO] [1712656208.464947]: SOMA.Lid \n", + "[INFO] [1712656208.465178]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656208.465446]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Lid, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.465707]: Subclasses: []\n", + "[INFO] [1712656208.466003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.466487]: Instances: []\n", + "[INFO] [1712656208.466729]: Direct Instances: []\n", + "[INFO] [1712656208.466977]: Inverse Restrictions: []\n", + "[INFO] [1712656208.467211]: -------------------\n", + "[INFO] [1712656208.467439]: SOMA.LimbMotion \n", + "[INFO] [1712656208.468081]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712656208.468380]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, SOMA.LimbMotion, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.468629]: Subclasses: []\n", + "[INFO] [1712656208.469002]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.469643]: Instances: []\n", + "[INFO] [1712656208.470044]: Direct Instances: []\n", + "[INFO] [1712656208.470426]: Inverse Restrictions: []\n", + "[INFO] [1712656208.470785]: -------------------\n", + "[INFO] [1712656208.471047]: SOMA.LinkedObject \n", + "[INFO] [1712656208.471295]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712656208.471586]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.LinkedObject, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.471841]: Subclasses: []\n", + "[INFO] [1712656208.472135]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.472625]: Instances: []\n", + "[INFO] [1712656208.472903]: Direct Instances: []\n", + "[INFO] [1712656208.473266]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712656208.473522]: -------------------\n", + "[INFO] [1712656208.473766]: SOMA.LinkageState \n", + "[INFO] [1712656208.474006]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712656208.474275]: Ancestors: {DUL.Concept, SOMA.LinkageState, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656208.474513]: Subclasses: []\n", + "[INFO] [1712656208.474814]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.475304]: Instances: []\n", + "[INFO] [1712656208.475577]: Direct Instances: []\n", + "[INFO] [1712656208.475823]: Inverse Restrictions: []\n", + "[INFO] [1712656208.476056]: -------------------\n", + "[INFO] [1712656208.476284]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712656208.476512]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656208.476758]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.477034]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712656208.477328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.477847]: Instances: []\n", + "[INFO] [1712656208.478114]: Direct Instances: []\n", + "[INFO] [1712656208.478373]: Inverse Restrictions: []\n", + "[INFO] [1712656208.478603]: -------------------\n", + "[INFO] [1712656208.478828]: SOMA.SpatialRelationRole \n", + "[INFO] [1712656208.479057]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712656208.479310]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SpatialRelationRole}\n", + "[INFO] [1712656208.479571]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712656208.479857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.480347]: Instances: []\n", + "[INFO] [1712656208.480628]: Direct Instances: []\n", + "[INFO] [1712656208.480897]: Inverse Restrictions: []\n", + "[INFO] [1712656208.481133]: -------------------\n", + "[INFO] [1712656208.481364]: SOMA.LocutionaryAction \n", + "[INFO] [1712656208.481596]: Super classes: [owl.Thing]\n", + "[INFO] [1712656208.482816]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", + "[INFO] [1712656208.483080]: Subclasses: []\n", + "[INFO] [1712656208.483382]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656208.483887]: Instances: []\n", + "[INFO] [1712656208.484152]: Direct Instances: []\n", + "[INFO] [1712656208.484397]: Inverse Restrictions: []\n", + "[INFO] [1712656208.484625]: -------------------\n", + "[INFO] [1712656208.484909]: SOMA.LookingAt \n", + "[INFO] [1712656208.485162]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656208.485430]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.LookingAt}\n", + "[INFO] [1712656208.485692]: Subclasses: []\n", + "[INFO] [1712656208.485986]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.486469]: Instances: []\n", + "[INFO] [1712656208.486722]: Direct Instances: []\n", + "[INFO] [1712656208.486983]: Inverse Restrictions: []\n", + "[INFO] [1712656208.487217]: -------------------\n", + "[INFO] [1712656208.487449]: SOMA.LookingFor \n", + "[INFO] [1712656208.487674]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712656208.487928]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", + "[INFO] [1712656208.488170]: Subclasses: []\n", + "[INFO] [1712656208.488461]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.488949]: Instances: []\n", + "[INFO] [1712656208.489206]: Direct Instances: []\n", + "[INFO] [1712656208.489445]: Inverse Restrictions: []\n", + "[INFO] [1712656208.489682]: -------------------\n", + "[INFO] [1712656208.489924]: SOMA.Lowering \n", + "[INFO] [1712656208.490155]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656208.490419]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.Lowering, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656208.490676]: Subclasses: []\n", + "[INFO] [1712656208.490964]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.491449]: Instances: []\n", + "[INFO] [1712656208.491698]: Direct Instances: []\n", + "[INFO] [1712656208.491951]: Inverse Restrictions: []\n", + "[INFO] [1712656208.492184]: -------------------\n", + "[INFO] [1712656208.492410]: SOMA.PhysicalAction \n", + "[INFO] [1712656208.492635]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712656208.492897]: Ancestors: {SOMA.PhysicalAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656208.493155]: Subclasses: []\n", + "[INFO] [1712656208.493448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.493930]: Instances: []\n", + "[INFO] [1712656208.494183]: Direct Instances: []\n", + "[INFO] [1712656208.494469]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656208.494729]: -------------------\n", + "[INFO] [1712656208.494969]: SOMA.Markup_Language \n", + "[INFO] [1712656208.495199]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656208.495466]: Ancestors: {SOMA.Markup_Language, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.495699]: Subclasses: []\n", + "[INFO] [1712656208.495982]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.496482]: Instances: []\n", + "[INFO] [1712656208.496749]: Direct Instances: []\n", + "[INFO] [1712656208.497032]: Inverse Restrictions: []\n", + "[INFO] [1712656208.497277]: -------------------\n", + "[INFO] [1712656208.497508]: SOMA.Masterful \n", + "[INFO] [1712656208.497751]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712656208.498023]: Ancestors: {SOMA.Masterful, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.498265]: Subclasses: []\n", + "[INFO] [1712656208.498554]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.499035]: Instances: []\n", + "[INFO] [1712656208.499311]: Direct Instances: []\n", + "[INFO] [1712656208.499566]: Inverse Restrictions: []\n", + "[INFO] [1712656208.499798]: -------------------\n", + "[INFO] [1712656208.500025]: SOMA.Material \n", + "[INFO] [1712656208.500250]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656208.500518]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Material}\n", + "[INFO] [1712656208.500767]: Subclasses: []\n", + "[INFO] [1712656208.501062]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.501545]: Instances: []\n", + "[INFO] [1712656208.501792]: Direct Instances: []\n", + "[INFO] [1712656208.502030]: Inverse Restrictions: []\n", + "[INFO] [1712656208.502274]: -------------------\n", + "[INFO] [1712656208.502506]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712656208.502760]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712656208.503039]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MedicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656208.503282]: Subclasses: []\n", + "[INFO] [1712656208.503593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712656208.504076]: Instances: []\n", + "[INFO] [1712656208.504332]: Direct Instances: []\n", + "[INFO] [1712656208.504571]: Inverse Restrictions: []\n", + "[INFO] [1712656208.504812]: -------------------\n", + "[INFO] [1712656208.505055]: SOMA.Memorizing \n", + "[INFO] [1712656208.505288]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712656208.505556]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Memorizing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656208.505793]: Subclasses: []\n", + "[INFO] [1712656208.506072]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.506561]: Instances: []\n", + "[INFO] [1712656208.506821]: Direct Instances: []\n", + "[INFO] [1712656208.507062]: Inverse Restrictions: []\n", + "[INFO] [1712656208.507290]: -------------------\n", + "[INFO] [1712656208.507518]: SOMA.MentalAction \n", + "[INFO] [1712656208.508169]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712656208.508457]: Ancestors: {SOMA.MentalAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656208.508697]: Subclasses: []\n", + "[INFO] [1712656208.508996]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.509494]: Instances: []\n", + "[INFO] [1712656208.509753]: Direct Instances: []\n", + "[INFO] [1712656208.510047]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712656208.510301]: -------------------\n", + "[INFO] [1712656208.510539]: SOMA.MeshShape \n", + "[INFO] [1712656208.510819]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712656208.511098]: Ancestors: {SOMA.ShapeRegion, SOMA.MeshShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.511336]: Subclasses: []\n", + "[INFO] [1712656208.511624]: Properties: [rdf-schema.isDefinedBy, SOMA.hasFilePath, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.512129]: Instances: []\n", + "[INFO] [1712656208.512392]: Direct Instances: []\n", + "[INFO] [1712656208.512644]: Inverse Restrictions: []\n", + "[INFO] [1712656208.512885]: -------------------\n", + "[INFO] [1712656208.513117]: SOMA.MeshShapeData \n", + "[INFO] [1712656208.513350]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656208.513654]: Ancestors: {SOMA.MeshShapeData, DUL.InformationEntity, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656208.513923]: Subclasses: []\n", + "[INFO] [1712656208.514230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.514717]: Instances: []\n", + "[INFO] [1712656208.514965]: Direct Instances: []\n", + "[INFO] [1712656208.515211]: Inverse Restrictions: []\n", + "[INFO] [1712656208.515453]: -------------------\n", + "[INFO] [1712656208.515687]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712656208.515914]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712656208.516196]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.516461]: Subclasses: []\n", + "[INFO] [1712656208.516760]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.517253]: Instances: []\n", + "[INFO] [1712656208.517506]: Direct Instances: []\n", + "[INFO] [1712656208.517740]: Inverse Restrictions: []\n", + "[INFO] [1712656208.517975]: -------------------\n", + "[INFO] [1712656208.518207]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712656208.518435]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656208.518670]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.518920]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712656208.519215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.519704]: Instances: []\n", + "[INFO] [1712656208.519969]: Direct Instances: []\n", + "[INFO] [1712656208.520235]: Inverse Restrictions: []\n", + "[INFO] [1712656208.520469]: -------------------\n", + "[INFO] [1712656208.520694]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712656208.520921]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712656208.521185]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.521434]: Subclasses: []\n", + "[INFO] [1712656208.521726]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.522212]: Instances: []\n", + "[INFO] [1712656208.522483]: Direct Instances: []\n", + "[INFO] [1712656208.522739]: Inverse Restrictions: []\n", + "[INFO] [1712656208.522967]: -------------------\n", + "[INFO] [1712656208.523194]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712656208.523417]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712656208.523697]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.523945]: Subclasses: []\n", + "[INFO] [1712656208.524234]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.524708]: Instances: []\n", + "[INFO] [1712656208.524971]: Direct Instances: []\n", + "[INFO] [1712656208.525229]: Inverse Restrictions: []\n", + "[INFO] [1712656208.525465]: -------------------\n", + "[INFO] [1712656208.525691]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712656208.525913]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712656208.526146]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.526413]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712656208.526712]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.527219]: Instances: []\n", + "[INFO] [1712656208.527487]: Direct Instances: []\n", + "[INFO] [1712656208.527752]: Inverse Restrictions: []\n", + "[INFO] [1712656208.527992]: -------------------\n", + "[INFO] [1712656208.528225]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712656208.528457]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712656208.528732]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MetacognitiveControlling, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656208.528996]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712656208.529283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.529766]: Instances: []\n", + "[INFO] [1712656208.530043]: Direct Instances: []\n", + "[INFO] [1712656208.530312]: Inverse Restrictions: []\n", + "[INFO] [1712656208.530556]: -------------------\n", + "[INFO] [1712656208.530788]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712656208.531018]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712656208.531291]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting, owl.Thing}\n", + "[INFO] [1712656208.531530]: Subclasses: []\n", + "[INFO] [1712656208.531814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.532294]: Instances: []\n", + "[INFO] [1712656208.532567]: Direct Instances: []\n", + "[INFO] [1712656208.532824]: Inverse Restrictions: []\n", + "[INFO] [1712656208.533065]: -------------------\n", + "[INFO] [1712656208.533291]: SOMA.MilkBottle \n", + "[INFO] [1712656208.533519]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712656208.533794]: Ancestors: {SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.MilkBottle, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.534040]: Subclasses: []\n", + "[INFO] [1712656208.534321]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.534799]: Instances: []\n", + "[INFO] [1712656208.535069]: Direct Instances: []\n", + "[INFO] [1712656208.535320]: Inverse Restrictions: []\n", + "[INFO] [1712656208.535555]: -------------------\n", + "[INFO] [1712656208.535782]: SOMA.MilkPack \n", + "[INFO] [1712656208.536222]: Super classes: [SOMA.Pack]\n", + "[INFO] [1712656208.536721]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Pack, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.MilkPack}\n", + "[INFO] [1712656208.536984]: Subclasses: []\n", + "[INFO] [1712656208.537276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.537759]: Instances: []\n", + "[INFO] [1712656208.538056]: Direct Instances: []\n", + "[INFO] [1712656208.538321]: Inverse Restrictions: []\n", + "[INFO] [1712656208.538555]: -------------------\n", + "[INFO] [1712656208.538785]: SOMA.Pack \n", + "[INFO] [1712656208.539012]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712656208.539251]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Pack, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.539507]: Subclasses: [SOMA.MilkPack]\n", + "[INFO] [1712656208.539796]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.540282]: Instances: []\n", + "[INFO] [1712656208.540537]: Direct Instances: []\n", + "[INFO] [1712656208.540779]: Inverse Restrictions: []\n", + "[INFO] [1712656208.541019]: -------------------\n", + "[INFO] [1712656208.541260]: SOMA.Mixing \n", + "[INFO] [1712656208.541492]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712656208.541756]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Mixing}\n", + "[INFO] [1712656208.541997]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712656208.542278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.542776]: Instances: []\n", + "[INFO] [1712656208.543039]: Direct Instances: []\n", + "[INFO] [1712656208.543293]: Inverse Restrictions: []\n", + "[INFO] [1712656208.543524]: -------------------\n", + "[INFO] [1712656208.543750]: SOMA.MixingTheory \n", + "[INFO] [1712656208.543991]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712656208.544262]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, SOMA.MixingTheory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.544501]: Subclasses: []\n", + "[INFO] [1712656208.544794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656208.545305]: Instances: []\n", + "[INFO] [1712656208.545575]: Direct Instances: []\n", + "[INFO] [1712656208.545828]: Inverse Restrictions: []\n", + "[INFO] [1712656208.546067]: -------------------\n", + "[INFO] [1712656208.546309]: SOMA.MonitoringJointState \n", + "[INFO] [1712656208.546553]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712656208.546859]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, SOMA.Proprioceiving, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.547196]: Subclasses: []\n", + "[INFO] [1712656208.547523]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.548079]: Instances: []\n", + "[INFO] [1712656208.548368]: Direct Instances: []\n", + "[INFO] [1712656208.548627]: Inverse Restrictions: []\n", + "[INFO] [1712656208.548874]: -------------------\n", + "[INFO] [1712656208.549114]: SOMA.Proprioceiving \n", + "[INFO] [1712656208.549368]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656208.549614]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Proprioceiving, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.549865]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712656208.550146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.550639]: Instances: []\n", + "[INFO] [1712656208.550897]: Direct Instances: []\n", + "[INFO] [1712656208.551150]: Inverse Restrictions: []\n", + "[INFO] [1712656208.551374]: -------------------\n", + "[INFO] [1712656208.551597]: SOMA.MovingAway \n", + "[INFO] [1712656208.551825]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656208.552101]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.MovingAway, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.552348]: Subclasses: []\n", + "[INFO] [1712656208.552630]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.553131]: Instances: []\n", + "[INFO] [1712656208.553406]: Direct Instances: []\n", + "[INFO] [1712656208.553653]: Inverse Restrictions: []\n", + "[INFO] [1712656208.553880]: -------------------\n", + "[INFO] [1712656208.554108]: SOMA.MovingTo \n", + "[INFO] [1712656208.554331]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712656208.554608]: Ancestors: {SOMA.MovingTo, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.554860]: Subclasses: []\n", + "[INFO] [1712656208.555154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.555644]: Instances: []\n", + "[INFO] [1712656208.555918]: Direct Instances: []\n", + "[INFO] [1712656208.556171]: Inverse Restrictions: []\n", + "[INFO] [1712656208.556406]: -------------------\n", + "[INFO] [1712656208.556640]: SOMA.Natural_Language \n", + "[INFO] [1712656208.556905]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712656208.557187]: Ancestors: {SOMA.Natural_Language, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.557441]: Subclasses: []\n", + "[INFO] [1712656208.557732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.558224]: Instances: []\n", + "[INFO] [1712656208.558530]: Direct Instances: []\n", + "[INFO] [1712656208.558868]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712656208.559122]: -------------------\n", + "[INFO] [1712656208.559356]: SOMA.Natural_Language_Text \n", + "[INFO] [1712656208.559583]: Super classes: [owl.Thing]\n", + "[INFO] [1712656208.560070]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", + "[INFO] [1712656208.560330]: Subclasses: []\n", + "[INFO] [1712656208.560628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656208.561114]: Instances: []\n", + "[INFO] [1712656208.561381]: Direct Instances: []\n", + "[INFO] [1712656208.561672]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712656208.561935]: -------------------\n", + "[INFO] [1712656208.562177]: SOMA.NutellaJar \n", + "[INFO] [1712656208.562418]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712656208.562696]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Jar, DUL.Entity, SOMA.NutellaJar}\n", + "[INFO] [1712656208.562934]: Subclasses: []\n", + "[INFO] [1712656208.563218]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.563720]: Instances: []\n", + "[INFO] [1712656208.563995]: Direct Instances: []\n", + "[INFO] [1712656208.564241]: Inverse Restrictions: []\n", + "[INFO] [1712656208.564474]: -------------------\n", + "[INFO] [1712656208.564710]: SOMA.Ontology \n", + "[INFO] [1712656208.564964]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712656208.566214]: Ancestors: {owl.Thing, SOMA.Structured_Text, SOMA.Ontology}\n", + "[INFO] [1712656208.566519]: Subclasses: []\n", + "[INFO] [1712656208.566844]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656208.567343]: Instances: []\n", + "[INFO] [1712656208.567613]: Direct Instances: []\n", + "[INFO] [1712656208.567930]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712656208.568183]: -------------------\n", + "[INFO] [1712656208.568421]: SOMA.Ontology_Language \n", + "[INFO] [1712656208.568658]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712656208.568941]: Ancestors: {SOMA.Computer_Language, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.FormalLanguage, DUL.Object, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.569186]: Subclasses: []\n", + "[INFO] [1712656208.569491]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.569987]: Instances: []\n", + "[INFO] [1712656208.570240]: Direct Instances: []\n", + "[INFO] [1712656208.570547]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712656208.570787]: -------------------\n", + "[INFO] [1712656208.571029]: SOMA.Option \n", + "[INFO] [1712656208.571264]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712656208.571531]: Ancestors: {DUL.Concept, SOMA.Option, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.571770]: Subclasses: []\n", + "[INFO] [1712656208.572066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.572559]: Instances: []\n", + "[INFO] [1712656208.572823]: Direct Instances: []\n", + "[INFO] [1712656208.573065]: Inverse Restrictions: []\n", + "[INFO] [1712656208.573303]: -------------------\n", + "[INFO] [1712656208.573542]: SOMA.Singleton \n", + "[INFO] [1712656208.573775]: Super classes: [owl.Thing]\n", + "[INFO] [1712656208.574002]: Ancestors: {owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712656208.574245]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712656208.574528]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", + "[INFO] [1712656208.575037]: Instances: []\n", + "[INFO] [1712656208.575309]: Direct Instances: []\n", + "[INFO] [1712656208.575566]: Inverse Restrictions: []\n", + "[INFO] [1712656208.575796]: -------------------\n", + "[INFO] [1712656208.576024]: SOMA.Orienting \n", + "[INFO] [1712656208.576253]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712656208.576540]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Orienting, DUL.Task, SOMA.Positioning, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656208.576787]: Subclasses: []\n", + "[INFO] [1712656208.577079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.577578]: Instances: []\n", + "[INFO] [1712656208.577842]: Direct Instances: []\n", + "[INFO] [1712656208.578096]: Inverse Restrictions: []\n", + "[INFO] [1712656208.578330]: -------------------\n", + "[INFO] [1712656208.578555]: SOMA.Positioning \n", + "[INFO] [1712656208.578779]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656208.579024]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Positioning, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656208.579280]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712656208.579569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.580067]: Instances: []\n", + "[INFO] [1712656208.580352]: Direct Instances: []\n", + "[INFO] [1712656208.580609]: Inverse Restrictions: []\n", + "[INFO] [1712656208.580853]: -------------------\n", + "[INFO] [1712656208.581082]: SOMA.Origin \n", + "[INFO] [1712656208.581311]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712656208.581588]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Origin, SOMA.Location}\n", + "[INFO] [1712656208.581826]: Subclasses: []\n", + "[INFO] [1712656208.582106]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.582576]: Instances: []\n", + "[INFO] [1712656208.582853]: Direct Instances: []\n", + "[INFO] [1712656208.583148]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712656208.583388]: -------------------\n", + "[INFO] [1712656208.583633]: SOMA.Oven \n", + "[INFO] [1712656208.583894]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", + "[INFO] [1712656208.584185]: Ancestors: {SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Oven}\n", + "[INFO] [1712656208.584436]: Subclasses: []\n", + "[INFO] [1712656208.584724]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712656208.585217]: Instances: []\n", + "[INFO] [1712656208.585491]: Direct Instances: []\n", + "[INFO] [1712656208.585743]: Inverse Restrictions: []\n", + "[INFO] [1712656208.585972]: -------------------\n", + "[INFO] [1712656208.586197]: SOMA.TemperingByHeating \n", + "[INFO] [1712656208.586417]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712656208.586686]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.TemperingByHeating, SOMA.Tempering, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656208.586946]: Subclasses: []\n", + "[INFO] [1712656208.587239]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.587725]: Instances: []\n", + "[INFO] [1712656208.587981]: Direct Instances: []\n", + "[INFO] [1712656208.588259]: Inverse Restrictions: [SOMA.Oven]\n", + "[INFO] [1712656208.588501]: -------------------\n", + "[INFO] [1712656208.588735]: SOMA.Pan \n", + "[INFO] [1712656208.588976]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712656208.589248]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Pan, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656208.589510]: Subclasses: []\n", + "[INFO] [1712656208.589803]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.590290]: Instances: []\n", + "[INFO] [1712656208.590556]: Direct Instances: []\n", + "[INFO] [1712656208.590804]: Inverse Restrictions: []\n", + "[INFO] [1712656208.591034]: -------------------\n", + "[INFO] [1712656208.591264]: SOMA.Pancake \n", + "[INFO] [1712656208.591498]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712656208.591767]: Ancestors: {SOMA.Dish, DUL.DesignedArtifact, SOMA.Pancake, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.BakedGood}\n", + "[INFO] [1712656208.592012]: Subclasses: []\n", + "[INFO] [1712656208.592285]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656208.592762]: Instances: []\n", + "[INFO] [1712656208.593036]: Direct Instances: []\n", + "[INFO] [1712656208.593291]: Inverse Restrictions: []\n", + "[INFO] [1712656208.593528]: -------------------\n", + "[INFO] [1712656208.593761]: SOMA.PancakeMix \n", + "[INFO] [1712656208.593987]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712656208.594247]: Ancestors: {DUL.Substance, SOMA.PancakeMix, DUL.DesignedArtifact, DUL.PhysicalBody, DUL.PhysicalArtifact, DUL.DesignedSubstance, DUL.Object, owl.Thing, DUL.FunctionalSubstance, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.594503]: Subclasses: []\n", + "[INFO] [1712656208.594788]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656208.595271]: Instances: []\n", + "[INFO] [1712656208.595519]: Direct Instances: []\n", + "[INFO] [1712656208.595763]: Inverse Restrictions: []\n", + "[INFO] [1712656208.596009]: -------------------\n", + "[INFO] [1712656208.596250]: SOMA.ParkingArms \n", + "[INFO] [1712656208.596492]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712656208.596762]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose, SOMA.AssumingArmPose, SOMA.ParkingArms}\n", + "[INFO] [1712656208.597023]: Subclasses: []\n", + "[INFO] [1712656208.597322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.597821]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712656208.598081]: Direct Instances: [SOMA.parking_arms]\n", + "[INFO] [1712656208.598325]: Inverse Restrictions: []\n", + "[INFO] [1712656208.598558]: -------------------\n", + "[INFO] [1712656208.598802]: SOMA.PastaBowl \n", + "[INFO] [1712656208.599056]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712656208.599329]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Bowl, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.PastaBowl, SOMA.DesignedTool}\n", + "[INFO] [1712656208.599576]: Subclasses: []\n", + "[INFO] [1712656208.599861]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.600360]: Instances: []\n", + "[INFO] [1712656208.600617]: Direct Instances: []\n", + "[INFO] [1712656208.600865]: Inverse Restrictions: []\n", + "[INFO] [1712656208.601094]: -------------------\n", + "[INFO] [1712656208.601326]: SOMA.PepperShaker \n", + "[INFO] [1712656208.601552]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712656208.601828]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.PepperShaker, DUL.Object, owl.Thing, SOMA.Shaker, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.602074]: Subclasses: []\n", + "[INFO] [1712656208.602349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.602827]: Instances: []\n", + "[INFO] [1712656208.603093]: Direct Instances: []\n", + "[INFO] [1712656208.603346]: Inverse Restrictions: []\n", + "[INFO] [1712656208.603580]: -------------------\n", + "[INFO] [1712656208.603807]: SOMA.Shaker \n", + "[INFO] [1712656208.604035]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712656208.604280]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Shaker, DUL.Entity}\n", + "[INFO] [1712656208.604534]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", + "[INFO] [1712656208.604821]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.605310]: Instances: []\n", + "[INFO] [1712656208.605561]: Direct Instances: []\n", + "[INFO] [1712656208.605819]: Inverse Restrictions: []\n", + "[INFO] [1712656208.606055]: -------------------\n", + "[INFO] [1712656208.606284]: SOMA.PhaseTransition \n", + "[INFO] [1712656208.606511]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712656208.606765]: Ancestors: {DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656208.607009]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712656208.607293]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.607792]: Instances: []\n", + "[INFO] [1712656208.608050]: Direct Instances: []\n", + "[INFO] [1712656208.608291]: Inverse Restrictions: []\n", + "[INFO] [1712656208.608523]: -------------------\n", + "[INFO] [1712656208.608749]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712656208.608995]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712656208.609272]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.PhysicalAccessibility, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656208.609528]: Subclasses: []\n", + "[INFO] [1712656208.609820]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.610304]: Instances: []\n", + "[INFO] [1712656208.610573]: Direct Instances: []\n", + "[INFO] [1712656208.610827]: Inverse Restrictions: []\n", + "[INFO] [1712656208.611063]: -------------------\n", + "[INFO] [1712656208.611295]: SOMA.PhysicalBlockage \n", + "[INFO] [1712656208.611530]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712656208.611798]: Ancestors: {DUL.Concept, SOMA.PhysicalBlockage, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656208.612047]: Subclasses: []\n", + "[INFO] [1712656208.612337]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.612921]: Instances: []\n", + "[INFO] [1712656208.613292]: Direct Instances: []\n", + "[INFO] [1712656208.613593]: Inverse Restrictions: []\n", + "[INFO] [1712656208.613844]: -------------------\n", + "[INFO] [1712656208.614085]: SOMA.PhysicalExistence \n", + "[INFO] [1712656208.614319]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712656208.614585]: Ancestors: {owl.Thing, SOMA.PhysicalExistence, SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event}\n", + "[INFO] [1712656208.614841]: Subclasses: []\n", + "[INFO] [1712656208.615144]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.615630]: Instances: []\n", + "[INFO] [1712656208.615890]: Direct Instances: []\n", + "[INFO] [1712656208.616132]: Inverse Restrictions: []\n", + "[INFO] [1712656208.616365]: -------------------\n", + "[INFO] [1712656208.616832]: SOMA.PhysicalState \n", + "[INFO] [1712656208.617272]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712656208.617701]: Ancestors: {owl.Thing, SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event}\n", + "[INFO] [1712656208.618128]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712656208.618609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656208.619286]: Instances: []\n", + "[INFO] [1712656208.619671]: Direct Instances: []\n", + "[INFO] [1712656208.620032]: Inverse Restrictions: []\n", + "[INFO] [1712656208.620358]: -------------------\n", + "[INFO] [1712656208.620773]: SOMA.PhysicsProcess \n", + "[INFO] [1712656208.621193]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712656208.621582]: Ancestors: {DUL.Process, owl.Thing, SOMA.PhysicsProcess, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656208.621924]: Subclasses: []\n", + "[INFO] [1712656208.622321]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656208.622923]: Instances: []\n", + "[INFO] [1712656208.623292]: Direct Instances: []\n", + "[INFO] [1712656208.623631]: Inverse Restrictions: []\n", + "[INFO] [1712656208.623959]: -------------------\n", + "[INFO] [1712656208.624287]: SOMA.PlacingTheory \n", + "[INFO] [1712656208.624624]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712656208.625010]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.PlacingTheory}\n", + "[INFO] [1712656208.625342]: Subclasses: []\n", + "[INFO] [1712656208.625721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656208.626287]: Instances: []\n", + "[INFO] [1712656208.626649]: Direct Instances: []\n", + "[INFO] [1712656208.626980]: Inverse Restrictions: []\n", + "[INFO] [1712656208.627300]: -------------------\n", + "[INFO] [1712656208.627615]: SOMA.PlanarJoint \n", + "[INFO] [1712656208.627928]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712656208.628283]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.PlanarJoint, DUL.Entity}\n", + "[INFO] [1712656208.628620]: Subclasses: []\n", + "[INFO] [1712656208.629005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.629567]: Instances: []\n", + "[INFO] [1712656208.629907]: Direct Instances: []\n", + "[INFO] [1712656208.630257]: Inverse Restrictions: []\n", + "[INFO] [1712656208.630583]: -------------------\n", + "[INFO] [1712656208.630899]: SOMA.PluginRole \n", + "[INFO] [1712656208.631217]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712656208.631572]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, SOMA.PluginRole, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.631916]: Subclasses: []\n", + "[INFO] [1712656208.632305]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", + "[INFO] [1712656208.632880]: Instances: []\n", + "[INFO] [1712656208.633246]: Direct Instances: []\n", + "[INFO] [1712656208.633654]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712656208.633988]: -------------------\n", + "[INFO] [1712656208.634312]: SOMA.Pot \n", + "[INFO] [1712656208.634631]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712656208.635029]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Pot, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656208.635395]: Subclasses: [SOMA.SoupPot]\n", + "[INFO] [1712656208.635775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.636349]: Instances: []\n", + "[INFO] [1712656208.636700]: Direct Instances: []\n", + "[INFO] [1712656208.637194]: Inverse Restrictions: []\n", + "[INFO] [1712656208.637589]: -------------------\n", + "[INFO] [1712656208.637984]: SOMA.Pourable \n", + "[INFO] [1712656208.638303]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712656208.638605]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Pourable, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656208.638872]: Subclasses: []\n", + "[INFO] [1712656208.639172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.639660]: Instances: []\n", + "[INFO] [1712656208.639919]: Direct Instances: []\n", + "[INFO] [1712656208.640231]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712656208.640554]: -------------------\n", + "[INFO] [1712656208.640807]: SOMA.PouredObject \n", + "[INFO] [1712656208.641051]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656208.641321]: Ancestors: {DUL.Concept, SOMA.PouredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.641572]: Subclasses: []\n", + "[INFO] [1712656208.641863]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.642345]: Instances: []\n", + "[INFO] [1712656208.642599]: Direct Instances: []\n", + "[INFO] [1712656208.642879]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712656208.643123]: -------------------\n", + "[INFO] [1712656208.643359]: SOMA.Pouring \n", + "[INFO] [1712656208.643597]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712656208.643852]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712656208.644109]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712656208.644398]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656208.644886]: Instances: []\n", + "[INFO] [1712656208.645138]: Direct Instances: []\n", + "[INFO] [1712656208.645376]: Inverse Restrictions: []\n", + "[INFO] [1712656208.645616]: -------------------\n", + "[INFO] [1712656208.645845]: SOMA.PouringInto \n", + "[INFO] [1712656208.646070]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712656208.646326]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PouringInto, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712656208.646558]: Subclasses: []\n", + "[INFO] [1712656208.646833]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.647320]: Instances: []\n", + "[INFO] [1712656208.647577]: Direct Instances: []\n", + "[INFO] [1712656208.647819]: Inverse Restrictions: []\n", + "[INFO] [1712656208.648048]: -------------------\n", + "[INFO] [1712656208.648281]: SOMA.PouringOnto \n", + "[INFO] [1712656208.648520]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712656208.648925]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.PouringOnto, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712656208.649281]: Subclasses: []\n", + "[INFO] [1712656208.649681]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.650294]: Instances: []\n", + "[INFO] [1712656208.650677]: Direct Instances: []\n", + "[INFO] [1712656208.651045]: Inverse Restrictions: []\n", + "[INFO] [1712656208.651397]: -------------------\n", + "[INFO] [1712656208.651777]: SOMA.Prediction \n", + "[INFO] [1712656208.652135]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712656208.652524]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing}\n", + "[INFO] [1712656208.652794]: Subclasses: []\n", + "[INFO] [1712656208.653089]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.653589]: Instances: []\n", + "[INFO] [1712656208.653845]: Direct Instances: []\n", + "[INFO] [1712656208.654088]: Inverse Restrictions: []\n", + "[INFO] [1712656208.654313]: -------------------\n", + "[INFO] [1712656208.654542]: SOMA.Prospecting \n", + "[INFO] [1712656208.654765]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656208.655003]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Prospecting}\n", + "[INFO] [1712656208.655249]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712656208.655536]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.656027]: Instances: []\n", + "[INFO] [1712656208.656276]: Direct Instances: []\n", + "[INFO] [1712656208.656514]: Inverse Restrictions: []\n", + "[INFO] [1712656208.656744]: -------------------\n", + "[INFO] [1712656208.656982]: SOMA.Predilection \n", + "[INFO] [1712656208.657994]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712656208.658278]: Ancestors: {SOMA.Predilection, DUL.SocialRelation, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.658536]: Subclasses: []\n", + "[INFO] [1712656208.658828]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656208.659311]: Instances: []\n", + "[INFO] [1712656208.659565]: Direct Instances: []\n", + "[INFO] [1712656208.659814]: Inverse Restrictions: []\n", + "[INFO] [1712656208.660046]: -------------------\n", + "[INFO] [1712656208.660275]: SOMA.PreferenceOrder \n", + "[INFO] [1712656208.660941]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712656208.661279]: Ancestors: {DUL.SocialRelation, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PreferenceOrder}\n", + "[INFO] [1712656208.661547]: Subclasses: []\n", + "[INFO] [1712656208.661860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.orders]\n", + "[INFO] [1712656208.662358]: Instances: []\n", + "[INFO] [1712656208.662632]: Direct Instances: []\n", + "[INFO] [1712656208.662886]: Inverse Restrictions: []\n", + "[INFO] [1712656208.663127]: -------------------\n", + "[INFO] [1712656208.663363]: SOMA.PreferenceRegion \n", + "[INFO] [1712656208.663605]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712656208.663882]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.SocialObjectAttribute, DUL.Entity}\n", + "[INFO] [1712656208.664167]: Subclasses: []\n", + "[INFO] [1712656208.664474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isRegionFor, rdf-schema.label]\n", + "[INFO] [1712656208.664982]: Instances: []\n", + "[INFO] [1712656208.665261]: Direct Instances: []\n", + "[INFO] [1712656208.665762]: Inverse Restrictions: []\n", + "[INFO] [1712656208.666256]: -------------------\n", + "[INFO] [1712656208.666740]: SOMA.PrismaticJoint \n", + "[INFO] [1712656208.667216]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712656208.667721]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PrismaticJoint}\n", + "[INFO] [1712656208.668090]: Subclasses: []\n", + "[INFO] [1712656208.668620]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", + "[INFO] [1712656208.669225]: Instances: []\n", + "[INFO] [1712656208.669605]: Direct Instances: []\n", + "[INFO] [1712656208.669956]: Inverse Restrictions: []\n", + "[INFO] [1712656208.670292]: -------------------\n", + "[INFO] [1712656208.670616]: SOMA.ProcessFlow \n", + "[INFO] [1712656208.670948]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712656208.671297]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ProcessFlow, DUL.Entity}\n", + "[INFO] [1712656208.671641]: Subclasses: []\n", + "[INFO] [1712656208.672026]: Properties: [rdf-schema.isDefinedBy, SOMA.definesProcess, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.672597]: Instances: []\n", + "[INFO] [1712656208.672960]: Direct Instances: []\n", + "[INFO] [1712656208.673711]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712656208.674053]: -------------------\n", + "[INFO] [1712656208.674384]: SOMA.Progression \n", + "[INFO] [1712656208.674704]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712656208.675628]: Ancestors: {DUL.Entity, SOMA.Progression, DUL.Situation, owl.Thing}\n", + "[INFO] [1712656208.676014]: Subclasses: []\n", + "[INFO] [1712656208.676419]: Properties: [rdf-schema.isDefinedBy, DUL.satisfies, rdf-schema.comment]\n", + "[INFO] [1712656208.677012]: Instances: []\n", + "[INFO] [1712656208.677370]: Direct Instances: []\n", + "[INFO] [1712656208.677714]: Inverse Restrictions: []\n", + "[INFO] [1712656208.678053]: -------------------\n", + "[INFO] [1712656208.678392]: SOMA.Protector \n", + "[INFO] [1712656208.678709]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712656208.679059]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.Protector, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656208.679388]: Subclasses: []\n", + "[INFO] [1712656208.679768]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.680342]: Instances: []\n", + "[INFO] [1712656208.680686]: Direct Instances: []\n", + "[INFO] [1712656208.681043]: Inverse Restrictions: []\n", + "[INFO] [1712656208.681341]: -------------------\n", + "[INFO] [1712656208.681606]: SOMA.ProximalTheory \n", + "[INFO] [1712656208.681865]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712656208.682137]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, SOMA.ProximalTheory, DUL.Object, DUL.Theory, DUL.SocialObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.682379]: Subclasses: []\n", + "[INFO] [1712656208.682670]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656208.683181]: Instances: []\n", + "[INFO] [1712656208.683457]: Direct Instances: []\n", + "[INFO] [1712656208.683717]: Inverse Restrictions: []\n", + "[INFO] [1712656208.683979]: -------------------\n", + "[INFO] [1712656208.684264]: SOMA.PushingAway \n", + "[INFO] [1712656208.684524]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712656208.684810]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.Actuating, SOMA.PushingAway}\n", + "[INFO] [1712656208.685069]: Subclasses: []\n", + "[INFO] [1712656208.685385]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.685882]: Instances: []\n", + "[INFO] [1712656208.686145]: Direct Instances: []\n", + "[INFO] [1712656208.686403]: Inverse Restrictions: []\n", + "[INFO] [1712656208.686650]: -------------------\n", + "[INFO] [1712656208.686893]: SOMA.PushingDown \n", + "[INFO] [1712656208.687128]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712656208.687395]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.PushingDown, SOMA.Actuating}\n", + "[INFO] [1712656208.687651]: Subclasses: []\n", + "[INFO] [1712656208.687943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.688436]: Instances: []\n", + "[INFO] [1712656208.688709]: Direct Instances: []\n", + "[INFO] [1712656208.689078]: Inverse Restrictions: []\n", + "[INFO] [1712656208.689381]: -------------------\n", + "[INFO] [1712656208.689785]: SOMA.PuttingDown \n", + "[INFO] [1712656208.690126]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656208.690484]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.PuttingDown, DUL.Entity}\n", + "[INFO] [1712656208.690826]: Subclasses: []\n", + "[INFO] [1712656208.691202]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.691771]: Instances: []\n", + "[INFO] [1712656208.692109]: Direct Instances: []\n", + "[INFO] [1712656208.692433]: Inverse Restrictions: []\n", + "[INFO] [1712656208.692743]: -------------------\n", + "[INFO] [1712656208.693082]: SOMA.QualityTransition \n", + "[INFO] [1712656208.693410]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712656208.693752]: Ancestors: {DUL.Situation, SOMA.QualityTransition, DUL.Transition, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.694077]: Subclasses: []\n", + "[INFO] [1712656208.694450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.695042]: Instances: []\n", + "[INFO] [1712656208.695400]: Direct Instances: []\n", + "[INFO] [1712656208.695741]: Inverse Restrictions: []\n", + "[INFO] [1712656208.696114]: -------------------\n", + "[INFO] [1712656208.696486]: SOMA.Query \n", + "[INFO] [1712656208.696833]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712656208.697203]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.Query, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Message}\n", + "[INFO] [1712656208.697542]: Subclasses: []\n", + "[INFO] [1712656208.697918]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.698489]: Instances: []\n", + "[INFO] [1712656208.698864]: Direct Instances: []\n", + "[INFO] [1712656208.699277]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712656208.699642]: -------------------\n", + "[INFO] [1712656208.699984]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712656208.700317]: Super classes: [owl.Thing]\n", + "[INFO] [1712656208.702357]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", + "[INFO] [1712656208.702735]: Subclasses: []\n", + "[INFO] [1712656208.703125]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.703706]: Instances: []\n", + "[INFO] [1712656208.704073]: Direct Instances: []\n", + "[INFO] [1712656208.704415]: Inverse Restrictions: []\n", + "[INFO] [1712656208.704741]: -------------------\n", + "[INFO] [1712656208.705066]: SOMA.QueryEngine \n", + "[INFO] [1712656208.705386]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656208.705736]: Ancestors: {DUL.Concept, SOMA.QueryEngine, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.706081]: Subclasses: []\n", + "[INFO] [1712656208.706460]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.707028]: Instances: []\n", + "[INFO] [1712656208.707372]: Direct Instances: []\n", + "[INFO] [1712656208.707710]: Inverse Restrictions: []\n", + "[INFO] [1712656208.708034]: -------------------\n", + "[INFO] [1712656208.708350]: SOMA.RaspberryJamJar \n", + "[INFO] [1712656208.708668]: Super classes: [SOMA.JamJar]\n", + "[INFO] [1712656208.709026]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.RaspberryJamJar, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.JamJar, DUL.PhysicalObject, SOMA.Jar, DUL.Entity}\n", + "[INFO] [1712656208.709320]: Subclasses: []\n", + "[INFO] [1712656208.709632]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.710134]: Instances: []\n", + "[INFO] [1712656208.710396]: Direct Instances: []\n", + "[INFO] [1712656208.710644]: Inverse Restrictions: []\n", + "[INFO] [1712656208.710897]: -------------------\n", + "[INFO] [1712656208.711140]: SOMA.Reaching \n", + "[INFO] [1712656208.711380]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712656208.711649]: Ancestors: {SOMA.PhysicalTask, SOMA.Reaching, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.711901]: Subclasses: []\n", + "[INFO] [1712656208.712211]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.712704]: Instances: []\n", + "[INFO] [1712656208.713060]: Direct Instances: []\n", + "[INFO] [1712656208.713364]: Inverse Restrictions: []\n", + "[INFO] [1712656208.713639]: -------------------\n", + "[INFO] [1712656208.713897]: SOMA.Retracting \n", + "[INFO] [1712656208.714157]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712656208.714433]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity, SOMA.Retracting}\n", + "[INFO] [1712656208.714683]: Subclasses: []\n", + "[INFO] [1712656208.714972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.715471]: Instances: []\n", + "[INFO] [1712656208.715740]: Direct Instances: []\n", + "[INFO] [1712656208.715997]: Inverse Restrictions: []\n", + "[INFO] [1712656208.716237]: -------------------\n", + "[INFO] [1712656208.716469]: SOMA.Reasoner \n", + "[INFO] [1712656208.716706]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656208.716966]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.717226]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712656208.717513]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.718004]: Instances: []\n", + "[INFO] [1712656208.718276]: Direct Instances: []\n", + "[INFO] [1712656208.718531]: Inverse Restrictions: []\n", + "[INFO] [1712656208.718767]: -------------------\n", + "[INFO] [1712656208.719001]: SOMA.RecipientRole \n", + "[INFO] [1712656208.719234]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712656208.719496]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, SOMA.GoalRole, SOMA.RecipientRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.719752]: Subclasses: []\n", + "[INFO] [1712656208.720045]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.720531]: Instances: []\n", + "[INFO] [1712656208.720812]: Direct Instances: []\n", + "[INFO] [1712656208.721069]: Inverse Restrictions: []\n", + "[INFO] [1712656208.721312]: -------------------\n", + "[INFO] [1712656208.721547]: SOMA.RecordedEpisode \n", + "[INFO] [1712656208.721796]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712656208.722053]: Ancestors: {DUL.Situation, SOMA.Episode, owl.Thing, DUL.Entity, SOMA.RecordedEpisode}\n", + "[INFO] [1712656208.722301]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712656208.722588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", + "[INFO] [1712656208.723072]: Instances: []\n", + "[INFO] [1712656208.723341]: Direct Instances: []\n", + "[INFO] [1712656208.723597]: Inverse Restrictions: []\n", + "[INFO] [1712656208.723845]: -------------------\n", + "[INFO] [1712656208.724086]: SOMA.RedColor \n", + "[INFO] [1712656208.724320]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712656208.724593]: Ancestors: {DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, SOMA.RedColor, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656208.724850]: Subclasses: []\n", + "[INFO] [1712656208.725146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.725628]: Instances: []\n", + "[INFO] [1712656208.725898]: Direct Instances: []\n", + "[INFO] [1712656208.726148]: Inverse Restrictions: []\n", + "[INFO] [1712656208.726393]: -------------------\n", + "[INFO] [1712656208.726627]: SOMA.Refrigerator \n", + "[INFO] [1712656208.726860]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", + "[INFO] [1712656208.727133]: Ancestors: {SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Refrigerator, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.727380]: Subclasses: []\n", + "[INFO] [1712656208.727664]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712656208.728152]: Instances: []\n", + "[INFO] [1712656208.728426]: Direct Instances: []\n", + "[INFO] [1712656208.728676]: Inverse Restrictions: []\n", + "[INFO] [1712656208.728918]: -------------------\n", + "[INFO] [1712656208.729149]: SOMA.Reification \n", + "[INFO] [1712656208.729399]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712656208.729675]: Ancestors: {SOMA.Reification, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.729933]: Subclasses: []\n", + "[INFO] [1712656208.730222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", + "[INFO] [1712656208.730762]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712656208.731055]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712656208.731323]: Inverse Restrictions: []\n", + "[INFO] [1712656208.731583]: -------------------\n", + "[INFO] [1712656208.731833]: SOMA.RelationalDatabase \n", + "[INFO] [1712656208.732070]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712656208.732336]: Ancestors: {SOMA.RelationalDatabase, DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.732595]: Subclasses: []\n", + "[INFO] [1712656208.732892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.733383]: Instances: []\n", + "[INFO] [1712656208.733664]: Direct Instances: []\n", + "[INFO] [1712656208.733914]: Inverse Restrictions: []\n", + "[INFO] [1712656208.734161]: -------------------\n", + "[INFO] [1712656208.734400]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712656208.734633]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712656208.734900]: Ancestors: {SOMA.RelationalQueryLanguage, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.735156]: Subclasses: []\n", + "[INFO] [1712656208.735448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.735938]: Instances: []\n", + "[INFO] [1712656208.736191]: Direct Instances: []\n", + "[INFO] [1712656208.736441]: Inverse Restrictions: []\n", + "[INFO] [1712656208.736678]: -------------------\n", + "[INFO] [1712656208.736912]: SOMA.RelevantPart \n", + "[INFO] [1712656208.737148]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712656208.737540]: Ancestors: {SOMA.Feature, DUL.Object, owl.Thing, DUL.Entity, SOMA.RelevantPart}\n", + "[INFO] [1712656208.738070]: Subclasses: []\n", + "[INFO] [1712656208.738434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.738936]: Instances: []\n", + "[INFO] [1712656208.739214]: Direct Instances: []\n", + "[INFO] [1712656208.739476]: Inverse Restrictions: []\n", + "[INFO] [1712656208.739720]: -------------------\n", + "[INFO] [1712656208.739979]: SOMA.Remembering \n", + "[INFO] [1712656208.740227]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712656208.740648]: Ancestors: {SOMA.Remembering, owl.Thing}\n", + "[INFO] [1712656208.741044]: Subclasses: []\n", + "[INFO] [1712656208.741394]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.741910]: Instances: []\n", + "[INFO] [1712656208.742173]: Direct Instances: []\n", + "[INFO] [1712656208.742418]: Inverse Restrictions: []\n", + "[INFO] [1712656208.742661]: -------------------\n", + "[INFO] [1712656208.742900]: SOMA.Retrospecting \n", + "[INFO] [1712656208.743139]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712656208.743407]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Retrospecting}\n", + "[INFO] [1712656208.743653]: Subclasses: []\n", + "[INFO] [1712656208.743938]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.744437]: Instances: []\n", + "[INFO] [1712656208.744699]: Direct Instances: []\n", + "[INFO] [1712656208.744994]: Inverse Restrictions: []\n", + "[INFO] [1712656208.745231]: -------------------\n", + "[INFO] [1712656208.745465]: SOMA.RemovedObject \n", + "[INFO] [1712656208.745694]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712656208.745970]: Ancestors: {DUL.Concept, SOMA.ExcludedObject, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.RemovedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.746221]: Subclasses: []\n", + "[INFO] [1712656208.746506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.746991]: Instances: []\n", + "[INFO] [1712656208.747264]: Direct Instances: []\n", + "[INFO] [1712656208.747521]: Inverse Restrictions: []\n", + "[INFO] [1712656208.747755]: -------------------\n", + "[INFO] [1712656208.747987]: SOMA.Replanning \n", + "[INFO] [1712656208.748221]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712656208.748484]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, SOMA.Replanning, owl.Thing}\n", + "[INFO] [1712656208.748744]: Subclasses: []\n", + "[INFO] [1712656208.749123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.749651]: Instances: []\n", + "[INFO] [1712656208.749936]: Direct Instances: []\n", + "[INFO] [1712656208.750200]: Inverse Restrictions: []\n", + "[INFO] [1712656208.750451]: -------------------\n", + "[INFO] [1712656208.750701]: SOMA.RevoluteJoint \n", + "[INFO] [1712656208.750966]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712656208.751260]: Ancestors: {SOMA.HingeJoint, SOMA.RevoluteJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.751519]: Subclasses: []\n", + "[INFO] [1712656208.751826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", + "[INFO] [1712656208.752320]: Instances: []\n", + "[INFO] [1712656208.752599]: Direct Instances: []\n", + "[INFO] [1712656208.752866]: Inverse Restrictions: []\n", + "[INFO] [1712656208.753113]: -------------------\n", + "[INFO] [1712656208.753417]: SOMA.Surface \n", + "[INFO] [1712656208.753672]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712656208.753925]: Ancestors: {SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity}\n", + "[INFO] [1712656208.754197]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712656208.754499]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.755002]: Instances: []\n", + "[INFO] [1712656208.755274]: Direct Instances: []\n", + "[INFO] [1712656208.755528]: Inverse Restrictions: []\n", + "[INFO] [1712656208.755767]: -------------------\n", + "[INFO] [1712656208.756000]: SOMA.Rubbing \n", + "[INFO] [1712656208.756232]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712656208.756501]: Ancestors: {SOMA.Rubbing, SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.756756]: Subclasses: []\n", + "[INFO] [1712656208.757051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.757535]: Instances: []\n", + "[INFO] [1712656208.757790]: Direct Instances: []\n", + "[INFO] [1712656208.758039]: Inverse Restrictions: []\n", + "[INFO] [1712656208.758284]: -------------------\n", + "[INFO] [1712656208.758522]: SOMA.SaladBowl \n", + "[INFO] [1712656208.758757]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712656208.759021]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Bowl, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.SaladBowl, SOMA.DesignedTool}\n", + "[INFO] [1712656208.759287]: Subclasses: []\n", + "[INFO] [1712656208.759584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.760077]: Instances: []\n", + "[INFO] [1712656208.760333]: Direct Instances: []\n", + "[INFO] [1712656208.760575]: Inverse Restrictions: []\n", + "[INFO] [1712656208.760817]: -------------------\n", + "[INFO] [1712656208.761067]: SOMA.SaltShaker \n", + "[INFO] [1712656208.761308]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712656208.761569]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Shaker, SOMA.SaltShaker, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.761809]: Subclasses: []\n", + "[INFO] [1712656208.762101]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.762585]: Instances: []\n", + "[INFO] [1712656208.762842]: Direct Instances: []\n", + "[INFO] [1712656208.763085]: Inverse Restrictions: []\n", + "[INFO] [1712656208.763320]: -------------------\n", + "[INFO] [1712656208.763592]: SOMA.Scene \n", + "[INFO] [1712656208.763855]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712656208.764128]: Ancestors: {SOMA.Scene, DUL.Situation, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.764376]: Subclasses: []\n", + "[INFO] [1712656208.764668]: Properties: [rdf-schema.isDefinedBy, DUL.satisfies, rdf-schema.comment, DUL.includesEvent]\n", + "[INFO] [1712656208.765177]: Instances: []\n", + "[INFO] [1712656208.765465]: Direct Instances: []\n", + "[INFO] [1712656208.765767]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712656208.766011]: -------------------\n", + "[INFO] [1712656208.766257]: SOMA.SelectedObject \n", + "[INFO] [1712656208.766503]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712656208.766794]: Ancestors: {DUL.Concept, SOMA.SelectedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.767048]: Subclasses: []\n", + "[INFO] [1712656208.767342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.767823]: Instances: []\n", + "[INFO] [1712656208.768092]: Direct Instances: []\n", + "[INFO] [1712656208.768400]: Inverse Restrictions: []\n", + "[INFO] [1712656208.768651]: -------------------\n", + "[INFO] [1712656208.768893]: SOMA.Selecting \n", + "[INFO] [1712656208.769132]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712656208.769398]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.Selecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712656208.769653]: Subclasses: []\n", + "[INFO] [1712656208.769942]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.770432]: Instances: []\n", + "[INFO] [1712656208.770704]: Direct Instances: []\n", + "[INFO] [1712656208.770960]: Inverse Restrictions: []\n", + "[INFO] [1712656208.771206]: -------------------\n", + "[INFO] [1712656208.771444]: SOMA.SelectingItem \n", + "[INFO] [1712656208.772099]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712656208.772394]: Ancestors: {SOMA.SelectingItem, SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712656208.772648]: Subclasses: []\n", + "[INFO] [1712656208.772947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712656208.773438]: Instances: []\n", + "[INFO] [1712656208.773706]: Direct Instances: []\n", + "[INFO] [1712656208.773958]: Inverse Restrictions: []\n", + "[INFO] [1712656208.774198]: -------------------\n", + "[INFO] [1712656208.774429]: SOMA.SelfReflection \n", + "[INFO] [1712656208.774668]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712656208.774941]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MetacognitiveControlling, SOMA.MentalTask, DUL.Entity, SOMA.SelfReflection}\n", + "[INFO] [1712656208.775196]: Subclasses: []\n", + "[INFO] [1712656208.775481]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656208.775970]: Instances: []\n", + "[INFO] [1712656208.776225]: Direct Instances: []\n", + "[INFO] [1712656208.776475]: Inverse Restrictions: []\n", + "[INFO] [1712656208.776716]: -------------------\n", + "[INFO] [1712656208.777060]: SOMA.Serving \n", + "[INFO] [1712656208.778479]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712656208.778795]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Delivering, DUL.SocialObject, SOMA.Serving, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656208.779065]: Subclasses: []\n", + "[INFO] [1712656208.779367]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.779869]: Instances: []\n", + "[INFO] [1712656208.780139]: Direct Instances: []\n", + "[INFO] [1712656208.780386]: Inverse Restrictions: []\n", + "[INFO] [1712656208.780620]: -------------------\n", + "[INFO] [1712656208.780856]: SOMA.SettingGripper \n", + "[INFO] [1712656208.781104]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712656208.781372]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.SettingGripper, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose}\n", + "[INFO] [1712656208.781615]: Subclasses: []\n", + "[INFO] [1712656208.781898]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.782376]: Instances: []\n", + "[INFO] [1712656208.782652]: Direct Instances: []\n", + "[INFO] [1712656208.782910]: Inverse Restrictions: []\n", + "[INFO] [1712656208.783147]: -------------------\n", + "[INFO] [1712656208.783382]: SOMA.6DPose \n", + "[INFO] [1712656208.783639]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712656208.783932]: Ancestors: {DUL.Region, SOMA.6DPose, DUL.Abstract, owl.Thing, DUL.Entity, DUL.SpaceRegion}\n", + "[INFO] [1712656208.784222]: Subclasses: []\n", + "[INFO] [1712656208.784540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasPositionData]\n", + "[INFO] [1712656208.785039]: Instances: []\n", + "[INFO] [1712656208.785316]: Direct Instances: []\n", + "[INFO] [1712656208.785606]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712656208.785850]: -------------------\n", + "[INFO] [1712656208.786085]: SOMA.Sharpness \n", + "[INFO] [1712656208.786329]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656208.786616]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Sharpness, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.786882]: Subclasses: []\n", + "[INFO] [1712656208.787194]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.787745]: Instances: []\n", + "[INFO] [1712656208.788055]: Direct Instances: []\n", + "[INFO] [1712656208.788363]: Inverse Restrictions: []\n", + "[INFO] [1712656208.788656]: -------------------\n", + "[INFO] [1712656208.789030]: SOMA.Simulating \n", + "[INFO] [1712656208.789373]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712656208.789715]: Ancestors: {SOMA.DerivingInformation, SOMA.Simulating, SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing}\n", + "[INFO] [1712656208.790015]: Subclasses: []\n", + "[INFO] [1712656208.790359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.790960]: Instances: []\n", + "[INFO] [1712656208.791286]: Direct Instances: []\n", + "[INFO] [1712656208.791596]: Inverse Restrictions: []\n", + "[INFO] [1712656208.791896]: -------------------\n", + "[INFO] [1712656208.792173]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712656208.792445]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712656208.792755]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.Simulation_Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.793049]: Subclasses: []\n", + "[INFO] [1712656208.793375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.793906]: Instances: []\n", + "[INFO] [1712656208.794200]: Direct Instances: []\n", + "[INFO] [1712656208.794468]: Inverse Restrictions: []\n", + "[INFO] [1712656208.794714]: -------------------\n", + "[INFO] [1712656208.794949]: SOMA.Sink \n", + "[INFO] [1712656208.795184]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656208.795445]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Sink, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.795701]: Subclasses: []\n", + "[INFO] [1712656208.795989]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.796478]: Instances: []\n", + "[INFO] [1712656208.796777]: Direct Instances: []\n", + "[INFO] [1712656208.797045]: Inverse Restrictions: []\n", + "[INFO] [1712656208.797288]: -------------------\n", + "[INFO] [1712656208.797524]: SOMA.Size \n", + "[INFO] [1712656208.797758]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656208.798017]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Size, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.798275]: Subclasses: []\n", + "[INFO] [1712656208.798567]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.799063]: Instances: []\n", + "[INFO] [1712656208.799325]: Direct Instances: []\n", + "[INFO] [1712656208.799566]: Inverse Restrictions: []\n", + "[INFO] [1712656208.799800]: -------------------\n", + "[INFO] [1712656208.800045]: SOMA.Slicing \n", + "[INFO] [1712656208.800280]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712656208.800546]: Ancestors: {SOMA.Cutting, SOMA.Slicing, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656208.800788]: Subclasses: []\n", + "[INFO] [1712656208.801071]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.801568]: Instances: []\n", + "[INFO] [1712656208.801836]: Direct Instances: []\n", + "[INFO] [1712656208.802086]: Inverse Restrictions: []\n", + "[INFO] [1712656208.802318]: -------------------\n", + "[INFO] [1712656208.802551]: SOMA.Sluggishness \n", + "[INFO] [1712656208.802796]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712656208.803061]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Sluggishness, DUL.Diagnosis}\n", + "[INFO] [1712656208.803304]: Subclasses: []\n", + "[INFO] [1712656208.803584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.804061]: Instances: []\n", + "[INFO] [1712656208.804329]: Direct Instances: []\n", + "[INFO] [1712656208.804585]: Inverse Restrictions: []\n", + "[INFO] [1712656208.804828]: -------------------\n", + "[INFO] [1712656208.805062]: SOMA.SocialState \n", + "[INFO] [1712656208.805317]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712656208.805597]: Ancestors: {SOMA.SocialState, owl.Thing, SOMA.State, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656208.805845]: Subclasses: []\n", + "[INFO] [1712656208.806136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656208.806621]: Instances: []\n", + "[INFO] [1712656208.806888]: Direct Instances: []\n", + "[INFO] [1712656208.807144]: Inverse Restrictions: []\n", + "[INFO] [1712656208.807380]: -------------------\n", + "[INFO] [1712656208.807613]: SOMA.Sofa \n", + "[INFO] [1712656208.807849]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712656208.808113]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Sofa, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656208.808366]: Subclasses: []\n", + "[INFO] [1712656208.808654]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712656208.809193]: Instances: []\n", + "[INFO] [1712656208.809538]: Direct Instances: []\n", + "[INFO] [1712656208.809833]: Inverse Restrictions: []\n", + "[INFO] [1712656208.810094]: -------------------\n", + "[INFO] [1712656208.810349]: SOMA.Software_Configuration \n", + "[INFO] [1712656208.810595]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712656208.810886]: Ancestors: {DUL.Collection, DUL.Configuration, SOMA.Software_Configuration, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.811140]: Subclasses: []\n", + "[INFO] [1712656208.811429]: Properties: [DUL.isDescribedBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656208.811917]: Instances: []\n", + "[INFO] [1712656208.812188]: Direct Instances: []\n", + "[INFO] [1712656208.812535]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712656208.812783]: -------------------\n", + "[INFO] [1712656208.813027]: SOMA.SoftwareLibrary \n", + "[INFO] [1712656208.813270]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712656208.813750]: Ancestors: {SOMA.SoftwareLibrary, DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Software, DUL.Entity}\n", + "[INFO] [1712656208.814101]: Subclasses: []\n", + "[INFO] [1712656208.814393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656208.814881]: Instances: []\n", + "[INFO] [1712656208.815148]: Direct Instances: []\n", + "[INFO] [1712656208.815414]: Inverse Restrictions: []\n", + "[INFO] [1712656208.815665]: -------------------\n", + "[INFO] [1712656208.816154]: SOMA.SoupPot \n", + "[INFO] [1712656208.816556]: Super classes: [SOMA.Pot]\n", + "[INFO] [1712656208.817034]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Pot, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.SoupPot, SOMA.DesignedTool}\n", + "[INFO] [1712656208.817350]: Subclasses: []\n", + "[INFO] [1712656208.817698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.818201]: Instances: []\n", + "[INFO] [1712656208.818480]: Direct Instances: []\n", + "[INFO] [1712656208.818727]: Inverse Restrictions: []\n", + "[INFO] [1712656208.818961]: -------------------\n", + "[INFO] [1712656208.819194]: SOMA.SourceMaterialRole \n", + "[INFO] [1712656208.819438]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712656208.819712]: Ancestors: {DUL.Concept, SOMA.SourceMaterialRole, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.819951]: Subclasses: []\n", + "[INFO] [1712656208.820235]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.820709]: Instances: []\n", + "[INFO] [1712656208.820997]: Direct Instances: []\n", + "[INFO] [1712656208.821256]: Inverse Restrictions: []\n", + "[INFO] [1712656208.821491]: -------------------\n", + "[INFO] [1712656208.821721]: SOMA.Spatula \n", + "[INFO] [1712656208.821954]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", + "[INFO] [1712656208.822232]: Ancestors: {SOMA.Spatula, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712656208.822501]: Subclasses: []\n", + "[INFO] [1712656208.822817]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent]\n", + "[INFO] [1712656208.823357]: Instances: []\n", + "[INFO] [1712656208.823657]: Direct Instances: []\n", + "[INFO] [1712656208.823959]: Inverse Restrictions: []\n", + "[INFO] [1712656208.824236]: -------------------\n", + "[INFO] [1712656208.824507]: SOMA.SphereShape \n", + "[INFO] [1712656208.824812]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712656208.825147]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.SphereShape}\n", + "[INFO] [1712656208.825437]: Subclasses: []\n", + "[INFO] [1712656208.825773]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712656208.826338]: Instances: []\n", + "[INFO] [1712656208.826632]: Direct Instances: []\n", + "[INFO] [1712656208.826913]: Inverse Restrictions: []\n", + "[INFO] [1712656208.827162]: -------------------\n", + "[INFO] [1712656208.827402]: SOMA.Spoon \n", + "[INFO] [1712656208.828082]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712656208.828396]: Ancestors: {SOMA.Spoon, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712656208.828667]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", + "[INFO] [1712656208.828976]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712656208.829467]: Instances: []\n", + "[INFO] [1712656208.829731]: Direct Instances: []\n", + "[INFO] [1712656208.829991]: Inverse Restrictions: []\n", + "[INFO] [1712656208.830237]: -------------------\n", + "[INFO] [1712656208.830473]: SOMA.Standing \n", + "[INFO] [1712656208.830705]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712656208.830973]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, SOMA.Standing, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.831208]: Subclasses: []\n", + "[INFO] [1712656208.831505]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.831995]: Instances: []\n", + "[INFO] [1712656208.832260]: Direct Instances: []\n", + "[INFO] [1712656208.832503]: Inverse Restrictions: []\n", + "[INFO] [1712656208.832749]: -------------------\n", + "[INFO] [1712656208.832994]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712656208.833230]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712656208.833498]: Ancestors: {DUL.Region, SOMA.StaticFrictionAttribute, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656208.833759]: Subclasses: []\n", + "[INFO] [1712656208.834052]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.834534]: Instances: []\n", + "[INFO] [1712656208.834795]: Direct Instances: []\n", + "[INFO] [1712656208.835047]: Inverse Restrictions: []\n", + "[INFO] [1712656208.835279]: -------------------\n", + "[INFO] [1712656208.835510]: SOMA.Status \n", + "[INFO] [1712656208.835750]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712656208.836023]: Ancestors: {DUL.Concept, SOMA.Status, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.836290]: Subclasses: []\n", + "[INFO] [1712656208.836585]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.837084]: Instances: []\n", + "[INFO] [1712656208.837356]: Direct Instances: []\n", + "[INFO] [1712656208.837673]: Inverse Restrictions: []\n", + "[INFO] [1712656208.837924]: -------------------\n", + "[INFO] [1712656208.838159]: SOMA.StatusFailure \n", + "[INFO] [1712656208.838394]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656208.838666]: Ancestors: {SOMA.StatusFailure, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.838937]: Subclasses: []\n", + "[INFO] [1712656208.839244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.839846]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712656208.840169]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712656208.840448]: Inverse Restrictions: []\n", + "[INFO] [1712656208.840692]: -------------------\n", + "[INFO] [1712656208.840938]: SOMA.StimulusRole \n", + "[INFO] [1712656208.841172]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712656208.841443]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.StimulusRole}\n", + "[INFO] [1712656208.841701]: Subclasses: []\n", + "[INFO] [1712656208.841997]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.842482]: Instances: []\n", + "[INFO] [1712656208.842732]: Direct Instances: []\n", + "[INFO] [1712656208.842975]: Inverse Restrictions: []\n", + "[INFO] [1712656208.843218]: -------------------\n", + "[INFO] [1712656208.843448]: SOMA.Stirring \n", + "[INFO] [1712656208.843679]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712656208.843947]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Stirring, SOMA.Mixing}\n", + "[INFO] [1712656208.844187]: Subclasses: []\n", + "[INFO] [1712656208.844515]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656208.845051]: Instances: []\n", + "[INFO] [1712656208.845445]: Direct Instances: []\n", + "[INFO] [1712656208.845738]: Inverse Restrictions: []\n", + "[INFO] [1712656208.846007]: -------------------\n", + "[INFO] [1712656208.846264]: SOMA.Storage \n", + "[INFO] [1712656208.846517]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712656208.846792]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Storage, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656208.847034]: Subclasses: []\n", + "[INFO] [1712656208.847327]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.847830]: Instances: []\n", + "[INFO] [1712656208.848105]: Direct Instances: []\n", + "[INFO] [1712656208.848358]: Inverse Restrictions: []\n", + "[INFO] [1712656208.848591]: -------------------\n", + "[INFO] [1712656208.848826]: SOMA.Stove \n", + "[INFO] [1712656208.849058]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", + "[INFO] [1712656208.849328]: Ancestors: {SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Stove, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.849585]: Subclasses: []\n", + "[INFO] [1712656208.849883]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712656208.850369]: Instances: []\n", + "[INFO] [1712656208.850636]: Direct Instances: []\n", + "[INFO] [1712656208.850892]: Inverse Restrictions: []\n", + "[INFO] [1712656208.851126]: -------------------\n", + "[INFO] [1712656208.851354]: SOMA.StructuralDesign \n", + "[INFO] [1712656208.851583]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712656208.851848]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, SOMA.StructuralDesign, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.852105]: Subclasses: []\n", + "[INFO] [1712656208.852400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.852887]: Instances: []\n", + "[INFO] [1712656208.853141]: Direct Instances: []\n", + "[INFO] [1712656208.853390]: Inverse Restrictions: []\n", + "[INFO] [1712656208.853630]: -------------------\n", + "[INFO] [1712656208.853861]: SOMA.TaskInvocation \n", + "[INFO] [1712656208.854125]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712656208.854406]: Ancestors: {DUL.Workflow, DUL.Plan, SOMA.TaskInvocation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.854664]: Subclasses: []\n", + "[INFO] [1712656208.854964]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesTask]\n", + "[INFO] [1712656208.855447]: Instances: []\n", + "[INFO] [1712656208.855707]: Direct Instances: []\n", + "[INFO] [1712656208.856023]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712656208.856273]: -------------------\n", + "[INFO] [1712656208.856509]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712656208.856741]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712656208.856984]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.857232]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712656208.857527]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.858028]: Instances: []\n", + "[INFO] [1712656208.858299]: Direct Instances: []\n", + "[INFO] [1712656208.858557]: Inverse Restrictions: []\n", + "[INFO] [1712656208.858788]: -------------------\n", + "[INFO] [1712656208.859014]: SOMA.Successfulness \n", + "[INFO] [1712656208.859236]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712656208.859499]: Ancestors: {SOMA.Successfulness, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.859752]: Subclasses: []\n", + "[INFO] [1712656208.860054]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.860552]: Instances: []\n", + "[INFO] [1712656208.860813]: Direct Instances: []\n", + "[INFO] [1712656208.861070]: Inverse Restrictions: []\n", + "[INFO] [1712656208.861304]: -------------------\n", + "[INFO] [1712656208.861533]: SOMA.SugarDispenser \n", + "[INFO] [1712656208.861756]: Super classes: [SOMA.Dispenser]\n", + "[INFO] [1712656208.862015]: Ancestors: {SOMA.DesignedContainer, SOMA.Dispenser, SOMA.SugarDispenser, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.862272]: Subclasses: []\n", + "[INFO] [1712656208.862559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.863123]: Instances: []\n", + "[INFO] [1712656208.863413]: Direct Instances: []\n", + "[INFO] [1712656208.863674]: Inverse Restrictions: []\n", + "[INFO] [1712656208.863905]: -------------------\n", + "[INFO] [1712656208.864136]: SOMA.SupportState \n", + "[INFO] [1712656208.865167]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712656208.865492]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity, SOMA.SupportState}\n", + "[INFO] [1712656208.865758]: Subclasses: []\n", + "[INFO] [1712656208.866060]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.866547]: Instances: []\n", + "[INFO] [1712656208.866808]: Direct Instances: []\n", + "[INFO] [1712656208.867066]: Inverse Restrictions: []\n", + "[INFO] [1712656208.867305]: -------------------\n", + "[INFO] [1712656208.867535]: SOMA.Supporter \n", + "[INFO] [1712656208.867761]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712656208.868025]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.Supporter, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656208.868291]: Subclasses: []\n", + "[INFO] [1712656208.868584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.869078]: Instances: []\n", + "[INFO] [1712656208.869345]: Direct Instances: []\n", + "[INFO] [1712656208.869646]: Inverse Restrictions: []\n", + "[INFO] [1712656208.869894]: -------------------\n", + "[INFO] [1712656208.870129]: SOMA.SupportTheory \n", + "[INFO] [1712656208.870361]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712656208.870627]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, SOMA.SupportTheory}\n", + "[INFO] [1712656208.870858]: Subclasses: []\n", + "[INFO] [1712656208.871153]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.871634]: Instances: []\n", + "[INFO] [1712656208.871889]: Direct Instances: []\n", + "[INFO] [1712656208.872137]: Inverse Restrictions: []\n", + "[INFO] [1712656208.872377]: -------------------\n", + "[INFO] [1712656208.872607]: SOMA.SupportedObject \n", + "[INFO] [1712656208.872841]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712656208.873101]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.SupportedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.873333]: Subclasses: []\n", + "[INFO] [1712656208.873618]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.874107]: Instances: []\n", + "[INFO] [1712656208.874361]: Direct Instances: []\n", + "[INFO] [1712656208.874599]: Inverse Restrictions: []\n", + "[INFO] [1712656208.874830]: -------------------\n", + "[INFO] [1712656208.875063]: SOMA.SymbolicReasoner \n", + "[INFO] [1712656208.875289]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712656208.875551]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.SymbolicReasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.875805]: Subclasses: []\n", + "[INFO] [1712656208.876096]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.876599]: Instances: []\n", + "[INFO] [1712656208.876876]: Direct Instances: []\n", + "[INFO] [1712656208.877124]: Inverse Restrictions: []\n", + "[INFO] [1712656208.877388]: -------------------\n", + "[INFO] [1712656208.877621]: SOMA.TableFork \n", + "[INFO] [1712656208.877847]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712656208.878113]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.TableFork, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", + "[INFO] [1712656208.878371]: Subclasses: []\n", + "[INFO] [1712656208.878662]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.879158]: Instances: []\n", + "[INFO] [1712656208.879411]: Direct Instances: []\n", + "[INFO] [1712656208.879670]: Inverse Restrictions: []\n", + "[INFO] [1712656208.879906]: -------------------\n", + "[INFO] [1712656208.880133]: SOMA.TableKnife \n", + "[INFO] [1712656208.880358]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712656208.880626]: Ancestors: {SOMA.KitchenKnife, SOMA.Knife, SOMA.TableKnife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656208.880880]: Subclasses: []\n", + "[INFO] [1712656208.881169]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.881652]: Instances: []\n", + "[INFO] [1712656208.881922]: Direct Instances: []\n", + "[INFO] [1712656208.882171]: Inverse Restrictions: []\n", + "[INFO] [1712656208.882405]: -------------------\n", + "[INFO] [1712656208.882633]: SOMA.TableSpoon \n", + "[INFO] [1712656208.882861]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712656208.883132]: Ancestors: {SOMA.TableSpoon, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, SOMA.Tableware, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Spoon, SOMA.DesignedTool}\n", + "[INFO] [1712656208.883395]: Subclasses: []\n", + "[INFO] [1712656208.883707]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.884211]: Instances: []\n", + "[INFO] [1712656208.884474]: Direct Instances: []\n", + "[INFO] [1712656208.884716]: Inverse Restrictions: []\n", + "[INFO] [1712656208.885151]: -------------------\n", + "[INFO] [1712656208.885560]: SOMA.TeaSpoon \n", + "[INFO] [1712656208.885938]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712656208.886351]: Ancestors: {SOMA.Spoon, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.TeaSpoon, SOMA.DesignedTool}\n", + "[INFO] [1712656208.886732]: Subclasses: []\n", + "[INFO] [1712656208.887142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.887667]: Instances: []\n", + "[INFO] [1712656208.887945]: Direct Instances: []\n", + "[INFO] [1712656208.888216]: Inverse Restrictions: []\n", + "[INFO] [1712656208.888452]: -------------------\n", + "[INFO] [1712656208.888684]: SOMA.Tap \n", + "[INFO] [1712656208.888921]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712656208.889207]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Tap, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656208.889453]: Subclasses: []\n", + "[INFO] [1712656208.889739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.890229]: Instances: []\n", + "[INFO] [1712656208.890480]: Direct Instances: []\n", + "[INFO] [1712656208.890740]: Inverse Restrictions: []\n", + "[INFO] [1712656208.890974]: -------------------\n", + "[INFO] [1712656208.891202]: SOMA.Tapping \n", + "[INFO] [1712656208.891430]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712656208.891695]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Tapping, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.891948]: Subclasses: []\n", + "[INFO] [1712656208.892236]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.892712]: Instances: []\n", + "[INFO] [1712656208.892970]: Direct Instances: []\n", + "[INFO] [1712656208.893203]: Inverse Restrictions: []\n", + "[INFO] [1712656208.893432]: -------------------\n", + "[INFO] [1712656208.893675]: SOMA.Taxis \n", + "[INFO] [1712656208.893904]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712656208.894171]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.Taxis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.894405]: Subclasses: []\n", + "[INFO] [1712656208.894679]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.895179]: Instances: []\n", + "[INFO] [1712656208.895436]: Direct Instances: []\n", + "[INFO] [1712656208.895684]: Inverse Restrictions: []\n", + "[INFO] [1712656208.895909]: -------------------\n", + "[INFO] [1712656208.896138]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712656208.896398]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712656208.896647]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656208.896943]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712656208.897249]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712656208.897766]: Instances: []\n", + "[INFO] [1712656208.898037]: Direct Instances: []\n", + "[INFO] [1712656208.898311]: Inverse Restrictions: []\n", + "[INFO] [1712656208.898555]: -------------------\n", + "[INFO] [1712656208.898787]: SOMA.Temperature \n", + "[INFO] [1712656208.899057]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712656208.899344]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Temperature, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.899598]: Subclasses: []\n", + "[INFO] [1712656208.899891]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712656208.900373]: Instances: []\n", + "[INFO] [1712656208.900647]: Direct Instances: []\n", + "[INFO] [1712656208.901330]: Inverse Restrictions: []\n", + "[INFO] [1712656208.901584]: -------------------\n", + "[INFO] [1712656208.901820]: SOMA.TemperatureRegion \n", + "[INFO] [1712656208.902050]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656208.902315]: Ancestors: {SOMA.TemperatureRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656208.902576]: Subclasses: []\n", + "[INFO] [1712656208.902873]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.903362]: Instances: []\n", + "[INFO] [1712656208.903615]: Direct Instances: []\n", + "[INFO] [1712656208.903931]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712656208.904185]: -------------------\n", + "[INFO] [1712656208.904424]: SOMA.Tempering \n", + "[INFO] [1712656208.904689]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712656208.904942]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656208.905194]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712656208.905483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.905977]: Instances: []\n", + "[INFO] [1712656208.906234]: Direct Instances: []\n", + "[INFO] [1712656208.906486]: Inverse Restrictions: []\n", + "[INFO] [1712656208.906719]: -------------------\n", + "[INFO] [1712656208.906944]: SOMA.TemperingByCooling \n", + "[INFO] [1712656208.907179]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712656208.907447]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, DUL.Entity, SOMA.Disposition, SOMA.TemperingByCooling}\n", + "[INFO] [1712656208.907682]: Subclasses: []\n", + "[INFO] [1712656208.907961]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.908443]: Instances: []\n", + "[INFO] [1712656208.908711]: Direct Instances: []\n", + "[INFO] [1712656208.908978]: Inverse Restrictions: []\n", + "[INFO] [1712656208.909208]: -------------------\n", + "[INFO] [1712656208.909436]: SOMA.ThinkAloud \n", + "[INFO] [1712656208.909661]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712656208.909931]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ThinkAloud, DUL.Entity}\n", + "[INFO] [1712656208.910177]: Subclasses: []\n", + "[INFO] [1712656208.910465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.910943]: Instances: []\n", + "[INFO] [1712656208.911211]: Direct Instances: []\n", + "[INFO] [1712656208.911467]: Inverse Restrictions: []\n", + "[INFO] [1712656208.911698]: -------------------\n", + "[INFO] [1712656208.911926]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712656208.912149]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656208.912426]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.ThinkAloudActionTopic, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.912676]: Subclasses: []\n", + "[INFO] [1712656208.912966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.913490]: Instances: []\n", + "[INFO] [1712656208.913769]: Direct Instances: []\n", + "[INFO] [1712656208.914026]: Inverse Restrictions: []\n", + "[INFO] [1712656208.914255]: -------------------\n", + "[INFO] [1712656208.914481]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712656208.914720]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712656208.914999]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.915244]: Subclasses: []\n", + "[INFO] [1712656208.915528]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.916026]: Instances: []\n", + "[INFO] [1712656208.916285]: Direct Instances: []\n", + "[INFO] [1712656208.916529]: Inverse Restrictions: []\n", + "[INFO] [1712656208.916790]: -------------------\n", + "[INFO] [1712656208.917052]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712656208.917286]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656208.917540]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudKnowledgeTopic, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.917799]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712656208.918085]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.918569]: Instances: []\n", + "[INFO] [1712656208.918841]: Direct Instances: []\n", + "[INFO] [1712656208.919097]: Inverse Restrictions: []\n", + "[INFO] [1712656208.919328]: -------------------\n", + "[INFO] [1712656208.919561]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712656208.919787]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656208.920053]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.920310]: Subclasses: []\n", + "[INFO] [1712656208.920603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.921091]: Instances: []\n", + "[INFO] [1712656208.921352]: Direct Instances: []\n", + "[INFO] [1712656208.921615]: Inverse Restrictions: []\n", + "[INFO] [1712656208.921852]: -------------------\n", + "[INFO] [1712656208.922083]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712656208.922309]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656208.922574]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.922825]: Subclasses: []\n", + "[INFO] [1712656208.923115]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.923602]: Instances: []\n", + "[INFO] [1712656208.923855]: Direct Instances: []\n", + "[INFO] [1712656208.924093]: Inverse Restrictions: []\n", + "[INFO] [1712656208.924334]: -------------------\n", + "[INFO] [1712656208.924566]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712656208.924801]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656208.925071]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.925312]: Subclasses: []\n", + "[INFO] [1712656208.925611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.926099]: Instances: []\n", + "[INFO] [1712656208.926357]: Direct Instances: []\n", + "[INFO] [1712656208.926620]: Inverse Restrictions: []\n", + "[INFO] [1712656208.926852]: -------------------\n", + "[INFO] [1712656208.927081]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712656208.927306]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656208.927571]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ThinkAloudPlanTopic, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.927849]: Subclasses: []\n", + "[INFO] [1712656208.928147]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.928641]: Instances: []\n", + "[INFO] [1712656208.928904]: Direct Instances: []\n", + "[INFO] [1712656208.929145]: Inverse Restrictions: []\n", + "[INFO] [1712656208.929386]: -------------------\n", + "[INFO] [1712656208.929621]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712656208.929855]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712656208.930165]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656208.930442]: Subclasses: []\n", + "[INFO] [1712656208.930738]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.931228]: Instances: []\n", + "[INFO] [1712656208.931479]: Direct Instances: []\n", + "[INFO] [1712656208.931720]: Inverse Restrictions: []\n", + "[INFO] [1712656208.931954]: -------------------\n", + "[INFO] [1712656208.932192]: SOMA.Threshold \n", + "[INFO] [1712656208.932421]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712656208.932682]: Ancestors: {DUL.Concept, SOMA.Threshold, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.932924]: Subclasses: []\n", + "[INFO] [1712656208.933207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.933702]: Instances: []\n", + "[INFO] [1712656208.933964]: Direct Instances: []\n", + "[INFO] [1712656208.934210]: Inverse Restrictions: []\n", + "[INFO] [1712656208.934439]: -------------------\n", + "[INFO] [1712656208.934679]: SOMA.Throwing \n", + "[INFO] [1712656208.934916]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712656208.935189]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Throwing, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656208.935433]: Subclasses: []\n", + "[INFO] [1712656208.935715]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.936208]: Instances: []\n", + "[INFO] [1712656208.936472]: Direct Instances: []\n", + "[INFO] [1712656208.936721]: Inverse Restrictions: []\n", + "[INFO] [1712656208.936959]: -------------------\n", + "[INFO] [1712656208.937186]: SOMA.TimeRole \n", + "[INFO] [1712656208.937411]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712656208.937682]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656208.937934]: Subclasses: []\n", + "[INFO] [1712656208.938220]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.938696]: Instances: []\n", + "[INFO] [1712656208.938966]: Direct Instances: []\n", + "[INFO] [1712656208.939524]: Inverse Restrictions: []\n", + "[INFO] [1712656208.939896]: -------------------\n", + "[INFO] [1712656208.940171]: SOMA.Transporting \n", + "[INFO] [1712656208.940506]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712656208.940799]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", + "[INFO] [1712656208.941078]: Subclasses: []\n", + "[INFO] [1712656208.941396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.941896]: Instances: []\n", + "[INFO] [1712656208.942156]: Direct Instances: []\n", + "[INFO] [1712656208.942406]: Inverse Restrictions: []\n", + "[INFO] [1712656208.942651]: -------------------\n", + "[INFO] [1712656208.942890]: SOMA.TrashContainer \n", + "[INFO] [1712656208.943124]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712656208.943398]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.TrashContainer, DUL.Entity}\n", + "[INFO] [1712656208.943637]: Subclasses: []\n", + "[INFO] [1712656208.943937]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.944432]: Instances: []\n", + "[INFO] [1712656208.944709]: Direct Instances: []\n", + "[INFO] [1712656208.944982]: Inverse Restrictions: []\n", + "[INFO] [1712656208.945239]: -------------------\n", + "[INFO] [1712656208.945474]: SOMA.Triplestore \n", + "[INFO] [1712656208.945703]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712656208.945972]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, SOMA.Triplestore, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", + "[INFO] [1712656208.946229]: Subclasses: []\n", + "[INFO] [1712656208.946521]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.947048]: Instances: []\n", + "[INFO] [1712656208.947312]: Direct Instances: []\n", + "[INFO] [1712656208.947566]: Inverse Restrictions: []\n", + "[INFO] [1712656208.947798]: -------------------\n", + "[INFO] [1712656208.948041]: SOMA.Turning \n", + "[INFO] [1712656208.948273]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712656208.948545]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, SOMA.Turning, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656208.948786]: Subclasses: []\n", + "[INFO] [1712656208.949108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.949617]: Instances: []\n", + "[INFO] [1712656208.949898]: Direct Instances: []\n", + "[INFO] [1712656208.950144]: Inverse Restrictions: []\n", + "[INFO] [1712656208.950382]: -------------------\n", + "[INFO] [1712656208.950617]: SOMA.UnavailableSoftware \n", + "[INFO] [1712656208.950847]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712656208.951118]: Ancestors: {SOMA.UnavailableSoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656208.951359]: Subclasses: []\n", + "[INFO] [1712656208.951655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.952139]: Instances: []\n", + "[INFO] [1712656208.952403]: Direct Instances: []\n", + "[INFO] [1712656208.952641]: Inverse Restrictions: []\n", + "[INFO] [1712656208.952876]: -------------------\n", + "[INFO] [1712656208.953116]: SOMA.Unsuccessfulness \n", + "[INFO] [1712656208.953349]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712656208.953588]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656208.953839]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712656208.954128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.954634]: Instances: []\n", + "[INFO] [1712656208.954892]: Direct Instances: []\n", + "[INFO] [1712656208.955151]: Inverse Restrictions: []\n", + "[INFO] [1712656208.955379]: -------------------\n", + "[INFO] [1712656208.955616]: SOMA.VideoData \n", + "[INFO] [1712656208.955851]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712656208.956118]: Ancestors: {SOMA.VideoData, DUL.InformationEntity, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656208.956353]: Subclasses: []\n", + "[INFO] [1712656208.956647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.957179]: Instances: []\n", + "[INFO] [1712656208.957463]: Direct Instances: []\n", + "[INFO] [1712656208.957711]: Inverse Restrictions: []\n", + "[INFO] [1712656208.957942]: -------------------\n", + "[INFO] [1712656208.958167]: SOMA.Wardrobe \n", + "[INFO] [1712656208.958391]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712656208.958670]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Cupboard, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture, SOMA.Wardrobe}\n", + "[INFO] [1712656208.958911]: Subclasses: []\n", + "[INFO] [1712656208.959193]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.959670]: Instances: []\n", + "[INFO] [1712656208.959946]: Direct Instances: []\n", + "[INFO] [1712656208.960197]: Inverse Restrictions: []\n", + "[INFO] [1712656208.960427]: -------------------\n", + "[INFO] [1712656208.960654]: SOMA.WaterBottle \n", + "[INFO] [1712656208.960882]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712656208.961148]: Ancestors: {SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.WaterBottle}\n", + "[INFO] [1712656208.961403]: Subclasses: []\n", + "[INFO] [1712656208.961691]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.962184]: Instances: []\n", + "[INFO] [1712656208.962437]: Direct Instances: []\n", + "[INFO] [1712656208.962684]: Inverse Restrictions: []\n", + "[INFO] [1712656208.962920]: -------------------\n", + "[INFO] [1712656208.963154]: SOMA.WaterGlass \n", + "[INFO] [1712656208.963419]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712656208.963717]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, SOMA.WaterGlass, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool, SOMA.Glass}\n", + "[INFO] [1712656208.963983]: Subclasses: []\n", + "[INFO] [1712656208.964277]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.965039]: Instances: []\n", + "[INFO] [1712656208.965627]: Direct Instances: []\n", + "[INFO] [1712656208.966061]: Inverse Restrictions: []\n", + "[INFO] [1712656208.966455]: -------------------\n", + "[INFO] [1712656208.966840]: SOMA.WineBottle \n", + "[INFO] [1712656208.967125]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712656208.967417]: Ancestors: {SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.WineBottle, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.967680]: Subclasses: []\n", + "[INFO] [1712656208.967976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.968463]: Instances: []\n", + "[INFO] [1712656208.968726]: Direct Instances: []\n", + "[INFO] [1712656208.968998]: Inverse Restrictions: []\n", + "[INFO] [1712656208.969234]: -------------------\n", + "[INFO] [1712656208.969471]: SOMA.WineGlass \n", + "[INFO] [1712656208.969699]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712656208.969968]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.WineGlass, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool, SOMA.Glass}\n", + "[INFO] [1712656208.970221]: Subclasses: []\n", + "[INFO] [1712656208.970512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.970995]: Instances: []\n", + "[INFO] [1712656208.971246]: Direct Instances: []\n", + "[INFO] [1712656208.971488]: Inverse Restrictions: []\n", + "[INFO] [1712656208.971725]: -------------------\n", + "[INFO] [1712656208.971958]: SOMA.3DPosition \n", + "[INFO] [1712656208.972224]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712656208.972494]: Ancestors: {SOMA.3DPosition, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.SpaceRegion}\n", + "[INFO] [1712656208.972742]: Subclasses: []\n", + "[INFO] [1712656208.973045]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasPositionData]\n", + "[INFO] [1712656208.973521]: Instances: []\n", + "[INFO] [1712656208.973772]: Direct Instances: []\n", + "[INFO] [1712656208.974013]: Inverse Restrictions: []\n", + "[INFO] [1712656208.974250]: -------------------\n", + "[INFO] [1712656208.974481]: SOMA.Affordance \n", + "[INFO] [1712656208.974725]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712656208.974967]: Ancestors: {SOMA.Affordance, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.975228]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712656208.975527]: Properties: [rdf-schema.isDefinedBy, SOMA.definesBearer, rdf-schema.comment, SOMA.definesTrigger, DUL.definesTask]\n", + "[INFO] [1712656208.976008]: Instances: []\n", + "[INFO] [1712656208.976255]: Direct Instances: []\n", + "[INFO] [1712656208.976630]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712656208.976886]: -------------------\n", + "[INFO] [1712656208.977126]: SOMA.Disposition \n", + "[INFO] [1712656208.977378]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712656208.977618]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656208.977880]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712656208.978183]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656208.978721]: Instances: []\n", + "[INFO] [1712656208.978985]: Direct Instances: []\n", + "[INFO] [1712656208.979297]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712656208.979543]: -------------------\n", + "[INFO] [1712656208.979779]: SOMA.Setpoint \n", + "[INFO] [1712656208.980025]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712656208.980279]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.Parameter, SOMA.Setpoint, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.980531]: Subclasses: []\n", + "[INFO] [1712656208.980834]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656208.981472]: Instances: []\n", + "[INFO] [1712656208.981770]: Direct Instances: []\n", + "[INFO] [1712656208.982040]: Inverse Restrictions: []\n", + "[INFO] [1712656208.982294]: -------------------\n", + "[INFO] [1712656208.982538]: SOMA.Answer \n", + "[INFO] [1712656208.982771]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712656208.983018]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Answer, SOMA.Message}\n", + "[INFO] [1712656208.983282]: Subclasses: []\n", + "[INFO] [1712656208.983582]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.984069]: Instances: []\n", + "[INFO] [1712656208.984329]: Direct Instances: []\n", + "[INFO] [1712656208.984622]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712656208.984882]: -------------------\n", + "[INFO] [1712656208.985123]: SOMA.Message \n", + "[INFO] [1712656208.985363]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712656208.985615]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Message}\n", + "[INFO] [1712656208.985870]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712656208.986162]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.986667]: Instances: []\n", + "[INFO] [1712656208.986928]: Direct Instances: []\n", + "[INFO] [1712656208.987245]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656208.987489]: -------------------\n", + "[INFO] [1712656208.987734]: SOMA.ProcessType \n", + "[INFO] [1712656208.987977]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712656208.988219]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656208.988489]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712656208.988794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.989379]: Instances: []\n", + "[INFO] [1712656208.989662]: Direct Instances: []\n", + "[INFO] [1712656208.989995]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712656208.990244]: -------------------\n", + "[INFO] [1712656208.990481]: SOMA.OrderedElement \n", + "[INFO] [1712656208.990729]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712656208.990971]: Ancestors: {SOMA.OrderedElement, SOMA.Singleton, owl.Thing}\n", + "[INFO] [1712656208.991212]: Subclasses: []\n", + "[INFO] [1712656208.991517]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isOrderedBy]\n", + "[INFO] [1712656208.992009]: Instances: []\n", + "[INFO] [1712656208.992267]: Direct Instances: []\n", + "[INFO] [1712656208.992635]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712656208.992898]: -------------------\n", + "[INFO] [1712656208.993144]: SOMA.System \n", + "[INFO] [1712656208.993379]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712656208.993620]: Ancestors: {DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656208.993879]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712656208.994183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656208.994700]: Instances: []\n", + "[INFO] [1712656208.994955]: Direct Instances: []\n", + "[INFO] [1712656208.995211]: Inverse Restrictions: []\n", + "[INFO] [1712656208.995454]: -------------------\n", + "[INFO] [1712656208.995687]: SOMA.Binding \n", + "[INFO] [1712656208.995942]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712656208.996185]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656208.996456]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712656208.996795]: Properties: [SOMA.hasBindingFiller, Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasBindingRole]\n", + "[INFO] [1712656208.997312]: Instances: []\n", + "[INFO] [1712656208.997588]: Direct Instances: []\n", + "[INFO] [1712656208.997854]: Inverse Restrictions: []\n", + "[INFO] [1712656208.998089]: -------------------\n", + "[INFO] [1712656208.998323]: SOMA.Joint \n", + "[INFO] [1712656208.998569]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712656208.998843]: Ancestors: {DUL.PhysicalBody, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656208.999109]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712656208.999420]: Properties: [SOMA.hasChildLink, rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", + "[INFO] [1712656208.999924]: Instances: []\n", + "[INFO] [1712656209.000188]: Direct Instances: []\n", + "[INFO] [1712656209.000464]: Inverse Restrictions: []\n", + "[INFO] [1712656209.000700]: -------------------\n", + "[INFO] [1712656209.000938]: SOMA.Color \n", + "[INFO] [1712656209.001173]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712656209.001417]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.001677]: Subclasses: []\n", + "[INFO] [1712656209.001978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion, rdf-schema.label]\n", + "[INFO] [1712656209.002464]: Instances: []\n", + "[INFO] [1712656209.002724]: Direct Instances: []\n", + "[INFO] [1712656209.003012]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712656209.003268]: -------------------\n", + "[INFO] [1712656209.003520]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712656209.003767]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656209.004015]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.ExecutionStateRegion, DUL.Entity}\n", + "[INFO] [1712656209.004264]: Subclasses: []\n", + "[INFO] [1712656209.004565]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.005117]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712656209.005424]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712656209.005694]: Inverse Restrictions: []\n", + "[INFO] [1712656209.005928]: -------------------\n", + "[INFO] [1712656209.006264]: SOMA.Feature \n", + "[INFO] [1712656209.006541]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712656209.006798]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Feature, owl.Thing}\n", + "[INFO] [1712656209.007059]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712656209.007363]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isFeatureOf]\n", + "[INFO] [1712656209.007854]: Instances: []\n", + "[INFO] [1712656209.008142]: Direct Instances: []\n", + "[INFO] [1712656209.008446]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712656209.008690]: -------------------\n", + "[INFO] [1712656209.009041]: SOMA.FrictionAttribute \n", + "[INFO] [1712656209.009369]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712656209.009659]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656209.009946]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712656209.010259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasFrictionValue]\n", + "[INFO] [1712656209.010762]: Instances: []\n", + "[INFO] [1712656209.011047]: Direct Instances: []\n", + "[INFO] [1712656209.011320]: Inverse Restrictions: []\n", + "[INFO] [1712656209.011558]: -------------------\n", + "[INFO] [1712656209.011791]: SOMA.SituationTransition \n", + "[INFO] [1712656209.012017]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712656209.012253]: Ancestors: {DUL.Situation, SOMA.SituationTransition, DUL.Transition, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.012503]: Subclasses: []\n", + "[INFO] [1712656209.012801]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.013309]: Instances: []\n", + "[INFO] [1712656209.013611]: Direct Instances: []\n", + "[INFO] [1712656209.015576]: Inverse Restrictions: []\n", + "[INFO] [1712656209.015938]: -------------------\n", + "[INFO] [1712656209.016201]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712656209.016448]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712656209.016695]: Ancestors: {DUL.Entity, DUL.Situation, owl.Thing, SOMA.NonmanifestedSituation}\n", + "[INFO] [1712656209.016956]: Subclasses: []\n", + "[INFO] [1712656209.017278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.017798]: Instances: []\n", + "[INFO] [1712656209.018083]: Direct Instances: []\n", + "[INFO] [1712656209.019498]: Inverse Restrictions: []\n", + "[INFO] [1712656209.019775]: -------------------\n", + "[INFO] [1712656209.020026]: SOMA.JointLimit \n", + "[INFO] [1712656209.020280]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712656209.020529]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.JointLimit, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656209.020778]: Subclasses: []\n", + "[INFO] [1712656209.021077]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.021583]: Instances: []\n", + "[INFO] [1712656209.021852]: Direct Instances: []\n", + "[INFO] [1712656209.022183]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712656209.022430]: -------------------\n", + "[INFO] [1712656209.022686]: SOMA.JointState \n", + "[INFO] [1712656209.022937]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712656209.023183]: Ancestors: {DUL.Region, SOMA.JointState, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656209.023423]: Subclasses: []\n", + "[INFO] [1712656209.023717]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasJointPosition, rdf-schema.comment, SOMA.hasJointVelocity]\n", + "[INFO] [1712656209.024218]: Instances: []\n", + "[INFO] [1712656209.024490]: Direct Instances: []\n", + "[INFO] [1712656209.024820]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712656209.025069]: -------------------\n", + "[INFO] [1712656209.025313]: SOMA.Localization \n", + "[INFO] [1712656209.025558]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712656209.025814]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.026066]: Subclasses: []\n", + "[INFO] [1712656209.026366]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712656209.026867]: Instances: []\n", + "[INFO] [1712656209.027142]: Direct Instances: []\n", + "[INFO] [1712656209.028262]: Inverse Restrictions: []\n", + "[INFO] [1712656209.028522]: -------------------\n", + "[INFO] [1712656209.028763]: SOMA.MassAttribute \n", + "[INFO] [1712656209.029021]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712656209.029266]: Ancestors: {SOMA.MassAttribute, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656209.029509]: Subclasses: []\n", + "[INFO] [1712656209.029803]: Properties: [SOMA.hasMassValue, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656209.030309]: Instances: []\n", + "[INFO] [1712656209.030608]: Direct Instances: []\n", + "[INFO] [1712656209.030873]: Inverse Restrictions: []\n", + "[INFO] [1712656209.031106]: -------------------\n", + "[INFO] [1712656209.031347]: SOMA.NetForce \n", + "[INFO] [1712656209.031585]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712656209.031825]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.NetForce, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", + "[INFO] [1712656209.032084]: Subclasses: []\n", + "[INFO] [1712656209.032372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.032902]: Instances: []\n", + "[INFO] [1712656209.033300]: Direct Instances: []\n", + "[INFO] [1712656209.033604]: Inverse Restrictions: []\n", + "[INFO] [1712656209.033867]: -------------------\n", + "[INFO] [1712656209.034112]: SOMA.Succedence \n", + "[INFO] [1712656209.034369]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712656209.034619]: Ancestors: {DUL.Relation, DUL.Description, DUL.Object, owl.Thing, SOMA.Succedence, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.034884]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712656209.035196]: Properties: [Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy, SOMA.hasPredecessor, SOMA.hasSuccessor, rdf-schema.comment]\n", + "[INFO] [1712656209.035694]: Instances: []\n", + "[INFO] [1712656209.035976]: Direct Instances: []\n", + "[INFO] [1712656209.036246]: Inverse Restrictions: []\n", + "[INFO] [1712656209.036482]: -------------------\n", + "[INFO] [1712656209.036718]: SOMA.Preference \n", + "[INFO] [1712656209.036979]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712656209.037251]: Ancestors: {DUL.Quality, SOMA.Preference, SOMA.SocialQuality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.037508]: Subclasses: []\n", + "[INFO] [1712656209.037803]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.038284]: Instances: []\n", + "[INFO] [1712656209.038538]: Direct Instances: []\n", + "[INFO] [1712656209.038913]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712656209.039166]: -------------------\n", + "[INFO] [1712656209.039405]: SOMA.Shape \n", + "[INFO] [1712656209.039651]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712656209.039906]: Ancestors: {SOMA.Shape, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.040159]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", + "[INFO] [1712656209.040450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712656209.040986]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712656209.041268]: Direct Instances: []\n", + "[INFO] [1712656209.042411]: Inverse Restrictions: []\n", + "[INFO] [1712656209.042685]: -------------------\n", + "[INFO] [1712656209.042929]: SOMA.ShapeRegion \n", + "[INFO] [1712656209.043172]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712656209.043413]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.043679]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712656209.043980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.044501]: Instances: []\n", + "[INFO] [1712656209.044786]: Direct Instances: []\n", + "[INFO] [1712656209.045526]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712656209.045783]: -------------------\n", + "[INFO] [1712656209.046023]: SOMA.SoftwareInstance \n", + "[INFO] [1712656209.046282]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712656209.046526]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", + "[INFO] [1712656209.046803]: Subclasses: []\n", + "[INFO] [1712656209.047105]: Properties: [DUL.actsFor, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isDesignedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.047612]: Instances: []\n", + "[INFO] [1712656209.047880]: Direct Instances: []\n", + "[INFO] [1712656209.048216]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712656209.048471]: -------------------\n", + "[INFO] [1712656209.048711]: SOMA.StateType \n", + "[INFO] [1712656209.048980]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712656209.049237]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656209.049512]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712656209.049824]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.050369]: Instances: []\n", + "[INFO] [1712656209.050665]: Direct Instances: []\n", + "[INFO] [1712656209.050999]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712656209.051245]: -------------------\n", + "[INFO] [1712656209.051484]: SOMA.PhysicalEffector \n", + "[INFO] [1712656209.051748]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712656209.052012]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.052289]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712656209.052603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, Inverse(DUL.hasPart)]\n", + "[INFO] [1712656209.053128]: Instances: []\n", + "[INFO] [1712656209.053442]: Direct Instances: []\n", + "[INFO] [1712656209.053721]: Inverse Restrictions: []\n", + "[INFO] [1712656209.053959]: -------------------\n", + "[INFO] [1712656209.054194]: SOMA.QueryingTask \n", + "[INFO] [1712656209.054437]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712656209.054690]: Ancestors: {owl.Thing, SOMA.QueryingTask, SOMA.IllocutionaryTask}\n", + "[INFO] [1712656209.054945]: Subclasses: []\n", + "[INFO] [1712656209.055241]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712656209.055732]: Instances: []\n", + "[INFO] [1712656209.056018]: Direct Instances: []\n", + "[INFO] [1712656209.056357]: Inverse Restrictions: []\n", + "[INFO] [1712656209.056596]: -------------------\n", + "[INFO] [1712656209.056843]: SOMA.Order \n", + "[INFO] [1712656209.057081]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712656209.057318]: Ancestors: {DUL.FormalEntity, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.Order}\n", + "[INFO] [1712656209.057568]: Subclasses: []\n", + "[INFO] [1712656209.057866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.orders]\n", + "[INFO] [1712656209.058359]: Instances: []\n", + "[INFO] [1712656209.058646]: Direct Instances: []\n", + "[INFO] [1712656209.059015]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712656209.059264]: -------------------\n", + "[INFO] [1712656209.059496]: SOMA.State \n", + "[INFO] [1712656209.059728]: Super classes: [DUL.Event]\n", + "[INFO] [1712656209.059964]: Ancestors: {DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", + "[INFO] [1712656209.060231]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712656209.060525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.061027]: Instances: []\n", + "[INFO] [1712656209.061315]: Direct Instances: []\n", + "[INFO] [1712656209.061829]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712656209.062079]: -------------------\n", + "[INFO] [1712656209.062312]: SOMA.Transient \n", + "[INFO] [1712656209.062555]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712656209.062808]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Transient, owl.Thing}\n", + "[INFO] [1712656209.063068]: Subclasses: []\n", + "[INFO] [1712656209.063386]: Properties: [rdf-schema.isDefinedBy, SOMA.transitionsFrom, rdf-schema.comment]\n", + "[INFO] [1712656209.063883]: Instances: []\n", + "[INFO] [1712656209.064163]: Direct Instances: []\n", + "[INFO] [1712656209.064425]: Inverse Restrictions: []\n", + "[INFO] [1712656209.064660]: -------------------\n", + "[INFO] [1712656209.064914]: SOMA.ColorRegion \n", + "[INFO] [1712656209.065155]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712656209.065433]: Ancestors: {DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656209.065702]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712656209.065999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.066497]: Instances: []\n", + "[INFO] [1712656209.066777]: Direct Instances: []\n", + "[INFO] [1712656209.067106]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712656209.067346]: -------------------\n", + "[INFO] [1712656209.067580]: SOMA.ForceAttribute \n", + "[INFO] [1712656209.067814]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712656209.068061]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", + "[INFO] [1712656209.068321]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712656209.068616]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasForceValue, rdf-schema.label]\n", + "[INFO] [1712656209.069108]: Instances: []\n", + "[INFO] [1712656209.069379]: Direct Instances: []\n", + "[INFO] [1712656209.069640]: Inverse Restrictions: []\n", + "[INFO] [1712656209.069873]: -------------------\n", + "[INFO] [1712656209.070099]: SOMA.API_Specification \n", + "[INFO] [1712656209.070326]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712656209.070562]: Ancestors: {DUL.Design, SOMA.API_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.070824]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712656209.071113]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.071594]: Instances: []\n", + "[INFO] [1712656209.071871]: Direct Instances: []\n", + "[INFO] [1712656209.072143]: Inverse Restrictions: []\n", + "[INFO] [1712656209.072387]: -------------------\n", + "[INFO] [1712656209.072619]: SOMA.InterfaceSpecification \n", + "[INFO] [1712656209.072857]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712656209.073105]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.073374]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712656209.073673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.074185]: Instances: []\n", + "[INFO] [1712656209.074457]: Direct Instances: []\n", + "[INFO] [1712656209.074777]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712656209.075020]: -------------------\n", + "[INFO] [1712656209.075254]: SOMA.AbductiveReasoning \n", + "[INFO] [1712656209.075483]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712656209.075726]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.AbductiveReasoning, SOMA.Reasoning}\n", + "[INFO] [1712656209.075972]: Subclasses: []\n", + "[INFO] [1712656209.076259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.076734]: Instances: []\n", + "[INFO] [1712656209.077022]: Direct Instances: []\n", + "[INFO] [1712656209.077275]: Inverse Restrictions: []\n", + "[INFO] [1712656209.077515]: -------------------\n", + "[INFO] [1712656209.077746]: SOMA.Reasoning \n", + "[INFO] [1712656209.077972]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656209.078207]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Reasoning}\n", + "[INFO] [1712656209.078475]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712656209.078768]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.079257]: Instances: []\n", + "[INFO] [1712656209.079525]: Direct Instances: []\n", + "[INFO] [1712656209.079786]: Inverse Restrictions: []\n", + "[INFO] [1712656209.080040]: -------------------\n", + "[INFO] [1712656209.080279]: SOMA.Accessor \n", + "[INFO] [1712656209.080505]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712656209.080745]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.081009]: Subclasses: []\n", + "[INFO] [1712656209.081297]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.081787]: Instances: []\n", + "[INFO] [1712656209.082046]: Direct Instances: []\n", + "[INFO] [1712656209.082307]: Inverse Restrictions: []\n", + "[INFO] [1712656209.082556]: -------------------\n", + "[INFO] [1712656209.082788]: SOMA.Instrument \n", + "[INFO] [1712656209.083017]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712656209.083253]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.083507]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712656209.083801]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.084322]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656209.084599]: Direct Instances: []\n", + "[INFO] [1712656209.084988]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656209.085239]: -------------------\n", + "[INFO] [1712656209.085473]: SOMA.Accident \n", + "[INFO] [1712656209.085701]: Super classes: [DUL.Event]\n", + "[INFO] [1712656209.085933]: Ancestors: {DUL.Entity, SOMA.Accident, DUL.Event, owl.Thing}\n", + "[INFO] [1712656209.086176]: Subclasses: []\n", + "[INFO] [1712656209.086480]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.086965]: Instances: []\n", + "[INFO] [1712656209.087225]: Direct Instances: []\n", + "[INFO] [1712656209.087466]: Inverse Restrictions: []\n", + "[INFO] [1712656209.087704]: -------------------\n", + "[INFO] [1712656209.087935]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712656209.088166]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712656209.088415]: Ancestors: {DUL.Plan, SOMA.ActionExecutionPlan, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.088653]: Subclasses: []\n", + "[INFO] [1712656209.088952]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.089444]: Instances: []\n", + "[INFO] [1712656209.089708]: Direct Instances: []\n", + "[INFO] [1712656209.089952]: Inverse Restrictions: []\n", + "[INFO] [1712656209.090178]: -------------------\n", + "[INFO] [1712656209.090405]: SOMA.Actuating \n", + "[INFO] [1712656209.090642]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656209.090888]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.091163]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712656209.091458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.091990]: Instances: []\n", + "[INFO] [1712656209.092258]: Direct Instances: []\n", + "[INFO] [1712656209.092525]: Inverse Restrictions: []\n", + "[INFO] [1712656209.092944]: -------------------\n", + "[INFO] [1712656209.093297]: SOMA.PhysicalTask \n", + "[INFO] [1712656209.093677]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712656209.094044]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.094431]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712656209.094860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.095596]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", + "[INFO] [1712656209.095887]: Direct Instances: []\n", + "[INFO] [1712656209.096218]: Inverse Restrictions: []\n", + "[INFO] [1712656209.096466]: -------------------\n", + "[INFO] [1712656209.096727]: SOMA.AestheticDesign \n", + "[INFO] [1712656209.096978]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712656209.097221]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.AestheticDesign, DUL.Entity}\n", + "[INFO] [1712656209.097477]: Subclasses: []\n", + "[INFO] [1712656209.097777]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.098263]: Instances: []\n", + "[INFO] [1712656209.098555]: Direct Instances: []\n", + "[INFO] [1712656209.098823]: Inverse Restrictions: []\n", + "[INFO] [1712656209.099065]: -------------------\n", + "[INFO] [1712656209.099302]: SOMA.AgentRole \n", + "[INFO] [1712656209.099537]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712656209.099790]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.AgentRole}\n", + "[INFO] [1712656209.100037]: Subclasses: []\n", + "[INFO] [1712656209.100329]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.100817]: Instances: []\n", + "[INFO] [1712656209.101097]: Direct Instances: []\n", + "[INFO] [1712656209.101390]: Inverse Restrictions: []\n", + "[INFO] [1712656209.101627]: -------------------\n", + "[INFO] [1712656209.101861]: SOMA.CausativeRole \n", + "[INFO] [1712656209.102089]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656209.102327]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.102599]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712656209.102892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.103400]: Instances: []\n", + "[INFO] [1712656209.103663]: Direct Instances: []\n", + "[INFO] [1712656209.103933]: Inverse Restrictions: []\n", + "[INFO] [1712656209.104192]: -------------------\n", + "[INFO] [1712656209.104432]: SOMA.Agonist \n", + "[INFO] [1712656209.104665]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.104907]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.Agonist, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.105160]: Subclasses: []\n", + "[INFO] [1712656209.105454]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.105942]: Instances: []\n", + "[INFO] [1712656209.106203]: Direct Instances: []\n", + "[INFO] [1712656209.106490]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712656209.106743]: -------------------\n", + "[INFO] [1712656209.106982]: SOMA.Patient \n", + "[INFO] [1712656209.107213]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656209.107452]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.107736]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712656209.108043]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.108609]: Instances: []\n", + "[INFO] [1712656209.108902]: Direct Instances: []\n", + "[INFO] [1712656209.109324]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656209.109579]: -------------------\n", + "[INFO] [1712656209.109826]: SOMA.Algorithm \n", + "[INFO] [1712656209.110075]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712656209.110331]: Ancestors: {DUL.Plan, SOMA.Algorithm, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.110582]: Subclasses: []\n", + "[INFO] [1712656209.110885]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.111367]: Instances: []\n", + "[INFO] [1712656209.111645]: Direct Instances: []\n", + "[INFO] [1712656209.111959]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712656209.112205]: -------------------\n", + "[INFO] [1712656209.112434]: SOMA.Alteration \n", + "[INFO] [1712656209.112662]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712656209.113007]: Ancestors: {DUL.Concept, SOMA.Alteration, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656209.113333]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712656209.113672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.114208]: Instances: []\n", + "[INFO] [1712656209.114504]: Direct Instances: []\n", + "[INFO] [1712656209.114777]: Inverse Restrictions: []\n", + "[INFO] [1712656209.115017]: -------------------\n", + "[INFO] [1712656209.115252]: SOMA.AlterativeInteraction \n", + "[INFO] [1712656209.115488]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712656209.115733]: Ancestors: {DUL.Concept, SOMA.ForceInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AlterativeInteraction, SOMA.ProcessType}\n", + "[INFO] [1712656209.116002]: Subclasses: []\n", + "[INFO] [1712656209.116312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.116857]: Instances: []\n", + "[INFO] [1712656209.117223]: Direct Instances: []\n", + "[INFO] [1712656209.117555]: Inverse Restrictions: []\n", + "[INFO] [1712656209.117814]: -------------------\n", + "[INFO] [1712656209.118057]: SOMA.ForceInteraction \n", + "[INFO] [1712656209.118304]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712656209.118550]: Ancestors: {DUL.Concept, SOMA.ForceInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656209.118807]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712656209.119127]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.label, rdf-schema.comment]\n", + "[INFO] [1712656209.119632]: Instances: []\n", + "[INFO] [1712656209.119895]: Direct Instances: []\n", + "[INFO] [1712656209.120151]: Inverse Restrictions: []\n", + "[INFO] [1712656209.120390]: -------------------\n", + "[INFO] [1712656209.120626]: SOMA.PreservativeInteraction \n", + "[INFO] [1712656209.120865]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712656209.121102]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, SOMA.PreservativeInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656209.121343]: Subclasses: []\n", + "[INFO] [1712656209.121644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.122155]: Instances: []\n", + "[INFO] [1712656209.122428]: Direct Instances: []\n", + "[INFO] [1712656209.122732]: Inverse Restrictions: []\n", + "[INFO] [1712656209.122979]: -------------------\n", + "[INFO] [1712656209.123226]: SOMA.AlteredObject \n", + "[INFO] [1712656209.123469]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.123719]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.123996]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712656209.124296]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.124804]: Instances: []\n", + "[INFO] [1712656209.125084]: Direct Instances: []\n", + "[INFO] [1712656209.125443]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712656209.125690]: -------------------\n", + "[INFO] [1712656209.125936]: SOMA.Amateurish \n", + "[INFO] [1712656209.126171]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712656209.126631]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.127089]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712656209.127628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.128470]: Instances: []\n", + "[INFO] [1712656209.128895]: Direct Instances: []\n", + "[INFO] [1712656209.129311]: Inverse Restrictions: []\n", + "[INFO] [1712656209.129712]: -------------------\n", + "[INFO] [1712656209.130113]: SOMA.AnsweringTask \n", + "[INFO] [1712656209.130517]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.130927]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", + "[INFO] [1712656209.131336]: Subclasses: []\n", + "[INFO] [1712656209.131848]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712656209.132705]: Instances: []\n", + "[INFO] [1712656209.133140]: Direct Instances: []\n", + "[INFO] [1712656209.133660]: Inverse Restrictions: []\n", + "[INFO] [1712656209.134055]: -------------------\n", + "[INFO] [1712656209.134451]: SOMA.CommandingTask \n", + "[INFO] [1712656209.134850]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712656209.135259]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask, SOMA.CommandingTask}\n", + "[INFO] [1712656209.135669]: Subclasses: []\n", + "[INFO] [1712656209.136163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.137018]: Instances: []\n", + "[INFO] [1712656209.137463]: Direct Instances: []\n", + "[INFO] [1712656209.138108]: Inverse Restrictions: []\n", + "[INFO] [1712656209.138515]: -------------------\n", + "[INFO] [1712656209.138920]: SOMA.IllocutionaryTask \n", + "[INFO] [1712656209.139350]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712656209.139768]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", + "[INFO] [1712656209.140620]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712656209.141205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.142056]: Instances: []\n", + "[INFO] [1712656209.142480]: Direct Instances: []\n", + "[INFO] [1712656209.142983]: Inverse Restrictions: []\n", + "[INFO] [1712656209.143376]: -------------------\n", + "[INFO] [1712656209.143746]: SOMA.Antagonist \n", + "[INFO] [1712656209.144125]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.144513]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Antagonist}\n", + "[INFO] [1712656209.144890]: Subclasses: []\n", + "[INFO] [1712656209.145340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.146104]: Instances: []\n", + "[INFO] [1712656209.146478]: Direct Instances: []\n", + "[INFO] [1712656209.146925]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712656209.147280]: -------------------\n", + "[INFO] [1712656209.147634]: SOMA.Appliance \n", + "[INFO] [1712656209.147994]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712656209.148370]: Ancestors: {SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656209.148740]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712656209.149171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.149921]: Instances: []\n", + "[INFO] [1712656209.150293]: Direct Instances: []\n", + "[INFO] [1712656209.150662]: Inverse Restrictions: []\n", + "[INFO] [1712656209.151014]: -------------------\n", + "[INFO] [1712656209.151371]: SOMA.Approaching \n", + "[INFO] [1712656209.151725]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656209.152121]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Approaching, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.152481]: Subclasses: []\n", + "[INFO] [1712656209.152914]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.153658]: Instances: []\n", + "[INFO] [1712656209.154029]: Direct Instances: []\n", + "[INFO] [1712656209.154389]: Inverse Restrictions: []\n", + "[INFO] [1712656209.154725]: -------------------\n", + "[INFO] [1712656209.155066]: SOMA.Locomotion \n", + "[INFO] [1712656209.155418]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712656209.155781]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.156159]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712656209.156614]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.157277]: Instances: []\n", + "[INFO] [1712656209.157594]: Direct Instances: []\n", + "[INFO] [1712656209.157881]: Inverse Restrictions: []\n", + "[INFO] [1712656209.158129]: -------------------\n", + "[INFO] [1712656209.158376]: SOMA.ArchiveFile \n", + "[INFO] [1712656209.158611]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712656209.158850]: Ancestors: {DUL.InformationEntity, owl.Thing, SOMA.ArchiveFile, DUL.Entity, SOMA.Digital_File, DUL.InformationRealization}\n", + "[INFO] [1712656209.159089]: Subclasses: []\n", + "[INFO] [1712656209.159393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.realizes]\n", + "[INFO] [1712656209.159901]: Instances: []\n", + "[INFO] [1712656209.160165]: Direct Instances: []\n", + "[INFO] [1712656209.160414]: Inverse Restrictions: []\n", + "[INFO] [1712656209.160644]: -------------------\n", + "[INFO] [1712656209.160893]: SOMA.ArchiveText \n", + "[INFO] [1712656209.161129]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.161365]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", + "[INFO] [1712656209.161600]: Subclasses: []\n", + "[INFO] [1712656209.161887]: Properties: [rdf-schema.isDefinedBy, DUL.expresses, rdf-schema.label, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656209.162390]: Instances: []\n", + "[INFO] [1712656209.162649]: Direct Instances: []\n", + "[INFO] [1712656209.162986]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712656209.163232]: -------------------\n", + "[INFO] [1712656209.163457]: SOMA.Digital_File \n", + "[INFO] [1712656209.163702]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712656209.163948]: Ancestors: {DUL.InformationEntity, owl.Thing, DUL.Entity, SOMA.Digital_File, DUL.InformationRealization}\n", + "[INFO] [1712656209.164196]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712656209.164482]: Properties: [SOMA.hasNameString, rdf-schema.isDefinedBy, rdf-schema.label, DUL.realizes, rdf-schema.comment]\n", + "[INFO] [1712656209.164986]: Instances: []\n", + "[INFO] [1712656209.165260]: Direct Instances: []\n", + "[INFO] [1712656209.166381]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712656209.166650]: -------------------\n", + "[INFO] [1712656209.166901]: SOMA.ArchiveFormat \n", + "[INFO] [1712656209.167146]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712656209.167395]: Ancestors: {SOMA.ArchiveFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.167635]: Subclasses: []\n", + "[INFO] [1712656209.167927]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.168458]: Instances: []\n", + "[INFO] [1712656209.168740]: Direct Instances: []\n", + "[INFO] [1712656209.169047]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712656209.169302]: -------------------\n", + "[INFO] [1712656209.169546]: SOMA.File_format \n", + "[INFO] [1712656209.169783]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656209.170025]: Ancestors: {SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.170275]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712656209.170573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.171073]: Instances: []\n", + "[INFO] [1712656209.171341]: Direct Instances: []\n", + "[INFO] [1712656209.171599]: Inverse Restrictions: []\n", + "[INFO] [1712656209.171842]: -------------------\n", + "[INFO] [1712656209.172077]: SOMA.FileConfiguration \n", + "[INFO] [1712656209.172305]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.172536]: Ancestors: {owl.Thing, SOMA.FileConfiguration}\n", + "[INFO] [1712656209.172791]: Subclasses: []\n", + "[INFO] [1712656209.173096]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.173584]: Instances: []\n", + "[INFO] [1712656209.173841]: Direct Instances: []\n", + "[INFO] [1712656209.174158]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712656209.174404]: -------------------\n", + "[INFO] [1712656209.174634]: SOMA.Structured_Text \n", + "[INFO] [1712656209.174859]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.175086]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", + "[INFO] [1712656209.175347]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712656209.175640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656209.176130]: Instances: []\n", + "[INFO] [1712656209.176392]: Direct Instances: []\n", + "[INFO] [1712656209.176834]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712656209.177082]: -------------------\n", + "[INFO] [1712656209.177314]: SOMA.AreaSurveying \n", + "[INFO] [1712656209.177543]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712656209.177783]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", + "[INFO] [1712656209.178025]: Subclasses: []\n", + "[INFO] [1712656209.178314]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.178796]: Instances: []\n", + "[INFO] [1712656209.179079]: Direct Instances: []\n", + "[INFO] [1712656209.179332]: Inverse Restrictions: []\n", + "[INFO] [1712656209.179566]: -------------------\n", + "[INFO] [1712656209.179795]: SOMA.Perceiving \n", + "[INFO] [1712656209.180024]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712656209.180251]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", + "[INFO] [1712656209.180513]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712656209.180806]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.181296]: Instances: []\n", + "[INFO] [1712656209.181572]: Direct Instances: []\n", + "[INFO] [1712656209.181839]: Inverse Restrictions: []\n", + "[INFO] [1712656209.182069]: -------------------\n", + "[INFO] [1712656209.182296]: SOMA.Arm \n", + "[INFO] [1712656209.182520]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712656209.182767]: Ancestors: {SOMA.Arm, DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.183009]: Subclasses: []\n", + "[INFO] [1712656209.183295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.183768]: Instances: []\n", + "[INFO] [1712656209.184041]: Direct Instances: []\n", + "[INFO] [1712656209.184333]: Inverse Restrictions: []\n", + "[INFO] [1712656209.184567]: -------------------\n", + "[INFO] [1712656209.184803]: SOMA.Limb \n", + "[INFO] [1712656209.185047]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712656209.185292]: Ancestors: {DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.185545]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712656209.185840]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.186348]: Instances: []\n", + "[INFO] [1712656209.186616]: Direct Instances: []\n", + "[INFO] [1712656209.186932]: Inverse Restrictions: []\n", + "[INFO] [1712656209.187182]: -------------------\n", + "[INFO] [1712656209.187427]: SOMA.Arranging \n", + "[INFO] [1712656209.187666]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712656209.187917]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Arranging, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.188178]: Subclasses: []\n", + "[INFO] [1712656209.188468]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.188982]: Instances: []\n", + "[INFO] [1712656209.189261]: Direct Instances: []\n", + "[INFO] [1712656209.189507]: Inverse Restrictions: []\n", + "[INFO] [1712656209.189740]: -------------------\n", + "[INFO] [1712656209.189969]: SOMA.Constructing \n", + "[INFO] [1712656209.190197]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656209.190444]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.190699]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712656209.190995]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.191488]: Instances: []\n", + "[INFO] [1712656209.191766]: Direct Instances: []\n", + "[INFO] [1712656209.192030]: Inverse Restrictions: []\n", + "[INFO] [1712656209.192264]: -------------------\n", + "[INFO] [1712656209.192494]: SOMA.ArtificialAgent \n", + "[INFO] [1712656209.192722]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712656209.192976]: Ancestors: {DUL.PhysicalAgent, DUL.Agent, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.ArtificialAgent}\n", + "[INFO] [1712656209.193228]: Subclasses: []\n", + "[INFO] [1712656209.193518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.194018]: Instances: []\n", + "[INFO] [1712656209.194288]: Direct Instances: []\n", + "[INFO] [1712656209.194534]: Inverse Restrictions: []\n", + "[INFO] [1712656209.194762]: -------------------\n", + "[INFO] [1712656209.194986]: SOMA.Assembling \n", + "[INFO] [1712656209.195223]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712656209.195463]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Assembling}\n", + "[INFO] [1712656209.195697]: Subclasses: []\n", + "[INFO] [1712656209.195976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.196461]: Instances: []\n", + "[INFO] [1712656209.196733]: Direct Instances: []\n", + "[INFO] [1712656209.196989]: Inverse Restrictions: []\n", + "[INFO] [1712656209.197217]: -------------------\n", + "[INFO] [1712656209.197442]: SOMA.AssertionTask \n", + "[INFO] [1712656209.197682]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712656209.197932]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask, SOMA.AssertionTask}\n", + "[INFO] [1712656209.198172]: Subclasses: []\n", + "[INFO] [1712656209.198458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.198932]: Instances: []\n", + "[INFO] [1712656209.199209]: Direct Instances: []\n", + "[INFO] [1712656209.199467]: Inverse Restrictions: []\n", + "[INFO] [1712656209.199700]: -------------------\n", + "[INFO] [1712656209.199926]: SOMA.DeclarativeClause \n", + "[INFO] [1712656209.200153]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712656209.200409]: Ancestors: {SOMA.DeclarativeClause, DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656209.200649]: Subclasses: []\n", + "[INFO] [1712656209.200943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.201444]: Instances: []\n", + "[INFO] [1712656209.201715]: Direct Instances: []\n", + "[INFO] [1712656209.202097]: Inverse Restrictions: []\n", + "[INFO] [1712656209.202349]: -------------------\n", + "[INFO] [1712656209.202592]: SOMA.AssumingArmPose \n", + "[INFO] [1712656209.202825]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712656209.203062]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose, SOMA.AssumingArmPose}\n", + "[INFO] [1712656209.203307]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712656209.203587]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.204097]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712656209.204365]: Direct Instances: []\n", + "[INFO] [1712656209.204622]: Inverse Restrictions: []\n", + "[INFO] [1712656209.204858]: -------------------\n", + "[INFO] [1712656209.205084]: SOMA.AssumingPose \n", + "[INFO] [1712656209.205319]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656209.205560]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose}\n", + "[INFO] [1712656209.205816]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712656209.206099]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.206609]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712656209.206878]: Direct Instances: []\n", + "[INFO] [1712656209.207134]: Inverse Restrictions: []\n", + "[INFO] [1712656209.207360]: -------------------\n", + "[INFO] [1712656209.207586]: SOMA.AttentionShift \n", + "[INFO] [1712656209.207814]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712656209.208061]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.AttentionShift, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.208310]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712656209.208593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.209100]: Instances: []\n", + "[INFO] [1712656209.209366]: Direct Instances: []\n", + "[INFO] [1712656209.209624]: Inverse Restrictions: []\n", + "[INFO] [1712656209.209856]: -------------------\n", + "[INFO] [1712656209.210082]: SOMA.MentalTask \n", + "[INFO] [1712656209.210319]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712656209.210565]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.210822]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712656209.211109]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.211604]: Instances: []\n", + "[INFO] [1712656209.211875]: Direct Instances: []\n", + "[INFO] [1712656209.212180]: Inverse Restrictions: []\n", + "[INFO] [1712656209.212417]: -------------------\n", + "[INFO] [1712656209.212646]: SOMA.AvoidedObject \n", + "[INFO] [1712656209.212876]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.213126]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.AvoidedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.213370]: Subclasses: []\n", + "[INFO] [1712656209.213655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.214128]: Instances: []\n", + "[INFO] [1712656209.214395]: Direct Instances: []\n", + "[INFO] [1712656209.214645]: Inverse Restrictions: []\n", + "[INFO] [1712656209.214877]: -------------------\n", + "[INFO] [1712656209.215101]: SOMA.Avoiding \n", + "[INFO] [1712656209.215322]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712656209.215555]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Avoiding, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.215804]: Subclasses: []\n", + "[INFO] [1712656209.216482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.216980]: Instances: []\n", + "[INFO] [1712656209.217248]: Direct Instances: []\n", + "[INFO] [1712656209.217508]: Inverse Restrictions: []\n", + "[INFO] [1712656209.217740]: -------------------\n", + "[INFO] [1712656209.217968]: SOMA.Navigating \n", + "[INFO] [1712656209.218190]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656209.218421]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.218685]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712656209.218972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.219471]: Instances: [SOMA.navigating]\n", + "[INFO] [1712656209.219735]: Direct Instances: [SOMA.navigating]\n", + "[INFO] [1712656209.219993]: Inverse Restrictions: []\n", + "[INFO] [1712656209.220230]: -------------------\n", + "[INFO] [1712656209.220460]: SOMA.Barrier \n", + "[INFO] [1712656209.220684]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712656209.221125]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656209.221567]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712656209.221993]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.222622]: Instances: []\n", + "[INFO] [1712656209.223011]: Direct Instances: []\n", + "[INFO] [1712656209.223438]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712656209.223811]: -------------------\n", + "[INFO] [1712656209.224174]: SOMA.Restrictor \n", + "[INFO] [1712656209.224528]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712656209.224805]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656209.225080]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712656209.225385]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.225895]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656209.226152]: Direct Instances: []\n", + "[INFO] [1712656209.226497]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712656209.226751]: -------------------\n", + "[INFO] [1712656209.226992]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712656209.227225]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712656209.227461]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.227729]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712656209.228028]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712656209.228541]: Instances: []\n", + "[INFO] [1712656209.228823]: Direct Instances: []\n", + "[INFO] [1712656209.229094]: Inverse Restrictions: []\n", + "[INFO] [1712656209.229329]: -------------------\n", + "[INFO] [1712656209.229562]: SOMA.BeneficiaryRole \n", + "[INFO] [1712656209.229794]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712656209.230065]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.230351]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712656209.230651]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.231143]: Instances: []\n", + "[INFO] [1712656209.231408]: Direct Instances: []\n", + "[INFO] [1712656209.231671]: Inverse Restrictions: []\n", + "[INFO] [1712656209.231930]: -------------------\n", + "[INFO] [1712656209.232165]: SOMA.GoalRole \n", + "[INFO] [1712656209.232391]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656209.232629]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.232910]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712656209.233220]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.233721]: Instances: []\n", + "[INFO] [1712656209.233981]: Direct Instances: []\n", + "[INFO] [1712656209.234238]: Inverse Restrictions: []\n", + "[INFO] [1712656209.234481]: -------------------\n", + "[INFO] [1712656209.234721]: SOMA.CounterfactualBinding \n", + "[INFO] [1712656209.234949]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712656209.235194]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.CounterfactualBinding}\n", + "[INFO] [1712656209.235433]: Subclasses: []\n", + "[INFO] [1712656209.235740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.236231]: Instances: []\n", + "[INFO] [1712656209.236486]: Direct Instances: []\n", + "[INFO] [1712656209.236826]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712656209.237080]: -------------------\n", + "[INFO] [1712656209.237315]: SOMA.FactualBinding \n", + "[INFO] [1712656209.237548]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712656209.237798]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.FactualBinding, DUL.Entity}\n", + "[INFO] [1712656209.238040]: Subclasses: []\n", + "[INFO] [1712656209.238328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.238818]: Instances: []\n", + "[INFO] [1712656209.239091]: Direct Instances: []\n", + "[INFO] [1712656209.239418]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712656209.239658]: -------------------\n", + "[INFO] [1712656209.239886]: SOMA.RoleFillerBinding \n", + "[INFO] [1712656209.240110]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712656209.240357]: Ancestors: {DUL.Relation, DUL.Description, SOMA.RoleFillerBinding, SOMA.Binding, DUL.Object, DUL.SocialObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.240601]: Subclasses: []\n", + "[INFO] [1712656209.240910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.241405]: Instances: []\n", + "[INFO] [1712656209.241683]: Direct Instances: []\n", + "[INFO] [1712656209.241975]: Inverse Restrictions: []\n", + "[INFO] [1712656209.242209]: -------------------\n", + "[INFO] [1712656209.242443]: SOMA.RoleRoleBinding \n", + "[INFO] [1712656209.242697]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712656209.242949]: Ancestors: {DUL.Relation, SOMA.RoleRoleBinding, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.243191]: Subclasses: []\n", + "[INFO] [1712656209.243483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.243989]: Instances: []\n", + "[INFO] [1712656209.244264]: Direct Instances: []\n", + "[INFO] [1712656209.244558]: Inverse Restrictions: []\n", + "[INFO] [1712656209.244802]: -------------------\n", + "[INFO] [1712656209.245041]: SOMA.DesignedComponent \n", + "[INFO] [1712656209.245281]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712656209.245525]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.245837]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712656209.246143]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712656209.246667]: Instances: []\n", + "[INFO] [1712656209.246971]: Direct Instances: []\n", + "[INFO] [1712656209.247245]: Inverse Restrictions: []\n", + "[INFO] [1712656209.247502]: -------------------\n", + "[INFO] [1712656209.247740]: SOMA.Blockage \n", + "[INFO] [1712656209.247977]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712656209.248220]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.248487]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712656209.248804]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.249315]: Instances: []\n", + "[INFO] [1712656209.249592]: Direct Instances: []\n", + "[INFO] [1712656209.249860]: Inverse Restrictions: []\n", + "[INFO] [1712656209.250095]: -------------------\n", + "[INFO] [1712656209.250323]: SOMA.BlockedObject \n", + "[INFO] [1712656209.250549]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.250786]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", + "[INFO] [1712656209.251051]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712656209.251345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.251842]: Instances: []\n", + "[INFO] [1712656209.252105]: Direct Instances: []\n", + "[INFO] [1712656209.252404]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712656209.252648]: -------------------\n", + "[INFO] [1712656209.252889]: SOMA.BodyMovement \n", + "[INFO] [1712656209.253140]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712656209.253399]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.253664]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712656209.253957]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.254493]: Instances: []\n", + "[INFO] [1712656209.254770]: Direct Instances: []\n", + "[INFO] [1712656209.255041]: Inverse Restrictions: []\n", + "[INFO] [1712656209.255275]: -------------------\n", + "[INFO] [1712656209.255506]: SOMA.Motion \n", + "[INFO] [1712656209.255737]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712656209.255972]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.256241]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712656209.256534]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.257074]: Instances: []\n", + "[INFO] [1712656209.257355]: Direct Instances: []\n", + "[INFO] [1712656209.257623]: Inverse Restrictions: []\n", + "[INFO] [1712656209.257859]: -------------------\n", + "[INFO] [1712656209.258093]: SOMA.Boiling \n", + "[INFO] [1712656209.258322]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712656209.258559]: Ancestors: {SOMA.Boiling, DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Vaporizing, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656209.258808]: Subclasses: []\n", + "[INFO] [1712656209.259097]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.259579]: Instances: []\n", + "[INFO] [1712656209.259834]: Direct Instances: []\n", + "[INFO] [1712656209.260081]: Inverse Restrictions: []\n", + "[INFO] [1712656209.260321]: -------------------\n", + "[INFO] [1712656209.260557]: SOMA.Vaporizing \n", + "[INFO] [1712656209.260801]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712656209.261044]: Ancestors: {DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Vaporizing, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656209.261290]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712656209.261591]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.seeAlso]\n", + "[INFO] [1712656209.262082]: Instances: []\n", + "[INFO] [1712656209.262338]: Direct Instances: []\n", + "[INFO] [1712656209.262583]: Inverse Restrictions: []\n", + "[INFO] [1712656209.262818]: -------------------\n", + "[INFO] [1712656209.263048]: SOMA.DesignedContainer \n", + "[INFO] [1712656209.263278]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712656209.263546]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656209.263860]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712656209.264175]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", + "[INFO] [1712656209.264775]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712656209.265066]: Direct Instances: []\n", + "[INFO] [1712656209.265342]: Inverse Restrictions: []\n", + "[INFO] [1712656209.265583]: -------------------\n", + "[INFO] [1712656209.265815]: SOMA.BoxShape \n", + "[INFO] [1712656209.266053]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712656209.266293]: Ancestors: {SOMA.ShapeRegion, DUL.Region, SOMA.BoxShape, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.266544]: Subclasses: []\n", + "[INFO] [1712656209.266845]: Properties: [SOMA.hasWidth, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasHeight, rdf-schema.comment, SOMA.hasLength]\n", + "[INFO] [1712656209.267350]: Instances: []\n", + "[INFO] [1712656209.267616]: Direct Instances: []\n", + "[INFO] [1712656209.267892]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712656209.268141]: -------------------\n", + "[INFO] [1712656209.268377]: SOMA.Deposition \n", + "[INFO] [1712656209.268613]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712656209.268855]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Deposition, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.269099]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712656209.269386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.269897]: Instances: []\n", + "[INFO] [1712656209.270166]: Direct Instances: []\n", + "[INFO] [1712656209.270519]: Inverse Restrictions: []\n", + "[INFO] [1712656209.270771]: -------------------\n", + "[INFO] [1712656209.271006]: SOMA.CanCut \n", + "[INFO] [1712656209.271256]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712656209.271503]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.271744]: Subclasses: []\n", + "[INFO] [1712656209.272029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.272521]: Instances: []\n", + "[INFO] [1712656209.272791]: Direct Instances: []\n", + "[INFO] [1712656209.273053]: Inverse Restrictions: []\n", + "[INFO] [1712656209.273285]: -------------------\n", + "[INFO] [1712656209.273514]: SOMA.Variability \n", + "[INFO] [1712656209.273762]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712656209.274006]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.274266]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712656209.274553]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.275071]: Instances: []\n", + "[INFO] [1712656209.275335]: Direct Instances: []\n", + "[INFO] [1712656209.275598]: Inverse Restrictions: []\n", + "[INFO] [1712656209.275826]: -------------------\n", + "[INFO] [1712656209.276050]: SOMA.Cutter \n", + "[INFO] [1712656209.276280]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712656209.276527]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Cutter, DUL.Entity, SOMA.Tool}\n", + "[INFO] [1712656209.276765]: Subclasses: []\n", + "[INFO] [1712656209.277052]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.277528]: Instances: []\n", + "[INFO] [1712656209.277800]: Direct Instances: []\n", + "[INFO] [1712656209.278119]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712656209.278355]: -------------------\n", + "[INFO] [1712656209.278586]: SOMA.CutObject \n", + "[INFO] [1712656209.278820]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712656209.279073]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.CutObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.279336]: Subclasses: []\n", + "[INFO] [1712656209.279626]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.280143]: Instances: []\n", + "[INFO] [1712656209.280449]: Direct Instances: []\n", + "[INFO] [1712656209.280792]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712656209.281049]: -------------------\n", + "[INFO] [1712656209.281285]: SOMA.Capability \n", + "[INFO] [1712656209.281533]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712656209.281786]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.282062]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712656209.282361]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656209.282847]: Instances: []\n", + "[INFO] [1712656209.283102]: Direct Instances: []\n", + "[INFO] [1712656209.283362]: Inverse Restrictions: []\n", + "[INFO] [1712656209.283600]: -------------------\n", + "[INFO] [1712656209.283833]: SOMA.Capacity \n", + "[INFO] [1712656209.284062]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656209.284304]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Capacity, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.284541]: Subclasses: []\n", + "[INFO] [1712656209.284849]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.285356]: Instances: []\n", + "[INFO] [1712656209.285622]: Direct Instances: []\n", + "[INFO] [1712656209.285914]: Inverse Restrictions: []\n", + "[INFO] [1712656209.286168]: -------------------\n", + "[INFO] [1712656209.286545]: SOMA.Intrinsic \n", + "[INFO] [1712656209.286902]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712656209.287261]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.287652]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712656209.288066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.288710]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712656209.289113]: Direct Instances: []\n", + "[INFO] [1712656209.289408]: Inverse Restrictions: []\n", + "[INFO] [1712656209.289661]: -------------------\n", + "[INFO] [1712656209.289903]: SOMA.Catching \n", + "[INFO] [1712656209.290135]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.290519]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Catching, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.290892]: Subclasses: []\n", + "[INFO] [1712656209.291307]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.291918]: Instances: []\n", + "[INFO] [1712656209.292319]: Direct Instances: []\n", + "[INFO] [1712656209.292611]: Inverse Restrictions: []\n", + "[INFO] [1712656209.292870]: -------------------\n", + "[INFO] [1712656209.293114]: SOMA.PickingUp \n", + "[INFO] [1712656209.293349]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656209.293602]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PickingUp}\n", + "[INFO] [1712656209.293854]: Subclasses: []\n", + "[INFO] [1712656209.294160]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.294651]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712656209.294909]: Direct Instances: [SOMA.picking_up]\n", + "[INFO] [1712656209.295172]: Inverse Restrictions: []\n", + "[INFO] [1712656209.295411]: -------------------\n", + "[INFO] [1712656209.295647]: SOMA.CausalEventRole \n", + "[INFO] [1712656209.295885]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712656209.296125]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.CausalEventRole, DUL.Entity}\n", + "[INFO] [1712656209.296376]: Subclasses: []\n", + "[INFO] [1712656209.296676]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.297212]: Instances: []\n", + "[INFO] [1712656209.297492]: Direct Instances: []\n", + "[INFO] [1712656209.297785]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656209.298033]: -------------------\n", + "[INFO] [1712656209.298276]: SOMA.EventAdjacentRole \n", + "[INFO] [1712656209.298522]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712656209.298769]: Ancestors: {DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.299033]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712656209.299324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.299985]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656209.300264]: Direct Instances: []\n", + "[INFO] [1712656209.300530]: Inverse Restrictions: []\n", + "[INFO] [1712656209.300779]: -------------------\n", + "[INFO] [1712656209.301030]: SOMA.CausedMotionTheory \n", + "[INFO] [1712656209.301284]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712656209.301536]: Ancestors: {SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.301778]: Subclasses: []\n", + "[INFO] [1712656209.302072]: Properties: [rdf-schema.isDefinedBy, DUL.defines, rdf-schema.label, rdf-schema.comment, DUL.hasPart]\n", + "[INFO] [1712656209.302577]: Instances: []\n", + "[INFO] [1712656209.302839]: Direct Instances: []\n", + "[INFO] [1712656209.303094]: Inverse Restrictions: []\n", + "[INFO] [1712656209.303328]: -------------------\n", + "[INFO] [1712656209.303572]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712656209.303821]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712656209.304065]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.304321]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712656209.304623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.305134]: Instances: []\n", + "[INFO] [1712656209.305391]: Direct Instances: []\n", + "[INFO] [1712656209.305711]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", + "[INFO] [1712656209.305962]: -------------------\n", + "[INFO] [1712656209.306198]: SOMA.PerformerRole \n", + "[INFO] [1712656209.306435]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712656209.306680]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", + "[INFO] [1712656209.306938]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712656209.307230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.307723]: Instances: []\n", + "[INFO] [1712656209.307972]: Direct Instances: []\n", + "[INFO] [1712656209.308280]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656209.308534]: -------------------\n", + "[INFO] [1712656209.308780]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712656209.309025]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712656209.309272]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.SourcePathGoalTheory}\n", + "[INFO] [1712656209.309524]: Subclasses: []\n", + "[INFO] [1712656209.309820]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656209.310337]: Instances: []\n", + "[INFO] [1712656209.310608]: Direct Instances: []\n", + "[INFO] [1712656209.310895]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712656209.311141]: -------------------\n", + "[INFO] [1712656209.311376]: SOMA.RoomSurface \n", + "[INFO] [1712656209.311606]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712656209.311856]: Ancestors: {SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656209.312105]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712656209.312396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.312892]: Instances: []\n", + "[INFO] [1712656209.313171]: Direct Instances: []\n", + "[INFO] [1712656209.313473]: Inverse Restrictions: []\n", + "[INFO] [1712656209.313730]: -------------------\n", + "[INFO] [1712656209.313979]: SOMA.Channel \n", + "[INFO] [1712656209.314222]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712656209.314491]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.Channel, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.PathRole, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.314742]: Subclasses: []\n", + "[INFO] [1712656209.315032]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.315517]: Instances: []\n", + "[INFO] [1712656209.315785]: Direct Instances: []\n", + "[INFO] [1712656209.316095]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656209.316339]: -------------------\n", + "[INFO] [1712656209.316573]: SOMA.PathRole \n", + "[INFO] [1712656209.316810]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712656209.317055]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.PathRole, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.317314]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712656209.317610]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.318100]: Instances: []\n", + "[INFO] [1712656209.318367]: Direct Instances: []\n", + "[INFO] [1712656209.318657]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712656209.318897]: -------------------\n", + "[INFO] [1712656209.319126]: SOMA.CommunicationTask \n", + "[INFO] [1712656209.319375]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712656209.319637]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.319891]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712656209.320183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", + "[INFO] [1712656209.320683]: Instances: []\n", + "[INFO] [1712656209.320958]: Direct Instances: []\n", + "[INFO] [1712656209.321461]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", + "[INFO] [1712656209.321724]: -------------------\n", + "[INFO] [1712656209.321962]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712656209.322208]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712656209.322455]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", + "[INFO] [1712656209.322698]: Subclasses: []\n", + "[INFO] [1712656209.322980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.323470]: Instances: []\n", + "[INFO] [1712656209.323727]: Direct Instances: []\n", + "[INFO] [1712656209.323975]: Inverse Restrictions: []\n", + "[INFO] [1712656209.324205]: -------------------\n", + "[INFO] [1712656209.324433]: SOMA.ChemicalProcess \n", + "[INFO] [1712656209.324658]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712656209.324913]: Ancestors: {DUL.Process, owl.Thing, SOMA.ChemicalProcess, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656209.325154]: Subclasses: []\n", + "[INFO] [1712656209.325439]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.325922]: Instances: []\n", + "[INFO] [1712656209.326199]: Direct Instances: []\n", + "[INFO] [1712656209.326450]: Inverse Restrictions: []\n", + "[INFO] [1712656209.326684]: -------------------\n", + "[INFO] [1712656209.326914]: SOMA.Choice \n", + "[INFO] [1712656209.327141]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712656209.327393]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.Choice, SOMA.EventAdjacentRole, DUL.Object, SOMA.ResultRole, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.327665]: Subclasses: []\n", + "[INFO] [1712656209.327950]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.328430]: Instances: []\n", + "[INFO] [1712656209.328699]: Direct Instances: []\n", + "[INFO] [1712656209.328957]: Inverse Restrictions: []\n", + "[INFO] [1712656209.329193]: -------------------\n", + "[INFO] [1712656209.329424]: SOMA.ResultRole \n", + "[INFO] [1712656209.329651]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712656209.329903]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.ResultRole, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.330185]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712656209.330492]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.330985]: Instances: []\n", + "[INFO] [1712656209.331253]: Direct Instances: []\n", + "[INFO] [1712656209.331526]: Inverse Restrictions: []\n", + "[INFO] [1712656209.331770]: -------------------\n", + "[INFO] [1712656209.332005]: SOMA.CircularCylinder \n", + "[INFO] [1712656209.332251]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712656209.332507]: Ancestors: {SOMA.CircularCylinder, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.332751]: Subclasses: []\n", + "[INFO] [1712656209.333048]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712656209.333530]: Instances: []\n", + "[INFO] [1712656209.333807]: Direct Instances: []\n", + "[INFO] [1712656209.334060]: Inverse Restrictions: []\n", + "[INFO] [1712656209.334298]: -------------------\n", + "[INFO] [1712656209.334530]: SOMA.CylinderShape \n", + "[INFO] [1712656209.334771]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712656209.335026]: Ancestors: {SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.335278]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712656209.335568]: Properties: [SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.label, rdf-schema.comment, SOMA.hasLength]\n", + "[INFO] [1712656209.336055]: Instances: []\n", + "[INFO] [1712656209.336329]: Direct Instances: []\n", + "[INFO] [1712656209.336586]: Inverse Restrictions: []\n", + "[INFO] [1712656209.336826]: -------------------\n", + "[INFO] [1712656209.337063]: SOMA.Classifier \n", + "[INFO] [1712656209.337294]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712656209.337545]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Classifier, DUL.Entity, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.337797]: Subclasses: []\n", + "[INFO] [1712656209.338086]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656209.338573]: Instances: []\n", + "[INFO] [1712656209.338831]: Direct Instances: []\n", + "[INFO] [1712656209.339085]: Inverse Restrictions: []\n", + "[INFO] [1712656209.339320]: -------------------\n", + "[INFO] [1712656209.339556]: SOMA.StatisticalReasoner \n", + "[INFO] [1712656209.339786]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712656209.340030]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.340373]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712656209.340712]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656209.341230]: Instances: []\n", + "[INFO] [1712656209.341507]: Direct Instances: []\n", + "[INFO] [1712656209.341774]: Inverse Restrictions: []\n", + "[INFO] [1712656209.342283]: -------------------\n", + "[INFO] [1712656209.342614]: SOMA.ClausalObject \n", + "[INFO] [1712656209.342856]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712656209.343105]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656209.343364]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712656209.343756]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.344308]: Instances: []\n", + "[INFO] [1712656209.344593]: Direct Instances: []\n", + "[INFO] [1712656209.344878]: Inverse Restrictions: []\n", + "[INFO] [1712656209.345127]: -------------------\n", + "[INFO] [1712656209.345372]: SOMA.Phrase \n", + "[INFO] [1712656209.345620]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712656209.345961]: Ancestors: {DUL.InformationEntity, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656209.346272]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712656209.346591]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656209.347108]: Instances: []\n", + "[INFO] [1712656209.347387]: Direct Instances: []\n", + "[INFO] [1712656209.347649]: Inverse Restrictions: []\n", + "[INFO] [1712656209.347884]: -------------------\n", + "[INFO] [1712656209.348121]: SOMA.Clean \n", + "[INFO] [1712656209.348368]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712656209.348614]: Ancestors: {SOMA.Clean, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", + "[INFO] [1712656209.348933]: Subclasses: []\n", + "[INFO] [1712656209.349286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.349805]: Instances: []\n", + "[INFO] [1712656209.350090]: Direct Instances: []\n", + "[INFO] [1712656209.350425]: Inverse Restrictions: []\n", + "[INFO] [1712656209.350670]: -------------------\n", + "[INFO] [1712656209.350906]: SOMA.CleanlinessRegion \n", + "[INFO] [1712656209.351136]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656209.351371]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", + "[INFO] [1712656209.351637]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712656209.351935]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.352419]: Instances: []\n", + "[INFO] [1712656209.352680]: Direct Instances: []\n", + "[INFO] [1712656209.353005]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712656209.353262]: -------------------\n", + "[INFO] [1712656209.353502]: SOMA.Cleaning \n", + "[INFO] [1712656209.353740]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712656209.353983]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Cleaning, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656209.354218]: Subclasses: []\n", + "[INFO] [1712656209.354511]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656209.355004]: Instances: []\n", + "[INFO] [1712656209.355258]: Direct Instances: []\n", + "[INFO] [1712656209.355500]: Inverse Restrictions: []\n", + "[INFO] [1712656209.355729]: -------------------\n", + "[INFO] [1712656209.355958]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712656209.356194]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656209.356436]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656209.356693]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712656209.356999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.357552]: Instances: []\n", + "[INFO] [1712656209.357844]: Direct Instances: []\n", + "[INFO] [1712656209.358124]: Inverse Restrictions: []\n", + "[INFO] [1712656209.358356]: -------------------\n", + "[INFO] [1712656209.358585]: SOMA.Purification \n", + "[INFO] [1712656209.358840]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712656209.359084]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition, SOMA.Purification}\n", + "[INFO] [1712656209.359324]: Subclasses: []\n", + "[INFO] [1712656209.359607]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.360083]: Instances: []\n", + "[INFO] [1712656209.360355]: Direct Instances: []\n", + "[INFO] [1712656209.360647]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712656209.360891]: -------------------\n", + "[INFO] [1712656209.361122]: SOMA.Cleanliness \n", + "[INFO] [1712656209.361354]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712656209.361587]: Ancestors: {DUL.Quality, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.361836]: Subclasses: []\n", + "[INFO] [1712656209.362126]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712656209.362605]: Instances: []\n", + "[INFO] [1712656209.362877]: Direct Instances: []\n", + "[INFO] [1712656209.363203]: Inverse Restrictions: []\n", + "[INFO] [1712656209.363437]: -------------------\n", + "[INFO] [1712656209.363665]: SOMA.SocialQuality \n", + "[INFO] [1712656209.363890]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712656209.364220]: Ancestors: {SOMA.SocialQuality, DUL.Entity, DUL.Quality, owl.Thing}\n", + "[INFO] [1712656209.364514]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712656209.364836]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.365346]: Instances: []\n", + "[INFO] [1712656209.365613]: Direct Instances: []\n", + "[INFO] [1712656209.365883]: Inverse Restrictions: []\n", + "[INFO] [1712656209.366119]: -------------------\n", + "[INFO] [1712656209.366348]: SOMA.Client-Server_Specification \n", + "[INFO] [1712656209.366586]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712656209.366830]: Ancestors: {DUL.Design, SOMA.Client-Server_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.367084]: Subclasses: []\n", + "[INFO] [1712656209.367394]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", + "[INFO] [1712656209.367887]: Instances: []\n", + "[INFO] [1712656209.368155]: Direct Instances: []\n", + "[INFO] [1712656209.368476]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712656209.368733]: -------------------\n", + "[INFO] [1712656209.368981]: SOMA.ClientRole \n", + "[INFO] [1712656209.369220]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712656209.369462]: Ancestors: {DUL.Concept, SOMA.ClientRole, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.369708]: Subclasses: []\n", + "[INFO] [1712656209.370003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", + "[INFO] [1712656209.370482]: Instances: []\n", + "[INFO] [1712656209.370741]: Direct Instances: []\n", + "[INFO] [1712656209.371039]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712656209.371291]: -------------------\n", + "[INFO] [1712656209.371530]: SOMA.ServerRole \n", + "[INFO] [1712656209.371764]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712656209.372005]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ServerRole, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.372239]: Subclasses: []\n", + "[INFO] [1712656209.372540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", + "[INFO] [1712656209.373037]: Instances: []\n", + "[INFO] [1712656209.373298]: Direct Instances: []\n", + "[INFO] [1712656209.373607]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712656209.373847]: -------------------\n", + "[INFO] [1712656209.374091]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712656209.374326]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656209.374566]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.374820]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712656209.375113]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656209.375631]: Instances: []\n", + "[INFO] [1712656209.375897]: Direct Instances: []\n", + "[INFO] [1712656209.376163]: Inverse Restrictions: []\n", + "[INFO] [1712656209.376395]: -------------------\n", + "[INFO] [1712656209.376625]: SOMA.Closing \n", + "[INFO] [1712656209.376872]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.377119]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Closing, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.377359]: Subclasses: []\n", + "[INFO] [1712656209.377652]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.378158]: Instances: []\n", + "[INFO] [1712656209.378443]: Direct Instances: []\n", + "[INFO] [1712656209.378705]: Inverse Restrictions: []\n", + "[INFO] [1712656209.378953]: -------------------\n", + "[INFO] [1712656209.379192]: SOMA.Delivering \n", + "[INFO] [1712656209.379438]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712656209.379690]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Delivering, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.379942]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712656209.380244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656209.380730]: Instances: []\n", + "[INFO] [1712656209.381008]: Direct Instances: []\n", + "[INFO] [1712656209.381274]: Inverse Restrictions: []\n", + "[INFO] [1712656209.381510]: -------------------\n", + "[INFO] [1712656209.381747]: SOMA.Fetching \n", + "[INFO] [1712656209.381975]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712656209.382229]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Fetching, DUL.EventType, SOMA.PhysicalAcquiring, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656209.382479]: Subclasses: []\n", + "[INFO] [1712656209.382780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.383275]: Instances: []\n", + "[INFO] [1712656209.383550]: Direct Instances: []\n", + "[INFO] [1712656209.383817]: Inverse Restrictions: []\n", + "[INFO] [1712656209.384060]: -------------------\n", + "[INFO] [1712656209.384308]: SOMA.Lifting \n", + "[INFO] [1712656209.384542]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.384786]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Lifting, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.385054]: Subclasses: []\n", + "[INFO] [1712656209.385365]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.385850]: Instances: []\n", + "[INFO] [1712656209.386110]: Direct Instances: []\n", + "[INFO] [1712656209.386373]: Inverse Restrictions: []\n", + "[INFO] [1712656209.386607]: -------------------\n", + "[INFO] [1712656209.386835]: SOMA.Opening \n", + "[INFO] [1712656209.387059]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.387296]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Opening}\n", + "[INFO] [1712656209.387547]: Subclasses: []\n", + "[INFO] [1712656209.387844]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.388330]: Instances: []\n", + "[INFO] [1712656209.388591]: Direct Instances: []\n", + "[INFO] [1712656209.388865]: Inverse Restrictions: []\n", + "[INFO] [1712656209.389102]: -------------------\n", + "[INFO] [1712656209.389329]: SOMA.Pulling \n", + "[INFO] [1712656209.389557]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.389806]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Pulling, SOMA.Actuating}\n", + "[INFO] [1712656209.390050]: Subclasses: []\n", + "[INFO] [1712656209.390352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.390844]: Instances: []\n", + "[INFO] [1712656209.391122]: Direct Instances: []\n", + "[INFO] [1712656209.391385]: Inverse Restrictions: []\n", + "[INFO] [1712656209.391617]: -------------------\n", + "[INFO] [1712656209.391844]: SOMA.Pushing \n", + "[INFO] [1712656209.392075]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.392317]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.392578]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712656209.392885]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.393372]: Instances: []\n", + "[INFO] [1712656209.393624]: Direct Instances: []\n", + "[INFO] [1712656209.393886]: Inverse Restrictions: []\n", + "[INFO] [1712656209.394126]: -------------------\n", + "[INFO] [1712656209.394360]: SOMA.Squeezing \n", + "[INFO] [1712656209.394587]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.394823]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Squeezing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.395065]: Subclasses: []\n", + "[INFO] [1712656209.395359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.395848]: Instances: []\n", + "[INFO] [1712656209.396097]: Direct Instances: []\n", + "[INFO] [1712656209.396357]: Inverse Restrictions: []\n", + "[INFO] [1712656209.396599]: -------------------\n", + "[INFO] [1712656209.396844]: SOMA.Linkage \n", + "[INFO] [1712656209.397083]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712656209.397324]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Linkage, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.397568]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712656209.397850]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.398351]: Instances: []\n", + "[INFO] [1712656209.398620]: Direct Instances: []\n", + "[INFO] [1712656209.398874]: Inverse Restrictions: []\n", + "[INFO] [1712656209.399112]: -------------------\n", + "[INFO] [1712656209.399345]: SOMA.Clumsiness \n", + "[INFO] [1712656209.399587]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712656209.399837]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Clumsiness, DUL.Diagnosis}\n", + "[INFO] [1712656209.400078]: Subclasses: []\n", + "[INFO] [1712656209.400361]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.400865]: Instances: []\n", + "[INFO] [1712656209.401134]: Direct Instances: []\n", + "[INFO] [1712656209.401384]: Inverse Restrictions: []\n", + "[INFO] [1712656209.401618]: -------------------\n", + "[INFO] [1712656209.401849]: SOMA.CognitiveAgent \n", + "[INFO] [1712656209.402089]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712656209.402327]: Ancestors: {DUL.Agent, SOMA.CognitiveAgent, DUL.Object, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.402563]: Subclasses: []\n", + "[INFO] [1712656209.402855]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.403356]: Instances: []\n", + "[INFO] [1712656209.403616]: Direct Instances: []\n", + "[INFO] [1712656209.403862]: Inverse Restrictions: []\n", + "[INFO] [1712656209.404091]: -------------------\n", + "[INFO] [1712656209.404321]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712656209.404563]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712656209.404814]: Ancestors: {SOMA.SubCognitiveAgent, DUL.Agent, DUL.Object, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.405055]: Subclasses: []\n", + "[INFO] [1712656209.405349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.405850]: Instances: []\n", + "[INFO] [1712656209.406110]: Direct Instances: []\n", + "[INFO] [1712656209.406371]: Inverse Restrictions: []\n", + "[INFO] [1712656209.406601]: -------------------\n", + "[INFO] [1712656209.406830]: SOMA.Collision \n", + "[INFO] [1712656209.407064]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712656209.407310]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType, SOMA.Collision}\n", + "[INFO] [1712656209.407549]: Subclasses: []\n", + "[INFO] [1712656209.407832]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.408333]: Instances: []\n", + "[INFO] [1712656209.408593]: Direct Instances: []\n", + "[INFO] [1712656209.408848]: Inverse Restrictions: []\n", + "[INFO] [1712656209.409082]: -------------------\n", + "[INFO] [1712656209.409310]: SOMA.Extrinsic \n", + "[INFO] [1712656209.409535]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712656209.409780]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.410042]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712656209.410340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.410879]: Instances: []\n", + "[INFO] [1712656209.411157]: Direct Instances: []\n", + "[INFO] [1712656209.411422]: Inverse Restrictions: []\n", + "[INFO] [1712656209.411659]: -------------------\n", + "[INFO] [1712656209.411890]: SOMA.ImperativeClause \n", + "[INFO] [1712656209.412127]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712656209.412383]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, SOMA.ImperativeClause, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656209.412635]: Subclasses: []\n", + "[INFO] [1712656209.412946]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.expresses, rdf-schema.label]\n", + "[INFO] [1712656209.413435]: Instances: []\n", + "[INFO] [1712656209.413695]: Direct Instances: []\n", + "[INFO] [1712656209.413999]: Inverse Restrictions: []\n", + "[INFO] [1712656209.414240]: -------------------\n", + "[INFO] [1712656209.414473]: SOMA.CommitedObject \n", + "[INFO] [1712656209.414701]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712656209.414945]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.CommitedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.415197]: Subclasses: []\n", + "[INFO] [1712656209.415491]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.415974]: Instances: []\n", + "[INFO] [1712656209.416237]: Direct Instances: []\n", + "[INFO] [1712656209.416493]: Inverse Restrictions: []\n", + "[INFO] [1712656209.416724]: -------------------\n", + "[INFO] [1712656209.416956]: SOMA.ConnectedObject \n", + "[INFO] [1712656209.417179]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.417414]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.417968]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712656209.418482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.418987]: Instances: []\n", + "[INFO] [1712656209.419279]: Direct Instances: []\n", + "[INFO] [1712656209.419643]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712656209.419895]: -------------------\n", + "[INFO] [1712656209.420131]: SOMA.CommunicationAction \n", + "[INFO] [1712656209.420367]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712656209.420611]: Ancestors: {SOMA.CommunicationAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656209.420871]: Subclasses: []\n", + "[INFO] [1712656209.421172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656209.421664]: Instances: []\n", + "[INFO] [1712656209.421930]: Direct Instances: []\n", + "[INFO] [1712656209.422222]: Inverse Restrictions: []\n", + "[INFO] [1712656209.422475]: -------------------\n", + "[INFO] [1712656209.422722]: SOMA.LinguisticObject \n", + "[INFO] [1712656209.422959]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712656209.423198]: Ancestors: {DUL.InformationEntity, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656209.423455]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712656209.423745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656209.424235]: Instances: []\n", + "[INFO] [1712656209.424514]: Direct Instances: []\n", + "[INFO] [1712656209.424812]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712656209.425057]: -------------------\n", + "[INFO] [1712656209.425292]: SOMA.CommunicationReport \n", + "[INFO] [1712656209.425519]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656209.425759]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.426022]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712656209.426315]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.426806]: Instances: []\n", + "[INFO] [1712656209.427069]: Direct Instances: []\n", + "[INFO] [1712656209.427336]: Inverse Restrictions: []\n", + "[INFO] [1712656209.427570]: -------------------\n", + "[INFO] [1712656209.427802]: SOMA.Receiver \n", + "[INFO] [1712656209.428035]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712656209.428275]: Ancestors: {DUL.Concept, SOMA.ExperiencerRole, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Receiver, SOMA.PerformerRole}\n", + "[INFO] [1712656209.428528]: Subclasses: []\n", + "[INFO] [1712656209.428826]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.429315]: Instances: []\n", + "[INFO] [1712656209.429571]: Direct Instances: []\n", + "[INFO] [1712656209.429888]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656209.430138]: -------------------\n", + "[INFO] [1712656209.430378]: SOMA.Sender \n", + "[INFO] [1712656209.430613]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712656209.430852]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.Sender, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", + "[INFO] [1712656209.431087]: Subclasses: []\n", + "[INFO] [1712656209.431380]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.431875]: Instances: []\n", + "[INFO] [1712656209.432144]: Direct Instances: []\n", + "[INFO] [1712656209.432466]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656209.432705]: -------------------\n", + "[INFO] [1712656209.433128]: SOMA.CommunicationTopic \n", + "[INFO] [1712656209.433457]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712656209.433736]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.434007]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656209.434311]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.434828]: Instances: []\n", + "[INFO] [1712656209.435100]: Direct Instances: []\n", + "[INFO] [1712656209.435363]: Inverse Restrictions: []\n", + "[INFO] [1712656209.435601]: -------------------\n", + "[INFO] [1712656209.435833]: SOMA.ResourceRole \n", + "[INFO] [1712656209.436061]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656209.436295]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.436561]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712656209.436855]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.437415]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656209.437686]: Direct Instances: []\n", + "[INFO] [1712656209.437954]: Inverse Restrictions: []\n", + "[INFO] [1712656209.438185]: -------------------\n", + "[INFO] [1712656209.438411]: SOMA.Composing \n", + "[INFO] [1712656209.438637]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712656209.438874]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Composing, SOMA.Disposition}\n", + "[INFO] [1712656209.439121]: Subclasses: []\n", + "[INFO] [1712656209.439414]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.439902]: Instances: []\n", + "[INFO] [1712656209.440179]: Direct Instances: []\n", + "[INFO] [1712656209.440472]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712656209.440710]: -------------------\n", + "[INFO] [1712656209.440943]: SOMA.Computer_Language \n", + "[INFO] [1712656209.441171]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712656209.441412]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.441679]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712656209.441968]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.442465]: Instances: []\n", + "[INFO] [1712656209.442740]: Direct Instances: []\n", + "[INFO] [1712656209.443002]: Inverse Restrictions: []\n", + "[INFO] [1712656209.443232]: -------------------\n", + "[INFO] [1712656209.443459]: SOMA.FormalLanguage \n", + "[INFO] [1712656209.443688]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712656209.443942]: Ancestors: {SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.444195]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656209.444481]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.444982]: Instances: []\n", + "[INFO] [1712656209.445257]: Direct Instances: []\n", + "[INFO] [1712656209.445576]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712656209.445814]: -------------------\n", + "[INFO] [1712656209.446046]: SOMA.Computer_Program \n", + "[INFO] [1712656209.446274]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.446502]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", + "[INFO] [1712656209.446810]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712656209.447145]: Properties: [rdf-schema.isDefinedBy, DUL.expresses, rdf-schema.label, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656209.447652]: Instances: []\n", + "[INFO] [1712656209.447926]: Direct Instances: []\n", + "[INFO] [1712656209.448294]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712656209.448538]: -------------------\n", + "[INFO] [1712656209.448776]: SOMA.Programming_Language \n", + "[INFO] [1712656209.449040]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712656209.449296]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, SOMA.Programming_Language, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.449547]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712656209.449855]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.450351]: Instances: []\n", + "[INFO] [1712656209.450611]: Direct Instances: []\n", + "[INFO] [1712656209.450918]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712656209.451171]: -------------------\n", + "[INFO] [1712656209.451409]: SOMA.Conclusion \n", + "[INFO] [1712656209.451642]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712656209.451886]: Ancestors: {DUL.Concept, SOMA.Conclusion, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.CreatedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.452122]: Subclasses: []\n", + "[INFO] [1712656209.452419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.452914]: Instances: []\n", + "[INFO] [1712656209.453198]: Direct Instances: []\n", + "[INFO] [1712656209.453522]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656209.453764]: -------------------\n", + "[INFO] [1712656209.454001]: SOMA.CreatedObject \n", + "[INFO] [1712656209.454229]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.454468]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.CreatedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.454726]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712656209.455022]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.455511]: Instances: []\n", + "[INFO] [1712656209.455773]: Direct Instances: []\n", + "[INFO] [1712656209.456074]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712656209.456313]: -------------------\n", + "[INFO] [1712656209.456542]: SOMA.Knowledge \n", + "[INFO] [1712656209.456771]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712656209.457009]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.457278]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712656209.457566]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712656209.458059]: Instances: []\n", + "[INFO] [1712656209.458332]: Direct Instances: []\n", + "[INFO] [1712656209.458768]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712656209.459016]: -------------------\n", + "[INFO] [1712656209.459252]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712656209.459485]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712656209.459723]: Ancestors: {DUL.Relation, DUL.Description, DUL.Object, owl.Thing, SOMA.Succedence, DUL.SocialObject, DUL.Entity, SOMA.ConditionalSuccedence}\n", + "[INFO] [1712656209.459975]: Subclasses: []\n", + "[INFO] [1712656209.460270]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.460759]: Instances: []\n", + "[INFO] [1712656209.461031]: Direct Instances: []\n", + "[INFO] [1712656209.461272]: Inverse Restrictions: []\n", + "[INFO] [1712656209.461504]: -------------------\n", + "[INFO] [1712656209.461738]: SOMA.Configuration \n", + "[INFO] [1712656209.461972]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712656209.462209]: Ancestors: {SOMA.Configuration, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.462443]: Subclasses: []\n", + "[INFO] [1712656209.462739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", + "[INFO] [1712656209.463226]: Instances: []\n", + "[INFO] [1712656209.463531]: Direct Instances: []\n", + "[INFO] [1712656209.463808]: Inverse Restrictions: []\n", + "[INFO] [1712656209.464055]: -------------------\n", + "[INFO] [1712656209.464294]: SOMA.Connectivity \n", + "[INFO] [1712656209.464530]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712656209.464777]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.465051]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712656209.465350]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.465845]: Instances: []\n", + "[INFO] [1712656209.466103]: Direct Instances: []\n", + "[INFO] [1712656209.466411]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712656209.466673]: -------------------\n", + "[INFO] [1712656209.466916]: SOMA.ContactState \n", + "[INFO] [1712656209.467160]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712656209.467400]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ContactState, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656209.467638]: Subclasses: []\n", + "[INFO] [1712656209.467923]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.468424]: Instances: []\n", + "[INFO] [1712656209.468683]: Direct Instances: []\n", + "[INFO] [1712656209.468940]: Inverse Restrictions: []\n", + "[INFO] [1712656209.469179]: -------------------\n", + "[INFO] [1712656209.469408]: SOMA.Container \n", + "[INFO] [1712656209.469642]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712656209.469892]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Container, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656209.470143]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", + "[INFO] [1712656209.470430]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.470925]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656209.471201]: Direct Instances: []\n", + "[INFO] [1712656209.471544]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712656209.471788]: -------------------\n", + "[INFO] [1712656209.472020]: SOMA.Containment \n", + "[INFO] [1712656209.472260]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712656209.472513]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.472772]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712656209.473070]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.473561]: Instances: []\n", + "[INFO] [1712656209.473837]: Direct Instances: []\n", + "[INFO] [1712656209.474228]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712656209.474473]: -------------------\n", + "[INFO] [1712656209.474706]: SOMA.IncludedObject \n", + "[INFO] [1712656209.474935]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.475184]: Ancestors: {DUL.Concept, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.475441]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712656209.475732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.476227]: Instances: []\n", + "[INFO] [1712656209.476499]: Direct Instances: []\n", + "[INFO] [1712656209.476799]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712656209.477192]: -------------------\n", + "[INFO] [1712656209.477559]: SOMA.ContainmentState \n", + "[INFO] [1712656209.477917]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712656209.478281]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity, SOMA.ContainmentState}\n", + "[INFO] [1712656209.478656]: Subclasses: []\n", + "[INFO] [1712656209.479071]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.479682]: Instances: []\n", + "[INFO] [1712656209.480114]: Direct Instances: []\n", + "[INFO] [1712656209.480516]: Inverse Restrictions: []\n", + "[INFO] [1712656209.480890]: -------------------\n", + "[INFO] [1712656209.481155]: SOMA.FunctionalControl \n", + "[INFO] [1712656209.481401]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712656209.481662]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656209.481927]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712656209.482227]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.482716]: Instances: []\n", + "[INFO] [1712656209.482994]: Direct Instances: []\n", + "[INFO] [1712656209.483258]: Inverse Restrictions: []\n", + "[INFO] [1712656209.483489]: -------------------\n", + "[INFO] [1712656209.483717]: SOMA.ContainmentTheory \n", + "[INFO] [1712656209.483943]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712656209.484226]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", + "[INFO] [1712656209.484493]: Subclasses: []\n", + "[INFO] [1712656209.484797]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.485305]: Instances: []\n", + "[INFO] [1712656209.485574]: Direct Instances: []\n", + "[INFO] [1712656209.485820]: Inverse Restrictions: []\n", + "[INFO] [1712656209.486049]: -------------------\n", + "[INFO] [1712656209.486274]: SOMA.ControlTheory \n", + "[INFO] [1712656209.486496]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712656209.486744]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", + "[INFO] [1712656209.487002]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712656209.487288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.487779]: Instances: []\n", + "[INFO] [1712656209.488053]: Direct Instances: []\n", + "[INFO] [1712656209.488314]: Inverse Restrictions: []\n", + "[INFO] [1712656209.488548]: -------------------\n", + "[INFO] [1712656209.488781]: SOMA.ContinuousJoint \n", + "[INFO] [1712656209.489010]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712656209.489249]: Ancestors: {SOMA.HingeJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.ContinuousJoint}\n", + "[INFO] [1712656209.489520]: Subclasses: []\n", + "[INFO] [1712656209.489821]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.490317]: Instances: []\n", + "[INFO] [1712656209.490584]: Direct Instances: []\n", + "[INFO] [1712656209.490825]: Inverse Restrictions: []\n", + "[INFO] [1712656209.491061]: -------------------\n", + "[INFO] [1712656209.491289]: SOMA.HingeJoint \n", + "[INFO] [1712656209.491513]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712656209.491742]: Ancestors: {SOMA.HingeJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656209.491985]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712656209.492278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.492794]: Instances: []\n", + "[INFO] [1712656209.493079]: Direct Instances: []\n", + "[INFO] [1712656209.493340]: Inverse Restrictions: []\n", + "[INFO] [1712656209.493578]: -------------------\n", + "[INFO] [1712656209.493811]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712656209.494066]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712656209.494314]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", + "[INFO] [1712656209.494570]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712656209.494868]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656209.495379]: Instances: []\n", + "[INFO] [1712656209.495651]: Direct Instances: []\n", + "[INFO] [1712656209.495911]: Inverse Restrictions: []\n", + "[INFO] [1712656209.496145]: -------------------\n", + "[INFO] [1712656209.496373]: SOMA.Cover \n", + "[INFO] [1712656209.496612]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712656209.496890]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Cover, SOMA.Restrictor}\n", + "[INFO] [1712656209.497144]: Subclasses: []\n", + "[INFO] [1712656209.497440]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.497945]: Instances: []\n", + "[INFO] [1712656209.498216]: Direct Instances: []\n", + "[INFO] [1712656209.498507]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712656209.498742]: -------------------\n", + "[INFO] [1712656209.498969]: SOMA.Coverage \n", + "[INFO] [1712656209.499214]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712656209.499456]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Coverage, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.499694]: Subclasses: []\n", + "[INFO] [1712656209.499978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.500482]: Instances: []\n", + "[INFO] [1712656209.500753]: Direct Instances: []\n", + "[INFO] [1712656209.501011]: Inverse Restrictions: []\n", + "[INFO] [1712656209.501240]: -------------------\n", + "[INFO] [1712656209.501470]: SOMA.CoveredObject \n", + "[INFO] [1712656209.501707]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712656209.501951]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.CoveredObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", + "[INFO] [1712656209.502190]: Subclasses: []\n", + "[INFO] [1712656209.502475]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.502973]: Instances: []\n", + "[INFO] [1712656209.503242]: Direct Instances: []\n", + "[INFO] [1712656209.503534]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712656209.503770]: -------------------\n", + "[INFO] [1712656209.504009]: SOMA.CoverageTheory \n", + "[INFO] [1712656209.504247]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712656209.504488]: Ancestors: {SOMA.CoverageTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", + "[INFO] [1712656209.504724]: Subclasses: []\n", + "[INFO] [1712656209.505015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.505515]: Instances: []\n", + "[INFO] [1712656209.505782]: Direct Instances: []\n", + "[INFO] [1712656209.506029]: Inverse Restrictions: []\n", + "[INFO] [1712656209.506258]: -------------------\n", + "[INFO] [1712656209.506484]: SOMA.CoveringTheory \n", + "[INFO] [1712656209.506725]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712656209.506980]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.CoveringTheory}\n", + "[INFO] [1712656209.507225]: Subclasses: []\n", + "[INFO] [1712656209.507516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656209.507998]: Instances: []\n", + "[INFO] [1712656209.508276]: Direct Instances: []\n", + "[INFO] [1712656209.508526]: Inverse Restrictions: []\n", + "[INFO] [1712656209.508759]: -------------------\n", + "[INFO] [1712656209.509092]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712656209.509355]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712656209.509622]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.509897]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712656209.510196]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656209.510692]: Instances: []\n", + "[INFO] [1712656209.510968]: Direct Instances: []\n", + "[INFO] [1712656209.511234]: Inverse Restrictions: []\n", + "[INFO] [1712656209.511470]: -------------------\n", + "[INFO] [1712656209.511705]: SOMA.CrackingTheory \n", + "[INFO] [1712656209.511940]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712656209.512194]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.CrackingTheory, DUL.Entity}\n", + "[INFO] [1712656209.512439]: Subclasses: []\n", + "[INFO] [1712656209.512727]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656209.513212]: Instances: []\n", + "[INFO] [1712656209.513519]: Direct Instances: []\n", + "[INFO] [1712656209.513780]: Inverse Restrictions: []\n", + "[INFO] [1712656209.514022]: -------------------\n", + "[INFO] [1712656209.514255]: SOMA.Creation \n", + "[INFO] [1712656209.514488]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712656209.514732]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Creation, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656209.514983]: Subclasses: []\n", + "[INFO] [1712656209.515281]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.515780]: Instances: []\n", + "[INFO] [1712656209.516041]: Direct Instances: []\n", + "[INFO] [1712656209.516301]: Inverse Restrictions: []\n", + "[INFO] [1712656209.516536]: -------------------\n", + "[INFO] [1712656209.516764]: SOMA.Insertion \n", + "[INFO] [1712656209.517000]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712656209.517237]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Insertion, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.517488]: Subclasses: []\n", + "[INFO] [1712656209.517781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.518263]: Instances: []\n", + "[INFO] [1712656209.518527]: Direct Instances: []\n", + "[INFO] [1712656209.518854]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712656209.519108]: -------------------\n", + "[INFO] [1712656209.519343]: SOMA.DesignedFurniture \n", + "[INFO] [1712656209.519574]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712656209.519810]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", + "[INFO] [1712656209.520061]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712656209.520359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.520866]: Instances: []\n", + "[INFO] [1712656209.521142]: Direct Instances: []\n", + "[INFO] [1712656209.521402]: Inverse Restrictions: []\n", + "[INFO] [1712656209.521633]: -------------------\n", + "[INFO] [1712656209.521873]: SOMA.Cuttability \n", + "[INFO] [1712656209.522122]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712656209.522560]: Ancestors: {SOMA.Extrinsic, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.522927]: Subclasses: []\n", + "[INFO] [1712656209.523325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.523910]: Instances: []\n", + "[INFO] [1712656209.524282]: Direct Instances: []\n", + "[INFO] [1712656209.524632]: Inverse Restrictions: []\n", + "[INFO] [1712656209.525044]: -------------------\n", + "[INFO] [1712656209.525427]: SOMA.Tool \n", + "[INFO] [1712656209.525784]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712656209.526144]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Tool}\n", + "[INFO] [1712656209.526505]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712656209.526900]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.527509]: Instances: []\n", + "[INFO] [1712656209.527874]: Direct Instances: []\n", + "[INFO] [1712656209.528259]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712656209.528596]: -------------------\n", + "[INFO] [1712656209.528935]: SOMA.Cutting \n", + "[INFO] [1712656209.529276]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712656209.529624]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656209.530035]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712656209.530466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.531067]: Instances: []\n", + "[INFO] [1712656209.531502]: Direct Instances: []\n", + "[INFO] [1712656209.531896]: Inverse Restrictions: []\n", + "[INFO] [1712656209.532271]: -------------------\n", + "[INFO] [1712656209.532634]: SOMA.DesignedTool \n", + "[INFO] [1712656209.532997]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712656209.533355]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712656209.533716]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712656209.534111]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.534768]: Instances: []\n", + "[INFO] [1712656209.535148]: Direct Instances: []\n", + "[INFO] [1712656209.535517]: Inverse Restrictions: []\n", + "[INFO] [1712656209.535854]: -------------------\n", + "[INFO] [1712656209.536187]: SOMA.Shaping \n", + "[INFO] [1712656209.536528]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712656209.536895]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Shaping, SOMA.Disposition}\n", + "[INFO] [1712656209.537243]: Subclasses: []\n", + "[INFO] [1712656209.537637]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.538214]: Instances: []\n", + "[INFO] [1712656209.538608]: Direct Instances: []\n", + "[INFO] [1712656209.538993]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712656209.539330]: -------------------\n", + "[INFO] [1712656209.539658]: SOMA.Database \n", + "[INFO] [1712656209.539988]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656209.540323]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.540690]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712656209.541108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.541655]: Instances: []\n", + "[INFO] [1712656209.541951]: Direct Instances: []\n", + "[INFO] [1712656209.542226]: Inverse Restrictions: []\n", + "[INFO] [1712656209.542465]: -------------------\n", + "[INFO] [1712656209.542703]: SOMA.SoftwareRole \n", + "[INFO] [1712656209.542946]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712656209.543187]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.543463]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712656209.544025]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.544697]: Instances: []\n", + "[INFO] [1712656209.545000]: Direct Instances: []\n", + "[INFO] [1712656209.545322]: Inverse Restrictions: []\n", + "[INFO] [1712656209.545602]: -------------------\n", + "[INFO] [1712656209.545871]: SOMA.Deciding \n", + "[INFO] [1712656209.546121]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656209.546374]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding}\n", + "[INFO] [1712656209.546643]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712656209.546973]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656209.547500]: Instances: []\n", + "[INFO] [1712656209.547827]: Direct Instances: []\n", + "[INFO] [1712656209.548109]: Inverse Restrictions: []\n", + "[INFO] [1712656209.548364]: -------------------\n", + "[INFO] [1712656209.548612]: SOMA.DerivingInformation \n", + "[INFO] [1712656209.548883]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712656209.549180]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", + "[INFO] [1712656209.549698]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712656209.550195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isTaskOfOutputRole, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712656209.551000]: Instances: []\n", + "[INFO] [1712656209.551412]: Direct Instances: []\n", + "[INFO] [1712656209.551815]: Inverse Restrictions: []\n", + "[INFO] [1712656209.552197]: -------------------\n", + "[INFO] [1712656209.552568]: SOMA.DeductiveReasoning \n", + "[INFO] [1712656209.552954]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712656209.553264]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.DeductiveReasoning, SOMA.Reasoning}\n", + "[INFO] [1712656209.553545]: Subclasses: []\n", + "[INFO] [1712656209.553871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.554451]: Instances: []\n", + "[INFO] [1712656209.554768]: Direct Instances: []\n", + "[INFO] [1712656209.555039]: Inverse Restrictions: []\n", + "[INFO] [1712656209.555457]: -------------------\n", + "[INFO] [1712656209.555815]: SOMA.Deformation \n", + "[INFO] [1712656209.556166]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712656209.556514]: Ancestors: {DUL.Concept, SOMA.Alteration, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Deformation, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656209.556886]: Subclasses: []\n", + "[INFO] [1712656209.557301]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712656209.557935]: Instances: []\n", + "[INFO] [1712656209.558326]: Direct Instances: []\n", + "[INFO] [1712656209.558676]: Inverse Restrictions: []\n", + "[INFO] [1712656209.559010]: -------------------\n", + "[INFO] [1712656209.559344]: SOMA.ShapedObject \n", + "[INFO] [1712656209.559704]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712656209.560053]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.ShapedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.560388]: Subclasses: []\n", + "[INFO] [1712656209.560784]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.561380]: Instances: []\n", + "[INFO] [1712656209.561743]: Direct Instances: []\n", + "[INFO] [1712656209.562150]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712656209.562528]: -------------------\n", + "[INFO] [1712656209.562890]: SOMA.FluidFlow \n", + "[INFO] [1712656209.563240]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712656209.563594]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, SOMA.FluidFlow, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.563957]: Subclasses: []\n", + "[INFO] [1712656209.564351]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.564946]: Instances: []\n", + "[INFO] [1712656209.565329]: Direct Instances: []\n", + "[INFO] [1712656209.565688]: Inverse Restrictions: []\n", + "[INFO] [1712656209.566031]: -------------------\n", + "[INFO] [1712656209.566356]: SOMA.Shifting \n", + "[INFO] [1712656209.566704]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712656209.567071]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition, SOMA.Shifting}\n", + "[INFO] [1712656209.567406]: Subclasses: []\n", + "[INFO] [1712656209.567789]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.568383]: Instances: []\n", + "[INFO] [1712656209.568745]: Direct Instances: []\n", + "[INFO] [1712656209.569161]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712656209.569516]: -------------------\n", + "[INFO] [1712656209.569851]: SOMA.DependentPlace \n", + "[INFO] [1712656209.570200]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712656209.570548]: Ancestors: {SOMA.Feature, DUL.Object, owl.Thing, DUL.Entity, SOMA.DependentPlace}\n", + "[INFO] [1712656209.570879]: Subclasses: []\n", + "[INFO] [1712656209.571259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.571830]: Instances: []\n", + "[INFO] [1712656209.572194]: Direct Instances: []\n", + "[INFO] [1712656209.572531]: Inverse Restrictions: []\n", + "[INFO] [1712656209.572864]: -------------------\n", + "[INFO] [1712656209.573185]: SOMA.Deposit \n", + "[INFO] [1712656209.573509]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712656209.573848]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Deposit, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.574174]: Subclasses: []\n", + "[INFO] [1712656209.574548]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.575126]: Instances: []\n", + "[INFO] [1712656209.575471]: Direct Instances: []\n", + "[INFO] [1712656209.575845]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712656209.576164]: -------------------\n", + "[INFO] [1712656209.576470]: SOMA.DepositedObject \n", + "[INFO] [1712656209.576811]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.577154]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.DepositedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.577484]: Subclasses: []\n", + "[INFO] [1712656209.577853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.578428]: Instances: []\n", + "[INFO] [1712656209.578783]: Direct Instances: []\n", + "[INFO] [1712656209.579153]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712656209.579473]: -------------------\n", + "[INFO] [1712656209.579780]: SOMA.InformationAcquisition \n", + "[INFO] [1712656209.580083]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.580389]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712656209.580733]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712656209.581167]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712656209.581834]: Instances: []\n", + "[INFO] [1712656209.582238]: Direct Instances: []\n", + "[INFO] [1712656209.582672]: Inverse Restrictions: []\n", + "[INFO] [1712656209.583032]: -------------------\n", + "[INFO] [1712656209.583391]: SOMA.Premise \n", + "[INFO] [1712656209.583746]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712656209.584113]: Ancestors: {DUL.Concept, SOMA.Item, DUL.Entity, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Premise}\n", + "[INFO] [1712656209.584494]: Subclasses: []\n", + "[INFO] [1712656209.584830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.585343]: Instances: []\n", + "[INFO] [1712656209.585631]: Direct Instances: []\n", + "[INFO] [1712656209.585953]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656209.586195]: -------------------\n", + "[INFO] [1712656209.586428]: SOMA.FunctionalPart \n", + "[INFO] [1712656209.586671]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712656209.586924]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.587189]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712656209.587490]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.588044]: Instances: []\n", + "[INFO] [1712656209.588344]: Direct Instances: []\n", + "[INFO] [1712656209.588621]: Inverse Restrictions: []\n", + "[INFO] [1712656209.588876]: -------------------\n", + "[INFO] [1712656209.589118]: SOMA.Graspability \n", + "[INFO] [1712656209.589350]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712656209.589600]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Graspability, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.589851]: Subclasses: []\n", + "[INFO] [1712656209.590145]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.590639]: Instances: []\n", + "[INFO] [1712656209.590904]: Direct Instances: []\n", + "[INFO] [1712656209.591181]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712656209.591435]: -------------------\n", + "[INFO] [1712656209.591680]: SOMA.Destination \n", + "[INFO] [1712656209.591919]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712656209.592165]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Destination, DUL.Entity, SOMA.Location}\n", + "[INFO] [1712656209.592416]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712656209.592711]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.593216]: Instances: []\n", + "[INFO] [1712656209.593481]: Direct Instances: []\n", + "[INFO] [1712656209.593818]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712656209.594078]: -------------------\n", + "[INFO] [1712656209.594322]: SOMA.Location \n", + "[INFO] [1712656209.594551]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712656209.594790]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Location}\n", + "[INFO] [1712656209.595053]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712656209.595350]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.595845]: Instances: []\n", + "[INFO] [1712656209.596121]: Direct Instances: []\n", + "[INFO] [1712656209.596389]: Inverse Restrictions: []\n", + "[INFO] [1712656209.596624]: -------------------\n", + "[INFO] [1712656209.596872]: SOMA.DestroyedObject \n", + "[INFO] [1712656209.597107]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.597353]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.DestroyedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.597606]: Subclasses: []\n", + "[INFO] [1712656209.597908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.598411]: Instances: []\n", + "[INFO] [1712656209.598679]: Direct Instances: []\n", + "[INFO] [1712656209.598972]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712656209.599225]: -------------------\n", + "[INFO] [1712656209.599461]: SOMA.Destruction \n", + "[INFO] [1712656209.599695]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712656209.599937]: Ancestors: {DUL.Concept, SOMA.Destruction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656209.600172]: Subclasses: []\n", + "[INFO] [1712656209.600461]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.601022]: Instances: []\n", + "[INFO] [1712656209.601437]: Direct Instances: []\n", + "[INFO] [1712656209.601722]: Inverse Restrictions: []\n", + "[INFO] [1712656209.601967]: -------------------\n", + "[INFO] [1712656209.602204]: SOMA.DetectedObject \n", + "[INFO] [1712656209.602433]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.602671]: Ancestors: {DUL.Concept, SOMA.DetectedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.602906]: Subclasses: []\n", + "[INFO] [1712656209.603203]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.603685]: Instances: []\n", + "[INFO] [1712656209.603936]: Direct Instances: []\n", + "[INFO] [1712656209.604176]: Inverse Restrictions: []\n", + "[INFO] [1712656209.604399]: -------------------\n", + "[INFO] [1712656209.604634]: SOMA.DeviceState \n", + "[INFO] [1712656209.604873]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656209.605108]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity, SOMA.DeviceState}\n", + "[INFO] [1712656209.605338]: Subclasses: []\n", + "[INFO] [1712656209.605619]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.606106]: Instances: []\n", + "[INFO] [1712656209.606358]: Direct Instances: []\n", + "[INFO] [1712656209.606592]: Inverse Restrictions: []\n", + "[INFO] [1712656209.606819]: -------------------\n", + "[INFO] [1712656209.607052]: SOMA.DeviceStateRange \n", + "[INFO] [1712656209.607281]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656209.607515]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceStateRange}\n", + "[INFO] [1712656209.607760]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712656209.608051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.608556]: Instances: []\n", + "[INFO] [1712656209.608827]: Direct Instances: []\n", + "[INFO] [1712656209.609083]: Inverse Restrictions: []\n", + "[INFO] [1712656209.609310]: -------------------\n", + "[INFO] [1712656209.609535]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712656209.609771]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712656209.610013]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOff, DUL.Entity, SOMA.DeviceStateRange}\n", + "[INFO] [1712656209.610244]: Subclasses: []\n", + "[INFO] [1712656209.610522]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.611012]: Instances: []\n", + "[INFO] [1712656209.611265]: Direct Instances: []\n", + "[INFO] [1712656209.611546]: Inverse Restrictions: []\n", + "[INFO] [1712656209.611772]: -------------------\n", + "[INFO] [1712656209.611995]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712656209.612215]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712656209.612457]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOn, DUL.Entity, SOMA.DeviceStateRange}\n", + "[INFO] [1712656209.612693]: Subclasses: []\n", + "[INFO] [1712656209.612976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.613485]: Instances: []\n", + "[INFO] [1712656209.613761]: Direct Instances: []\n", + "[INFO] [1712656209.614053]: Inverse Restrictions: []\n", + "[INFO] [1712656209.614291]: -------------------\n", + "[INFO] [1712656209.614522]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712656209.614748]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712656209.614995]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.615248]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712656209.615535]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.616027]: Instances: []\n", + "[INFO] [1712656209.616304]: Direct Instances: []\n", + "[INFO] [1712656209.616565]: Inverse Restrictions: []\n", + "[INFO] [1712656209.616809]: -------------------\n", + "[INFO] [1712656209.617049]: SOMA.Dicing \n", + "[INFO] [1712656209.617274]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712656209.617550]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Dicing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656209.617804]: Subclasses: []\n", + "[INFO] [1712656209.618089]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.618564]: Instances: []\n", + "[INFO] [1712656209.619115]: Direct Instances: []\n", + "[INFO] [1712656209.619692]: Inverse Restrictions: []\n", + "[INFO] [1712656209.619979]: -------------------\n", + "[INFO] [1712656209.620235]: SOMA.DirectedMotion \n", + "[INFO] [1712656209.620481]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712656209.620733]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.621010]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712656209.621337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.621896]: Instances: []\n", + "[INFO] [1712656209.622177]: Direct Instances: []\n", + "[INFO] [1712656209.622443]: Inverse Restrictions: []\n", + "[INFO] [1712656209.622676]: -------------------\n", + "[INFO] [1712656209.622911]: SOMA.UndirectedMotion \n", + "[INFO] [1712656209.623154]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712656209.623405]: Ancestors: {DUL.Concept, SOMA.UndirectedMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.623644]: Subclasses: []\n", + "[INFO] [1712656209.623930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.624427]: Instances: []\n", + "[INFO] [1712656209.624689]: Direct Instances: []\n", + "[INFO] [1712656209.624948]: Inverse Restrictions: []\n", + "[INFO] [1712656209.625177]: -------------------\n", + "[INFO] [1712656209.625410]: SOMA.Dirty \n", + "[INFO] [1712656209.625647]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712656209.625890]: Ancestors: {SOMA.Dirty, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", + "[INFO] [1712656209.626133]: Subclasses: []\n", + "[INFO] [1712656209.626417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.626893]: Instances: []\n", + "[INFO] [1712656209.627167]: Direct Instances: []\n", + "[INFO] [1712656209.627419]: Inverse Restrictions: []\n", + "[INFO] [1712656209.627654]: -------------------\n", + "[INFO] [1712656209.627882]: SOMA.Discourse \n", + "[INFO] [1712656209.628106]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712656209.628340]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Discourse}\n", + "[INFO] [1712656209.628586]: Subclasses: []\n", + "[INFO] [1712656209.628924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.629469]: Instances: []\n", + "[INFO] [1712656209.629774]: Direct Instances: []\n", + "[INFO] [1712656209.630028]: Inverse Restrictions: []\n", + "[INFO] [1712656209.630257]: -------------------\n", + "[INFO] [1712656209.630485]: SOMA.Distancing \n", + "[INFO] [1712656209.630715]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712656209.630958]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Distancing}\n", + "[INFO] [1712656209.631193]: Subclasses: []\n", + "[INFO] [1712656209.631474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.631971]: Instances: []\n", + "[INFO] [1712656209.632237]: Direct Instances: []\n", + "[INFO] [1712656209.632483]: Inverse Restrictions: []\n", + "[INFO] [1712656209.632712]: -------------------\n", + "[INFO] [1712656209.632951]: SOMA.Dreaming \n", + "[INFO] [1712656209.633187]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656209.633427]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Dreaming}\n", + "[INFO] [1712656209.633664]: Subclasses: []\n", + "[INFO] [1712656209.633944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.634441]: Instances: []\n", + "[INFO] [1712656209.634700]: Direct Instances: []\n", + "[INFO] [1712656209.634938]: Inverse Restrictions: []\n", + "[INFO] [1712656209.635164]: -------------------\n", + "[INFO] [1712656209.635391]: SOMA.Driving \n", + "[INFO] [1712656209.635628]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656209.635873]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Driving, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.636107]: Subclasses: []\n", + "[INFO] [1712656209.636400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.636913]: Instances: []\n", + "[INFO] [1712656209.637181]: Direct Instances: []\n", + "[INFO] [1712656209.637423]: Inverse Restrictions: []\n", + "[INFO] [1712656209.637651]: -------------------\n", + "[INFO] [1712656209.637878]: SOMA.Flying \n", + "[INFO] [1712656209.638103]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656209.638356]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Flying, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.638603]: Subclasses: []\n", + "[INFO] [1712656209.638903]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.639395]: Instances: []\n", + "[INFO] [1712656209.639656]: Direct Instances: []\n", + "[INFO] [1712656209.639915]: Inverse Restrictions: []\n", + "[INFO] [1712656209.640144]: -------------------\n", + "[INFO] [1712656209.640370]: SOMA.Swimming \n", + "[INFO] [1712656209.640598]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656209.640872]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType, SOMA.Swimming}\n", + "[INFO] [1712656209.641246]: Subclasses: []\n", + "[INFO] [1712656209.641575]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.642073]: Instances: []\n", + "[INFO] [1712656209.642357]: Direct Instances: []\n", + "[INFO] [1712656209.642623]: Inverse Restrictions: []\n", + "[INFO] [1712656209.643088]: -------------------\n", + "[INFO] [1712656209.643556]: SOMA.Walking \n", + "[INFO] [1712656209.644008]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656209.644428]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Walking, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.644824]: Subclasses: []\n", + "[INFO] [1712656209.645161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.645668]: Instances: []\n", + "[INFO] [1712656209.645935]: Direct Instances: []\n", + "[INFO] [1712656209.646410]: Inverse Restrictions: []\n", + "[INFO] [1712656209.646871]: -------------------\n", + "[INFO] [1712656209.647338]: SOMA.Dropping \n", + "[INFO] [1712656209.647793]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.648211]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Dropping, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.648612]: Subclasses: []\n", + "[INFO] [1712656209.649020]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.649639]: Instances: []\n", + "[INFO] [1712656209.649944]: Direct Instances: []\n", + "[INFO] [1712656209.650387]: Inverse Restrictions: []\n", + "[INFO] [1712656209.650834]: -------------------\n", + "[INFO] [1712656209.651188]: SOMA.Placing \n", + "[INFO] [1712656209.651547]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656209.651907]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Placing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.652265]: Subclasses: []\n", + "[INFO] [1712656209.652663]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.653279]: Instances: [SOMA.placing]\n", + "[INFO] [1712656209.653672]: Direct Instances: [SOMA.placing]\n", + "[INFO] [1712656209.654046]: Inverse Restrictions: []\n", + "[INFO] [1712656209.654392]: -------------------\n", + "[INFO] [1712656209.654728]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712656209.655071]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712656209.655429]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.ESTSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.655780]: Subclasses: []\n", + "[INFO] [1712656209.656181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656209.656765]: Instances: []\n", + "[INFO] [1712656209.657148]: Direct Instances: []\n", + "[INFO] [1712656209.657503]: Inverse Restrictions: []\n", + "[INFO] [1712656209.657829]: -------------------\n", + "[INFO] [1712656209.658154]: SOMA.ExistingObjectRole \n", + "[INFO] [1712656209.658484]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656209.658821]: Ancestors: {SOMA.ExistingObjectRole, DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.659172]: Subclasses: []\n", + "[INFO] [1712656209.659566]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.660150]: Instances: []\n", + "[INFO] [1712656209.660516]: Direct Instances: []\n", + "[INFO] [1712656209.660914]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712656209.661245]: -------------------\n", + "[INFO] [1712656209.661568]: SOMA.Effort \n", + "[INFO] [1712656209.661886]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712656209.662215]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity, SOMA.Effort}\n", + "[INFO] [1712656209.662569]: Subclasses: []\n", + "[INFO] [1712656209.662955]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.663558]: Instances: []\n", + "[INFO] [1712656209.663952]: Direct Instances: []\n", + "[INFO] [1712656209.664316]: Inverse Restrictions: []\n", + "[INFO] [1712656209.664650]: -------------------\n", + "[INFO] [1712656209.665048]: SOMA.EnclosedObject \n", + "[INFO] [1712656209.665341]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712656209.665663]: Ancestors: {DUL.Concept, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.665975]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712656209.666288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.666789]: Instances: []\n", + "[INFO] [1712656209.667199]: Direct Instances: []\n", + "[INFO] [1712656209.667630]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712656209.667990]: -------------------\n", + "[INFO] [1712656209.668250]: SOMA.Enclosing \n", + "[INFO] [1712656209.668606]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712656209.668899]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.669186]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712656209.669518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.670040]: Instances: []\n", + "[INFO] [1712656209.670314]: Direct Instances: []\n", + "[INFO] [1712656209.670575]: Inverse Restrictions: []\n", + "[INFO] [1712656209.670824]: -------------------\n", + "[INFO] [1712656209.671067]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712656209.671297]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656209.671534]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.671783]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712656209.672079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.672565]: Instances: []\n", + "[INFO] [1712656209.672843]: Direct Instances: []\n", + "[INFO] [1712656209.673108]: Inverse Restrictions: []\n", + "[INFO] [1712656209.673342]: -------------------\n", + "[INFO] [1712656209.673570]: SOMA.Manipulating \n", + "[INFO] [1712656209.673805]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712656209.674051]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.674324]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712656209.674615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.675123]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712656209.675400]: Direct Instances: []\n", + "[INFO] [1712656209.675673]: Inverse Restrictions: []\n", + "[INFO] [1712656209.675915]: -------------------\n", + "[INFO] [1712656209.676147]: SOMA.Episode \n", + "[INFO] [1712656209.676374]: Super classes: [DUL.Situation]\n", + "[INFO] [1712656209.676606]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing}\n", + "[INFO] [1712656209.676872]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712656209.677162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.677642]: Instances: []\n", + "[INFO] [1712656209.677904]: Direct Instances: []\n", + "[INFO] [1712656209.678165]: Inverse Restrictions: []\n", + "[INFO] [1712656209.678403]: -------------------\n", + "[INFO] [1712656209.678634]: SOMA.ExcludedObject \n", + "[INFO] [1712656209.678862]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.679098]: Ancestors: {DUL.Concept, SOMA.ExcludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.679344]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712656209.679643]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.680171]: Instances: []\n", + "[INFO] [1712656209.680446]: Direct Instances: []\n", + "[INFO] [1712656209.680778]: Inverse Restrictions: []\n", + "[INFO] [1712656209.681081]: -------------------\n", + "[INFO] [1712656209.681330]: SOMA.ExecutableFile \n", + "[INFO] [1712656209.681569]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.681806]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", + "[INFO] [1712656209.682146]: Subclasses: []\n", + "[INFO] [1712656209.682468]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.realizes]\n", + "[INFO] [1712656209.683001]: Instances: []\n", + "[INFO] [1712656209.683286]: Direct Instances: []\n", + "[INFO] [1712656209.683611]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712656209.683852]: -------------------\n", + "[INFO] [1712656209.684101]: SOMA.Executable_Code \n", + "[INFO] [1712656209.684353]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712656209.684596]: Ancestors: {SOMA.Computer_Program, owl.Thing, SOMA.Executable_Code}\n", + "[INFO] [1712656209.684841]: Subclasses: []\n", + "[INFO] [1712656209.685147]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656209.685652]: Instances: []\n", + "[INFO] [1712656209.685914]: Direct Instances: []\n", + "[INFO] [1712656209.686251]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712656209.686486]: -------------------\n", + "[INFO] [1712656209.686714]: SOMA.ExecutableFormat \n", + "[INFO] [1712656209.686958]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712656209.687204]: Ancestors: {SOMA.ExecutableFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.687448]: Subclasses: []\n", + "[INFO] [1712656209.687739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.688240]: Instances: []\n", + "[INFO] [1712656209.688507]: Direct Instances: []\n", + "[INFO] [1712656209.688821]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712656209.689064]: -------------------\n", + "[INFO] [1712656209.689294]: SOMA.SchematicTheory \n", + "[INFO] [1712656209.689519]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712656209.689775]: Ancestors: {SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.690034]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712656209.690327]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.690850]: Instances: []\n", + "[INFO] [1712656209.691121]: Direct Instances: []\n", + "[INFO] [1712656209.691376]: Inverse Restrictions: []\n", + "[INFO] [1712656209.691605]: -------------------\n", + "[INFO] [1712656209.691834]: SOMA.ExecutableSoftware \n", + "[INFO] [1712656209.692072]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.692308]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", + "[INFO] [1712656209.692547]: Subclasses: []\n", + "[INFO] [1712656209.692837]: Properties: [rdf-schema.isDefinedBy, DUL.hasMember, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.693339]: Instances: []\n", + "[INFO] [1712656209.693608]: Direct Instances: []\n", + "[INFO] [1712656209.693855]: Inverse Restrictions: []\n", + "[INFO] [1712656209.694085]: -------------------\n", + "[INFO] [1712656209.694314]: SOMA.Software \n", + "[INFO] [1712656209.694553]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712656209.694814]: Ancestors: {DUL.Design, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, SOMA.Software, DUL.Entity}\n", + "[INFO] [1712656209.695069]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712656209.695372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.describes]\n", + "[INFO] [1712656209.695869]: Instances: []\n", + "[INFO] [1712656209.696145]: Direct Instances: []\n", + "[INFO] [1712656209.696527]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656209.696822]: -------------------\n", + "[INFO] [1712656209.697083]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712656209.697321]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712656209.697570]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.697828]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712656209.698120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.698629]: Instances: []\n", + "[INFO] [1712656209.698916]: Direct Instances: []\n", + "[INFO] [1712656209.699178]: Inverse Restrictions: []\n", + "[INFO] [1712656209.699409]: -------------------\n", + "[INFO] [1712656209.699637]: SOMA.ExperiencerRole \n", + "[INFO] [1712656209.699862]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712656209.700101]: Ancestors: {DUL.Concept, SOMA.ExperiencerRole, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", + "[INFO] [1712656209.700364]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712656209.700655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.701173]: Instances: []\n", + "[INFO] [1712656209.701549]: Direct Instances: []\n", + "[INFO] [1712656209.701864]: Inverse Restrictions: []\n", + "[INFO] [1712656209.702209]: -------------------\n", + "[INFO] [1712656209.702477]: SOMA.ExtractedObject \n", + "[INFO] [1712656209.702732]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.702986]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.ExtractedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.703229]: Subclasses: []\n", + "[INFO] [1712656209.703533]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.704019]: Instances: []\n", + "[INFO] [1712656209.704287]: Direct Instances: []\n", + "[INFO] [1712656209.704527]: Inverse Restrictions: []\n", + "[INFO] [1712656209.704755]: -------------------\n", + "[INFO] [1712656209.705010]: SOMA.PhysicalQuality \n", + "[INFO] [1712656209.705249]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712656209.705483]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", + "[INFO] [1712656209.705732]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712656209.706018]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf, rdf-schema.label]\n", + "[INFO] [1712656209.706614]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712656209.706887]: Direct Instances: []\n", + "[INFO] [1712656209.707144]: Inverse Restrictions: []\n", + "[INFO] [1712656209.707375]: -------------------\n", + "[INFO] [1712656209.707606]: SOMA.FailedAttempt \n", + "[INFO] [1712656209.707845]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712656209.708090]: Ancestors: {DUL.Description, SOMA.FailedAttempt, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.708325]: Subclasses: []\n", + "[INFO] [1712656209.708611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.709117]: Instances: []\n", + "[INFO] [1712656209.709382]: Direct Instances: []\n", + "[INFO] [1712656209.709631]: Inverse Restrictions: []\n", + "[INFO] [1712656209.709859]: -------------------\n", + "[INFO] [1712656209.710087]: SOMA.FaultySoftware \n", + "[INFO] [1712656209.710324]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712656209.710569]: Ancestors: {SOMA.FaultySoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656209.710807]: Subclasses: []\n", + "[INFO] [1712656209.711090]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.711585]: Instances: []\n", + "[INFO] [1712656209.711854]: Direct Instances: []\n", + "[INFO] [1712656209.712097]: Inverse Restrictions: []\n", + "[INFO] [1712656209.712327]: -------------------\n", + "[INFO] [1712656209.712550]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712656209.712777]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712656209.713028]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656209.713290]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712656209.713588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.714197]: Instances: []\n", + "[INFO] [1712656209.714505]: Direct Instances: []\n", + "[INFO] [1712656209.714808]: Inverse Restrictions: []\n", + "[INFO] [1712656209.715067]: -------------------\n", + "[INFO] [1712656209.715472]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712656209.715875]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712656209.716266]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.PhysicalAcquiring, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656209.716666]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712656209.717121]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.717810]: Instances: []\n", + "[INFO] [1712656209.718261]: Direct Instances: []\n", + "[INFO] [1712656209.718626]: Inverse Restrictions: []\n", + "[INFO] [1712656209.718939]: -------------------\n", + "[INFO] [1712656209.719243]: SOMA.Finger \n", + "[INFO] [1712656209.719552]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712656209.719872]: Ancestors: {DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Finger, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.720193]: Subclasses: []\n", + "[INFO] [1712656209.720586]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isPartOf]\n", + "[INFO] [1712656209.721254]: Instances: []\n", + "[INFO] [1712656209.721606]: Direct Instances: []\n", + "[INFO] [1712656209.721935]: Inverse Restrictions: []\n", + "[INFO] [1712656209.722251]: -------------------\n", + "[INFO] [1712656209.722580]: SOMA.Hand \n", + "[INFO] [1712656209.722912]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712656209.723254]: Ancestors: {DUL.PhysicalBody, SOMA.Hand, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.723587]: Subclasses: []\n", + "[INFO] [1712656209.723989]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.724713]: Instances: []\n", + "[INFO] [1712656209.725103]: Direct Instances: []\n", + "[INFO] [1712656209.725536]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712656209.725891]: -------------------\n", + "[INFO] [1712656209.726253]: SOMA.FixedJoint \n", + "[INFO] [1712656209.726651]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712656209.727035]: Ancestors: {DUL.PhysicalBody, SOMA.Joint, SOMA.FixedJoint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656209.727414]: Subclasses: []\n", + "[INFO] [1712656209.727902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.728687]: Instances: []\n", + "[INFO] [1712656209.729143]: Direct Instances: []\n", + "[INFO] [1712656209.729633]: Inverse Restrictions: []\n", + "[INFO] [1712656209.730035]: -------------------\n", + "[INFO] [1712656209.730488]: SOMA.MovableJoint \n", + "[INFO] [1712656209.730913]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712656209.731328]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656209.731776]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712656209.732283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointState]\n", + "[INFO] [1712656209.733162]: Instances: []\n", + "[INFO] [1712656209.733788]: Direct Instances: []\n", + "[INFO] [1712656209.734337]: Inverse Restrictions: []\n", + "[INFO] [1712656209.734767]: -------------------\n", + "[INFO] [1712656209.735187]: SOMA.Flipping \n", + "[INFO] [1712656209.735604]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712656209.736032]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Flipping, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.736443]: Subclasses: []\n", + "[INFO] [1712656209.736952]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656209.737723]: Instances: []\n", + "[INFO] [1712656209.738138]: Direct Instances: []\n", + "[INFO] [1712656209.738533]: Inverse Restrictions: []\n", + "[INFO] [1712656209.738882]: -------------------\n", + "[INFO] [1712656209.739222]: SOMA.FloatingJoint \n", + "[INFO] [1712656209.739559]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712656209.739898]: Ancestors: {SOMA.FloatingJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656209.740243]: Subclasses: []\n", + "[INFO] [1712656209.740646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.741287]: Instances: []\n", + "[INFO] [1712656209.741650]: Direct Instances: []\n", + "[INFO] [1712656209.741967]: Inverse Restrictions: []\n", + "[INFO] [1712656209.742265]: -------------------\n", + "[INFO] [1712656209.742541]: SOMA.Fluid \n", + "[INFO] [1712656209.742809]: Super classes: [DUL.Substance]\n", + "[INFO] [1712656209.743103]: Ancestors: {DUL.Substance, SOMA.Fluid, DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656209.743384]: Subclasses: []\n", + "[INFO] [1712656209.743699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.744226]: Instances: []\n", + "[INFO] [1712656209.744511]: Direct Instances: []\n", + "[INFO] [1712656209.745092]: Inverse Restrictions: []\n", + "[INFO] [1712656209.745504]: -------------------\n", + "[INFO] [1712656209.745826]: SOMA.MovedObject \n", + "[INFO] [1712656209.746093]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712656209.746352]: Ancestors: {SOMA.MovedObject, DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.746615]: Subclasses: []\n", + "[INFO] [1712656209.746956]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.747470]: Instances: []\n", + "[INFO] [1712656209.747831]: Direct Instances: []\n", + "[INFO] [1712656209.748277]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712656209.748556]: -------------------\n", + "[INFO] [1712656209.748831]: SOMA.Focusing \n", + "[INFO] [1712656209.749081]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712656209.749330]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.AttentionShift, DUL.SocialObject, SOMA.MentalTask, DUL.Entity, SOMA.Focusing}\n", + "[INFO] [1712656209.749570]: Subclasses: []\n", + "[INFO] [1712656209.749857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.750375]: Instances: []\n", + "[INFO] [1712656209.750643]: Direct Instances: []\n", + "[INFO] [1712656209.750909]: Inverse Restrictions: []\n", + "[INFO] [1712656209.751149]: -------------------\n", + "[INFO] [1712656209.751383]: SOMA.Foolishness \n", + "[INFO] [1712656209.751616]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712656209.751855]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.Foolishness, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.752102]: Subclasses: []\n", + "[INFO] [1712656209.752393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.752889]: Instances: []\n", + "[INFO] [1712656209.753149]: Direct Instances: []\n", + "[INFO] [1712656209.753391]: Inverse Restrictions: []\n", + "[INFO] [1712656209.753633]: -------------------\n", + "[INFO] [1712656209.753864]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712656209.754095]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712656209.754334]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, SOMA.ForgettingIncorrectInformation, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.754587]: Subclasses: []\n", + "[INFO] [1712656209.754876]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.755353]: Instances: []\n", + "[INFO] [1712656209.755628]: Direct Instances: []\n", + "[INFO] [1712656209.755881]: Inverse Restrictions: []\n", + "[INFO] [1712656209.756112]: -------------------\n", + "[INFO] [1712656209.756339]: SOMA.InformationDismissal \n", + "[INFO] [1712656209.756573]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712656209.756820]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.757088]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712656209.757386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712656209.757881]: Instances: []\n", + "[INFO] [1712656209.758140]: Direct Instances: []\n", + "[INFO] [1712656209.758395]: Inverse Restrictions: []\n", + "[INFO] [1712656209.758642]: -------------------\n", + "[INFO] [1712656209.758879]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712656209.759104]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712656209.759345]: Ancestors: {SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.759595]: Subclasses: []\n", + "[INFO] [1712656209.759882]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.760365]: Instances: []\n", + "[INFO] [1712656209.760618]: Direct Instances: []\n", + "[INFO] [1712656209.760875]: Inverse Restrictions: []\n", + "[INFO] [1712656209.761117]: -------------------\n", + "[INFO] [1712656209.761351]: SOMA.Language \n", + "[INFO] [1712656209.761583]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712656209.761821]: Ancestors: {DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.762086]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712656209.762383]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.762911]: Instances: []\n", + "[INFO] [1712656209.763184]: Direct Instances: []\n", + "[INFO] [1712656209.763555]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712656209.763834]: -------------------\n", + "[INFO] [1712656209.764074]: SOMA.Item \n", + "[INFO] [1712656209.764311]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656209.764555]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.764839]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712656209.765162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.765690]: Instances: []\n", + "[INFO] [1712656209.765968]: Direct Instances: []\n", + "[INFO] [1712656209.766325]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712656209.766566]: -------------------\n", + "[INFO] [1712656209.766801]: SOMA.FunctionalDesign \n", + "[INFO] [1712656209.767030]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712656209.767277]: Ancestors: {SOMA.FunctionalDesign, DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.767535]: Subclasses: []\n", + "[INFO] [1712656209.767837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.768316]: Instances: []\n", + "[INFO] [1712656209.768592]: Direct Instances: []\n", + "[INFO] [1712656209.768854]: Inverse Restrictions: []\n", + "[INFO] [1712656209.769099]: -------------------\n", + "[INFO] [1712656209.769333]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712656209.769565]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712656209.769801]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656209.770067]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712656209.770356]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.770846]: Instances: []\n", + "[INFO] [1712656209.771105]: Direct Instances: []\n", + "[INFO] [1712656209.771362]: Inverse Restrictions: []\n", + "[INFO] [1712656209.771597]: -------------------\n", + "[INFO] [1712656209.771832]: SOMA.LocatumRole \n", + "[INFO] [1712656209.772067]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656209.772311]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.LocatumRole, DUL.Entity, SOMA.SpatialRelationRole}\n", + "[INFO] [1712656209.772564]: Subclasses: []\n", + "[INFO] [1712656209.772866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.773354]: Instances: []\n", + "[INFO] [1712656209.773630]: Direct Instances: []\n", + "[INFO] [1712656209.773958]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712656209.774195]: -------------------\n", + "[INFO] [1712656209.774426]: SOMA.RelatumRole \n", + "[INFO] [1712656209.774657]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656209.774896]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, SOMA.RelatumRole, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SpatialRelationRole}\n", + "[INFO] [1712656209.775149]: Subclasses: []\n", + "[INFO] [1712656209.775444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.775933]: Instances: []\n", + "[INFO] [1712656209.776187]: Direct Instances: []\n", + "[INFO] [1712656209.776515]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712656209.776757]: -------------------\n", + "[INFO] [1712656209.777001]: SOMA.GetTaskParameter \n", + "[INFO] [1712656209.777232]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712656209.777466]: Ancestors: {SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712656209.777729]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712656209.778020]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.778507]: Instances: []\n", + "[INFO] [1712656209.778782]: Direct Instances: []\n", + "[INFO] [1712656209.779042]: Inverse Restrictions: []\n", + "[INFO] [1712656209.779274]: -------------------\n", + "[INFO] [1712656209.779501]: SOMA.Planning \n", + "[INFO] [1712656209.779733]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712656209.779969]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712656209.780273]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712656209.780590]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isTaskOf]\n", + "[INFO] [1712656209.781102]: Instances: []\n", + "[INFO] [1712656209.781382]: Direct Instances: []\n", + "[INFO] [1712656209.781657]: Inverse Restrictions: []\n", + "[INFO] [1712656209.781901]: -------------------\n", + "[INFO] [1712656209.782133]: SOMA.GraphDatabase \n", + "[INFO] [1712656209.782365]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712656209.782618]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.782872]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712656209.783161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.783645]: Instances: []\n", + "[INFO] [1712656209.783922]: Direct Instances: []\n", + "[INFO] [1712656209.784184]: Inverse Restrictions: []\n", + "[INFO] [1712656209.784425]: -------------------\n", + "[INFO] [1712656209.784672]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712656209.785010]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712656209.785343]: Ancestors: {SOMA.Computer_Language, SOMA.GraphQueryLanguage, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.785622]: Subclasses: []\n", + "[INFO] [1712656209.785930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.786417]: Instances: []\n", + "[INFO] [1712656209.786673]: Direct Instances: []\n", + "[INFO] [1712656209.786921]: Inverse Restrictions: []\n", + "[INFO] [1712656209.787150]: -------------------\n", + "[INFO] [1712656209.787388]: SOMA.QueryLanguage \n", + "[INFO] [1712656209.787623]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656209.787866]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.788116]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712656209.788400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.788910]: Instances: []\n", + "[INFO] [1712656209.789182]: Direct Instances: []\n", + "[INFO] [1712656209.789460]: Inverse Restrictions: []\n", + "[INFO] [1712656209.789703]: -------------------\n", + "[INFO] [1712656209.789932]: SOMA.GraspTransfer \n", + "[INFO] [1712656209.790159]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712656209.790410]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.GraspTransfer, SOMA.Grasping, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.790649]: Subclasses: []\n", + "[INFO] [1712656209.790933]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.791429]: Instances: []\n", + "[INFO] [1712656209.791696]: Direct Instances: []\n", + "[INFO] [1712656209.791948]: Inverse Restrictions: []\n", + "[INFO] [1712656209.792180]: -------------------\n", + "[INFO] [1712656209.792407]: SOMA.Grasping \n", + "[INFO] [1712656209.792630]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656209.792876]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Grasping, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.793132]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712656209.793432]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.793923]: Instances: []\n", + "[INFO] [1712656209.794230]: Direct Instances: []\n", + "[INFO] [1712656209.794512]: Inverse Restrictions: []\n", + "[INFO] [1712656209.794750]: -------------------\n", + "[INFO] [1712656209.794983]: SOMA.Releasing \n", + "[INFO] [1712656209.795211]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656209.795462]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Releasing, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.795709]: Subclasses: []\n", + "[INFO] [1712656209.796000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.796487]: Instances: []\n", + "[INFO] [1712656209.796770]: Direct Instances: []\n", + "[INFO] [1712656209.797077]: Inverse Restrictions: []\n", + "[INFO] [1712656209.797328]: -------------------\n", + "[INFO] [1712656209.797560]: SOMA.GraspingMotion \n", + "[INFO] [1712656209.797788]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712656209.798039]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.798309]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712656209.798623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.799121]: Instances: []\n", + "[INFO] [1712656209.799392]: Direct Instances: []\n", + "[INFO] [1712656209.799691]: Inverse Restrictions: []\n", + "[INFO] [1712656209.799929]: -------------------\n", + "[INFO] [1712656209.800160]: SOMA.IntermediateGrasp \n", + "[INFO] [1712656209.800400]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712656209.800649]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.IntermediateGrasp, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.800900]: Subclasses: []\n", + "[INFO] [1712656209.801199]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.801708]: Instances: []\n", + "[INFO] [1712656209.801969]: Direct Instances: []\n", + "[INFO] [1712656209.802257]: Inverse Restrictions: []\n", + "[INFO] [1712656209.802491]: -------------------\n", + "[INFO] [1712656209.802720]: SOMA.PowerGrasp \n", + "[INFO] [1712656209.802947]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712656209.803200]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.PowerGrasp, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.803443]: Subclasses: []\n", + "[INFO] [1712656209.803738]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.804223]: Instances: []\n", + "[INFO] [1712656209.804489]: Direct Instances: []\n", + "[INFO] [1712656209.804790]: Inverse Restrictions: []\n", + "[INFO] [1712656209.805032]: -------------------\n", + "[INFO] [1712656209.805263]: SOMA.PrecisionGrasp \n", + "[INFO] [1712656209.805490]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712656209.805743]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, SOMA.PrecisionGrasp, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.805988]: Subclasses: []\n", + "[INFO] [1712656209.806276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.806777]: Instances: []\n", + "[INFO] [1712656209.807050]: Direct Instances: []\n", + "[INFO] [1712656209.807352]: Inverse Restrictions: []\n", + "[INFO] [1712656209.807590]: -------------------\n", + "[INFO] [1712656209.807835]: SOMA.PrehensileMotion \n", + "[INFO] [1712656209.808088]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712656209.808362]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.808619]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712656209.808942]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.809472]: Instances: []\n", + "[INFO] [1712656209.809744]: Direct Instances: []\n", + "[INFO] [1712656209.810001]: Inverse Restrictions: []\n", + "[INFO] [1712656209.810233]: -------------------\n", + "[INFO] [1712656209.810467]: SOMA.ReleasingMotion \n", + "[INFO] [1712656209.810706]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712656209.810952]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.PrehensileMotion, DUL.EventType, SOMA.ReleasingMotion, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.811191]: Subclasses: []\n", + "[INFO] [1712656209.811474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.811976]: Instances: []\n", + "[INFO] [1712656209.812241]: Direct Instances: []\n", + "[INFO] [1712656209.812535]: Inverse Restrictions: []\n", + "[INFO] [1712656209.812765]: -------------------\n", + "[INFO] [1712656209.813004]: SOMA.GreenColor \n", + "[INFO] [1712656209.813232]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712656209.813502]: Ancestors: {SOMA.GreenColor, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656209.813788]: Subclasses: []\n", + "[INFO] [1712656209.814083]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.814567]: Instances: []\n", + "[INFO] [1712656209.814836]: Direct Instances: []\n", + "[INFO] [1712656209.815086]: Inverse Restrictions: []\n", + "[INFO] [1712656209.815322]: -------------------\n", + "[INFO] [1712656209.815547]: SOMA.Gripper \n", + "[INFO] [1712656209.815771]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712656209.816005]: Ancestors: {SOMA.Gripper, DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.816251]: Subclasses: []\n", + "[INFO] [1712656209.816540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.817028]: Instances: []\n", + "[INFO] [1712656209.817302]: Direct Instances: []\n", + "[INFO] [1712656209.817560]: Inverse Restrictions: []\n", + "[INFO] [1712656209.817791]: -------------------\n", + "[INFO] [1712656209.818018]: SOMA.PrehensileEffector \n", + "[INFO] [1712656209.818244]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712656209.818477]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.818738]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712656209.819028]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.819523]: Instances: []\n", + "[INFO] [1712656209.819969]: Direct Instances: []\n", + "[INFO] [1712656209.820374]: Inverse Restrictions: []\n", + "[INFO] [1712656209.820631]: -------------------\n", + "[INFO] [1712656209.820888]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712656209.821148]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712656209.821414]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, SOMA.HardwareDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.821667]: Subclasses: []\n", + "[INFO] [1712656209.821959]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.822468]: Instances: []\n", + "[INFO] [1712656209.822762]: Direct Instances: []\n", + "[INFO] [1712656209.823006]: Inverse Restrictions: []\n", + "[INFO] [1712656209.823238]: -------------------\n", + "[INFO] [1712656209.823466]: SOMA.HasQualityRegion \n", + "[INFO] [1712656209.823700]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712656209.823951]: Ancestors: {DUL.Relation, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, SOMA.HasQualityRegion, DUL.Entity}\n", + "[INFO] [1712656209.824195]: Subclasses: []\n", + "[INFO] [1712656209.824486]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.label, DUL.hasQuality, rdf-schema.comment]\n", + "[INFO] [1712656209.824970]: Instances: []\n", + "[INFO] [1712656209.825249]: Direct Instances: []\n", + "[INFO] [1712656209.825509]: Inverse Restrictions: []\n", + "[INFO] [1712656209.825741]: -------------------\n", + "[INFO] [1712656209.825968]: SOMA.Head \n", + "[INFO] [1712656209.826193]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712656209.826430]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.Head, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.826681]: Subclasses: []\n", + "[INFO] [1712656209.826973]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.827457]: Instances: []\n", + "[INFO] [1712656209.827732]: Direct Instances: []\n", + "[INFO] [1712656209.827985]: Inverse Restrictions: []\n", + "[INFO] [1712656209.828219]: -------------------\n", + "[INFO] [1712656209.828448]: SOMA.HeadMovement \n", + "[INFO] [1712656209.828671]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712656209.828917]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.HeadMovement, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.829185]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712656209.829484]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.829982]: Instances: []\n", + "[INFO] [1712656209.830296]: Direct Instances: []\n", + "[INFO] [1712656209.830571]: Inverse Restrictions: []\n", + "[INFO] [1712656209.830807]: -------------------\n", + "[INFO] [1712656209.831039]: SOMA.HeadTurning \n", + "[INFO] [1712656209.831267]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712656209.831521]: Ancestors: {DUL.Concept, SOMA.HeadTurning, DUL.EventType, SOMA.HeadMovement, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.831767]: Subclasses: []\n", + "[INFO] [1712656209.832053]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.832550]: Instances: []\n", + "[INFO] [1712656209.832810]: Direct Instances: []\n", + "[INFO] [1712656209.833065]: Inverse Restrictions: []\n", + "[INFO] [1712656209.833303]: -------------------\n", + "[INFO] [1712656209.833568]: SOMA.Holding \n", + "[INFO] [1712656209.833817]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656209.834074]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Holding, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.834323]: Subclasses: []\n", + "[INFO] [1712656209.834610]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.835090]: Instances: []\n", + "[INFO] [1712656209.835363]: Direct Instances: []\n", + "[INFO] [1712656209.835620]: Inverse Restrictions: []\n", + "[INFO] [1712656209.835854]: -------------------\n", + "[INFO] [1712656209.836082]: SOMA.HostRole \n", + "[INFO] [1712656209.836314]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712656209.836569]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.HostRole, SOMA.SoftwareRole}\n", + "[INFO] [1712656209.836825]: Subclasses: []\n", + "[INFO] [1712656209.837119]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", + "[INFO] [1712656209.837623]: Instances: []\n", + "[INFO] [1712656209.837893]: Direct Instances: []\n", + "[INFO] [1712656209.838208]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712656209.838444]: -------------------\n", + "[INFO] [1712656209.838676]: SOMA.PluginSpecification \n", + "[INFO] [1712656209.838920]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712656209.839176]: Ancestors: {DUL.Design, SOMA.API_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PluginSpecification}\n", + "[INFO] [1712656209.839423]: Subclasses: []\n", + "[INFO] [1712656209.839769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", + "[INFO] [1712656209.840329]: Instances: []\n", + "[INFO] [1712656209.840632]: Direct Instances: []\n", + "[INFO] [1712656209.841011]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712656209.841274]: -------------------\n", + "[INFO] [1712656209.841515]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712656209.841759]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712656209.842024]: Ancestors: {SOMA.Computer_Language, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, SOMA.Programming_Language, DUL.Object, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.842271]: Subclasses: []\n", + "[INFO] [1712656209.842570]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.843047]: Instances: []\n", + "[INFO] [1712656209.843321]: Direct Instances: []\n", + "[INFO] [1712656209.843644]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712656209.844040]: -------------------\n", + "[INFO] [1712656209.844394]: SOMA.Source_Code \n", + "[INFO] [1712656209.844746]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712656209.845144]: Ancestors: {SOMA.Computer_Program, SOMA.Source_Code, owl.Thing}\n", + "[INFO] [1712656209.845518]: Subclasses: []\n", + "[INFO] [1712656209.845943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656209.846549]: Instances: []\n", + "[INFO] [1712656209.846950]: Direct Instances: []\n", + "[INFO] [1712656209.847369]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712656209.847739]: -------------------\n", + "[INFO] [1712656209.848000]: SOMA.HumanActivityRecording \n", + "[INFO] [1712656209.848239]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712656209.848482]: Ancestors: {DUL.Situation, SOMA.Episode, SOMA.HumanActivityRecording, owl.Thing, DUL.Entity, SOMA.RecordedEpisode}\n", + "[INFO] [1712656209.848736]: Subclasses: []\n", + "[INFO] [1712656209.849033]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.849525]: Instances: []\n", + "[INFO] [1712656209.849793]: Direct Instances: []\n", + "[INFO] [1712656209.850049]: Inverse Restrictions: []\n", + "[INFO] [1712656209.850280]: -------------------\n", + "[INFO] [1712656209.850508]: SOMA.Imagining \n", + "[INFO] [1712656209.850734]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712656209.850972]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Imagining}\n", + "[INFO] [1712656209.851211]: Subclasses: []\n", + "[INFO] [1712656209.851494]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.851991]: Instances: []\n", + "[INFO] [1712656209.852261]: Direct Instances: []\n", + "[INFO] [1712656209.852510]: Inverse Restrictions: []\n", + "[INFO] [1712656209.852752]: -------------------\n", + "[INFO] [1712656209.853187]: SOMA.Impediment \n", + "[INFO] [1712656209.853570]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712656209.853948]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Impediment, DUL.Quality, SOMA.Blockage, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656209.854323]: Subclasses: []\n", + "[INFO] [1712656209.854737]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.855339]: Instances: []\n", + "[INFO] [1712656209.855721]: Direct Instances: []\n", + "[INFO] [1712656209.856017]: Inverse Restrictions: []\n", + "[INFO] [1712656209.856269]: -------------------\n", + "[INFO] [1712656209.856509]: SOMA.Obstacle \n", + "[INFO] [1712656209.856743]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712656209.857001]: Ancestors: {DUL.Concept, SOMA.Obstacle, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656209.857256]: Subclasses: []\n", + "[INFO] [1712656209.857548]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.858033]: Instances: []\n", + "[INFO] [1712656209.858286]: Direct Instances: []\n", + "[INFO] [1712656209.858578]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712656209.858823]: -------------------\n", + "[INFO] [1712656209.859057]: SOMA.RestrictedObject \n", + "[INFO] [1712656209.859283]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712656209.859520]: Ancestors: {DUL.Concept, SOMA.RestrictedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", + "[INFO] [1712656209.859768]: Subclasses: []\n", + "[INFO] [1712656209.860058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.860543]: Instances: []\n", + "[INFO] [1712656209.860800]: Direct Instances: []\n", + "[INFO] [1712656209.861085]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712656209.861333]: -------------------\n", + "[INFO] [1712656209.861567]: SOMA.StateTransition \n", + "[INFO] [1712656209.861807]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712656209.862041]: Ancestors: {DUL.Situation, DUL.Transition, owl.Thing, SOMA.StateTransition, DUL.Entity}\n", + "[INFO] [1712656209.862275]: Subclasses: []\n", + "[INFO] [1712656209.862572]: Properties: [SOMA.hasTerminalScene, DUL.satisfies, rdf-schema.isDefinedBy, SOMA.hasInitialScene, rdf-schema.label, rdf-schema.comment, DUL.includesEvent]\n", + "[INFO] [1712656209.863063]: Instances: []\n", + "[INFO] [1712656209.863319]: Direct Instances: []\n", + "[INFO] [1712656209.863636]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712656209.863889]: -------------------\n", + "[INFO] [1712656209.864126]: SOMA.Inability \n", + "[INFO] [1712656209.864355]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712656209.864594]: Ancestors: {SOMA.Inability, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.864830]: Subclasses: []\n", + "[INFO] [1712656209.865117]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.865666]: Instances: []\n", + "[INFO] [1712656209.865972]: Direct Instances: []\n", + "[INFO] [1712656209.866254]: Inverse Restrictions: []\n", + "[INFO] [1712656209.866523]: -------------------\n", + "[INFO] [1712656209.866872]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712656209.867167]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712656209.867463]: Ancestors: {SOMA.IncompatibleSoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656209.867739]: Subclasses: []\n", + "[INFO] [1712656209.868055]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.868576]: Instances: []\n", + "[INFO] [1712656209.868866]: Direct Instances: []\n", + "[INFO] [1712656209.869131]: Inverse Restrictions: []\n", + "[INFO] [1712656209.869367]: -------------------\n", + "[INFO] [1712656209.869596]: SOMA.InductiveReasoning \n", + "[INFO] [1712656209.869822]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712656209.870061]: Ancestors: {SOMA.InductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.Reasoning}\n", + "[INFO] [1712656209.870304]: Subclasses: []\n", + "[INFO] [1712656209.870591]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.871077]: Instances: []\n", + "[INFO] [1712656209.871351]: Direct Instances: []\n", + "[INFO] [1712656209.871596]: Inverse Restrictions: []\n", + "[INFO] [1712656209.871839]: -------------------\n", + "[INFO] [1712656209.872071]: SOMA.Infeasibility \n", + "[INFO] [1712656209.872299]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712656209.872541]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.872793]: Subclasses: []\n", + "[INFO] [1712656209.873084]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.873566]: Instances: []\n", + "[INFO] [1712656209.873821]: Direct Instances: []\n", + "[INFO] [1712656209.874072]: Inverse Restrictions: []\n", + "[INFO] [1712656209.874319]: -------------------\n", + "[INFO] [1712656209.874557]: SOMA.InferenceRules \n", + "[INFO] [1712656209.874791]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712656209.875036]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.InferenceRules}\n", + "[INFO] [1712656209.875273]: Subclasses: []\n", + "[INFO] [1712656209.875568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.876059]: Instances: []\n", + "[INFO] [1712656209.876313]: Direct Instances: []\n", + "[INFO] [1712656209.876563]: Inverse Restrictions: []\n", + "[INFO] [1712656209.876797]: -------------------\n", + "[INFO] [1712656209.877040]: SOMA.InformationRetrieval \n", + "[INFO] [1712656209.877288]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712656209.877532]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.InformationRetrieval}\n", + "[INFO] [1712656209.877769]: Subclasses: []\n", + "[INFO] [1712656209.878051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712656209.878552]: Instances: []\n", + "[INFO] [1712656209.878818]: Direct Instances: []\n", + "[INFO] [1712656209.879103]: Inverse Restrictions: []\n", + "[INFO] [1712656209.879337]: -------------------\n", + "[INFO] [1712656209.879572]: SOMA.InformationStorage \n", + "[INFO] [1712656209.879824]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712656209.880072]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.880345]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712656209.880640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfInputRole]\n", + "[INFO] [1712656209.881144]: Instances: []\n", + "[INFO] [1712656209.881411]: Direct Instances: []\n", + "[INFO] [1712656209.881663]: Inverse Restrictions: []\n", + "[INFO] [1712656209.881900]: -------------------\n", + "[INFO] [1712656209.882131]: SOMA.StoredObject \n", + "[INFO] [1712656209.882360]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712656209.882619]: Ancestors: {DUL.Concept, DUL.Role, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, SOMA.StoredObject, owl.Thing, DUL.SocialObject, SOMA.EnclosedObject, DUL.Entity}\n", + "[INFO] [1712656209.882866]: Subclasses: []\n", + "[INFO] [1712656209.883150]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.883636]: Instances: []\n", + "[INFO] [1712656209.883907]: Direct Instances: []\n", + "[INFO] [1712656209.884250]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712656209.884496]: -------------------\n", + "[INFO] [1712656209.884736]: SOMA.InsertedObject \n", + "[INFO] [1712656209.885049]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712656209.885434]: Ancestors: {DUL.Concept, DUL.Role, SOMA.IncludedObject, SOMA.Patient, SOMA.InsertedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.EnclosedObject, DUL.Entity}\n", + "[INFO] [1712656209.885719]: Subclasses: []\n", + "[INFO] [1712656209.886026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.886520]: Instances: []\n", + "[INFO] [1712656209.886784]: Direct Instances: []\n", + "[INFO] [1712656209.887070]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712656209.887312]: -------------------\n", + "[INFO] [1712656209.887563]: SOMA.Instructions \n", + "[INFO] [1712656209.887800]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712656209.888046]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Instructions, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.888282]: Subclasses: []\n", + "[INFO] [1712656209.888562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.889069]: Instances: []\n", + "[INFO] [1712656209.889337]: Direct Instances: []\n", + "[INFO] [1712656209.889604]: Inverse Restrictions: []\n", + "[INFO] [1712656209.889858]: -------------------\n", + "[INFO] [1712656209.890101]: SOMA.Interpreting \n", + "[INFO] [1712656209.890334]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656209.890576]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Interpreting, SOMA.DerivingInformation}\n", + "[INFO] [1712656209.890819]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712656209.891118]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.891615]: Instances: []\n", + "[INFO] [1712656209.891868]: Direct Instances: []\n", + "[INFO] [1712656209.892110]: Inverse Restrictions: []\n", + "[INFO] [1712656209.892338]: -------------------\n", + "[INFO] [1712656209.892572]: SOMA.InterrogativeClause \n", + "[INFO] [1712656209.892815]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712656209.893064]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, SOMA.InterrogativeClause, DUL.InformationObject}\n", + "[INFO] [1712656209.893303]: Subclasses: []\n", + "[INFO] [1712656209.893585]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.894083]: Instances: []\n", + "[INFO] [1712656209.894351]: Direct Instances: []\n", + "[INFO] [1712656209.894643]: Inverse Restrictions: []\n", + "[INFO] [1712656209.894883]: -------------------\n", + "[INFO] [1712656209.895116]: SOMA.Introspecting \n", + "[INFO] [1712656209.895356]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712656209.895605]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Introspecting}\n", + "[INFO] [1712656209.895856]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712656209.896141]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.896626]: Instances: []\n", + "[INFO] [1712656209.896937]: Direct Instances: []\n", + "[INFO] [1712656209.897210]: Inverse Restrictions: []\n", + "[INFO] [1712656209.897453]: -------------------\n", + "[INFO] [1712656209.897686]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712656209.897917]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712656209.898156]: Ancestors: {DUL.Region, SOMA.KineticFrictionAttribute, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656209.898407]: Subclasses: []\n", + "[INFO] [1712656209.898693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.899175]: Instances: []\n", + "[INFO] [1712656209.899426]: Direct Instances: []\n", + "[INFO] [1712656209.899684]: Inverse Restrictions: []\n", + "[INFO] [1712656209.899919]: -------------------\n", + "[INFO] [1712656209.900153]: SOMA.KinoDynamicData \n", + "[INFO] [1712656209.900385]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656209.900624]: Ancestors: {DUL.InformationEntity, SOMA.KinoDynamicData, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656209.900878]: Subclasses: []\n", + "[INFO] [1712656209.901173]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.901661]: Instances: []\n", + "[INFO] [1712656209.901908]: Direct Instances: []\n", + "[INFO] [1712656209.902152]: Inverse Restrictions: []\n", + "[INFO] [1712656209.902392]: -------------------\n", + "[INFO] [1712656209.902627]: SOMA.Room \n", + "[INFO] [1712656209.902862]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712656209.903099]: Ancestors: {SOMA.Room, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity}\n", + "[INFO] [1712656209.903339]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712656209.903628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.904118]: Instances: []\n", + "[INFO] [1712656209.904373]: Direct Instances: []\n", + "[INFO] [1712656209.904614]: Inverse Restrictions: []\n", + "[INFO] [1712656209.904862]: -------------------\n", + "[INFO] [1712656209.905101]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712656209.905333]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656209.905578]: Ancestors: {SOMA.Computer_Language, SOMA.KnowledgeRepresentationLanguage, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.905819]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712656209.906098]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.906619]: Instances: []\n", + "[INFO] [1712656209.906884]: Direct Instances: []\n", + "[INFO] [1712656209.907142]: Inverse Restrictions: []\n", + "[INFO] [1712656209.907380]: -------------------\n", + "[INFO] [1712656209.907614]: SOMA.Labeling \n", + "[INFO] [1712656209.907848]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712656209.908102]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing}\n", + "[INFO] [1712656209.908347]: Subclasses: []\n", + "[INFO] [1712656209.908633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656209.909119]: Instances: []\n", + "[INFO] [1712656209.909391]: Direct Instances: []\n", + "[INFO] [1712656209.909646]: Inverse Restrictions: []\n", + "[INFO] [1712656209.909890]: -------------------\n", + "[INFO] [1712656209.910123]: SOMA.Text \n", + "[INFO] [1712656209.910356]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.910604]: Ancestors: {owl.Thing, SOMA.Text}\n", + "[INFO] [1712656209.910848]: Subclasses: []\n", + "[INFO] [1712656209.911137]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656209.911625]: Instances: []\n", + "[INFO] [1712656209.911895]: Direct Instances: []\n", + "[INFO] [1712656209.912248]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712656209.912491]: -------------------\n", + "[INFO] [1712656209.912728]: SOMA.Leaning \n", + "[INFO] [1712656209.912963]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712656209.913211]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Leaning, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.913476]: Subclasses: []\n", + "[INFO] [1712656209.913778]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.914264]: Instances: []\n", + "[INFO] [1712656209.914515]: Direct Instances: []\n", + "[INFO] [1712656209.914775]: Inverse Restrictions: []\n", + "[INFO] [1712656209.915012]: -------------------\n", + "[INFO] [1712656209.915245]: SOMA.PosturalMoving \n", + "[INFO] [1712656209.915470]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712656209.915711]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.915971]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712656209.916257]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.916748]: Instances: []\n", + "[INFO] [1712656209.917019]: Direct Instances: []\n", + "[INFO] [1712656209.917279]: Inverse Restrictions: []\n", + "[INFO] [1712656209.917515]: -------------------\n", + "[INFO] [1712656209.917747]: SOMA.Learning \n", + "[INFO] [1712656209.917977]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712656209.918219]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.918477]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712656209.918769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.919258]: Instances: []\n", + "[INFO] [1712656209.919507]: Direct Instances: []\n", + "[INFO] [1712656209.919749]: Inverse Restrictions: []\n", + "[INFO] [1712656209.919996]: -------------------\n", + "[INFO] [1712656209.920229]: SOMA.Leg \n", + "[INFO] [1712656209.920459]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712656209.920704]: Ancestors: {DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart}\n", + "[INFO] [1712656209.920963]: Subclasses: []\n", + "[INFO] [1712656209.921250]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.921733]: Instances: []\n", + "[INFO] [1712656209.922004]: Direct Instances: []\n", + "[INFO] [1712656209.922296]: Inverse Restrictions: []\n", + "[INFO] [1712656209.922536]: -------------------\n", + "[INFO] [1712656209.922771]: SOMA.LimbMotion \n", + "[INFO] [1712656209.923015]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712656209.923273]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, SOMA.LimbMotion, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656209.923520]: Subclasses: []\n", + "[INFO] [1712656209.923817]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.924302]: Instances: []\n", + "[INFO] [1712656209.924568]: Direct Instances: []\n", + "[INFO] [1712656209.924823]: Inverse Restrictions: []\n", + "[INFO] [1712656209.925057]: -------------------\n", + "[INFO] [1712656209.925295]: SOMA.LinkedObject \n", + "[INFO] [1712656209.925524]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712656209.925765]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.LinkedObject, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.926019]: Subclasses: []\n", + "[INFO] [1712656209.926307]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.926789]: Instances: []\n", + "[INFO] [1712656209.927044]: Direct Instances: []\n", + "[INFO] [1712656209.927378]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712656209.927637]: -------------------\n", + "[INFO] [1712656209.927876]: SOMA.LinkageState \n", + "[INFO] [1712656209.928118]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712656209.928364]: Ancestors: {DUL.Concept, SOMA.LinkageState, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656209.928599]: Subclasses: []\n", + "[INFO] [1712656209.928891]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.929388]: Instances: []\n", + "[INFO] [1712656209.929649]: Direct Instances: []\n", + "[INFO] [1712656209.929899]: Inverse Restrictions: []\n", + "[INFO] [1712656209.930154]: -------------------\n", + "[INFO] [1712656209.930401]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712656209.930651]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712656209.930904]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656209.931156]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712656209.931441]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.931963]: Instances: []\n", + "[INFO] [1712656209.932229]: Direct Instances: []\n", + "[INFO] [1712656209.932482]: Inverse Restrictions: []\n", + "[INFO] [1712656209.932722]: -------------------\n", + "[INFO] [1712656209.932970]: SOMA.SpatialRelationRole \n", + "[INFO] [1712656209.933215]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712656209.933468]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SpatialRelationRole}\n", + "[INFO] [1712656209.933718]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712656209.934003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.934515]: Instances: []\n", + "[INFO] [1712656209.934779]: Direct Instances: []\n", + "[INFO] [1712656209.935035]: Inverse Restrictions: []\n", + "[INFO] [1712656209.935273]: -------------------\n", + "[INFO] [1712656209.935507]: SOMA.LocutionaryAction \n", + "[INFO] [1712656209.935740]: Super classes: [owl.Thing]\n", + "[INFO] [1712656209.935987]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", + "[INFO] [1712656209.936231]: Subclasses: []\n", + "[INFO] [1712656209.936518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656209.937003]: Instances: []\n", + "[INFO] [1712656209.937278]: Direct Instances: []\n", + "[INFO] [1712656209.937531]: Inverse Restrictions: []\n", + "[INFO] [1712656209.937769]: -------------------\n", + "[INFO] [1712656209.938007]: SOMA.LookingAt \n", + "[INFO] [1712656209.938239]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656209.938488]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.LookingAt}\n", + "[INFO] [1712656209.938739]: Subclasses: []\n", + "[INFO] [1712656209.939029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.939508]: Instances: []\n", + "[INFO] [1712656209.939764]: Direct Instances: []\n", + "[INFO] [1712656209.940006]: Inverse Restrictions: []\n", + "[INFO] [1712656209.940238]: -------------------\n", + "[INFO] [1712656209.940483]: SOMA.LookingFor \n", + "[INFO] [1712656209.940722]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712656209.940963]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", + "[INFO] [1712656209.941199]: Subclasses: []\n", + "[INFO] [1712656209.941483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.941981]: Instances: []\n", + "[INFO] [1712656209.942240]: Direct Instances: []\n", + "[INFO] [1712656209.942488]: Inverse Restrictions: []\n", + "[INFO] [1712656209.942722]: -------------------\n", + "[INFO] [1712656209.942954]: SOMA.Lowering \n", + "[INFO] [1712656209.943189]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656209.943449]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.Lowering, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656209.943711]: Subclasses: []\n", + "[INFO] [1712656209.943997]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.944487]: Instances: []\n", + "[INFO] [1712656209.944754]: Direct Instances: []\n", + "[INFO] [1712656209.945015]: Inverse Restrictions: []\n", + "[INFO] [1712656209.945254]: -------------------\n", + "[INFO] [1712656209.945484]: SOMA.PhysicalAction \n", + "[INFO] [1712656209.945713]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712656209.945953]: Ancestors: {SOMA.PhysicalAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656209.946204]: Subclasses: []\n", + "[INFO] [1712656209.946734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.947259]: Instances: []\n", + "[INFO] [1712656209.947528]: Direct Instances: []\n", + "[INFO] [1712656209.947837]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656209.948101]: -------------------\n", + "[INFO] [1712656209.948344]: SOMA.Markup_Language \n", + "[INFO] [1712656209.948578]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712656209.948834]: Ancestors: {SOMA.Markup_Language, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656209.949101]: Subclasses: []\n", + "[INFO] [1712656209.949413]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.949912]: Instances: []\n", + "[INFO] [1712656209.950167]: Direct Instances: []\n", + "[INFO] [1712656209.950410]: Inverse Restrictions: []\n", + "[INFO] [1712656209.950651]: -------------------\n", + "[INFO] [1712656209.950883]: SOMA.Masterful \n", + "[INFO] [1712656209.951112]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712656209.951352]: Ancestors: {SOMA.Masterful, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656209.951592]: Subclasses: []\n", + "[INFO] [1712656209.951881]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.952380]: Instances: []\n", + "[INFO] [1712656209.952637]: Direct Instances: []\n", + "[INFO] [1712656209.952886]: Inverse Restrictions: []\n", + "[INFO] [1712656209.953128]: -------------------\n", + "[INFO] [1712656209.953365]: SOMA.Material \n", + "[INFO] [1712656209.953600]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656209.953839]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Material}\n", + "[INFO] [1712656209.954073]: Subclasses: []\n", + "[INFO] [1712656209.954354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.954846]: Instances: []\n", + "[INFO] [1712656209.955101]: Direct Instances: []\n", + "[INFO] [1712656209.955347]: Inverse Restrictions: []\n", + "[INFO] [1712656209.955575]: -------------------\n", + "[INFO] [1712656209.955810]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712656209.956051]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712656209.956295]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MedicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656209.956533]: Subclasses: []\n", + "[INFO] [1712656209.956826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712656209.957329]: Instances: []\n", + "[INFO] [1712656209.957592]: Direct Instances: []\n", + "[INFO] [1712656209.957841]: Inverse Restrictions: []\n", + "[INFO] [1712656209.958076]: -------------------\n", + "[INFO] [1712656209.958306]: SOMA.Memorizing \n", + "[INFO] [1712656209.958544]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712656209.958795]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Memorizing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.959032]: Subclasses: []\n", + "[INFO] [1712656209.959313]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.959806]: Instances: []\n", + "[INFO] [1712656209.960066]: Direct Instances: []\n", + "[INFO] [1712656209.960309]: Inverse Restrictions: []\n", + "[INFO] [1712656209.960541]: -------------------\n", + "[INFO] [1712656209.960774]: SOMA.MentalAction \n", + "[INFO] [1712656209.961030]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712656209.961275]: Ancestors: {SOMA.MentalAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656209.961516]: Subclasses: []\n", + "[INFO] [1712656209.961804]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.962306]: Instances: []\n", + "[INFO] [1712656209.962569]: Direct Instances: []\n", + "[INFO] [1712656209.962857]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712656209.963096]: -------------------\n", + "[INFO] [1712656209.963336]: SOMA.MeshShape \n", + "[INFO] [1712656209.963625]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712656209.963877]: Ancestors: {SOMA.ShapeRegion, SOMA.MeshShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656209.964121]: Subclasses: []\n", + "[INFO] [1712656209.964412]: Properties: [rdf-schema.isDefinedBy, SOMA.hasFilePath, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.964910]: Instances: []\n", + "[INFO] [1712656209.965180]: Direct Instances: []\n", + "[INFO] [1712656209.965435]: Inverse Restrictions: []\n", + "[INFO] [1712656209.965671]: -------------------\n", + "[INFO] [1712656209.965904]: SOMA.MeshShapeData \n", + "[INFO] [1712656209.966139]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712656209.966398]: Ancestors: {SOMA.MeshShapeData, DUL.InformationEntity, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656209.966645]: Subclasses: []\n", + "[INFO] [1712656209.966937]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.967418]: Instances: []\n", + "[INFO] [1712656209.967685]: Direct Instances: []\n", + "[INFO] [1712656209.967939]: Inverse Restrictions: []\n", + "[INFO] [1712656209.968177]: -------------------\n", + "[INFO] [1712656209.968418]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712656209.968659]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712656209.969094]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656209.969501]: Subclasses: []\n", + "[INFO] [1712656209.969920]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.970536]: Instances: []\n", + "[INFO] [1712656209.970978]: Direct Instances: []\n", + "[INFO] [1712656209.971373]: Inverse Restrictions: []\n", + "[INFO] [1712656209.971748]: -------------------\n", + "[INFO] [1712656209.972112]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712656209.972467]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656209.972849]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656209.973238]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712656209.973568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.974082]: Instances: []\n", + "[INFO] [1712656209.974352]: Direct Instances: []\n", + "[INFO] [1712656209.974622]: Inverse Restrictions: []\n", + "[INFO] [1712656209.974869]: -------------------\n", + "[INFO] [1712656209.975106]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712656209.975338]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712656209.975584]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656209.975837]: Subclasses: []\n", + "[INFO] [1712656209.976130]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.976617]: Instances: []\n", + "[INFO] [1712656209.976875]: Direct Instances: []\n", + "[INFO] [1712656209.977118]: Inverse Restrictions: []\n", + "[INFO] [1712656209.977365]: -------------------\n", + "[INFO] [1712656209.977601]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712656209.977832]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712656209.978075]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656209.978342]: Subclasses: []\n", + "[INFO] [1712656209.978639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.979128]: Instances: []\n", + "[INFO] [1712656209.979388]: Direct Instances: []\n", + "[INFO] [1712656209.979631]: Inverse Restrictions: []\n", + "[INFO] [1712656209.979878]: -------------------\n", + "[INFO] [1712656209.980122]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712656209.980354]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712656209.980603]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656209.980868]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712656209.981171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.981688]: Instances: []\n", + "[INFO] [1712656209.981951]: Direct Instances: []\n", + "[INFO] [1712656209.982205]: Inverse Restrictions: []\n", + "[INFO] [1712656209.982453]: -------------------\n", + "[INFO] [1712656209.982689]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712656209.982922]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712656209.983164]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MetacognitiveControlling, SOMA.MentalTask, DUL.Entity}\n", + "[INFO] [1712656209.983415]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712656209.983758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.984353]: Instances: []\n", + "[INFO] [1712656209.984679]: Direct Instances: []\n", + "[INFO] [1712656209.984988]: Inverse Restrictions: []\n", + "[INFO] [1712656209.985269]: -------------------\n", + "[INFO] [1712656209.985566]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712656209.985852]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712656209.986141]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting, owl.Thing}\n", + "[INFO] [1712656209.986426]: Subclasses: []\n", + "[INFO] [1712656209.986776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.987381]: Instances: []\n", + "[INFO] [1712656209.987693]: Direct Instances: []\n", + "[INFO] [1712656209.987980]: Inverse Restrictions: []\n", + "[INFO] [1712656209.988251]: -------------------\n", + "[INFO] [1712656209.988513]: SOMA.Mixing \n", + "[INFO] [1712656209.988774]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712656209.989068]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Mixing}\n", + "[INFO] [1712656209.989349]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712656209.989665]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.990201]: Instances: []\n", + "[INFO] [1712656209.990499]: Direct Instances: []\n", + "[INFO] [1712656209.990772]: Inverse Restrictions: []\n", + "[INFO] [1712656209.991018]: -------------------\n", + "[INFO] [1712656209.991256]: SOMA.MixingTheory \n", + "[INFO] [1712656209.991508]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712656209.991767]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, SOMA.MixingTheory, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.992017]: Subclasses: []\n", + "[INFO] [1712656209.992308]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656209.992831]: Instances: []\n", + "[INFO] [1712656209.993161]: Direct Instances: []\n", + "[INFO] [1712656209.993439]: Inverse Restrictions: []\n", + "[INFO] [1712656209.993704]: -------------------\n", + "[INFO] [1712656209.993958]: SOMA.MonitoringJointState \n", + "[INFO] [1712656209.994204]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712656209.994453]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, SOMA.Proprioceiving, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.994697]: Subclasses: []\n", + "[INFO] [1712656209.994987]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656209.995503]: Instances: []\n", + "[INFO] [1712656209.995777]: Direct Instances: []\n", + "[INFO] [1712656209.996035]: Inverse Restrictions: []\n", + "[INFO] [1712656209.996294]: -------------------\n", + "[INFO] [1712656209.996550]: SOMA.Proprioceiving \n", + "[INFO] [1712656209.996813]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712656209.997094]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Proprioceiving, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656209.997391]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712656209.997741]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656209.998353]: Instances: []\n", + "[INFO] [1712656209.998680]: Direct Instances: []\n", + "[INFO] [1712656209.999016]: Inverse Restrictions: []\n", + "[INFO] [1712656209.999331]: -------------------\n", + "[INFO] [1712656209.999626]: SOMA.MovingAway \n", + "[INFO] [1712656209.999919]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712656210.000231]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.MovingAway, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656210.000545]: Subclasses: []\n", + "[INFO] [1712656210.000897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.001473]: Instances: []\n", + "[INFO] [1712656210.001770]: Direct Instances: []\n", + "[INFO] [1712656210.002054]: Inverse Restrictions: []\n", + "[INFO] [1712656210.002331]: -------------------\n", + "[INFO] [1712656210.002592]: SOMA.MovingTo \n", + "[INFO] [1712656210.002845]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712656210.003109]: Ancestors: {SOMA.MovingTo, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.003361]: Subclasses: []\n", + "[INFO] [1712656210.003671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.004176]: Instances: []\n", + "[INFO] [1712656210.004427]: Direct Instances: []\n", + "[INFO] [1712656210.004666]: Inverse Restrictions: []\n", + "[INFO] [1712656210.004916]: -------------------\n", + "[INFO] [1712656210.005152]: SOMA.Natural_Language \n", + "[INFO] [1712656210.005388]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712656210.005625]: Ancestors: {SOMA.Natural_Language, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656210.005872]: Subclasses: []\n", + "[INFO] [1712656210.006163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.006646]: Instances: []\n", + "[INFO] [1712656210.006920]: Direct Instances: []\n", + "[INFO] [1712656210.007231]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712656210.007474]: -------------------\n", + "[INFO] [1712656210.007708]: SOMA.Natural_Language_Text \n", + "[INFO] [1712656210.007938]: Super classes: [owl.Thing]\n", + "[INFO] [1712656210.008175]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", + "[INFO] [1712656210.008425]: Subclasses: []\n", + "[INFO] [1712656210.008716]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656210.009204]: Instances: []\n", + "[INFO] [1712656210.009455]: Direct Instances: []\n", + "[INFO] [1712656210.009742]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712656210.009994]: -------------------\n", + "[INFO] [1712656210.010234]: SOMA.Ontology \n", + "[INFO] [1712656210.010467]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712656210.010703]: Ancestors: {owl.Thing, SOMA.Structured_Text, SOMA.Ontology}\n", + "[INFO] [1712656210.010945]: Subclasses: []\n", + "[INFO] [1712656210.011245]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", + "[INFO] [1712656210.011734]: Instances: []\n", + "[INFO] [1712656210.011986]: Direct Instances: []\n", + "[INFO] [1712656210.012273]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712656210.012528]: -------------------\n", + "[INFO] [1712656210.012773]: SOMA.Ontology_Language \n", + "[INFO] [1712656210.013016]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712656210.013266]: Ancestors: {SOMA.Computer_Language, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.FormalLanguage, DUL.Object, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656210.013506]: Subclasses: []\n", + "[INFO] [1712656210.013792]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.014290]: Instances: []\n", + "[INFO] [1712656210.014555]: Direct Instances: []\n", + "[INFO] [1712656210.014861]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712656210.015105]: -------------------\n", + "[INFO] [1712656210.015338]: SOMA.Option \n", + "[INFO] [1712656210.015585]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712656210.015836]: Ancestors: {DUL.Concept, SOMA.Option, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656210.016079]: Subclasses: []\n", + "[INFO] [1712656210.016366]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.016867]: Instances: []\n", + "[INFO] [1712656210.017129]: Direct Instances: []\n", + "[INFO] [1712656210.017375]: Inverse Restrictions: []\n", + "[INFO] [1712656210.017605]: -------------------\n", + "[INFO] [1712656210.017841]: SOMA.Singleton \n", + "[INFO] [1712656210.018073]: Super classes: [owl.Thing]\n", + "[INFO] [1712656210.018318]: Ancestors: {owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712656210.018567]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712656210.018852]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", + "[INFO] [1712656210.019339]: Instances: []\n", + "[INFO] [1712656210.019609]: Direct Instances: []\n", + "[INFO] [1712656210.019865]: Inverse Restrictions: []\n", + "[INFO] [1712656210.020104]: -------------------\n", + "[INFO] [1712656210.020339]: SOMA.Orienting \n", + "[INFO] [1712656210.020575]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712656210.020826]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Orienting, DUL.Task, SOMA.Positioning, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656210.021396]: Subclasses: []\n", + "[INFO] [1712656210.021728]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.022233]: Instances: []\n", + "[INFO] [1712656210.022563]: Direct Instances: []\n", + "[INFO] [1712656210.022856]: Inverse Restrictions: []\n", + "[INFO] [1712656210.023107]: -------------------\n", + "[INFO] [1712656210.023349]: SOMA.Positioning \n", + "[INFO] [1712656210.023593]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712656210.023843]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Positioning, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656210.024115]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712656210.024409]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.024904]: Instances: []\n", + "[INFO] [1712656210.025160]: Direct Instances: []\n", + "[INFO] [1712656210.025405]: Inverse Restrictions: []\n", + "[INFO] [1712656210.025645]: -------------------\n", + "[INFO] [1712656210.025884]: SOMA.Origin \n", + "[INFO] [1712656210.026119]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712656210.026361]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Origin, SOMA.Location}\n", + "[INFO] [1712656210.026597]: Subclasses: []\n", + "[INFO] [1712656210.026888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.027396]: Instances: []\n", + "[INFO] [1712656210.027664]: Direct Instances: []\n", + "[INFO] [1712656210.027956]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712656210.028205]: -------------------\n", + "[INFO] [1712656210.028454]: SOMA.ParkingArms \n", + "[INFO] [1712656210.028692]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712656210.028941]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose, SOMA.AssumingArmPose, SOMA.ParkingArms}\n", + "[INFO] [1712656210.029186]: Subclasses: []\n", + "[INFO] [1712656210.029471]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.029986]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712656210.030301]: Direct Instances: [SOMA.parking_arms]\n", + "[INFO] [1712656210.030568]: Inverse Restrictions: []\n", + "[INFO] [1712656210.030814]: -------------------\n", + "[INFO] [1712656210.031062]: SOMA.PhaseTransition \n", + "[INFO] [1712656210.031305]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712656210.031551]: Ancestors: {DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", + "[INFO] [1712656210.031797]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712656210.032082]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.032603]: Instances: []\n", + "[INFO] [1712656210.032890]: Direct Instances: []\n", + "[INFO] [1712656210.033173]: Inverse Restrictions: []\n", + "[INFO] [1712656210.033437]: -------------------\n", + "[INFO] [1712656210.033713]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712656210.033995]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712656210.034312]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.PhysicalAccessibility, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656210.034623]: Subclasses: []\n", + "[INFO] [1712656210.034992]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.035656]: Instances: []\n", + "[INFO] [1712656210.036022]: Direct Instances: []\n", + "[INFO] [1712656210.036379]: Inverse Restrictions: []\n", + "[INFO] [1712656210.036729]: -------------------\n", + "[INFO] [1712656210.037074]: SOMA.PhysicalBlockage \n", + "[INFO] [1712656210.037409]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712656210.037760]: Ancestors: {DUL.Concept, SOMA.PhysicalBlockage, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", + "[INFO] [1712656210.038098]: Subclasses: []\n", + "[INFO] [1712656210.038494]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.039142]: Instances: []\n", + "[INFO] [1712656210.039491]: Direct Instances: []\n", + "[INFO] [1712656210.039815]: Inverse Restrictions: []\n", + "[INFO] [1712656210.040116]: -------------------\n", + "[INFO] [1712656210.040410]: SOMA.PhysicalExistence \n", + "[INFO] [1712656210.040697]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712656210.041012]: Ancestors: {owl.Thing, SOMA.PhysicalExistence, SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event}\n", + "[INFO] [1712656210.041315]: Subclasses: []\n", + "[INFO] [1712656210.041655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.042233]: Instances: []\n", + "[INFO] [1712656210.042564]: Direct Instances: []\n", + "[INFO] [1712656210.042858]: Inverse Restrictions: []\n", + "[INFO] [1712656210.043133]: -------------------\n", + "[INFO] [1712656210.043392]: SOMA.PhysicalState \n", + "[INFO] [1712656210.043641]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712656210.043898]: Ancestors: {owl.Thing, SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event}\n", + "[INFO] [1712656210.044161]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712656210.044457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656210.044955]: Instances: []\n", + "[INFO] [1712656210.045234]: Direct Instances: []\n", + "[INFO] [1712656210.045499]: Inverse Restrictions: []\n", + "[INFO] [1712656210.045745]: -------------------\n", + "[INFO] [1712656210.045980]: SOMA.PhysicsProcess \n", + "[INFO] [1712656210.046213]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712656210.046447]: Ancestors: {DUL.Process, owl.Thing, SOMA.PhysicsProcess, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656210.046722]: Subclasses: []\n", + "[INFO] [1712656210.047046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656210.047541]: Instances: []\n", + "[INFO] [1712656210.047801]: Direct Instances: []\n", + "[INFO] [1712656210.048048]: Inverse Restrictions: []\n", + "[INFO] [1712656210.048297]: -------------------\n", + "[INFO] [1712656210.048542]: SOMA.PlacingTheory \n", + "[INFO] [1712656210.048816]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712656210.049085]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.PlacingTheory}\n", + "[INFO] [1712656210.049328]: Subclasses: []\n", + "[INFO] [1712656210.049631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656210.050116]: Instances: []\n", + "[INFO] [1712656210.050368]: Direct Instances: []\n", + "[INFO] [1712656210.050606]: Inverse Restrictions: []\n", + "[INFO] [1712656210.050832]: -------------------\n", + "[INFO] [1712656210.051074]: SOMA.PlanarJoint \n", + "[INFO] [1712656210.051312]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712656210.051564]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.PlanarJoint, DUL.Entity}\n", + "[INFO] [1712656210.051811]: Subclasses: []\n", + "[INFO] [1712656210.052108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.052648]: Instances: []\n", + "[INFO] [1712656210.053242]: Direct Instances: []\n", + "[INFO] [1712656210.053741]: Inverse Restrictions: []\n", + "[INFO] [1712656210.054188]: -------------------\n", + "[INFO] [1712656210.054635]: SOMA.PluginRole \n", + "[INFO] [1712656210.055089]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712656210.055503]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, SOMA.PluginRole, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656210.055887]: Subclasses: []\n", + "[INFO] [1712656210.056383]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", + "[INFO] [1712656210.057186]: Instances: []\n", + "[INFO] [1712656210.057575]: Direct Instances: []\n", + "[INFO] [1712656210.058120]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712656210.058505]: -------------------\n", + "[INFO] [1712656210.058873]: SOMA.Pourable \n", + "[INFO] [1712656210.059245]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712656210.059631]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Pourable, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656210.060020]: Subclasses: []\n", + "[INFO] [1712656210.060506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.061400]: Instances: []\n", + "[INFO] [1712656210.061869]: Direct Instances: []\n", + "[INFO] [1712656210.062460]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712656210.062938]: -------------------\n", + "[INFO] [1712656210.063459]: SOMA.PouredObject \n", + "[INFO] [1712656210.063932]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712656210.064340]: Ancestors: {DUL.Concept, SOMA.PouredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656210.064710]: Subclasses: []\n", + "[INFO] [1712656210.065140]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.065998]: Instances: []\n", + "[INFO] [1712656210.066441]: Direct Instances: []\n", + "[INFO] [1712656210.066921]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712656210.067312]: -------------------\n", + "[INFO] [1712656210.067692]: SOMA.Pouring \n", + "[INFO] [1712656210.068053]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712656210.068430]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712656210.068792]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712656210.069243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656210.069969]: Instances: []\n", + "[INFO] [1712656210.070355]: Direct Instances: []\n", + "[INFO] [1712656210.070760]: Inverse Restrictions: []\n", + "[INFO] [1712656210.071116]: -------------------\n", + "[INFO] [1712656210.071454]: SOMA.PouringInto \n", + "[INFO] [1712656210.071780]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712656210.072122]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PouringInto, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712656210.072495]: Subclasses: []\n", + "[INFO] [1712656210.073070]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.073824]: Instances: []\n", + "[INFO] [1712656210.074281]: Direct Instances: []\n", + "[INFO] [1712656210.074661]: Inverse Restrictions: []\n", + "[INFO] [1712656210.075003]: -------------------\n", + "[INFO] [1712656210.075326]: SOMA.PouringOnto \n", + "[INFO] [1712656210.075636]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712656210.075951]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.PouringOnto, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Pouring}\n", + "[INFO] [1712656210.076277]: Subclasses: []\n", + "[INFO] [1712656210.076635]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.077279]: Instances: []\n", + "[INFO] [1712656210.077672]: Direct Instances: []\n", + "[INFO] [1712656210.078065]: Inverse Restrictions: []\n", + "[INFO] [1712656210.078396]: -------------------\n", + "[INFO] [1712656210.078695]: SOMA.Prediction \n", + "[INFO] [1712656210.078977]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712656210.079268]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing}\n", + "[INFO] [1712656210.079558]: Subclasses: []\n", + "[INFO] [1712656210.079861]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.080368]: Instances: []\n", + "[INFO] [1712656210.080654]: Direct Instances: []\n", + "[INFO] [1712656210.080928]: Inverse Restrictions: []\n", + "[INFO] [1712656210.081198]: -------------------\n", + "[INFO] [1712656210.081454]: SOMA.Prospecting \n", + "[INFO] [1712656210.081696]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712656210.081933]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Prospecting}\n", + "[INFO] [1712656210.082181]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712656210.082476]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.083027]: Instances: []\n", + "[INFO] [1712656210.083322]: Direct Instances: []\n", + "[INFO] [1712656210.083589]: Inverse Restrictions: []\n", + "[INFO] [1712656210.083833]: -------------------\n", + "[INFO] [1712656210.084085]: SOMA.Predilection \n", + "[INFO] [1712656210.084352]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712656210.084644]: Ancestors: {SOMA.Predilection, DUL.SocialRelation, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.084932]: Subclasses: []\n", + "[INFO] [1712656210.085269]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656210.085823]: Instances: []\n", + "[INFO] [1712656210.086106]: Direct Instances: []\n", + "[INFO] [1712656210.086380]: Inverse Restrictions: []\n", + "[INFO] [1712656210.086643]: -------------------\n", + "[INFO] [1712656210.086913]: SOMA.PreferenceOrder \n", + "[INFO] [1712656210.087187]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712656210.087479]: Ancestors: {DUL.SocialRelation, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PreferenceOrder}\n", + "[INFO] [1712656210.087756]: Subclasses: []\n", + "[INFO] [1712656210.088079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.orders]\n", + "[INFO] [1712656210.088626]: Instances: []\n", + "[INFO] [1712656210.088921]: Direct Instances: []\n", + "[INFO] [1712656210.089204]: Inverse Restrictions: []\n", + "[INFO] [1712656210.089472]: -------------------\n", + "[INFO] [1712656210.089732]: SOMA.PreferenceRegion \n", + "[INFO] [1712656210.089996]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712656210.090288]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.SocialObjectAttribute, DUL.Entity}\n", + "[INFO] [1712656210.090565]: Subclasses: []\n", + "[INFO] [1712656210.090889]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isRegionFor, rdf-schema.label]\n", + "[INFO] [1712656210.091446]: Instances: []\n", + "[INFO] [1712656210.091739]: Direct Instances: []\n", + "[INFO] [1712656210.092016]: Inverse Restrictions: []\n", + "[INFO] [1712656210.092274]: -------------------\n", + "[INFO] [1712656210.092526]: SOMA.PrismaticJoint \n", + "[INFO] [1712656210.092803]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712656210.093067]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PrismaticJoint}\n", + "[INFO] [1712656210.093328]: Subclasses: []\n", + "[INFO] [1712656210.093627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", + "[INFO] [1712656210.094124]: Instances: []\n", + "[INFO] [1712656210.094389]: Direct Instances: []\n", + "[INFO] [1712656210.094634]: Inverse Restrictions: []\n", + "[INFO] [1712656210.094866]: -------------------\n", + "[INFO] [1712656210.095091]: SOMA.ProcessFlow \n", + "[INFO] [1712656210.095322]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712656210.095571]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ProcessFlow, DUL.Entity}\n", + "[INFO] [1712656210.095812]: Subclasses: []\n", + "[INFO] [1712656210.096096]: Properties: [rdf-schema.isDefinedBy, SOMA.definesProcess, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.096602]: Instances: []\n", + "[INFO] [1712656210.096919]: Direct Instances: []\n", + "[INFO] [1712656210.097233]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712656210.097481]: -------------------\n", + "[INFO] [1712656210.097719]: SOMA.Progression \n", + "[INFO] [1712656210.097964]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712656210.098243]: Ancestors: {DUL.Entity, SOMA.Progression, DUL.Situation, owl.Thing}\n", + "[INFO] [1712656210.098487]: Subclasses: []\n", + "[INFO] [1712656210.098781]: Properties: [rdf-schema.isDefinedBy, DUL.satisfies, rdf-schema.comment]\n", + "[INFO] [1712656210.099264]: Instances: []\n", + "[INFO] [1712656210.099537]: Direct Instances: []\n", + "[INFO] [1712656210.099787]: Inverse Restrictions: []\n", + "[INFO] [1712656210.100025]: -------------------\n", + "[INFO] [1712656210.100255]: SOMA.Protector \n", + "[INFO] [1712656210.100485]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712656210.100742]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.Protector, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656210.101211]: Subclasses: []\n", + "[INFO] [1712656210.101672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.102335]: Instances: []\n", + "[INFO] [1712656210.102772]: Direct Instances: []\n", + "[INFO] [1712656210.103141]: Inverse Restrictions: []\n", + "[INFO] [1712656210.103547]: -------------------\n", + "[INFO] [1712656210.103976]: SOMA.ProximalTheory \n", + "[INFO] [1712656210.104384]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712656210.104759]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, SOMA.ProximalTheory, DUL.Object, DUL.Theory, DUL.SocialObject, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656210.105111]: Subclasses: []\n", + "[INFO] [1712656210.105506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", + "[INFO] [1712656210.106393]: Instances: []\n", + "[INFO] [1712656210.106774]: Direct Instances: []\n", + "[INFO] [1712656210.107128]: Inverse Restrictions: []\n", + "[INFO] [1712656210.107466]: -------------------\n", + "[INFO] [1712656210.107799]: SOMA.PushingAway \n", + "[INFO] [1712656210.108128]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712656210.108487]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.Actuating, SOMA.PushingAway}\n", + "[INFO] [1712656210.108875]: Subclasses: []\n", + "[INFO] [1712656210.109353]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.109970]: Instances: []\n", + "[INFO] [1712656210.110349]: Direct Instances: []\n", + "[INFO] [1712656210.110698]: Inverse Restrictions: []\n", + "[INFO] [1712656210.111028]: -------------------\n", + "[INFO] [1712656210.111349]: SOMA.PushingDown \n", + "[INFO] [1712656210.111667]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712656210.112007]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.PushingDown, SOMA.Actuating}\n", + "[INFO] [1712656210.112346]: Subclasses: []\n", + "[INFO] [1712656210.112727]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.113305]: Instances: []\n", + "[INFO] [1712656210.113653]: Direct Instances: []\n", + "[INFO] [1712656210.113995]: Inverse Restrictions: []\n", + "[INFO] [1712656210.114318]: -------------------\n", + "[INFO] [1712656210.114639]: SOMA.PuttingDown \n", + "[INFO] [1712656210.114956]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712656210.115284]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.PuttingDown, DUL.Entity}\n", + "[INFO] [1712656210.115615]: Subclasses: []\n", + "[INFO] [1712656210.115998]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.116568]: Instances: []\n", + "[INFO] [1712656210.116921]: Direct Instances: []\n", + "[INFO] [1712656210.117267]: Inverse Restrictions: []\n", + "[INFO] [1712656210.117587]: -------------------\n", + "[INFO] [1712656210.117912]: SOMA.QualityTransition \n", + "[INFO] [1712656210.118225]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712656210.118553]: Ancestors: {DUL.Situation, SOMA.QualityTransition, DUL.Transition, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656210.118885]: Subclasses: []\n", + "[INFO] [1712656210.119260]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.119826]: Instances: []\n", + "[INFO] [1712656210.120173]: Direct Instances: []\n", + "[INFO] [1712656210.120504]: Inverse Restrictions: []\n", + "[INFO] [1712656210.120822]: -------------------\n", + "[INFO] [1712656210.121141]: SOMA.Query \n", + "[INFO] [1712656210.121450]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712656210.121778]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.Query, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Message}\n", + "[INFO] [1712656210.122113]: Subclasses: []\n", + "[INFO] [1712656210.122488]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.123051]: Instances: []\n", + "[INFO] [1712656210.123400]: Direct Instances: []\n", + "[INFO] [1712656210.123773]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712656210.124094]: -------------------\n", + "[INFO] [1712656210.124413]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712656210.124727]: Super classes: [owl.Thing]\n", + "[INFO] [1712656210.125062]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", + "[INFO] [1712656210.125394]: Subclasses: []\n", + "[INFO] [1712656210.125769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.126352]: Instances: []\n", + "[INFO] [1712656210.126706]: Direct Instances: []\n", + "[INFO] [1712656210.127052]: Inverse Restrictions: []\n", + "[INFO] [1712656210.127371]: -------------------\n", + "[INFO] [1712656210.127694]: SOMA.QueryEngine \n", + "[INFO] [1712656210.128011]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656210.128336]: Ancestors: {DUL.Concept, SOMA.QueryEngine, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656210.128670]: Subclasses: []\n", + "[INFO] [1712656210.129074]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.129601]: Instances: []\n", + "[INFO] [1712656210.129881]: Direct Instances: []\n", + "[INFO] [1712656210.130150]: Inverse Restrictions: []\n", + "[INFO] [1712656210.130404]: -------------------\n", + "[INFO] [1712656210.130653]: SOMA.Reaching \n", + "[INFO] [1712656210.130962]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712656210.131206]: Ancestors: {SOMA.PhysicalTask, SOMA.Reaching, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.131461]: Subclasses: []\n", + "[INFO] [1712656210.131762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.132253]: Instances: []\n", + "[INFO] [1712656210.132524]: Direct Instances: []\n", + "[INFO] [1712656210.132784]: Inverse Restrictions: []\n", + "[INFO] [1712656210.133024]: -------------------\n", + "[INFO] [1712656210.133262]: SOMA.Retracting \n", + "[INFO] [1712656210.133493]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712656210.133752]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity, SOMA.Retracting}\n", + "[INFO] [1712656210.134001]: Subclasses: []\n", + "[INFO] [1712656210.134286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.134786]: Instances: []\n", + "[INFO] [1712656210.135047]: Direct Instances: []\n", + "[INFO] [1712656210.135297]: Inverse Restrictions: []\n", + "[INFO] [1712656210.135535]: -------------------\n", + "[INFO] [1712656210.135767]: SOMA.Reasoner \n", + "[INFO] [1712656210.136000]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712656210.136251]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656210.136508]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712656210.136793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.137281]: Instances: []\n", + "[INFO] [1712656210.137550]: Direct Instances: []\n", + "[INFO] [1712656210.137808]: Inverse Restrictions: []\n", + "[INFO] [1712656210.138048]: -------------------\n", + "[INFO] [1712656210.138285]: SOMA.RecipientRole \n", + "[INFO] [1712656210.138522]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712656210.138776]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, SOMA.GoalRole, SOMA.RecipientRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656210.139021]: Subclasses: []\n", + "[INFO] [1712656210.139302]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.139777]: Instances: []\n", + "[INFO] [1712656210.140050]: Direct Instances: []\n", + "[INFO] [1712656210.140303]: Inverse Restrictions: []\n", + "[INFO] [1712656210.140539]: -------------------\n", + "[INFO] [1712656210.140787]: SOMA.RecordedEpisode \n", + "[INFO] [1712656210.141025]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712656210.141273]: Ancestors: {DUL.Situation, SOMA.Episode, owl.Thing, DUL.Entity, SOMA.RecordedEpisode}\n", + "[INFO] [1712656210.141528]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712656210.141818]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", + "[INFO] [1712656210.142309]: Instances: []\n", + "[INFO] [1712656210.142564]: Direct Instances: []\n", + "[INFO] [1712656210.142818]: Inverse Restrictions: []\n", + "[INFO] [1712656210.143054]: -------------------\n", + "[INFO] [1712656210.143287]: SOMA.RedColor \n", + "[INFO] [1712656210.143518]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712656210.143752]: Ancestors: {DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, SOMA.RedColor, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656210.144005]: Subclasses: []\n", + "[INFO] [1712656210.144295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.144781]: Instances: []\n", + "[INFO] [1712656210.145058]: Direct Instances: []\n", + "[INFO] [1712656210.145308]: Inverse Restrictions: []\n", + "[INFO] [1712656210.145545]: -------------------\n", + "[INFO] [1712656210.145778]: SOMA.Reification \n", + "[INFO] [1712656210.146013]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712656210.146266]: Ancestors: {SOMA.Reification, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.146511]: Subclasses: []\n", + "[INFO] [1712656210.146797]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", + "[INFO] [1712656210.147286]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712656210.147564]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712656210.148101]: Inverse Restrictions: []\n", + "[INFO] [1712656210.148431]: -------------------\n", + "[INFO] [1712656210.148687]: SOMA.RelationalDatabase \n", + "[INFO] [1712656210.149020]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712656210.149430]: Ancestors: {SOMA.RelationalDatabase, DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656210.149820]: Subclasses: []\n", + "[INFO] [1712656210.150249]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.150864]: Instances: []\n", + "[INFO] [1712656210.151242]: Direct Instances: []\n", + "[INFO] [1712656210.151615]: Inverse Restrictions: []\n", + "[INFO] [1712656210.151899]: -------------------\n", + "[INFO] [1712656210.152254]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712656210.152539]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712656210.152815]: Ancestors: {SOMA.RelationalQueryLanguage, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", + "[INFO] [1712656210.153073]: Subclasses: []\n", + "[INFO] [1712656210.153368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.153858]: Instances: []\n", + "[INFO] [1712656210.154116]: Direct Instances: []\n", + "[INFO] [1712656210.154375]: Inverse Restrictions: []\n", + "[INFO] [1712656210.154616]: -------------------\n", + "[INFO] [1712656210.154849]: SOMA.RelevantPart \n", + "[INFO] [1712656210.155079]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712656210.155314]: Ancestors: {SOMA.Feature, DUL.Object, owl.Thing, DUL.Entity, SOMA.RelevantPart}\n", + "[INFO] [1712656210.155554]: Subclasses: []\n", + "[INFO] [1712656210.155843]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.156331]: Instances: []\n", + "[INFO] [1712656210.156610]: Direct Instances: []\n", + "[INFO] [1712656210.156875]: Inverse Restrictions: []\n", + "[INFO] [1712656210.157124]: -------------------\n", + "[INFO] [1712656210.157366]: SOMA.Remembering \n", + "[INFO] [1712656210.157608]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712656210.157858]: Ancestors: {SOMA.Remembering, owl.Thing}\n", + "[INFO] [1712656210.158104]: Subclasses: []\n", + "[INFO] [1712656210.158388]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.158869]: Instances: []\n", + "[INFO] [1712656210.159144]: Direct Instances: []\n", + "[INFO] [1712656210.159399]: Inverse Restrictions: []\n", + "[INFO] [1712656210.159639]: -------------------\n", + "[INFO] [1712656210.159874]: SOMA.Retrospecting \n", + "[INFO] [1712656210.160108]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712656210.160348]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Retrospecting}\n", + "[INFO] [1712656210.160595]: Subclasses: []\n", + "[INFO] [1712656210.160897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.161386]: Instances: []\n", + "[INFO] [1712656210.161646]: Direct Instances: []\n", + "[INFO] [1712656210.161942]: Inverse Restrictions: []\n", + "[INFO] [1712656210.162197]: -------------------\n", + "[INFO] [1712656210.162440]: SOMA.RemovedObject \n", + "[INFO] [1712656210.162683]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712656210.162936]: Ancestors: {DUL.Concept, SOMA.ExcludedObject, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.RemovedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656210.163182]: Subclasses: []\n", + "[INFO] [1712656210.163484]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.163990]: Instances: []\n", + "[INFO] [1712656210.164248]: Direct Instances: []\n", + "[INFO] [1712656210.164491]: Inverse Restrictions: []\n", + "[INFO] [1712656210.164727]: -------------------\n", + "[INFO] [1712656210.164986]: SOMA.Replanning \n", + "[INFO] [1712656210.165232]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712656210.165481]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, SOMA.Replanning, owl.Thing}\n", + "[INFO] [1712656210.165728]: Subclasses: []\n", + "[INFO] [1712656210.166029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.166521]: Instances: []\n", + "[INFO] [1712656210.166787]: Direct Instances: []\n", + "[INFO] [1712656210.167036]: Inverse Restrictions: []\n", + "[INFO] [1712656210.167270]: -------------------\n", + "[INFO] [1712656210.167511]: SOMA.RevoluteJoint \n", + "[INFO] [1712656210.167763]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712656210.168020]: Ancestors: {SOMA.HingeJoint, SOMA.RevoluteJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656210.168267]: Subclasses: []\n", + "[INFO] [1712656210.168557]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", + "[INFO] [1712656210.169064]: Instances: []\n", + "[INFO] [1712656210.169336]: Direct Instances: []\n", + "[INFO] [1712656210.169588]: Inverse Restrictions: []\n", + "[INFO] [1712656210.169828]: -------------------\n", + "[INFO] [1712656210.170064]: SOMA.Surface \n", + "[INFO] [1712656210.170316]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712656210.170594]: Ancestors: {SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity}\n", + "[INFO] [1712656210.170848]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712656210.171147]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.171652]: Instances: []\n", + "[INFO] [1712656210.171918]: Direct Instances: []\n", + "[INFO] [1712656210.172174]: Inverse Restrictions: []\n", + "[INFO] [1712656210.172413]: -------------------\n", + "[INFO] [1712656210.172663]: SOMA.Rubbing \n", + "[INFO] [1712656210.172947]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712656210.173276]: Ancestors: {SOMA.Rubbing, SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656210.173545]: Subclasses: []\n", + "[INFO] [1712656210.173864]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.174367]: Instances: []\n", + "[INFO] [1712656210.174634]: Direct Instances: []\n", + "[INFO] [1712656210.174885]: Inverse Restrictions: []\n", + "[INFO] [1712656210.175133]: -------------------\n", + "[INFO] [1712656210.175376]: SOMA.Scene \n", + "[INFO] [1712656210.175618]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712656210.175859]: Ancestors: {SOMA.Scene, DUL.Situation, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656210.176098]: Subclasses: []\n", + "[INFO] [1712656210.176388]: Properties: [rdf-schema.isDefinedBy, DUL.satisfies, rdf-schema.comment, DUL.includesEvent]\n", + "[INFO] [1712656210.176928]: Instances: []\n", + "[INFO] [1712656210.177261]: Direct Instances: []\n", + "[INFO] [1712656210.177650]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712656210.177938]: -------------------\n", + "[INFO] [1712656210.178201]: SOMA.SelectedObject \n", + "[INFO] [1712656210.178455]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712656210.178710]: Ancestors: {DUL.Concept, SOMA.SelectedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656210.178960]: Subclasses: []\n", + "[INFO] [1712656210.179266]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.179763]: Instances: []\n", + "[INFO] [1712656210.180033]: Direct Instances: []\n", + "[INFO] [1712656210.180368]: Inverse Restrictions: []\n", + "[INFO] [1712656210.180630]: -------------------\n", + "[INFO] [1712656210.180884]: SOMA.Selecting \n", + "[INFO] [1712656210.181217]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712656210.181555]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.Selecting, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712656210.181852]: Subclasses: []\n", + "[INFO] [1712656210.182171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.182697]: Instances: []\n", + "[INFO] [1712656210.183059]: Direct Instances: []\n", + "[INFO] [1712656210.183344]: Inverse Restrictions: []\n", + "[INFO] [1712656210.183609]: -------------------\n", + "[INFO] [1712656210.183862]: SOMA.SelectingItem \n", + "[INFO] [1712656210.184115]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712656210.184382]: Ancestors: {SOMA.SelectingItem, SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", + "[INFO] [1712656210.184635]: Subclasses: []\n", + "[INFO] [1712656210.184940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", + "[INFO] [1712656210.185447]: Instances: []\n", + "[INFO] [1712656210.185734]: Direct Instances: []\n", + "[INFO] [1712656210.185993]: Inverse Restrictions: []\n", + "[INFO] [1712656210.186239]: -------------------\n", + "[INFO] [1712656210.186481]: SOMA.SelfReflection \n", + "[INFO] [1712656210.186715]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712656210.186962]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MetacognitiveControlling, SOMA.MentalTask, DUL.Entity, SOMA.SelfReflection}\n", + "[INFO] [1712656210.187208]: Subclasses: []\n", + "[INFO] [1712656210.187496]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656210.187978]: Instances: []\n", + "[INFO] [1712656210.188252]: Direct Instances: []\n", + "[INFO] [1712656210.188502]: Inverse Restrictions: []\n", + "[INFO] [1712656210.188746]: -------------------\n", + "[INFO] [1712656210.188986]: SOMA.Serving \n", + "[INFO] [1712656210.189238]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712656210.189506]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Delivering, DUL.SocialObject, SOMA.Serving, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656210.189755]: Subclasses: []\n", + "[INFO] [1712656210.190046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.190527]: Instances: []\n", + "[INFO] [1712656210.190800]: Direct Instances: []\n", + "[INFO] [1712656210.191054]: Inverse Restrictions: []\n", + "[INFO] [1712656210.191289]: -------------------\n", + "[INFO] [1712656210.191520]: SOMA.SettingGripper \n", + "[INFO] [1712656210.191746]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712656210.191982]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.SettingGripper, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose}\n", + "[INFO] [1712656210.192235]: Subclasses: []\n", + "[INFO] [1712656210.192523]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.193005]: Instances: []\n", + "[INFO] [1712656210.193274]: Direct Instances: []\n", + "[INFO] [1712656210.193524]: Inverse Restrictions: []\n", + "[INFO] [1712656210.193759]: -------------------\n", + "[INFO] [1712656210.193988]: SOMA.6DPose \n", + "[INFO] [1712656210.194235]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712656210.194482]: Ancestors: {DUL.Region, SOMA.6DPose, DUL.Abstract, owl.Thing, DUL.Entity, DUL.SpaceRegion}\n", + "[INFO] [1712656210.194721]: Subclasses: []\n", + "[INFO] [1712656210.195004]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasPositionData]\n", + "[INFO] [1712656210.195500]: Instances: []\n", + "[INFO] [1712656210.195762]: Direct Instances: []\n", + "[INFO] [1712656210.196047]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712656210.196289]: -------------------\n", + "[INFO] [1712656210.196542]: SOMA.Sharpness \n", + "[INFO] [1712656210.196808]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656210.197067]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Sharpness, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656210.197314]: Subclasses: []\n", + "[INFO] [1712656210.197608]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.198096]: Instances: []\n", + "[INFO] [1712656210.198368]: Direct Instances: []\n", + "[INFO] [1712656210.198620]: Inverse Restrictions: []\n", + "[INFO] [1712656210.198855]: -------------------\n", + "[INFO] [1712656210.199093]: SOMA.Simulating \n", + "[INFO] [1712656210.199335]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712656210.199579]: Ancestors: {SOMA.DerivingInformation, SOMA.Simulating, SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing}\n", + "[INFO] [1712656210.199820]: Subclasses: []\n", + "[INFO] [1712656210.200108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.200608]: Instances: []\n", + "[INFO] [1712656210.200881]: Direct Instances: []\n", + "[INFO] [1712656210.201142]: Inverse Restrictions: []\n", + "[INFO] [1712656210.201375]: -------------------\n", + "[INFO] [1712656210.201608]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712656210.201838]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712656210.202093]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.Simulation_Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656210.202336]: Subclasses: []\n", + "[INFO] [1712656210.202620]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.203110]: Instances: []\n", + "[INFO] [1712656210.203375]: Direct Instances: []\n", + "[INFO] [1712656210.203621]: Inverse Restrictions: []\n", + "[INFO] [1712656210.203850]: -------------------\n", + "[INFO] [1712656210.204080]: SOMA.Size \n", + "[INFO] [1712656210.204309]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712656210.204562]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Size, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656210.204809]: Subclasses: []\n", + "[INFO] [1712656210.205094]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.205572]: Instances: []\n", + "[INFO] [1712656210.205847]: Direct Instances: []\n", + "[INFO] [1712656210.206104]: Inverse Restrictions: []\n", + "[INFO] [1712656210.206345]: -------------------\n", + "[INFO] [1712656210.206584]: SOMA.Slicing \n", + "[INFO] [1712656210.206818]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712656210.207064]: Ancestors: {SOMA.Cutting, SOMA.Slicing, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712656210.207316]: Subclasses: []\n", + "[INFO] [1712656210.207601]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.208081]: Instances: []\n", + "[INFO] [1712656210.208349]: Direct Instances: []\n", + "[INFO] [1712656210.208599]: Inverse Restrictions: []\n", + "[INFO] [1712656210.208833]: -------------------\n", + "[INFO] [1712656210.209064]: SOMA.Sluggishness \n", + "[INFO] [1712656210.209289]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712656210.209536]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Sluggishness, DUL.Diagnosis}\n", + "[INFO] [1712656210.209782]: Subclasses: []\n", + "[INFO] [1712656210.210063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.210545]: Instances: []\n", + "[INFO] [1712656210.210804]: Direct Instances: []\n", + "[INFO] [1712656210.211047]: Inverse Restrictions: []\n", + "[INFO] [1712656210.211278]: -------------------\n", + "[INFO] [1712656210.211502]: SOMA.SocialState \n", + "[INFO] [1712656210.211738]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712656210.211984]: Ancestors: {SOMA.SocialState, owl.Thing, SOMA.State, DUL.Entity, DUL.Event}\n", + "[INFO] [1712656210.212220]: Subclasses: []\n", + "[INFO] [1712656210.212510]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712656210.213021]: Instances: []\n", + "[INFO] [1712656210.213292]: Direct Instances: []\n", + "[INFO] [1712656210.213582]: Inverse Restrictions: []\n", + "[INFO] [1712656210.213830]: -------------------\n", + "[INFO] [1712656210.214066]: SOMA.Software_Configuration \n", + "[INFO] [1712656210.214309]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712656210.214569]: Ancestors: {DUL.Collection, DUL.Configuration, SOMA.Software_Configuration, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.214818]: Subclasses: []\n", + "[INFO] [1712656210.215112]: Properties: [DUL.isDescribedBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712656210.215599]: Instances: []\n", + "[INFO] [1712656210.215874]: Direct Instances: []\n", + "[INFO] [1712656210.216223]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712656210.216465]: -------------------\n", + "[INFO] [1712656210.216704]: SOMA.SoftwareLibrary \n", + "[INFO] [1712656210.216940]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712656210.217194]: Ancestors: {SOMA.SoftwareLibrary, DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Software, DUL.Entity}\n", + "[INFO] [1712656210.217442]: Subclasses: []\n", + "[INFO] [1712656210.217730]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712656210.218217]: Instances: []\n", + "[INFO] [1712656210.218484]: Direct Instances: []\n", + "[INFO] [1712656210.218736]: Inverse Restrictions: []\n", + "[INFO] [1712656210.218967]: -------------------\n", + "[INFO] [1712656210.219199]: SOMA.SourceMaterialRole \n", + "[INFO] [1712656210.219424]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712656210.219665]: Ancestors: {DUL.Concept, SOMA.SourceMaterialRole, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656210.219914]: Subclasses: []\n", + "[INFO] [1712656210.220205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.220694]: Instances: []\n", + "[INFO] [1712656210.220973]: Direct Instances: []\n", + "[INFO] [1712656210.221229]: Inverse Restrictions: []\n", + "[INFO] [1712656210.221470]: -------------------\n", + "[INFO] [1712656210.221712]: SOMA.SphereShape \n", + "[INFO] [1712656210.221949]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712656210.222204]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.SphereShape}\n", + "[INFO] [1712656210.222610]: Subclasses: []\n", + "[INFO] [1712656210.223017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712656210.223634]: Instances: []\n", + "[INFO] [1712656210.224012]: Direct Instances: []\n", + "[INFO] [1712656210.224393]: Inverse Restrictions: []\n", + "[INFO] [1712656210.224674]: -------------------\n", + "[INFO] [1712656210.225052]: SOMA.Standing \n", + "[INFO] [1712656210.225427]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712656210.225725]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, SOMA.Standing, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656210.226068]: Subclasses: []\n", + "[INFO] [1712656210.226390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.226893]: Instances: []\n", + "[INFO] [1712656210.227161]: Direct Instances: []\n", + "[INFO] [1712656210.227420]: Inverse Restrictions: []\n", + "[INFO] [1712656210.227670]: -------------------\n", + "[INFO] [1712656210.227911]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712656210.228147]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712656210.228387]: Ancestors: {DUL.Region, SOMA.StaticFrictionAttribute, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", + "[INFO] [1712656210.228630]: Subclasses: []\n", + "[INFO] [1712656210.228922]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.229415]: Instances: []\n", + "[INFO] [1712656210.229672]: Direct Instances: []\n", + "[INFO] [1712656210.229928]: Inverse Restrictions: []\n", + "[INFO] [1712656210.230166]: -------------------\n", + "[INFO] [1712656210.230402]: SOMA.Status \n", + "[INFO] [1712656210.230629]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712656210.230867]: Ancestors: {DUL.Concept, SOMA.Status, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.231114]: Subclasses: []\n", + "[INFO] [1712656210.231403]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.231882]: Instances: []\n", + "[INFO] [1712656210.232138]: Direct Instances: []\n", + "[INFO] [1712656210.232423]: Inverse Restrictions: []\n", + "[INFO] [1712656210.232673]: -------------------\n", + "[INFO] [1712656210.232915]: SOMA.StatusFailure \n", + "[INFO] [1712656210.233400]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656210.233818]: Ancestors: {SOMA.StatusFailure, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656210.234248]: Subclasses: []\n", + "[INFO] [1712656210.234705]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.235385]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712656210.235823]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712656210.236203]: Inverse Restrictions: []\n", + "[INFO] [1712656210.236550]: -------------------\n", + "[INFO] [1712656210.236893]: SOMA.StimulusRole \n", + "[INFO] [1712656210.237308]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712656210.237725]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.StimulusRole}\n", + "[INFO] [1712656210.238088]: Subclasses: []\n", + "[INFO] [1712656210.238482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.239064]: Instances: []\n", + "[INFO] [1712656210.239428]: Direct Instances: []\n", + "[INFO] [1712656210.239771]: Inverse Restrictions: []\n", + "[INFO] [1712656210.240100]: -------------------\n", + "[INFO] [1712656210.240419]: SOMA.Stirring \n", + "[INFO] [1712656210.240750]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712656210.241104]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Stirring, SOMA.Mixing}\n", + "[INFO] [1712656210.241446]: Subclasses: []\n", + "[INFO] [1712656210.241829]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712656210.242409]: Instances: []\n", + "[INFO] [1712656210.242773]: Direct Instances: []\n", + "[INFO] [1712656210.243116]: Inverse Restrictions: []\n", + "[INFO] [1712656210.243442]: -------------------\n", + "[INFO] [1712656210.243763]: SOMA.Storage \n", + "[INFO] [1712656210.244082]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712656210.244438]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Storage, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656210.244788]: Subclasses: []\n", + "[INFO] [1712656210.245171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.245750]: Instances: []\n", + "[INFO] [1712656210.246114]: Direct Instances: []\n", + "[INFO] [1712656210.246456]: Inverse Restrictions: []\n", + "[INFO] [1712656210.246785]: -------------------\n", + "[INFO] [1712656210.247103]: SOMA.StructuralDesign \n", + "[INFO] [1712656210.247421]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712656210.247750]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, SOMA.StructuralDesign, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.248089]: Subclasses: []\n", + "[INFO] [1712656210.248469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.249062]: Instances: []\n", + "[INFO] [1712656210.249424]: Direct Instances: []\n", + "[INFO] [1712656210.249762]: Inverse Restrictions: []\n", + "[INFO] [1712656210.250078]: -------------------\n", + "[INFO] [1712656210.250397]: SOMA.TaskInvocation \n", + "[INFO] [1712656210.250717]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712656210.251049]: Ancestors: {DUL.Workflow, DUL.Plan, SOMA.TaskInvocation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.251384]: Subclasses: []\n", + "[INFO] [1712656210.251762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesTask]\n", + "[INFO] [1712656210.252337]: Instances: []\n", + "[INFO] [1712656210.252679]: Direct Instances: []\n", + "[INFO] [1712656210.253119]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712656210.253419]: -------------------\n", + "[INFO] [1712656210.253678]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712656210.253925]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712656210.254175]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656210.254444]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712656210.254744]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.255250]: Instances: []\n", + "[INFO] [1712656210.255523]: Direct Instances: []\n", + "[INFO] [1712656210.255785]: Inverse Restrictions: []\n", + "[INFO] [1712656210.256027]: -------------------\n", + "[INFO] [1712656210.256264]: SOMA.Successfulness \n", + "[INFO] [1712656210.256501]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712656210.256747]: Ancestors: {SOMA.Successfulness, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656210.257012]: Subclasses: []\n", + "[INFO] [1712656210.257312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.257796]: Instances: []\n", + "[INFO] [1712656210.258048]: Direct Instances: []\n", + "[INFO] [1712656210.258286]: Inverse Restrictions: []\n", + "[INFO] [1712656210.258527]: -------------------\n", + "[INFO] [1712656210.258764]: SOMA.SupportState \n", + "[INFO] [1712656210.259011]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712656210.259258]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity, SOMA.SupportState}\n", + "[INFO] [1712656210.259495]: Subclasses: []\n", + "[INFO] [1712656210.259792]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.260282]: Instances: []\n", + "[INFO] [1712656210.260534]: Direct Instances: []\n", + "[INFO] [1712656210.260778]: Inverse Restrictions: []\n", + "[INFO] [1712656210.261032]: -------------------\n", + "[INFO] [1712656210.261277]: SOMA.Supporter \n", + "[INFO] [1712656210.261509]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712656210.261757]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.Supporter, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656210.261991]: Subclasses: []\n", + "[INFO] [1712656210.262283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.262784]: Instances: []\n", + "[INFO] [1712656210.263057]: Direct Instances: []\n", + "[INFO] [1712656210.263360]: Inverse Restrictions: []\n", + "[INFO] [1712656210.263598]: -------------------\n", + "[INFO] [1712656210.263829]: SOMA.SupportTheory \n", + "[INFO] [1712656210.264070]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712656210.264323]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, SOMA.SupportTheory}\n", + "[INFO] [1712656210.264564]: Subclasses: []\n", + "[INFO] [1712656210.264851]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.265341]: Instances: []\n", + "[INFO] [1712656210.265608]: Direct Instances: []\n", + "[INFO] [1712656210.265864]: Inverse Restrictions: []\n", + "[INFO] [1712656210.266099]: -------------------\n", + "[INFO] [1712656210.266330]: SOMA.SupportedObject \n", + "[INFO] [1712656210.266557]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712656210.266806]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.SupportedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656210.267046]: Subclasses: []\n", + "[INFO] [1712656210.267323]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.267802]: Instances: []\n", + "[INFO] [1712656210.268082]: Direct Instances: []\n", + "[INFO] [1712656210.268336]: Inverse Restrictions: []\n", + "[INFO] [1712656210.268568]: -------------------\n", + "[INFO] [1712656210.268800]: SOMA.SymbolicReasoner \n", + "[INFO] [1712656210.269033]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712656210.269275]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.SymbolicReasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", + "[INFO] [1712656210.269526]: Subclasses: []\n", + "[INFO] [1712656210.269813]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.270293]: Instances: []\n", + "[INFO] [1712656210.270543]: Direct Instances: []\n", + "[INFO] [1712656210.270796]: Inverse Restrictions: []\n", + "[INFO] [1712656210.271030]: -------------------\n", + "[INFO] [1712656210.271267]: SOMA.Tapping \n", + "[INFO] [1712656210.271500]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712656210.271737]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Tapping, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656210.271981]: Subclasses: []\n", + "[INFO] [1712656210.272265]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.272747]: Instances: []\n", + "[INFO] [1712656210.273001]: Direct Instances: []\n", + "[INFO] [1712656210.273238]: Inverse Restrictions: []\n", + "[INFO] [1712656210.273483]: -------------------\n", + "[INFO] [1712656210.273722]: SOMA.Taxis \n", + "[INFO] [1712656210.273952]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712656210.274192]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.Taxis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656210.274433]: Subclasses: []\n", + "[INFO] [1712656210.274719]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.275202]: Instances: []\n", + "[INFO] [1712656210.275451]: Direct Instances: []\n", + "[INFO] [1712656210.275693]: Inverse Restrictions: []\n", + "[INFO] [1712656210.275935]: -------------------\n", + "[INFO] [1712656210.276168]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712656210.276404]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712656210.276641]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656210.276886]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712656210.277185]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712656210.277687]: Instances: []\n", + "[INFO] [1712656210.277938]: Direct Instances: []\n", + "[INFO] [1712656210.278187]: Inverse Restrictions: []\n", + "[INFO] [1712656210.278432]: -------------------\n", + "[INFO] [1712656210.278666]: SOMA.Temperature \n", + "[INFO] [1712656210.278903]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712656210.279154]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Temperature, DUL.Quality, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656210.279399]: Subclasses: []\n", + "[INFO] [1712656210.279682]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712656210.280165]: Instances: []\n", + "[INFO] [1712656210.280437]: Direct Instances: []\n", + "[INFO] [1712656210.280735]: Inverse Restrictions: []\n", + "[INFO] [1712656210.280982]: -------------------\n", + "[INFO] [1712656210.281219]: SOMA.TemperatureRegion \n", + "[INFO] [1712656210.281449]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712656210.281704]: Ancestors: {SOMA.TemperatureRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", + "[INFO] [1712656210.281947]: Subclasses: []\n", + "[INFO] [1712656210.282230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.282733]: Instances: []\n", + "[INFO] [1712656210.282998]: Direct Instances: []\n", + "[INFO] [1712656210.283322]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712656210.283569]: -------------------\n", + "[INFO] [1712656210.283803]: SOMA.Tempering \n", + "[INFO] [1712656210.284041]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712656210.284321]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, DUL.Entity, SOMA.Disposition}\n", + "[INFO] [1712656210.284600]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712656210.284978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.285556]: Instances: []\n", + "[INFO] [1712656210.285849]: Direct Instances: []\n", + "[INFO] [1712656210.286126]: Inverse Restrictions: []\n", + "[INFO] [1712656210.286375]: -------------------\n", + "[INFO] [1712656210.286685]: SOMA.ThinkAloud \n", + "[INFO] [1712656210.286949]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712656210.287239]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ThinkAloud, DUL.Entity}\n", + "[INFO] [1712656210.287503]: Subclasses: []\n", + "[INFO] [1712656210.287799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.288290]: Instances: []\n", + "[INFO] [1712656210.288549]: Direct Instances: []\n", + "[INFO] [1712656210.288816]: Inverse Restrictions: []\n", + "[INFO] [1712656210.289058]: -------------------\n", + "[INFO] [1712656210.289292]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712656210.289526]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656210.289773]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.ThinkAloudActionTopic, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656210.290028]: Subclasses: []\n", + "[INFO] [1712656210.290317]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.290808]: Instances: []\n", + "[INFO] [1712656210.291078]: Direct Instances: []\n", + "[INFO] [1712656210.291330]: Inverse Restrictions: []\n", + "[INFO] [1712656210.291562]: -------------------\n", + "[INFO] [1712656210.291791]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712656210.292020]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712656210.292269]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656210.292521]: Subclasses: []\n", + "[INFO] [1712656210.292809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.293298]: Instances: []\n", + "[INFO] [1712656210.293573]: Direct Instances: []\n", + "[INFO] [1712656210.293831]: Inverse Restrictions: []\n", + "[INFO] [1712656210.294068]: -------------------\n", + "[INFO] [1712656210.294300]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712656210.294527]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656210.294772]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudKnowledgeTopic, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656210.295033]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712656210.295322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.295815]: Instances: []\n", + "[INFO] [1712656210.296082]: Direct Instances: []\n", + "[INFO] [1712656210.296335]: Inverse Restrictions: []\n", + "[INFO] [1712656210.296575]: -------------------\n", + "[INFO] [1712656210.296816]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712656210.297049]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656210.297309]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656210.297555]: Subclasses: []\n", + "[INFO] [1712656210.297837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.298315]: Instances: []\n", + "[INFO] [1712656210.298589]: Direct Instances: []\n", + "[INFO] [1712656210.298843]: Inverse Restrictions: []\n", + "[INFO] [1712656210.299080]: -------------------\n", + "[INFO] [1712656210.299310]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712656210.299539]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656210.299796]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656210.300040]: Subclasses: []\n", + "[INFO] [1712656210.300322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.300808]: Instances: []\n", + "[INFO] [1712656210.301085]: Direct Instances: []\n", + "[INFO] [1712656210.301339]: Inverse Restrictions: []\n", + "[INFO] [1712656210.301576]: -------------------\n", + "[INFO] [1712656210.301808]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712656210.302038]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656210.302291]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656210.302538]: Subclasses: []\n", + "[INFO] [1712656210.302827]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.303309]: Instances: []\n", + "[INFO] [1712656210.303573]: Direct Instances: []\n", + "[INFO] [1712656210.303821]: Inverse Restrictions: []\n", + "[INFO] [1712656210.304057]: -------------------\n", + "[INFO] [1712656210.304284]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712656210.304510]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712656210.304748]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ThinkAloudPlanTopic, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656210.305002]: Subclasses: []\n", + "[INFO] [1712656210.305295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.305784]: Instances: []\n", + "[INFO] [1712656210.306034]: Direct Instances: []\n", + "[INFO] [1712656210.306282]: Inverse Restrictions: []\n", + "[INFO] [1712656210.306523]: -------------------\n", + "[INFO] [1712656210.306755]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712656210.306983]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712656210.307221]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", + "[INFO] [1712656210.307459]: Subclasses: []\n", + "[INFO] [1712656210.307748]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.308235]: Instances: []\n", + "[INFO] [1712656210.308505]: Direct Instances: []\n", + "[INFO] [1712656210.308760]: Inverse Restrictions: []\n", + "[INFO] [1712656210.309054]: -------------------\n", + "[INFO] [1712656210.309288]: SOMA.Threshold \n", + "[INFO] [1712656210.309517]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712656210.309753]: Ancestors: {DUL.Concept, SOMA.Threshold, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity}\n", + "[INFO] [1712656210.310002]: Subclasses: []\n", + "[INFO] [1712656210.310284]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.310768]: Instances: []\n", + "[INFO] [1712656210.311017]: Direct Instances: []\n", + "[INFO] [1712656210.311255]: Inverse Restrictions: []\n", + "[INFO] [1712656210.311498]: -------------------\n", + "[INFO] [1712656210.311737]: SOMA.Throwing \n", + "[INFO] [1712656210.311967]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712656210.312211]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Throwing, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", + "[INFO] [1712656210.312461]: Subclasses: []\n", + "[INFO] [1712656210.312750]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.313238]: Instances: []\n", + "[INFO] [1712656210.313499]: Direct Instances: []\n", + "[INFO] [1712656210.313762]: Inverse Restrictions: []\n", + "[INFO] [1712656210.313999]: -------------------\n", + "[INFO] [1712656210.314229]: SOMA.TimeRole \n", + "[INFO] [1712656210.314469]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712656210.314717]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", + "[INFO] [1712656210.314956]: Subclasses: []\n", + "[INFO] [1712656210.315238]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.315737]: Instances: []\n", + "[INFO] [1712656210.315997]: Direct Instances: []\n", + "[INFO] [1712656210.316246]: Inverse Restrictions: []\n", + "[INFO] [1712656210.316480]: -------------------\n", + "[INFO] [1712656210.316708]: SOMA.Transporting \n", + "[INFO] [1712656210.317044]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712656210.317370]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", + "[INFO] [1712656210.317650]: Subclasses: []\n", + "[INFO] [1712656210.317958]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.318457]: Instances: []\n", + "[INFO] [1712656210.318736]: Direct Instances: []\n", + "[INFO] [1712656210.318996]: Inverse Restrictions: []\n", + "[INFO] [1712656210.319239]: -------------------\n", + "[INFO] [1712656210.319471]: SOMA.Triplestore \n", + "[INFO] [1712656210.319703]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712656210.319950]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, SOMA.Triplestore, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", + "[INFO] [1712656210.320205]: Subclasses: []\n", + "[INFO] [1712656210.320493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.320984]: Instances: []\n", + "[INFO] [1712656210.321239]: Direct Instances: []\n", + "[INFO] [1712656210.321494]: Inverse Restrictions: []\n", + "[INFO] [1712656210.321734]: -------------------\n", + "[INFO] [1712656210.321968]: SOMA.Turning \n", + "[INFO] [1712656210.322196]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712656210.322441]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, SOMA.Turning, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", + "[INFO] [1712656210.322693]: Subclasses: []\n", + "[INFO] [1712656210.322987]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.323474]: Instances: []\n", + "[INFO] [1712656210.323728]: Direct Instances: []\n", + "[INFO] [1712656210.323970]: Inverse Restrictions: []\n", + "[INFO] [1712656210.324212]: -------------------\n", + "[INFO] [1712656210.324446]: SOMA.UnavailableSoftware \n", + "[INFO] [1712656210.324676]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712656210.324923]: Ancestors: {SOMA.UnavailableSoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", + "[INFO] [1712656210.325159]: Subclasses: []\n", + "[INFO] [1712656210.325450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.325936]: Instances: []\n", + "[INFO] [1712656210.326185]: Direct Instances: []\n", + "[INFO] [1712656210.326427]: Inverse Restrictions: []\n", + "[INFO] [1712656210.326669]: -------------------\n", + "[INFO] [1712656210.326903]: SOMA.Unsuccessfulness \n", + "[INFO] [1712656210.327132]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712656210.327374]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", + "[INFO] [1712656210.327625]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712656210.327919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712656210.328414]: Instances: []\n", + "[INFO] [1712656210.328682]: Direct Instances: []\n", + "[INFO] [1712656210.328943]: Inverse Restrictions: []\n", + "[INFO] [1712656210.329179]: -------------------\n", + "[INFO] [1712656210.329413]: SOMA.VideoData \n", + "[INFO] [1712656210.329642]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712656210.329881]: Ancestors: {SOMA.VideoData, DUL.InformationEntity, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", + "[INFO] [1712656210.330137]: Subclasses: []\n", + "[INFO] [1712656210.330428]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712656210.330917]: Instances: []\n", + "[INFO] [1712656210.331166]: Direct Instances: []\n", + "[INFO] [1712656210.331405]: Inverse Restrictions: []\n", + "[INFO] [1712656210.331644]: -------------------\n", + "[INFO] [1712656210.331884]: SOMA.3DPosition \n", + "[INFO] [1712656210.332119]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712656210.332356]: Ancestors: {SOMA.3DPosition, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.SpaceRegion}\n", + "[INFO] [1712656210.332603]: Subclasses: []\n", + "[INFO] [1712656210.332897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasPositionData]\n", + "[INFO] [1712656210.333382]: Instances: []\n", + "[INFO] [1712656210.333681]: Direct Instances: []\n", + "[INFO] [1712656210.333947]: Inverse Restrictions: []\n", + "[INFO] [1712656210.334183]: -------------------\n", + "[INFO] [1712656210.334416]: SOMA.OntologyPlaceHolderObject \n", + "[INFO] [1712656210.334648]: Super classes: [SOMA.Container, owl.Thing]\n", + "[INFO] [1712656210.334924]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.OntologyPlaceHolderObject, SOMA.EventAdjacentRole, SOMA.Container, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656210.335174]: Subclasses: [SOMA.Ontoegg_tray]\n", + "[INFO] [1712656210.335452]: Properties: []\n", + "[INFO] [1712656210.335959]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656210.336226]: Direct Instances: []\n", + "[INFO] [1712656210.336473]: Inverse Restrictions: []\n", + "[INFO] [1712656210.336707]: -------------------\n", + "[INFO] [1712656210.336941]: SOMA.OntologyHandheldObject \n", + "[INFO] [1712656210.337170]: Super classes: [owl.Thing]\n", + "[INFO] [1712656210.337430]: Ancestors: {owl.Thing, SOMA.OntologyHandheldObject}\n", + "[INFO] [1712656210.337677]: Subclasses: [SOMA.Ontoegg]\n", + "[INFO] [1712656210.337958]: Properties: []\n", + "[INFO] [1712656210.338485]: Instances: [SOMA.egg_concept]\n", + "[INFO] [1712656210.338763]: Direct Instances: []\n", + "[INFO] [1712656210.339023]: Inverse Restrictions: []\n", + "[INFO] [1712656210.339263]: -------------------\n", + "[INFO] [1712656210.339504]: SOMA.OntologySubject \n", + "[INFO] [1712656210.339740]: Super classes: [owl.Thing]\n", + "[INFO] [1712656210.340075]: Ancestors: {owl.Thing, SOMA.OntologySubject}\n", + "[INFO] [1712656210.340369]: Subclasses: []\n", + "[INFO] [1712656210.340675]: Properties: []\n", + "[INFO] [1712656210.341220]: Instances: [SOMA.subject]\n", + "[INFO] [1712656210.341495]: Direct Instances: [SOMA.subject]\n", + "[INFO] [1712656210.341751]: Inverse Restrictions: []\n", + "[INFO] [1712656210.342006]: -------------------\n", + "[INFO] [1712656210.342304]: SOMA.OntologyObject \n", + "[INFO] [1712656210.342554]: Super classes: [owl.Thing]\n", + "[INFO] [1712656210.342811]: Ancestors: {owl.Thing, SOMA.OntologyObject}\n", + "[INFO] [1712656210.343049]: Subclasses: []\n", + "[INFO] [1712656210.343335]: Properties: []\n", + "[INFO] [1712656210.343853]: Instances: [SOMA.object]\n", + "[INFO] [1712656210.344111]: Direct Instances: [SOMA.object]\n", + "[INFO] [1712656210.344359]: Inverse Restrictions: []\n", + "[INFO] [1712656210.344590]: -------------------\n", + "[INFO] [1712656210.344834]: SOMA.Ontoegg \n", + "[INFO] [1712656210.345069]: Super classes: [SOMA.OntologyHandheldObject, owl.Thing]\n", + "[INFO] [1712656210.345324]: Ancestors: {SOMA.Ontoegg, owl.Thing, SOMA.OntologyHandheldObject}\n", + "[INFO] [1712656210.345560]: Subclasses: []\n", + "[INFO] [1712656210.345828]: Properties: []\n", + "[INFO] [1712656210.346330]: Instances: [SOMA.egg_concept]\n", + "[INFO] [1712656210.346594]: Direct Instances: [SOMA.egg_concept]\n", + "[INFO] [1712656210.346846]: Inverse Restrictions: []\n", + "[INFO] [1712656210.347079]: -------------------\n", + "[INFO] [1712656210.347310]: SOMA.Ontoegg_tray \n", + "[INFO] [1712656210.347553]: Super classes: [SOMA.OntologyPlaceHolderObject, owl.Thing]\n", + "[INFO] [1712656210.347821]: Ancestors: {DUL.Concept, SOMA.Ontoegg_tray, DUL.Entity, SOMA.ResourceRole, SOMA.OntologyPlaceHolderObject, SOMA.EventAdjacentRole, SOMA.Container, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", + "[INFO] [1712656210.348063]: Subclasses: []\n", + "[INFO] [1712656210.348331]: Properties: []\n", + "[INFO] [1712656210.349006]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656210.349386]: Direct Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712656210.349652]: Inverse Restrictions: []\n", + "[INFO] [1712656210.349891]: -------------------\n", + "[INFO] [1712656210.350124]: SOMA.DynamicOntologyConcept \n", + "[INFO] [1712656210.350372]: Super classes: [owl.Thing]\n", + "[INFO] [1712656210.350671]: Ancestors: {owl.Thing, SOMA.DynamicOntologyConcept}\n", + "[INFO] [1712656210.350928]: Subclasses: []\n", + "[INFO] [1712656210.351207]: Properties: []\n", + "[INFO] [1712656210.351749]: Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", + "[INFO] [1712656210.352041]: Direct Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", + "[INFO] [1712656210.352310]: Inverse Restrictions: []\n" ] }, { @@ -11095,8 +11095,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:00.899242Z", - "start_time": "2024-04-08T20:56:00.887049Z" + "end_time": "2024-04-09T09:50:10.371357Z", + "start_time": "2024-04-09T09:50:10.360910Z" } }, "outputs": [ @@ -11189,8 +11189,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:00.912759Z", - "start_time": "2024-04-08T20:56:00.899906Z" + "end_time": "2024-04-09T09:50:10.385254Z", + "start_time": "2024-04-09T09:50:10.371791Z" } }, "outputs": [], @@ -11216,8 +11216,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:00.927669Z", - "start_time": "2024-04-08T20:56:00.913249Z" + "end_time": "2024-04-09T09:50:10.404996Z", + "start_time": "2024-04-09T09:50:10.385729Z" } }, "outputs": [ @@ -11225,15 +11225,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712609760.921910]: -------------------\n", - "[INFO] [1712609760.922644]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712609760.923063]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712609760.923468]: Ancestors: {SOMA-HOME.CustomContainerConcept, SOMA.DesignedContainer, DUL.Entity, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712609760.923955]: Subclasses: []\n", - "[INFO] [1712609760.924511]: Properties: []\n", - "[INFO] [1712609760.925414]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712609760.925849]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712609760.926282]: Inverse Restrictions: []\n", + "[INFO] [1712656210.400535]: -------------------\n", + "[INFO] [1712656210.401217]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712656210.401553]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712656210.401861]: Ancestors: {SOMA-HOME.CustomContainerConcept, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712656210.402154]: Subclasses: []\n", + "[INFO] [1712656210.402501]: Properties: []\n", + "[INFO] [1712656210.403068]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712656210.403376]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712656210.403667]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: False\n" ] } @@ -11257,8 +11257,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:00.941967Z", - "start_time": "2024-04-08T20:56:00.928124Z" + "end_time": "2024-04-09T09:50:10.421049Z", + "start_time": "2024-04-09T09:50:10.405612Z" } }, "outputs": [ @@ -11266,15 +11266,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712609760.937880]: -------------------\n", - "[INFO] [1712609760.938408]: SOMA.Cup \n", - "[INFO] [1712609760.938735]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712609760.939040]: Ancestors: {DUL.Entity, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalArtifact, DUL.Object, SOMA.Crockery, DUL.PhysicalObject, owl.Thing, SOMA.Tableware, SOMA.Cup}\n", - "[INFO] [1712609760.939314]: Subclasses: []\n", - "[INFO] [1712609760.939662]: Properties: [rdf-schema.comment, SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy]\n", - "[INFO] [1712609760.940208]: Instances: []\n", - "[INFO] [1712609760.940504]: Direct Instances: []\n", - "[INFO] [1712609760.940806]: Inverse Restrictions: []\n" + "[INFO] [1712656210.416254]: -------------------\n", + "[INFO] [1712656210.416954]: SOMA.Cup \n", + "[INFO] [1712656210.417386]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712656210.417790]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.Cup}\n", + "[INFO] [1712656210.418179]: Subclasses: []\n", + "[INFO] [1712656210.418587]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712656210.419123]: Instances: []\n", + "[INFO] [1712656210.419400]: Direct Instances: []\n", + "[INFO] [1712656210.419657]: Inverse Restrictions: []\n" ] } ], @@ -11302,8 +11302,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:00.955660Z", - "start_time": "2024-04-08T20:56:00.942399Z" + "end_time": "2024-04-09T09:50:10.432780Z", + "start_time": "2024-04-09T09:50:10.421648Z" } }, "outputs": [], @@ -11331,8 +11331,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:00.972120Z", - "start_time": "2024-04-08T20:56:00.956139Z" + "end_time": "2024-04-09T09:50:10.443583Z", + "start_time": "2024-04-09T09:50:10.433439Z" } }, "outputs": [ @@ -11340,7 +11340,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[]\n", + "[]\n", "['another_custom_container']\n" ] } @@ -11375,8 +11375,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:00.992600Z", - "start_time": "2024-04-08T20:56:00.972582Z" + "end_time": "2024-04-09T09:50:10.457870Z", + "start_time": "2024-04-09T09:50:10.444165Z" } }, "outputs": [], @@ -11415,8 +11415,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.008041Z", - "start_time": "2024-04-08T20:56:00.993121Z" + "end_time": "2024-04-09T09:50:10.473295Z", + "start_time": "2024-04-09T09:50:10.458483Z" } }, "outputs": [], @@ -11446,8 +11446,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.021894Z", - "start_time": "2024-04-08T20:56:01.008553Z" + "end_time": "2024-04-09T09:50:10.487382Z", + "start_time": "2024-04-09T09:50:10.473958Z" } }, "outputs": [], @@ -11491,8 +11491,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.031718Z", - "start_time": "2024-04-08T20:56:01.023017Z" + "end_time": "2024-04-09T09:50:10.497725Z", + "start_time": "2024-04-09T09:50:10.488555Z" } }, "outputs": [ @@ -11546,8 +11546,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.046414Z", - "start_time": "2024-04-08T20:56:01.032133Z" + "end_time": "2024-04-09T09:50:10.512151Z", + "start_time": "2024-04-09T09:50:10.498343Z" } }, "outputs": [ @@ -11587,8 +11587,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.510500Z", - "start_time": "2024-04-08T20:56:01.047217Z" + "end_time": "2024-04-09T09:50:11.054825Z", + "start_time": "2024-04-09T09:50:10.512792Z" } }, "cell_type": "code", @@ -11612,6 +11612,7 @@ "name": "stderr", "output_type": "stream", "text": [ + "Scalar element defined multiple times: limit\n", "Scalar element defined multiple times: limit\n" ] } @@ -11626,8 +11627,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.626506Z", - "start_time": "2024-04-08T20:56:01.511111Z" + "end_time": "2024-04-09T09:50:11.135066Z", + "start_time": "2024-04-09T09:50:11.055514Z" } }, "cell_type": "code", @@ -11643,15 +11644,7 @@ " ontology_property_parent_class=soma.affordsBearer,\n", " ontology_inverse_property_parent_class=soma.isBearerAffordedBy)" ], - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Scalar element defined multiple times: limit\n" - ] - } - ], + "outputs": [], "execution_count": 17 }, { @@ -11662,8 +11655,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.716532Z", - "start_time": "2024-04-08T20:56:01.627121Z" + "end_time": "2024-04-09T09:50:11.219495Z", + "start_time": "2024-04-09T09:50:11.135847Z" } }, "cell_type": "code", @@ -11691,8 +11684,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.739006Z", - "start_time": "2024-04-08T20:56:01.717113Z" + "end_time": "2024-04-09T09:50:11.237716Z", + "start_time": "2024-04-09T09:50:11.220130Z" } }, "cell_type": "code", @@ -11712,8 +11705,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.749328Z", - "start_time": "2024-04-08T20:56:01.739888Z" + "end_time": "2024-04-09T09:50:11.247494Z", + "start_time": "2024-04-09T09:50:11.238467Z" } }, "cell_type": "code", @@ -11740,8 +11733,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:56:01.763695Z", - "start_time": "2024-04-08T20:56:01.749777Z" + "end_time": "2024-04-09T09:50:11.262286Z", + "start_time": "2024-04-09T09:50:11.248124Z" } }, "cell_type": "code", @@ -11768,8 +11761,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:56:10.455164Z", - "start_time": "2024-04-08T20:56:01.764141Z" + "end_time": "2024-04-09T09:50:19.980432Z", + "start_time": "2024-04-09T09:50:11.262883Z" } }, "cell_type": "code", @@ -11809,8 +11802,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712609763\n", - " nsecs: 264731168\n", + " secs: 1712656212\n", + " nsecs: 765562534\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -11844,8 +11837,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-08T20:56:10.506937Z", - "start_time": "2024-04-08T20:56:10.456806Z" + "end_time": "2024-04-09T09:50:20.033324Z", + "start_time": "2024-04-09T09:50:19.981960Z" } }, "cell_type": "code", @@ -11855,7 +11848,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712609770.505111]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712656220.031394]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index d3c4b9784..318279246 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -1,7 +1,7 @@ import inspect import logging from pathlib import Path -from typing import Optional, List, Type, Callable +from typing import Callable, Dict, List, Optional, Type import rospy @@ -20,6 +20,8 @@ SOMA_HOME_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA-HOME.owl" SOMA_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA.owl" +SOMA_ONTOLOGY_NAMESPACE = "SOMA" +DUL_ONTOLOGY_NAMESPACE = "DUL" class OntologyManager(object, metaclass=Singleton): @@ -28,13 +30,16 @@ class OntologyManager(object, metaclass=Singleton): Attributes ---------- + ontologies: Dict[str, owlready2.Ontology] + A dictionary of OWL ontologies, keyed by ontology name (same as its namespace name), eg. 'SOMA' + main_ontology: owlready2.Ontology The main ontology instance as the result of an ontology loading operation main_ontology_iri: str Ontology IRI (Internationalized Resource Identifier), either a URL to a remote OWL file or the full name path of a local one - main_ontology_namespace: str + main_ontology_namespace: owlready2.Namespace Namespace of the main ontology soma: owlready2.Ontology @@ -67,46 +72,23 @@ def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = f"{P rospy.logerr("owlready2 is not imported!") return + self.ontologies: Dict[str, owlready2.Ontology] = {} self.main_ontology: owlready2.Ontology = None self.soma: owlready2.Ontology = None self.dul: owlready2.Ontology = None self.ontology_world: owlready2.World = None self.main_ontology_iri: str = main_ontology_iri - self.main_ontology_namespace: str = None + self.main_ontology_namespace: owlready2.Namespace = None # Create an ontology world with parallelized file parsing enabled - main_ontology_name = Path(main_ontology_iri).stem - self.ontology_world = World(filename=f"{ontology_search_path}/{main_ontology_name}.sqlite3", exclusive=False, - enable_thread_parallelism=True) - - ontology_ = self.ontology_world.get_ontology(main_ontology_iri).load(reload_if_newer=True) - if ontology_.loaded: - # So any check for `main_ontology` later if passed means it has been already loaded - self.main_ontology = ontology_ - self.main_ontology_namespace = owlready2.get_namespace(ontology_.base_iri).name - - rospy.loginfo( - f'Main Ontology [{self.main_ontology.base_iri}]\'s name: {self.main_ontology.name} has been loaded') - rospy.loginfo(f'Main Ontology namespace: {self.main_ontology_namespace}') - rospy.loginfo(f'Loaded ontologies:') - self.browse_ontologies(condition=None, func=lambda ontology__: rospy.loginfo(ontology__.base_iri)) - - # Search for SOMA & DUL from imported sub-ontologies - def is_matching_ontology(ontology__, ontology_name): - return owlready2.get_namespace(ontology__.base_iri).name.lower() == ontology_name.lower() + self.ontology_world = World(filename=f"{ontology_search_path}/{Path(main_ontology_iri).stem}.sqlite3", + exclusive=False, enable_thread_parallelism=True) - def set_soma(ontology__, ontology_name): - self.soma = ontology__ - - def set_dul(ontology__, ontology_name): - self.dul = ontology__ - - self.browse_ontologies(condition=is_matching_ontology, func=set_soma, ontology_name="SOMA") - self.browse_ontologies(condition=is_matching_ontology, func=set_dul, ontology_name="DUL") - else: - rospy.logerr(f"Ontology [{ontology_.base_iri}]\'s name: {ontology_.name} failed being loaded") - return + self.main_ontology, self.main_ontology_namespace = self.load_ontology(main_ontology_iri) + if self.main_ontology.loaded: + self.soma = self.ontologies[SOMA_ONTOLOGY_NAMESPACE] + self.dul = self.ontologies[DUL_ONTOLOGY_NAMESPACE] @staticmethod def print_ontology_class(ontology_class): @@ -125,32 +107,62 @@ def print_ontology_class(ontology_class): rospy.loginfo(f"Direct Instances: {list(ontology_class.direct_instances())}") rospy.loginfo(f"Inverse Restrictions: {list(ontology_class.inverse_restrictions())}") - def browse_ontologies(self, condition: Optional[Callable] = None, func: Optional[Callable] = None, **kwargs): + def load_ontology(self, ontology_iri): + """ + Load an ontology from an IRI + :param ontology_iri: An ontology IRI + :return: A tuple including an ontology instance & its namespace + """ + ontology = self.ontology_world.get_ontology(ontology_iri).load(reload_if_newer=True) + ontology_namespace = owlready2.get_namespace(ontology_iri) + if ontology.loaded: + rospy.loginfo( + f'Ontology [{ontology.base_iri}]\'s name: {ontology.name} has been loaded') + rospy.loginfo(f'- main namespace: {ontology_namespace.name}') + rospy.loginfo(f'- loaded ontologies:') + + def fetch_ontology(ontology__): + self.ontologies[ontology__.name] = ontology__ + rospy.loginfo(ontology__.base_iri) + + self.browse_ontologies(ontology, condition=None, func=lambda ontology__: fetch_ontology(ontology__)) + return ontology, ontology_namespace + else: + rospy.logerr(f"Ontology [{ontology.base_iri}]\'s name: {ontology.name} failed being loaded") + return None, None + + @staticmethod + def browse_ontologies(ontology: owlready2.Ontology, + condition: Optional[Callable] = None, func: Optional[Callable] = None, **kwargs): """ Browse the loaded ontologies (including the main and imported ones), doing operations based on a condition. + :param ontology: An ontology instance as the result of ontology loading :param condition: a Callable condition that if not None needs to be passed before doing operations, otherwise just always carry the operations :param func: a Callable specifying the operations to perform on all the loaded ontologies if condition is None, otherwise only the first ontology which meets the condition """ - if self.main_ontology is None: - rospy.logerr("Main ontology has not been loaded!") + if ontology is None: + rospy.logerr(f"Ontology {ontology=} is None!") + return + elif not ontology.loaded: + rospy.logerr(f"Ontology {ontology} was not loaded!") return - do_func = func is not None + will_do_func = func is not None # No condition: Do func for all ontologies if condition is None: - if do_func: - func(self.main_ontology, **kwargs) - for sub_onto in self.main_ontology.get_imported_ontologies(): + if will_do_func: + func(ontology, **kwargs) + for sub_onto in ontology.get_imported_ontologies(): func(sub_onto, **kwargs) # Else: Only do func for the first ontology which meets the condition - elif condition(self.main_ontology, **kwargs): - if do_func: func(self.main_ontology, **kwargs) + elif condition(ontology, **kwargs): + if will_do_func: func(ontology, **kwargs) else: - for sub_onto in self.main_ontology.get_imported_ontologies(): - if condition(sub_onto, **kwargs) and do_func: + for sub_onto in ontology.get_imported_ontologies(): + if condition(sub_onto, **kwargs) and will_do_func: func(sub_onto, **kwargs) break @@ -281,11 +293,11 @@ def get_ontology_classes_by_namespace(self, ontology_namespace: str) -> List[ :return: A list of the ontology classes under the given namespace """ - def is_matching_ontology_namespace(ontology_class: Type[owlready2.Thing], main_ontology_namespace: str): - return ontology_class.namespace.name == main_ontology_namespace + def is_matching_ontology_namespace(ontology_class: Type[owlready2.Thing], ontology_namespace_: str): + return ontology_class.namespace.name == ontology_namespace_ return self.get_ontology_classes_by_condition(condition=is_matching_ontology_namespace, - main_ontology_namespace=ontology_namespace) + ontology_namespace_=ontology_namespace) def get_ontology_classes_by_subname(self, class_subname: str) -> List[Type[owlready2.Thing]]: """ From 1e4ab0452b0fa412e83b674968b0f8fd8019cc26 Mon Sep 17 00:00:00 2001 From: duc than Date: Tue, 9 Apr 2024 13:55:08 +0200 Subject: [PATCH 13/26] OntologyConceptHolder typehint warn if owlready2 is not installed --- doc/source/remarks.rst | 9 +- examples/ontology.ipynb | 19995 +++++++++--------- src/pycram/designators/object_designator.py | 8 +- src/pycram/ontology/ontology.py | 14 +- src/pycram/ontology/ontology_common.py | 45 +- test/test_ontology.py | 56 +- 6 files changed, 10088 insertions(+), 10039 deletions(-) diff --git a/doc/source/remarks.rst b/doc/source/remarks.rst index 8c88d48d4..902ae7b1b 100644 --- a/doc/source/remarks.rst +++ b/doc/source/remarks.rst @@ -16,9 +16,16 @@ To fix this issue one has to execute python -m ipykernel install --user --name --display-name "" +, eg. + +.. code-block:: shell + + python -m ipykernel install --user --name pycram --display-name "pycram" + in your terminal. --name is the name of your virtual environment and --display-name is the name -that will display in the drop down menu of jupyter. After that, select the correct Python interpreter kernel and +that will display in the drop down menu of jupyter. After that, select the correct Python interpreter kernel (``pycram``) and everything should work now. +Refer `here `_ for details. Adding Notebooks to the Documentation ===================================== diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 321ce8bdd..9b50ee8a2 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -5,7 +5,7 @@ "source": [ "# Ontology interface\n", "\n", - "This tutorial demonstrates basic usages of __owlready2__ API for ontology manipulation. Notably, new ontology concept triple classes (subject, predicate, object) will be dynamically created, with optional existing ontology parent classes that are loaded from an OWL ontology. Then through the interconnected relations specified in triples, designators and their corresponding ontology concepts can be double-way queried for certain purposes, eg. making a robot motion plan. " + "This tutorial demonstrates basic usages of __owlready2__ API for ontology manipulation. Notably, new ontology concept triple classes (subject, predicate, object) will be dynamically created, with optional existing ontology parent classes that are loaded from an OWL ontology. Then through the interconnected relations specified in triples, designators and their corresponding ontology concepts can be double-way queried for input information in certain tasks, eg. making a robot motion plan. " ], "metadata": { "collapsed": false @@ -14,16 +14,16 @@ { "cell_type": "code", "source": [ - "from pathlib import Path \n", - "from typing import Optional, List, Type\n", + "from pathlib import Path\n", + "from typing import Type, TYPE_CHECKING\n", "import pycram\n", "from pycram.designator import ObjectDesignatorDescription" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:06.877715Z", - "start_time": "2024-04-09T09:50:06.282445Z" + "end_time": "2024-04-09T19:18:10.925720Z", + "start_time": "2024-04-09T19:18:10.426170Z" } }, "outputs": [ @@ -63,15 +63,15 @@ " from owlready2 import *\n", "except ImportError:\n", " owlready2 = None\n", - " logging.warn(\"Could not import owlready2, OWL Ontology Manager could not be initialized\")\n", + " logging.error(\"Could not import owlready2, Ontology Manager could not be initialized!\")\n", "\n", - "logging.getLogger().setLevel(logging.DEBUG)" + "logging.getLogger().setLevel(logging.INFO)" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:06.884781Z", - "start_time": "2024-04-09T09:50:06.878514Z" + "end_time": "2024-04-09T19:18:10.937267Z", + "start_time": "2024-04-09T19:18:10.928050Z" } }, "outputs": [], @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:07.006187Z", - "start_time": "2024-04-09T09:50:06.885311Z" + "end_time": "2024-04-09T19:18:11.064394Z", + "start_time": "2024-04-09T19:18:10.937703Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712656207.002409]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712656207.003301]: - main namespace: SOMA-HOME\n", - "[INFO] [1712656207.003760]: - loaded ontologies:\n", - "[INFO] [1712656207.004045]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712656207.004303]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712656207.004559]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712690291.060597]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712690291.061361]: - main namespace: SOMA-HOME\n", + "[INFO] [1712690291.061769]: - loaded ontologies:\n", + "[INFO] [1712690291.062137]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712690291.062499]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712690291.062862]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -131,12 +131,19 @@ { "cell_type": "markdown", "source": [ - "## Ontology Concept class\n", - "A built-in class named __`OntologyConcept`__, inheriting from __`owlready2.Thing`__, is created when `OntologyManager` is initialized, as the super class for all dynamically made ontology classes later on. It is then accessed by __`ontology_manager.main_ontology.OntologyConcept`__\n", + "## Ontology Concept Holder\n", + "__`OntologyConceptHolder`__ class, encapsulating an __`owlready2.Thing`__ instance, is used primarily as the binding connection between that ontology concept (of `owlready2.Thing` type) to designators in PyCram. We make it that way, instead of making the custom concept class type inherit from `owlready2.Thing` for these reasons:\n", "\n", - "Notable members:\n", - "- `designators`: a list of `DesignatorDescription` instances associated with the ontology concept\n", - "- `resolve`: a `Callable` returning a list of `DesignatorDescription`. It is used to provide which specific designators inferred from the ontology concept. Most typically, they are `designators`, but can be only a subset of it given certain conditions. " + "- `owlready2` API does not have very robust support for client classes inheriting from theirs, particularly in our case, where classes like `DesignatorDescription` have their `metaclass` as `ABCMeta`, while it is `EntityClass` that is the metaclass used for basically all concepts (classes, properties) in `owlready2`. Since those two metaclasses just bear no relationship, for the inheritance to work, the only way is to create a child metaclass with both of those as parents, however the second reason below will point out it's not worth the effort.\n", + "\n", + "\n", + "- Essentially, we will have new ontology concept classes created dynamically, if their types inherit from `owlready2.Thing`, all custom-type attributes, which are defined in child classes and having types known only by PyCram, will apparently be not saved back into the ontology by `owlready2` api. Then the next time the ontology is loaded, those same dynamic classes will not be created anymore but without those attributes visible anymore, causing running error.\n", + "As such, in short, an ontology concept class, either newly created on the fly or loaded from ontologies, can be always `owlready2.Thing` to make itself reusable upon reloading.\n", + "\n", + "Notable attributes:\n", + "- `ontology_concept`: An ontology concept of `owlready2.Thing` type, either dynamically created, or loaded from an ontology\n", + "- `designators`: a list of `DesignatorDescription` instances associated with `ontology_concept`\n", + "- `resolve`: a `Callable` typically returning a list of `DesignatorDescription` as specific designators, like `designators` or its subset, inferred from the ontology concept. In fact, it can be resolved to anything else relevant, up to the caller." ], "metadata": { "collapsed": false @@ -165,8 +172,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.360125Z", - "start_time": "2024-04-09T09:50:07.006878Z" + "end_time": "2024-04-09T19:18:14.379122Z", + "start_time": "2024-04-09T19:18:11.065146Z" } }, "outputs": [ @@ -174,9897 +181,9897 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712656207.127047]: -------------------\n", - "[INFO] [1712656207.128073]: SOMA.DesignedContainer \n", - "[INFO] [1712656207.128598]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712656207.129241]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.129774]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712656207.130342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712656207.188885]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712656207.189859]: Direct Instances: []\n", - "[INFO] [1712656207.190473]: Inverse Restrictions: []\n", - "[INFO] [1712656207.192216]: -------------------\n", - "[INFO] [1712656207.192697]: DUL.PhysicalObject \n", - "[INFO] [1712656207.193218]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656207.193636]: Ancestors: {DUL.Object, DUL.Entity, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712656207.194052]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712656207.194525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.195542]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712656207.195909]: Direct Instances: []\n", - "[INFO] [1712656207.201609]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712656207.202125]: -------------------\n", - "[INFO] [1712656207.202554]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712656207.202980]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656207.203378]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656207.204038]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712656207.204571]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.205712]: Instances: []\n", - "[INFO] [1712656207.206279]: Direct Instances: []\n", - "[INFO] [1712656207.206787]: Inverse Restrictions: []\n", - "[INFO] [1712656207.207264]: -------------------\n", - "[INFO] [1712656207.207658]: DUL.PhysicalObject \n", - "[INFO] [1712656207.208049]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656207.208490]: Ancestors: {DUL.Object, DUL.Entity, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712656207.208920]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712656207.209446]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.210652]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712656207.211106]: Direct Instances: []\n", - "[INFO] [1712656207.216467]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712656207.216970]: -------------------\n", - "[INFO] [1712656207.217282]: DUL.PhysicalObject \n", - "[INFO] [1712656207.217549]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656207.217814]: Ancestors: {DUL.Object, DUL.Entity, DUL.PhysicalObject, owl.Thing}\n", - "[INFO] [1712656207.218094]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712656207.218422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.219232]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712656207.219532]: Direct Instances: []\n", - "[INFO] [1712656207.222016]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712656207.222344]: -------------------\n", - "[INFO] [1712656207.222613]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712656207.222874]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656207.223144]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656207.223431]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712656207.223754]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.224289]: Instances: []\n", - "[INFO] [1712656207.224574]: Direct Instances: []\n", - "[INFO] [1712656207.224850]: Inverse Restrictions: []\n", - "[INFO] [1712656207.226048]: -------------------\n", - "[INFO] [1712656207.226377]: SOMA.Affordance \n", - "[INFO] [1712656207.226702]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712656207.227022]: Ancestors: {SOMA.Affordance, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.227307]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712656207.227633]: Properties: [rdf-schema.isDefinedBy, SOMA.definesBearer, rdf-schema.comment, SOMA.definesTrigger, DUL.definesTask]\n", - "[INFO] [1712656207.228154]: Instances: []\n", - "[INFO] [1712656207.228432]: Direct Instances: []\n", - "[INFO] [1712656207.229578]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712656207.229886]: -------------------\n", - "[INFO] [1712656207.230155]: SOMA.Disposition \n", - "[INFO] [1712656207.231886]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712656207.232248]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.232556]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712656207.232882]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.233451]: Instances: []\n", - "[INFO] [1712656207.233736]: Direct Instances: []\n", - "[INFO] [1712656207.234069]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712656207.234324]: -------------------\n", - "[INFO] [1712656207.234566]: SOMA.Setpoint \n", - "[INFO] [1712656207.234803]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712656207.235089]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.Parameter, SOMA.Setpoint, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.235351]: Subclasses: []\n", - "[INFO] [1712656207.235659]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.236161]: Instances: []\n", - "[INFO] [1712656207.236426]: Direct Instances: []\n", - "[INFO] [1712656207.236701]: Inverse Restrictions: []\n", - "[INFO] [1712656207.236970]: -------------------\n", - "[INFO] [1712656207.237217]: SOMA.Answer \n", - "[INFO] [1712656207.237458]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712656207.237768]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Answer, SOMA.Message}\n", - "[INFO] [1712656207.238039]: Subclasses: []\n", - "[INFO] [1712656207.238353]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.238853]: Instances: []\n", - "[INFO] [1712656207.239125]: Direct Instances: []\n", - "[INFO] [1712656207.239813]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712656207.240078]: -------------------\n", - "[INFO] [1712656207.240319]: SOMA.Message \n", - "[INFO] [1712656207.240598]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712656207.240882]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Message}\n", - "[INFO] [1712656207.241159]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712656207.241465]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.241977]: Instances: []\n", - "[INFO] [1712656207.242277]: Direct Instances: []\n", - "[INFO] [1712656207.244113]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656207.244402]: -------------------\n", - "[INFO] [1712656207.244653]: SOMA.ProcessType \n", - "[INFO] [1712656207.244962]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712656207.245257]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656207.245546]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712656207.245851]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.246430]: Instances: []\n", - "[INFO] [1712656207.246711]: Direct Instances: []\n", - "[INFO] [1712656207.247062]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712656207.247315]: -------------------\n", - "[INFO] [1712656207.247556]: SOMA.OrderedElement \n", - "[INFO] [1712656207.247856]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712656207.249221]: Ancestors: {SOMA.OrderedElement, SOMA.Singleton, owl.Thing}\n", - "[INFO] [1712656207.249521]: Subclasses: []\n", - "[INFO] [1712656207.249835]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isOrderedBy]\n", - "[INFO] [1712656207.250343]: Instances: []\n", - "[INFO] [1712656207.250621]: Direct Instances: []\n", - "[INFO] [1712656207.251022]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712656207.251276]: -------------------\n", - "[INFO] [1712656207.251522]: SOMA.System \n", - "[INFO] [1712656207.251771]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712656207.252046]: Ancestors: {DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656207.252311]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712656207.252609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.253163]: Instances: []\n", - "[INFO] [1712656207.253440]: Direct Instances: []\n", - "[INFO] [1712656207.253706]: Inverse Restrictions: []\n", - "[INFO] [1712656207.253946]: -------------------\n", - "[INFO] [1712656207.254189]: SOMA.Binding \n", - "[INFO] [1712656207.254915]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712656207.255243]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.255535]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712656207.255854]: Properties: [SOMA.hasBindingFiller, Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasBindingRole]\n", - "[INFO] [1712656207.256377]: Instances: []\n", - "[INFO] [1712656207.256658]: Direct Instances: []\n", - "[INFO] [1712656207.256938]: Inverse Restrictions: []\n", - "[INFO] [1712656207.257181]: -------------------\n", - "[INFO] [1712656207.257424]: SOMA.Joint \n", - "[INFO] [1712656207.257703]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712656207.258600]: Ancestors: {DUL.PhysicalBody, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.258890]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712656207.259208]: Properties: [SOMA.hasChildLink, rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", - "[INFO] [1712656207.259724]: Instances: []\n", - "[INFO] [1712656207.260005]: Direct Instances: []\n", - "[INFO] [1712656207.260284]: Inverse Restrictions: []\n", - "[INFO] [1712656207.260524]: -------------------\n", - "[INFO] [1712656207.260759]: SOMA.Color \n", - "[INFO] [1712656207.261042]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712656207.261337]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.261595]: Subclasses: []\n", - "[INFO] [1712656207.261900]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion, rdf-schema.label]\n", - "[INFO] [1712656207.262397]: Instances: []\n", - "[INFO] [1712656207.262681]: Direct Instances: []\n", - "[INFO] [1712656207.262997]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712656207.263249]: -------------------\n", - "[INFO] [1712656207.263487]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712656207.263727]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656207.264766]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.ExecutionStateRegion, DUL.Entity}\n", - "[INFO] [1712656207.265310]: Subclasses: []\n", - "[INFO] [1712656207.265871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.266739]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712656207.267180]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712656207.267594]: Inverse Restrictions: []\n", - "[INFO] [1712656207.267982]: -------------------\n", - "[INFO] [1712656207.268366]: SOMA.Feature \n", - "[INFO] [1712656207.268808]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712656207.269246]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Feature, owl.Thing}\n", - "[INFO] [1712656207.269650]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712656207.270158]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isFeatureOf]\n", - "[INFO] [1712656207.270980]: Instances: []\n", - "[INFO] [1712656207.271379]: Direct Instances: []\n", - "[INFO] [1712656207.271865]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712656207.272244]: -------------------\n", - "[INFO] [1712656207.272620]: SOMA.FrictionAttribute \n", - "[INFO] [1712656207.273047]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712656207.273493]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656207.273898]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712656207.274395]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasFrictionValue]\n", - "[INFO] [1712656207.275210]: Instances: []\n", - "[INFO] [1712656207.275607]: Direct Instances: []\n", - "[INFO] [1712656207.276003]: Inverse Restrictions: []\n", - "[INFO] [1712656207.276381]: -------------------\n", - "[INFO] [1712656207.276763]: SOMA.SituationTransition \n", - "[INFO] [1712656207.277216]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712656207.277575]: Ancestors: {DUL.Situation, SOMA.SituationTransition, DUL.Transition, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.277871]: Subclasses: []\n", - "[INFO] [1712656207.278200]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.278733]: Instances: []\n", - "[INFO] [1712656207.279032]: Direct Instances: []\n", - "[INFO] [1712656207.280831]: Inverse Restrictions: []\n", - "[INFO] [1712656207.281111]: -------------------\n", - "[INFO] [1712656207.281377]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712656207.281636]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712656207.282974]: Ancestors: {DUL.Entity, DUL.Situation, owl.Thing, SOMA.NonmanifestedSituation}\n", - "[INFO] [1712656207.283305]: Subclasses: []\n", - "[INFO] [1712656207.283648]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.284165]: Instances: []\n", - "[INFO] [1712656207.284443]: Direct Instances: []\n", - "[INFO] [1712656207.285864]: Inverse Restrictions: []\n", - "[INFO] [1712656207.286168]: -------------------\n", - "[INFO] [1712656207.286437]: SOMA.JointLimit \n", - "[INFO] [1712656207.286697]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712656207.286978]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.JointLimit, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656207.287247]: Subclasses: []\n", - "[INFO] [1712656207.287560]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.288075]: Instances: []\n", - "[INFO] [1712656207.288370]: Direct Instances: []\n", - "[INFO] [1712656207.288740]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712656207.289012]: -------------------\n", - "[INFO] [1712656207.289263]: SOMA.JointState \n", - "[INFO] [1712656207.289551]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712656207.289850]: Ancestors: {DUL.Region, SOMA.JointState, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656207.290119]: Subclasses: []\n", - "[INFO] [1712656207.290427]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasJointPosition, rdf-schema.comment, SOMA.hasJointVelocity]\n", - "[INFO] [1712656207.290939]: Instances: []\n", - "[INFO] [1712656207.291230]: Direct Instances: []\n", - "[INFO] [1712656207.291571]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712656207.291830]: -------------------\n", - "[INFO] [1712656207.292079]: SOMA.Localization \n", - "[INFO] [1712656207.292353]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712656207.292646]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.292917]: Subclasses: []\n", - "[INFO] [1712656207.293233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712656207.293737]: Instances: []\n", - "[INFO] [1712656207.294028]: Direct Instances: []\n", - "[INFO] [1712656207.296274]: Inverse Restrictions: []\n", - "[INFO] [1712656207.296561]: -------------------\n", - "[INFO] [1712656207.296840]: SOMA.MassAttribute \n", - "[INFO] [1712656207.297138]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712656207.297447]: Ancestors: {SOMA.MassAttribute, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656207.297713]: Subclasses: []\n", - "[INFO] [1712656207.298015]: Properties: [SOMA.hasMassValue, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.298539]: Instances: []\n", - "[INFO] [1712656207.298822]: Direct Instances: []\n", - "[INFO] [1712656207.299088]: Inverse Restrictions: []\n", - "[INFO] [1712656207.299332]: -------------------\n", - "[INFO] [1712656207.299579]: SOMA.NetForce \n", - "[INFO] [1712656207.299841]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712656207.300137]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.NetForce, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", - "[INFO] [1712656207.300398]: Subclasses: []\n", - "[INFO] [1712656207.300704]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.301260]: Instances: []\n", - "[INFO] [1712656207.301555]: Direct Instances: []\n", - "[INFO] [1712656207.301826]: Inverse Restrictions: []\n", - "[INFO] [1712656207.302075]: -------------------\n", - "[INFO] [1712656207.302322]: SOMA.Succedence \n", - "[INFO] [1712656207.302622]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712656207.302917]: Ancestors: {DUL.Relation, DUL.Description, DUL.Object, owl.Thing, SOMA.Succedence, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.303185]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712656207.303489]: Properties: [Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy, SOMA.hasPredecessor, SOMA.hasSuccessor, rdf-schema.comment]\n", - "[INFO] [1712656207.303994]: Instances: []\n", - "[INFO] [1712656207.304282]: Direct Instances: []\n", - "[INFO] [1712656207.304556]: Inverse Restrictions: []\n", - "[INFO] [1712656207.304805]: -------------------\n", - "[INFO] [1712656207.305059]: SOMA.Preference \n", - "[INFO] [1712656207.305333]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712656207.305634]: Ancestors: {DUL.Quality, SOMA.Preference, SOMA.SocialQuality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.305905]: Subclasses: []\n", - "[INFO] [1712656207.306211]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.306730]: Instances: []\n", - "[INFO] [1712656207.307011]: Direct Instances: []\n", - "[INFO] [1712656207.308144]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712656207.308425]: -------------------\n", - "[INFO] [1712656207.308699]: SOMA.Shape \n", - "[INFO] [1712656207.309005]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712656207.309310]: Ancestors: {SOMA.Shape, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.309578]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", - "[INFO] [1712656207.309884]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712656207.310501]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712656207.310814]: Direct Instances: []\n", - "[INFO] [1712656207.313077]: Inverse Restrictions: []\n", - "[INFO] [1712656207.313404]: -------------------\n", - "[INFO] [1712656207.313677]: SOMA.ShapeRegion \n", - "[INFO] [1712656207.313963]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712656207.314375]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.314673]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712656207.314997]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.315527]: Instances: []\n", - "[INFO] [1712656207.315810]: Direct Instances: []\n", - "[INFO] [1712656207.316543]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712656207.316835]: -------------------\n", - "[INFO] [1712656207.317097]: SOMA.SoftwareInstance \n", - "[INFO] [1712656207.317768]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712656207.318060]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", - "[INFO] [1712656207.318321]: Subclasses: []\n", - "[INFO] [1712656207.318628]: Properties: [DUL.actsFor, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isDesignedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.319141]: Instances: []\n", - "[INFO] [1712656207.319417]: Direct Instances: []\n", - "[INFO] [1712656207.320132]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712656207.320415]: -------------------\n", - "[INFO] [1712656207.320677]: SOMA.StateType \n", - "[INFO] [1712656207.320964]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712656207.321257]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656207.321531]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712656207.321839]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.322367]: Instances: []\n", - "[INFO] [1712656207.322645]: Direct Instances: []\n", - "[INFO] [1712656207.322989]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712656207.323259]: -------------------\n", - "[INFO] [1712656207.323512]: SOMA.PhysicalEffector \n", - "[INFO] [1712656207.323785]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712656207.324071]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.324333]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712656207.324646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, Inverse(DUL.hasPart)]\n", - "[INFO] [1712656207.325178]: Instances: []\n", - "[INFO] [1712656207.325456]: Direct Instances: []\n", - "[INFO] [1712656207.325718]: Inverse Restrictions: []\n", - "[INFO] [1712656207.325963]: -------------------\n", - "[INFO] [1712656207.326209]: SOMA.QueryingTask \n", - "[INFO] [1712656207.326870]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712656207.327167]: Ancestors: {owl.Thing, SOMA.QueryingTask, SOMA.IllocutionaryTask}\n", - "[INFO] [1712656207.327435]: Subclasses: []\n", - "[INFO] [1712656207.328425]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712656207.328972]: Instances: []\n", - "[INFO] [1712656207.329264]: Direct Instances: []\n", - "[INFO] [1712656207.330692]: Inverse Restrictions: []\n", - "[INFO] [1712656207.330972]: -------------------\n", - "[INFO] [1712656207.331222]: SOMA.Order \n", - "[INFO] [1712656207.331493]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712656207.331788]: Ancestors: {DUL.FormalEntity, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.Order}\n", - "[INFO] [1712656207.332052]: Subclasses: []\n", - "[INFO] [1712656207.332362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.orders]\n", - "[INFO] [1712656207.332937]: Instances: []\n", - "[INFO] [1712656207.333314]: Direct Instances: []\n", - "[INFO] [1712656207.333720]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712656207.334003]: -------------------\n", - "[INFO] [1712656207.334267]: SOMA.State \n", - "[INFO] [1712656207.334523]: Super classes: [DUL.Event]\n", - "[INFO] [1712656207.334811]: Ancestors: {DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", - "[INFO] [1712656207.335102]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712656207.335417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.335937]: Instances: []\n", - "[INFO] [1712656207.336214]: Direct Instances: []\n", - "[INFO] [1712656207.336750]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712656207.337038]: -------------------\n", - "[INFO] [1712656207.337298]: SOMA.Transient \n", - "[INFO] [1712656207.337569]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712656207.337851]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Transient, owl.Thing}\n", - "[INFO] [1712656207.338131]: Subclasses: []\n", - "[INFO] [1712656207.338445]: Properties: [rdf-schema.isDefinedBy, SOMA.transitionsFrom, rdf-schema.comment]\n", - "[INFO] [1712656207.338945]: Instances: []\n", - "[INFO] [1712656207.339217]: Direct Instances: []\n", - "[INFO] [1712656207.339483]: Inverse Restrictions: []\n", - "[INFO] [1712656207.339741]: -------------------\n", - "[INFO] [1712656207.339991]: SOMA.ColorRegion \n", - "[INFO] [1712656207.340242]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712656207.340519]: Ancestors: {DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656207.340786]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712656207.341110]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.341632]: Instances: []\n", - "[INFO] [1712656207.341909]: Direct Instances: []\n", - "[INFO] [1712656207.342242]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712656207.342496]: -------------------\n", - "[INFO] [1712656207.342752]: SOMA.ForceAttribute \n", - "[INFO] [1712656207.343115]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712656207.343394]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", - "[INFO] [1712656207.343663]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712656207.343984]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasForceValue, rdf-schema.label]\n", - "[INFO] [1712656207.344493]: Instances: []\n", - "[INFO] [1712656207.344765]: Direct Instances: []\n", - "[INFO] [1712656207.345032]: Inverse Restrictions: []\n", - "[INFO] [1712656207.345289]: -------------------\n", - "[INFO] [1712656207.345546]: SOMA.API_Specification \n", - "[INFO] [1712656207.345793]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712656207.346089]: Ancestors: {DUL.Design, SOMA.API_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.346351]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712656207.346658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.347174]: Instances: []\n", - "[INFO] [1712656207.347453]: Direct Instances: []\n", - "[INFO] [1712656207.347715]: Inverse Restrictions: []\n", - "[INFO] [1712656207.347965]: -------------------\n", - "[INFO] [1712656207.348228]: SOMA.InterfaceSpecification \n", - "[INFO] [1712656207.348483]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712656207.348737]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.349022]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712656207.349323]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.349847]: Instances: []\n", - "[INFO] [1712656207.350128]: Direct Instances: []\n", - "[INFO] [1712656207.351196]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712656207.351472]: -------------------\n", - "[INFO] [1712656207.351888]: SOMA.AbductiveReasoning \n", - "[INFO] [1712656207.352229]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712656207.353590]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.AbductiveReasoning, SOMA.Reasoning}\n", - "[INFO] [1712656207.353984]: Subclasses: []\n", - "[INFO] [1712656207.354393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.355002]: Instances: []\n", - "[INFO] [1712656207.355374]: Direct Instances: []\n", - "[INFO] [1712656207.355722]: Inverse Restrictions: []\n", - "[INFO] [1712656207.356054]: -------------------\n", - "[INFO] [1712656207.356385]: SOMA.Reasoning \n", - "[INFO] [1712656207.356714]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656207.357074]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Reasoning}\n", - "[INFO] [1712656207.357435]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712656207.357830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.358426]: Instances: []\n", - "[INFO] [1712656207.358803]: Direct Instances: []\n", - "[INFO] [1712656207.359154]: Inverse Restrictions: []\n", - "[INFO] [1712656207.359483]: -------------------\n", - "[INFO] [1712656207.359807]: SOMA.Accessor \n", - "[INFO] [1712656207.360133]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712656207.360517]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.360892]: Subclasses: []\n", - "[INFO] [1712656207.361259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.361787]: Instances: []\n", - "[INFO] [1712656207.362082]: Direct Instances: []\n", - "[INFO] [1712656207.362357]: Inverse Restrictions: []\n", - "[INFO] [1712656207.362610]: -------------------\n", - "[INFO] [1712656207.363081]: SOMA.Instrument \n", - "[INFO] [1712656207.363497]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712656207.363938]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.364394]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712656207.364878]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.365654]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656207.366128]: Direct Instances: []\n", - "[INFO] [1712656207.366722]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656207.367165]: -------------------\n", - "[INFO] [1712656207.367592]: SOMA.Accident \n", - "[INFO] [1712656207.368016]: Super classes: [DUL.Event]\n", - "[INFO] [1712656207.368405]: Ancestors: {DUL.Entity, SOMA.Accident, DUL.Event, owl.Thing}\n", - "[INFO] [1712656207.368784]: Subclasses: []\n", - "[INFO] [1712656207.369206]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.369806]: Instances: []\n", - "[INFO] [1712656207.370180]: Direct Instances: []\n", - "[INFO] [1712656207.370535]: Inverse Restrictions: []\n", - "[INFO] [1712656207.370893]: -------------------\n", - "[INFO] [1712656207.371243]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712656207.371785]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712656207.372172]: Ancestors: {DUL.Plan, SOMA.ActionExecutionPlan, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.372538]: Subclasses: []\n", - "[INFO] [1712656207.372939]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.373533]: Instances: []\n", - "[INFO] [1712656207.373889]: Direct Instances: []\n", - "[INFO] [1712656207.374236]: Inverse Restrictions: []\n", - "[INFO] [1712656207.374583]: -------------------\n", - "[INFO] [1712656207.374922]: SOMA.Actuating \n", - "[INFO] [1712656207.375270]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656207.375639]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656207.376017]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712656207.376426]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.377061]: Instances: []\n", - "[INFO] [1712656207.377445]: Direct Instances: []\n", - "[INFO] [1712656207.377822]: Inverse Restrictions: []\n", - "[INFO] [1712656207.378164]: -------------------\n", - "[INFO] [1712656207.378494]: SOMA.PhysicalTask \n", - "[INFO] [1712656207.379974]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712656207.380376]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.380760]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712656207.381177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.381987]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", - "[INFO] [1712656207.382385]: Direct Instances: []\n", - "[INFO] [1712656207.382818]: Inverse Restrictions: []\n", - "[INFO] [1712656207.383168]: -------------------\n", - "[INFO] [1712656207.383499]: SOMA.AestheticDesign \n", - "[INFO] [1712656207.383832]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712656207.384192]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.AestheticDesign, DUL.Entity}\n", - "[INFO] [1712656207.384658]: Subclasses: []\n", - "[INFO] [1712656207.385345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.386239]: Instances: []\n", - "[INFO] [1712656207.386677]: Direct Instances: []\n", - "[INFO] [1712656207.387100]: Inverse Restrictions: []\n", - "[INFO] [1712656207.387512]: -------------------\n", - "[INFO] [1712656207.387928]: SOMA.AffordsBeingSitOn \n", - "[INFO] [1712656207.389935]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", - "[INFO] [1712656207.390409]: Ancestors: {SOMA.Affordance, DUL.Relation, DUL.Description, SOMA.AffordsBeingSitOn, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.390822]: Subclasses: []\n", - "[INFO] [1712656207.391329]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", - "[INFO] [1712656207.392152]: Instances: []\n", - "[INFO] [1712656207.392572]: Direct Instances: []\n", - "[INFO] [1712656207.393037]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", - "[INFO] [1712656207.393419]: -------------------\n", - "[INFO] [1712656207.393788]: SOMA.CanBeSatOn \n", - "[INFO] [1712656207.394169]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", - "[INFO] [1712656207.394595]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.CanBeSatOn, DUL.Quality, SOMA.Deposition, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.394963]: Subclasses: []\n", - "[INFO] [1712656207.395403]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.396145]: Instances: []\n", - "[INFO] [1712656207.396546]: Direct Instances: []\n", - "[INFO] [1712656207.397509]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712656207.397888]: -------------------\n", - "[INFO] [1712656207.398268]: SOMA.SittingDestination \n", - "[INFO] [1712656207.398658]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", - "[INFO] [1712656207.399124]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.SittingDestination, DUL.SocialObject, DUL.Role, SOMA.Destination, DUL.Entity, SOMA.Location}\n", - "[INFO] [1712656207.399497]: Subclasses: []\n", - "[INFO] [1712656207.399958]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.400699]: Instances: []\n", - "[INFO] [1712656207.401087]: Direct Instances: []\n", - "[INFO] [1712656207.401505]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712656207.401865]: -------------------\n", - "[INFO] [1712656207.402216]: SOMA.CanSit \n", - "[INFO] [1712656207.402567]: Super classes: [SOMA.Capability]\n", - "[INFO] [1712656207.402983]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.CanSit, DUL.Quality, SOMA.Capability, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.403347]: Subclasses: []\n", - "[INFO] [1712656207.403788]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.404527]: Instances: []\n", - "[INFO] [1712656207.405427]: Direct Instances: []\n", - "[INFO] [1712656207.405982]: Inverse Restrictions: []\n", - "[INFO] [1712656207.406370]: -------------------\n", - "[INFO] [1712656207.406747]: SOMA.AgentRole \n", - "[INFO] [1712656207.407140]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712656207.407559]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.AgentRole}\n", - "[INFO] [1712656207.407925]: Subclasses: []\n", - "[INFO] [1712656207.408376]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.409032]: Instances: []\n", - "[INFO] [1712656207.409579]: Direct Instances: []\n", - "[INFO] [1712656207.409997]: Inverse Restrictions: []\n", - "[INFO] [1712656207.410350]: -------------------\n", - "[INFO] [1712656207.410702]: SOMA.Sitting \n", - "[INFO] [1712656207.411038]: Super classes: [SOMA.AssumingPose]\n", - "[INFO] [1712656207.411422]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Sitting, DUL.Entity, SOMA.AssumingPose}\n", - "[INFO] [1712656207.411764]: Subclasses: []\n", - "[INFO] [1712656207.412168]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.412760]: Instances: []\n", - "[INFO] [1712656207.413132]: Direct Instances: []\n", - "[INFO] [1712656207.413504]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712656207.413837]: -------------------\n", - "[INFO] [1712656207.414164]: SOMA.CausativeRole \n", - "[INFO] [1712656207.414506]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656207.414854]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.415212]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712656207.415592]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.416200]: Instances: []\n", - "[INFO] [1712656207.416555]: Direct Instances: []\n", - "[INFO] [1712656207.416913]: Inverse Restrictions: []\n", - "[INFO] [1712656207.417243]: -------------------\n", - "[INFO] [1712656207.417568]: SOMA.Agonist \n", - "[INFO] [1712656207.417890]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656207.418263]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.Agonist, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.418601]: Subclasses: []\n", - "[INFO] [1712656207.418979]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.419544]: Instances: []\n", - "[INFO] [1712656207.419889]: Direct Instances: []\n", - "[INFO] [1712656207.420286]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712656207.420618]: -------------------\n", - "[INFO] [1712656207.420981]: SOMA.Patient \n", - "[INFO] [1712656207.421290]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656207.421566]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.421894]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712656207.422213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.422788]: Instances: []\n", - "[INFO] [1712656207.423075]: Direct Instances: []\n", - "[INFO] [1712656207.423532]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656207.423792]: -------------------\n", - "[INFO] [1712656207.424039]: SOMA.Algorithm \n", - "[INFO] [1712656207.424277]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712656207.424552]: Ancestors: {DUL.Plan, SOMA.Algorithm, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.424834]: Subclasses: []\n", - "[INFO] [1712656207.425146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.425653]: Instances: []\n", - "[INFO] [1712656207.425951]: Direct Instances: []\n", - "[INFO] [1712656207.427026]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712656207.427295]: -------------------\n", - "[INFO] [1712656207.427540]: SOMA.Alteration \n", - "[INFO] [1712656207.427795]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712656207.428082]: Ancestors: {DUL.Concept, SOMA.Alteration, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656207.428353]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712656207.428668]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.429191]: Instances: []\n", - "[INFO] [1712656207.429470]: Direct Instances: []\n", - "[INFO] [1712656207.429733]: Inverse Restrictions: []\n", - "[INFO] [1712656207.429980]: -------------------\n", - "[INFO] [1712656207.430235]: SOMA.AlterativeInteraction \n", - "[INFO] [1712656207.430493]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712656207.431395]: Ancestors: {DUL.Concept, SOMA.ForceInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AlterativeInteraction, SOMA.ProcessType}\n", - "[INFO] [1712656207.431692]: Subclasses: []\n", - "[INFO] [1712656207.432027]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.432692]: Instances: []\n", - "[INFO] [1712656207.433008]: Direct Instances: []\n", - "[INFO] [1712656207.433442]: Inverse Restrictions: []\n", - "[INFO] [1712656207.433812]: -------------------\n", - "[INFO] [1712656207.434185]: SOMA.ForceInteraction \n", - "[INFO] [1712656207.434587]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712656207.435004]: Ancestors: {DUL.Concept, SOMA.ForceInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656207.435393]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712656207.435738]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.label, rdf-schema.comment]\n", - "[INFO] [1712656207.436268]: Instances: []\n", - "[INFO] [1712656207.436554]: Direct Instances: []\n", - "[INFO] [1712656207.436852]: Inverse Restrictions: []\n", - "[INFO] [1712656207.437256]: -------------------\n", - "[INFO] [1712656207.437537]: SOMA.PreservativeInteraction \n", - "[INFO] [1712656207.437790]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712656207.438081]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, SOMA.PreservativeInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656207.438339]: Subclasses: []\n", - "[INFO] [1712656207.438649]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.439156]: Instances: []\n", - "[INFO] [1712656207.439423]: Direct Instances: []\n", - "[INFO] [1712656207.439715]: Inverse Restrictions: []\n", - "[INFO] [1712656207.439951]: -------------------\n", - "[INFO] [1712656207.440184]: SOMA.AlteredObject \n", - "[INFO] [1712656207.440433]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656207.440709]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.440982]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712656207.441275]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.441773]: Instances: []\n", - "[INFO] [1712656207.442044]: Direct Instances: []\n", - "[INFO] [1712656207.442769]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712656207.443039]: -------------------\n", - "[INFO] [1712656207.443284]: SOMA.Amateurish \n", - "[INFO] [1712656207.443519]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712656207.443818]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656207.444078]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712656207.444390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.444893]: Instances: []\n", - "[INFO] [1712656207.445153]: Direct Instances: []\n", - "[INFO] [1712656207.445411]: Inverse Restrictions: []\n", - "[INFO] [1712656207.445648]: -------------------\n", - "[INFO] [1712656207.445888]: SOMA.AnsweringTask \n", - "[INFO] [1712656207.446122]: Super classes: [owl.Thing]\n", - "[INFO] [1712656207.448709]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", - "[INFO] [1712656207.449044]: Subclasses: []\n", - "[INFO] [1712656207.449384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712656207.449908]: Instances: []\n", - "[INFO] [1712656207.450190]: Direct Instances: []\n", - "[INFO] [1712656207.450509]: Inverse Restrictions: []\n", - "[INFO] [1712656207.450763]: -------------------\n", - "[INFO] [1712656207.451005]: SOMA.CommandingTask \n", - "[INFO] [1712656207.451662]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712656207.451990]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask, SOMA.CommandingTask}\n", - "[INFO] [1712656207.452262]: Subclasses: []\n", - "[INFO] [1712656207.452572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.453073]: Instances: []\n", - "[INFO] [1712656207.453355]: Direct Instances: []\n", - "[INFO] [1712656207.453708]: Inverse Restrictions: []\n", - "[INFO] [1712656207.453954]: -------------------\n", - "[INFO] [1712656207.454192]: SOMA.IllocutionaryTask \n", - "[INFO] [1712656207.455592]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712656207.455882]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712656207.456163]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712656207.456510]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.457039]: Instances: []\n", - "[INFO] [1712656207.457330]: Direct Instances: []\n", - "[INFO] [1712656207.457641]: Inverse Restrictions: []\n", - "[INFO] [1712656207.457890]: -------------------\n", - "[INFO] [1712656207.458131]: SOMA.Antagonist \n", - "[INFO] [1712656207.458369]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656207.458646]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Antagonist}\n", - "[INFO] [1712656207.458913]: Subclasses: []\n", - "[INFO] [1712656207.459213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.459707]: Instances: []\n", - "[INFO] [1712656207.459969]: Direct Instances: []\n", - "[INFO] [1712656207.460270]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712656207.460523]: -------------------\n", - "[INFO] [1712656207.460765]: SOMA.Appliance \n", - "[INFO] [1712656207.461021]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712656207.461298]: Ancestors: {SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.461562]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712656207.461869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.462375]: Instances: []\n", - "[INFO] [1712656207.462643]: Direct Instances: []\n", - "[INFO] [1712656207.462903]: Inverse Restrictions: []\n", - "[INFO] [1712656207.463140]: -------------------\n", - "[INFO] [1712656207.463417]: SOMA.Approaching \n", - "[INFO] [1712656207.463690]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656207.464030]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Approaching, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656207.464288]: Subclasses: []\n", - "[INFO] [1712656207.464621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.465134]: Instances: []\n", - "[INFO] [1712656207.465398]: Direct Instances: []\n", - "[INFO] [1712656207.465673]: Inverse Restrictions: []\n", - "[INFO] [1712656207.465924]: -------------------\n", - "[INFO] [1712656207.466171]: SOMA.Locomotion \n", - "[INFO] [1712656207.466412]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712656207.466662]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656207.466928]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712656207.467232]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.467753]: Instances: []\n", - "[INFO] [1712656207.468026]: Direct Instances: []\n", - "[INFO] [1712656207.468293]: Inverse Restrictions: []\n", - "[INFO] [1712656207.468540]: -------------------\n", - "[INFO] [1712656207.468791]: SOMA.ArchiveFile \n", - "[INFO] [1712656207.469040]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712656207.470296]: Ancestors: {DUL.InformationEntity, owl.Thing, SOMA.ArchiveFile, DUL.Entity, SOMA.Digital_File, DUL.InformationRealization}\n", - "[INFO] [1712656207.470587]: Subclasses: []\n", - "[INFO] [1712656207.470906]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.realizes]\n", - "[INFO] [1712656207.471400]: Instances: []\n", - "[INFO] [1712656207.471662]: Direct Instances: []\n", - "[INFO] [1712656207.471926]: Inverse Restrictions: []\n", - "[INFO] [1712656207.472169]: -------------------\n", - "[INFO] [1712656207.472407]: SOMA.ArchiveText \n", - "[INFO] [1712656207.472637]: Super classes: [owl.Thing]\n", - "[INFO] [1712656207.474412]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", - "[INFO] [1712656207.474709]: Subclasses: []\n", - "[INFO] [1712656207.475028]: Properties: [rdf-schema.isDefinedBy, DUL.expresses, rdf-schema.label, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656207.475530]: Instances: []\n", - "[INFO] [1712656207.475810]: Direct Instances: []\n", - "[INFO] [1712656207.476247]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712656207.476523]: -------------------\n", - "[INFO] [1712656207.476780]: SOMA.Digital_File \n", - "[INFO] [1712656207.477083]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712656207.477360]: Ancestors: {DUL.InformationEntity, owl.Thing, DUL.Entity, SOMA.Digital_File, DUL.InformationRealization}\n", - "[INFO] [1712656207.477643]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712656207.477989]: Properties: [SOMA.hasNameString, rdf-schema.isDefinedBy, rdf-schema.label, DUL.realizes, rdf-schema.comment]\n", - "[INFO] [1712656207.478502]: Instances: []\n", - "[INFO] [1712656207.478771]: Direct Instances: []\n", - "[INFO] [1712656207.481393]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712656207.481718]: -------------------\n", - "[INFO] [1712656207.481993]: SOMA.ArchiveFormat \n", - "[INFO] [1712656207.482248]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712656207.482570]: Ancestors: {SOMA.ArchiveFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656207.482843]: Subclasses: []\n", - "[INFO] [1712656207.483162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.483683]: Instances: []\n", - "[INFO] [1712656207.483972]: Direct Instances: []\n", - "[INFO] [1712656207.484288]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712656207.484553]: -------------------\n", - "[INFO] [1712656207.484815]: SOMA.File_format \n", - "[INFO] [1712656207.485067]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656207.485325]: Ancestors: {SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656207.485591]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712656207.485903]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.486435]: Instances: []\n", - "[INFO] [1712656207.486724]: Direct Instances: []\n", - "[INFO] [1712656207.486992]: Inverse Restrictions: []\n", - "[INFO] [1712656207.487233]: -------------------\n", - "[INFO] [1712656207.487482]: SOMA.FileConfiguration \n", - "[INFO] [1712656207.487725]: Super classes: [owl.Thing]\n", - "[INFO] [1712656207.488212]: Ancestors: {owl.Thing, SOMA.FileConfiguration}\n", - "[INFO] [1712656207.488479]: Subclasses: []\n", - "[INFO] [1712656207.488793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.489303]: Instances: []\n", - "[INFO] [1712656207.489578]: Direct Instances: []\n", - "[INFO] [1712656207.489893]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712656207.490147]: -------------------\n", - "[INFO] [1712656207.490393]: SOMA.Structured_Text \n", - "[INFO] [1712656207.490631]: Super classes: [owl.Thing]\n", - "[INFO] [1712656207.491854]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", - "[INFO] [1712656207.492162]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712656207.492474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656207.492976]: Instances: []\n", - "[INFO] [1712656207.493246]: Direct Instances: []\n", - "[INFO] [1712656207.495894]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712656207.496179]: -------------------\n", - "[INFO] [1712656207.496432]: SOMA.AreaSurveying \n", - "[INFO] [1712656207.496693]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712656207.497235]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", - "[INFO] [1712656207.497584]: Subclasses: []\n", - "[INFO] [1712656207.497916]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.498435]: Instances: []\n", - "[INFO] [1712656207.498721]: Direct Instances: []\n", - "[INFO] [1712656207.498986]: Inverse Restrictions: []\n", - "[INFO] [1712656207.499237]: -------------------\n", - "[INFO] [1712656207.499479]: SOMA.Perceiving \n", - "[INFO] [1712656207.499723]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712656207.499964]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712656207.500220]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712656207.500512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.501035]: Instances: []\n", - "[INFO] [1712656207.501320]: Direct Instances: []\n", - "[INFO] [1712656207.501586]: Inverse Restrictions: []\n", - "[INFO] [1712656207.501823]: -------------------\n", - "[INFO] [1712656207.502055]: SOMA.Arm \n", - "[INFO] [1712656207.502293]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712656207.503184]: Ancestors: {SOMA.Arm, DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.503454]: Subclasses: []\n", - "[INFO] [1712656207.503753]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.504257]: Instances: []\n", - "[INFO] [1712656207.504522]: Direct Instances: []\n", - "[INFO] [1712656207.504820]: Inverse Restrictions: []\n", - "[INFO] [1712656207.505067]: -------------------\n", - "[INFO] [1712656207.505302]: SOMA.Limb \n", - "[INFO] [1712656207.505547]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712656207.505797]: Ancestors: {DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.506056]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712656207.506355]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.506873]: Instances: []\n", - "[INFO] [1712656207.507142]: Direct Instances: []\n", - "[INFO] [1712656207.507822]: Inverse Restrictions: []\n", - "[INFO] [1712656207.508095]: -------------------\n", - "[INFO] [1712656207.508343]: SOMA.Armchair \n", - "[INFO] [1712656207.508577]: Super classes: [SOMA.DesignedChair]\n", - "[INFO] [1712656207.508866]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Armchair, DUL.PhysicalObject, SOMA.DesignedChair, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656207.509125]: Subclasses: []\n", - "[INFO] [1712656207.509422]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.509908]: Instances: []\n", - "[INFO] [1712656207.510161]: Direct Instances: []\n", - "[INFO] [1712656207.510396]: Inverse Restrictions: []\n", - "[INFO] [1712656207.510635]: -------------------\n", - "[INFO] [1712656207.510873]: SOMA.DesignedChair \n", - "[INFO] [1712656207.511109]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712656207.511354]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.DesignedChair, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656207.511603]: Subclasses: [SOMA.Armchair]\n", - "[INFO] [1712656207.511907]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712656207.512405]: Instances: []\n", - "[INFO] [1712656207.512661]: Direct Instances: []\n", - "[INFO] [1712656207.512920]: Inverse Restrictions: []\n", - "[INFO] [1712656207.513154]: -------------------\n", - "[INFO] [1712656207.513395]: SOMA.Arranging \n", - "[INFO] [1712656207.513652]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712656207.513938]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Arranging, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.514175]: Subclasses: []\n", - "[INFO] [1712656207.514477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.514971]: Instances: []\n", - "[INFO] [1712656207.515226]: Direct Instances: []\n", - "[INFO] [1712656207.515491]: Inverse Restrictions: []\n", - "[INFO] [1712656207.515726]: -------------------\n", - "[INFO] [1712656207.515957]: SOMA.Constructing \n", - "[INFO] [1712656207.516188]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656207.516428]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.516698]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712656207.517009]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.517510]: Instances: []\n", - "[INFO] [1712656207.517789]: Direct Instances: []\n", - "[INFO] [1712656207.518054]: Inverse Restrictions: []\n", - "[INFO] [1712656207.518291]: -------------------\n", - "[INFO] [1712656207.518523]: SOMA.ArtificialAgent \n", - "[INFO] [1712656207.518754]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712656207.519048]: Ancestors: {DUL.PhysicalAgent, DUL.Agent, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.ArtificialAgent}\n", - "[INFO] [1712656207.519294]: Subclasses: []\n", - "[INFO] [1712656207.519579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.520060]: Instances: []\n", - "[INFO] [1712656207.520335]: Direct Instances: []\n", - "[INFO] [1712656207.520589]: Inverse Restrictions: []\n", - "[INFO] [1712656207.520863]: -------------------\n", - "[INFO] [1712656207.521250]: SOMA.Assembling \n", - "[INFO] [1712656207.521545]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712656207.521849]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Assembling}\n", - "[INFO] [1712656207.522112]: Subclasses: []\n", - "[INFO] [1712656207.522414]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.522903]: Instances: []\n", - "[INFO] [1712656207.523197]: Direct Instances: []\n", - "[INFO] [1712656207.523468]: Inverse Restrictions: []\n", - "[INFO] [1712656207.523710]: -------------------\n", - "[INFO] [1712656207.523948]: SOMA.AssertionTask \n", - "[INFO] [1712656207.524585]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712656207.524892]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask, SOMA.AssertionTask}\n", - "[INFO] [1712656207.525158]: Subclasses: []\n", - "[INFO] [1712656207.525462]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.525953]: Instances: []\n", - "[INFO] [1712656207.526242]: Direct Instances: []\n", - "[INFO] [1712656207.526508]: Inverse Restrictions: []\n", - "[INFO] [1712656207.526749]: -------------------\n", - "[INFO] [1712656207.526985]: SOMA.DeclarativeClause \n", - "[INFO] [1712656207.527216]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712656207.527518]: Ancestors: {SOMA.DeclarativeClause, DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656207.527786]: Subclasses: []\n", - "[INFO] [1712656207.528110]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.528610]: Instances: []\n", - "[INFO] [1712656207.529096]: Direct Instances: []\n", - "[INFO] [1712656207.529508]: Inverse Restrictions: []\n", - "[INFO] [1712656207.529849]: -------------------\n", - "[INFO] [1712656207.530170]: SOMA.AssumingArmPose \n", - "[INFO] [1712656207.530448]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712656207.530744]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose, SOMA.AssumingArmPose}\n", - "[INFO] [1712656207.531090]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712656207.531438]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.531974]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712656207.532264]: Direct Instances: []\n", - "[INFO] [1712656207.532545]: Inverse Restrictions: []\n", - "[INFO] [1712656207.532825]: -------------------\n", - "[INFO] [1712656207.533085]: SOMA.AssumingPose \n", - "[INFO] [1712656207.533343]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656207.533614]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose}\n", - "[INFO] [1712656207.533905]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712656207.534218]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.534740]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712656207.535052]: Direct Instances: []\n", - "[INFO] [1712656207.535330]: Inverse Restrictions: []\n", - "[INFO] [1712656207.535573]: -------------------\n", - "[INFO] [1712656207.535813]: SOMA.AttentionShift \n", - "[INFO] [1712656207.536048]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712656207.536331]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.AttentionShift, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656207.536608]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712656207.536919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.537415]: Instances: []\n", - "[INFO] [1712656207.537699]: Direct Instances: []\n", - "[INFO] [1712656207.537969]: Inverse Restrictions: []\n", - "[INFO] [1712656207.538213]: -------------------\n", - "[INFO] [1712656207.538452]: SOMA.MentalTask \n", - "[INFO] [1712656207.538719]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712656207.538973]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656207.539363]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712656207.539723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.540436]: Instances: []\n", - "[INFO] [1712656207.540858]: Direct Instances: []\n", - "[INFO] [1712656207.541209]: Inverse Restrictions: []\n", - "[INFO] [1712656207.541472]: -------------------\n", - "[INFO] [1712656207.541724]: SOMA.AvoidedObject \n", - "[INFO] [1712656207.541969]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656207.542251]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.AvoidedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.542530]: Subclasses: []\n", - "[INFO] [1712656207.542839]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.543342]: Instances: []\n", - "[INFO] [1712656207.543631]: Direct Instances: []\n", - "[INFO] [1712656207.543906]: Inverse Restrictions: []\n", - "[INFO] [1712656207.544151]: -------------------\n", - "[INFO] [1712656207.544390]: SOMA.Avoiding \n", - "[INFO] [1712656207.544626]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712656207.544923]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Avoiding, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.545188]: Subclasses: []\n", - "[INFO] [1712656207.545489]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.545975]: Instances: []\n", - "[INFO] [1712656207.546257]: Direct Instances: []\n", - "[INFO] [1712656207.546515]: Inverse Restrictions: []\n", - "[INFO] [1712656207.546802]: -------------------\n", - "[INFO] [1712656207.547077]: SOMA.Navigating \n", - "[INFO] [1712656207.547329]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656207.547597]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.547870]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712656207.548165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.548680]: Instances: [SOMA.navigating]\n", - "[INFO] [1712656207.549120]: Direct Instances: [SOMA.navigating]\n", - "[INFO] [1712656207.549481]: Inverse Restrictions: []\n", - "[INFO] [1712656207.549783]: -------------------\n", - "[INFO] [1712656207.550057]: SOMA.BakedGood \n", - "[INFO] [1712656207.550319]: Super classes: [SOMA.Dish]\n", - "[INFO] [1712656207.550612]: Ancestors: {SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.BakedGood}\n", - "[INFO] [1712656207.550883]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", - "[INFO] [1712656207.551187]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.551708]: Instances: []\n", - "[INFO] [1712656207.551981]: Direct Instances: []\n", - "[INFO] [1712656207.552241]: Inverse Restrictions: []\n", - "[INFO] [1712656207.552494]: -------------------\n", - "[INFO] [1712656207.552743]: SOMA.Dish \n", - "[INFO] [1712656207.552996]: Super classes: [DUL.DesignedArtifact]\n", - "[INFO] [1712656207.553264]: Ancestors: {SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.553521]: Subclasses: [SOMA.BakedGood]\n", - "[INFO] [1712656207.553808]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.554305]: Instances: []\n", - "[INFO] [1712656207.554585]: Direct Instances: []\n", - "[INFO] [1712656207.554845]: Inverse Restrictions: []\n", - "[INFO] [1712656207.555090]: -------------------\n", - "[INFO] [1712656207.555329]: SOMA.Barrier \n", - "[INFO] [1712656207.555567]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712656207.555848]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656207.556126]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712656207.556428]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.556935]: Instances: []\n", - "[INFO] [1712656207.557200]: Direct Instances: []\n", - "[INFO] [1712656207.557510]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712656207.557773]: -------------------\n", - "[INFO] [1712656207.558016]: SOMA.Restrictor \n", - "[INFO] [1712656207.558257]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712656207.558519]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656207.558782]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712656207.559079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.559603]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656207.559878]: Direct Instances: []\n", - "[INFO] [1712656207.560251]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712656207.560517]: -------------------\n", - "[INFO] [1712656207.560773]: SOMA.BedsideTable \n", - "[INFO] [1712656207.561037]: Super classes: [SOMA.Table]\n", - "[INFO] [1712656207.561337]: Ancestors: {DUL.DesignedArtifact, SOMA.BedsideTable, DUL.PhysicalArtifact, SOMA.Table, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656207.561585]: Subclasses: []\n", - "[INFO] [1712656207.561884]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.562377]: Instances: []\n", - "[INFO] [1712656207.562644]: Direct Instances: []\n", - "[INFO] [1712656207.562893]: Inverse Restrictions: []\n", - "[INFO] [1712656207.563129]: -------------------\n", - "[INFO] [1712656207.563376]: SOMA.Table \n", - "[INFO] [1712656207.563638]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712656207.563899]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Table, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656207.564162]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", - "[INFO] [1712656207.564459]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.564985]: Instances: []\n", - "[INFO] [1712656207.565268]: Direct Instances: []\n", - "[INFO] [1712656207.565532]: Inverse Restrictions: []\n", - "[INFO] [1712656207.565783]: -------------------\n", - "[INFO] [1712656207.566042]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712656207.566316]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712656207.566577]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656207.566835]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712656207.567150]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712656207.567683]: Instances: []\n", - "[INFO] [1712656207.567957]: Direct Instances: []\n", - "[INFO] [1712656207.568216]: Inverse Restrictions: []\n", - "[INFO] [1712656207.568455]: -------------------\n", - "[INFO] [1712656207.568691]: SOMA.BeneficiaryRole \n", - "[INFO] [1712656207.568943]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712656207.569234]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.569500]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712656207.569798]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.570310]: Instances: []\n", - "[INFO] [1712656207.570585]: Direct Instances: []\n", - "[INFO] [1712656207.570841]: Inverse Restrictions: []\n", - "[INFO] [1712656207.571084]: -------------------\n", - "[INFO] [1712656207.571319]: SOMA.GoalRole \n", - "[INFO] [1712656207.571570]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656207.571821]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.572075]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712656207.572371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.572885]: Instances: []\n", - "[INFO] [1712656207.573249]: Direct Instances: []\n", - "[INFO] [1712656207.573543]: Inverse Restrictions: []\n", - "[INFO] [1712656207.573803]: -------------------\n", - "[INFO] [1712656207.574069]: SOMA.CounterfactualBinding \n", - "[INFO] [1712656207.574319]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712656207.574602]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.CounterfactualBinding}\n", - "[INFO] [1712656207.574853]: Subclasses: []\n", - "[INFO] [1712656207.575156]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.575662]: Instances: []\n", - "[INFO] [1712656207.575937]: Direct Instances: []\n", - "[INFO] [1712656207.576268]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712656207.576518]: -------------------\n", - "[INFO] [1712656207.576759]: SOMA.FactualBinding \n", - "[INFO] [1712656207.577017]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712656207.577289]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.FactualBinding, DUL.Entity}\n", - "[INFO] [1712656207.577538]: Subclasses: []\n", - "[INFO] [1712656207.577849]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.578358]: Instances: []\n", - "[INFO] [1712656207.578643]: Direct Instances: []\n", - "[INFO] [1712656207.578990]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712656207.579243]: -------------------\n", - "[INFO] [1712656207.579485]: SOMA.RoleFillerBinding \n", - "[INFO] [1712656207.579736]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712656207.580013]: Ancestors: {DUL.Relation, DUL.Description, SOMA.RoleFillerBinding, SOMA.Binding, DUL.Object, DUL.SocialObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.580269]: Subclasses: []\n", - "[INFO] [1712656207.580576]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.581099]: Instances: []\n", - "[INFO] [1712656207.581381]: Direct Instances: []\n", - "[INFO] [1712656207.581688]: Inverse Restrictions: []\n", - "[INFO] [1712656207.581947]: -------------------\n", - "[INFO] [1712656207.582214]: SOMA.RoleRoleBinding \n", - "[INFO] [1712656207.582882]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712656207.583198]: Ancestors: {DUL.Relation, SOMA.RoleRoleBinding, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.583479]: Subclasses: []\n", - "[INFO] [1712656207.583796]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.584699]: Instances: []\n", - "[INFO] [1712656207.585243]: Direct Instances: []\n", - "[INFO] [1712656207.585629]: Inverse Restrictions: []\n", - "[INFO] [1712656207.585930]: -------------------\n", - "[INFO] [1712656207.586220]: SOMA.Blade \n", - "[INFO] [1712656207.586485]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656207.586862]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Blade, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.587147]: Subclasses: []\n", - "[INFO] [1712656207.587457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.587990]: Instances: []\n", - "[INFO] [1712656207.588273]: Direct Instances: []\n", - "[INFO] [1712656207.588565]: Inverse Restrictions: [SOMA.Knife]\n", - "[INFO] [1712656207.588816]: -------------------\n", - "[INFO] [1712656207.589058]: SOMA.DesignedComponent \n", - "[INFO] [1712656207.589325]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712656207.589601]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.589876]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712656207.590174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712656207.590702]: Instances: []\n", - "[INFO] [1712656207.590982]: Direct Instances: []\n", - "[INFO] [1712656207.591253]: Inverse Restrictions: []\n", - "[INFO] [1712656207.591501]: -------------------\n", - "[INFO] [1712656207.591742]: SOMA.Blockage \n", - "[INFO] [1712656207.592009]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712656207.592295]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.592563]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712656207.592870]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.593383]: Instances: []\n", - "[INFO] [1712656207.593684]: Direct Instances: []\n", - "[INFO] [1712656207.593952]: Inverse Restrictions: []\n", - "[INFO] [1712656207.594195]: -------------------\n", - "[INFO] [1712656207.594431]: SOMA.BlockedObject \n", - "[INFO] [1712656207.594661]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656207.594926]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", - "[INFO] [1712656207.595200]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712656207.595501]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.596000]: Instances: []\n", - "[INFO] [1712656207.596261]: Direct Instances: []\n", - "[INFO] [1712656207.596554]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712656207.596817]: -------------------\n", - "[INFO] [1712656207.597071]: SOMA.BodyMovement \n", - "[INFO] [1712656207.598100]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712656207.598387]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656207.598664]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712656207.598964]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.599479]: Instances: []\n", - "[INFO] [1712656207.599756]: Direct Instances: []\n", - "[INFO] [1712656207.600016]: Inverse Restrictions: []\n", - "[INFO] [1712656207.600256]: -------------------\n", - "[INFO] [1712656207.600492]: SOMA.Motion \n", - "[INFO] [1712656207.600728]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712656207.601049]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656207.601329]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712656207.601627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.602182]: Instances: []\n", - "[INFO] [1712656207.602450]: Direct Instances: []\n", - "[INFO] [1712656207.602708]: Inverse Restrictions: []\n", - "[INFO] [1712656207.602947]: -------------------\n", - "[INFO] [1712656207.603185]: SOMA.Boiling \n", - "[INFO] [1712656207.603429]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712656207.603709]: Ancestors: {SOMA.Boiling, DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Vaporizing, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656207.603950]: Subclasses: []\n", - "[INFO] [1712656207.604226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.604721]: Instances: []\n", - "[INFO] [1712656207.604990]: Direct Instances: []\n", - "[INFO] [1712656207.605238]: Inverse Restrictions: []\n", - "[INFO] [1712656207.605472]: -------------------\n", - "[INFO] [1712656207.605695]: SOMA.Vaporizing \n", - "[INFO] [1712656207.606337]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712656207.606808]: Ancestors: {DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Vaporizing, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656207.607176]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712656207.607488]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.seeAlso]\n", - "[INFO] [1712656207.607988]: Instances: []\n", - "[INFO] [1712656207.608280]: Direct Instances: []\n", - "[INFO] [1712656207.608550]: Inverse Restrictions: []\n", - "[INFO] [1712656207.608799]: -------------------\n", - "[INFO] [1712656207.609123]: SOMA.Bottle \n", - "[INFO] [1712656207.609379]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712656207.609841]: Ancestors: {SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.610245]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", - "[INFO] [1712656207.610664]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.611275]: Instances: []\n", - "[INFO] [1712656207.611648]: Direct Instances: []\n", - "[INFO] [1712656207.612000]: Inverse Restrictions: []\n", - "[INFO] [1712656207.612354]: -------------------\n", - "[INFO] [1712656207.612699]: SOMA.DesignedContainer \n", - "[INFO] [1712656207.613057]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712656207.613346]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.613653]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712656207.613974]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712656207.614594]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712656207.614892]: Direct Instances: []\n", - "[INFO] [1712656207.615171]: Inverse Restrictions: []\n", - "[INFO] [1712656207.615421]: -------------------\n", - "[INFO] [1712656207.615664]: SOMA.Bowl \n", - "[INFO] [1712656207.615903]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712656207.616198]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Bowl, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656207.616477]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", - "[INFO] [1712656207.616782]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.617293]: Instances: []\n", - "[INFO] [1712656207.617566]: Direct Instances: []\n", - "[INFO] [1712656207.617860]: Inverse Restrictions: [SOMA.Spoon]\n", - "[INFO] [1712656207.618126]: -------------------\n", - "[INFO] [1712656207.618385]: SOMA.Crockery \n", - "[INFO] [1712656207.619272]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712656207.619569]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656207.619849]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", - "[INFO] [1712656207.620157]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712656207.620677]: Instances: []\n", - "[INFO] [1712656207.620954]: Direct Instances: []\n", - "[INFO] [1712656207.621221]: Inverse Restrictions: []\n", - "[INFO] [1712656207.621469]: -------------------\n", - "[INFO] [1712656207.621711]: SOMA.Box \n", - "[INFO] [1712656207.621966]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", - "[INFO] [1712656207.622238]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Box, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.622519]: Subclasses: [SOMA.CerealBox]\n", - "[INFO] [1712656207.622823]: Properties: [SOMA.hasShapeRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.623317]: Instances: []\n", - "[INFO] [1712656207.623584]: Direct Instances: []\n", - "[INFO] [1712656207.623837]: Inverse Restrictions: []\n", - "[INFO] [1712656207.624077]: -------------------\n", - "[INFO] [1712656207.624330]: SOMA.BoxShape \n", - "[INFO] [1712656207.624620]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712656207.624907]: Ancestors: {SOMA.ShapeRegion, DUL.Region, SOMA.BoxShape, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.625165]: Subclasses: []\n", - "[INFO] [1712656207.625457]: Properties: [SOMA.hasWidth, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasHeight, rdf-schema.comment, SOMA.hasLength]\n", - "[INFO] [1712656207.625992]: Instances: []\n", - "[INFO] [1712656207.626280]: Direct Instances: []\n", - "[INFO] [1712656207.626560]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712656207.626808]: -------------------\n", - "[INFO] [1712656207.627048]: SOMA.Bread \n", - "[INFO] [1712656207.627295]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712656207.627569]: Ancestors: {SOMA.Dish, DUL.DesignedArtifact, SOMA.Bread, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.BakedGood}\n", - "[INFO] [1712656207.627817]: Subclasses: []\n", - "[INFO] [1712656207.628110]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.628604]: Instances: []\n", - "[INFO] [1712656207.628882]: Direct Instances: []\n", - "[INFO] [1712656207.629149]: Inverse Restrictions: []\n", - "[INFO] [1712656207.629402]: -------------------\n", - "[INFO] [1712656207.629640]: SOMA.BreadKnife \n", - "[INFO] [1712656207.629878]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712656207.630172]: Ancestors: {SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.BreadKnife, SOMA.DesignedTool}\n", - "[INFO] [1712656207.630440]: Subclasses: []\n", - "[INFO] [1712656207.630734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.631221]: Instances: []\n", - "[INFO] [1712656207.631507]: Direct Instances: []\n", - "[INFO] [1712656207.631770]: Inverse Restrictions: []\n", - "[INFO] [1712656207.632013]: -------------------\n", - "[INFO] [1712656207.632249]: SOMA.KitchenKnife \n", - "[INFO] [1712656207.632486]: Super classes: [SOMA.Knife]\n", - "[INFO] [1712656207.632738]: Ancestors: {SOMA.KitchenKnife, SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656207.633007]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", - "[INFO] [1712656207.633309]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.633809]: Instances: []\n", - "[INFO] [1712656207.634115]: Direct Instances: []\n", - "[INFO] [1712656207.634385]: Inverse Restrictions: []\n", - "[INFO] [1712656207.634629]: -------------------\n", - "[INFO] [1712656207.634876]: SOMA.BreakfastPlate \n", - "[INFO] [1712656207.635111]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712656207.635391]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, SOMA.BreakfastPlate, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656207.635658]: Subclasses: []\n", - "[INFO] [1712656207.635957]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.636448]: Instances: []\n", - "[INFO] [1712656207.636727]: Direct Instances: []\n", - "[INFO] [1712656207.636998]: Inverse Restrictions: []\n", - "[INFO] [1712656207.637241]: -------------------\n", - "[INFO] [1712656207.637483]: SOMA.Plate \n", - "[INFO] [1712656207.637719]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712656207.637965]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656207.638229]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", - "[INFO] [1712656207.638525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.639031]: Instances: []\n", - "[INFO] [1712656207.639373]: Direct Instances: []\n", - "[INFO] [1712656207.639650]: Inverse Restrictions: []\n", - "[INFO] [1712656207.639898]: -------------------\n", - "[INFO] [1712656207.640148]: SOMA.Building \n", - "[INFO] [1712656207.640384]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712656207.640660]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Building, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.640916]: Subclasses: []\n", - "[INFO] [1712656207.641203]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.641679]: Instances: []\n", - "[INFO] [1712656207.641949]: Direct Instances: []\n", - "[INFO] [1712656207.642202]: Inverse Restrictions: []\n", - "[INFO] [1712656207.642438]: -------------------\n", - "[INFO] [1712656207.642674]: SOMA.Deposition \n", - "[INFO] [1712656207.642953]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712656207.643209]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Deposition, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.643457]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712656207.643745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.644248]: Instances: []\n", - "[INFO] [1712656207.644512]: Direct Instances: []\n", - "[INFO] [1712656207.645213]: Inverse Restrictions: []\n", - "[INFO] [1712656207.645469]: -------------------\n", - "[INFO] [1712656207.645721]: SOMA.CanCut \n", - "[INFO] [1712656207.645998]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712656207.646281]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.646530]: Subclasses: []\n", - "[INFO] [1712656207.646823]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.647328]: Instances: []\n", - "[INFO] [1712656207.647594]: Direct Instances: []\n", - "[INFO] [1712656207.647850]: Inverse Restrictions: []\n", - "[INFO] [1712656207.648089]: -------------------\n", - "[INFO] [1712656207.648326]: SOMA.Variability \n", - "[INFO] [1712656207.648598]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712656207.648862]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.649132]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712656207.649427]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.649943]: Instances: []\n", - "[INFO] [1712656207.650214]: Direct Instances: []\n", - "[INFO] [1712656207.650474]: Inverse Restrictions: []\n", - "[INFO] [1712656207.650711]: -------------------\n", - "[INFO] [1712656207.650950]: SOMA.Cutter \n", - "[INFO] [1712656207.651183]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712656207.651473]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Cutter, DUL.Entity, SOMA.Tool}\n", - "[INFO] [1712656207.651725]: Subclasses: []\n", - "[INFO] [1712656207.652012]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.652518]: Instances: []\n", - "[INFO] [1712656207.652818]: Direct Instances: []\n", - "[INFO] [1712656207.653242]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712656207.653531]: -------------------\n", - "[INFO] [1712656207.653795]: SOMA.CutObject \n", - "[INFO] [1712656207.654047]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712656207.654328]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.CutObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.654581]: Subclasses: []\n", - "[INFO] [1712656207.654881]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.655392]: Instances: []\n", - "[INFO] [1712656207.655668]: Direct Instances: []\n", - "[INFO] [1712656207.656006]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712656207.656263]: -------------------\n", - "[INFO] [1712656207.656509]: SOMA.Capability \n", - "[INFO] [1712656207.658237]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712656207.658541]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.658813]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712656207.659122]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.659634]: Instances: []\n", - "[INFO] [1712656207.659914]: Direct Instances: []\n", - "[INFO] [1712656207.660173]: Inverse Restrictions: []\n", - "[INFO] [1712656207.660421]: -------------------\n", - "[INFO] [1712656207.660662]: SOMA.Capacity \n", - "[INFO] [1712656207.660925]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656207.661199]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Capacity, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.661447]: Subclasses: []\n", - "[INFO] [1712656207.661737]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.662247]: Instances: []\n", - "[INFO] [1712656207.662518]: Direct Instances: []\n", - "[INFO] [1712656207.663193]: Inverse Restrictions: []\n", - "[INFO] [1712656207.663481]: -------------------\n", - "[INFO] [1712656207.663744]: SOMA.Intrinsic \n", - "[INFO] [1712656207.663995]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712656207.664243]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.664506]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712656207.664795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.665365]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712656207.665653]: Direct Instances: []\n", - "[INFO] [1712656207.665919]: Inverse Restrictions: []\n", - "[INFO] [1712656207.666165]: -------------------\n", - "[INFO] [1712656207.666412]: SOMA.Carafe \n", - "[INFO] [1712656207.666666]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712656207.666940]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Carafe, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.667195]: Subclasses: [SOMA.CoffeeCarafe]\n", - "[INFO] [1712656207.667486]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.667971]: Instances: []\n", - "[INFO] [1712656207.668248]: Direct Instances: []\n", - "[INFO] [1712656207.668509]: Inverse Restrictions: []\n", - "[INFO] [1712656207.668752]: -------------------\n", - "[INFO] [1712656207.668999]: SOMA.Catching \n", - "[INFO] [1712656207.669238]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656207.669512]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Catching, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656207.669766]: Subclasses: []\n", - "[INFO] [1712656207.670068]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.670571]: Instances: []\n", - "[INFO] [1712656207.670844]: Direct Instances: []\n", - "[INFO] [1712656207.671093]: Inverse Restrictions: []\n", - "[INFO] [1712656207.671332]: -------------------\n", - "[INFO] [1712656207.671578]: SOMA.PickingUp \n", - "[INFO] [1712656207.671821]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656207.672092]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PickingUp}\n", - "[INFO] [1712656207.672353]: Subclasses: []\n", - "[INFO] [1712656207.672647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.673143]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712656207.673409]: Direct Instances: [SOMA.picking_up]\n", - "[INFO] [1712656207.673658]: Inverse Restrictions: []\n", - "[INFO] [1712656207.673903]: -------------------\n", - "[INFO] [1712656207.674142]: SOMA.CausalEventRole \n", - "[INFO] [1712656207.674375]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712656207.674633]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.CausalEventRole, DUL.Entity}\n", - "[INFO] [1712656207.674889]: Subclasses: []\n", - "[INFO] [1712656207.675174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.675660]: Instances: []\n", - "[INFO] [1712656207.675932]: Direct Instances: []\n", - "[INFO] [1712656207.676320]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656207.676578]: -------------------\n", - "[INFO] [1712656207.676824]: SOMA.EventAdjacentRole \n", - "[INFO] [1712656207.677066]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712656207.677320]: Ancestors: {DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.677585]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712656207.677885]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.678548]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656207.678831]: Direct Instances: []\n", - "[INFO] [1712656207.679095]: Inverse Restrictions: []\n", - "[INFO] [1712656207.679336]: -------------------\n", - "[INFO] [1712656207.679578]: SOMA.CausedMotionTheory \n", - "[INFO] [1712656207.679859]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712656207.680197]: Ancestors: {SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.680461]: Subclasses: []\n", - "[INFO] [1712656207.680764]: Properties: [rdf-schema.isDefinedBy, DUL.defines, rdf-schema.label, rdf-schema.comment, DUL.hasPart]\n", - "[INFO] [1712656207.681257]: Instances: []\n", - "[INFO] [1712656207.681535]: Direct Instances: []\n", - "[INFO] [1712656207.681791]: Inverse Restrictions: []\n", - "[INFO] [1712656207.682029]: -------------------\n", - "[INFO] [1712656207.682267]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712656207.682508]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712656207.682765]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.683025]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712656207.683321]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.683852]: Instances: []\n", - "[INFO] [1712656207.684223]: Direct Instances: []\n", - "[INFO] [1712656207.684628]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", - "[INFO] [1712656207.684938]: -------------------\n", - "[INFO] [1712656207.685223]: SOMA.PerformerRole \n", - "[INFO] [1712656207.685535]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712656207.685881]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", - "[INFO] [1712656207.686197]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712656207.686543]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.687098]: Instances: []\n", - "[INFO] [1712656207.687417]: Direct Instances: []\n", - "[INFO] [1712656207.687785]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656207.688051]: -------------------\n", - "[INFO] [1712656207.688297]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712656207.688591]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712656207.688918]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.SourcePathGoalTheory}\n", - "[INFO] [1712656207.689198]: Subclasses: []\n", - "[INFO] [1712656207.689530]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656207.690062]: Instances: []\n", - "[INFO] [1712656207.690363]: Direct Instances: []\n", - "[INFO] [1712656207.690693]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656207.690967]: -------------------\n", - "[INFO] [1712656207.691213]: SOMA.Ceiling \n", - "[INFO] [1712656207.691481]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712656207.691822]: Ancestors: {SOMA.Ceiling, SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.692093]: Subclasses: []\n", - "[INFO] [1712656207.692421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.692954]: Instances: []\n", - "[INFO] [1712656207.693255]: Direct Instances: []\n", - "[INFO] [1712656207.693535]: Inverse Restrictions: []\n", - "[INFO] [1712656207.693790]: -------------------\n", - "[INFO] [1712656207.694036]: SOMA.RoomSurface \n", - "[INFO] [1712656207.694284]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712656207.694560]: Ancestors: {SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.694834]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712656207.695150]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.695690]: Instances: []\n", - "[INFO] [1712656207.695985]: Direct Instances: []\n", - "[INFO] [1712656207.696244]: Inverse Restrictions: []\n", - "[INFO] [1712656207.696476]: -------------------\n", - "[INFO] [1712656207.696722]: SOMA.Floor \n", - "[INFO] [1712656207.696995]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712656207.697282]: Ancestors: {SOMA.Floor, SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.697534]: Subclasses: []\n", - "[INFO] [1712656207.697837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.698325]: Instances: []\n", - "[INFO] [1712656207.698624]: Direct Instances: []\n", - "[INFO] [1712656207.698887]: Inverse Restrictions: []\n", - "[INFO] [1712656207.699121]: -------------------\n", - "[INFO] [1712656207.699352]: SOMA.Wall \n", - "[INFO] [1712656207.699577]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712656207.699847]: Ancestors: {SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity, SOMA.Wall}\n", - "[INFO] [1712656207.700100]: Subclasses: []\n", - "[INFO] [1712656207.700392]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.700880]: Instances: []\n", - "[INFO] [1712656207.701139]: Direct Instances: []\n", - "[INFO] [1712656207.701389]: Inverse Restrictions: []\n", - "[INFO] [1712656207.701630]: -------------------\n", - "[INFO] [1712656207.701860]: SOMA.CeramicCooktop \n", - "[INFO] [1712656207.702087]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712656207.702368]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.CeramicCooktop, DUL.Object, owl.Thing, SOMA.ElectricCooktop, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.702618]: Subclasses: []\n", - "[INFO] [1712656207.702911]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.703397]: Instances: []\n", - "[INFO] [1712656207.703646]: Direct Instances: []\n", - "[INFO] [1712656207.703885]: Inverse Restrictions: []\n", - "[INFO] [1712656207.704123]: -------------------\n", - "[INFO] [1712656207.704354]: SOMA.ElectricCooktop \n", - "[INFO] [1712656207.704580]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712656207.704822]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.ElectricCooktop, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.705086]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", - "[INFO] [1712656207.705375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.705864]: Instances: []\n", - "[INFO] [1712656207.706140]: Direct Instances: []\n", - "[INFO] [1712656207.706398]: Inverse Restrictions: []\n", - "[INFO] [1712656207.706632]: -------------------\n", - "[INFO] [1712656207.706863]: SOMA.CerealBox \n", - "[INFO] [1712656207.707088]: Super classes: [SOMA.Box]\n", - "[INFO] [1712656207.707350]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Box, SOMA.CerealBox, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.707612]: Subclasses: []\n", - "[INFO] [1712656207.707902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.708386]: Instances: []\n", - "[INFO] [1712656207.708635]: Direct Instances: []\n", - "[INFO] [1712656207.708884]: Inverse Restrictions: []\n", - "[INFO] [1712656207.709112]: -------------------\n", - "[INFO] [1712656207.709350]: SOMA.Channel \n", - "[INFO] [1712656207.709619]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712656207.709908]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.Channel, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.PathRole, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.710152]: Subclasses: []\n", - "[INFO] [1712656207.710446]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.710951]: Instances: []\n", - "[INFO] [1712656207.711214]: Direct Instances: []\n", - "[INFO] [1712656207.711541]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656207.711784]: -------------------\n", - "[INFO] [1712656207.712015]: SOMA.PathRole \n", - "[INFO] [1712656207.712252]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712656207.712499]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.PathRole, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.712749]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712656207.713042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.713546]: Instances: []\n", - "[INFO] [1712656207.713830]: Direct Instances: []\n", - "[INFO] [1712656207.714133]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712656207.714378]: -------------------\n", - "[INFO] [1712656207.714610]: SOMA.CommunicationTask \n", - "[INFO] [1712656207.715657]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712656207.715977]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.716254]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712656207.716559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712656207.717059]: Instances: []\n", - "[INFO] [1712656207.717324]: Direct Instances: []\n", - "[INFO] [1712656207.718192]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", - "[INFO] [1712656207.718452]: -------------------\n", - "[INFO] [1712656207.718690]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712656207.718920]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712656207.719179]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", - "[INFO] [1712656207.719439]: Subclasses: []\n", - "[INFO] [1712656207.719730]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.720214]: Instances: []\n", - "[INFO] [1712656207.720468]: Direct Instances: []\n", - "[INFO] [1712656207.720710]: Inverse Restrictions: []\n", - "[INFO] [1712656207.721231]: -------------------\n", - "[INFO] [1712656207.721689]: SOMA.ChemicalProcess \n", - "[INFO] [1712656207.722103]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712656207.722574]: Ancestors: {DUL.Process, owl.Thing, SOMA.ChemicalProcess, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656207.722978]: Subclasses: []\n", - "[INFO] [1712656207.723476]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.724291]: Instances: []\n", - "[INFO] [1712656207.724695]: Direct Instances: []\n", - "[INFO] [1712656207.725097]: Inverse Restrictions: []\n", - "[INFO] [1712656207.725483]: -------------------\n", - "[INFO] [1712656207.725868]: SOMA.Choice \n", - "[INFO] [1712656207.726249]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712656207.726707]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.Choice, SOMA.EventAdjacentRole, DUL.Object, SOMA.ResultRole, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.727096]: Subclasses: []\n", - "[INFO] [1712656207.727569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.728370]: Instances: []\n", - "[INFO] [1712656207.728786]: Direct Instances: []\n", - "[INFO] [1712656207.729184]: Inverse Restrictions: []\n", - "[INFO] [1712656207.729564]: -------------------\n", - "[INFO] [1712656207.729942]: SOMA.ResultRole \n", - "[INFO] [1712656207.730627]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712656207.731140]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.ResultRole, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.731627]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712656207.732128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.732960]: Instances: []\n", - "[INFO] [1712656207.733402]: Direct Instances: []\n", - "[INFO] [1712656207.733814]: Inverse Restrictions: []\n", - "[INFO] [1712656207.734201]: -------------------\n", - "[INFO] [1712656207.734604]: SOMA.CircularCylinder \n", - "[INFO] [1712656207.735046]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712656207.735499]: Ancestors: {SOMA.CircularCylinder, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.735904]: Subclasses: []\n", - "[INFO] [1712656207.736388]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712656207.737178]: Instances: []\n", - "[INFO] [1712656207.737564]: Direct Instances: []\n", - "[INFO] [1712656207.737926]: Inverse Restrictions: []\n", - "[INFO] [1712656207.738274]: -------------------\n", - "[INFO] [1712656207.738627]: SOMA.CylinderShape \n", - "[INFO] [1712656207.739031]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712656207.739406]: Ancestors: {SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.739769]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712656207.740215]: Properties: [SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.label, rdf-schema.comment, SOMA.hasLength]\n", - "[INFO] [1712656207.740934]: Instances: []\n", - "[INFO] [1712656207.741305]: Direct Instances: []\n", - "[INFO] [1712656207.741618]: Inverse Restrictions: []\n", - "[INFO] [1712656207.741893]: -------------------\n", - "[INFO] [1712656207.742146]: SOMA.Classifier \n", - "[INFO] [1712656207.742398]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712656207.742721]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Classifier, DUL.Entity, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", - "[INFO] [1712656207.742984]: Subclasses: []\n", - "[INFO] [1712656207.743295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656207.743814]: Instances: []\n", - "[INFO] [1712656207.744102]: Direct Instances: []\n", - "[INFO] [1712656207.744361]: Inverse Restrictions: []\n", - "[INFO] [1712656207.744601]: -------------------\n", - "[INFO] [1712656207.744894]: SOMA.StatisticalReasoner \n", - "[INFO] [1712656207.745288]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712656207.745681]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", - "[INFO] [1712656207.745977]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712656207.746285]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656207.746795]: Instances: []\n", - "[INFO] [1712656207.747087]: Direct Instances: []\n", - "[INFO] [1712656207.747358]: Inverse Restrictions: []\n", - "[INFO] [1712656207.747596]: -------------------\n", - "[INFO] [1712656207.747829]: SOMA.ClausalObject \n", - "[INFO] [1712656207.748059]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712656207.748308]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656207.748579]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712656207.748898]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.749394]: Instances: []\n", - "[INFO] [1712656207.749660]: Direct Instances: []\n", - "[INFO] [1712656207.749928]: Inverse Restrictions: []\n", - "[INFO] [1712656207.750165]: -------------------\n", - "[INFO] [1712656207.750395]: SOMA.Phrase \n", - "[INFO] [1712656207.750622]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712656207.750861]: Ancestors: {DUL.InformationEntity, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656207.751125]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712656207.751418]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.751914]: Instances: []\n", - "[INFO] [1712656207.752212]: Direct Instances: []\n", - "[INFO] [1712656207.752478]: Inverse Restrictions: []\n", - "[INFO] [1712656207.752717]: -------------------\n", - "[INFO] [1712656207.753073]: SOMA.Clean \n", - "[INFO] [1712656207.753423]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712656207.753817]: Ancestors: {SOMA.Clean, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", - "[INFO] [1712656207.754198]: Subclasses: []\n", - "[INFO] [1712656207.754615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.755224]: Instances: []\n", - "[INFO] [1712656207.755604]: Direct Instances: []\n", - "[INFO] [1712656207.756340]: Inverse Restrictions: []\n", - "[INFO] [1712656207.756627]: -------------------\n", - "[INFO] [1712656207.756887]: SOMA.CleanlinessRegion \n", - "[INFO] [1712656207.757129]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656207.757370]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", - "[INFO] [1712656207.757625]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712656207.757931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.758430]: Instances: []\n", - "[INFO] [1712656207.758700]: Direct Instances: []\n", - "[INFO] [1712656207.759036]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712656207.759296]: -------------------\n", - "[INFO] [1712656207.759538]: SOMA.Cleaning \n", - "[INFO] [1712656207.759802]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712656207.760081]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Cleaning, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656207.760322]: Subclasses: []\n", - "[INFO] [1712656207.760605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656207.761108]: Instances: []\n", - "[INFO] [1712656207.761382]: Direct Instances: []\n", - "[INFO] [1712656207.761629]: Inverse Restrictions: []\n", - "[INFO] [1712656207.761860]: -------------------\n", - "[INFO] [1712656207.762087]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712656207.762313]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656207.762562]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656207.762825]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712656207.763110]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.763628]: Instances: []\n", - "[INFO] [1712656207.763924]: Direct Instances: []\n", - "[INFO] [1712656207.764205]: Inverse Restrictions: []\n", - "[INFO] [1712656207.764449]: -------------------\n", - "[INFO] [1712656207.764684]: SOMA.Purification \n", - "[INFO] [1712656207.765747]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712656207.766079]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition, SOMA.Purification}\n", - "[INFO] [1712656207.766345]: Subclasses: []\n", - "[INFO] [1712656207.766644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.767137]: Instances: []\n", - "[INFO] [1712656207.767416]: Direct Instances: []\n", - "[INFO] [1712656207.767973]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712656207.768427]: -------------------\n", - "[INFO] [1712656207.768846]: SOMA.Cleanliness \n", - "[INFO] [1712656207.769172]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712656207.769471]: Ancestors: {DUL.Quality, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.769735]: Subclasses: []\n", - "[INFO] [1712656207.770037]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712656207.770535]: Instances: []\n", - "[INFO] [1712656207.770869]: Direct Instances: []\n", - "[INFO] [1712656207.771246]: Inverse Restrictions: []\n", - "[INFO] [1712656207.771514]: -------------------\n", - "[INFO] [1712656207.771764]: SOMA.SocialQuality \n", - "[INFO] [1712656207.772022]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712656207.772279]: Ancestors: {SOMA.SocialQuality, DUL.Entity, DUL.Quality, owl.Thing}\n", - "[INFO] [1712656207.772548]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712656207.772853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.773359]: Instances: []\n", - "[INFO] [1712656207.773647]: Direct Instances: []\n", - "[INFO] [1712656207.773917]: Inverse Restrictions: []\n", - "[INFO] [1712656207.774389]: -------------------\n", - "[INFO] [1712656207.774798]: SOMA.Client-Server_Specification \n", - "[INFO] [1712656207.776001]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712656207.776522]: Ancestors: {DUL.Design, SOMA.Client-Server_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.776988]: Subclasses: []\n", - "[INFO] [1712656207.777482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", - "[INFO] [1712656207.778159]: Instances: []\n", - "[INFO] [1712656207.778625]: Direct Instances: []\n", - "[INFO] [1712656207.779149]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712656207.779517]: -------------------\n", - "[INFO] [1712656207.779939]: SOMA.ClientRole \n", - "[INFO] [1712656207.780361]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712656207.781743]: Ancestors: {DUL.Concept, SOMA.ClientRole, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656207.782170]: Subclasses: []\n", - "[INFO] [1712656207.782592]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", - "[INFO] [1712656207.783196]: Instances: []\n", - "[INFO] [1712656207.783576]: Direct Instances: []\n", - "[INFO] [1712656207.783997]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712656207.784358]: -------------------\n", - "[INFO] [1712656207.784707]: SOMA.ServerRole \n", - "[INFO] [1712656207.785058]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712656207.785365]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ServerRole, SOMA.SoftwareRole}\n", - "[INFO] [1712656207.785616]: Subclasses: []\n", - "[INFO] [1712656207.785936]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", - "[INFO] [1712656207.786428]: Instances: []\n", - "[INFO] [1712656207.786691]: Direct Instances: []\n", - "[INFO] [1712656207.787006]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712656207.787258]: -------------------\n", - "[INFO] [1712656207.787503]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712656207.787737]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656207.787983]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656207.788334]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712656207.788693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656207.789261]: Instances: []\n", - "[INFO] [1712656207.789549]: Direct Instances: []\n", - "[INFO] [1712656207.789821]: Inverse Restrictions: []\n", - "[INFO] [1712656207.790057]: -------------------\n", - "[INFO] [1712656207.790292]: SOMA.Closing \n", - "[INFO] [1712656207.790522]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656207.790792]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Closing, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656207.791045]: Subclasses: []\n", - "[INFO] [1712656207.791354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.791842]: Instances: []\n", - "[INFO] [1712656207.792114]: Direct Instances: []\n", - "[INFO] [1712656207.792378]: Inverse Restrictions: []\n", - "[INFO] [1712656207.792619]: -------------------\n", - "[INFO] [1712656207.792860]: SOMA.Delivering \n", - "[INFO] [1712656207.793127]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712656207.793403]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Delivering, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656207.793660]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712656207.793973]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656207.794470]: Instances: []\n", - "[INFO] [1712656207.794727]: Direct Instances: []\n", - "[INFO] [1712656207.794990]: Inverse Restrictions: []\n", - "[INFO] [1712656207.795237]: -------------------\n", - "[INFO] [1712656207.795475]: SOMA.Fetching \n", - "[INFO] [1712656207.795710]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712656207.796008]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Fetching, DUL.EventType, SOMA.PhysicalAcquiring, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656207.796289]: Subclasses: []\n", - "[INFO] [1712656207.796607]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.797119]: Instances: []\n", - "[INFO] [1712656207.797405]: Direct Instances: []\n", - "[INFO] [1712656207.797669]: Inverse Restrictions: []\n", - "[INFO] [1712656207.797905]: -------------------\n", - "[INFO] [1712656207.798138]: SOMA.Lifting \n", - "[INFO] [1712656207.798370]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656207.798655]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Lifting, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656207.798907]: Subclasses: []\n", - "[INFO] [1712656207.799212]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.799707]: Instances: []\n", - "[INFO] [1712656207.800002]: Direct Instances: []\n", - "[INFO] [1712656207.800278]: Inverse Restrictions: []\n", - "[INFO] [1712656207.800519]: -------------------\n", - "[INFO] [1712656207.800751]: SOMA.Opening \n", - "[INFO] [1712656207.800998]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656207.801283]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Opening}\n", - "[INFO] [1712656207.801549]: Subclasses: []\n", - "[INFO] [1712656207.801859]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.802346]: Instances: []\n", - "[INFO] [1712656207.802617]: Direct Instances: []\n", - "[INFO] [1712656207.802884]: Inverse Restrictions: []\n", - "[INFO] [1712656207.803123]: -------------------\n", - "[INFO] [1712656207.803354]: SOMA.Pulling \n", - "[INFO] [1712656207.803586]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656207.803856]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Pulling, SOMA.Actuating}\n", - "[INFO] [1712656207.804116]: Subclasses: []\n", - "[INFO] [1712656207.804419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.804915]: Instances: []\n", - "[INFO] [1712656207.805186]: Direct Instances: []\n", - "[INFO] [1712656207.805457]: Inverse Restrictions: []\n", - "[INFO] [1712656207.805696]: -------------------\n", - "[INFO] [1712656207.805926]: SOMA.Pushing \n", - "[INFO] [1712656207.806157]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656207.806425]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656207.806705]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712656207.807013]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.807643]: Instances: []\n", - "[INFO] [1712656207.808021]: Direct Instances: []\n", - "[INFO] [1712656207.808291]: Inverse Restrictions: []\n", - "[INFO] [1712656207.808540]: -------------------\n", - "[INFO] [1712656207.808805]: SOMA.Squeezing \n", - "[INFO] [1712656207.809294]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656207.809689]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Squeezing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656207.810050]: Subclasses: []\n", - "[INFO] [1712656207.810447]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.811028]: Instances: []\n", - "[INFO] [1712656207.811382]: Direct Instances: []\n", - "[INFO] [1712656207.811748]: Inverse Restrictions: []\n", - "[INFO] [1712656207.812095]: -------------------\n", - "[INFO] [1712656207.812439]: SOMA.ClosingDisposition \n", - "[INFO] [1712656207.812780]: Super classes: [SOMA.Linkage]\n", - "[INFO] [1712656207.813180]: Ancestors: {SOMA.ClosingDisposition, SOMA.Extrinsic, SOMA.Linkage, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.813537]: Subclasses: []\n", - "[INFO] [1712656207.813934]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.814522]: Instances: []\n", - "[INFO] [1712656207.814901]: Direct Instances: []\n", - "[INFO] [1712656207.815249]: Inverse Restrictions: []\n", - "[INFO] [1712656207.815593]: -------------------\n", - "[INFO] [1712656207.815941]: SOMA.Linkage \n", - "[INFO] [1712656207.816320]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712656207.816677]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Linkage, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.817079]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712656207.817515]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.818135]: Instances: []\n", - "[INFO] [1712656207.818538]: Direct Instances: []\n", - "[INFO] [1712656207.818930]: Inverse Restrictions: []\n", - "[INFO] [1712656207.819293]: -------------------\n", - "[INFO] [1712656207.819651]: SOMA.Clumsiness \n", - "[INFO] [1712656207.819910]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712656207.820200]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Clumsiness, DUL.Diagnosis}\n", - "[INFO] [1712656207.820458]: Subclasses: []\n", - "[INFO] [1712656207.820750]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.821254]: Instances: []\n", - "[INFO] [1712656207.821535]: Direct Instances: []\n", - "[INFO] [1712656207.821787]: Inverse Restrictions: []\n", - "[INFO] [1712656207.822024]: -------------------\n", - "[INFO] [1712656207.822258]: SOMA.CoffeeCarafe \n", - "[INFO] [1712656207.822487]: Super classes: [SOMA.Carafe]\n", - "[INFO] [1712656207.822758]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Carafe, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.CoffeeCarafe, DUL.Entity}\n", - "[INFO] [1712656207.823020]: Subclasses: []\n", - "[INFO] [1712656207.823317]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.823804]: Instances: []\n", - "[INFO] [1712656207.824083]: Direct Instances: []\n", - "[INFO] [1712656207.824335]: Inverse Restrictions: []\n", - "[INFO] [1712656207.824569]: -------------------\n", - "[INFO] [1712656207.824805]: SOMA.CoffeeTable \n", - "[INFO] [1712656207.825037]: Super classes: [SOMA.Table]\n", - "[INFO] [1712656207.825305]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Table, DUL.Object, owl.Thing, SOMA.CoffeeTable, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656207.825557]: Subclasses: []\n", - "[INFO] [1712656207.825861]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.826413]: Instances: []\n", - "[INFO] [1712656207.826722]: Direct Instances: []\n", - "[INFO] [1712656207.826978]: Inverse Restrictions: []\n", - "[INFO] [1712656207.827229]: -------------------\n", - "[INFO] [1712656207.827498]: SOMA.CognitiveAgent \n", - "[INFO] [1712656207.827758]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712656207.828030]: Ancestors: {DUL.Agent, SOMA.CognitiveAgent, DUL.Object, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.828281]: Subclasses: []\n", - "[INFO] [1712656207.828586]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.829101]: Instances: []\n", - "[INFO] [1712656207.829396]: Direct Instances: []\n", - "[INFO] [1712656207.829656]: Inverse Restrictions: []\n", - "[INFO] [1712656207.829899]: -------------------\n", - "[INFO] [1712656207.830135]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712656207.830384]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712656207.830663]: Ancestors: {SOMA.SubCognitiveAgent, DUL.Agent, DUL.Object, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.830928]: Subclasses: []\n", - "[INFO] [1712656207.831221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.831717]: Instances: []\n", - "[INFO] [1712656207.831984]: Direct Instances: []\n", - "[INFO] [1712656207.832241]: Inverse Restrictions: []\n", - "[INFO] [1712656207.832515]: -------------------\n", - "[INFO] [1712656207.832775]: SOMA.CoilCooktop \n", - "[INFO] [1712656207.833028]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712656207.833304]: Ancestors: {SOMA.CoilCooktop, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.ElectricCooktop, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.833555]: Subclasses: []\n", - "[INFO] [1712656207.833845]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.834337]: Instances: []\n", - "[INFO] [1712656207.834612]: Direct Instances: []\n", - "[INFO] [1712656207.834863]: Inverse Restrictions: []\n", - "[INFO] [1712656207.835096]: -------------------\n", - "[INFO] [1712656207.835325]: SOMA.Collision \n", - "[INFO] [1712656207.835565]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712656207.835842]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType, SOMA.Collision}\n", - "[INFO] [1712656207.836087]: Subclasses: []\n", - "[INFO] [1712656207.836374]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.836887]: Instances: []\n", - "[INFO] [1712656207.837190]: Direct Instances: []\n", - "[INFO] [1712656207.837457]: Inverse Restrictions: []\n", - "[INFO] [1712656207.837690]: -------------------\n", - "[INFO] [1712656207.837924]: SOMA.Extrinsic \n", - "[INFO] [1712656207.838152]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712656207.838391]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656207.838661]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712656207.838966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.839509]: Instances: []\n", - "[INFO] [1712656207.839793]: Direct Instances: []\n", - "[INFO] [1712656207.840062]: Inverse Restrictions: []\n", - "[INFO] [1712656207.840299]: -------------------\n", - "[INFO] [1712656207.840533]: SOMA.ImperativeClause \n", - "[INFO] [1712656207.840815]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712656207.841119]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, SOMA.ImperativeClause, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656207.841376]: Subclasses: []\n", - "[INFO] [1712656207.841675]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.expresses, rdf-schema.label]\n", - "[INFO] [1712656207.842162]: Instances: []\n", - "[INFO] [1712656207.842422]: Direct Instances: []\n", - "[INFO] [1712656207.842736]: Inverse Restrictions: []\n", - "[INFO] [1712656207.842973]: -------------------\n", - "[INFO] [1712656207.843204]: SOMA.CommitedObject \n", - "[INFO] [1712656207.843430]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712656207.843705]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.CommitedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.843964]: Subclasses: []\n", - "[INFO] [1712656207.844256]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.844739]: Instances: []\n", - "[INFO] [1712656207.845001]: Direct Instances: []\n", - "[INFO] [1712656207.845237]: Inverse Restrictions: []\n", - "[INFO] [1712656207.845461]: -------------------\n", - "[INFO] [1712656207.845692]: SOMA.ConnectedObject \n", - "[INFO] [1712656207.845927]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656207.846169]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.846422]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712656207.846706]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.847207]: Instances: []\n", - "[INFO] [1712656207.847471]: Direct Instances: []\n", - "[INFO] [1712656207.847836]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712656207.848082]: -------------------\n", - "[INFO] [1712656207.848312]: SOMA.CommunicationAction \n", - "[INFO] [1712656207.848582]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712656207.848867]: Ancestors: {SOMA.CommunicationAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656207.849114]: Subclasses: []\n", - "[INFO] [1712656207.849406]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656207.849901]: Instances: []\n", - "[INFO] [1712656207.850160]: Direct Instances: []\n", - "[INFO] [1712656207.851190]: Inverse Restrictions: []\n", - "[INFO] [1712656207.851432]: -------------------\n", - "[INFO] [1712656207.851676]: SOMA.LinguisticObject \n", - "[INFO] [1712656207.851907]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712656207.852143]: Ancestors: {DUL.InformationEntity, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656207.852391]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712656207.852674]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656207.853291]: Instances: []\n", - "[INFO] [1712656207.853656]: Direct Instances: []\n", - "[INFO] [1712656207.853993]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712656207.854264]: -------------------\n", - "[INFO] [1712656207.854513]: SOMA.CommunicationReport \n", - "[INFO] [1712656207.854766]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656207.855054]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.855323]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712656207.855621]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.856111]: Instances: []\n", - "[INFO] [1712656207.856382]: Direct Instances: []\n", - "[INFO] [1712656207.856644]: Inverse Restrictions: []\n", - "[INFO] [1712656207.856887]: -------------------\n", - "[INFO] [1712656207.857117]: SOMA.Receiver \n", - "[INFO] [1712656207.857352]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712656207.857644]: Ancestors: {DUL.Concept, SOMA.ExperiencerRole, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Receiver, SOMA.PerformerRole}\n", - "[INFO] [1712656207.857898]: Subclasses: []\n", - "[INFO] [1712656207.858189]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.858692]: Instances: []\n", - "[INFO] [1712656207.858963]: Direct Instances: []\n", - "[INFO] [1712656207.859287]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656207.859536]: -------------------\n", - "[INFO] [1712656207.859776]: SOMA.Sender \n", - "[INFO] [1712656207.860015]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712656207.860288]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.Sender, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", - "[INFO] [1712656207.860525]: Subclasses: []\n", - "[INFO] [1712656207.860815]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.861320]: Instances: []\n", - "[INFO] [1712656207.861593]: Direct Instances: []\n", - "[INFO] [1712656207.861931]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656207.862181]: -------------------\n", - "[INFO] [1712656207.862421]: SOMA.CommunicationTopic \n", - "[INFO] [1712656207.863452]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712656207.863749]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.864015]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656207.864308]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.864839]: Instances: []\n", - "[INFO] [1712656207.865123]: Direct Instances: []\n", - "[INFO] [1712656207.865385]: Inverse Restrictions: []\n", - "[INFO] [1712656207.865630]: -------------------\n", - "[INFO] [1712656207.865866]: SOMA.ResourceRole \n", - "[INFO] [1712656207.866098]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656207.866340]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.866613]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712656207.866908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.867458]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656207.867733]: Direct Instances: []\n", - "[INFO] [1712656207.868003]: Inverse Restrictions: []\n", - "[INFO] [1712656207.868262]: -------------------\n", - "[INFO] [1712656207.868498]: SOMA.Compartment \n", - "[INFO] [1712656207.868728]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656207.869010]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart, SOMA.Compartment}\n", - "[INFO] [1712656207.869287]: Subclasses: [SOMA.FreezerCompartment]\n", - "[INFO] [1712656207.869584]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.870085]: Instances: []\n", - "[INFO] [1712656207.870375]: Direct Instances: []\n", - "[INFO] [1712656207.870650]: Inverse Restrictions: []\n", - "[INFO] [1712656207.870888]: -------------------\n", - "[INFO] [1712656207.871122]: SOMA.Composing \n", - "[INFO] [1712656207.871358]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712656207.871627]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Composing, SOMA.Disposition}\n", - "[INFO] [1712656207.871895]: Subclasses: []\n", - "[INFO] [1712656207.872197]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.872691]: Instances: []\n", - "[INFO] [1712656207.872960]: Direct Instances: []\n", - "[INFO] [1712656207.873265]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712656207.873525]: -------------------\n", - "[INFO] [1712656207.873768]: SOMA.Computer_Language \n", - "[INFO] [1712656207.874001]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712656207.874242]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656207.874500]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712656207.874794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.875319]: Instances: []\n", - "[INFO] [1712656207.875592]: Direct Instances: []\n", - "[INFO] [1712656207.875855]: Inverse Restrictions: []\n", - "[INFO] [1712656207.876093]: -------------------\n", - "[INFO] [1712656207.876328]: SOMA.FormalLanguage \n", - "[INFO] [1712656207.876585]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712656207.876906]: Ancestors: {SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656207.877396]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656207.877835]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.878477]: Instances: []\n", - "[INFO] [1712656207.878866]: Direct Instances: []\n", - "[INFO] [1712656207.879304]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712656207.879683]: -------------------\n", - "[INFO] [1712656207.880043]: SOMA.Computer_Program \n", - "[INFO] [1712656207.880396]: Super classes: [owl.Thing]\n", - "[INFO] [1712656207.882568]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", - "[INFO] [1712656207.882880]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712656207.883313]: Properties: [rdf-schema.isDefinedBy, DUL.expresses, rdf-schema.label, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656207.883845]: Instances: []\n", - "[INFO] [1712656207.884129]: Direct Instances: []\n", - "[INFO] [1712656207.885960]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712656207.886224]: -------------------\n", - "[INFO] [1712656207.886467]: SOMA.Programming_Language \n", - "[INFO] [1712656207.886706]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712656207.886979]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, SOMA.Programming_Language, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656207.887254]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712656207.887553]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.888046]: Instances: []\n", - "[INFO] [1712656207.888309]: Direct Instances: []\n", - "[INFO] [1712656207.888625]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712656207.888879]: -------------------\n", - "[INFO] [1712656207.889123]: SOMA.Conclusion \n", - "[INFO] [1712656207.889363]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712656207.889654]: Ancestors: {DUL.Concept, SOMA.Conclusion, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.CreatedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.889915]: Subclasses: []\n", - "[INFO] [1712656207.890210]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.890694]: Instances: []\n", - "[INFO] [1712656207.890947]: Direct Instances: []\n", - "[INFO] [1712656207.891997]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656207.892269]: -------------------\n", - "[INFO] [1712656207.892511]: SOMA.CreatedObject \n", - "[INFO] [1712656207.892743]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656207.892995]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.CreatedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.893251]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712656207.893551]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.894044]: Instances: []\n", - "[INFO] [1712656207.894300]: Direct Instances: []\n", - "[INFO] [1712656207.894684]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712656207.894937]: -------------------\n", - "[INFO] [1712656207.895174]: SOMA.Knowledge \n", - "[INFO] [1712656207.895407]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712656207.895654]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.895923]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712656207.896217]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.896711]: Instances: []\n", - "[INFO] [1712656207.896991]: Direct Instances: []\n", - "[INFO] [1712656207.898158]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712656207.898416]: -------------------\n", - "[INFO] [1712656207.898655]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712656207.898898]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712656207.899185]: Ancestors: {DUL.Relation, DUL.Description, DUL.Object, owl.Thing, SOMA.Succedence, DUL.SocialObject, DUL.Entity, SOMA.ConditionalSuccedence}\n", - "[INFO] [1712656207.899446]: Subclasses: []\n", - "[INFO] [1712656207.899740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.900224]: Instances: []\n", - "[INFO] [1712656207.900492]: Direct Instances: []\n", - "[INFO] [1712656207.900748]: Inverse Restrictions: []\n", - "[INFO] [1712656207.901008]: -------------------\n", - "[INFO] [1712656207.901243]: SOMA.Configuration \n", - "[INFO] [1712656207.901481]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712656207.901759]: Ancestors: {SOMA.Configuration, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.902000]: Subclasses: []\n", - "[INFO] [1712656207.902291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", - "[INFO] [1712656207.902803]: Instances: []\n", - "[INFO] [1712656207.903076]: Direct Instances: []\n", - "[INFO] [1712656207.903329]: Inverse Restrictions: []\n", - "[INFO] [1712656207.903563]: -------------------\n", - "[INFO] [1712656207.903790]: SOMA.Connectivity \n", - "[INFO] [1712656207.904027]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712656207.904283]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.904540]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712656207.904837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.905350]: Instances: []\n", - "[INFO] [1712656207.905625]: Direct Instances: []\n", - "[INFO] [1712656207.905917]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712656207.906154]: -------------------\n", - "[INFO] [1712656207.906382]: SOMA.ContactState \n", - "[INFO] [1712656207.906641]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712656207.906924]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ContactState, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656207.907174]: Subclasses: []\n", - "[INFO] [1712656207.907463]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.907947]: Instances: []\n", - "[INFO] [1712656207.908219]: Direct Instances: []\n", - "[INFO] [1712656207.908468]: Inverse Restrictions: []\n", - "[INFO] [1712656207.908700]: -------------------\n", - "[INFO] [1712656207.908930]: SOMA.Container \n", - "[INFO] [1712656207.909153]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712656207.909429]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Container, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656207.909684]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", - "[INFO] [1712656207.909974]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.910470]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656207.910749]: Direct Instances: []\n", - "[INFO] [1712656207.911469]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712656207.911733]: -------------------\n", - "[INFO] [1712656207.911967]: SOMA.Containment \n", - "[INFO] [1712656207.912258]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712656207.912539]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.912797]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712656207.913091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.913602]: Instances: []\n", - "[INFO] [1712656207.913865]: Direct Instances: []\n", - "[INFO] [1712656207.914258]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712656207.914508]: -------------------\n", - "[INFO] [1712656207.914751]: SOMA.IncludedObject \n", - "[INFO] [1712656207.914985]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656207.915254]: Ancestors: {DUL.Concept, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656207.915505]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712656207.915790]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.916302]: Instances: []\n", - "[INFO] [1712656207.916574]: Direct Instances: []\n", - "[INFO] [1712656207.916874]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712656207.917120]: -------------------\n", - "[INFO] [1712656207.917363]: SOMA.ContainmentState \n", - "[INFO] [1712656207.918382]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712656207.918686]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity, SOMA.ContainmentState}\n", - "[INFO] [1712656207.918961]: Subclasses: []\n", - "[INFO] [1712656207.919261]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.919749]: Instances: []\n", - "[INFO] [1712656207.919998]: Direct Instances: []\n", - "[INFO] [1712656207.920244]: Inverse Restrictions: []\n", - "[INFO] [1712656207.920485]: -------------------\n", - "[INFO] [1712656207.920719]: SOMA.FunctionalControl \n", - "[INFO] [1712656207.921184]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712656207.921593]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656207.922005]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712656207.922436]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.923053]: Instances: []\n", - "[INFO] [1712656207.923427]: Direct Instances: []\n", - "[INFO] [1712656207.923817]: Inverse Restrictions: []\n", - "[INFO] [1712656207.924177]: -------------------\n", - "[INFO] [1712656207.924451]: SOMA.ContainmentTheory \n", - "[INFO] [1712656207.924695]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712656207.924993]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", - "[INFO] [1712656207.925239]: Subclasses: []\n", - "[INFO] [1712656207.925533]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.926040]: Instances: []\n", - "[INFO] [1712656207.926309]: Direct Instances: []\n", - "[INFO] [1712656207.926557]: Inverse Restrictions: []\n", - "[INFO] [1712656207.926788]: -------------------\n", - "[INFO] [1712656207.927022]: SOMA.ControlTheory \n", - "[INFO] [1712656207.927261]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712656207.927508]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", - "[INFO] [1712656207.927760]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712656207.928091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.928601]: Instances: []\n", - "[INFO] [1712656207.928869]: Direct Instances: []\n", - "[INFO] [1712656207.929122]: Inverse Restrictions: []\n", - "[INFO] [1712656207.929353]: -------------------\n", - "[INFO] [1712656207.929584]: SOMA.ContinuousJoint \n", - "[INFO] [1712656207.929823]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712656207.930144]: Ancestors: {SOMA.HingeJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.ContinuousJoint}\n", - "[INFO] [1712656207.930410]: Subclasses: []\n", - "[INFO] [1712656207.930708]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.931212]: Instances: []\n", - "[INFO] [1712656207.931485]: Direct Instances: []\n", - "[INFO] [1712656207.931733]: Inverse Restrictions: []\n", - "[INFO] [1712656207.931967]: -------------------\n", - "[INFO] [1712656207.932409]: SOMA.HingeJoint \n", - "[INFO] [1712656207.932692]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712656207.932954]: Ancestors: {SOMA.HingeJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656207.933219]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712656207.933517]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.934014]: Instances: []\n", - "[INFO] [1712656207.934298]: Direct Instances: []\n", - "[INFO] [1712656207.934565]: Inverse Restrictions: []\n", - "[INFO] [1712656207.934803]: -------------------\n", - "[INFO] [1712656207.935038]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712656207.935388]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712656207.935693]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", - "[INFO] [1712656207.935976]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712656207.936287]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656207.936799]: Instances: []\n", - "[INFO] [1712656207.937081]: Direct Instances: []\n", - "[INFO] [1712656207.937359]: Inverse Restrictions: []\n", - "[INFO] [1712656207.937616]: -------------------\n", - "[INFO] [1712656207.937873]: SOMA.Cooktop \n", - "[INFO] [1712656207.938109]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656207.938354]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.938604]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", - "[INFO] [1712656207.938899]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.939389]: Instances: []\n", - "[INFO] [1712656207.939661]: Direct Instances: []\n", - "[INFO] [1712656207.939919]: Inverse Restrictions: []\n", - "[INFO] [1712656207.940148]: -------------------\n", - "[INFO] [1712656207.940386]: SOMA.Countertop \n", - "[INFO] [1712656207.940623]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656207.940899]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, SOMA.Countertop, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.941139]: Subclasses: []\n", - "[INFO] [1712656207.941421]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.941918]: Instances: []\n", - "[INFO] [1712656207.942187]: Direct Instances: []\n", - "[INFO] [1712656207.942434]: Inverse Restrictions: []\n", - "[INFO] [1712656207.942667]: -------------------\n", - "[INFO] [1712656207.942894]: SOMA.Cover \n", - "[INFO] [1712656207.943132]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712656207.943402]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Cover, SOMA.Restrictor}\n", - "[INFO] [1712656207.943640]: Subclasses: []\n", - "[INFO] [1712656207.943923]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.944431]: Instances: []\n", - "[INFO] [1712656207.944695]: Direct Instances: []\n", - "[INFO] [1712656207.945012]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712656207.945258]: -------------------\n", - "[INFO] [1712656207.945499]: SOMA.Coverage \n", - "[INFO] [1712656207.945774]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712656207.946084]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Coverage, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.946349]: Subclasses: []\n", - "[INFO] [1712656207.946664]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.947197]: Instances: []\n", - "[INFO] [1712656207.947498]: Direct Instances: []\n", - "[INFO] [1712656207.947780]: Inverse Restrictions: []\n", - "[INFO] [1712656207.948040]: -------------------\n", - "[INFO] [1712656207.948305]: SOMA.CoveredObject \n", - "[INFO] [1712656207.948565]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712656207.948922]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.CoveredObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", - "[INFO] [1712656207.949370]: Subclasses: []\n", - "[INFO] [1712656207.949774]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.950341]: Instances: []\n", - "[INFO] [1712656207.950652]: Direct Instances: []\n", - "[INFO] [1712656207.951013]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712656207.951315]: -------------------\n", - "[INFO] [1712656207.951608]: SOMA.CoverageTheory \n", - "[INFO] [1712656207.951884]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712656207.952184]: Ancestors: {SOMA.CoverageTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", - "[INFO] [1712656207.952451]: Subclasses: []\n", - "[INFO] [1712656207.952758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.953298]: Instances: []\n", - "[INFO] [1712656207.953579]: Direct Instances: []\n", - "[INFO] [1712656207.953838]: Inverse Restrictions: []\n", - "[INFO] [1712656207.954085]: -------------------\n", - "[INFO] [1712656207.954334]: SOMA.CoveringTheory \n", - "[INFO] [1712656207.954586]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712656207.954880]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.CoveringTheory}\n", - "[INFO] [1712656207.955136]: Subclasses: []\n", - "[INFO] [1712656207.955436]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656207.955921]: Instances: []\n", - "[INFO] [1712656207.956191]: Direct Instances: []\n", - "[INFO] [1712656207.956448]: Inverse Restrictions: []\n", - "[INFO] [1712656207.956688]: -------------------\n", - "[INFO] [1712656207.956931]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712656207.957179]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712656207.957438]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656207.957697]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712656207.957990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656207.958486]: Instances: []\n", - "[INFO] [1712656207.958759]: Direct Instances: []\n", - "[INFO] [1712656207.959029]: Inverse Restrictions: []\n", - "[INFO] [1712656207.959269]: -------------------\n", - "[INFO] [1712656207.959501]: SOMA.CrackingTheory \n", - "[INFO] [1712656207.959740]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712656207.960003]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.CrackingTheory, DUL.Entity}\n", - "[INFO] [1712656207.960263]: Subclasses: []\n", - "[INFO] [1712656207.960563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656207.961046]: Instances: []\n", - "[INFO] [1712656207.961303]: Direct Instances: []\n", - "[INFO] [1712656207.961547]: Inverse Restrictions: []\n", - "[INFO] [1712656207.961791]: -------------------\n", - "[INFO] [1712656207.962026]: SOMA.Creation \n", - "[INFO] [1712656207.962265]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712656207.962527]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Creation, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656207.962770]: Subclasses: []\n", - "[INFO] [1712656207.963067]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.963556]: Instances: []\n", - "[INFO] [1712656207.963844]: Direct Instances: []\n", - "[INFO] [1712656207.964103]: Inverse Restrictions: []\n", - "[INFO] [1712656207.964354]: -------------------\n", - "[INFO] [1712656207.964604]: SOMA.Tableware \n", - "[INFO] [1712656207.964844]: Super classes: [SOMA.DesignedTool]\n", - "[INFO] [1712656207.965089]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712656207.965333]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", - "[INFO] [1712656207.965609]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.966157]: Instances: []\n", - "[INFO] [1712656207.966431]: Direct Instances: []\n", - "[INFO] [1712656207.966685]: Inverse Restrictions: []\n", - "[INFO] [1712656207.966919]: -------------------\n", - "[INFO] [1712656207.967165]: SOMA.Insertion \n", - "[INFO] [1712656207.967432]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712656207.967713]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Insertion, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.967961]: Subclasses: []\n", - "[INFO] [1712656207.968248]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.968739]: Instances: []\n", - "[INFO] [1712656207.969006]: Direct Instances: []\n", - "[INFO] [1712656207.969553]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712656207.969804]: -------------------\n", - "[INFO] [1712656207.970051]: SOMA.Cup \n", - "[INFO] [1712656207.970301]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712656207.970589]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.Cup}\n", - "[INFO] [1712656207.970847]: Subclasses: []\n", - "[INFO] [1712656207.971133]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712656207.971620]: Instances: []\n", - "[INFO] [1712656207.971887]: Direct Instances: []\n", - "[INFO] [1712656207.972143]: Inverse Restrictions: []\n", - "[INFO] [1712656207.972381]: -------------------\n", - "[INFO] [1712656207.972617]: SOMA.DesignedHandle \n", - "[INFO] [1712656207.972863]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", - "[INFO] [1712656207.973130]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedHandle, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.973393]: Subclasses: []\n", - "[INFO] [1712656207.973687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712656207.974175]: Instances: []\n", - "[INFO] [1712656207.974432]: Direct Instances: []\n", - "[INFO] [1712656207.974776]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", - "[INFO] [1712656207.975026]: -------------------\n", - "[INFO] [1712656207.975260]: SOMA.Cupboard \n", - "[INFO] [1712656207.975511]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", - "[INFO] [1712656207.975791]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Cupboard, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656207.976051]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", - "[INFO] [1712656207.976336]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712656207.976830]: Instances: []\n", - "[INFO] [1712656207.977097]: Direct Instances: []\n", - "[INFO] [1712656207.977353]: Inverse Restrictions: []\n", - "[INFO] [1712656207.977588]: -------------------\n", - "[INFO] [1712656207.977821]: SOMA.DesignedFurniture \n", - "[INFO] [1712656207.978052]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712656207.978298]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656207.978561]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712656207.978866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.979360]: Instances: []\n", - "[INFO] [1712656207.979616]: Direct Instances: []\n", - "[INFO] [1712656207.979882]: Inverse Restrictions: []\n", - "[INFO] [1712656207.980126]: -------------------\n", - "[INFO] [1712656207.980371]: SOMA.Rack \n", - "[INFO] [1712656207.980598]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656207.980872]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Rack, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656207.981136]: Subclasses: []\n", - "[INFO] [1712656207.981429]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.981909]: Instances: []\n", - "[INFO] [1712656207.982167]: Direct Instances: []\n", - "[INFO] [1712656207.982452]: Inverse Restrictions: [SOMA.Cupboard]\n", - "[INFO] [1712656207.982696]: -------------------\n", - "[INFO] [1712656207.982930]: SOMA.Cutlery \n", - "[INFO] [1712656207.983164]: Super classes: [SOMA.Tableware]\n", - "[INFO] [1712656207.983436]: Ancestors: {DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712656207.983693]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", - "[INFO] [1712656207.983996]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656207.984502]: Instances: []\n", - "[INFO] [1712656207.984773]: Direct Instances: []\n", - "[INFO] [1712656207.985034]: Inverse Restrictions: []\n", - "[INFO] [1712656207.985283]: -------------------\n", - "[INFO] [1712656207.985522]: SOMA.Cuttability \n", - "[INFO] [1712656207.985760]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712656207.986165]: Ancestors: {SOMA.Extrinsic, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656207.986484]: Subclasses: []\n", - "[INFO] [1712656207.986805]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.987305]: Instances: []\n", - "[INFO] [1712656207.987565]: Direct Instances: []\n", - "[INFO] [1712656207.987814]: Inverse Restrictions: []\n", - "[INFO] [1712656207.988049]: -------------------\n", - "[INFO] [1712656207.988281]: SOMA.Tool \n", - "[INFO] [1712656207.988524]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712656207.988783]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Tool}\n", - "[INFO] [1712656207.989050]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712656207.989341]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.989850]: Instances: []\n", - "[INFO] [1712656207.990121]: Direct Instances: []\n", - "[INFO] [1712656207.990413]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712656207.990648]: -------------------\n", - "[INFO] [1712656207.990873]: SOMA.Cutting \n", - "[INFO] [1712656207.991109]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712656207.991381]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656207.991637]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712656207.991916]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656207.992391]: Instances: []\n", - "[INFO] [1712656207.992661]: Direct Instances: []\n", - "[INFO] [1712656207.992927]: Inverse Restrictions: []\n", - "[INFO] [1712656207.993161]: -------------------\n", - "[INFO] [1712656207.993391]: SOMA.CuttingTool \n", - "[INFO] [1712656207.993643]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", - "[INFO] [1712656207.993885]: Ancestors: {DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656207.994159]: Subclasses: [SOMA.Knife]\n", - "[INFO] [1712656207.994455]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712656207.994949]: Instances: []\n", - "[INFO] [1712656207.995211]: Direct Instances: []\n", - "[INFO] [1712656207.995457]: Inverse Restrictions: []\n", - "[INFO] [1712656207.995696]: -------------------\n", - "[INFO] [1712656207.995926]: SOMA.DesignedTool \n", - "[INFO] [1712656207.996155]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712656207.996390]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656207.996635]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712656207.996974]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656207.997505]: Instances: []\n", - "[INFO] [1712656207.997762]: Direct Instances: []\n", - "[INFO] [1712656207.998014]: Inverse Restrictions: []\n", - "[INFO] [1712656207.998255]: -------------------\n", - "[INFO] [1712656207.998496]: SOMA.Shaping \n", - "[INFO] [1712656207.998772]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712656207.999042]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Shaping, SOMA.Disposition}\n", - "[INFO] [1712656207.999291]: Subclasses: []\n", - "[INFO] [1712656207.999587]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.000070]: Instances: []\n", - "[INFO] [1712656208.000320]: Direct Instances: []\n", - "[INFO] [1712656208.000591]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712656208.000836]: -------------------\n", - "[INFO] [1712656208.001082]: SOMA.Database \n", - "[INFO] [1712656208.001316]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656208.001583]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.001853]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712656208.002389]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.003232]: Instances: []\n", - "[INFO] [1712656208.003623]: Direct Instances: []\n", - "[INFO] [1712656208.004022]: Inverse Restrictions: []\n", - "[INFO] [1712656208.004393]: -------------------\n", - "[INFO] [1712656208.004774]: SOMA.SoftwareRole \n", - "[INFO] [1712656208.005190]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712656208.005593]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.005992]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712656208.006465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.007295]: Instances: []\n", - "[INFO] [1712656208.007687]: Direct Instances: []\n", - "[INFO] [1712656208.008171]: Inverse Restrictions: []\n", - "[INFO] [1712656208.008538]: -------------------\n", - "[INFO] [1712656208.009130]: SOMA.Deciding \n", - "[INFO] [1712656208.009586]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656208.010018]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding}\n", - "[INFO] [1712656208.010443]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712656208.010928]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656208.011761]: Instances: []\n", - "[INFO] [1712656208.012164]: Direct Instances: []\n", - "[INFO] [1712656208.012553]: Inverse Restrictions: []\n", - "[INFO] [1712656208.012924]: -------------------\n", - "[INFO] [1712656208.013232]: SOMA.DerivingInformation \n", - "[INFO] [1712656208.013550]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712656208.013837]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712656208.014126]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712656208.014451]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isTaskOfOutputRole, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712656208.015011]: Instances: []\n", - "[INFO] [1712656208.015304]: Direct Instances: []\n", - "[INFO] [1712656208.015582]: Inverse Restrictions: []\n", - "[INFO] [1712656208.015838]: -------------------\n", - "[INFO] [1712656208.016090]: SOMA.DeductiveReasoning \n", - "[INFO] [1712656208.016337]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712656208.016618]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.DeductiveReasoning, SOMA.Reasoning}\n", - "[INFO] [1712656208.016891]: Subclasses: []\n", - "[INFO] [1712656208.017204]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.017708]: Instances: []\n", - "[INFO] [1712656208.017988]: Direct Instances: []\n", - "[INFO] [1712656208.018252]: Inverse Restrictions: []\n", - "[INFO] [1712656208.018508]: -------------------\n", - "[INFO] [1712656208.018751]: SOMA.Deformation \n", - "[INFO] [1712656208.019029]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712656208.019315]: Ancestors: {DUL.Concept, SOMA.Alteration, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Deformation, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656208.019570]: Subclasses: []\n", - "[INFO] [1712656208.019904]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712656208.020419]: Instances: []\n", - "[INFO] [1712656208.020701]: Direct Instances: []\n", - "[INFO] [1712656208.020967]: Inverse Restrictions: []\n", - "[INFO] [1712656208.021212]: -------------------\n", - "[INFO] [1712656208.021464]: SOMA.ShapedObject \n", - "[INFO] [1712656208.021761]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712656208.022052]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.ShapedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.022311]: Subclasses: []\n", - "[INFO] [1712656208.022626]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.023149]: Instances: []\n", - "[INFO] [1712656208.023431]: Direct Instances: []\n", - "[INFO] [1712656208.023771]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712656208.024021]: -------------------\n", - "[INFO] [1712656208.024265]: SOMA.FluidFlow \n", - "[INFO] [1712656208.024551]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712656208.024859]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, SOMA.FluidFlow, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.025127]: Subclasses: []\n", - "[INFO] [1712656208.025436]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.025936]: Instances: []\n", - "[INFO] [1712656208.026230]: Direct Instances: []\n", - "[INFO] [1712656208.026504]: Inverse Restrictions: []\n", - "[INFO] [1712656208.026753]: -------------------\n", - "[INFO] [1712656208.026995]: SOMA.Shifting \n", - "[INFO] [1712656208.027286]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712656208.027600]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition, SOMA.Shifting}\n", - "[INFO] [1712656208.027870]: Subclasses: []\n", - "[INFO] [1712656208.028213]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.028711]: Instances: []\n", - "[INFO] [1712656208.028987]: Direct Instances: []\n", - "[INFO] [1712656208.029346]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712656208.029603]: -------------------\n", - "[INFO] [1712656208.029846]: SOMA.DependentPlace \n", - "[INFO] [1712656208.030086]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712656208.030371]: Ancestors: {SOMA.Feature, DUL.Object, owl.Thing, DUL.Entity, SOMA.DependentPlace}\n", - "[INFO] [1712656208.030627]: Subclasses: []\n", - "[INFO] [1712656208.030939]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.031439]: Instances: []\n", - "[INFO] [1712656208.031697]: Direct Instances: []\n", - "[INFO] [1712656208.031953]: Inverse Restrictions: []\n", - "[INFO] [1712656208.032190]: -------------------\n", - "[INFO] [1712656208.032445]: SOMA.Deposit \n", - "[INFO] [1712656208.032698]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712656208.032986]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Deposit, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.033248]: Subclasses: []\n", - "[INFO] [1712656208.033547]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.034066]: Instances: []\n", - "[INFO] [1712656208.034350]: Direct Instances: []\n", - "[INFO] [1712656208.034659]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712656208.034906]: -------------------\n", - "[INFO] [1712656208.035154]: SOMA.DepositedObject \n", - "[INFO] [1712656208.035409]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656208.035701]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.DepositedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.035975]: Subclasses: []\n", - "[INFO] [1712656208.036281]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.036803]: Instances: []\n", - "[INFO] [1712656208.037138]: Direct Instances: []\n", - "[INFO] [1712656208.037456]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712656208.037714]: -------------------\n", - "[INFO] [1712656208.037957]: SOMA.InformationAcquisition \n", - "[INFO] [1712656208.038194]: Super classes: [owl.Thing]\n", - "[INFO] [1712656208.038431]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712656208.038692]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712656208.038990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712656208.039539]: Instances: []\n", - "[INFO] [1712656208.039812]: Direct Instances: []\n", - "[INFO] [1712656208.040117]: Inverse Restrictions: []\n", - "[INFO] [1712656208.040375]: -------------------\n", - "[INFO] [1712656208.040617]: SOMA.Premise \n", - "[INFO] [1712656208.040863]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712656208.041141]: Ancestors: {DUL.Concept, SOMA.Item, DUL.Entity, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Premise}\n", - "[INFO] [1712656208.041381]: Subclasses: []\n", - "[INFO] [1712656208.041667]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.042167]: Instances: []\n", - "[INFO] [1712656208.042452]: Direct Instances: []\n", - "[INFO] [1712656208.042762]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656208.043005]: -------------------\n", - "[INFO] [1712656208.043242]: SOMA.FunctionalPart \n", - "[INFO] [1712656208.043923]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712656208.044195]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.044456]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712656208.044766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.045323]: Instances: []\n", - "[INFO] [1712656208.045601]: Direct Instances: []\n", - "[INFO] [1712656208.045880]: Inverse Restrictions: []\n", - "[INFO] [1712656208.046157]: -------------------\n", - "[INFO] [1712656208.046415]: SOMA.Graspability \n", - "[INFO] [1712656208.046663]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712656208.046962]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Graspability, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656208.047223]: Subclasses: []\n", - "[INFO] [1712656208.047518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.048007]: Instances: []\n", - "[INFO] [1712656208.048273]: Direct Instances: []\n", - "[INFO] [1712656208.048578]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712656208.048833]: -------------------\n", - "[INFO] [1712656208.049090]: SOMA.DesignedSpade \n", - "[INFO] [1712656208.049330]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656208.049604]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.DesignedSpade, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.049850]: Subclasses: []\n", - "[INFO] [1712656208.050174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.050683]: Instances: []\n", - "[INFO] [1712656208.050948]: Direct Instances: []\n", - "[INFO] [1712656208.051242]: Inverse Restrictions: [SOMA.Spatula]\n", - "[INFO] [1712656208.051503]: -------------------\n", - "[INFO] [1712656208.051755]: SOMA.DessertFork \n", - "[INFO] [1712656208.051987]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712656208.052257]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.DessertFork, DUL.PhysicalObject, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712656208.052499]: Subclasses: []\n", - "[INFO] [1712656208.052788]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.053423]: Instances: []\n", - "[INFO] [1712656208.053770]: Direct Instances: []\n", - "[INFO] [1712656208.054058]: Inverse Restrictions: []\n", - "[INFO] [1712656208.054310]: -------------------\n", - "[INFO] [1712656208.054637]: SOMA.Fork \n", - "[INFO] [1712656208.054919]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712656208.055301]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712656208.055590]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", - "[INFO] [1712656208.055894]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712656208.056383]: Instances: []\n", - "[INFO] [1712656208.056659]: Direct Instances: []\n", - "[INFO] [1712656208.056926]: Inverse Restrictions: []\n", - "[INFO] [1712656208.057162]: -------------------\n", - "[INFO] [1712656208.057391]: SOMA.Destination \n", - "[INFO] [1712656208.057621]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712656208.057870]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Destination, DUL.Entity, SOMA.Location}\n", - "[INFO] [1712656208.058120]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712656208.058403]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.058880]: Instances: []\n", - "[INFO] [1712656208.059149]: Direct Instances: []\n", - "[INFO] [1712656208.059482]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712656208.059730]: -------------------\n", - "[INFO] [1712656208.059964]: SOMA.Location \n", - "[INFO] [1712656208.060204]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712656208.060455]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Location}\n", - "[INFO] [1712656208.060710]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712656208.061128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.061708]: Instances: []\n", - "[INFO] [1712656208.062018]: Direct Instances: []\n", - "[INFO] [1712656208.062484]: Inverse Restrictions: []\n", - "[INFO] [1712656208.062846]: -------------------\n", - "[INFO] [1712656208.063200]: SOMA.DestroyedObject \n", - "[INFO] [1712656208.063544]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656208.063926]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.DestroyedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.064266]: Subclasses: []\n", - "[INFO] [1712656208.064681]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.065313]: Instances: []\n", - "[INFO] [1712656208.065718]: Direct Instances: []\n", - "[INFO] [1712656208.066154]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712656208.066529]: -------------------\n", - "[INFO] [1712656208.066896]: SOMA.Destruction \n", - "[INFO] [1712656208.067261]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712656208.067676]: Ancestors: {DUL.Concept, SOMA.Destruction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656208.068050]: Subclasses: []\n", - "[INFO] [1712656208.068475]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.069122]: Instances: []\n", - "[INFO] [1712656208.069531]: Direct Instances: []\n", - "[INFO] [1712656208.069904]: Inverse Restrictions: []\n", - "[INFO] [1712656208.070256]: -------------------\n", - "[INFO] [1712656208.070602]: SOMA.DetectedObject \n", - "[INFO] [1712656208.071139]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656208.071717]: Ancestors: {DUL.Concept, SOMA.DetectedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.072263]: Subclasses: []\n", - "[INFO] [1712656208.072897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.073832]: Instances: []\n", - "[INFO] [1712656208.074374]: Direct Instances: []\n", - "[INFO] [1712656208.074888]: Inverse Restrictions: []\n", - "[INFO] [1712656208.075402]: -------------------\n", - "[INFO] [1712656208.075892]: SOMA.DeviceState \n", - "[INFO] [1712656208.076408]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656208.076952]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity, SOMA.DeviceState}\n", - "[INFO] [1712656208.077470]: Subclasses: []\n", - "[INFO] [1712656208.078069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.078992]: Instances: []\n", - "[INFO] [1712656208.079504]: Direct Instances: []\n", - "[INFO] [1712656208.079997]: Inverse Restrictions: []\n", - "[INFO] [1712656208.080486]: -------------------\n", - "[INFO] [1712656208.080981]: SOMA.DeviceStateRange \n", - "[INFO] [1712656208.081454]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656208.083316]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceStateRange}\n", - "[INFO] [1712656208.083870]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712656208.084483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.085256]: Instances: []\n", - "[INFO] [1712656208.085673]: Direct Instances: []\n", - "[INFO] [1712656208.086040]: Inverse Restrictions: []\n", - "[INFO] [1712656208.086378]: -------------------\n", - "[INFO] [1712656208.086731]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712656208.087073]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712656208.087434]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOff, DUL.Entity, SOMA.DeviceStateRange}\n", - "[INFO] [1712656208.087789]: Subclasses: []\n", - "[INFO] [1712656208.088183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.088779]: Instances: []\n", - "[INFO] [1712656208.089165]: Direct Instances: []\n", - "[INFO] [1712656208.089556]: Inverse Restrictions: []\n", - "[INFO] [1712656208.089884]: -------------------\n", - "[INFO] [1712656208.090212]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712656208.090535]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712656208.090905]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOn, DUL.Entity, SOMA.DeviceStateRange}\n", - "[INFO] [1712656208.091241]: Subclasses: []\n", - "[INFO] [1712656208.091633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.092230]: Instances: []\n", - "[INFO] [1712656208.092589]: Direct Instances: []\n", - "[INFO] [1712656208.093006]: Inverse Restrictions: []\n", - "[INFO] [1712656208.093337]: -------------------\n", - "[INFO] [1712656208.093599]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712656208.093845]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712656208.094093]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.094358]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712656208.094650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.095149]: Instances: []\n", - "[INFO] [1712656208.095415]: Direct Instances: []\n", - "[INFO] [1712656208.095680]: Inverse Restrictions: []\n", - "[INFO] [1712656208.095915]: -------------------\n", - "[INFO] [1712656208.096145]: SOMA.Dicing \n", - "[INFO] [1712656208.096375]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712656208.096652]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Dicing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656208.096958]: Subclasses: []\n", - "[INFO] [1712656208.097267]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.097764]: Instances: []\n", - "[INFO] [1712656208.098039]: Direct Instances: []\n", - "[INFO] [1712656208.098294]: Inverse Restrictions: []\n", - "[INFO] [1712656208.098530]: -------------------\n", - "[INFO] [1712656208.098770]: SOMA.DinnerPlate \n", - "[INFO] [1712656208.099039]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712656208.099328]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DinnerPlate, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, SOMA.Plate, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656208.099579]: Subclasses: []\n", - "[INFO] [1712656208.099872]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.100389]: Instances: []\n", - "[INFO] [1712656208.100677]: Direct Instances: []\n", - "[INFO] [1712656208.100951]: Inverse Restrictions: []\n", - "[INFO] [1712656208.101208]: -------------------\n", - "[INFO] [1712656208.101468]: SOMA.DirectedMotion \n", - "[INFO] [1712656208.101721]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712656208.101979]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.102265]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712656208.102601]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.103154]: Instances: []\n", - "[INFO] [1712656208.103437]: Direct Instances: []\n", - "[INFO] [1712656208.103715]: Inverse Restrictions: []\n", - "[INFO] [1712656208.103980]: -------------------\n", - "[INFO] [1712656208.104226]: SOMA.UndirectedMotion \n", - "[INFO] [1712656208.104466]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712656208.104745]: Ancestors: {DUL.Concept, SOMA.UndirectedMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.105008]: Subclasses: []\n", - "[INFO] [1712656208.105324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.105834]: Instances: []\n", - "[INFO] [1712656208.106105]: Direct Instances: []\n", - "[INFO] [1712656208.106386]: Inverse Restrictions: []\n", - "[INFO] [1712656208.106637]: -------------------\n", - "[INFO] [1712656208.106877]: SOMA.Dirty \n", - "[INFO] [1712656208.107106]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712656208.107375]: Ancestors: {SOMA.Dirty, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", - "[INFO] [1712656208.107638]: Subclasses: []\n", - "[INFO] [1712656208.107944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.108444]: Instances: []\n", - "[INFO] [1712656208.108715]: Direct Instances: []\n", - "[INFO] [1712656208.109167]: Inverse Restrictions: []\n", - "[INFO] [1712656208.109563]: -------------------\n", - "[INFO] [1712656208.109950]: SOMA.Discourse \n", - "[INFO] [1712656208.110326]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656208.110760]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Discourse}\n", - "[INFO] [1712656208.111174]: Subclasses: []\n", - "[INFO] [1712656208.111664]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.112490]: Instances: []\n", - "[INFO] [1712656208.112910]: Direct Instances: []\n", - "[INFO] [1712656208.113326]: Inverse Restrictions: []\n", - "[INFO] [1712656208.113722]: -------------------\n", - "[INFO] [1712656208.114124]: SOMA.Dishwasher \n", - "[INFO] [1712656208.114514]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", - "[INFO] [1712656208.114959]: Ancestors: {SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Dishwasher, DUL.Entity}\n", - "[INFO] [1712656208.115359]: Subclasses: []\n", - "[INFO] [1712656208.115847]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.116669]: Instances: []\n", - "[INFO] [1712656208.117107]: Direct Instances: []\n", - "[INFO] [1712656208.117501]: Inverse Restrictions: []\n", - "[INFO] [1712656208.117881]: -------------------\n", - "[INFO] [1712656208.118257]: SOMA.DishwasherTab \n", - "[INFO] [1712656208.118639]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712656208.119144]: Ancestors: {DUL.Substance, DUL.DesignedArtifact, SOMA.DishwasherTab, DUL.PhysicalBody, DUL.PhysicalArtifact, DUL.DesignedSubstance, DUL.Object, owl.Thing, DUL.FunctionalSubstance, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.119562]: Subclasses: []\n", - "[INFO] [1712656208.120053]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.120872]: Instances: []\n", - "[INFO] [1712656208.121342]: Direct Instances: []\n", - "[INFO] [1712656208.121762]: Inverse Restrictions: []\n", - "[INFO] [1712656208.122153]: -------------------\n", - "[INFO] [1712656208.122532]: SOMA.Dispenser \n", - "[INFO] [1712656208.122908]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712656208.123324]: Ancestors: {SOMA.DesignedContainer, SOMA.Dispenser, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.123716]: Subclasses: [SOMA.SugarDispenser]\n", - "[INFO] [1712656208.124193]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.124958]: Instances: []\n", - "[INFO] [1712656208.125549]: Direct Instances: []\n", - "[INFO] [1712656208.125959]: Inverse Restrictions: []\n", - "[INFO] [1712656208.126331]: -------------------\n", - "[INFO] [1712656208.126693]: SOMA.Distancing \n", - "[INFO] [1712656208.127051]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712656208.127453]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Distancing}\n", - "[INFO] [1712656208.127851]: Subclasses: []\n", - "[INFO] [1712656208.128267]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.128873]: Instances: []\n", - "[INFO] [1712656208.129249]: Direct Instances: []\n", - "[INFO] [1712656208.129617]: Inverse Restrictions: []\n", - "[INFO] [1712656208.129976]: -------------------\n", - "[INFO] [1712656208.130337]: SOMA.Door \n", - "[INFO] [1712656208.130677]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656208.131066]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Door, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.131433]: Subclasses: []\n", - "[INFO] [1712656208.131838]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.132428]: Instances: []\n", - "[INFO] [1712656208.132794]: Direct Instances: []\n", - "[INFO] [1712656208.133266]: Inverse Restrictions: [SOMA.Refrigerator]\n", - "[INFO] [1712656208.133822]: -------------------\n", - "[INFO] [1712656208.134288]: SOMA.Drawer \n", - "[INFO] [1712656208.134674]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", - "[INFO] [1712656208.135279]: Ancestors: {SOMA.DesignedContainer, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Drawer, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.135821]: Subclasses: []\n", - "[INFO] [1712656208.136440]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.137208]: Instances: []\n", - "[INFO] [1712656208.137648]: Direct Instances: []\n", - "[INFO] [1712656208.137955]: Inverse Restrictions: []\n", - "[INFO] [1712656208.138233]: -------------------\n", - "[INFO] [1712656208.138494]: SOMA.Dreaming \n", - "[INFO] [1712656208.138745]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656208.139035]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Dreaming}\n", - "[INFO] [1712656208.139296]: Subclasses: []\n", - "[INFO] [1712656208.139611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.140137]: Instances: []\n", - "[INFO] [1712656208.140432]: Direct Instances: []\n", - "[INFO] [1712656208.140701]: Inverse Restrictions: []\n", - "[INFO] [1712656208.140966]: -------------------\n", - "[INFO] [1712656208.141214]: SOMA.Driving \n", - "[INFO] [1712656208.141465]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656208.141762]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Driving, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.142028]: Subclasses: []\n", - "[INFO] [1712656208.142347]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.142852]: Instances: []\n", - "[INFO] [1712656208.143146]: Direct Instances: []\n", - "[INFO] [1712656208.143414]: Inverse Restrictions: []\n", - "[INFO] [1712656208.143660]: -------------------\n", - "[INFO] [1712656208.143903]: SOMA.Flying \n", - "[INFO] [1712656208.144149]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656208.144436]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Flying, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.144705]: Subclasses: []\n", - "[INFO] [1712656208.145033]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.145547]: Instances: []\n", - "[INFO] [1712656208.145847]: Direct Instances: []\n", - "[INFO] [1712656208.146125]: Inverse Restrictions: []\n", - "[INFO] [1712656208.146377]: -------------------\n", - "[INFO] [1712656208.146619]: SOMA.Swimming \n", - "[INFO] [1712656208.146858]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656208.147142]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType, SOMA.Swimming}\n", - "[INFO] [1712656208.147416]: Subclasses: []\n", - "[INFO] [1712656208.147745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.148260]: Instances: []\n", - "[INFO] [1712656208.148532]: Direct Instances: []\n", - "[INFO] [1712656208.148805]: Inverse Restrictions: []\n", - "[INFO] [1712656208.149083]: -------------------\n", - "[INFO] [1712656208.149333]: SOMA.Walking \n", - "[INFO] [1712656208.149574]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656208.149857]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Walking, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.150115]: Subclasses: []\n", - "[INFO] [1712656208.150412]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.150934]: Instances: []\n", - "[INFO] [1712656208.151242]: Direct Instances: []\n", - "[INFO] [1712656208.151517]: Inverse Restrictions: []\n", - "[INFO] [1712656208.151757]: -------------------\n", - "[INFO] [1712656208.151996]: SOMA.Dropping \n", - "[INFO] [1712656208.152238]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656208.152529]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Dropping, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656208.152791]: Subclasses: []\n", - "[INFO] [1712656208.153111]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.153608]: Instances: []\n", - "[INFO] [1712656208.153897]: Direct Instances: []\n", - "[INFO] [1712656208.154164]: Inverse Restrictions: []\n", - "[INFO] [1712656208.154406]: -------------------\n", - "[INFO] [1712656208.154644]: SOMA.Placing \n", - "[INFO] [1712656208.154879]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656208.155154]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Placing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.155424]: Subclasses: []\n", - "[INFO] [1712656208.155729]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.156235]: Instances: [SOMA.placing]\n", - "[INFO] [1712656208.156531]: Direct Instances: [SOMA.placing]\n", - "[INFO] [1712656208.156811]: Inverse Restrictions: []\n", - "[INFO] [1712656208.157069]: -------------------\n", - "[INFO] [1712656208.157308]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712656208.157600]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712656208.157902]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.ESTSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.158170]: Subclasses: []\n", - "[INFO] [1712656208.158480]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656208.158971]: Instances: []\n", - "[INFO] [1712656208.159259]: Direct Instances: []\n", - "[INFO] [1712656208.159516]: Inverse Restrictions: []\n", - "[INFO] [1712656208.159757]: -------------------\n", - "[INFO] [1712656208.159997]: SOMA.ExistingObjectRole \n", - "[INFO] [1712656208.160245]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656208.160560]: Ancestors: {SOMA.ExistingObjectRole, DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.160851]: Subclasses: []\n", - "[INFO] [1712656208.161180]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.161689]: Instances: []\n", - "[INFO] [1712656208.161965]: Direct Instances: []\n", - "[INFO] [1712656208.162280]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712656208.162534]: -------------------\n", - "[INFO] [1712656208.162788]: SOMA.Effort \n", - "[INFO] [1712656208.163041]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712656208.163312]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity, SOMA.Effort}\n", - "[INFO] [1712656208.163565]: Subclasses: []\n", - "[INFO] [1712656208.163859]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.164371]: Instances: []\n", - "[INFO] [1712656208.164647]: Direct Instances: []\n", - "[INFO] [1712656208.164913]: Inverse Restrictions: []\n", - "[INFO] [1712656208.165216]: -------------------\n", - "[INFO] [1712656208.165499]: SOMA.EnclosedObject \n", - "[INFO] [1712656208.165747]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712656208.166026]: Ancestors: {DUL.Concept, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.166309]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712656208.166616]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.167126]: Instances: []\n", - "[INFO] [1712656208.167413]: Direct Instances: []\n", - "[INFO] [1712656208.167735]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712656208.167991]: -------------------\n", - "[INFO] [1712656208.168237]: SOMA.Enclosing \n", - "[INFO] [1712656208.168483]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712656208.168743]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656208.169025]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712656208.169334]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.169838]: Instances: []\n", - "[INFO] [1712656208.170118]: Direct Instances: []\n", - "[INFO] [1712656208.170401]: Inverse Restrictions: []\n", - "[INFO] [1712656208.170646]: -------------------\n", - "[INFO] [1712656208.170885]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712656208.171120]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656208.171392]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.171674]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712656208.171980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.172477]: Instances: []\n", - "[INFO] [1712656208.172750]: Direct Instances: []\n", - "[INFO] [1712656208.173034]: Inverse Restrictions: []\n", - "[INFO] [1712656208.173283]: -------------------\n", - "[INFO] [1712656208.173523]: SOMA.Manipulating \n", - "[INFO] [1712656208.173801]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712656208.174055]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.174345]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712656208.174653]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.175178]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712656208.175452]: Direct Instances: []\n", - "[INFO] [1712656208.175735]: Inverse Restrictions: []\n", - "[INFO] [1712656208.175977]: -------------------\n", - "[INFO] [1712656208.176214]: SOMA.Episode \n", - "[INFO] [1712656208.176445]: Super classes: [DUL.Situation]\n", - "[INFO] [1712656208.176706]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing}\n", - "[INFO] [1712656208.177015]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712656208.177339]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.177843]: Instances: []\n", - "[INFO] [1712656208.178129]: Direct Instances: []\n", - "[INFO] [1712656208.178391]: Inverse Restrictions: []\n", - "[INFO] [1712656208.178637]: -------------------\n", - "[INFO] [1712656208.178880]: SOMA.ExcludedObject \n", - "[INFO] [1712656208.179130]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656208.179406]: Ancestors: {DUL.Concept, SOMA.ExcludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.179684]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712656208.179992]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.180493]: Instances: []\n", - "[INFO] [1712656208.180786]: Direct Instances: []\n", - "[INFO] [1712656208.181191]: Inverse Restrictions: []\n", - "[INFO] [1712656208.181455]: -------------------\n", - "[INFO] [1712656208.181695]: SOMA.ExecutableFile \n", - "[INFO] [1712656208.181929]: Super classes: [owl.Thing]\n", - "[INFO] [1712656208.183178]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", - "[INFO] [1712656208.183478]: Subclasses: []\n", - "[INFO] [1712656208.183800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.realizes]\n", - "[INFO] [1712656208.184317]: Instances: []\n", - "[INFO] [1712656208.184605]: Direct Instances: []\n", - "[INFO] [1712656208.185733]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712656208.186133]: -------------------\n", - "[INFO] [1712656208.186409]: SOMA.Executable_Code \n", - "[INFO] [1712656208.186659]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712656208.187897]: Ancestors: {SOMA.Computer_Program, owl.Thing, SOMA.Executable_Code}\n", - "[INFO] [1712656208.188203]: Subclasses: []\n", - "[INFO] [1712656208.188548]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656208.189068]: Instances: []\n", - "[INFO] [1712656208.189345]: Direct Instances: []\n", - "[INFO] [1712656208.189715]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712656208.189988]: -------------------\n", - "[INFO] [1712656208.190237]: SOMA.ExecutableFormat \n", - "[INFO] [1712656208.190483]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712656208.190769]: Ancestors: {SOMA.ExecutableFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.191024]: Subclasses: []\n", - "[INFO] [1712656208.191339]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.191867]: Instances: []\n", - "[INFO] [1712656208.192162]: Direct Instances: []\n", - "[INFO] [1712656208.192495]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712656208.192746]: -------------------\n", - "[INFO] [1712656208.192996]: SOMA.SchematicTheory \n", - "[INFO] [1712656208.193235]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712656208.193498]: Ancestors: {SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.193772]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712656208.194078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.194603]: Instances: []\n", - "[INFO] [1712656208.194894]: Direct Instances: []\n", - "[INFO] [1712656208.195169]: Inverse Restrictions: []\n", - "[INFO] [1712656208.195413]: -------------------\n", - "[INFO] [1712656208.195659]: SOMA.ExecutableSoftware \n", - "[INFO] [1712656208.195896]: Super classes: [owl.Thing]\n", - "[INFO] [1712656208.196388]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", - "[INFO] [1712656208.196680]: Subclasses: []\n", - "[INFO] [1712656208.196999]: Properties: [rdf-schema.isDefinedBy, DUL.hasMember, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.197497]: Instances: []\n", - "[INFO] [1712656208.197770]: Direct Instances: []\n", - "[INFO] [1712656208.198017]: Inverse Restrictions: []\n", - "[INFO] [1712656208.198263]: -------------------\n", - "[INFO] [1712656208.198500]: SOMA.Software \n", - "[INFO] [1712656208.198774]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712656208.199054]: Ancestors: {DUL.Design, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, SOMA.Software, DUL.Entity}\n", - "[INFO] [1712656208.199321]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712656208.199640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.describes]\n", - "[INFO] [1712656208.200140]: Instances: []\n", - "[INFO] [1712656208.200404]: Direct Instances: []\n", - "[INFO] [1712656208.200809]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656208.201083]: -------------------\n", - "[INFO] [1712656208.201337]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712656208.201578]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712656208.201824]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.202088]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712656208.202402]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.202916]: Instances: []\n", - "[INFO] [1712656208.203190]: Direct Instances: []\n", - "[INFO] [1712656208.203458]: Inverse Restrictions: []\n", - "[INFO] [1712656208.203696]: -------------------\n", - "[INFO] [1712656208.203941]: SOMA.ExperiencerRole \n", - "[INFO] [1712656208.204180]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712656208.204427]: Ancestors: {DUL.Concept, SOMA.ExperiencerRole, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", - "[INFO] [1712656208.204683]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712656208.204985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.205494]: Instances: []\n", - "[INFO] [1712656208.205773]: Direct Instances: []\n", - "[INFO] [1712656208.206037]: Inverse Restrictions: []\n", - "[INFO] [1712656208.206280]: -------------------\n", - "[INFO] [1712656208.206526]: SOMA.ExtractedObject \n", - "[INFO] [1712656208.206765]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656208.207042]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.ExtractedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.207283]: Subclasses: []\n", - "[INFO] [1712656208.207579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.208086]: Instances: []\n", - "[INFO] [1712656208.208358]: Direct Instances: []\n", - "[INFO] [1712656208.208616]: Inverse Restrictions: []\n", - "[INFO] [1712656208.208859]: -------------------\n", - "[INFO] [1712656208.209094]: SOMA.PhysicalQuality \n", - "[INFO] [1712656208.209344]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712656208.209594]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", - "[INFO] [1712656208.209857]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712656208.210159]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf, rdf-schema.label]\n", - "[INFO] [1712656208.211041]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712656208.211453]: Direct Instances: []\n", - "[INFO] [1712656208.211756]: Inverse Restrictions: []\n", - "[INFO] [1712656208.212023]: -------------------\n", - "[INFO] [1712656208.212279]: SOMA.FailedAttempt \n", - "[INFO] [1712656208.212522]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712656208.212834]: Ancestors: {DUL.Description, SOMA.FailedAttempt, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.213105]: Subclasses: []\n", - "[INFO] [1712656208.213426]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.213939]: Instances: []\n", - "[INFO] [1712656208.214216]: Direct Instances: []\n", - "[INFO] [1712656208.214464]: Inverse Restrictions: []\n", - "[INFO] [1712656208.214728]: -------------------\n", - "[INFO] [1712656208.214991]: SOMA.FaultySoftware \n", - "[INFO] [1712656208.215245]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712656208.215560]: Ancestors: {SOMA.FaultySoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656208.215816]: Subclasses: []\n", - "[INFO] [1712656208.216119]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.216636]: Instances: []\n", - "[INFO] [1712656208.216939]: Direct Instances: []\n", - "[INFO] [1712656208.217201]: Inverse Restrictions: []\n", - "[INFO] [1712656208.217440]: -------------------\n", - "[INFO] [1712656208.217678]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712656208.217920]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712656208.218177]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656208.218455]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712656208.218764]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.219269]: Instances: []\n", - "[INFO] [1712656208.219561]: Direct Instances: []\n", - "[INFO] [1712656208.219839]: Inverse Restrictions: []\n", - "[INFO] [1712656208.220079]: -------------------\n", - "[INFO] [1712656208.220316]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712656208.220550]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712656208.220808]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.PhysicalAcquiring, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656208.221082]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712656208.221390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.221882]: Instances: []\n", - "[INFO] [1712656208.222166]: Direct Instances: []\n", - "[INFO] [1712656208.222432]: Inverse Restrictions: []\n", - "[INFO] [1712656208.222670]: -------------------\n", - "[INFO] [1712656208.222902]: SOMA.Finger \n", - "[INFO] [1712656208.223166]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712656208.223452]: Ancestors: {DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Finger, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.223717]: Subclasses: []\n", - "[INFO] [1712656208.224033]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isPartOf]\n", - "[INFO] [1712656208.224526]: Instances: []\n", - "[INFO] [1712656208.224810]: Direct Instances: []\n", - "[INFO] [1712656208.225084]: Inverse Restrictions: []\n", - "[INFO] [1712656208.225330]: -------------------\n", - "[INFO] [1712656208.225572]: SOMA.Hand \n", - "[INFO] [1712656208.225815]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712656208.226114]: Ancestors: {DUL.PhysicalBody, SOMA.Hand, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.226396]: Subclasses: []\n", - "[INFO] [1712656208.226711]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.227229]: Instances: []\n", - "[INFO] [1712656208.227512]: Direct Instances: []\n", - "[INFO] [1712656208.227819]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712656208.228078]: -------------------\n", - "[INFO] [1712656208.228324]: SOMA.FixedJoint \n", - "[INFO] [1712656208.228595]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712656208.228947]: Ancestors: {DUL.PhysicalBody, SOMA.Joint, SOMA.FixedJoint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.229339]: Subclasses: []\n", - "[INFO] [1712656208.229770]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.230292]: Instances: []\n", - "[INFO] [1712656208.230598]: Direct Instances: []\n", - "[INFO] [1712656208.230921]: Inverse Restrictions: []\n", - "[INFO] [1712656208.231177]: -------------------\n", - "[INFO] [1712656208.231473]: SOMA.MovableJoint \n", - "[INFO] [1712656208.231722]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712656208.231976]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.232245]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712656208.232542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointState]\n", - "[INFO] [1712656208.233039]: Instances: []\n", - "[INFO] [1712656208.233321]: Direct Instances: []\n", - "[INFO] [1712656208.233623]: Inverse Restrictions: []\n", - "[INFO] [1712656208.233860]: -------------------\n", - "[INFO] [1712656208.234092]: SOMA.Flipping \n", - "[INFO] [1712656208.234337]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712656208.234618]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Flipping, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656208.234871]: Subclasses: []\n", - "[INFO] [1712656208.235178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656208.235682]: Instances: []\n", - "[INFO] [1712656208.235959]: Direct Instances: []\n", - "[INFO] [1712656208.236213]: Inverse Restrictions: []\n", - "[INFO] [1712656208.236444]: -------------------\n", - "[INFO] [1712656208.236671]: SOMA.FloatingJoint \n", - "[INFO] [1712656208.236905]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712656208.237188]: Ancestors: {SOMA.FloatingJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.237435]: Subclasses: []\n", - "[INFO] [1712656208.237722]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.238219]: Instances: []\n", - "[INFO] [1712656208.238492]: Direct Instances: []\n", - "[INFO] [1712656208.238745]: Inverse Restrictions: []\n", - "[INFO] [1712656208.238977]: -------------------\n", - "[INFO] [1712656208.239205]: SOMA.Fluid \n", - "[INFO] [1712656208.239433]: Super classes: [DUL.Substance]\n", - "[INFO] [1712656208.239706]: Ancestors: {DUL.Substance, SOMA.Fluid, DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.239946]: Subclasses: []\n", - "[INFO] [1712656208.240226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.240710]: Instances: []\n", - "[INFO] [1712656208.240983]: Direct Instances: []\n", - "[INFO] [1712656208.241231]: Inverse Restrictions: []\n", - "[INFO] [1712656208.241462]: -------------------\n", - "[INFO] [1712656208.241688]: SOMA.MovedObject \n", - "[INFO] [1712656208.241956]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712656208.242253]: Ancestors: {SOMA.MovedObject, DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.242511]: Subclasses: []\n", - "[INFO] [1712656208.242813]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.243301]: Instances: []\n", - "[INFO] [1712656208.243587]: Direct Instances: []\n", - "[INFO] [1712656208.244375]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712656208.244634]: -------------------\n", - "[INFO] [1712656208.244882]: SOMA.Focusing \n", - "[INFO] [1712656208.245120]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712656208.245401]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.AttentionShift, DUL.SocialObject, SOMA.MentalTask, DUL.Entity, SOMA.Focusing}\n", - "[INFO] [1712656208.245655]: Subclasses: []\n", - "[INFO] [1712656208.245944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.246429]: Instances: []\n", - "[INFO] [1712656208.246705]: Direct Instances: []\n", - "[INFO] [1712656208.246959]: Inverse Restrictions: []\n", - "[INFO] [1712656208.247197]: -------------------\n", - "[INFO] [1712656208.247428]: SOMA.Foolishness \n", - "[INFO] [1712656208.247656]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712656208.247926]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.Foolishness, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.248188]: Subclasses: []\n", - "[INFO] [1712656208.248485]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.248974]: Instances: []\n", - "[INFO] [1712656208.249243]: Direct Instances: []\n", - "[INFO] [1712656208.249485]: Inverse Restrictions: []\n", - "[INFO] [1712656208.249734]: -------------------\n", - "[INFO] [1712656208.249974]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712656208.250206]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712656208.250482]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, SOMA.ForgettingIncorrectInformation, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656208.250721]: Subclasses: []\n", - "[INFO] [1712656208.251003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.251497]: Instances: []\n", - "[INFO] [1712656208.251755]: Direct Instances: []\n", - "[INFO] [1712656208.251998]: Inverse Restrictions: []\n", - "[INFO] [1712656208.252227]: -------------------\n", - "[INFO] [1712656208.252452]: SOMA.InformationDismissal \n", - "[INFO] [1712656208.252728]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712656208.252998]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656208.253259]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712656208.253554]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712656208.254042]: Instances: []\n", - "[INFO] [1712656208.254320]: Direct Instances: []\n", - "[INFO] [1712656208.254582]: Inverse Restrictions: []\n", - "[INFO] [1712656208.254817]: -------------------\n", - "[INFO] [1712656208.255057]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712656208.255290]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712656208.255557]: Ancestors: {SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656208.255797]: Subclasses: []\n", - "[INFO] [1712656208.256080]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.256582]: Instances: []\n", - "[INFO] [1712656208.256845]: Direct Instances: []\n", - "[INFO] [1712656208.257097]: Inverse Restrictions: []\n", - "[INFO] [1712656208.257335]: -------------------\n", - "[INFO] [1712656208.257565]: SOMA.Language \n", - "[INFO] [1712656208.257822]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712656208.258086]: Ancestors: {DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.258347]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712656208.258640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.259159]: Instances: []\n", - "[INFO] [1712656208.259427]: Direct Instances: []\n", - "[INFO] [1712656208.260465]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712656208.260740]: -------------------\n", - "[INFO] [1712656208.260992]: SOMA.FreezerCompartment \n", - "[INFO] [1712656208.261225]: Super classes: [SOMA.Compartment]\n", - "[INFO] [1712656208.261499]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, SOMA.FreezerCompartment, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart, SOMA.Compartment}\n", - "[INFO] [1712656208.261733]: Subclasses: []\n", - "[INFO] [1712656208.262015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.262512]: Instances: []\n", - "[INFO] [1712656208.262768]: Direct Instances: []\n", - "[INFO] [1712656208.263010]: Inverse Restrictions: []\n", - "[INFO] [1712656208.263243]: -------------------\n", - "[INFO] [1712656208.263471]: SOMA.Item \n", - "[INFO] [1712656208.263711]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656208.263957]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.264218]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712656208.264512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.265039]: Instances: []\n", - "[INFO] [1712656208.265324]: Direct Instances: []\n", - "[INFO] [1712656208.265697]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712656208.265956]: -------------------\n", - "[INFO] [1712656208.266197]: SOMA.FunctionalDesign \n", - "[INFO] [1712656208.266428]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712656208.266690]: Ancestors: {SOMA.FunctionalDesign, DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.266925]: Subclasses: []\n", - "[INFO] [1712656208.267220]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.267702]: Instances: []\n", - "[INFO] [1712656208.267968]: Direct Instances: []\n", - "[INFO] [1712656208.268220]: Inverse Restrictions: []\n", - "[INFO] [1712656208.268453]: -------------------\n", - "[INFO] [1712656208.268678]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712656208.269018]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712656208.269359]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656208.269654]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712656208.269967]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.270492]: Instances: []\n", - "[INFO] [1712656208.270778]: Direct Instances: []\n", - "[INFO] [1712656208.271046]: Inverse Restrictions: []\n", - "[INFO] [1712656208.271289]: -------------------\n", - "[INFO] [1712656208.271523]: SOMA.LocatumRole \n", - "[INFO] [1712656208.271756]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656208.272035]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.LocatumRole, DUL.Entity, SOMA.SpatialRelationRole}\n", - "[INFO] [1712656208.272303]: Subclasses: []\n", - "[INFO] [1712656208.272601]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.273094]: Instances: []\n", - "[INFO] [1712656208.273359]: Direct Instances: []\n", - "[INFO] [1712656208.273696]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712656208.273943]: -------------------\n", - "[INFO] [1712656208.274173]: SOMA.RelatumRole \n", - "[INFO] [1712656208.274403]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656208.274667]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, SOMA.RelatumRole, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SpatialRelationRole}\n", - "[INFO] [1712656208.274924]: Subclasses: []\n", - "[INFO] [1712656208.275226]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.275717]: Instances: []\n", - "[INFO] [1712656208.275977]: Direct Instances: []\n", - "[INFO] [1712656208.276308]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712656208.276559]: -------------------\n", - "[INFO] [1712656208.276799]: SOMA.GasCooktop \n", - "[INFO] [1712656208.277030]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712656208.277300]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.GasCooktop, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.277558]: Subclasses: []\n", - "[INFO] [1712656208.277860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.278348]: Instances: []\n", - "[INFO] [1712656208.278605]: Direct Instances: []\n", - "[INFO] [1712656208.278869]: Inverse Restrictions: []\n", - "[INFO] [1712656208.279103]: -------------------\n", - "[INFO] [1712656208.279330]: SOMA.GetTaskParameter \n", - "[INFO] [1712656208.279552]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712656208.279818]: Ancestors: {SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712656208.280084]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712656208.280374]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.280954]: Instances: []\n", - "[INFO] [1712656208.281363]: Direct Instances: []\n", - "[INFO] [1712656208.281749]: Inverse Restrictions: []\n", - "[INFO] [1712656208.282107]: -------------------\n", - "[INFO] [1712656208.282464]: SOMA.Planning \n", - "[INFO] [1712656208.283135]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712656208.283447]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712656208.283729]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712656208.284031]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isTaskOf]\n", - "[INFO] [1712656208.284542]: Instances: []\n", - "[INFO] [1712656208.284826]: Direct Instances: []\n", - "[INFO] [1712656208.285096]: Inverse Restrictions: []\n", - "[INFO] [1712656208.285331]: -------------------\n", - "[INFO] [1712656208.285559]: SOMA.Glass \n", - "[INFO] [1712656208.285786]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712656208.286052]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool, SOMA.Glass}\n", - "[INFO] [1712656208.286323]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", - "[INFO] [1712656208.286611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.287094]: Instances: []\n", - "[INFO] [1712656208.287341]: Direct Instances: []\n", - "[INFO] [1712656208.287586]: Inverse Restrictions: []\n", - "[INFO] [1712656208.287817]: -------------------\n", - "[INFO] [1712656208.288046]: SOMA.GraphDatabase \n", - "[INFO] [1712656208.288272]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712656208.288534]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.288778]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712656208.289081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.289571]: Instances: []\n", - "[INFO] [1712656208.289840]: Direct Instances: []\n", - "[INFO] [1712656208.290089]: Inverse Restrictions: []\n", - "[INFO] [1712656208.290318]: -------------------\n", - "[INFO] [1712656208.290546]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712656208.290784]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712656208.291058]: Ancestors: {SOMA.Computer_Language, SOMA.GraphQueryLanguage, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.291293]: Subclasses: []\n", - "[INFO] [1712656208.291573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.292074]: Instances: []\n", - "[INFO] [1712656208.292351]: Direct Instances: []\n", - "[INFO] [1712656208.292598]: Inverse Restrictions: []\n", - "[INFO] [1712656208.292844]: -------------------\n", - "[INFO] [1712656208.293081]: SOMA.QueryLanguage \n", - "[INFO] [1712656208.293327]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656208.293576]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.293824]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712656208.294114]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.294606]: Instances: []\n", - "[INFO] [1712656208.294864]: Direct Instances: []\n", - "[INFO] [1712656208.295116]: Inverse Restrictions: []\n", - "[INFO] [1712656208.295344]: -------------------\n", - "[INFO] [1712656208.295573]: SOMA.GraspTransfer \n", - "[INFO] [1712656208.295798]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712656208.296083]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.GraspTransfer, SOMA.Grasping, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.296317]: Subclasses: []\n", - "[INFO] [1712656208.296597]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.297129]: Instances: []\n", - "[INFO] [1712656208.297417]: Direct Instances: []\n", - "[INFO] [1712656208.297669]: Inverse Restrictions: []\n", - "[INFO] [1712656208.297904]: -------------------\n", - "[INFO] [1712656208.298132]: SOMA.Grasping \n", - "[INFO] [1712656208.298357]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656208.298622]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Grasping, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.298891]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712656208.299195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.299685]: Instances: []\n", - "[INFO] [1712656208.299957]: Direct Instances: []\n", - "[INFO] [1712656208.300218]: Inverse Restrictions: []\n", - "[INFO] [1712656208.300450]: -------------------\n", - "[INFO] [1712656208.300675]: SOMA.Releasing \n", - "[INFO] [1712656208.300908]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656208.301177]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Releasing, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.301436]: Subclasses: []\n", - "[INFO] [1712656208.301726]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.302214]: Instances: []\n", - "[INFO] [1712656208.302485]: Direct Instances: []\n", - "[INFO] [1712656208.302739]: Inverse Restrictions: []\n", - "[INFO] [1712656208.302971]: -------------------\n", - "[INFO] [1712656208.303202]: SOMA.GraspingMotion \n", - "[INFO] [1712656208.303426]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712656208.304874]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.305181]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712656208.305513]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.306045]: Instances: []\n", - "[INFO] [1712656208.306349]: Direct Instances: []\n", - "[INFO] [1712656208.306659]: Inverse Restrictions: []\n", - "[INFO] [1712656208.306913]: -------------------\n", - "[INFO] [1712656208.307144]: SOMA.IntermediateGrasp \n", - "[INFO] [1712656208.307372]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712656208.307643]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.IntermediateGrasp, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.307897]: Subclasses: []\n", - "[INFO] [1712656208.308199]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.308681]: Instances: []\n", - "[INFO] [1712656208.308961]: Direct Instances: []\n", - "[INFO] [1712656208.309258]: Inverse Restrictions: []\n", - "[INFO] [1712656208.309503]: -------------------\n", - "[INFO] [1712656208.309741]: SOMA.PowerGrasp \n", - "[INFO] [1712656208.309971]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712656208.310245]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.PowerGrasp, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.310506]: Subclasses: []\n", - "[INFO] [1712656208.310814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.311312]: Instances: []\n", - "[INFO] [1712656208.311570]: Direct Instances: []\n", - "[INFO] [1712656208.311872]: Inverse Restrictions: []\n", - "[INFO] [1712656208.312115]: -------------------\n", - "[INFO] [1712656208.312352]: SOMA.PrecisionGrasp \n", - "[INFO] [1712656208.312581]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712656208.312855]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, SOMA.PrecisionGrasp, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.313094]: Subclasses: []\n", - "[INFO] [1712656208.313431]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.313956]: Instances: []\n", - "[INFO] [1712656208.314237]: Direct Instances: []\n", - "[INFO] [1712656208.314538]: Inverse Restrictions: []\n", - "[INFO] [1712656208.314788]: -------------------\n", - "[INFO] [1712656208.315027]: SOMA.PrehensileMotion \n", - "[INFO] [1712656208.315685]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712656208.315950]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.316210]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712656208.316526]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.317033]: Instances: []\n", - "[INFO] [1712656208.317305]: Direct Instances: []\n", - "[INFO] [1712656208.317565]: Inverse Restrictions: []\n", - "[INFO] [1712656208.317809]: -------------------\n", - "[INFO] [1712656208.318044]: SOMA.ReleasingMotion \n", - "[INFO] [1712656208.318277]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712656208.318545]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.PrehensileMotion, DUL.EventType, SOMA.ReleasingMotion, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.318783]: Subclasses: []\n", - "[INFO] [1712656208.319081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.319568]: Instances: []\n", - "[INFO] [1712656208.319837]: Direct Instances: []\n", - "[INFO] [1712656208.320140]: Inverse Restrictions: []\n", - "[INFO] [1712656208.320382]: -------------------\n", - "[INFO] [1712656208.320615]: SOMA.GreenColor \n", - "[INFO] [1712656208.320852]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712656208.321126]: Ancestors: {SOMA.GreenColor, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656208.321388]: Subclasses: []\n", - "[INFO] [1712656208.321685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.322182]: Instances: []\n", - "[INFO] [1712656208.322458]: Direct Instances: []\n", - "[INFO] [1712656208.322710]: Inverse Restrictions: []\n", - "[INFO] [1712656208.322949]: -------------------\n", - "[INFO] [1712656208.323179]: SOMA.Gripper \n", - "[INFO] [1712656208.323411]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712656208.323680]: Ancestors: {SOMA.Gripper, DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.323939]: Subclasses: []\n", - "[INFO] [1712656208.324233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.324721]: Instances: []\n", - "[INFO] [1712656208.324998]: Direct Instances: []\n", - "[INFO] [1712656208.325255]: Inverse Restrictions: []\n", - "[INFO] [1712656208.325485]: -------------------\n", - "[INFO] [1712656208.325713]: SOMA.PrehensileEffector \n", - "[INFO] [1712656208.325941]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712656208.326188]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.326443]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712656208.326733]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.327215]: Instances: []\n", - "[INFO] [1712656208.327489]: Direct Instances: []\n", - "[INFO] [1712656208.327804]: Inverse Restrictions: []\n", - "[INFO] [1712656208.328057]: -------------------\n", - "[INFO] [1712656208.328290]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712656208.328526]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712656208.328806]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, SOMA.HardwareDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.329055]: Subclasses: []\n", - "[INFO] [1712656208.329338]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.329818]: Instances: []\n", - "[INFO] [1712656208.330113]: Direct Instances: []\n", - "[INFO] [1712656208.330380]: Inverse Restrictions: []\n", - "[INFO] [1712656208.330614]: -------------------\n", - "[INFO] [1712656208.330846]: SOMA.HasQualityRegion \n", - "[INFO] [1712656208.331111]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712656208.331403]: Ancestors: {DUL.Relation, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, SOMA.HasQualityRegion, DUL.Entity}\n", - "[INFO] [1712656208.331670]: Subclasses: []\n", - "[INFO] [1712656208.331965]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.label, DUL.hasQuality, rdf-schema.comment]\n", - "[INFO] [1712656208.332459]: Instances: []\n", - "[INFO] [1712656208.332721]: Direct Instances: []\n", - "[INFO] [1712656208.332985]: Inverse Restrictions: []\n", - "[INFO] [1712656208.333217]: -------------------\n", - "[INFO] [1712656208.333453]: SOMA.Head \n", - "[INFO] [1712656208.333678]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712656208.333941]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.Head, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.334197]: Subclasses: []\n", - "[INFO] [1712656208.334930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.335490]: Instances: []\n", - "[INFO] [1712656208.335753]: Direct Instances: []\n", - "[INFO] [1712656208.336004]: Inverse Restrictions: []\n", - "[INFO] [1712656208.336259]: -------------------\n", - "[INFO] [1712656208.336508]: SOMA.HeadMovement \n", - "[INFO] [1712656208.336744]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712656208.337710]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.HeadMovement, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.338257]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712656208.338869]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.339665]: Instances: []\n", - "[INFO] [1712656208.340182]: Direct Instances: []\n", - "[INFO] [1712656208.340605]: Inverse Restrictions: []\n", - "[INFO] [1712656208.340991]: -------------------\n", - "[INFO] [1712656208.341298]: SOMA.HeadTurning \n", - "[INFO] [1712656208.341561]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712656208.341838]: Ancestors: {DUL.Concept, SOMA.HeadTurning, DUL.EventType, SOMA.HeadMovement, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.342083]: Subclasses: []\n", - "[INFO] [1712656208.342370]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.342877]: Instances: []\n", - "[INFO] [1712656208.343148]: Direct Instances: []\n", - "[INFO] [1712656208.343401]: Inverse Restrictions: []\n", - "[INFO] [1712656208.343638]: -------------------\n", - "[INFO] [1712656208.343873]: SOMA.Holding \n", - "[INFO] [1712656208.344109]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656208.344387]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Holding, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.344635]: Subclasses: []\n", - "[INFO] [1712656208.344924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.345430]: Instances: []\n", - "[INFO] [1712656208.345703]: Direct Instances: []\n", - "[INFO] [1712656208.345960]: Inverse Restrictions: []\n", - "[INFO] [1712656208.346198]: -------------------\n", - "[INFO] [1712656208.346436]: SOMA.HostRole \n", - "[INFO] [1712656208.346707]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712656208.347022]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.HostRole, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.347286]: Subclasses: []\n", - "[INFO] [1712656208.347581]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", - "[INFO] [1712656208.348082]: Instances: []\n", - "[INFO] [1712656208.348368]: Direct Instances: []\n", - "[INFO] [1712656208.349430]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712656208.349694]: -------------------\n", - "[INFO] [1712656208.349939]: SOMA.PluginSpecification \n", - "[INFO] [1712656208.350185]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712656208.350468]: Ancestors: {DUL.Design, SOMA.API_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PluginSpecification}\n", - "[INFO] [1712656208.350719]: Subclasses: []\n", - "[INFO] [1712656208.351009]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", - "[INFO] [1712656208.351498]: Instances: []\n", - "[INFO] [1712656208.351773]: Direct Instances: []\n", - "[INFO] [1712656208.352105]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712656208.352352]: -------------------\n", - "[INFO] [1712656208.352585]: SOMA.Hotplate \n", - "[INFO] [1712656208.352823]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656208.353100]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Hotplate, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.353346]: Subclasses: []\n", - "[INFO] [1712656208.353628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.354131]: Instances: []\n", - "[INFO] [1712656208.354393]: Direct Instances: []\n", - "[INFO] [1712656208.354669]: Inverse Restrictions: [SOMA.Stove]\n", - "[INFO] [1712656208.354913]: -------------------\n", - "[INFO] [1712656208.355146]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712656208.355398]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712656208.355690]: Ancestors: {SOMA.Computer_Language, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, SOMA.Programming_Language, DUL.Object, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.355942]: Subclasses: []\n", - "[INFO] [1712656208.356233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.356717]: Instances: []\n", - "[INFO] [1712656208.357110]: Direct Instances: []\n", - "[INFO] [1712656208.358229]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712656208.358506]: -------------------\n", - "[INFO] [1712656208.358754]: SOMA.Source_Code \n", - "[INFO] [1712656208.358991]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712656208.359465]: Ancestors: {SOMA.Computer_Program, SOMA.Source_Code, owl.Thing}\n", - "[INFO] [1712656208.359741]: Subclasses: []\n", - "[INFO] [1712656208.360336]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656208.361037]: Instances: []\n", - "[INFO] [1712656208.361365]: Direct Instances: []\n", - "[INFO] [1712656208.361690]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712656208.361951]: -------------------\n", - "[INFO] [1712656208.362212]: SOMA.HumanActivityRecording \n", - "[INFO] [1712656208.362458]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712656208.362742]: Ancestors: {DUL.Situation, SOMA.Episode, SOMA.HumanActivityRecording, owl.Thing, DUL.Entity, SOMA.RecordedEpisode}\n", - "[INFO] [1712656208.362988]: Subclasses: []\n", - "[INFO] [1712656208.363281]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.363826]: Instances: []\n", - "[INFO] [1712656208.364113]: Direct Instances: []\n", - "[INFO] [1712656208.364375]: Inverse Restrictions: []\n", - "[INFO] [1712656208.364611]: -------------------\n", - "[INFO] [1712656208.364874]: SOMA.Imagining \n", - "[INFO] [1712656208.365257]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712656208.365648]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Imagining}\n", - "[INFO] [1712656208.365935]: Subclasses: []\n", - "[INFO] [1712656208.366237]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.366737]: Instances: []\n", - "[INFO] [1712656208.366999]: Direct Instances: []\n", - "[INFO] [1712656208.367244]: Inverse Restrictions: []\n", - "[INFO] [1712656208.367479]: -------------------\n", - "[INFO] [1712656208.367712]: SOMA.Impediment \n", - "[INFO] [1712656208.367987]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712656208.368256]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Impediment, DUL.Quality, SOMA.Blockage, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656208.368497]: Subclasses: []\n", - "[INFO] [1712656208.368781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.369278]: Instances: []\n", - "[INFO] [1712656208.369537]: Direct Instances: []\n", - "[INFO] [1712656208.369785]: Inverse Restrictions: []\n", - "[INFO] [1712656208.370014]: -------------------\n", - "[INFO] [1712656208.370240]: SOMA.Obstacle \n", - "[INFO] [1712656208.370465]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712656208.370736]: Ancestors: {DUL.Concept, SOMA.Obstacle, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656208.370980]: Subclasses: []\n", - "[INFO] [1712656208.371256]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.371732]: Instances: []\n", - "[INFO] [1712656208.371997]: Direct Instances: []\n", - "[INFO] [1712656208.372280]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712656208.372516]: -------------------\n", - "[INFO] [1712656208.372743]: SOMA.RestrictedObject \n", - "[INFO] [1712656208.372973]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712656208.373242]: Ancestors: {DUL.Concept, SOMA.RestrictedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", - "[INFO] [1712656208.373483]: Subclasses: []\n", - "[INFO] [1712656208.373762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.374243]: Instances: []\n", - "[INFO] [1712656208.374508]: Direct Instances: []\n", - "[INFO] [1712656208.374797]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712656208.375036]: -------------------\n", - "[INFO] [1712656208.375266]: SOMA.StateTransition \n", - "[INFO] [1712656208.375529]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712656208.375801]: Ancestors: {DUL.Situation, DUL.Transition, owl.Thing, SOMA.StateTransition, DUL.Entity}\n", - "[INFO] [1712656208.376047]: Subclasses: []\n", - "[INFO] [1712656208.376336]: Properties: [SOMA.hasTerminalScene, DUL.satisfies, rdf-schema.isDefinedBy, SOMA.hasInitialScene, rdf-schema.label, rdf-schema.comment, DUL.includesEvent]\n", - "[INFO] [1712656208.376848]: Instances: []\n", - "[INFO] [1712656208.377103]: Direct Instances: []\n", - "[INFO] [1712656208.377415]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712656208.377649]: -------------------\n", - "[INFO] [1712656208.377891]: SOMA.Inability \n", - "[INFO] [1712656208.378131]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712656208.378397]: Ancestors: {SOMA.Inability, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.378641]: Subclasses: []\n", - "[INFO] [1712656208.378920]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.379425]: Instances: []\n", - "[INFO] [1712656208.379682]: Direct Instances: []\n", - "[INFO] [1712656208.379931]: Inverse Restrictions: []\n", - "[INFO] [1712656208.380197]: -------------------\n", - "[INFO] [1712656208.380430]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712656208.380671]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712656208.380943]: Ancestors: {SOMA.IncompatibleSoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656208.381186]: Subclasses: []\n", - "[INFO] [1712656208.381469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.381969]: Instances: []\n", - "[INFO] [1712656208.382228]: Direct Instances: []\n", - "[INFO] [1712656208.382478]: Inverse Restrictions: []\n", - "[INFO] [1712656208.382709]: -------------------\n", - "[INFO] [1712656208.382941]: SOMA.InductionCooktop \n", - "[INFO] [1712656208.383171]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712656208.383450]: Ancestors: {SOMA.InductionCooktop, DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.ElectricCooktop, DUL.PhysicalObject, SOMA.Cooktop, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.383712]: Subclasses: []\n", - "[INFO] [1712656208.384056]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.384569]: Instances: []\n", - "[INFO] [1712656208.384837]: Direct Instances: []\n", - "[INFO] [1712656208.385095]: Inverse Restrictions: []\n", - "[INFO] [1712656208.385331]: -------------------\n", - "[INFO] [1712656208.385571]: SOMA.InductiveReasoning \n", - "[INFO] [1712656208.385821]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712656208.386085]: Ancestors: {SOMA.InductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.Reasoning}\n", - "[INFO] [1712656208.386330]: Subclasses: []\n", - "[INFO] [1712656208.386613]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.387116]: Instances: []\n", - "[INFO] [1712656208.387377]: Direct Instances: []\n", - "[INFO] [1712656208.387630]: Inverse Restrictions: []\n", - "[INFO] [1712656208.387862]: -------------------\n", - "[INFO] [1712656208.388091]: SOMA.Infeasibility \n", - "[INFO] [1712656208.388320]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712656208.388592]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.388841]: Subclasses: []\n", - "[INFO] [1712656208.389123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.389606]: Instances: []\n", - "[INFO] [1712656208.389888]: Direct Instances: []\n", - "[INFO] [1712656208.390141]: Inverse Restrictions: []\n", - "[INFO] [1712656208.390375]: -------------------\n", - "[INFO] [1712656208.390607]: SOMA.InferenceRules \n", - "[INFO] [1712656208.390837]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712656208.391099]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.InferenceRules}\n", - "[INFO] [1712656208.391362]: Subclasses: []\n", - "[INFO] [1712656208.391658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.392146]: Instances: []\n", - "[INFO] [1712656208.392399]: Direct Instances: []\n", - "[INFO] [1712656208.392656]: Inverse Restrictions: []\n", - "[INFO] [1712656208.392895]: -------------------\n", - "[INFO] [1712656208.393132]: SOMA.InformationRetrieval \n", - "[INFO] [1712656208.393373]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712656208.393627]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.InformationRetrieval}\n", - "[INFO] [1712656208.393888]: Subclasses: []\n", - "[INFO] [1712656208.394180]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712656208.394667]: Instances: []\n", - "[INFO] [1712656208.394918]: Direct Instances: []\n", - "[INFO] [1712656208.395223]: Inverse Restrictions: []\n", - "[INFO] [1712656208.395475]: -------------------\n", - "[INFO] [1712656208.395720]: SOMA.InformationStorage \n", - "[INFO] [1712656208.395993]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712656208.396260]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656208.396601]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712656208.396947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712656208.397456]: Instances: []\n", - "[INFO] [1712656208.397729]: Direct Instances: []\n", - "[INFO] [1712656208.397985]: Inverse Restrictions: []\n", - "[INFO] [1712656208.398222]: -------------------\n", - "[INFO] [1712656208.398455]: SOMA.StoredObject \n", - "[INFO] [1712656208.398686]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712656208.398949]: Ancestors: {DUL.Concept, DUL.Role, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, SOMA.StoredObject, owl.Thing, DUL.SocialObject, SOMA.EnclosedObject, DUL.Entity}\n", - "[INFO] [1712656208.399227]: Subclasses: []\n", - "[INFO] [1712656208.399524]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.400014]: Instances: []\n", - "[INFO] [1712656208.400265]: Direct Instances: []\n", - "[INFO] [1712656208.400599]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712656208.400856]: -------------------\n", - "[INFO] [1712656208.401100]: SOMA.InsertedObject \n", - "[INFO] [1712656208.401335]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712656208.401601]: Ancestors: {DUL.Concept, DUL.Role, SOMA.IncludedObject, SOMA.Patient, SOMA.InsertedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.EnclosedObject, DUL.Entity}\n", - "[INFO] [1712656208.401843]: Subclasses: []\n", - "[INFO] [1712656208.402136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.402626]: Instances: []\n", - "[INFO] [1712656208.402879]: Direct Instances: []\n", - "[INFO] [1712656208.403162]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712656208.403397]: -------------------\n", - "[INFO] [1712656208.403644]: SOMA.Instructions \n", - "[INFO] [1712656208.403878]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712656208.404139]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Instructions, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.404378]: Subclasses: []\n", - "[INFO] [1712656208.404655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.405155]: Instances: []\n", - "[INFO] [1712656208.405414]: Direct Instances: []\n", - "[INFO] [1712656208.405661]: Inverse Restrictions: []\n", - "[INFO] [1712656208.405892]: -------------------\n", - "[INFO] [1712656208.406120]: SOMA.Interpreting \n", - "[INFO] [1712656208.406359]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656208.406618]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Interpreting, SOMA.DerivingInformation}\n", - "[INFO] [1712656208.406865]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712656208.407143]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.407635]: Instances: []\n", - "[INFO] [1712656208.407905]: Direct Instances: []\n", - "[INFO] [1712656208.408159]: Inverse Restrictions: []\n", - "[INFO] [1712656208.408397]: -------------------\n", - "[INFO] [1712656208.408642]: SOMA.InterrogativeClause \n", - "[INFO] [1712656208.408878]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712656208.409139]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, SOMA.InterrogativeClause, DUL.InformationObject}\n", - "[INFO] [1712656208.409379]: Subclasses: []\n", - "[INFO] [1712656208.409662]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.410160]: Instances: []\n", - "[INFO] [1712656208.410420]: Direct Instances: []\n", - "[INFO] [1712656208.410712]: Inverse Restrictions: []\n", - "[INFO] [1712656208.410954]: -------------------\n", - "[INFO] [1712656208.411203]: SOMA.Introspecting \n", - "[INFO] [1712656208.411444]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712656208.411702]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Introspecting}\n", - "[INFO] [1712656208.411948]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712656208.412519]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.413066]: Instances: []\n", - "[INFO] [1712656208.413343]: Direct Instances: []\n", - "[INFO] [1712656208.413637]: Inverse Restrictions: []\n", - "[INFO] [1712656208.413899]: -------------------\n", - "[INFO] [1712656208.414144]: SOMA.JamJar \n", - "[INFO] [1712656208.414396]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712656208.414675]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.JamJar, DUL.PhysicalObject, SOMA.Jar, DUL.Entity}\n", - "[INFO] [1712656208.414927]: Subclasses: [SOMA.RaspberryJamJar]\n", - "[INFO] [1712656208.415215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.416223]: Instances: []\n", - "[INFO] [1712656208.416695]: Direct Instances: []\n", - "[INFO] [1712656208.417184]: Inverse Restrictions: []\n", - "[INFO] [1712656208.417702]: -------------------\n", - "[INFO] [1712656208.418238]: SOMA.Jar \n", - "[INFO] [1712656208.418764]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712656208.419305]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Jar, DUL.Entity}\n", - "[INFO] [1712656208.419732]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", - "[INFO] [1712656208.420214]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.420948]: Instances: []\n", - "[INFO] [1712656208.421334]: Direct Instances: []\n", - "[INFO] [1712656208.421640]: Inverse Restrictions: []\n", - "[INFO] [1712656208.421911]: -------------------\n", - "[INFO] [1712656208.422166]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712656208.422415]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712656208.422698]: Ancestors: {DUL.Region, SOMA.KineticFrictionAttribute, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656208.422941]: Subclasses: []\n", - "[INFO] [1712656208.423234]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.423740]: Instances: []\n", - "[INFO] [1712656208.424016]: Direct Instances: []\n", - "[INFO] [1712656208.424265]: Inverse Restrictions: []\n", - "[INFO] [1712656208.424499]: -------------------\n", - "[INFO] [1712656208.424728]: SOMA.KinoDynamicData \n", - "[INFO] [1712656208.424981]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656208.425269]: Ancestors: {DUL.InformationEntity, SOMA.KinoDynamicData, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656208.425523]: Subclasses: []\n", - "[INFO] [1712656208.425812]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.426290]: Instances: []\n", - "[INFO] [1712656208.426567]: Direct Instances: []\n", - "[INFO] [1712656208.426825]: Inverse Restrictions: []\n", - "[INFO] [1712656208.427059]: -------------------\n", - "[INFO] [1712656208.427303]: SOMA.Kitchen \n", - "[INFO] [1712656208.427552]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712656208.427847]: Ancestors: {SOMA.Room, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity, SOMA.Kitchen}\n", - "[INFO] [1712656208.428138]: Subclasses: []\n", - "[INFO] [1712656208.428482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712656208.429068]: Instances: []\n", - "[INFO] [1712656208.429391]: Direct Instances: []\n", - "[INFO] [1712656208.429723]: Inverse Restrictions: []\n", - "[INFO] [1712656208.430039]: -------------------\n", - "[INFO] [1712656208.430383]: SOMA.Room \n", - "[INFO] [1712656208.430720]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712656208.431069]: Ancestors: {SOMA.Room, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity}\n", - "[INFO] [1712656208.431447]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712656208.431897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.432617]: Instances: []\n", - "[INFO] [1712656208.432999]: Direct Instances: []\n", - "[INFO] [1712656208.433360]: Inverse Restrictions: []\n", - "[INFO] [1712656208.433678]: -------------------\n", - "[INFO] [1712656208.433982]: SOMA.KitchenCabinet \n", - "[INFO] [1712656208.434290]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712656208.434902]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Cupboard, DUL.PhysicalObject, DUL.Entity, SOMA.KitchenCabinet, SOMA.DesignedFurniture}\n", - "[INFO] [1712656208.435460]: Subclasses: []\n", - "[INFO] [1712656208.436056]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.436886]: Instances: []\n", - "[INFO] [1712656208.437448]: Direct Instances: []\n", - "[INFO] [1712656208.437984]: Inverse Restrictions: []\n", - "[INFO] [1712656208.438519]: -------------------\n", - "[INFO] [1712656208.439056]: SOMA.Knife \n", - "[INFO] [1712656208.439521]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712656208.439970]: Ancestors: {SOMA.Knife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656208.440489]: Subclasses: [SOMA.KitchenKnife]\n", - "[INFO] [1712656208.441064]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712656208.441669]: Instances: []\n", - "[INFO] [1712656208.441975]: Direct Instances: []\n", - "[INFO] [1712656208.442245]: Inverse Restrictions: []\n", - "[INFO] [1712656208.442491]: -------------------\n", - "[INFO] [1712656208.442735]: SOMA.KitchenUnit \n", - "[INFO] [1712656208.442980]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712656208.443257]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.KitchenUnit, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656208.443496]: Subclasses: []\n", - "[INFO] [1712656208.443780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.444276]: Instances: []\n", - "[INFO] [1712656208.444539]: Direct Instances: []\n", - "[INFO] [1712656208.444784]: Inverse Restrictions: []\n", - "[INFO] [1712656208.445021]: -------------------\n", - "[INFO] [1712656208.445251]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712656208.445480]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656208.445761]: Ancestors: {SOMA.Computer_Language, SOMA.KnowledgeRepresentationLanguage, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.446017]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712656208.446304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.446780]: Instances: []\n", - "[INFO] [1712656208.447061]: Direct Instances: []\n", - "[INFO] [1712656208.447319]: Inverse Restrictions: []\n", - "[INFO] [1712656208.447549]: -------------------\n", - "[INFO] [1712656208.447782]: SOMA.Labeling \n", - "[INFO] [1712656208.448014]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712656208.448290]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing}\n", - "[INFO] [1712656208.448537]: Subclasses: []\n", - "[INFO] [1712656208.448826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656208.449333]: Instances: []\n", - "[INFO] [1712656208.449640]: Direct Instances: []\n", - "[INFO] [1712656208.449904]: Inverse Restrictions: []\n", - "[INFO] [1712656208.450138]: -------------------\n", - "[INFO] [1712656208.450366]: SOMA.Text \n", - "[INFO] [1712656208.450592]: Super classes: [owl.Thing]\n", - "[INFO] [1712656208.451811]: Ancestors: {owl.Thing, SOMA.Text}\n", - "[INFO] [1712656208.452093]: Subclasses: []\n", - "[INFO] [1712656208.452397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656208.452915]: Instances: []\n", - "[INFO] [1712656208.453192]: Direct Instances: []\n", - "[INFO] [1712656208.454283]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712656208.454545]: -------------------\n", - "[INFO] [1712656208.454794]: SOMA.Leaning \n", - "[INFO] [1712656208.455033]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712656208.455318]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Leaning, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.455560]: Subclasses: []\n", - "[INFO] [1712656208.455844]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.456348]: Instances: []\n", - "[INFO] [1712656208.456617]: Direct Instances: []\n", - "[INFO] [1712656208.456877]: Inverse Restrictions: []\n", - "[INFO] [1712656208.457111]: -------------------\n", - "[INFO] [1712656208.457341]: SOMA.PosturalMoving \n", - "[INFO] [1712656208.457576]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712656208.457827]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.458085]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712656208.458370]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.458856]: Instances: []\n", - "[INFO] [1712656208.459133]: Direct Instances: []\n", - "[INFO] [1712656208.459400]: Inverse Restrictions: []\n", - "[INFO] [1712656208.459644]: -------------------\n", - "[INFO] [1712656208.459876]: SOMA.Learning \n", - "[INFO] [1712656208.460103]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712656208.460369]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656208.460635]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712656208.460932]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.461426]: Instances: []\n", - "[INFO] [1712656208.461681]: Direct Instances: []\n", - "[INFO] [1712656208.461945]: Inverse Restrictions: []\n", - "[INFO] [1712656208.462178]: -------------------\n", - "[INFO] [1712656208.462404]: SOMA.Leg \n", - "[INFO] [1712656208.462628]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712656208.462892]: Ancestors: {DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.463147]: Subclasses: []\n", - "[INFO] [1712656208.463434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.463921]: Instances: []\n", - "[INFO] [1712656208.464175]: Direct Instances: []\n", - "[INFO] [1712656208.464478]: Inverse Restrictions: []\n", - "[INFO] [1712656208.464711]: -------------------\n", - "[INFO] [1712656208.464947]: SOMA.Lid \n", - "[INFO] [1712656208.465178]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656208.465446]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Lid, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.465707]: Subclasses: []\n", - "[INFO] [1712656208.466003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.466487]: Instances: []\n", - "[INFO] [1712656208.466729]: Direct Instances: []\n", - "[INFO] [1712656208.466977]: Inverse Restrictions: []\n", - "[INFO] [1712656208.467211]: -------------------\n", - "[INFO] [1712656208.467439]: SOMA.LimbMotion \n", - "[INFO] [1712656208.468081]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712656208.468380]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, SOMA.LimbMotion, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.468629]: Subclasses: []\n", - "[INFO] [1712656208.469002]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.469643]: Instances: []\n", - "[INFO] [1712656208.470044]: Direct Instances: []\n", - "[INFO] [1712656208.470426]: Inverse Restrictions: []\n", - "[INFO] [1712656208.470785]: -------------------\n", - "[INFO] [1712656208.471047]: SOMA.LinkedObject \n", - "[INFO] [1712656208.471295]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712656208.471586]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.LinkedObject, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.471841]: Subclasses: []\n", - "[INFO] [1712656208.472135]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.472625]: Instances: []\n", - "[INFO] [1712656208.472903]: Direct Instances: []\n", - "[INFO] [1712656208.473266]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712656208.473522]: -------------------\n", - "[INFO] [1712656208.473766]: SOMA.LinkageState \n", - "[INFO] [1712656208.474006]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712656208.474275]: Ancestors: {DUL.Concept, SOMA.LinkageState, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656208.474513]: Subclasses: []\n", - "[INFO] [1712656208.474814]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.475304]: Instances: []\n", - "[INFO] [1712656208.475577]: Direct Instances: []\n", - "[INFO] [1712656208.475823]: Inverse Restrictions: []\n", - "[INFO] [1712656208.476056]: -------------------\n", - "[INFO] [1712656208.476284]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712656208.476512]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656208.476758]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.477034]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712656208.477328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.477847]: Instances: []\n", - "[INFO] [1712656208.478114]: Direct Instances: []\n", - "[INFO] [1712656208.478373]: Inverse Restrictions: []\n", - "[INFO] [1712656208.478603]: -------------------\n", - "[INFO] [1712656208.478828]: SOMA.SpatialRelationRole \n", - "[INFO] [1712656208.479057]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712656208.479310]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SpatialRelationRole}\n", - "[INFO] [1712656208.479571]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712656208.479857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.480347]: Instances: []\n", - "[INFO] [1712656208.480628]: Direct Instances: []\n", - "[INFO] [1712656208.480897]: Inverse Restrictions: []\n", - "[INFO] [1712656208.481133]: -------------------\n", - "[INFO] [1712656208.481364]: SOMA.LocutionaryAction \n", - "[INFO] [1712656208.481596]: Super classes: [owl.Thing]\n", - "[INFO] [1712656208.482816]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", - "[INFO] [1712656208.483080]: Subclasses: []\n", - "[INFO] [1712656208.483382]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656208.483887]: Instances: []\n", - "[INFO] [1712656208.484152]: Direct Instances: []\n", - "[INFO] [1712656208.484397]: Inverse Restrictions: []\n", - "[INFO] [1712656208.484625]: -------------------\n", - "[INFO] [1712656208.484909]: SOMA.LookingAt \n", - "[INFO] [1712656208.485162]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656208.485430]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.LookingAt}\n", - "[INFO] [1712656208.485692]: Subclasses: []\n", - "[INFO] [1712656208.485986]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.486469]: Instances: []\n", - "[INFO] [1712656208.486722]: Direct Instances: []\n", - "[INFO] [1712656208.486983]: Inverse Restrictions: []\n", - "[INFO] [1712656208.487217]: -------------------\n", - "[INFO] [1712656208.487449]: SOMA.LookingFor \n", - "[INFO] [1712656208.487674]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712656208.487928]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", - "[INFO] [1712656208.488170]: Subclasses: []\n", - "[INFO] [1712656208.488461]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.488949]: Instances: []\n", - "[INFO] [1712656208.489206]: Direct Instances: []\n", - "[INFO] [1712656208.489445]: Inverse Restrictions: []\n", - "[INFO] [1712656208.489682]: -------------------\n", - "[INFO] [1712656208.489924]: SOMA.Lowering \n", - "[INFO] [1712656208.490155]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656208.490419]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.Lowering, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656208.490676]: Subclasses: []\n", - "[INFO] [1712656208.490964]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.491449]: Instances: []\n", - "[INFO] [1712656208.491698]: Direct Instances: []\n", - "[INFO] [1712656208.491951]: Inverse Restrictions: []\n", - "[INFO] [1712656208.492184]: -------------------\n", - "[INFO] [1712656208.492410]: SOMA.PhysicalAction \n", - "[INFO] [1712656208.492635]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712656208.492897]: Ancestors: {SOMA.PhysicalAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656208.493155]: Subclasses: []\n", - "[INFO] [1712656208.493448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.493930]: Instances: []\n", - "[INFO] [1712656208.494183]: Direct Instances: []\n", - "[INFO] [1712656208.494469]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656208.494729]: -------------------\n", - "[INFO] [1712656208.494969]: SOMA.Markup_Language \n", - "[INFO] [1712656208.495199]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656208.495466]: Ancestors: {SOMA.Markup_Language, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.495699]: Subclasses: []\n", - "[INFO] [1712656208.495982]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.496482]: Instances: []\n", - "[INFO] [1712656208.496749]: Direct Instances: []\n", - "[INFO] [1712656208.497032]: Inverse Restrictions: []\n", - "[INFO] [1712656208.497277]: -------------------\n", - "[INFO] [1712656208.497508]: SOMA.Masterful \n", - "[INFO] [1712656208.497751]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712656208.498023]: Ancestors: {SOMA.Masterful, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.498265]: Subclasses: []\n", - "[INFO] [1712656208.498554]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.499035]: Instances: []\n", - "[INFO] [1712656208.499311]: Direct Instances: []\n", - "[INFO] [1712656208.499566]: Inverse Restrictions: []\n", - "[INFO] [1712656208.499798]: -------------------\n", - "[INFO] [1712656208.500025]: SOMA.Material \n", - "[INFO] [1712656208.500250]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656208.500518]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Material}\n", - "[INFO] [1712656208.500767]: Subclasses: []\n", - "[INFO] [1712656208.501062]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.501545]: Instances: []\n", - "[INFO] [1712656208.501792]: Direct Instances: []\n", - "[INFO] [1712656208.502030]: Inverse Restrictions: []\n", - "[INFO] [1712656208.502274]: -------------------\n", - "[INFO] [1712656208.502506]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712656208.502760]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712656208.503039]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MedicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656208.503282]: Subclasses: []\n", - "[INFO] [1712656208.503593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712656208.504076]: Instances: []\n", - "[INFO] [1712656208.504332]: Direct Instances: []\n", - "[INFO] [1712656208.504571]: Inverse Restrictions: []\n", - "[INFO] [1712656208.504812]: -------------------\n", - "[INFO] [1712656208.505055]: SOMA.Memorizing \n", - "[INFO] [1712656208.505288]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712656208.505556]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Memorizing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656208.505793]: Subclasses: []\n", - "[INFO] [1712656208.506072]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.506561]: Instances: []\n", - "[INFO] [1712656208.506821]: Direct Instances: []\n", - "[INFO] [1712656208.507062]: Inverse Restrictions: []\n", - "[INFO] [1712656208.507290]: -------------------\n", - "[INFO] [1712656208.507518]: SOMA.MentalAction \n", - "[INFO] [1712656208.508169]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712656208.508457]: Ancestors: {SOMA.MentalAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656208.508697]: Subclasses: []\n", - "[INFO] [1712656208.508996]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.509494]: Instances: []\n", - "[INFO] [1712656208.509753]: Direct Instances: []\n", - "[INFO] [1712656208.510047]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712656208.510301]: -------------------\n", - "[INFO] [1712656208.510539]: SOMA.MeshShape \n", - "[INFO] [1712656208.510819]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712656208.511098]: Ancestors: {SOMA.ShapeRegion, SOMA.MeshShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.511336]: Subclasses: []\n", - "[INFO] [1712656208.511624]: Properties: [rdf-schema.isDefinedBy, SOMA.hasFilePath, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.512129]: Instances: []\n", - "[INFO] [1712656208.512392]: Direct Instances: []\n", - "[INFO] [1712656208.512644]: Inverse Restrictions: []\n", - "[INFO] [1712656208.512885]: -------------------\n", - "[INFO] [1712656208.513117]: SOMA.MeshShapeData \n", - "[INFO] [1712656208.513350]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656208.513654]: Ancestors: {SOMA.MeshShapeData, DUL.InformationEntity, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656208.513923]: Subclasses: []\n", - "[INFO] [1712656208.514230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.514717]: Instances: []\n", - "[INFO] [1712656208.514965]: Direct Instances: []\n", - "[INFO] [1712656208.515211]: Inverse Restrictions: []\n", - "[INFO] [1712656208.515453]: -------------------\n", - "[INFO] [1712656208.515687]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712656208.515914]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712656208.516196]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.516461]: Subclasses: []\n", - "[INFO] [1712656208.516760]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.517253]: Instances: []\n", - "[INFO] [1712656208.517506]: Direct Instances: []\n", - "[INFO] [1712656208.517740]: Inverse Restrictions: []\n", - "[INFO] [1712656208.517975]: -------------------\n", - "[INFO] [1712656208.518207]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712656208.518435]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656208.518670]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.518920]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712656208.519215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.519704]: Instances: []\n", - "[INFO] [1712656208.519969]: Direct Instances: []\n", - "[INFO] [1712656208.520235]: Inverse Restrictions: []\n", - "[INFO] [1712656208.520469]: -------------------\n", - "[INFO] [1712656208.520694]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712656208.520921]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712656208.521185]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.521434]: Subclasses: []\n", - "[INFO] [1712656208.521726]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.522212]: Instances: []\n", - "[INFO] [1712656208.522483]: Direct Instances: []\n", - "[INFO] [1712656208.522739]: Inverse Restrictions: []\n", - "[INFO] [1712656208.522967]: -------------------\n", - "[INFO] [1712656208.523194]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712656208.523417]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712656208.523697]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.523945]: Subclasses: []\n", - "[INFO] [1712656208.524234]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.524708]: Instances: []\n", - "[INFO] [1712656208.524971]: Direct Instances: []\n", - "[INFO] [1712656208.525229]: Inverse Restrictions: []\n", - "[INFO] [1712656208.525465]: -------------------\n", - "[INFO] [1712656208.525691]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712656208.525913]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712656208.526146]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.526413]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712656208.526712]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.527219]: Instances: []\n", - "[INFO] [1712656208.527487]: Direct Instances: []\n", - "[INFO] [1712656208.527752]: Inverse Restrictions: []\n", - "[INFO] [1712656208.527992]: -------------------\n", - "[INFO] [1712656208.528225]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712656208.528457]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712656208.528732]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MetacognitiveControlling, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656208.528996]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712656208.529283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.529766]: Instances: []\n", - "[INFO] [1712656208.530043]: Direct Instances: []\n", - "[INFO] [1712656208.530312]: Inverse Restrictions: []\n", - "[INFO] [1712656208.530556]: -------------------\n", - "[INFO] [1712656208.530788]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712656208.531018]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712656208.531291]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting, owl.Thing}\n", - "[INFO] [1712656208.531530]: Subclasses: []\n", - "[INFO] [1712656208.531814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.532294]: Instances: []\n", - "[INFO] [1712656208.532567]: Direct Instances: []\n", - "[INFO] [1712656208.532824]: Inverse Restrictions: []\n", - "[INFO] [1712656208.533065]: -------------------\n", - "[INFO] [1712656208.533291]: SOMA.MilkBottle \n", - "[INFO] [1712656208.533519]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712656208.533794]: Ancestors: {SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.MilkBottle, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.534040]: Subclasses: []\n", - "[INFO] [1712656208.534321]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.534799]: Instances: []\n", - "[INFO] [1712656208.535069]: Direct Instances: []\n", - "[INFO] [1712656208.535320]: Inverse Restrictions: []\n", - "[INFO] [1712656208.535555]: -------------------\n", - "[INFO] [1712656208.535782]: SOMA.MilkPack \n", - "[INFO] [1712656208.536222]: Super classes: [SOMA.Pack]\n", - "[INFO] [1712656208.536721]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Pack, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.MilkPack}\n", - "[INFO] [1712656208.536984]: Subclasses: []\n", - "[INFO] [1712656208.537276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.537759]: Instances: []\n", - "[INFO] [1712656208.538056]: Direct Instances: []\n", - "[INFO] [1712656208.538321]: Inverse Restrictions: []\n", - "[INFO] [1712656208.538555]: -------------------\n", - "[INFO] [1712656208.538785]: SOMA.Pack \n", - "[INFO] [1712656208.539012]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712656208.539251]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Pack, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.539507]: Subclasses: [SOMA.MilkPack]\n", - "[INFO] [1712656208.539796]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.540282]: Instances: []\n", - "[INFO] [1712656208.540537]: Direct Instances: []\n", - "[INFO] [1712656208.540779]: Inverse Restrictions: []\n", - "[INFO] [1712656208.541019]: -------------------\n", - "[INFO] [1712656208.541260]: SOMA.Mixing \n", - "[INFO] [1712656208.541492]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712656208.541756]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Mixing}\n", - "[INFO] [1712656208.541997]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712656208.542278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.542776]: Instances: []\n", - "[INFO] [1712656208.543039]: Direct Instances: []\n", - "[INFO] [1712656208.543293]: Inverse Restrictions: []\n", - "[INFO] [1712656208.543524]: -------------------\n", - "[INFO] [1712656208.543750]: SOMA.MixingTheory \n", - "[INFO] [1712656208.543991]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712656208.544262]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, SOMA.MixingTheory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.544501]: Subclasses: []\n", - "[INFO] [1712656208.544794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656208.545305]: Instances: []\n", - "[INFO] [1712656208.545575]: Direct Instances: []\n", - "[INFO] [1712656208.545828]: Inverse Restrictions: []\n", - "[INFO] [1712656208.546067]: -------------------\n", - "[INFO] [1712656208.546309]: SOMA.MonitoringJointState \n", - "[INFO] [1712656208.546553]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712656208.546859]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, SOMA.Proprioceiving, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.547196]: Subclasses: []\n", - "[INFO] [1712656208.547523]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.548079]: Instances: []\n", - "[INFO] [1712656208.548368]: Direct Instances: []\n", - "[INFO] [1712656208.548627]: Inverse Restrictions: []\n", - "[INFO] [1712656208.548874]: -------------------\n", - "[INFO] [1712656208.549114]: SOMA.Proprioceiving \n", - "[INFO] [1712656208.549368]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656208.549614]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Proprioceiving, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.549865]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712656208.550146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.550639]: Instances: []\n", - "[INFO] [1712656208.550897]: Direct Instances: []\n", - "[INFO] [1712656208.551150]: Inverse Restrictions: []\n", - "[INFO] [1712656208.551374]: -------------------\n", - "[INFO] [1712656208.551597]: SOMA.MovingAway \n", - "[INFO] [1712656208.551825]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656208.552101]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.MovingAway, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.552348]: Subclasses: []\n", - "[INFO] [1712656208.552630]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.553131]: Instances: []\n", - "[INFO] [1712656208.553406]: Direct Instances: []\n", - "[INFO] [1712656208.553653]: Inverse Restrictions: []\n", - "[INFO] [1712656208.553880]: -------------------\n", - "[INFO] [1712656208.554108]: SOMA.MovingTo \n", - "[INFO] [1712656208.554331]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712656208.554608]: Ancestors: {SOMA.MovingTo, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.554860]: Subclasses: []\n", - "[INFO] [1712656208.555154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.555644]: Instances: []\n", - "[INFO] [1712656208.555918]: Direct Instances: []\n", - "[INFO] [1712656208.556171]: Inverse Restrictions: []\n", - "[INFO] [1712656208.556406]: -------------------\n", - "[INFO] [1712656208.556640]: SOMA.Natural_Language \n", - "[INFO] [1712656208.556905]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712656208.557187]: Ancestors: {SOMA.Natural_Language, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.557441]: Subclasses: []\n", - "[INFO] [1712656208.557732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.558224]: Instances: []\n", - "[INFO] [1712656208.558530]: Direct Instances: []\n", - "[INFO] [1712656208.558868]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712656208.559122]: -------------------\n", - "[INFO] [1712656208.559356]: SOMA.Natural_Language_Text \n", - "[INFO] [1712656208.559583]: Super classes: [owl.Thing]\n", - "[INFO] [1712656208.560070]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", - "[INFO] [1712656208.560330]: Subclasses: []\n", - "[INFO] [1712656208.560628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656208.561114]: Instances: []\n", - "[INFO] [1712656208.561381]: Direct Instances: []\n", - "[INFO] [1712656208.561672]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712656208.561935]: -------------------\n", - "[INFO] [1712656208.562177]: SOMA.NutellaJar \n", - "[INFO] [1712656208.562418]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712656208.562696]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Jar, DUL.Entity, SOMA.NutellaJar}\n", - "[INFO] [1712656208.562934]: Subclasses: []\n", - "[INFO] [1712656208.563218]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.563720]: Instances: []\n", - "[INFO] [1712656208.563995]: Direct Instances: []\n", - "[INFO] [1712656208.564241]: Inverse Restrictions: []\n", - "[INFO] [1712656208.564474]: -------------------\n", - "[INFO] [1712656208.564710]: SOMA.Ontology \n", - "[INFO] [1712656208.564964]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712656208.566214]: Ancestors: {owl.Thing, SOMA.Structured_Text, SOMA.Ontology}\n", - "[INFO] [1712656208.566519]: Subclasses: []\n", - "[INFO] [1712656208.566844]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656208.567343]: Instances: []\n", - "[INFO] [1712656208.567613]: Direct Instances: []\n", - "[INFO] [1712656208.567930]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712656208.568183]: -------------------\n", - "[INFO] [1712656208.568421]: SOMA.Ontology_Language \n", - "[INFO] [1712656208.568658]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712656208.568941]: Ancestors: {SOMA.Computer_Language, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.FormalLanguage, DUL.Object, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.569186]: Subclasses: []\n", - "[INFO] [1712656208.569491]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.569987]: Instances: []\n", - "[INFO] [1712656208.570240]: Direct Instances: []\n", - "[INFO] [1712656208.570547]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712656208.570787]: -------------------\n", - "[INFO] [1712656208.571029]: SOMA.Option \n", - "[INFO] [1712656208.571264]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712656208.571531]: Ancestors: {DUL.Concept, SOMA.Option, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.571770]: Subclasses: []\n", - "[INFO] [1712656208.572066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.572559]: Instances: []\n", - "[INFO] [1712656208.572823]: Direct Instances: []\n", - "[INFO] [1712656208.573065]: Inverse Restrictions: []\n", - "[INFO] [1712656208.573303]: -------------------\n", - "[INFO] [1712656208.573542]: SOMA.Singleton \n", - "[INFO] [1712656208.573775]: Super classes: [owl.Thing]\n", - "[INFO] [1712656208.574002]: Ancestors: {owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712656208.574245]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712656208.574528]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", - "[INFO] [1712656208.575037]: Instances: []\n", - "[INFO] [1712656208.575309]: Direct Instances: []\n", - "[INFO] [1712656208.575566]: Inverse Restrictions: []\n", - "[INFO] [1712656208.575796]: -------------------\n", - "[INFO] [1712656208.576024]: SOMA.Orienting \n", - "[INFO] [1712656208.576253]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712656208.576540]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Orienting, DUL.Task, SOMA.Positioning, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656208.576787]: Subclasses: []\n", - "[INFO] [1712656208.577079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.577578]: Instances: []\n", - "[INFO] [1712656208.577842]: Direct Instances: []\n", - "[INFO] [1712656208.578096]: Inverse Restrictions: []\n", - "[INFO] [1712656208.578330]: -------------------\n", - "[INFO] [1712656208.578555]: SOMA.Positioning \n", - "[INFO] [1712656208.578779]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656208.579024]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Positioning, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656208.579280]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712656208.579569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.580067]: Instances: []\n", - "[INFO] [1712656208.580352]: Direct Instances: []\n", - "[INFO] [1712656208.580609]: Inverse Restrictions: []\n", - "[INFO] [1712656208.580853]: -------------------\n", - "[INFO] [1712656208.581082]: SOMA.Origin \n", - "[INFO] [1712656208.581311]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712656208.581588]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Origin, SOMA.Location}\n", - "[INFO] [1712656208.581826]: Subclasses: []\n", - "[INFO] [1712656208.582106]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.582576]: Instances: []\n", - "[INFO] [1712656208.582853]: Direct Instances: []\n", - "[INFO] [1712656208.583148]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712656208.583388]: -------------------\n", - "[INFO] [1712656208.583633]: SOMA.Oven \n", - "[INFO] [1712656208.583894]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", - "[INFO] [1712656208.584185]: Ancestors: {SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Oven}\n", - "[INFO] [1712656208.584436]: Subclasses: []\n", - "[INFO] [1712656208.584724]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712656208.585217]: Instances: []\n", - "[INFO] [1712656208.585491]: Direct Instances: []\n", - "[INFO] [1712656208.585743]: Inverse Restrictions: []\n", - "[INFO] [1712656208.585972]: -------------------\n", - "[INFO] [1712656208.586197]: SOMA.TemperingByHeating \n", - "[INFO] [1712656208.586417]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712656208.586686]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.TemperingByHeating, SOMA.Tempering, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656208.586946]: Subclasses: []\n", - "[INFO] [1712656208.587239]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.587725]: Instances: []\n", - "[INFO] [1712656208.587981]: Direct Instances: []\n", - "[INFO] [1712656208.588259]: Inverse Restrictions: [SOMA.Oven]\n", - "[INFO] [1712656208.588501]: -------------------\n", - "[INFO] [1712656208.588735]: SOMA.Pan \n", - "[INFO] [1712656208.588976]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712656208.589248]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Pan, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656208.589510]: Subclasses: []\n", - "[INFO] [1712656208.589803]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.590290]: Instances: []\n", - "[INFO] [1712656208.590556]: Direct Instances: []\n", - "[INFO] [1712656208.590804]: Inverse Restrictions: []\n", - "[INFO] [1712656208.591034]: -------------------\n", - "[INFO] [1712656208.591264]: SOMA.Pancake \n", - "[INFO] [1712656208.591498]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712656208.591767]: Ancestors: {SOMA.Dish, DUL.DesignedArtifact, SOMA.Pancake, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.BakedGood}\n", - "[INFO] [1712656208.592012]: Subclasses: []\n", - "[INFO] [1712656208.592285]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656208.592762]: Instances: []\n", - "[INFO] [1712656208.593036]: Direct Instances: []\n", - "[INFO] [1712656208.593291]: Inverse Restrictions: []\n", - "[INFO] [1712656208.593528]: -------------------\n", - "[INFO] [1712656208.593761]: SOMA.PancakeMix \n", - "[INFO] [1712656208.593987]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712656208.594247]: Ancestors: {DUL.Substance, SOMA.PancakeMix, DUL.DesignedArtifact, DUL.PhysicalBody, DUL.PhysicalArtifact, DUL.DesignedSubstance, DUL.Object, owl.Thing, DUL.FunctionalSubstance, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.594503]: Subclasses: []\n", - "[INFO] [1712656208.594788]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656208.595271]: Instances: []\n", - "[INFO] [1712656208.595519]: Direct Instances: []\n", - "[INFO] [1712656208.595763]: Inverse Restrictions: []\n", - "[INFO] [1712656208.596009]: -------------------\n", - "[INFO] [1712656208.596250]: SOMA.ParkingArms \n", - "[INFO] [1712656208.596492]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712656208.596762]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose, SOMA.AssumingArmPose, SOMA.ParkingArms}\n", - "[INFO] [1712656208.597023]: Subclasses: []\n", - "[INFO] [1712656208.597322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.597821]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712656208.598081]: Direct Instances: [SOMA.parking_arms]\n", - "[INFO] [1712656208.598325]: Inverse Restrictions: []\n", - "[INFO] [1712656208.598558]: -------------------\n", - "[INFO] [1712656208.598802]: SOMA.PastaBowl \n", - "[INFO] [1712656208.599056]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712656208.599329]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Bowl, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.PastaBowl, SOMA.DesignedTool}\n", - "[INFO] [1712656208.599576]: Subclasses: []\n", - "[INFO] [1712656208.599861]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.600360]: Instances: []\n", - "[INFO] [1712656208.600617]: Direct Instances: []\n", - "[INFO] [1712656208.600865]: Inverse Restrictions: []\n", - "[INFO] [1712656208.601094]: -------------------\n", - "[INFO] [1712656208.601326]: SOMA.PepperShaker \n", - "[INFO] [1712656208.601552]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712656208.601828]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.PepperShaker, DUL.Object, owl.Thing, SOMA.Shaker, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.602074]: Subclasses: []\n", - "[INFO] [1712656208.602349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.602827]: Instances: []\n", - "[INFO] [1712656208.603093]: Direct Instances: []\n", - "[INFO] [1712656208.603346]: Inverse Restrictions: []\n", - "[INFO] [1712656208.603580]: -------------------\n", - "[INFO] [1712656208.603807]: SOMA.Shaker \n", - "[INFO] [1712656208.604035]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712656208.604280]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Shaker, DUL.Entity}\n", - "[INFO] [1712656208.604534]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", - "[INFO] [1712656208.604821]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.605310]: Instances: []\n", - "[INFO] [1712656208.605561]: Direct Instances: []\n", - "[INFO] [1712656208.605819]: Inverse Restrictions: []\n", - "[INFO] [1712656208.606055]: -------------------\n", - "[INFO] [1712656208.606284]: SOMA.PhaseTransition \n", - "[INFO] [1712656208.606511]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712656208.606765]: Ancestors: {DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656208.607009]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712656208.607293]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.607792]: Instances: []\n", - "[INFO] [1712656208.608050]: Direct Instances: []\n", - "[INFO] [1712656208.608291]: Inverse Restrictions: []\n", - "[INFO] [1712656208.608523]: -------------------\n", - "[INFO] [1712656208.608749]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712656208.608995]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712656208.609272]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.PhysicalAccessibility, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656208.609528]: Subclasses: []\n", - "[INFO] [1712656208.609820]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.610304]: Instances: []\n", - "[INFO] [1712656208.610573]: Direct Instances: []\n", - "[INFO] [1712656208.610827]: Inverse Restrictions: []\n", - "[INFO] [1712656208.611063]: -------------------\n", - "[INFO] [1712656208.611295]: SOMA.PhysicalBlockage \n", - "[INFO] [1712656208.611530]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712656208.611798]: Ancestors: {DUL.Concept, SOMA.PhysicalBlockage, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656208.612047]: Subclasses: []\n", - "[INFO] [1712656208.612337]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.612921]: Instances: []\n", - "[INFO] [1712656208.613292]: Direct Instances: []\n", - "[INFO] [1712656208.613593]: Inverse Restrictions: []\n", - "[INFO] [1712656208.613844]: -------------------\n", - "[INFO] [1712656208.614085]: SOMA.PhysicalExistence \n", - "[INFO] [1712656208.614319]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712656208.614585]: Ancestors: {owl.Thing, SOMA.PhysicalExistence, SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event}\n", - "[INFO] [1712656208.614841]: Subclasses: []\n", - "[INFO] [1712656208.615144]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.615630]: Instances: []\n", - "[INFO] [1712656208.615890]: Direct Instances: []\n", - "[INFO] [1712656208.616132]: Inverse Restrictions: []\n", - "[INFO] [1712656208.616365]: -------------------\n", - "[INFO] [1712656208.616832]: SOMA.PhysicalState \n", - "[INFO] [1712656208.617272]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712656208.617701]: Ancestors: {owl.Thing, SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event}\n", - "[INFO] [1712656208.618128]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712656208.618609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656208.619286]: Instances: []\n", - "[INFO] [1712656208.619671]: Direct Instances: []\n", - "[INFO] [1712656208.620032]: Inverse Restrictions: []\n", - "[INFO] [1712656208.620358]: -------------------\n", - "[INFO] [1712656208.620773]: SOMA.PhysicsProcess \n", - "[INFO] [1712656208.621193]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712656208.621582]: Ancestors: {DUL.Process, owl.Thing, SOMA.PhysicsProcess, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656208.621924]: Subclasses: []\n", - "[INFO] [1712656208.622321]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656208.622923]: Instances: []\n", - "[INFO] [1712656208.623292]: Direct Instances: []\n", - "[INFO] [1712656208.623631]: Inverse Restrictions: []\n", - "[INFO] [1712656208.623959]: -------------------\n", - "[INFO] [1712656208.624287]: SOMA.PlacingTheory \n", - "[INFO] [1712656208.624624]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712656208.625010]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.PlacingTheory}\n", - "[INFO] [1712656208.625342]: Subclasses: []\n", - "[INFO] [1712656208.625721]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656208.626287]: Instances: []\n", - "[INFO] [1712656208.626649]: Direct Instances: []\n", - "[INFO] [1712656208.626980]: Inverse Restrictions: []\n", - "[INFO] [1712656208.627300]: -------------------\n", - "[INFO] [1712656208.627615]: SOMA.PlanarJoint \n", - "[INFO] [1712656208.627928]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712656208.628283]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.PlanarJoint, DUL.Entity}\n", - "[INFO] [1712656208.628620]: Subclasses: []\n", - "[INFO] [1712656208.629005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.629567]: Instances: []\n", - "[INFO] [1712656208.629907]: Direct Instances: []\n", - "[INFO] [1712656208.630257]: Inverse Restrictions: []\n", - "[INFO] [1712656208.630583]: -------------------\n", - "[INFO] [1712656208.630899]: SOMA.PluginRole \n", - "[INFO] [1712656208.631217]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712656208.631572]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, SOMA.PluginRole, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.631916]: Subclasses: []\n", - "[INFO] [1712656208.632305]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", - "[INFO] [1712656208.632880]: Instances: []\n", - "[INFO] [1712656208.633246]: Direct Instances: []\n", - "[INFO] [1712656208.633654]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712656208.633988]: -------------------\n", - "[INFO] [1712656208.634312]: SOMA.Pot \n", - "[INFO] [1712656208.634631]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712656208.635029]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Pot, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656208.635395]: Subclasses: [SOMA.SoupPot]\n", - "[INFO] [1712656208.635775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.636349]: Instances: []\n", - "[INFO] [1712656208.636700]: Direct Instances: []\n", - "[INFO] [1712656208.637194]: Inverse Restrictions: []\n", - "[INFO] [1712656208.637589]: -------------------\n", - "[INFO] [1712656208.637984]: SOMA.Pourable \n", - "[INFO] [1712656208.638303]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712656208.638605]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Pourable, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656208.638872]: Subclasses: []\n", - "[INFO] [1712656208.639172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.639660]: Instances: []\n", - "[INFO] [1712656208.639919]: Direct Instances: []\n", - "[INFO] [1712656208.640231]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712656208.640554]: -------------------\n", - "[INFO] [1712656208.640807]: SOMA.PouredObject \n", - "[INFO] [1712656208.641051]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656208.641321]: Ancestors: {DUL.Concept, SOMA.PouredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.641572]: Subclasses: []\n", - "[INFO] [1712656208.641863]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.642345]: Instances: []\n", - "[INFO] [1712656208.642599]: Direct Instances: []\n", - "[INFO] [1712656208.642879]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712656208.643123]: -------------------\n", - "[INFO] [1712656208.643359]: SOMA.Pouring \n", - "[INFO] [1712656208.643597]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712656208.643852]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712656208.644109]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712656208.644398]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656208.644886]: Instances: []\n", - "[INFO] [1712656208.645138]: Direct Instances: []\n", - "[INFO] [1712656208.645376]: Inverse Restrictions: []\n", - "[INFO] [1712656208.645616]: -------------------\n", - "[INFO] [1712656208.645845]: SOMA.PouringInto \n", - "[INFO] [1712656208.646070]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712656208.646326]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PouringInto, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712656208.646558]: Subclasses: []\n", - "[INFO] [1712656208.646833]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.647320]: Instances: []\n", - "[INFO] [1712656208.647577]: Direct Instances: []\n", - "[INFO] [1712656208.647819]: Inverse Restrictions: []\n", - "[INFO] [1712656208.648048]: -------------------\n", - "[INFO] [1712656208.648281]: SOMA.PouringOnto \n", - "[INFO] [1712656208.648520]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712656208.648925]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.PouringOnto, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712656208.649281]: Subclasses: []\n", - "[INFO] [1712656208.649681]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.650294]: Instances: []\n", - "[INFO] [1712656208.650677]: Direct Instances: []\n", - "[INFO] [1712656208.651045]: Inverse Restrictions: []\n", - "[INFO] [1712656208.651397]: -------------------\n", - "[INFO] [1712656208.651777]: SOMA.Prediction \n", - "[INFO] [1712656208.652135]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712656208.652524]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing}\n", - "[INFO] [1712656208.652794]: Subclasses: []\n", - "[INFO] [1712656208.653089]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.653589]: Instances: []\n", - "[INFO] [1712656208.653845]: Direct Instances: []\n", - "[INFO] [1712656208.654088]: Inverse Restrictions: []\n", - "[INFO] [1712656208.654313]: -------------------\n", - "[INFO] [1712656208.654542]: SOMA.Prospecting \n", - "[INFO] [1712656208.654765]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656208.655003]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Prospecting}\n", - "[INFO] [1712656208.655249]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712656208.655536]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.656027]: Instances: []\n", - "[INFO] [1712656208.656276]: Direct Instances: []\n", - "[INFO] [1712656208.656514]: Inverse Restrictions: []\n", - "[INFO] [1712656208.656744]: -------------------\n", - "[INFO] [1712656208.656982]: SOMA.Predilection \n", - "[INFO] [1712656208.657994]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712656208.658278]: Ancestors: {SOMA.Predilection, DUL.SocialRelation, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.658536]: Subclasses: []\n", - "[INFO] [1712656208.658828]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656208.659311]: Instances: []\n", - "[INFO] [1712656208.659565]: Direct Instances: []\n", - "[INFO] [1712656208.659814]: Inverse Restrictions: []\n", - "[INFO] [1712656208.660046]: -------------------\n", - "[INFO] [1712656208.660275]: SOMA.PreferenceOrder \n", - "[INFO] [1712656208.660941]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712656208.661279]: Ancestors: {DUL.SocialRelation, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PreferenceOrder}\n", - "[INFO] [1712656208.661547]: Subclasses: []\n", - "[INFO] [1712656208.661860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.orders]\n", - "[INFO] [1712656208.662358]: Instances: []\n", - "[INFO] [1712656208.662632]: Direct Instances: []\n", - "[INFO] [1712656208.662886]: Inverse Restrictions: []\n", - "[INFO] [1712656208.663127]: -------------------\n", - "[INFO] [1712656208.663363]: SOMA.PreferenceRegion \n", - "[INFO] [1712656208.663605]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712656208.663882]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.SocialObjectAttribute, DUL.Entity}\n", - "[INFO] [1712656208.664167]: Subclasses: []\n", - "[INFO] [1712656208.664474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isRegionFor, rdf-schema.label]\n", - "[INFO] [1712656208.664982]: Instances: []\n", - "[INFO] [1712656208.665261]: Direct Instances: []\n", - "[INFO] [1712656208.665762]: Inverse Restrictions: []\n", - "[INFO] [1712656208.666256]: -------------------\n", - "[INFO] [1712656208.666740]: SOMA.PrismaticJoint \n", - "[INFO] [1712656208.667216]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712656208.667721]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PrismaticJoint}\n", - "[INFO] [1712656208.668090]: Subclasses: []\n", - "[INFO] [1712656208.668620]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", - "[INFO] [1712656208.669225]: Instances: []\n", - "[INFO] [1712656208.669605]: Direct Instances: []\n", - "[INFO] [1712656208.669956]: Inverse Restrictions: []\n", - "[INFO] [1712656208.670292]: -------------------\n", - "[INFO] [1712656208.670616]: SOMA.ProcessFlow \n", - "[INFO] [1712656208.670948]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712656208.671297]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ProcessFlow, DUL.Entity}\n", - "[INFO] [1712656208.671641]: Subclasses: []\n", - "[INFO] [1712656208.672026]: Properties: [rdf-schema.isDefinedBy, SOMA.definesProcess, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.672597]: Instances: []\n", - "[INFO] [1712656208.672960]: Direct Instances: []\n", - "[INFO] [1712656208.673711]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712656208.674053]: -------------------\n", - "[INFO] [1712656208.674384]: SOMA.Progression \n", - "[INFO] [1712656208.674704]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712656208.675628]: Ancestors: {DUL.Entity, SOMA.Progression, DUL.Situation, owl.Thing}\n", - "[INFO] [1712656208.676014]: Subclasses: []\n", - "[INFO] [1712656208.676419]: Properties: [rdf-schema.isDefinedBy, DUL.satisfies, rdf-schema.comment]\n", - "[INFO] [1712656208.677012]: Instances: []\n", - "[INFO] [1712656208.677370]: Direct Instances: []\n", - "[INFO] [1712656208.677714]: Inverse Restrictions: []\n", - "[INFO] [1712656208.678053]: -------------------\n", - "[INFO] [1712656208.678392]: SOMA.Protector \n", - "[INFO] [1712656208.678709]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712656208.679059]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.Protector, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656208.679388]: Subclasses: []\n", - "[INFO] [1712656208.679768]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.680342]: Instances: []\n", - "[INFO] [1712656208.680686]: Direct Instances: []\n", - "[INFO] [1712656208.681043]: Inverse Restrictions: []\n", - "[INFO] [1712656208.681341]: -------------------\n", - "[INFO] [1712656208.681606]: SOMA.ProximalTheory \n", - "[INFO] [1712656208.681865]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712656208.682137]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, SOMA.ProximalTheory, DUL.Object, DUL.Theory, DUL.SocialObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.682379]: Subclasses: []\n", - "[INFO] [1712656208.682670]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656208.683181]: Instances: []\n", - "[INFO] [1712656208.683457]: Direct Instances: []\n", - "[INFO] [1712656208.683717]: Inverse Restrictions: []\n", - "[INFO] [1712656208.683979]: -------------------\n", - "[INFO] [1712656208.684264]: SOMA.PushingAway \n", - "[INFO] [1712656208.684524]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712656208.684810]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.Actuating, SOMA.PushingAway}\n", - "[INFO] [1712656208.685069]: Subclasses: []\n", - "[INFO] [1712656208.685385]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.685882]: Instances: []\n", - "[INFO] [1712656208.686145]: Direct Instances: []\n", - "[INFO] [1712656208.686403]: Inverse Restrictions: []\n", - "[INFO] [1712656208.686650]: -------------------\n", - "[INFO] [1712656208.686893]: SOMA.PushingDown \n", - "[INFO] [1712656208.687128]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712656208.687395]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.PushingDown, SOMA.Actuating}\n", - "[INFO] [1712656208.687651]: Subclasses: []\n", - "[INFO] [1712656208.687943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.688436]: Instances: []\n", - "[INFO] [1712656208.688709]: Direct Instances: []\n", - "[INFO] [1712656208.689078]: Inverse Restrictions: []\n", - "[INFO] [1712656208.689381]: -------------------\n", - "[INFO] [1712656208.689785]: SOMA.PuttingDown \n", - "[INFO] [1712656208.690126]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656208.690484]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.PuttingDown, DUL.Entity}\n", - "[INFO] [1712656208.690826]: Subclasses: []\n", - "[INFO] [1712656208.691202]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.691771]: Instances: []\n", - "[INFO] [1712656208.692109]: Direct Instances: []\n", - "[INFO] [1712656208.692433]: Inverse Restrictions: []\n", - "[INFO] [1712656208.692743]: -------------------\n", - "[INFO] [1712656208.693082]: SOMA.QualityTransition \n", - "[INFO] [1712656208.693410]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712656208.693752]: Ancestors: {DUL.Situation, SOMA.QualityTransition, DUL.Transition, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.694077]: Subclasses: []\n", - "[INFO] [1712656208.694450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.695042]: Instances: []\n", - "[INFO] [1712656208.695400]: Direct Instances: []\n", - "[INFO] [1712656208.695741]: Inverse Restrictions: []\n", - "[INFO] [1712656208.696114]: -------------------\n", - "[INFO] [1712656208.696486]: SOMA.Query \n", - "[INFO] [1712656208.696833]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712656208.697203]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.Query, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Message}\n", - "[INFO] [1712656208.697542]: Subclasses: []\n", - "[INFO] [1712656208.697918]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.698489]: Instances: []\n", - "[INFO] [1712656208.698864]: Direct Instances: []\n", - "[INFO] [1712656208.699277]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712656208.699642]: -------------------\n", - "[INFO] [1712656208.699984]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712656208.700317]: Super classes: [owl.Thing]\n", - "[INFO] [1712656208.702357]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", - "[INFO] [1712656208.702735]: Subclasses: []\n", - "[INFO] [1712656208.703125]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.703706]: Instances: []\n", - "[INFO] [1712656208.704073]: Direct Instances: []\n", - "[INFO] [1712656208.704415]: Inverse Restrictions: []\n", - "[INFO] [1712656208.704741]: -------------------\n", - "[INFO] [1712656208.705066]: SOMA.QueryEngine \n", - "[INFO] [1712656208.705386]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656208.705736]: Ancestors: {DUL.Concept, SOMA.QueryEngine, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.706081]: Subclasses: []\n", - "[INFO] [1712656208.706460]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.707028]: Instances: []\n", - "[INFO] [1712656208.707372]: Direct Instances: []\n", - "[INFO] [1712656208.707710]: Inverse Restrictions: []\n", - "[INFO] [1712656208.708034]: -------------------\n", - "[INFO] [1712656208.708350]: SOMA.RaspberryJamJar \n", - "[INFO] [1712656208.708668]: Super classes: [SOMA.JamJar]\n", - "[INFO] [1712656208.709026]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.RaspberryJamJar, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.JamJar, DUL.PhysicalObject, SOMA.Jar, DUL.Entity}\n", - "[INFO] [1712656208.709320]: Subclasses: []\n", - "[INFO] [1712656208.709632]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.710134]: Instances: []\n", - "[INFO] [1712656208.710396]: Direct Instances: []\n", - "[INFO] [1712656208.710644]: Inverse Restrictions: []\n", - "[INFO] [1712656208.710897]: -------------------\n", - "[INFO] [1712656208.711140]: SOMA.Reaching \n", - "[INFO] [1712656208.711380]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712656208.711649]: Ancestors: {SOMA.PhysicalTask, SOMA.Reaching, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.711901]: Subclasses: []\n", - "[INFO] [1712656208.712211]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.712704]: Instances: []\n", - "[INFO] [1712656208.713060]: Direct Instances: []\n", - "[INFO] [1712656208.713364]: Inverse Restrictions: []\n", - "[INFO] [1712656208.713639]: -------------------\n", - "[INFO] [1712656208.713897]: SOMA.Retracting \n", - "[INFO] [1712656208.714157]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712656208.714433]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity, SOMA.Retracting}\n", - "[INFO] [1712656208.714683]: Subclasses: []\n", - "[INFO] [1712656208.714972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.715471]: Instances: []\n", - "[INFO] [1712656208.715740]: Direct Instances: []\n", - "[INFO] [1712656208.715997]: Inverse Restrictions: []\n", - "[INFO] [1712656208.716237]: -------------------\n", - "[INFO] [1712656208.716469]: SOMA.Reasoner \n", - "[INFO] [1712656208.716706]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656208.716966]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.717226]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712656208.717513]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.718004]: Instances: []\n", - "[INFO] [1712656208.718276]: Direct Instances: []\n", - "[INFO] [1712656208.718531]: Inverse Restrictions: []\n", - "[INFO] [1712656208.718767]: -------------------\n", - "[INFO] [1712656208.719001]: SOMA.RecipientRole \n", - "[INFO] [1712656208.719234]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712656208.719496]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, SOMA.GoalRole, SOMA.RecipientRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.719752]: Subclasses: []\n", - "[INFO] [1712656208.720045]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.720531]: Instances: []\n", - "[INFO] [1712656208.720812]: Direct Instances: []\n", - "[INFO] [1712656208.721069]: Inverse Restrictions: []\n", - "[INFO] [1712656208.721312]: -------------------\n", - "[INFO] [1712656208.721547]: SOMA.RecordedEpisode \n", - "[INFO] [1712656208.721796]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712656208.722053]: Ancestors: {DUL.Situation, SOMA.Episode, owl.Thing, DUL.Entity, SOMA.RecordedEpisode}\n", - "[INFO] [1712656208.722301]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712656208.722588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", - "[INFO] [1712656208.723072]: Instances: []\n", - "[INFO] [1712656208.723341]: Direct Instances: []\n", - "[INFO] [1712656208.723597]: Inverse Restrictions: []\n", - "[INFO] [1712656208.723845]: -------------------\n", - "[INFO] [1712656208.724086]: SOMA.RedColor \n", - "[INFO] [1712656208.724320]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712656208.724593]: Ancestors: {DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, SOMA.RedColor, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656208.724850]: Subclasses: []\n", - "[INFO] [1712656208.725146]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.725628]: Instances: []\n", - "[INFO] [1712656208.725898]: Direct Instances: []\n", - "[INFO] [1712656208.726148]: Inverse Restrictions: []\n", - "[INFO] [1712656208.726393]: -------------------\n", - "[INFO] [1712656208.726627]: SOMA.Refrigerator \n", - "[INFO] [1712656208.726860]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", - "[INFO] [1712656208.727133]: Ancestors: {SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Refrigerator, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.727380]: Subclasses: []\n", - "[INFO] [1712656208.727664]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712656208.728152]: Instances: []\n", - "[INFO] [1712656208.728426]: Direct Instances: []\n", - "[INFO] [1712656208.728676]: Inverse Restrictions: []\n", - "[INFO] [1712656208.728918]: -------------------\n", - "[INFO] [1712656208.729149]: SOMA.Reification \n", - "[INFO] [1712656208.729399]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712656208.729675]: Ancestors: {SOMA.Reification, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.729933]: Subclasses: []\n", - "[INFO] [1712656208.730222]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", - "[INFO] [1712656208.730762]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712656208.731055]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712656208.731323]: Inverse Restrictions: []\n", - "[INFO] [1712656208.731583]: -------------------\n", - "[INFO] [1712656208.731833]: SOMA.RelationalDatabase \n", - "[INFO] [1712656208.732070]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712656208.732336]: Ancestors: {SOMA.RelationalDatabase, DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.732595]: Subclasses: []\n", - "[INFO] [1712656208.732892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.733383]: Instances: []\n", - "[INFO] [1712656208.733664]: Direct Instances: []\n", - "[INFO] [1712656208.733914]: Inverse Restrictions: []\n", - "[INFO] [1712656208.734161]: -------------------\n", - "[INFO] [1712656208.734400]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712656208.734633]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712656208.734900]: Ancestors: {SOMA.RelationalQueryLanguage, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.735156]: Subclasses: []\n", - "[INFO] [1712656208.735448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.735938]: Instances: []\n", - "[INFO] [1712656208.736191]: Direct Instances: []\n", - "[INFO] [1712656208.736441]: Inverse Restrictions: []\n", - "[INFO] [1712656208.736678]: -------------------\n", - "[INFO] [1712656208.736912]: SOMA.RelevantPart \n", - "[INFO] [1712656208.737148]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712656208.737540]: Ancestors: {SOMA.Feature, DUL.Object, owl.Thing, DUL.Entity, SOMA.RelevantPart}\n", - "[INFO] [1712656208.738070]: Subclasses: []\n", - "[INFO] [1712656208.738434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.738936]: Instances: []\n", - "[INFO] [1712656208.739214]: Direct Instances: []\n", - "[INFO] [1712656208.739476]: Inverse Restrictions: []\n", - "[INFO] [1712656208.739720]: -------------------\n", - "[INFO] [1712656208.739979]: SOMA.Remembering \n", - "[INFO] [1712656208.740227]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712656208.740648]: Ancestors: {SOMA.Remembering, owl.Thing}\n", - "[INFO] [1712656208.741044]: Subclasses: []\n", - "[INFO] [1712656208.741394]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.741910]: Instances: []\n", - "[INFO] [1712656208.742173]: Direct Instances: []\n", - "[INFO] [1712656208.742418]: Inverse Restrictions: []\n", - "[INFO] [1712656208.742661]: -------------------\n", - "[INFO] [1712656208.742900]: SOMA.Retrospecting \n", - "[INFO] [1712656208.743139]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712656208.743407]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Retrospecting}\n", - "[INFO] [1712656208.743653]: Subclasses: []\n", - "[INFO] [1712656208.743938]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.744437]: Instances: []\n", - "[INFO] [1712656208.744699]: Direct Instances: []\n", - "[INFO] [1712656208.744994]: Inverse Restrictions: []\n", - "[INFO] [1712656208.745231]: -------------------\n", - "[INFO] [1712656208.745465]: SOMA.RemovedObject \n", - "[INFO] [1712656208.745694]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712656208.745970]: Ancestors: {DUL.Concept, SOMA.ExcludedObject, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.RemovedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.746221]: Subclasses: []\n", - "[INFO] [1712656208.746506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.746991]: Instances: []\n", - "[INFO] [1712656208.747264]: Direct Instances: []\n", - "[INFO] [1712656208.747521]: Inverse Restrictions: []\n", - "[INFO] [1712656208.747755]: -------------------\n", - "[INFO] [1712656208.747987]: SOMA.Replanning \n", - "[INFO] [1712656208.748221]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712656208.748484]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, SOMA.Replanning, owl.Thing}\n", - "[INFO] [1712656208.748744]: Subclasses: []\n", - "[INFO] [1712656208.749123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.749651]: Instances: []\n", - "[INFO] [1712656208.749936]: Direct Instances: []\n", - "[INFO] [1712656208.750200]: Inverse Restrictions: []\n", - "[INFO] [1712656208.750451]: -------------------\n", - "[INFO] [1712656208.750701]: SOMA.RevoluteJoint \n", - "[INFO] [1712656208.750966]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712656208.751260]: Ancestors: {SOMA.HingeJoint, SOMA.RevoluteJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.751519]: Subclasses: []\n", - "[INFO] [1712656208.751826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", - "[INFO] [1712656208.752320]: Instances: []\n", - "[INFO] [1712656208.752599]: Direct Instances: []\n", - "[INFO] [1712656208.752866]: Inverse Restrictions: []\n", - "[INFO] [1712656208.753113]: -------------------\n", - "[INFO] [1712656208.753417]: SOMA.Surface \n", - "[INFO] [1712656208.753672]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712656208.753925]: Ancestors: {SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity}\n", - "[INFO] [1712656208.754197]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712656208.754499]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.755002]: Instances: []\n", - "[INFO] [1712656208.755274]: Direct Instances: []\n", - "[INFO] [1712656208.755528]: Inverse Restrictions: []\n", - "[INFO] [1712656208.755767]: -------------------\n", - "[INFO] [1712656208.756000]: SOMA.Rubbing \n", - "[INFO] [1712656208.756232]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712656208.756501]: Ancestors: {SOMA.Rubbing, SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.756756]: Subclasses: []\n", - "[INFO] [1712656208.757051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.757535]: Instances: []\n", - "[INFO] [1712656208.757790]: Direct Instances: []\n", - "[INFO] [1712656208.758039]: Inverse Restrictions: []\n", - "[INFO] [1712656208.758284]: -------------------\n", - "[INFO] [1712656208.758522]: SOMA.SaladBowl \n", - "[INFO] [1712656208.758757]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712656208.759021]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Bowl, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.SaladBowl, SOMA.DesignedTool}\n", - "[INFO] [1712656208.759287]: Subclasses: []\n", - "[INFO] [1712656208.759584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.760077]: Instances: []\n", - "[INFO] [1712656208.760333]: Direct Instances: []\n", - "[INFO] [1712656208.760575]: Inverse Restrictions: []\n", - "[INFO] [1712656208.760817]: -------------------\n", - "[INFO] [1712656208.761067]: SOMA.SaltShaker \n", - "[INFO] [1712656208.761308]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712656208.761569]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Shaker, SOMA.SaltShaker, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.761809]: Subclasses: []\n", - "[INFO] [1712656208.762101]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.762585]: Instances: []\n", - "[INFO] [1712656208.762842]: Direct Instances: []\n", - "[INFO] [1712656208.763085]: Inverse Restrictions: []\n", - "[INFO] [1712656208.763320]: -------------------\n", - "[INFO] [1712656208.763592]: SOMA.Scene \n", - "[INFO] [1712656208.763855]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712656208.764128]: Ancestors: {SOMA.Scene, DUL.Situation, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.764376]: Subclasses: []\n", - "[INFO] [1712656208.764668]: Properties: [rdf-schema.isDefinedBy, DUL.satisfies, rdf-schema.comment, DUL.includesEvent]\n", - "[INFO] [1712656208.765177]: Instances: []\n", - "[INFO] [1712656208.765465]: Direct Instances: []\n", - "[INFO] [1712656208.765767]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712656208.766011]: -------------------\n", - "[INFO] [1712656208.766257]: SOMA.SelectedObject \n", - "[INFO] [1712656208.766503]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712656208.766794]: Ancestors: {DUL.Concept, SOMA.SelectedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.767048]: Subclasses: []\n", - "[INFO] [1712656208.767342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.767823]: Instances: []\n", - "[INFO] [1712656208.768092]: Direct Instances: []\n", - "[INFO] [1712656208.768400]: Inverse Restrictions: []\n", - "[INFO] [1712656208.768651]: -------------------\n", - "[INFO] [1712656208.768893]: SOMA.Selecting \n", - "[INFO] [1712656208.769132]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712656208.769398]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.Selecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712656208.769653]: Subclasses: []\n", - "[INFO] [1712656208.769942]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.770432]: Instances: []\n", - "[INFO] [1712656208.770704]: Direct Instances: []\n", - "[INFO] [1712656208.770960]: Inverse Restrictions: []\n", - "[INFO] [1712656208.771206]: -------------------\n", - "[INFO] [1712656208.771444]: SOMA.SelectingItem \n", - "[INFO] [1712656208.772099]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712656208.772394]: Ancestors: {SOMA.SelectingItem, SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712656208.772648]: Subclasses: []\n", - "[INFO] [1712656208.772947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712656208.773438]: Instances: []\n", - "[INFO] [1712656208.773706]: Direct Instances: []\n", - "[INFO] [1712656208.773958]: Inverse Restrictions: []\n", - "[INFO] [1712656208.774198]: -------------------\n", - "[INFO] [1712656208.774429]: SOMA.SelfReflection \n", - "[INFO] [1712656208.774668]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712656208.774941]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MetacognitiveControlling, SOMA.MentalTask, DUL.Entity, SOMA.SelfReflection}\n", - "[INFO] [1712656208.775196]: Subclasses: []\n", - "[INFO] [1712656208.775481]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656208.775970]: Instances: []\n", - "[INFO] [1712656208.776225]: Direct Instances: []\n", - "[INFO] [1712656208.776475]: Inverse Restrictions: []\n", - "[INFO] [1712656208.776716]: -------------------\n", - "[INFO] [1712656208.777060]: SOMA.Serving \n", - "[INFO] [1712656208.778479]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712656208.778795]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Delivering, DUL.SocialObject, SOMA.Serving, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656208.779065]: Subclasses: []\n", - "[INFO] [1712656208.779367]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.779869]: Instances: []\n", - "[INFO] [1712656208.780139]: Direct Instances: []\n", - "[INFO] [1712656208.780386]: Inverse Restrictions: []\n", - "[INFO] [1712656208.780620]: -------------------\n", - "[INFO] [1712656208.780856]: SOMA.SettingGripper \n", - "[INFO] [1712656208.781104]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712656208.781372]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.SettingGripper, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose}\n", - "[INFO] [1712656208.781615]: Subclasses: []\n", - "[INFO] [1712656208.781898]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.782376]: Instances: []\n", - "[INFO] [1712656208.782652]: Direct Instances: []\n", - "[INFO] [1712656208.782910]: Inverse Restrictions: []\n", - "[INFO] [1712656208.783147]: -------------------\n", - "[INFO] [1712656208.783382]: SOMA.6DPose \n", - "[INFO] [1712656208.783639]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712656208.783932]: Ancestors: {DUL.Region, SOMA.6DPose, DUL.Abstract, owl.Thing, DUL.Entity, DUL.SpaceRegion}\n", - "[INFO] [1712656208.784222]: Subclasses: []\n", - "[INFO] [1712656208.784540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasPositionData]\n", - "[INFO] [1712656208.785039]: Instances: []\n", - "[INFO] [1712656208.785316]: Direct Instances: []\n", - "[INFO] [1712656208.785606]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712656208.785850]: -------------------\n", - "[INFO] [1712656208.786085]: SOMA.Sharpness \n", - "[INFO] [1712656208.786329]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656208.786616]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Sharpness, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.786882]: Subclasses: []\n", - "[INFO] [1712656208.787194]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.787745]: Instances: []\n", - "[INFO] [1712656208.788055]: Direct Instances: []\n", - "[INFO] [1712656208.788363]: Inverse Restrictions: []\n", - "[INFO] [1712656208.788656]: -------------------\n", - "[INFO] [1712656208.789030]: SOMA.Simulating \n", - "[INFO] [1712656208.789373]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712656208.789715]: Ancestors: {SOMA.DerivingInformation, SOMA.Simulating, SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing}\n", - "[INFO] [1712656208.790015]: Subclasses: []\n", - "[INFO] [1712656208.790359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.790960]: Instances: []\n", - "[INFO] [1712656208.791286]: Direct Instances: []\n", - "[INFO] [1712656208.791596]: Inverse Restrictions: []\n", - "[INFO] [1712656208.791896]: -------------------\n", - "[INFO] [1712656208.792173]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712656208.792445]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712656208.792755]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.Simulation_Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.793049]: Subclasses: []\n", - "[INFO] [1712656208.793375]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.793906]: Instances: []\n", - "[INFO] [1712656208.794200]: Direct Instances: []\n", - "[INFO] [1712656208.794468]: Inverse Restrictions: []\n", - "[INFO] [1712656208.794714]: -------------------\n", - "[INFO] [1712656208.794949]: SOMA.Sink \n", - "[INFO] [1712656208.795184]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656208.795445]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Sink, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.795701]: Subclasses: []\n", - "[INFO] [1712656208.795989]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.796478]: Instances: []\n", - "[INFO] [1712656208.796777]: Direct Instances: []\n", - "[INFO] [1712656208.797045]: Inverse Restrictions: []\n", - "[INFO] [1712656208.797288]: -------------------\n", - "[INFO] [1712656208.797524]: SOMA.Size \n", - "[INFO] [1712656208.797758]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656208.798017]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Size, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.798275]: Subclasses: []\n", - "[INFO] [1712656208.798567]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.799063]: Instances: []\n", - "[INFO] [1712656208.799325]: Direct Instances: []\n", - "[INFO] [1712656208.799566]: Inverse Restrictions: []\n", - "[INFO] [1712656208.799800]: -------------------\n", - "[INFO] [1712656208.800045]: SOMA.Slicing \n", - "[INFO] [1712656208.800280]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712656208.800546]: Ancestors: {SOMA.Cutting, SOMA.Slicing, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656208.800788]: Subclasses: []\n", - "[INFO] [1712656208.801071]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.801568]: Instances: []\n", - "[INFO] [1712656208.801836]: Direct Instances: []\n", - "[INFO] [1712656208.802086]: Inverse Restrictions: []\n", - "[INFO] [1712656208.802318]: -------------------\n", - "[INFO] [1712656208.802551]: SOMA.Sluggishness \n", - "[INFO] [1712656208.802796]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712656208.803061]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Sluggishness, DUL.Diagnosis}\n", - "[INFO] [1712656208.803304]: Subclasses: []\n", - "[INFO] [1712656208.803584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.804061]: Instances: []\n", - "[INFO] [1712656208.804329]: Direct Instances: []\n", - "[INFO] [1712656208.804585]: Inverse Restrictions: []\n", - "[INFO] [1712656208.804828]: -------------------\n", - "[INFO] [1712656208.805062]: SOMA.SocialState \n", - "[INFO] [1712656208.805317]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712656208.805597]: Ancestors: {SOMA.SocialState, owl.Thing, SOMA.State, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656208.805845]: Subclasses: []\n", - "[INFO] [1712656208.806136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656208.806621]: Instances: []\n", - "[INFO] [1712656208.806888]: Direct Instances: []\n", - "[INFO] [1712656208.807144]: Inverse Restrictions: []\n", - "[INFO] [1712656208.807380]: -------------------\n", - "[INFO] [1712656208.807613]: SOMA.Sofa \n", - "[INFO] [1712656208.807849]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712656208.808113]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Sofa, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656208.808366]: Subclasses: []\n", - "[INFO] [1712656208.808654]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712656208.809193]: Instances: []\n", - "[INFO] [1712656208.809538]: Direct Instances: []\n", - "[INFO] [1712656208.809833]: Inverse Restrictions: []\n", - "[INFO] [1712656208.810094]: -------------------\n", - "[INFO] [1712656208.810349]: SOMA.Software_Configuration \n", - "[INFO] [1712656208.810595]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712656208.810886]: Ancestors: {DUL.Collection, DUL.Configuration, SOMA.Software_Configuration, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.811140]: Subclasses: []\n", - "[INFO] [1712656208.811429]: Properties: [DUL.isDescribedBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656208.811917]: Instances: []\n", - "[INFO] [1712656208.812188]: Direct Instances: []\n", - "[INFO] [1712656208.812535]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712656208.812783]: -------------------\n", - "[INFO] [1712656208.813027]: SOMA.SoftwareLibrary \n", - "[INFO] [1712656208.813270]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712656208.813750]: Ancestors: {SOMA.SoftwareLibrary, DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Software, DUL.Entity}\n", - "[INFO] [1712656208.814101]: Subclasses: []\n", - "[INFO] [1712656208.814393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656208.814881]: Instances: []\n", - "[INFO] [1712656208.815148]: Direct Instances: []\n", - "[INFO] [1712656208.815414]: Inverse Restrictions: []\n", - "[INFO] [1712656208.815665]: -------------------\n", - "[INFO] [1712656208.816154]: SOMA.SoupPot \n", - "[INFO] [1712656208.816556]: Super classes: [SOMA.Pot]\n", - "[INFO] [1712656208.817034]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Pot, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.SoupPot, SOMA.DesignedTool}\n", - "[INFO] [1712656208.817350]: Subclasses: []\n", - "[INFO] [1712656208.817698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.818201]: Instances: []\n", - "[INFO] [1712656208.818480]: Direct Instances: []\n", - "[INFO] [1712656208.818727]: Inverse Restrictions: []\n", - "[INFO] [1712656208.818961]: -------------------\n", - "[INFO] [1712656208.819194]: SOMA.SourceMaterialRole \n", - "[INFO] [1712656208.819438]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712656208.819712]: Ancestors: {DUL.Concept, SOMA.SourceMaterialRole, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.819951]: Subclasses: []\n", - "[INFO] [1712656208.820235]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.820709]: Instances: []\n", - "[INFO] [1712656208.820997]: Direct Instances: []\n", - "[INFO] [1712656208.821256]: Inverse Restrictions: []\n", - "[INFO] [1712656208.821491]: -------------------\n", - "[INFO] [1712656208.821721]: SOMA.Spatula \n", - "[INFO] [1712656208.821954]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", - "[INFO] [1712656208.822232]: Ancestors: {SOMA.Spatula, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712656208.822501]: Subclasses: []\n", - "[INFO] [1712656208.822817]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent]\n", - "[INFO] [1712656208.823357]: Instances: []\n", - "[INFO] [1712656208.823657]: Direct Instances: []\n", - "[INFO] [1712656208.823959]: Inverse Restrictions: []\n", - "[INFO] [1712656208.824236]: -------------------\n", - "[INFO] [1712656208.824507]: SOMA.SphereShape \n", - "[INFO] [1712656208.824812]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712656208.825147]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.SphereShape}\n", - "[INFO] [1712656208.825437]: Subclasses: []\n", - "[INFO] [1712656208.825773]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712656208.826338]: Instances: []\n", - "[INFO] [1712656208.826632]: Direct Instances: []\n", - "[INFO] [1712656208.826913]: Inverse Restrictions: []\n", - "[INFO] [1712656208.827162]: -------------------\n", - "[INFO] [1712656208.827402]: SOMA.Spoon \n", - "[INFO] [1712656208.828082]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712656208.828396]: Ancestors: {SOMA.Spoon, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712656208.828667]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", - "[INFO] [1712656208.828976]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712656208.829467]: Instances: []\n", - "[INFO] [1712656208.829731]: Direct Instances: []\n", - "[INFO] [1712656208.829991]: Inverse Restrictions: []\n", - "[INFO] [1712656208.830237]: -------------------\n", - "[INFO] [1712656208.830473]: SOMA.Standing \n", - "[INFO] [1712656208.830705]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712656208.830973]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, SOMA.Standing, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.831208]: Subclasses: []\n", - "[INFO] [1712656208.831505]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.831995]: Instances: []\n", - "[INFO] [1712656208.832260]: Direct Instances: []\n", - "[INFO] [1712656208.832503]: Inverse Restrictions: []\n", - "[INFO] [1712656208.832749]: -------------------\n", - "[INFO] [1712656208.832994]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712656208.833230]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712656208.833498]: Ancestors: {DUL.Region, SOMA.StaticFrictionAttribute, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656208.833759]: Subclasses: []\n", - "[INFO] [1712656208.834052]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.834534]: Instances: []\n", - "[INFO] [1712656208.834795]: Direct Instances: []\n", - "[INFO] [1712656208.835047]: Inverse Restrictions: []\n", - "[INFO] [1712656208.835279]: -------------------\n", - "[INFO] [1712656208.835510]: SOMA.Status \n", - "[INFO] [1712656208.835750]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712656208.836023]: Ancestors: {DUL.Concept, SOMA.Status, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.836290]: Subclasses: []\n", - "[INFO] [1712656208.836585]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.837084]: Instances: []\n", - "[INFO] [1712656208.837356]: Direct Instances: []\n", - "[INFO] [1712656208.837673]: Inverse Restrictions: []\n", - "[INFO] [1712656208.837924]: -------------------\n", - "[INFO] [1712656208.838159]: SOMA.StatusFailure \n", - "[INFO] [1712656208.838394]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656208.838666]: Ancestors: {SOMA.StatusFailure, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.838937]: Subclasses: []\n", - "[INFO] [1712656208.839244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.839846]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712656208.840169]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712656208.840448]: Inverse Restrictions: []\n", - "[INFO] [1712656208.840692]: -------------------\n", - "[INFO] [1712656208.840938]: SOMA.StimulusRole \n", - "[INFO] [1712656208.841172]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712656208.841443]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.StimulusRole}\n", - "[INFO] [1712656208.841701]: Subclasses: []\n", - "[INFO] [1712656208.841997]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.842482]: Instances: []\n", - "[INFO] [1712656208.842732]: Direct Instances: []\n", - "[INFO] [1712656208.842975]: Inverse Restrictions: []\n", - "[INFO] [1712656208.843218]: -------------------\n", - "[INFO] [1712656208.843448]: SOMA.Stirring \n", - "[INFO] [1712656208.843679]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712656208.843947]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Stirring, SOMA.Mixing}\n", - "[INFO] [1712656208.844187]: Subclasses: []\n", - "[INFO] [1712656208.844515]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656208.845051]: Instances: []\n", - "[INFO] [1712656208.845445]: Direct Instances: []\n", - "[INFO] [1712656208.845738]: Inverse Restrictions: []\n", - "[INFO] [1712656208.846007]: -------------------\n", - "[INFO] [1712656208.846264]: SOMA.Storage \n", - "[INFO] [1712656208.846517]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712656208.846792]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Storage, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656208.847034]: Subclasses: []\n", - "[INFO] [1712656208.847327]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.847830]: Instances: []\n", - "[INFO] [1712656208.848105]: Direct Instances: []\n", - "[INFO] [1712656208.848358]: Inverse Restrictions: []\n", - "[INFO] [1712656208.848591]: -------------------\n", - "[INFO] [1712656208.848826]: SOMA.Stove \n", - "[INFO] [1712656208.849058]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", - "[INFO] [1712656208.849328]: Ancestors: {SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Stove, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.849585]: Subclasses: []\n", - "[INFO] [1712656208.849883]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712656208.850369]: Instances: []\n", - "[INFO] [1712656208.850636]: Direct Instances: []\n", - "[INFO] [1712656208.850892]: Inverse Restrictions: []\n", - "[INFO] [1712656208.851126]: -------------------\n", - "[INFO] [1712656208.851354]: SOMA.StructuralDesign \n", - "[INFO] [1712656208.851583]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712656208.851848]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, SOMA.StructuralDesign, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.852105]: Subclasses: []\n", - "[INFO] [1712656208.852400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.852887]: Instances: []\n", - "[INFO] [1712656208.853141]: Direct Instances: []\n", - "[INFO] [1712656208.853390]: Inverse Restrictions: []\n", - "[INFO] [1712656208.853630]: -------------------\n", - "[INFO] [1712656208.853861]: SOMA.TaskInvocation \n", - "[INFO] [1712656208.854125]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712656208.854406]: Ancestors: {DUL.Workflow, DUL.Plan, SOMA.TaskInvocation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.854664]: Subclasses: []\n", - "[INFO] [1712656208.854964]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesTask]\n", - "[INFO] [1712656208.855447]: Instances: []\n", - "[INFO] [1712656208.855707]: Direct Instances: []\n", - "[INFO] [1712656208.856023]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712656208.856273]: -------------------\n", - "[INFO] [1712656208.856509]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712656208.856741]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712656208.856984]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.857232]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712656208.857527]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.858028]: Instances: []\n", - "[INFO] [1712656208.858299]: Direct Instances: []\n", - "[INFO] [1712656208.858557]: Inverse Restrictions: []\n", - "[INFO] [1712656208.858788]: -------------------\n", - "[INFO] [1712656208.859014]: SOMA.Successfulness \n", - "[INFO] [1712656208.859236]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712656208.859499]: Ancestors: {SOMA.Successfulness, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.859752]: Subclasses: []\n", - "[INFO] [1712656208.860054]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.860552]: Instances: []\n", - "[INFO] [1712656208.860813]: Direct Instances: []\n", - "[INFO] [1712656208.861070]: Inverse Restrictions: []\n", - "[INFO] [1712656208.861304]: -------------------\n", - "[INFO] [1712656208.861533]: SOMA.SugarDispenser \n", - "[INFO] [1712656208.861756]: Super classes: [SOMA.Dispenser]\n", - "[INFO] [1712656208.862015]: Ancestors: {SOMA.DesignedContainer, SOMA.Dispenser, SOMA.SugarDispenser, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.862272]: Subclasses: []\n", - "[INFO] [1712656208.862559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.863123]: Instances: []\n", - "[INFO] [1712656208.863413]: Direct Instances: []\n", - "[INFO] [1712656208.863674]: Inverse Restrictions: []\n", - "[INFO] [1712656208.863905]: -------------------\n", - "[INFO] [1712656208.864136]: SOMA.SupportState \n", - "[INFO] [1712656208.865167]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712656208.865492]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity, SOMA.SupportState}\n", - "[INFO] [1712656208.865758]: Subclasses: []\n", - "[INFO] [1712656208.866060]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.866547]: Instances: []\n", - "[INFO] [1712656208.866808]: Direct Instances: []\n", - "[INFO] [1712656208.867066]: Inverse Restrictions: []\n", - "[INFO] [1712656208.867305]: -------------------\n", - "[INFO] [1712656208.867535]: SOMA.Supporter \n", - "[INFO] [1712656208.867761]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712656208.868025]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.Supporter, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656208.868291]: Subclasses: []\n", - "[INFO] [1712656208.868584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.869078]: Instances: []\n", - "[INFO] [1712656208.869345]: Direct Instances: []\n", - "[INFO] [1712656208.869646]: Inverse Restrictions: []\n", - "[INFO] [1712656208.869894]: -------------------\n", - "[INFO] [1712656208.870129]: SOMA.SupportTheory \n", - "[INFO] [1712656208.870361]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712656208.870627]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, SOMA.SupportTheory}\n", - "[INFO] [1712656208.870858]: Subclasses: []\n", - "[INFO] [1712656208.871153]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.871634]: Instances: []\n", - "[INFO] [1712656208.871889]: Direct Instances: []\n", - "[INFO] [1712656208.872137]: Inverse Restrictions: []\n", - "[INFO] [1712656208.872377]: -------------------\n", - "[INFO] [1712656208.872607]: SOMA.SupportedObject \n", - "[INFO] [1712656208.872841]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712656208.873101]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.SupportedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.873333]: Subclasses: []\n", - "[INFO] [1712656208.873618]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.874107]: Instances: []\n", - "[INFO] [1712656208.874361]: Direct Instances: []\n", - "[INFO] [1712656208.874599]: Inverse Restrictions: []\n", - "[INFO] [1712656208.874830]: -------------------\n", - "[INFO] [1712656208.875063]: SOMA.SymbolicReasoner \n", - "[INFO] [1712656208.875289]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712656208.875551]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.SymbolicReasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.875805]: Subclasses: []\n", - "[INFO] [1712656208.876096]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.876599]: Instances: []\n", - "[INFO] [1712656208.876876]: Direct Instances: []\n", - "[INFO] [1712656208.877124]: Inverse Restrictions: []\n", - "[INFO] [1712656208.877388]: -------------------\n", - "[INFO] [1712656208.877621]: SOMA.TableFork \n", - "[INFO] [1712656208.877847]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712656208.878113]: Ancestors: {DUL.Entity, DUL.DesignedArtifact, SOMA.TableFork, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Fork, SOMA.Tableware, SOMA.DesignedTool}\n", - "[INFO] [1712656208.878371]: Subclasses: []\n", - "[INFO] [1712656208.878662]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.879158]: Instances: []\n", - "[INFO] [1712656208.879411]: Direct Instances: []\n", - "[INFO] [1712656208.879670]: Inverse Restrictions: []\n", - "[INFO] [1712656208.879906]: -------------------\n", - "[INFO] [1712656208.880133]: SOMA.TableKnife \n", - "[INFO] [1712656208.880358]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712656208.880626]: Ancestors: {SOMA.KitchenKnife, SOMA.Knife, SOMA.TableKnife, DUL.DesignedArtifact, SOMA.CuttingTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656208.880880]: Subclasses: []\n", - "[INFO] [1712656208.881169]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.881652]: Instances: []\n", - "[INFO] [1712656208.881922]: Direct Instances: []\n", - "[INFO] [1712656208.882171]: Inverse Restrictions: []\n", - "[INFO] [1712656208.882405]: -------------------\n", - "[INFO] [1712656208.882633]: SOMA.TableSpoon \n", - "[INFO] [1712656208.882861]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712656208.883132]: Ancestors: {SOMA.TableSpoon, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, SOMA.Tableware, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Spoon, SOMA.DesignedTool}\n", - "[INFO] [1712656208.883395]: Subclasses: []\n", - "[INFO] [1712656208.883707]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.884211]: Instances: []\n", - "[INFO] [1712656208.884474]: Direct Instances: []\n", - "[INFO] [1712656208.884716]: Inverse Restrictions: []\n", - "[INFO] [1712656208.885151]: -------------------\n", - "[INFO] [1712656208.885560]: SOMA.TeaSpoon \n", - "[INFO] [1712656208.885938]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712656208.886351]: Ancestors: {SOMA.Spoon, DUL.DesignedArtifact, SOMA.Cutlery, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Tableware, SOMA.TeaSpoon, SOMA.DesignedTool}\n", - "[INFO] [1712656208.886732]: Subclasses: []\n", - "[INFO] [1712656208.887142]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.887667]: Instances: []\n", - "[INFO] [1712656208.887945]: Direct Instances: []\n", - "[INFO] [1712656208.888216]: Inverse Restrictions: []\n", - "[INFO] [1712656208.888452]: -------------------\n", - "[INFO] [1712656208.888684]: SOMA.Tap \n", - "[INFO] [1712656208.888921]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712656208.889207]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Tap, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656208.889453]: Subclasses: []\n", - "[INFO] [1712656208.889739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.890229]: Instances: []\n", - "[INFO] [1712656208.890480]: Direct Instances: []\n", - "[INFO] [1712656208.890740]: Inverse Restrictions: []\n", - "[INFO] [1712656208.890974]: -------------------\n", - "[INFO] [1712656208.891202]: SOMA.Tapping \n", - "[INFO] [1712656208.891430]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712656208.891695]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Tapping, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.891948]: Subclasses: []\n", - "[INFO] [1712656208.892236]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.892712]: Instances: []\n", - "[INFO] [1712656208.892970]: Direct Instances: []\n", - "[INFO] [1712656208.893203]: Inverse Restrictions: []\n", - "[INFO] [1712656208.893432]: -------------------\n", - "[INFO] [1712656208.893675]: SOMA.Taxis \n", - "[INFO] [1712656208.893904]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712656208.894171]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.Taxis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.894405]: Subclasses: []\n", - "[INFO] [1712656208.894679]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.895179]: Instances: []\n", - "[INFO] [1712656208.895436]: Direct Instances: []\n", - "[INFO] [1712656208.895684]: Inverse Restrictions: []\n", - "[INFO] [1712656208.895909]: -------------------\n", - "[INFO] [1712656208.896138]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712656208.896398]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712656208.896647]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656208.896943]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712656208.897249]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712656208.897766]: Instances: []\n", - "[INFO] [1712656208.898037]: Direct Instances: []\n", - "[INFO] [1712656208.898311]: Inverse Restrictions: []\n", - "[INFO] [1712656208.898555]: -------------------\n", - "[INFO] [1712656208.898787]: SOMA.Temperature \n", - "[INFO] [1712656208.899057]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712656208.899344]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Temperature, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.899598]: Subclasses: []\n", - "[INFO] [1712656208.899891]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712656208.900373]: Instances: []\n", - "[INFO] [1712656208.900647]: Direct Instances: []\n", - "[INFO] [1712656208.901330]: Inverse Restrictions: []\n", - "[INFO] [1712656208.901584]: -------------------\n", - "[INFO] [1712656208.901820]: SOMA.TemperatureRegion \n", - "[INFO] [1712656208.902050]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656208.902315]: Ancestors: {SOMA.TemperatureRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656208.902576]: Subclasses: []\n", - "[INFO] [1712656208.902873]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.903362]: Instances: []\n", - "[INFO] [1712656208.903615]: Direct Instances: []\n", - "[INFO] [1712656208.903931]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712656208.904185]: -------------------\n", - "[INFO] [1712656208.904424]: SOMA.Tempering \n", - "[INFO] [1712656208.904689]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712656208.904942]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656208.905194]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712656208.905483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.905977]: Instances: []\n", - "[INFO] [1712656208.906234]: Direct Instances: []\n", - "[INFO] [1712656208.906486]: Inverse Restrictions: []\n", - "[INFO] [1712656208.906719]: -------------------\n", - "[INFO] [1712656208.906944]: SOMA.TemperingByCooling \n", - "[INFO] [1712656208.907179]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712656208.907447]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, DUL.Entity, SOMA.Disposition, SOMA.TemperingByCooling}\n", - "[INFO] [1712656208.907682]: Subclasses: []\n", - "[INFO] [1712656208.907961]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.908443]: Instances: []\n", - "[INFO] [1712656208.908711]: Direct Instances: []\n", - "[INFO] [1712656208.908978]: Inverse Restrictions: []\n", - "[INFO] [1712656208.909208]: -------------------\n", - "[INFO] [1712656208.909436]: SOMA.ThinkAloud \n", - "[INFO] [1712656208.909661]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712656208.909931]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ThinkAloud, DUL.Entity}\n", - "[INFO] [1712656208.910177]: Subclasses: []\n", - "[INFO] [1712656208.910465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.910943]: Instances: []\n", - "[INFO] [1712656208.911211]: Direct Instances: []\n", - "[INFO] [1712656208.911467]: Inverse Restrictions: []\n", - "[INFO] [1712656208.911698]: -------------------\n", - "[INFO] [1712656208.911926]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712656208.912149]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656208.912426]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.ThinkAloudActionTopic, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.912676]: Subclasses: []\n", - "[INFO] [1712656208.912966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.913490]: Instances: []\n", - "[INFO] [1712656208.913769]: Direct Instances: []\n", - "[INFO] [1712656208.914026]: Inverse Restrictions: []\n", - "[INFO] [1712656208.914255]: -------------------\n", - "[INFO] [1712656208.914481]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712656208.914720]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712656208.914999]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.915244]: Subclasses: []\n", - "[INFO] [1712656208.915528]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.916026]: Instances: []\n", - "[INFO] [1712656208.916285]: Direct Instances: []\n", - "[INFO] [1712656208.916529]: Inverse Restrictions: []\n", - "[INFO] [1712656208.916790]: -------------------\n", - "[INFO] [1712656208.917052]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712656208.917286]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656208.917540]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudKnowledgeTopic, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.917799]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712656208.918085]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.918569]: Instances: []\n", - "[INFO] [1712656208.918841]: Direct Instances: []\n", - "[INFO] [1712656208.919097]: Inverse Restrictions: []\n", - "[INFO] [1712656208.919328]: -------------------\n", - "[INFO] [1712656208.919561]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712656208.919787]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656208.920053]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.920310]: Subclasses: []\n", - "[INFO] [1712656208.920603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.921091]: Instances: []\n", - "[INFO] [1712656208.921352]: Direct Instances: []\n", - "[INFO] [1712656208.921615]: Inverse Restrictions: []\n", - "[INFO] [1712656208.921852]: -------------------\n", - "[INFO] [1712656208.922083]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712656208.922309]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656208.922574]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.922825]: Subclasses: []\n", - "[INFO] [1712656208.923115]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.923602]: Instances: []\n", - "[INFO] [1712656208.923855]: Direct Instances: []\n", - "[INFO] [1712656208.924093]: Inverse Restrictions: []\n", - "[INFO] [1712656208.924334]: -------------------\n", - "[INFO] [1712656208.924566]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712656208.924801]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656208.925071]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.925312]: Subclasses: []\n", - "[INFO] [1712656208.925611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.926099]: Instances: []\n", - "[INFO] [1712656208.926357]: Direct Instances: []\n", - "[INFO] [1712656208.926620]: Inverse Restrictions: []\n", - "[INFO] [1712656208.926852]: -------------------\n", - "[INFO] [1712656208.927081]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712656208.927306]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656208.927571]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ThinkAloudPlanTopic, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.927849]: Subclasses: []\n", - "[INFO] [1712656208.928147]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.928641]: Instances: []\n", - "[INFO] [1712656208.928904]: Direct Instances: []\n", - "[INFO] [1712656208.929145]: Inverse Restrictions: []\n", - "[INFO] [1712656208.929386]: -------------------\n", - "[INFO] [1712656208.929621]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712656208.929855]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712656208.930165]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656208.930442]: Subclasses: []\n", - "[INFO] [1712656208.930738]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.931228]: Instances: []\n", - "[INFO] [1712656208.931479]: Direct Instances: []\n", - "[INFO] [1712656208.931720]: Inverse Restrictions: []\n", - "[INFO] [1712656208.931954]: -------------------\n", - "[INFO] [1712656208.932192]: SOMA.Threshold \n", - "[INFO] [1712656208.932421]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712656208.932682]: Ancestors: {DUL.Concept, SOMA.Threshold, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.932924]: Subclasses: []\n", - "[INFO] [1712656208.933207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.933702]: Instances: []\n", - "[INFO] [1712656208.933964]: Direct Instances: []\n", - "[INFO] [1712656208.934210]: Inverse Restrictions: []\n", - "[INFO] [1712656208.934439]: -------------------\n", - "[INFO] [1712656208.934679]: SOMA.Throwing \n", - "[INFO] [1712656208.934916]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712656208.935189]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Throwing, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656208.935433]: Subclasses: []\n", - "[INFO] [1712656208.935715]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.936208]: Instances: []\n", - "[INFO] [1712656208.936472]: Direct Instances: []\n", - "[INFO] [1712656208.936721]: Inverse Restrictions: []\n", - "[INFO] [1712656208.936959]: -------------------\n", - "[INFO] [1712656208.937186]: SOMA.TimeRole \n", - "[INFO] [1712656208.937411]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712656208.937682]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656208.937934]: Subclasses: []\n", - "[INFO] [1712656208.938220]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.938696]: Instances: []\n", - "[INFO] [1712656208.938966]: Direct Instances: []\n", - "[INFO] [1712656208.939524]: Inverse Restrictions: []\n", - "[INFO] [1712656208.939896]: -------------------\n", - "[INFO] [1712656208.940171]: SOMA.Transporting \n", - "[INFO] [1712656208.940506]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712656208.940799]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", - "[INFO] [1712656208.941078]: Subclasses: []\n", - "[INFO] [1712656208.941396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.941896]: Instances: []\n", - "[INFO] [1712656208.942156]: Direct Instances: []\n", - "[INFO] [1712656208.942406]: Inverse Restrictions: []\n", - "[INFO] [1712656208.942651]: -------------------\n", - "[INFO] [1712656208.942890]: SOMA.TrashContainer \n", - "[INFO] [1712656208.943124]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712656208.943398]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.TrashContainer, DUL.Entity}\n", - "[INFO] [1712656208.943637]: Subclasses: []\n", - "[INFO] [1712656208.943937]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.944432]: Instances: []\n", - "[INFO] [1712656208.944709]: Direct Instances: []\n", - "[INFO] [1712656208.944982]: Inverse Restrictions: []\n", - "[INFO] [1712656208.945239]: -------------------\n", - "[INFO] [1712656208.945474]: SOMA.Triplestore \n", - "[INFO] [1712656208.945703]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712656208.945972]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, SOMA.Triplestore, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", - "[INFO] [1712656208.946229]: Subclasses: []\n", - "[INFO] [1712656208.946521]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.947048]: Instances: []\n", - "[INFO] [1712656208.947312]: Direct Instances: []\n", - "[INFO] [1712656208.947566]: Inverse Restrictions: []\n", - "[INFO] [1712656208.947798]: -------------------\n", - "[INFO] [1712656208.948041]: SOMA.Turning \n", - "[INFO] [1712656208.948273]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712656208.948545]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, SOMA.Turning, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656208.948786]: Subclasses: []\n", - "[INFO] [1712656208.949108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.949617]: Instances: []\n", - "[INFO] [1712656208.949898]: Direct Instances: []\n", - "[INFO] [1712656208.950144]: Inverse Restrictions: []\n", - "[INFO] [1712656208.950382]: -------------------\n", - "[INFO] [1712656208.950617]: SOMA.UnavailableSoftware \n", - "[INFO] [1712656208.950847]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712656208.951118]: Ancestors: {SOMA.UnavailableSoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656208.951359]: Subclasses: []\n", - "[INFO] [1712656208.951655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.952139]: Instances: []\n", - "[INFO] [1712656208.952403]: Direct Instances: []\n", - "[INFO] [1712656208.952641]: Inverse Restrictions: []\n", - "[INFO] [1712656208.952876]: -------------------\n", - "[INFO] [1712656208.953116]: SOMA.Unsuccessfulness \n", - "[INFO] [1712656208.953349]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712656208.953588]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656208.953839]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712656208.954128]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.954634]: Instances: []\n", - "[INFO] [1712656208.954892]: Direct Instances: []\n", - "[INFO] [1712656208.955151]: Inverse Restrictions: []\n", - "[INFO] [1712656208.955379]: -------------------\n", - "[INFO] [1712656208.955616]: SOMA.VideoData \n", - "[INFO] [1712656208.955851]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712656208.956118]: Ancestors: {SOMA.VideoData, DUL.InformationEntity, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656208.956353]: Subclasses: []\n", - "[INFO] [1712656208.956647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.957179]: Instances: []\n", - "[INFO] [1712656208.957463]: Direct Instances: []\n", - "[INFO] [1712656208.957711]: Inverse Restrictions: []\n", - "[INFO] [1712656208.957942]: -------------------\n", - "[INFO] [1712656208.958167]: SOMA.Wardrobe \n", - "[INFO] [1712656208.958391]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712656208.958670]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Cupboard, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture, SOMA.Wardrobe}\n", - "[INFO] [1712656208.958911]: Subclasses: []\n", - "[INFO] [1712656208.959193]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.959670]: Instances: []\n", - "[INFO] [1712656208.959946]: Direct Instances: []\n", - "[INFO] [1712656208.960197]: Inverse Restrictions: []\n", - "[INFO] [1712656208.960427]: -------------------\n", - "[INFO] [1712656208.960654]: SOMA.WaterBottle \n", - "[INFO] [1712656208.960882]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712656208.961148]: Ancestors: {SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.WaterBottle}\n", - "[INFO] [1712656208.961403]: Subclasses: []\n", - "[INFO] [1712656208.961691]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.962184]: Instances: []\n", - "[INFO] [1712656208.962437]: Direct Instances: []\n", - "[INFO] [1712656208.962684]: Inverse Restrictions: []\n", - "[INFO] [1712656208.962920]: -------------------\n", - "[INFO] [1712656208.963154]: SOMA.WaterGlass \n", - "[INFO] [1712656208.963419]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712656208.963717]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, SOMA.WaterGlass, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool, SOMA.Glass}\n", - "[INFO] [1712656208.963983]: Subclasses: []\n", - "[INFO] [1712656208.964277]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.965039]: Instances: []\n", - "[INFO] [1712656208.965627]: Direct Instances: []\n", - "[INFO] [1712656208.966061]: Inverse Restrictions: []\n", - "[INFO] [1712656208.966455]: -------------------\n", - "[INFO] [1712656208.966840]: SOMA.WineBottle \n", - "[INFO] [1712656208.967125]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712656208.967417]: Ancestors: {SOMA.DesignedContainer, SOMA.Bottle, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.WineBottle, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.967680]: Subclasses: []\n", - "[INFO] [1712656208.967976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.968463]: Instances: []\n", - "[INFO] [1712656208.968726]: Direct Instances: []\n", - "[INFO] [1712656208.968998]: Inverse Restrictions: []\n", - "[INFO] [1712656208.969234]: -------------------\n", - "[INFO] [1712656208.969471]: SOMA.WineGlass \n", - "[INFO] [1712656208.969699]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712656208.969968]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.WineGlass, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool, SOMA.Glass}\n", - "[INFO] [1712656208.970221]: Subclasses: []\n", - "[INFO] [1712656208.970512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.970995]: Instances: []\n", - "[INFO] [1712656208.971246]: Direct Instances: []\n", - "[INFO] [1712656208.971488]: Inverse Restrictions: []\n", - "[INFO] [1712656208.971725]: -------------------\n", - "[INFO] [1712656208.971958]: SOMA.3DPosition \n", - "[INFO] [1712656208.972224]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712656208.972494]: Ancestors: {SOMA.3DPosition, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.SpaceRegion}\n", - "[INFO] [1712656208.972742]: Subclasses: []\n", - "[INFO] [1712656208.973045]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasPositionData]\n", - "[INFO] [1712656208.973521]: Instances: []\n", - "[INFO] [1712656208.973772]: Direct Instances: []\n", - "[INFO] [1712656208.974013]: Inverse Restrictions: []\n", - "[INFO] [1712656208.974250]: -------------------\n", - "[INFO] [1712656208.974481]: SOMA.Affordance \n", - "[INFO] [1712656208.974725]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712656208.974967]: Ancestors: {SOMA.Affordance, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.975228]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712656208.975527]: Properties: [rdf-schema.isDefinedBy, SOMA.definesBearer, rdf-schema.comment, SOMA.definesTrigger, DUL.definesTask]\n", - "[INFO] [1712656208.976008]: Instances: []\n", - "[INFO] [1712656208.976255]: Direct Instances: []\n", - "[INFO] [1712656208.976630]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712656208.976886]: -------------------\n", - "[INFO] [1712656208.977126]: SOMA.Disposition \n", - "[INFO] [1712656208.977378]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712656208.977618]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656208.977880]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712656208.978183]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656208.978721]: Instances: []\n", - "[INFO] [1712656208.978985]: Direct Instances: []\n", - "[INFO] [1712656208.979297]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712656208.979543]: -------------------\n", - "[INFO] [1712656208.979779]: SOMA.Setpoint \n", - "[INFO] [1712656208.980025]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712656208.980279]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.Parameter, SOMA.Setpoint, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.980531]: Subclasses: []\n", - "[INFO] [1712656208.980834]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656208.981472]: Instances: []\n", - "[INFO] [1712656208.981770]: Direct Instances: []\n", - "[INFO] [1712656208.982040]: Inverse Restrictions: []\n", - "[INFO] [1712656208.982294]: -------------------\n", - "[INFO] [1712656208.982538]: SOMA.Answer \n", - "[INFO] [1712656208.982771]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712656208.983018]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Answer, SOMA.Message}\n", - "[INFO] [1712656208.983282]: Subclasses: []\n", - "[INFO] [1712656208.983582]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.984069]: Instances: []\n", - "[INFO] [1712656208.984329]: Direct Instances: []\n", - "[INFO] [1712656208.984622]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712656208.984882]: -------------------\n", - "[INFO] [1712656208.985123]: SOMA.Message \n", - "[INFO] [1712656208.985363]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712656208.985615]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Message}\n", - "[INFO] [1712656208.985870]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712656208.986162]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.986667]: Instances: []\n", - "[INFO] [1712656208.986928]: Direct Instances: []\n", - "[INFO] [1712656208.987245]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656208.987489]: -------------------\n", - "[INFO] [1712656208.987734]: SOMA.ProcessType \n", - "[INFO] [1712656208.987977]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712656208.988219]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656208.988489]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712656208.988794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.989379]: Instances: []\n", - "[INFO] [1712656208.989662]: Direct Instances: []\n", - "[INFO] [1712656208.989995]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712656208.990244]: -------------------\n", - "[INFO] [1712656208.990481]: SOMA.OrderedElement \n", - "[INFO] [1712656208.990729]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712656208.990971]: Ancestors: {SOMA.OrderedElement, SOMA.Singleton, owl.Thing}\n", - "[INFO] [1712656208.991212]: Subclasses: []\n", - "[INFO] [1712656208.991517]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isOrderedBy]\n", - "[INFO] [1712656208.992009]: Instances: []\n", - "[INFO] [1712656208.992267]: Direct Instances: []\n", - "[INFO] [1712656208.992635]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712656208.992898]: -------------------\n", - "[INFO] [1712656208.993144]: SOMA.System \n", - "[INFO] [1712656208.993379]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712656208.993620]: Ancestors: {DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656208.993879]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712656208.994183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656208.994700]: Instances: []\n", - "[INFO] [1712656208.994955]: Direct Instances: []\n", - "[INFO] [1712656208.995211]: Inverse Restrictions: []\n", - "[INFO] [1712656208.995454]: -------------------\n", - "[INFO] [1712656208.995687]: SOMA.Binding \n", - "[INFO] [1712656208.995942]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712656208.996185]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656208.996456]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712656208.996795]: Properties: [SOMA.hasBindingFiller, Inverse(SOMA.hasBinding), rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasBindingRole]\n", - "[INFO] [1712656208.997312]: Instances: []\n", - "[INFO] [1712656208.997588]: Direct Instances: []\n", - "[INFO] [1712656208.997854]: Inverse Restrictions: []\n", - "[INFO] [1712656208.998089]: -------------------\n", - "[INFO] [1712656208.998323]: SOMA.Joint \n", - "[INFO] [1712656208.998569]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712656208.998843]: Ancestors: {DUL.PhysicalBody, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656208.999109]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712656208.999420]: Properties: [SOMA.hasChildLink, rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", - "[INFO] [1712656208.999924]: Instances: []\n", - "[INFO] [1712656209.000188]: Direct Instances: []\n", - "[INFO] [1712656209.000464]: Inverse Restrictions: []\n", - "[INFO] [1712656209.000700]: -------------------\n", - "[INFO] [1712656209.000938]: SOMA.Color \n", - "[INFO] [1712656209.001173]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712656209.001417]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.001677]: Subclasses: []\n", - "[INFO] [1712656209.001978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion, rdf-schema.label]\n", - "[INFO] [1712656209.002464]: Instances: []\n", - "[INFO] [1712656209.002724]: Direct Instances: []\n", - "[INFO] [1712656209.003012]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712656209.003268]: -------------------\n", - "[INFO] [1712656209.003520]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712656209.003767]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656209.004015]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.ExecutionStateRegion, DUL.Entity}\n", - "[INFO] [1712656209.004264]: Subclasses: []\n", - "[INFO] [1712656209.004565]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.005117]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712656209.005424]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712656209.005694]: Inverse Restrictions: []\n", - "[INFO] [1712656209.005928]: -------------------\n", - "[INFO] [1712656209.006264]: SOMA.Feature \n", - "[INFO] [1712656209.006541]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712656209.006798]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Feature, owl.Thing}\n", - "[INFO] [1712656209.007059]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712656209.007363]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isFeatureOf]\n", - "[INFO] [1712656209.007854]: Instances: []\n", - "[INFO] [1712656209.008142]: Direct Instances: []\n", - "[INFO] [1712656209.008446]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712656209.008690]: -------------------\n", - "[INFO] [1712656209.009041]: SOMA.FrictionAttribute \n", - "[INFO] [1712656209.009369]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712656209.009659]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656209.009946]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712656209.010259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasFrictionValue]\n", - "[INFO] [1712656209.010762]: Instances: []\n", - "[INFO] [1712656209.011047]: Direct Instances: []\n", - "[INFO] [1712656209.011320]: Inverse Restrictions: []\n", - "[INFO] [1712656209.011558]: -------------------\n", - "[INFO] [1712656209.011791]: SOMA.SituationTransition \n", - "[INFO] [1712656209.012017]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712656209.012253]: Ancestors: {DUL.Situation, SOMA.SituationTransition, DUL.Transition, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.012503]: Subclasses: []\n", - "[INFO] [1712656209.012801]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.013309]: Instances: []\n", - "[INFO] [1712656209.013611]: Direct Instances: []\n", - "[INFO] [1712656209.015576]: Inverse Restrictions: []\n", - "[INFO] [1712656209.015938]: -------------------\n", - "[INFO] [1712656209.016201]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712656209.016448]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712656209.016695]: Ancestors: {DUL.Entity, DUL.Situation, owl.Thing, SOMA.NonmanifestedSituation}\n", - "[INFO] [1712656209.016956]: Subclasses: []\n", - "[INFO] [1712656209.017278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.017798]: Instances: []\n", - "[INFO] [1712656209.018083]: Direct Instances: []\n", - "[INFO] [1712656209.019498]: Inverse Restrictions: []\n", - "[INFO] [1712656209.019775]: -------------------\n", - "[INFO] [1712656209.020026]: SOMA.JointLimit \n", - "[INFO] [1712656209.020280]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712656209.020529]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.JointLimit, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656209.020778]: Subclasses: []\n", - "[INFO] [1712656209.021077]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.021583]: Instances: []\n", - "[INFO] [1712656209.021852]: Direct Instances: []\n", - "[INFO] [1712656209.022183]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712656209.022430]: -------------------\n", - "[INFO] [1712656209.022686]: SOMA.JointState \n", - "[INFO] [1712656209.022937]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712656209.023183]: Ancestors: {DUL.Region, SOMA.JointState, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656209.023423]: Subclasses: []\n", - "[INFO] [1712656209.023717]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasJointPosition, rdf-schema.comment, SOMA.hasJointVelocity]\n", - "[INFO] [1712656209.024218]: Instances: []\n", - "[INFO] [1712656209.024490]: Direct Instances: []\n", - "[INFO] [1712656209.024820]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712656209.025069]: -------------------\n", - "[INFO] [1712656209.025313]: SOMA.Localization \n", - "[INFO] [1712656209.025558]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712656209.025814]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.026066]: Subclasses: []\n", - "[INFO] [1712656209.026366]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712656209.026867]: Instances: []\n", - "[INFO] [1712656209.027142]: Direct Instances: []\n", - "[INFO] [1712656209.028262]: Inverse Restrictions: []\n", - "[INFO] [1712656209.028522]: -------------------\n", - "[INFO] [1712656209.028763]: SOMA.MassAttribute \n", - "[INFO] [1712656209.029021]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712656209.029266]: Ancestors: {SOMA.MassAttribute, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656209.029509]: Subclasses: []\n", - "[INFO] [1712656209.029803]: Properties: [SOMA.hasMassValue, rdf-schema.comment, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656209.030309]: Instances: []\n", - "[INFO] [1712656209.030608]: Direct Instances: []\n", - "[INFO] [1712656209.030873]: Inverse Restrictions: []\n", - "[INFO] [1712656209.031106]: -------------------\n", - "[INFO] [1712656209.031347]: SOMA.NetForce \n", - "[INFO] [1712656209.031585]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712656209.031825]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.NetForce, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", - "[INFO] [1712656209.032084]: Subclasses: []\n", - "[INFO] [1712656209.032372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.032902]: Instances: []\n", - "[INFO] [1712656209.033300]: Direct Instances: []\n", - "[INFO] [1712656209.033604]: Inverse Restrictions: []\n", - "[INFO] [1712656209.033867]: -------------------\n", - "[INFO] [1712656209.034112]: SOMA.Succedence \n", - "[INFO] [1712656209.034369]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712656209.034619]: Ancestors: {DUL.Relation, DUL.Description, DUL.Object, owl.Thing, SOMA.Succedence, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.034884]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712656209.035196]: Properties: [Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy, SOMA.hasPredecessor, SOMA.hasSuccessor, rdf-schema.comment]\n", - "[INFO] [1712656209.035694]: Instances: []\n", - "[INFO] [1712656209.035976]: Direct Instances: []\n", - "[INFO] [1712656209.036246]: Inverse Restrictions: []\n", - "[INFO] [1712656209.036482]: -------------------\n", - "[INFO] [1712656209.036718]: SOMA.Preference \n", - "[INFO] [1712656209.036979]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712656209.037251]: Ancestors: {DUL.Quality, SOMA.Preference, SOMA.SocialQuality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.037508]: Subclasses: []\n", - "[INFO] [1712656209.037803]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.038284]: Instances: []\n", - "[INFO] [1712656209.038538]: Direct Instances: []\n", - "[INFO] [1712656209.038913]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712656209.039166]: -------------------\n", - "[INFO] [1712656209.039405]: SOMA.Shape \n", - "[INFO] [1712656209.039651]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712656209.039906]: Ancestors: {SOMA.Shape, SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.040159]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", - "[INFO] [1712656209.040450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712656209.040986]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712656209.041268]: Direct Instances: []\n", - "[INFO] [1712656209.042411]: Inverse Restrictions: []\n", - "[INFO] [1712656209.042685]: -------------------\n", - "[INFO] [1712656209.042929]: SOMA.ShapeRegion \n", - "[INFO] [1712656209.043172]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712656209.043413]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.043679]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712656209.043980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.044501]: Instances: []\n", - "[INFO] [1712656209.044786]: Direct Instances: []\n", - "[INFO] [1712656209.045526]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712656209.045783]: -------------------\n", - "[INFO] [1712656209.046023]: SOMA.SoftwareInstance \n", - "[INFO] [1712656209.046282]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712656209.046526]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", - "[INFO] [1712656209.046803]: Subclasses: []\n", - "[INFO] [1712656209.047105]: Properties: [DUL.actsFor, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isDesignedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.047612]: Instances: []\n", - "[INFO] [1712656209.047880]: Direct Instances: []\n", - "[INFO] [1712656209.048216]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712656209.048471]: -------------------\n", - "[INFO] [1712656209.048711]: SOMA.StateType \n", - "[INFO] [1712656209.048980]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712656209.049237]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656209.049512]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712656209.049824]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.050369]: Instances: []\n", - "[INFO] [1712656209.050665]: Direct Instances: []\n", - "[INFO] [1712656209.050999]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712656209.051245]: -------------------\n", - "[INFO] [1712656209.051484]: SOMA.PhysicalEffector \n", - "[INFO] [1712656209.051748]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712656209.052012]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.052289]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712656209.052603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, Inverse(DUL.hasPart)]\n", - "[INFO] [1712656209.053128]: Instances: []\n", - "[INFO] [1712656209.053442]: Direct Instances: []\n", - "[INFO] [1712656209.053721]: Inverse Restrictions: []\n", - "[INFO] [1712656209.053959]: -------------------\n", - "[INFO] [1712656209.054194]: SOMA.QueryingTask \n", - "[INFO] [1712656209.054437]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712656209.054690]: Ancestors: {owl.Thing, SOMA.QueryingTask, SOMA.IllocutionaryTask}\n", - "[INFO] [1712656209.054945]: Subclasses: []\n", - "[INFO] [1712656209.055241]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712656209.055732]: Instances: []\n", - "[INFO] [1712656209.056018]: Direct Instances: []\n", - "[INFO] [1712656209.056357]: Inverse Restrictions: []\n", - "[INFO] [1712656209.056596]: -------------------\n", - "[INFO] [1712656209.056843]: SOMA.Order \n", - "[INFO] [1712656209.057081]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712656209.057318]: Ancestors: {DUL.FormalEntity, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.Order}\n", - "[INFO] [1712656209.057568]: Subclasses: []\n", - "[INFO] [1712656209.057866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.orders]\n", - "[INFO] [1712656209.058359]: Instances: []\n", - "[INFO] [1712656209.058646]: Direct Instances: []\n", - "[INFO] [1712656209.059015]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712656209.059264]: -------------------\n", - "[INFO] [1712656209.059496]: SOMA.State \n", - "[INFO] [1712656209.059728]: Super classes: [DUL.Event]\n", - "[INFO] [1712656209.059964]: Ancestors: {DUL.Entity, DUL.Event, owl.Thing, SOMA.State}\n", - "[INFO] [1712656209.060231]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712656209.060525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.061027]: Instances: []\n", - "[INFO] [1712656209.061315]: Direct Instances: []\n", - "[INFO] [1712656209.061829]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712656209.062079]: -------------------\n", - "[INFO] [1712656209.062312]: SOMA.Transient \n", - "[INFO] [1712656209.062555]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712656209.062808]: Ancestors: {DUL.Object, DUL.Entity, SOMA.Transient, owl.Thing}\n", - "[INFO] [1712656209.063068]: Subclasses: []\n", - "[INFO] [1712656209.063386]: Properties: [rdf-schema.isDefinedBy, SOMA.transitionsFrom, rdf-schema.comment]\n", - "[INFO] [1712656209.063883]: Instances: []\n", - "[INFO] [1712656209.064163]: Direct Instances: []\n", - "[INFO] [1712656209.064425]: Inverse Restrictions: []\n", - "[INFO] [1712656209.064660]: -------------------\n", - "[INFO] [1712656209.064914]: SOMA.ColorRegion \n", - "[INFO] [1712656209.065155]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712656209.065433]: Ancestors: {DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656209.065702]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712656209.065999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.066497]: Instances: []\n", - "[INFO] [1712656209.066777]: Direct Instances: []\n", - "[INFO] [1712656209.067106]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712656209.067346]: -------------------\n", - "[INFO] [1712656209.067580]: SOMA.ForceAttribute \n", - "[INFO] [1712656209.067814]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712656209.068061]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute}\n", - "[INFO] [1712656209.068321]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712656209.068616]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasForceValue, rdf-schema.label]\n", - "[INFO] [1712656209.069108]: Instances: []\n", - "[INFO] [1712656209.069379]: Direct Instances: []\n", - "[INFO] [1712656209.069640]: Inverse Restrictions: []\n", - "[INFO] [1712656209.069873]: -------------------\n", - "[INFO] [1712656209.070099]: SOMA.API_Specification \n", - "[INFO] [1712656209.070326]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712656209.070562]: Ancestors: {DUL.Design, SOMA.API_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.070824]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712656209.071113]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.071594]: Instances: []\n", - "[INFO] [1712656209.071871]: Direct Instances: []\n", - "[INFO] [1712656209.072143]: Inverse Restrictions: []\n", - "[INFO] [1712656209.072387]: -------------------\n", - "[INFO] [1712656209.072619]: SOMA.InterfaceSpecification \n", - "[INFO] [1712656209.072857]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712656209.073105]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.073374]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712656209.073673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.074185]: Instances: []\n", - "[INFO] [1712656209.074457]: Direct Instances: []\n", - "[INFO] [1712656209.074777]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712656209.075020]: -------------------\n", - "[INFO] [1712656209.075254]: SOMA.AbductiveReasoning \n", - "[INFO] [1712656209.075483]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712656209.075726]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.AbductiveReasoning, SOMA.Reasoning}\n", - "[INFO] [1712656209.075972]: Subclasses: []\n", - "[INFO] [1712656209.076259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.076734]: Instances: []\n", - "[INFO] [1712656209.077022]: Direct Instances: []\n", - "[INFO] [1712656209.077275]: Inverse Restrictions: []\n", - "[INFO] [1712656209.077515]: -------------------\n", - "[INFO] [1712656209.077746]: SOMA.Reasoning \n", - "[INFO] [1712656209.077972]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656209.078207]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Reasoning}\n", - "[INFO] [1712656209.078475]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712656209.078768]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.079257]: Instances: []\n", - "[INFO] [1712656209.079525]: Direct Instances: []\n", - "[INFO] [1712656209.079786]: Inverse Restrictions: []\n", - "[INFO] [1712656209.080040]: -------------------\n", - "[INFO] [1712656209.080279]: SOMA.Accessor \n", - "[INFO] [1712656209.080505]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712656209.080745]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Accessor, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.081009]: Subclasses: []\n", - "[INFO] [1712656209.081297]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.081787]: Instances: []\n", - "[INFO] [1712656209.082046]: Direct Instances: []\n", - "[INFO] [1712656209.082307]: Inverse Restrictions: []\n", - "[INFO] [1712656209.082556]: -------------------\n", - "[INFO] [1712656209.082788]: SOMA.Instrument \n", - "[INFO] [1712656209.083017]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712656209.083253]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.083507]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712656209.083801]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.084322]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656209.084599]: Direct Instances: []\n", - "[INFO] [1712656209.084988]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656209.085239]: -------------------\n", - "[INFO] [1712656209.085473]: SOMA.Accident \n", - "[INFO] [1712656209.085701]: Super classes: [DUL.Event]\n", - "[INFO] [1712656209.085933]: Ancestors: {DUL.Entity, SOMA.Accident, DUL.Event, owl.Thing}\n", - "[INFO] [1712656209.086176]: Subclasses: []\n", - "[INFO] [1712656209.086480]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.086965]: Instances: []\n", - "[INFO] [1712656209.087225]: Direct Instances: []\n", - "[INFO] [1712656209.087466]: Inverse Restrictions: []\n", - "[INFO] [1712656209.087704]: -------------------\n", - "[INFO] [1712656209.087935]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712656209.088166]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712656209.088415]: Ancestors: {DUL.Plan, SOMA.ActionExecutionPlan, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.088653]: Subclasses: []\n", - "[INFO] [1712656209.088952]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.089444]: Instances: []\n", - "[INFO] [1712656209.089708]: Direct Instances: []\n", - "[INFO] [1712656209.089952]: Inverse Restrictions: []\n", - "[INFO] [1712656209.090178]: -------------------\n", - "[INFO] [1712656209.090405]: SOMA.Actuating \n", - "[INFO] [1712656209.090642]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656209.090888]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.091163]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712656209.091458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.091990]: Instances: []\n", - "[INFO] [1712656209.092258]: Direct Instances: []\n", - "[INFO] [1712656209.092525]: Inverse Restrictions: []\n", - "[INFO] [1712656209.092944]: -------------------\n", - "[INFO] [1712656209.093297]: SOMA.PhysicalTask \n", - "[INFO] [1712656209.093677]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712656209.094044]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.094431]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712656209.094860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.095596]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", - "[INFO] [1712656209.095887]: Direct Instances: []\n", - "[INFO] [1712656209.096218]: Inverse Restrictions: []\n", - "[INFO] [1712656209.096466]: -------------------\n", - "[INFO] [1712656209.096727]: SOMA.AestheticDesign \n", - "[INFO] [1712656209.096978]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712656209.097221]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.AestheticDesign, DUL.Entity}\n", - "[INFO] [1712656209.097477]: Subclasses: []\n", - "[INFO] [1712656209.097777]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.098263]: Instances: []\n", - "[INFO] [1712656209.098555]: Direct Instances: []\n", - "[INFO] [1712656209.098823]: Inverse Restrictions: []\n", - "[INFO] [1712656209.099065]: -------------------\n", - "[INFO] [1712656209.099302]: SOMA.AgentRole \n", - "[INFO] [1712656209.099537]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712656209.099790]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.AgentRole}\n", - "[INFO] [1712656209.100037]: Subclasses: []\n", - "[INFO] [1712656209.100329]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.100817]: Instances: []\n", - "[INFO] [1712656209.101097]: Direct Instances: []\n", - "[INFO] [1712656209.101390]: Inverse Restrictions: []\n", - "[INFO] [1712656209.101627]: -------------------\n", - "[INFO] [1712656209.101861]: SOMA.CausativeRole \n", - "[INFO] [1712656209.102089]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656209.102327]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.102599]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712656209.102892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.103400]: Instances: []\n", - "[INFO] [1712656209.103663]: Direct Instances: []\n", - "[INFO] [1712656209.103933]: Inverse Restrictions: []\n", - "[INFO] [1712656209.104192]: -------------------\n", - "[INFO] [1712656209.104432]: SOMA.Agonist \n", - "[INFO] [1712656209.104665]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.104907]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.Agonist, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.105160]: Subclasses: []\n", - "[INFO] [1712656209.105454]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.105942]: Instances: []\n", - "[INFO] [1712656209.106203]: Direct Instances: []\n", - "[INFO] [1712656209.106490]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712656209.106743]: -------------------\n", - "[INFO] [1712656209.106982]: SOMA.Patient \n", - "[INFO] [1712656209.107213]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656209.107452]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.107736]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712656209.108043]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.108609]: Instances: []\n", - "[INFO] [1712656209.108902]: Direct Instances: []\n", - "[INFO] [1712656209.109324]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656209.109579]: -------------------\n", - "[INFO] [1712656209.109826]: SOMA.Algorithm \n", - "[INFO] [1712656209.110075]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712656209.110331]: Ancestors: {DUL.Plan, SOMA.Algorithm, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.110582]: Subclasses: []\n", - "[INFO] [1712656209.110885]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.111367]: Instances: []\n", - "[INFO] [1712656209.111645]: Direct Instances: []\n", - "[INFO] [1712656209.111959]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712656209.112205]: -------------------\n", - "[INFO] [1712656209.112434]: SOMA.Alteration \n", - "[INFO] [1712656209.112662]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712656209.113007]: Ancestors: {DUL.Concept, SOMA.Alteration, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656209.113333]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712656209.113672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.114208]: Instances: []\n", - "[INFO] [1712656209.114504]: Direct Instances: []\n", - "[INFO] [1712656209.114777]: Inverse Restrictions: []\n", - "[INFO] [1712656209.115017]: -------------------\n", - "[INFO] [1712656209.115252]: SOMA.AlterativeInteraction \n", - "[INFO] [1712656209.115488]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712656209.115733]: Ancestors: {DUL.Concept, SOMA.ForceInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AlterativeInteraction, SOMA.ProcessType}\n", - "[INFO] [1712656209.116002]: Subclasses: []\n", - "[INFO] [1712656209.116312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.116857]: Instances: []\n", - "[INFO] [1712656209.117223]: Direct Instances: []\n", - "[INFO] [1712656209.117555]: Inverse Restrictions: []\n", - "[INFO] [1712656209.117814]: -------------------\n", - "[INFO] [1712656209.118057]: SOMA.ForceInteraction \n", - "[INFO] [1712656209.118304]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712656209.118550]: Ancestors: {DUL.Concept, SOMA.ForceInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656209.118807]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712656209.119127]: Properties: [SOMA.isProcessTypeOf, rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.label, rdf-schema.comment]\n", - "[INFO] [1712656209.119632]: Instances: []\n", - "[INFO] [1712656209.119895]: Direct Instances: []\n", - "[INFO] [1712656209.120151]: Inverse Restrictions: []\n", - "[INFO] [1712656209.120390]: -------------------\n", - "[INFO] [1712656209.120626]: SOMA.PreservativeInteraction \n", - "[INFO] [1712656209.120865]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712656209.121102]: Ancestors: {SOMA.ForceInteraction, DUL.Concept, SOMA.PreservativeInteraction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656209.121343]: Subclasses: []\n", - "[INFO] [1712656209.121644]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.122155]: Instances: []\n", - "[INFO] [1712656209.122428]: Direct Instances: []\n", - "[INFO] [1712656209.122732]: Inverse Restrictions: []\n", - "[INFO] [1712656209.122979]: -------------------\n", - "[INFO] [1712656209.123226]: SOMA.AlteredObject \n", - "[INFO] [1712656209.123469]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.123719]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.123996]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712656209.124296]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.124804]: Instances: []\n", - "[INFO] [1712656209.125084]: Direct Instances: []\n", - "[INFO] [1712656209.125443]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712656209.125690]: -------------------\n", - "[INFO] [1712656209.125936]: SOMA.Amateurish \n", - "[INFO] [1712656209.126171]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712656209.126631]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.127089]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712656209.127628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.128470]: Instances: []\n", - "[INFO] [1712656209.128895]: Direct Instances: []\n", - "[INFO] [1712656209.129311]: Inverse Restrictions: []\n", - "[INFO] [1712656209.129712]: -------------------\n", - "[INFO] [1712656209.130113]: SOMA.AnsweringTask \n", - "[INFO] [1712656209.130517]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.130927]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", - "[INFO] [1712656209.131336]: Subclasses: []\n", - "[INFO] [1712656209.131848]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712656209.132705]: Instances: []\n", - "[INFO] [1712656209.133140]: Direct Instances: []\n", - "[INFO] [1712656209.133660]: Inverse Restrictions: []\n", - "[INFO] [1712656209.134055]: -------------------\n", - "[INFO] [1712656209.134451]: SOMA.CommandingTask \n", - "[INFO] [1712656209.134850]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712656209.135259]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask, SOMA.CommandingTask}\n", - "[INFO] [1712656209.135669]: Subclasses: []\n", - "[INFO] [1712656209.136163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.137018]: Instances: []\n", - "[INFO] [1712656209.137463]: Direct Instances: []\n", - "[INFO] [1712656209.138108]: Inverse Restrictions: []\n", - "[INFO] [1712656209.138515]: -------------------\n", - "[INFO] [1712656209.138920]: SOMA.IllocutionaryTask \n", - "[INFO] [1712656209.139350]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712656209.139768]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask}\n", - "[INFO] [1712656209.140620]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712656209.141205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.142056]: Instances: []\n", - "[INFO] [1712656209.142480]: Direct Instances: []\n", - "[INFO] [1712656209.142983]: Inverse Restrictions: []\n", - "[INFO] [1712656209.143376]: -------------------\n", - "[INFO] [1712656209.143746]: SOMA.Antagonist \n", - "[INFO] [1712656209.144125]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.144513]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Antagonist}\n", - "[INFO] [1712656209.144890]: Subclasses: []\n", - "[INFO] [1712656209.145340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.146104]: Instances: []\n", - "[INFO] [1712656209.146478]: Direct Instances: []\n", - "[INFO] [1712656209.146925]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712656209.147280]: -------------------\n", - "[INFO] [1712656209.147634]: SOMA.Appliance \n", - "[INFO] [1712656209.147994]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712656209.148370]: Ancestors: {SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656209.148740]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712656209.149171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.149921]: Instances: []\n", - "[INFO] [1712656209.150293]: Direct Instances: []\n", - "[INFO] [1712656209.150662]: Inverse Restrictions: []\n", - "[INFO] [1712656209.151014]: -------------------\n", - "[INFO] [1712656209.151371]: SOMA.Approaching \n", - "[INFO] [1712656209.151725]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656209.152121]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Approaching, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.152481]: Subclasses: []\n", - "[INFO] [1712656209.152914]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.153658]: Instances: []\n", - "[INFO] [1712656209.154029]: Direct Instances: []\n", - "[INFO] [1712656209.154389]: Inverse Restrictions: []\n", - "[INFO] [1712656209.154725]: -------------------\n", - "[INFO] [1712656209.155066]: SOMA.Locomotion \n", - "[INFO] [1712656209.155418]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712656209.155781]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.156159]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712656209.156614]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.157277]: Instances: []\n", - "[INFO] [1712656209.157594]: Direct Instances: []\n", - "[INFO] [1712656209.157881]: Inverse Restrictions: []\n", - "[INFO] [1712656209.158129]: -------------------\n", - "[INFO] [1712656209.158376]: SOMA.ArchiveFile \n", - "[INFO] [1712656209.158611]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712656209.158850]: Ancestors: {DUL.InformationEntity, owl.Thing, SOMA.ArchiveFile, DUL.Entity, SOMA.Digital_File, DUL.InformationRealization}\n", - "[INFO] [1712656209.159089]: Subclasses: []\n", - "[INFO] [1712656209.159393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.realizes]\n", - "[INFO] [1712656209.159901]: Instances: []\n", - "[INFO] [1712656209.160165]: Direct Instances: []\n", - "[INFO] [1712656209.160414]: Inverse Restrictions: []\n", - "[INFO] [1712656209.160644]: -------------------\n", - "[INFO] [1712656209.160893]: SOMA.ArchiveText \n", - "[INFO] [1712656209.161129]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.161365]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", - "[INFO] [1712656209.161600]: Subclasses: []\n", - "[INFO] [1712656209.161887]: Properties: [rdf-schema.isDefinedBy, DUL.expresses, rdf-schema.label, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656209.162390]: Instances: []\n", - "[INFO] [1712656209.162649]: Direct Instances: []\n", - "[INFO] [1712656209.162986]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712656209.163232]: -------------------\n", - "[INFO] [1712656209.163457]: SOMA.Digital_File \n", - "[INFO] [1712656209.163702]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712656209.163948]: Ancestors: {DUL.InformationEntity, owl.Thing, DUL.Entity, SOMA.Digital_File, DUL.InformationRealization}\n", - "[INFO] [1712656209.164196]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712656209.164482]: Properties: [SOMA.hasNameString, rdf-schema.isDefinedBy, rdf-schema.label, DUL.realizes, rdf-schema.comment]\n", - "[INFO] [1712656209.164986]: Instances: []\n", - "[INFO] [1712656209.165260]: Direct Instances: []\n", - "[INFO] [1712656209.166381]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712656209.166650]: -------------------\n", - "[INFO] [1712656209.166901]: SOMA.ArchiveFormat \n", - "[INFO] [1712656209.167146]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712656209.167395]: Ancestors: {SOMA.ArchiveFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.167635]: Subclasses: []\n", - "[INFO] [1712656209.167927]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.168458]: Instances: []\n", - "[INFO] [1712656209.168740]: Direct Instances: []\n", - "[INFO] [1712656209.169047]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712656209.169302]: -------------------\n", - "[INFO] [1712656209.169546]: SOMA.File_format \n", - "[INFO] [1712656209.169783]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656209.170025]: Ancestors: {SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.170275]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712656209.170573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.171073]: Instances: []\n", - "[INFO] [1712656209.171341]: Direct Instances: []\n", - "[INFO] [1712656209.171599]: Inverse Restrictions: []\n", - "[INFO] [1712656209.171842]: -------------------\n", - "[INFO] [1712656209.172077]: SOMA.FileConfiguration \n", - "[INFO] [1712656209.172305]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.172536]: Ancestors: {owl.Thing, SOMA.FileConfiguration}\n", - "[INFO] [1712656209.172791]: Subclasses: []\n", - "[INFO] [1712656209.173096]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.173584]: Instances: []\n", - "[INFO] [1712656209.173841]: Direct Instances: []\n", - "[INFO] [1712656209.174158]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712656209.174404]: -------------------\n", - "[INFO] [1712656209.174634]: SOMA.Structured_Text \n", - "[INFO] [1712656209.174859]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.175086]: Ancestors: {owl.Thing, SOMA.Structured_Text}\n", - "[INFO] [1712656209.175347]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712656209.175640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656209.176130]: Instances: []\n", - "[INFO] [1712656209.176392]: Direct Instances: []\n", - "[INFO] [1712656209.176834]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712656209.177082]: -------------------\n", - "[INFO] [1712656209.177314]: SOMA.AreaSurveying \n", - "[INFO] [1712656209.177543]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712656209.177783]: Ancestors: {SOMA.Perceiving, SOMA.AreaSurveying, owl.Thing}\n", - "[INFO] [1712656209.178025]: Subclasses: []\n", - "[INFO] [1712656209.178314]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.178796]: Instances: []\n", - "[INFO] [1712656209.179079]: Direct Instances: []\n", - "[INFO] [1712656209.179332]: Inverse Restrictions: []\n", - "[INFO] [1712656209.179566]: -------------------\n", - "[INFO] [1712656209.179795]: SOMA.Perceiving \n", - "[INFO] [1712656209.180024]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712656209.180251]: Ancestors: {SOMA.Perceiving, owl.Thing}\n", - "[INFO] [1712656209.180513]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712656209.180806]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.181296]: Instances: []\n", - "[INFO] [1712656209.181572]: Direct Instances: []\n", - "[INFO] [1712656209.181839]: Inverse Restrictions: []\n", - "[INFO] [1712656209.182069]: -------------------\n", - "[INFO] [1712656209.182296]: SOMA.Arm \n", - "[INFO] [1712656209.182520]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712656209.182767]: Ancestors: {SOMA.Arm, DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.183009]: Subclasses: []\n", - "[INFO] [1712656209.183295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.183768]: Instances: []\n", - "[INFO] [1712656209.184041]: Direct Instances: []\n", - "[INFO] [1712656209.184333]: Inverse Restrictions: []\n", - "[INFO] [1712656209.184567]: -------------------\n", - "[INFO] [1712656209.184803]: SOMA.Limb \n", - "[INFO] [1712656209.185047]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712656209.185292]: Ancestors: {DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.185545]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712656209.185840]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.186348]: Instances: []\n", - "[INFO] [1712656209.186616]: Direct Instances: []\n", - "[INFO] [1712656209.186932]: Inverse Restrictions: []\n", - "[INFO] [1712656209.187182]: -------------------\n", - "[INFO] [1712656209.187427]: SOMA.Arranging \n", - "[INFO] [1712656209.187666]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712656209.187917]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Arranging, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.188178]: Subclasses: []\n", - "[INFO] [1712656209.188468]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.188982]: Instances: []\n", - "[INFO] [1712656209.189261]: Direct Instances: []\n", - "[INFO] [1712656209.189507]: Inverse Restrictions: []\n", - "[INFO] [1712656209.189740]: -------------------\n", - "[INFO] [1712656209.189969]: SOMA.Constructing \n", - "[INFO] [1712656209.190197]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656209.190444]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.190699]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712656209.190995]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.191488]: Instances: []\n", - "[INFO] [1712656209.191766]: Direct Instances: []\n", - "[INFO] [1712656209.192030]: Inverse Restrictions: []\n", - "[INFO] [1712656209.192264]: -------------------\n", - "[INFO] [1712656209.192494]: SOMA.ArtificialAgent \n", - "[INFO] [1712656209.192722]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712656209.192976]: Ancestors: {DUL.PhysicalAgent, DUL.Agent, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.ArtificialAgent}\n", - "[INFO] [1712656209.193228]: Subclasses: []\n", - "[INFO] [1712656209.193518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.194018]: Instances: []\n", - "[INFO] [1712656209.194288]: Direct Instances: []\n", - "[INFO] [1712656209.194534]: Inverse Restrictions: []\n", - "[INFO] [1712656209.194762]: -------------------\n", - "[INFO] [1712656209.194986]: SOMA.Assembling \n", - "[INFO] [1712656209.195223]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712656209.195463]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Assembling}\n", - "[INFO] [1712656209.195697]: Subclasses: []\n", - "[INFO] [1712656209.195976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.196461]: Instances: []\n", - "[INFO] [1712656209.196733]: Direct Instances: []\n", - "[INFO] [1712656209.196989]: Inverse Restrictions: []\n", - "[INFO] [1712656209.197217]: -------------------\n", - "[INFO] [1712656209.197442]: SOMA.AssertionTask \n", - "[INFO] [1712656209.197682]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712656209.197932]: Ancestors: {owl.Thing, SOMA.IllocutionaryTask, SOMA.AssertionTask}\n", - "[INFO] [1712656209.198172]: Subclasses: []\n", - "[INFO] [1712656209.198458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.198932]: Instances: []\n", - "[INFO] [1712656209.199209]: Direct Instances: []\n", - "[INFO] [1712656209.199467]: Inverse Restrictions: []\n", - "[INFO] [1712656209.199700]: -------------------\n", - "[INFO] [1712656209.199926]: SOMA.DeclarativeClause \n", - "[INFO] [1712656209.200153]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712656209.200409]: Ancestors: {SOMA.DeclarativeClause, DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656209.200649]: Subclasses: []\n", - "[INFO] [1712656209.200943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.201444]: Instances: []\n", - "[INFO] [1712656209.201715]: Direct Instances: []\n", - "[INFO] [1712656209.202097]: Inverse Restrictions: []\n", - "[INFO] [1712656209.202349]: -------------------\n", - "[INFO] [1712656209.202592]: SOMA.AssumingArmPose \n", - "[INFO] [1712656209.202825]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712656209.203062]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose, SOMA.AssumingArmPose}\n", - "[INFO] [1712656209.203307]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712656209.203587]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.204097]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712656209.204365]: Direct Instances: []\n", - "[INFO] [1712656209.204622]: Inverse Restrictions: []\n", - "[INFO] [1712656209.204858]: -------------------\n", - "[INFO] [1712656209.205084]: SOMA.AssumingPose \n", - "[INFO] [1712656209.205319]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656209.205560]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose}\n", - "[INFO] [1712656209.205816]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712656209.206099]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.206609]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712656209.206878]: Direct Instances: []\n", - "[INFO] [1712656209.207134]: Inverse Restrictions: []\n", - "[INFO] [1712656209.207360]: -------------------\n", - "[INFO] [1712656209.207586]: SOMA.AttentionShift \n", - "[INFO] [1712656209.207814]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712656209.208061]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.AttentionShift, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.208310]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712656209.208593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.209100]: Instances: []\n", - "[INFO] [1712656209.209366]: Direct Instances: []\n", - "[INFO] [1712656209.209624]: Inverse Restrictions: []\n", - "[INFO] [1712656209.209856]: -------------------\n", - "[INFO] [1712656209.210082]: SOMA.MentalTask \n", - "[INFO] [1712656209.210319]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712656209.210565]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.210822]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712656209.211109]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.211604]: Instances: []\n", - "[INFO] [1712656209.211875]: Direct Instances: []\n", - "[INFO] [1712656209.212180]: Inverse Restrictions: []\n", - "[INFO] [1712656209.212417]: -------------------\n", - "[INFO] [1712656209.212646]: SOMA.AvoidedObject \n", - "[INFO] [1712656209.212876]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.213126]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.AvoidedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.213370]: Subclasses: []\n", - "[INFO] [1712656209.213655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.214128]: Instances: []\n", - "[INFO] [1712656209.214395]: Direct Instances: []\n", - "[INFO] [1712656209.214645]: Inverse Restrictions: []\n", - "[INFO] [1712656209.214877]: -------------------\n", - "[INFO] [1712656209.215101]: SOMA.Avoiding \n", - "[INFO] [1712656209.215322]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712656209.215555]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Avoiding, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.215804]: Subclasses: []\n", - "[INFO] [1712656209.216482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.216980]: Instances: []\n", - "[INFO] [1712656209.217248]: Direct Instances: []\n", - "[INFO] [1712656209.217508]: Inverse Restrictions: []\n", - "[INFO] [1712656209.217740]: -------------------\n", - "[INFO] [1712656209.217968]: SOMA.Navigating \n", - "[INFO] [1712656209.218190]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656209.218421]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.218685]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712656209.218972]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.219471]: Instances: [SOMA.navigating]\n", - "[INFO] [1712656209.219735]: Direct Instances: [SOMA.navigating]\n", - "[INFO] [1712656209.219993]: Inverse Restrictions: []\n", - "[INFO] [1712656209.220230]: -------------------\n", - "[INFO] [1712656209.220460]: SOMA.Barrier \n", - "[INFO] [1712656209.220684]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712656209.221125]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656209.221567]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712656209.221993]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.222622]: Instances: []\n", - "[INFO] [1712656209.223011]: Direct Instances: []\n", - "[INFO] [1712656209.223438]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712656209.223811]: -------------------\n", - "[INFO] [1712656209.224174]: SOMA.Restrictor \n", - "[INFO] [1712656209.224528]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712656209.224805]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656209.225080]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712656209.225385]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.225895]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656209.226152]: Direct Instances: []\n", - "[INFO] [1712656209.226497]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712656209.226751]: -------------------\n", - "[INFO] [1712656209.226992]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712656209.227225]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712656209.227461]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.227729]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712656209.228028]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712656209.228541]: Instances: []\n", - "[INFO] [1712656209.228823]: Direct Instances: []\n", - "[INFO] [1712656209.229094]: Inverse Restrictions: []\n", - "[INFO] [1712656209.229329]: -------------------\n", - "[INFO] [1712656209.229562]: SOMA.BeneficiaryRole \n", - "[INFO] [1712656209.229794]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712656209.230065]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.230351]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712656209.230651]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.231143]: Instances: []\n", - "[INFO] [1712656209.231408]: Direct Instances: []\n", - "[INFO] [1712656209.231671]: Inverse Restrictions: []\n", - "[INFO] [1712656209.231930]: -------------------\n", - "[INFO] [1712656209.232165]: SOMA.GoalRole \n", - "[INFO] [1712656209.232391]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656209.232629]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.232910]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712656209.233220]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.233721]: Instances: []\n", - "[INFO] [1712656209.233981]: Direct Instances: []\n", - "[INFO] [1712656209.234238]: Inverse Restrictions: []\n", - "[INFO] [1712656209.234481]: -------------------\n", - "[INFO] [1712656209.234721]: SOMA.CounterfactualBinding \n", - "[INFO] [1712656209.234949]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712656209.235194]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.CounterfactualBinding}\n", - "[INFO] [1712656209.235433]: Subclasses: []\n", - "[INFO] [1712656209.235740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.236231]: Instances: []\n", - "[INFO] [1712656209.236486]: Direct Instances: []\n", - "[INFO] [1712656209.236826]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712656209.237080]: -------------------\n", - "[INFO] [1712656209.237315]: SOMA.FactualBinding \n", - "[INFO] [1712656209.237548]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712656209.237798]: Ancestors: {DUL.Relation, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.FactualBinding, DUL.Entity}\n", - "[INFO] [1712656209.238040]: Subclasses: []\n", - "[INFO] [1712656209.238328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.238818]: Instances: []\n", - "[INFO] [1712656209.239091]: Direct Instances: []\n", - "[INFO] [1712656209.239418]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712656209.239658]: -------------------\n", - "[INFO] [1712656209.239886]: SOMA.RoleFillerBinding \n", - "[INFO] [1712656209.240110]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712656209.240357]: Ancestors: {DUL.Relation, DUL.Description, SOMA.RoleFillerBinding, SOMA.Binding, DUL.Object, DUL.SocialObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.240601]: Subclasses: []\n", - "[INFO] [1712656209.240910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.241405]: Instances: []\n", - "[INFO] [1712656209.241683]: Direct Instances: []\n", - "[INFO] [1712656209.241975]: Inverse Restrictions: []\n", - "[INFO] [1712656209.242209]: -------------------\n", - "[INFO] [1712656209.242443]: SOMA.RoleRoleBinding \n", - "[INFO] [1712656209.242697]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712656209.242949]: Ancestors: {DUL.Relation, SOMA.RoleRoleBinding, DUL.Description, SOMA.Binding, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.243191]: Subclasses: []\n", - "[INFO] [1712656209.243483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.243989]: Instances: []\n", - "[INFO] [1712656209.244264]: Direct Instances: []\n", - "[INFO] [1712656209.244558]: Inverse Restrictions: []\n", - "[INFO] [1712656209.244802]: -------------------\n", - "[INFO] [1712656209.245041]: SOMA.DesignedComponent \n", - "[INFO] [1712656209.245281]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712656209.245525]: Ancestors: {DUL.PhysicalBody, SOMA.DesignedComponent, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.245837]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712656209.246143]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712656209.246667]: Instances: []\n", - "[INFO] [1712656209.246971]: Direct Instances: []\n", - "[INFO] [1712656209.247245]: Inverse Restrictions: []\n", - "[INFO] [1712656209.247502]: -------------------\n", - "[INFO] [1712656209.247740]: SOMA.Blockage \n", - "[INFO] [1712656209.247977]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712656209.248220]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.248487]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712656209.248804]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.249315]: Instances: []\n", - "[INFO] [1712656209.249592]: Direct Instances: []\n", - "[INFO] [1712656209.249860]: Inverse Restrictions: []\n", - "[INFO] [1712656209.250095]: -------------------\n", - "[INFO] [1712656209.250323]: SOMA.BlockedObject \n", - "[INFO] [1712656209.250549]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.250786]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", - "[INFO] [1712656209.251051]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712656209.251345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.251842]: Instances: []\n", - "[INFO] [1712656209.252105]: Direct Instances: []\n", - "[INFO] [1712656209.252404]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712656209.252648]: -------------------\n", - "[INFO] [1712656209.252889]: SOMA.BodyMovement \n", - "[INFO] [1712656209.253140]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712656209.253399]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.253664]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712656209.253957]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.254493]: Instances: []\n", - "[INFO] [1712656209.254770]: Direct Instances: []\n", - "[INFO] [1712656209.255041]: Inverse Restrictions: []\n", - "[INFO] [1712656209.255275]: -------------------\n", - "[INFO] [1712656209.255506]: SOMA.Motion \n", - "[INFO] [1712656209.255737]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712656209.255972]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.256241]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712656209.256534]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.257074]: Instances: []\n", - "[INFO] [1712656209.257355]: Direct Instances: []\n", - "[INFO] [1712656209.257623]: Inverse Restrictions: []\n", - "[INFO] [1712656209.257859]: -------------------\n", - "[INFO] [1712656209.258093]: SOMA.Boiling \n", - "[INFO] [1712656209.258322]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712656209.258559]: Ancestors: {SOMA.Boiling, DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Vaporizing, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656209.258808]: Subclasses: []\n", - "[INFO] [1712656209.259097]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.259579]: Instances: []\n", - "[INFO] [1712656209.259834]: Direct Instances: []\n", - "[INFO] [1712656209.260081]: Inverse Restrictions: []\n", - "[INFO] [1712656209.260321]: -------------------\n", - "[INFO] [1712656209.260557]: SOMA.Vaporizing \n", - "[INFO] [1712656209.260801]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712656209.261044]: Ancestors: {DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Vaporizing, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656209.261290]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712656209.261591]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.seeAlso]\n", - "[INFO] [1712656209.262082]: Instances: []\n", - "[INFO] [1712656209.262338]: Direct Instances: []\n", - "[INFO] [1712656209.262583]: Inverse Restrictions: []\n", - "[INFO] [1712656209.262818]: -------------------\n", - "[INFO] [1712656209.263048]: SOMA.DesignedContainer \n", - "[INFO] [1712656209.263278]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712656209.263546]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656209.263860]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712656209.264175]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasDisposition]\n", - "[INFO] [1712656209.264775]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712656209.265066]: Direct Instances: []\n", - "[INFO] [1712656209.265342]: Inverse Restrictions: []\n", - "[INFO] [1712656209.265583]: -------------------\n", - "[INFO] [1712656209.265815]: SOMA.BoxShape \n", - "[INFO] [1712656209.266053]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712656209.266293]: Ancestors: {SOMA.ShapeRegion, DUL.Region, SOMA.BoxShape, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.266544]: Subclasses: []\n", - "[INFO] [1712656209.266845]: Properties: [SOMA.hasWidth, rdf-schema.isDefinedBy, rdf-schema.label, SOMA.hasHeight, rdf-schema.comment, SOMA.hasLength]\n", - "[INFO] [1712656209.267350]: Instances: []\n", - "[INFO] [1712656209.267616]: Direct Instances: []\n", - "[INFO] [1712656209.267892]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712656209.268141]: -------------------\n", - "[INFO] [1712656209.268377]: SOMA.Deposition \n", - "[INFO] [1712656209.268613]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712656209.268855]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Deposition, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.269099]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712656209.269386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.269897]: Instances: []\n", - "[INFO] [1712656209.270166]: Direct Instances: []\n", - "[INFO] [1712656209.270519]: Inverse Restrictions: []\n", - "[INFO] [1712656209.270771]: -------------------\n", - "[INFO] [1712656209.271006]: SOMA.CanCut \n", - "[INFO] [1712656209.271256]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712656209.271503]: Ancestors: {SOMA.Extrinsic, SOMA.CanCut, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.271744]: Subclasses: []\n", - "[INFO] [1712656209.272029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.272521]: Instances: []\n", - "[INFO] [1712656209.272791]: Direct Instances: []\n", - "[INFO] [1712656209.273053]: Inverse Restrictions: []\n", - "[INFO] [1712656209.273285]: -------------------\n", - "[INFO] [1712656209.273514]: SOMA.Variability \n", - "[INFO] [1712656209.273762]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712656209.274006]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.274266]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712656209.274553]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.275071]: Instances: []\n", - "[INFO] [1712656209.275335]: Direct Instances: []\n", - "[INFO] [1712656209.275598]: Inverse Restrictions: []\n", - "[INFO] [1712656209.275826]: -------------------\n", - "[INFO] [1712656209.276050]: SOMA.Cutter \n", - "[INFO] [1712656209.276280]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712656209.276527]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Cutter, DUL.Entity, SOMA.Tool}\n", - "[INFO] [1712656209.276765]: Subclasses: []\n", - "[INFO] [1712656209.277052]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.277528]: Instances: []\n", - "[INFO] [1712656209.277800]: Direct Instances: []\n", - "[INFO] [1712656209.278119]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712656209.278355]: -------------------\n", - "[INFO] [1712656209.278586]: SOMA.CutObject \n", - "[INFO] [1712656209.278820]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712656209.279073]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.CutObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.279336]: Subclasses: []\n", - "[INFO] [1712656209.279626]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.280143]: Instances: []\n", - "[INFO] [1712656209.280449]: Direct Instances: []\n", - "[INFO] [1712656209.280792]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712656209.281049]: -------------------\n", - "[INFO] [1712656209.281285]: SOMA.Capability \n", - "[INFO] [1712656209.281533]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712656209.281786]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Capability, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.282062]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712656209.282361]: Properties: [DUL.isDescribedBy, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656209.282847]: Instances: []\n", - "[INFO] [1712656209.283102]: Direct Instances: []\n", - "[INFO] [1712656209.283362]: Inverse Restrictions: []\n", - "[INFO] [1712656209.283600]: -------------------\n", - "[INFO] [1712656209.283833]: SOMA.Capacity \n", - "[INFO] [1712656209.284062]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656209.284304]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Capacity, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.284541]: Subclasses: []\n", - "[INFO] [1712656209.284849]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.285356]: Instances: []\n", - "[INFO] [1712656209.285622]: Direct Instances: []\n", - "[INFO] [1712656209.285914]: Inverse Restrictions: []\n", - "[INFO] [1712656209.286168]: -------------------\n", - "[INFO] [1712656209.286545]: SOMA.Intrinsic \n", - "[INFO] [1712656209.286902]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712656209.287261]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.287652]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712656209.288066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.288710]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712656209.289113]: Direct Instances: []\n", - "[INFO] [1712656209.289408]: Inverse Restrictions: []\n", - "[INFO] [1712656209.289661]: -------------------\n", - "[INFO] [1712656209.289903]: SOMA.Catching \n", - "[INFO] [1712656209.290135]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.290519]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Catching, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.290892]: Subclasses: []\n", - "[INFO] [1712656209.291307]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.291918]: Instances: []\n", - "[INFO] [1712656209.292319]: Direct Instances: []\n", - "[INFO] [1712656209.292611]: Inverse Restrictions: []\n", - "[INFO] [1712656209.292870]: -------------------\n", - "[INFO] [1712656209.293114]: SOMA.PickingUp \n", - "[INFO] [1712656209.293349]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656209.293602]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PickingUp}\n", - "[INFO] [1712656209.293854]: Subclasses: []\n", - "[INFO] [1712656209.294160]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.294651]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712656209.294909]: Direct Instances: [SOMA.picking_up]\n", - "[INFO] [1712656209.295172]: Inverse Restrictions: []\n", - "[INFO] [1712656209.295411]: -------------------\n", - "[INFO] [1712656209.295647]: SOMA.CausalEventRole \n", - "[INFO] [1712656209.295885]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712656209.296125]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.CausalEventRole, DUL.Entity}\n", - "[INFO] [1712656209.296376]: Subclasses: []\n", - "[INFO] [1712656209.296676]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.297212]: Instances: []\n", - "[INFO] [1712656209.297492]: Direct Instances: []\n", - "[INFO] [1712656209.297785]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656209.298033]: -------------------\n", - "[INFO] [1712656209.298276]: SOMA.EventAdjacentRole \n", - "[INFO] [1712656209.298522]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712656209.298769]: Ancestors: {DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.299033]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712656209.299324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.299985]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656209.300264]: Direct Instances: []\n", - "[INFO] [1712656209.300530]: Inverse Restrictions: []\n", - "[INFO] [1712656209.300779]: -------------------\n", - "[INFO] [1712656209.301030]: SOMA.CausedMotionTheory \n", - "[INFO] [1712656209.301284]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712656209.301536]: Ancestors: {SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.301778]: Subclasses: []\n", - "[INFO] [1712656209.302072]: Properties: [rdf-schema.isDefinedBy, DUL.defines, rdf-schema.label, rdf-schema.comment, DUL.hasPart]\n", - "[INFO] [1712656209.302577]: Instances: []\n", - "[INFO] [1712656209.302839]: Direct Instances: []\n", - "[INFO] [1712656209.303094]: Inverse Restrictions: []\n", - "[INFO] [1712656209.303328]: -------------------\n", - "[INFO] [1712656209.303572]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712656209.303821]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712656209.304065]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.304321]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712656209.304623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.305134]: Instances: []\n", - "[INFO] [1712656209.305391]: Direct Instances: []\n", - "[INFO] [1712656209.305711]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", - "[INFO] [1712656209.305962]: -------------------\n", - "[INFO] [1712656209.306198]: SOMA.PerformerRole \n", - "[INFO] [1712656209.306435]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712656209.306680]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", - "[INFO] [1712656209.306938]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712656209.307230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.307723]: Instances: []\n", - "[INFO] [1712656209.307972]: Direct Instances: []\n", - "[INFO] [1712656209.308280]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656209.308534]: -------------------\n", - "[INFO] [1712656209.308780]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712656209.309025]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712656209.309272]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.SourcePathGoalTheory}\n", - "[INFO] [1712656209.309524]: Subclasses: []\n", - "[INFO] [1712656209.309820]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656209.310337]: Instances: []\n", - "[INFO] [1712656209.310608]: Direct Instances: []\n", - "[INFO] [1712656209.310895]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712656209.311141]: -------------------\n", - "[INFO] [1712656209.311376]: SOMA.RoomSurface \n", - "[INFO] [1712656209.311606]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712656209.311856]: Ancestors: {SOMA.RoomSurface, SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalPlace, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656209.312105]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712656209.312396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.312892]: Instances: []\n", - "[INFO] [1712656209.313171]: Direct Instances: []\n", - "[INFO] [1712656209.313473]: Inverse Restrictions: []\n", - "[INFO] [1712656209.313730]: -------------------\n", - "[INFO] [1712656209.313979]: SOMA.Channel \n", - "[INFO] [1712656209.314222]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712656209.314491]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.Channel, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.PathRole, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.314742]: Subclasses: []\n", - "[INFO] [1712656209.315032]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.315517]: Instances: []\n", - "[INFO] [1712656209.315785]: Direct Instances: []\n", - "[INFO] [1712656209.316095]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656209.316339]: -------------------\n", - "[INFO] [1712656209.316573]: SOMA.PathRole \n", - "[INFO] [1712656209.316810]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712656209.317055]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.PathRole, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.317314]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712656209.317610]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.318100]: Instances: []\n", - "[INFO] [1712656209.318367]: Direct Instances: []\n", - "[INFO] [1712656209.318657]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712656209.318897]: -------------------\n", - "[INFO] [1712656209.319126]: SOMA.CommunicationTask \n", - "[INFO] [1712656209.319375]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712656209.319637]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.319891]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712656209.320183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.isTaskOf]\n", - "[INFO] [1712656209.320683]: Instances: []\n", - "[INFO] [1712656209.320958]: Direct Instances: []\n", - "[INFO] [1712656209.321461]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", - "[INFO] [1712656209.321724]: -------------------\n", - "[INFO] [1712656209.321962]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712656209.322208]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712656209.322455]: Ancestors: {SOMA.Perceiving, SOMA.CheckingObjectPresence, owl.Thing}\n", - "[INFO] [1712656209.322698]: Subclasses: []\n", - "[INFO] [1712656209.322980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.323470]: Instances: []\n", - "[INFO] [1712656209.323727]: Direct Instances: []\n", - "[INFO] [1712656209.323975]: Inverse Restrictions: []\n", - "[INFO] [1712656209.324205]: -------------------\n", - "[INFO] [1712656209.324433]: SOMA.ChemicalProcess \n", - "[INFO] [1712656209.324658]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712656209.324913]: Ancestors: {DUL.Process, owl.Thing, SOMA.ChemicalProcess, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656209.325154]: Subclasses: []\n", - "[INFO] [1712656209.325439]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.325922]: Instances: []\n", - "[INFO] [1712656209.326199]: Direct Instances: []\n", - "[INFO] [1712656209.326450]: Inverse Restrictions: []\n", - "[INFO] [1712656209.326684]: -------------------\n", - "[INFO] [1712656209.326914]: SOMA.Choice \n", - "[INFO] [1712656209.327141]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712656209.327393]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.Choice, SOMA.EventAdjacentRole, DUL.Object, SOMA.ResultRole, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.327665]: Subclasses: []\n", - "[INFO] [1712656209.327950]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.328430]: Instances: []\n", - "[INFO] [1712656209.328699]: Direct Instances: []\n", - "[INFO] [1712656209.328957]: Inverse Restrictions: []\n", - "[INFO] [1712656209.329193]: -------------------\n", - "[INFO] [1712656209.329424]: SOMA.ResultRole \n", - "[INFO] [1712656209.329651]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712656209.329903]: Ancestors: {DUL.Concept, SOMA.GoalRole, SOMA.EventAdjacentRole, DUL.Object, SOMA.ResultRole, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.330185]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712656209.330492]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.330985]: Instances: []\n", - "[INFO] [1712656209.331253]: Direct Instances: []\n", - "[INFO] [1712656209.331526]: Inverse Restrictions: []\n", - "[INFO] [1712656209.331770]: -------------------\n", - "[INFO] [1712656209.332005]: SOMA.CircularCylinder \n", - "[INFO] [1712656209.332251]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712656209.332507]: Ancestors: {SOMA.CircularCylinder, SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.332751]: Subclasses: []\n", - "[INFO] [1712656209.333048]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712656209.333530]: Instances: []\n", - "[INFO] [1712656209.333807]: Direct Instances: []\n", - "[INFO] [1712656209.334060]: Inverse Restrictions: []\n", - "[INFO] [1712656209.334298]: -------------------\n", - "[INFO] [1712656209.334530]: SOMA.CylinderShape \n", - "[INFO] [1712656209.334771]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712656209.335026]: Ancestors: {SOMA.ShapeRegion, SOMA.CylinderShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.335278]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712656209.335568]: Properties: [SOMA.hasRadius, rdf-schema.isDefinedBy, rdf-schema.label, rdf-schema.comment, SOMA.hasLength]\n", - "[INFO] [1712656209.336055]: Instances: []\n", - "[INFO] [1712656209.336329]: Direct Instances: []\n", - "[INFO] [1712656209.336586]: Inverse Restrictions: []\n", - "[INFO] [1712656209.336826]: -------------------\n", - "[INFO] [1712656209.337063]: SOMA.Classifier \n", - "[INFO] [1712656209.337294]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712656209.337545]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Classifier, DUL.Entity, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.337797]: Subclasses: []\n", - "[INFO] [1712656209.338086]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656209.338573]: Instances: []\n", - "[INFO] [1712656209.338831]: Direct Instances: []\n", - "[INFO] [1712656209.339085]: Inverse Restrictions: []\n", - "[INFO] [1712656209.339320]: -------------------\n", - "[INFO] [1712656209.339556]: SOMA.StatisticalReasoner \n", - "[INFO] [1712656209.339786]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712656209.340030]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.StatisticalReasoner, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.340373]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712656209.340712]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656209.341230]: Instances: []\n", - "[INFO] [1712656209.341507]: Direct Instances: []\n", - "[INFO] [1712656209.341774]: Inverse Restrictions: []\n", - "[INFO] [1712656209.342283]: -------------------\n", - "[INFO] [1712656209.342614]: SOMA.ClausalObject \n", - "[INFO] [1712656209.342856]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712656209.343105]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656209.343364]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712656209.343756]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.344308]: Instances: []\n", - "[INFO] [1712656209.344593]: Direct Instances: []\n", - "[INFO] [1712656209.344878]: Inverse Restrictions: []\n", - "[INFO] [1712656209.345127]: -------------------\n", - "[INFO] [1712656209.345372]: SOMA.Phrase \n", - "[INFO] [1712656209.345620]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712656209.345961]: Ancestors: {DUL.InformationEntity, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656209.346272]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712656209.346591]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656209.347108]: Instances: []\n", - "[INFO] [1712656209.347387]: Direct Instances: []\n", - "[INFO] [1712656209.347649]: Inverse Restrictions: []\n", - "[INFO] [1712656209.347884]: -------------------\n", - "[INFO] [1712656209.348121]: SOMA.Clean \n", - "[INFO] [1712656209.348368]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712656209.348614]: Ancestors: {SOMA.Clean, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", - "[INFO] [1712656209.348933]: Subclasses: []\n", - "[INFO] [1712656209.349286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.349805]: Instances: []\n", - "[INFO] [1712656209.350090]: Direct Instances: []\n", - "[INFO] [1712656209.350425]: Inverse Restrictions: []\n", - "[INFO] [1712656209.350670]: -------------------\n", - "[INFO] [1712656209.350906]: SOMA.CleanlinessRegion \n", - "[INFO] [1712656209.351136]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656209.351371]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", - "[INFO] [1712656209.351637]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712656209.351935]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.352419]: Instances: []\n", - "[INFO] [1712656209.352680]: Direct Instances: []\n", - "[INFO] [1712656209.353005]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712656209.353262]: -------------------\n", - "[INFO] [1712656209.353502]: SOMA.Cleaning \n", - "[INFO] [1712656209.353740]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712656209.353983]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Cleaning, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656209.354218]: Subclasses: []\n", - "[INFO] [1712656209.354511]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656209.355004]: Instances: []\n", - "[INFO] [1712656209.355258]: Direct Instances: []\n", - "[INFO] [1712656209.355500]: Inverse Restrictions: []\n", - "[INFO] [1712656209.355729]: -------------------\n", - "[INFO] [1712656209.355958]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712656209.356194]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656209.356436]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656209.356693]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712656209.356999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.357552]: Instances: []\n", - "[INFO] [1712656209.357844]: Direct Instances: []\n", - "[INFO] [1712656209.358124]: Inverse Restrictions: []\n", - "[INFO] [1712656209.358356]: -------------------\n", - "[INFO] [1712656209.358585]: SOMA.Purification \n", - "[INFO] [1712656209.358840]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712656209.359084]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition, SOMA.Purification}\n", - "[INFO] [1712656209.359324]: Subclasses: []\n", - "[INFO] [1712656209.359607]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.360083]: Instances: []\n", - "[INFO] [1712656209.360355]: Direct Instances: []\n", - "[INFO] [1712656209.360647]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712656209.360891]: -------------------\n", - "[INFO] [1712656209.361122]: SOMA.Cleanliness \n", - "[INFO] [1712656209.361354]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712656209.361587]: Ancestors: {DUL.Quality, SOMA.SocialQuality, SOMA.Cleanliness, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.361836]: Subclasses: []\n", - "[INFO] [1712656209.362126]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712656209.362605]: Instances: []\n", - "[INFO] [1712656209.362877]: Direct Instances: []\n", - "[INFO] [1712656209.363203]: Inverse Restrictions: []\n", - "[INFO] [1712656209.363437]: -------------------\n", - "[INFO] [1712656209.363665]: SOMA.SocialQuality \n", - "[INFO] [1712656209.363890]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712656209.364220]: Ancestors: {SOMA.SocialQuality, DUL.Entity, DUL.Quality, owl.Thing}\n", - "[INFO] [1712656209.364514]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712656209.364836]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.365346]: Instances: []\n", - "[INFO] [1712656209.365613]: Direct Instances: []\n", - "[INFO] [1712656209.365883]: Inverse Restrictions: []\n", - "[INFO] [1712656209.366119]: -------------------\n", - "[INFO] [1712656209.366348]: SOMA.Client-Server_Specification \n", - "[INFO] [1712656209.366586]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712656209.366830]: Ancestors: {DUL.Design, SOMA.Client-Server_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.367084]: Subclasses: []\n", - "[INFO] [1712656209.367394]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", - "[INFO] [1712656209.367887]: Instances: []\n", - "[INFO] [1712656209.368155]: Direct Instances: []\n", - "[INFO] [1712656209.368476]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712656209.368733]: -------------------\n", - "[INFO] [1712656209.368981]: SOMA.ClientRole \n", - "[INFO] [1712656209.369220]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712656209.369462]: Ancestors: {DUL.Concept, SOMA.ClientRole, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.369708]: Subclasses: []\n", - "[INFO] [1712656209.370003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", - "[INFO] [1712656209.370482]: Instances: []\n", - "[INFO] [1712656209.370741]: Direct Instances: []\n", - "[INFO] [1712656209.371039]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712656209.371291]: -------------------\n", - "[INFO] [1712656209.371530]: SOMA.ServerRole \n", - "[INFO] [1712656209.371764]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712656209.372005]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ServerRole, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.372239]: Subclasses: []\n", - "[INFO] [1712656209.372540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", - "[INFO] [1712656209.373037]: Instances: []\n", - "[INFO] [1712656209.373298]: Direct Instances: []\n", - "[INFO] [1712656209.373607]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712656209.373847]: -------------------\n", - "[INFO] [1712656209.374091]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712656209.374326]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656209.374566]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.374820]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712656209.375113]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656209.375631]: Instances: []\n", - "[INFO] [1712656209.375897]: Direct Instances: []\n", - "[INFO] [1712656209.376163]: Inverse Restrictions: []\n", - "[INFO] [1712656209.376395]: -------------------\n", - "[INFO] [1712656209.376625]: SOMA.Closing \n", - "[INFO] [1712656209.376872]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.377119]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Closing, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.377359]: Subclasses: []\n", - "[INFO] [1712656209.377652]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.378158]: Instances: []\n", - "[INFO] [1712656209.378443]: Direct Instances: []\n", - "[INFO] [1712656209.378705]: Inverse Restrictions: []\n", - "[INFO] [1712656209.378953]: -------------------\n", - "[INFO] [1712656209.379192]: SOMA.Delivering \n", - "[INFO] [1712656209.379438]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712656209.379690]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Delivering, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.379942]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712656209.380244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656209.380730]: Instances: []\n", - "[INFO] [1712656209.381008]: Direct Instances: []\n", - "[INFO] [1712656209.381274]: Inverse Restrictions: []\n", - "[INFO] [1712656209.381510]: -------------------\n", - "[INFO] [1712656209.381747]: SOMA.Fetching \n", - "[INFO] [1712656209.381975]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712656209.382229]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Fetching, DUL.EventType, SOMA.PhysicalAcquiring, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656209.382479]: Subclasses: []\n", - "[INFO] [1712656209.382780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.383275]: Instances: []\n", - "[INFO] [1712656209.383550]: Direct Instances: []\n", - "[INFO] [1712656209.383817]: Inverse Restrictions: []\n", - "[INFO] [1712656209.384060]: -------------------\n", - "[INFO] [1712656209.384308]: SOMA.Lifting \n", - "[INFO] [1712656209.384542]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.384786]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Lifting, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.385054]: Subclasses: []\n", - "[INFO] [1712656209.385365]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.385850]: Instances: []\n", - "[INFO] [1712656209.386110]: Direct Instances: []\n", - "[INFO] [1712656209.386373]: Inverse Restrictions: []\n", - "[INFO] [1712656209.386607]: -------------------\n", - "[INFO] [1712656209.386835]: SOMA.Opening \n", - "[INFO] [1712656209.387059]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.387296]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Opening}\n", - "[INFO] [1712656209.387547]: Subclasses: []\n", - "[INFO] [1712656209.387844]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.388330]: Instances: []\n", - "[INFO] [1712656209.388591]: Direct Instances: []\n", - "[INFO] [1712656209.388865]: Inverse Restrictions: []\n", - "[INFO] [1712656209.389102]: -------------------\n", - "[INFO] [1712656209.389329]: SOMA.Pulling \n", - "[INFO] [1712656209.389557]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.389806]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Pulling, SOMA.Actuating}\n", - "[INFO] [1712656209.390050]: Subclasses: []\n", - "[INFO] [1712656209.390352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.390844]: Instances: []\n", - "[INFO] [1712656209.391122]: Direct Instances: []\n", - "[INFO] [1712656209.391385]: Inverse Restrictions: []\n", - "[INFO] [1712656209.391617]: -------------------\n", - "[INFO] [1712656209.391844]: SOMA.Pushing \n", - "[INFO] [1712656209.392075]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.392317]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.392578]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712656209.392885]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.393372]: Instances: []\n", - "[INFO] [1712656209.393624]: Direct Instances: []\n", - "[INFO] [1712656209.393886]: Inverse Restrictions: []\n", - "[INFO] [1712656209.394126]: -------------------\n", - "[INFO] [1712656209.394360]: SOMA.Squeezing \n", - "[INFO] [1712656209.394587]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.394823]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Squeezing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.395065]: Subclasses: []\n", - "[INFO] [1712656209.395359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.395848]: Instances: []\n", - "[INFO] [1712656209.396097]: Direct Instances: []\n", - "[INFO] [1712656209.396357]: Inverse Restrictions: []\n", - "[INFO] [1712656209.396599]: -------------------\n", - "[INFO] [1712656209.396844]: SOMA.Linkage \n", - "[INFO] [1712656209.397083]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712656209.397324]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Linkage, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.397568]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712656209.397850]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.398351]: Instances: []\n", - "[INFO] [1712656209.398620]: Direct Instances: []\n", - "[INFO] [1712656209.398874]: Inverse Restrictions: []\n", - "[INFO] [1712656209.399112]: -------------------\n", - "[INFO] [1712656209.399345]: SOMA.Clumsiness \n", - "[INFO] [1712656209.399587]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712656209.399837]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Clumsiness, DUL.Diagnosis}\n", - "[INFO] [1712656209.400078]: Subclasses: []\n", - "[INFO] [1712656209.400361]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.400865]: Instances: []\n", - "[INFO] [1712656209.401134]: Direct Instances: []\n", - "[INFO] [1712656209.401384]: Inverse Restrictions: []\n", - "[INFO] [1712656209.401618]: -------------------\n", - "[INFO] [1712656209.401849]: SOMA.CognitiveAgent \n", - "[INFO] [1712656209.402089]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712656209.402327]: Ancestors: {DUL.Agent, SOMA.CognitiveAgent, DUL.Object, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.402563]: Subclasses: []\n", - "[INFO] [1712656209.402855]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.403356]: Instances: []\n", - "[INFO] [1712656209.403616]: Direct Instances: []\n", - "[INFO] [1712656209.403862]: Inverse Restrictions: []\n", - "[INFO] [1712656209.404091]: -------------------\n", - "[INFO] [1712656209.404321]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712656209.404563]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712656209.404814]: Ancestors: {SOMA.SubCognitiveAgent, DUL.Agent, DUL.Object, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.405055]: Subclasses: []\n", - "[INFO] [1712656209.405349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.405850]: Instances: []\n", - "[INFO] [1712656209.406110]: Direct Instances: []\n", - "[INFO] [1712656209.406371]: Inverse Restrictions: []\n", - "[INFO] [1712656209.406601]: -------------------\n", - "[INFO] [1712656209.406830]: SOMA.Collision \n", - "[INFO] [1712656209.407064]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712656209.407310]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType, SOMA.Collision}\n", - "[INFO] [1712656209.407549]: Subclasses: []\n", - "[INFO] [1712656209.407832]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.408333]: Instances: []\n", - "[INFO] [1712656209.408593]: Direct Instances: []\n", - "[INFO] [1712656209.408848]: Inverse Restrictions: []\n", - "[INFO] [1712656209.409082]: -------------------\n", - "[INFO] [1712656209.409310]: SOMA.Extrinsic \n", - "[INFO] [1712656209.409535]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712656209.409780]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.410042]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712656209.410340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.410879]: Instances: []\n", - "[INFO] [1712656209.411157]: Direct Instances: []\n", - "[INFO] [1712656209.411422]: Inverse Restrictions: []\n", - "[INFO] [1712656209.411659]: -------------------\n", - "[INFO] [1712656209.411890]: SOMA.ImperativeClause \n", - "[INFO] [1712656209.412127]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712656209.412383]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, SOMA.ImperativeClause, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656209.412635]: Subclasses: []\n", - "[INFO] [1712656209.412946]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.expresses, rdf-schema.label]\n", - "[INFO] [1712656209.413435]: Instances: []\n", - "[INFO] [1712656209.413695]: Direct Instances: []\n", - "[INFO] [1712656209.413999]: Inverse Restrictions: []\n", - "[INFO] [1712656209.414240]: -------------------\n", - "[INFO] [1712656209.414473]: SOMA.CommitedObject \n", - "[INFO] [1712656209.414701]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712656209.414945]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.CommitedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.415197]: Subclasses: []\n", - "[INFO] [1712656209.415491]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.415974]: Instances: []\n", - "[INFO] [1712656209.416237]: Direct Instances: []\n", - "[INFO] [1712656209.416493]: Inverse Restrictions: []\n", - "[INFO] [1712656209.416724]: -------------------\n", - "[INFO] [1712656209.416956]: SOMA.ConnectedObject \n", - "[INFO] [1712656209.417179]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.417414]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.417968]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712656209.418482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.418987]: Instances: []\n", - "[INFO] [1712656209.419279]: Direct Instances: []\n", - "[INFO] [1712656209.419643]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712656209.419895]: -------------------\n", - "[INFO] [1712656209.420131]: SOMA.CommunicationAction \n", - "[INFO] [1712656209.420367]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712656209.420611]: Ancestors: {SOMA.CommunicationAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656209.420871]: Subclasses: []\n", - "[INFO] [1712656209.421172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656209.421664]: Instances: []\n", - "[INFO] [1712656209.421930]: Direct Instances: []\n", - "[INFO] [1712656209.422222]: Inverse Restrictions: []\n", - "[INFO] [1712656209.422475]: -------------------\n", - "[INFO] [1712656209.422722]: SOMA.LinguisticObject \n", - "[INFO] [1712656209.422959]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712656209.423198]: Ancestors: {DUL.InformationEntity, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656209.423455]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712656209.423745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656209.424235]: Instances: []\n", - "[INFO] [1712656209.424514]: Direct Instances: []\n", - "[INFO] [1712656209.424812]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712656209.425057]: -------------------\n", - "[INFO] [1712656209.425292]: SOMA.CommunicationReport \n", - "[INFO] [1712656209.425519]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656209.425759]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.426022]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712656209.426315]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.426806]: Instances: []\n", - "[INFO] [1712656209.427069]: Direct Instances: []\n", - "[INFO] [1712656209.427336]: Inverse Restrictions: []\n", - "[INFO] [1712656209.427570]: -------------------\n", - "[INFO] [1712656209.427802]: SOMA.Receiver \n", - "[INFO] [1712656209.428035]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712656209.428275]: Ancestors: {DUL.Concept, SOMA.ExperiencerRole, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Receiver, SOMA.PerformerRole}\n", - "[INFO] [1712656209.428528]: Subclasses: []\n", - "[INFO] [1712656209.428826]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.429315]: Instances: []\n", - "[INFO] [1712656209.429571]: Direct Instances: []\n", - "[INFO] [1712656209.429888]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656209.430138]: -------------------\n", - "[INFO] [1712656209.430378]: SOMA.Sender \n", - "[INFO] [1712656209.430613]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712656209.430852]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.Sender, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", - "[INFO] [1712656209.431087]: Subclasses: []\n", - "[INFO] [1712656209.431380]: Properties: [rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.431875]: Instances: []\n", - "[INFO] [1712656209.432144]: Direct Instances: []\n", - "[INFO] [1712656209.432466]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656209.432705]: -------------------\n", - "[INFO] [1712656209.433128]: SOMA.CommunicationTopic \n", - "[INFO] [1712656209.433457]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712656209.433736]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.434007]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656209.434311]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.434828]: Instances: []\n", - "[INFO] [1712656209.435100]: Direct Instances: []\n", - "[INFO] [1712656209.435363]: Inverse Restrictions: []\n", - "[INFO] [1712656209.435601]: -------------------\n", - "[INFO] [1712656209.435833]: SOMA.ResourceRole \n", - "[INFO] [1712656209.436061]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656209.436295]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.436561]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712656209.436855]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.437415]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656209.437686]: Direct Instances: []\n", - "[INFO] [1712656209.437954]: Inverse Restrictions: []\n", - "[INFO] [1712656209.438185]: -------------------\n", - "[INFO] [1712656209.438411]: SOMA.Composing \n", - "[INFO] [1712656209.438637]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712656209.438874]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Composing, SOMA.Disposition}\n", - "[INFO] [1712656209.439121]: Subclasses: []\n", - "[INFO] [1712656209.439414]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.439902]: Instances: []\n", - "[INFO] [1712656209.440179]: Direct Instances: []\n", - "[INFO] [1712656209.440472]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712656209.440710]: -------------------\n", - "[INFO] [1712656209.440943]: SOMA.Computer_Language \n", - "[INFO] [1712656209.441171]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712656209.441412]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.441679]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712656209.441968]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.442465]: Instances: []\n", - "[INFO] [1712656209.442740]: Direct Instances: []\n", - "[INFO] [1712656209.443002]: Inverse Restrictions: []\n", - "[INFO] [1712656209.443232]: -------------------\n", - "[INFO] [1712656209.443459]: SOMA.FormalLanguage \n", - "[INFO] [1712656209.443688]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712656209.443942]: Ancestors: {SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.444195]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656209.444481]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.444982]: Instances: []\n", - "[INFO] [1712656209.445257]: Direct Instances: []\n", - "[INFO] [1712656209.445576]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712656209.445814]: -------------------\n", - "[INFO] [1712656209.446046]: SOMA.Computer_Program \n", - "[INFO] [1712656209.446274]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.446502]: Ancestors: {SOMA.Computer_Program, owl.Thing}\n", - "[INFO] [1712656209.446810]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712656209.447145]: Properties: [rdf-schema.isDefinedBy, DUL.expresses, rdf-schema.label, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656209.447652]: Instances: []\n", - "[INFO] [1712656209.447926]: Direct Instances: []\n", - "[INFO] [1712656209.448294]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712656209.448538]: -------------------\n", - "[INFO] [1712656209.448776]: SOMA.Programming_Language \n", - "[INFO] [1712656209.449040]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712656209.449296]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, SOMA.Programming_Language, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.449547]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712656209.449855]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.450351]: Instances: []\n", - "[INFO] [1712656209.450611]: Direct Instances: []\n", - "[INFO] [1712656209.450918]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712656209.451171]: -------------------\n", - "[INFO] [1712656209.451409]: SOMA.Conclusion \n", - "[INFO] [1712656209.451642]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712656209.451886]: Ancestors: {DUL.Concept, SOMA.Conclusion, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.CreatedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.452122]: Subclasses: []\n", - "[INFO] [1712656209.452419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.452914]: Instances: []\n", - "[INFO] [1712656209.453198]: Direct Instances: []\n", - "[INFO] [1712656209.453522]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656209.453764]: -------------------\n", - "[INFO] [1712656209.454001]: SOMA.CreatedObject \n", - "[INFO] [1712656209.454229]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.454468]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.CreatedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.454726]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712656209.455022]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.455511]: Instances: []\n", - "[INFO] [1712656209.455773]: Direct Instances: []\n", - "[INFO] [1712656209.456074]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712656209.456313]: -------------------\n", - "[INFO] [1712656209.456542]: SOMA.Knowledge \n", - "[INFO] [1712656209.456771]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712656209.457009]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.457278]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712656209.457566]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712656209.458059]: Instances: []\n", - "[INFO] [1712656209.458332]: Direct Instances: []\n", - "[INFO] [1712656209.458768]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712656209.459016]: -------------------\n", - "[INFO] [1712656209.459252]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712656209.459485]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712656209.459723]: Ancestors: {DUL.Relation, DUL.Description, DUL.Object, owl.Thing, SOMA.Succedence, DUL.SocialObject, DUL.Entity, SOMA.ConditionalSuccedence}\n", - "[INFO] [1712656209.459975]: Subclasses: []\n", - "[INFO] [1712656209.460270]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.460759]: Instances: []\n", - "[INFO] [1712656209.461031]: Direct Instances: []\n", - "[INFO] [1712656209.461272]: Inverse Restrictions: []\n", - "[INFO] [1712656209.461504]: -------------------\n", - "[INFO] [1712656209.461738]: SOMA.Configuration \n", - "[INFO] [1712656209.461972]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712656209.462209]: Ancestors: {SOMA.Configuration, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.462443]: Subclasses: []\n", - "[INFO] [1712656209.462739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.describes]\n", - "[INFO] [1712656209.463226]: Instances: []\n", - "[INFO] [1712656209.463531]: Direct Instances: []\n", - "[INFO] [1712656209.463808]: Inverse Restrictions: []\n", - "[INFO] [1712656209.464055]: -------------------\n", - "[INFO] [1712656209.464294]: SOMA.Connectivity \n", - "[INFO] [1712656209.464530]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712656209.464777]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Connectivity, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.465051]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712656209.465350]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.465845]: Instances: []\n", - "[INFO] [1712656209.466103]: Direct Instances: []\n", - "[INFO] [1712656209.466411]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712656209.466673]: -------------------\n", - "[INFO] [1712656209.466916]: SOMA.ContactState \n", - "[INFO] [1712656209.467160]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712656209.467400]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ContactState, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656209.467638]: Subclasses: []\n", - "[INFO] [1712656209.467923]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.468424]: Instances: []\n", - "[INFO] [1712656209.468683]: Direct Instances: []\n", - "[INFO] [1712656209.468940]: Inverse Restrictions: []\n", - "[INFO] [1712656209.469179]: -------------------\n", - "[INFO] [1712656209.469408]: SOMA.Container \n", - "[INFO] [1712656209.469642]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712656209.469892]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.Container, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656209.470143]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", - "[INFO] [1712656209.470430]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.470925]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656209.471201]: Direct Instances: []\n", - "[INFO] [1712656209.471544]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712656209.471788]: -------------------\n", - "[INFO] [1712656209.472020]: SOMA.Containment \n", - "[INFO] [1712656209.472260]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712656209.472513]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.472772]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712656209.473070]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.473561]: Instances: []\n", - "[INFO] [1712656209.473837]: Direct Instances: []\n", - "[INFO] [1712656209.474228]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712656209.474473]: -------------------\n", - "[INFO] [1712656209.474706]: SOMA.IncludedObject \n", - "[INFO] [1712656209.474935]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.475184]: Ancestors: {DUL.Concept, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.475441]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712656209.475732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.476227]: Instances: []\n", - "[INFO] [1712656209.476499]: Direct Instances: []\n", - "[INFO] [1712656209.476799]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712656209.477192]: -------------------\n", - "[INFO] [1712656209.477559]: SOMA.ContainmentState \n", - "[INFO] [1712656209.477917]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712656209.478281]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity, SOMA.ContainmentState}\n", - "[INFO] [1712656209.478656]: Subclasses: []\n", - "[INFO] [1712656209.479071]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.479682]: Instances: []\n", - "[INFO] [1712656209.480114]: Direct Instances: []\n", - "[INFO] [1712656209.480516]: Inverse Restrictions: []\n", - "[INFO] [1712656209.480890]: -------------------\n", - "[INFO] [1712656209.481155]: SOMA.FunctionalControl \n", - "[INFO] [1712656209.481401]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712656209.481662]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656209.481927]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712656209.482227]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.482716]: Instances: []\n", - "[INFO] [1712656209.482994]: Direct Instances: []\n", - "[INFO] [1712656209.483258]: Inverse Restrictions: []\n", - "[INFO] [1712656209.483489]: -------------------\n", - "[INFO] [1712656209.483717]: SOMA.ContainmentTheory \n", - "[INFO] [1712656209.483943]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712656209.484226]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.ContainmentTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", - "[INFO] [1712656209.484493]: Subclasses: []\n", - "[INFO] [1712656209.484797]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.485305]: Instances: []\n", - "[INFO] [1712656209.485574]: Direct Instances: []\n", - "[INFO] [1712656209.485820]: Inverse Restrictions: []\n", - "[INFO] [1712656209.486049]: -------------------\n", - "[INFO] [1712656209.486274]: SOMA.ControlTheory \n", - "[INFO] [1712656209.486496]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712656209.486744]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", - "[INFO] [1712656209.487002]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712656209.487288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.487779]: Instances: []\n", - "[INFO] [1712656209.488053]: Direct Instances: []\n", - "[INFO] [1712656209.488314]: Inverse Restrictions: []\n", - "[INFO] [1712656209.488548]: -------------------\n", - "[INFO] [1712656209.488781]: SOMA.ContinuousJoint \n", - "[INFO] [1712656209.489010]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712656209.489249]: Ancestors: {SOMA.HingeJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.ContinuousJoint}\n", - "[INFO] [1712656209.489520]: Subclasses: []\n", - "[INFO] [1712656209.489821]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.490317]: Instances: []\n", - "[INFO] [1712656209.490584]: Direct Instances: []\n", - "[INFO] [1712656209.490825]: Inverse Restrictions: []\n", - "[INFO] [1712656209.491061]: -------------------\n", - "[INFO] [1712656209.491289]: SOMA.HingeJoint \n", - "[INFO] [1712656209.491513]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712656209.491742]: Ancestors: {SOMA.HingeJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656209.491985]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712656209.492278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.492794]: Instances: []\n", - "[INFO] [1712656209.493079]: Direct Instances: []\n", - "[INFO] [1712656209.493340]: Inverse Restrictions: []\n", - "[INFO] [1712656209.493578]: -------------------\n", - "[INFO] [1712656209.493811]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712656209.494066]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712656209.494314]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", - "[INFO] [1712656209.494570]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712656209.494868]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656209.495379]: Instances: []\n", - "[INFO] [1712656209.495651]: Direct Instances: []\n", - "[INFO] [1712656209.495911]: Inverse Restrictions: []\n", - "[INFO] [1712656209.496145]: -------------------\n", - "[INFO] [1712656209.496373]: SOMA.Cover \n", - "[INFO] [1712656209.496612]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712656209.496890]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Cover, SOMA.Restrictor}\n", - "[INFO] [1712656209.497144]: Subclasses: []\n", - "[INFO] [1712656209.497440]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.497945]: Instances: []\n", - "[INFO] [1712656209.498216]: Direct Instances: []\n", - "[INFO] [1712656209.498507]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712656209.498742]: -------------------\n", - "[INFO] [1712656209.498969]: SOMA.Coverage \n", - "[INFO] [1712656209.499214]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712656209.499456]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Blockage, owl.Thing, SOMA.Coverage, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.499694]: Subclasses: []\n", - "[INFO] [1712656209.499978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.500482]: Instances: []\n", - "[INFO] [1712656209.500753]: Direct Instances: []\n", - "[INFO] [1712656209.501011]: Inverse Restrictions: []\n", - "[INFO] [1712656209.501240]: -------------------\n", - "[INFO] [1712656209.501470]: SOMA.CoveredObject \n", - "[INFO] [1712656209.501707]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712656209.501951]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.CoveredObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", - "[INFO] [1712656209.502190]: Subclasses: []\n", - "[INFO] [1712656209.502475]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.502973]: Instances: []\n", - "[INFO] [1712656209.503242]: Direct Instances: []\n", - "[INFO] [1712656209.503534]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712656209.503770]: -------------------\n", - "[INFO] [1712656209.504009]: SOMA.CoverageTheory \n", - "[INFO] [1712656209.504247]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712656209.504488]: Ancestors: {SOMA.CoverageTheory, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.FunctionalSpatialSchemaTheory, DUL.Entity}\n", - "[INFO] [1712656209.504724]: Subclasses: []\n", - "[INFO] [1712656209.505015]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.505515]: Instances: []\n", - "[INFO] [1712656209.505782]: Direct Instances: []\n", - "[INFO] [1712656209.506029]: Inverse Restrictions: []\n", - "[INFO] [1712656209.506258]: -------------------\n", - "[INFO] [1712656209.506484]: SOMA.CoveringTheory \n", - "[INFO] [1712656209.506725]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712656209.506980]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.CoveringTheory}\n", - "[INFO] [1712656209.507225]: Subclasses: []\n", - "[INFO] [1712656209.507516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656209.507998]: Instances: []\n", - "[INFO] [1712656209.508276]: Direct Instances: []\n", - "[INFO] [1712656209.508526]: Inverse Restrictions: []\n", - "[INFO] [1712656209.508759]: -------------------\n", - "[INFO] [1712656209.509092]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712656209.509355]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712656209.509622]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.509897]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712656209.510196]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656209.510692]: Instances: []\n", - "[INFO] [1712656209.510968]: Direct Instances: []\n", - "[INFO] [1712656209.511234]: Inverse Restrictions: []\n", - "[INFO] [1712656209.511470]: -------------------\n", - "[INFO] [1712656209.511705]: SOMA.CrackingTheory \n", - "[INFO] [1712656209.511940]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712656209.512194]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, SOMA.CrackingTheory, DUL.Entity}\n", - "[INFO] [1712656209.512439]: Subclasses: []\n", - "[INFO] [1712656209.512727]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656209.513212]: Instances: []\n", - "[INFO] [1712656209.513519]: Direct Instances: []\n", - "[INFO] [1712656209.513780]: Inverse Restrictions: []\n", - "[INFO] [1712656209.514022]: -------------------\n", - "[INFO] [1712656209.514255]: SOMA.Creation \n", - "[INFO] [1712656209.514488]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712656209.514732]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Creation, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656209.514983]: Subclasses: []\n", - "[INFO] [1712656209.515281]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.515780]: Instances: []\n", - "[INFO] [1712656209.516041]: Direct Instances: []\n", - "[INFO] [1712656209.516301]: Inverse Restrictions: []\n", - "[INFO] [1712656209.516536]: -------------------\n", - "[INFO] [1712656209.516764]: SOMA.Insertion \n", - "[INFO] [1712656209.517000]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712656209.517237]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Insertion, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.517488]: Subclasses: []\n", - "[INFO] [1712656209.517781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.518263]: Instances: []\n", - "[INFO] [1712656209.518527]: Direct Instances: []\n", - "[INFO] [1712656209.518854]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712656209.519108]: -------------------\n", - "[INFO] [1712656209.519343]: SOMA.DesignedFurniture \n", - "[INFO] [1712656209.519574]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712656209.519810]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedFurniture}\n", - "[INFO] [1712656209.520061]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712656209.520359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.520866]: Instances: []\n", - "[INFO] [1712656209.521142]: Direct Instances: []\n", - "[INFO] [1712656209.521402]: Inverse Restrictions: []\n", - "[INFO] [1712656209.521633]: -------------------\n", - "[INFO] [1712656209.521873]: SOMA.Cuttability \n", - "[INFO] [1712656209.522122]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712656209.522560]: Ancestors: {SOMA.Extrinsic, SOMA.Cuttability, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.522927]: Subclasses: []\n", - "[INFO] [1712656209.523325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.523910]: Instances: []\n", - "[INFO] [1712656209.524282]: Direct Instances: []\n", - "[INFO] [1712656209.524632]: Inverse Restrictions: []\n", - "[INFO] [1712656209.525044]: -------------------\n", - "[INFO] [1712656209.525427]: SOMA.Tool \n", - "[INFO] [1712656209.525784]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712656209.526144]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Tool}\n", - "[INFO] [1712656209.526505]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712656209.526900]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.527509]: Instances: []\n", - "[INFO] [1712656209.527874]: Direct Instances: []\n", - "[INFO] [1712656209.528259]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712656209.528596]: -------------------\n", - "[INFO] [1712656209.528935]: SOMA.Cutting \n", - "[INFO] [1712656209.529276]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712656209.529624]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656209.530035]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712656209.530466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.531067]: Instances: []\n", - "[INFO] [1712656209.531502]: Direct Instances: []\n", - "[INFO] [1712656209.531896]: Inverse Restrictions: []\n", - "[INFO] [1712656209.532271]: -------------------\n", - "[INFO] [1712656209.532634]: SOMA.DesignedTool \n", - "[INFO] [1712656209.532997]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712656209.533355]: Ancestors: {DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712656209.533716]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712656209.534111]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.534768]: Instances: []\n", - "[INFO] [1712656209.535148]: Direct Instances: []\n", - "[INFO] [1712656209.535517]: Inverse Restrictions: []\n", - "[INFO] [1712656209.535854]: -------------------\n", - "[INFO] [1712656209.536187]: SOMA.Shaping \n", - "[INFO] [1712656209.536528]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712656209.536895]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Shaping, SOMA.Disposition}\n", - "[INFO] [1712656209.537243]: Subclasses: []\n", - "[INFO] [1712656209.537637]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.538214]: Instances: []\n", - "[INFO] [1712656209.538608]: Direct Instances: []\n", - "[INFO] [1712656209.538993]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712656209.539330]: -------------------\n", - "[INFO] [1712656209.539658]: SOMA.Database \n", - "[INFO] [1712656209.539988]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656209.540323]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.540690]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712656209.541108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.541655]: Instances: []\n", - "[INFO] [1712656209.541951]: Direct Instances: []\n", - "[INFO] [1712656209.542226]: Inverse Restrictions: []\n", - "[INFO] [1712656209.542465]: -------------------\n", - "[INFO] [1712656209.542703]: SOMA.SoftwareRole \n", - "[INFO] [1712656209.542946]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712656209.543187]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.543463]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712656209.544025]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.544697]: Instances: []\n", - "[INFO] [1712656209.545000]: Direct Instances: []\n", - "[INFO] [1712656209.545322]: Inverse Restrictions: []\n", - "[INFO] [1712656209.545602]: -------------------\n", - "[INFO] [1712656209.545871]: SOMA.Deciding \n", - "[INFO] [1712656209.546121]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656209.546374]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Deciding}\n", - "[INFO] [1712656209.546643]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712656209.546973]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656209.547500]: Instances: []\n", - "[INFO] [1712656209.547827]: Direct Instances: []\n", - "[INFO] [1712656209.548109]: Inverse Restrictions: []\n", - "[INFO] [1712656209.548364]: -------------------\n", - "[INFO] [1712656209.548612]: SOMA.DerivingInformation \n", - "[INFO] [1712656209.548883]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712656209.549180]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation}\n", - "[INFO] [1712656209.549698]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712656209.550195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.isTaskOfOutputRole, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712656209.551000]: Instances: []\n", - "[INFO] [1712656209.551412]: Direct Instances: []\n", - "[INFO] [1712656209.551815]: Inverse Restrictions: []\n", - "[INFO] [1712656209.552197]: -------------------\n", - "[INFO] [1712656209.552568]: SOMA.DeductiveReasoning \n", - "[INFO] [1712656209.552954]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712656209.553264]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.DeductiveReasoning, SOMA.Reasoning}\n", - "[INFO] [1712656209.553545]: Subclasses: []\n", - "[INFO] [1712656209.553871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.554451]: Instances: []\n", - "[INFO] [1712656209.554768]: Direct Instances: []\n", - "[INFO] [1712656209.555039]: Inverse Restrictions: []\n", - "[INFO] [1712656209.555457]: -------------------\n", - "[INFO] [1712656209.555815]: SOMA.Deformation \n", - "[INFO] [1712656209.556166]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712656209.556514]: Ancestors: {DUL.Concept, SOMA.Alteration, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Deformation, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656209.556886]: Subclasses: []\n", - "[INFO] [1712656209.557301]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712656209.557935]: Instances: []\n", - "[INFO] [1712656209.558326]: Direct Instances: []\n", - "[INFO] [1712656209.558676]: Inverse Restrictions: []\n", - "[INFO] [1712656209.559010]: -------------------\n", - "[INFO] [1712656209.559344]: SOMA.ShapedObject \n", - "[INFO] [1712656209.559704]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712656209.560053]: Ancestors: {DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.ShapedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.560388]: Subclasses: []\n", - "[INFO] [1712656209.560784]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.561380]: Instances: []\n", - "[INFO] [1712656209.561743]: Direct Instances: []\n", - "[INFO] [1712656209.562150]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712656209.562528]: -------------------\n", - "[INFO] [1712656209.562890]: SOMA.FluidFlow \n", - "[INFO] [1712656209.563240]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712656209.563594]: Ancestors: {DUL.Concept, DUL.EventType, DUL.Object, SOMA.FluidFlow, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.563957]: Subclasses: []\n", - "[INFO] [1712656209.564351]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.564946]: Instances: []\n", - "[INFO] [1712656209.565329]: Direct Instances: []\n", - "[INFO] [1712656209.565688]: Inverse Restrictions: []\n", - "[INFO] [1712656209.566031]: -------------------\n", - "[INFO] [1712656209.566356]: SOMA.Shifting \n", - "[INFO] [1712656209.566704]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712656209.567071]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition, SOMA.Shifting}\n", - "[INFO] [1712656209.567406]: Subclasses: []\n", - "[INFO] [1712656209.567789]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.568383]: Instances: []\n", - "[INFO] [1712656209.568745]: Direct Instances: []\n", - "[INFO] [1712656209.569161]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712656209.569516]: -------------------\n", - "[INFO] [1712656209.569851]: SOMA.DependentPlace \n", - "[INFO] [1712656209.570200]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712656209.570548]: Ancestors: {SOMA.Feature, DUL.Object, owl.Thing, DUL.Entity, SOMA.DependentPlace}\n", - "[INFO] [1712656209.570879]: Subclasses: []\n", - "[INFO] [1712656209.571259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.571830]: Instances: []\n", - "[INFO] [1712656209.572194]: Direct Instances: []\n", - "[INFO] [1712656209.572531]: Inverse Restrictions: []\n", - "[INFO] [1712656209.572864]: -------------------\n", - "[INFO] [1712656209.573185]: SOMA.Deposit \n", - "[INFO] [1712656209.573509]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712656209.573848]: Ancestors: {DUL.Concept, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Deposit, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.574174]: Subclasses: []\n", - "[INFO] [1712656209.574548]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.575126]: Instances: []\n", - "[INFO] [1712656209.575471]: Direct Instances: []\n", - "[INFO] [1712656209.575845]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712656209.576164]: -------------------\n", - "[INFO] [1712656209.576470]: SOMA.DepositedObject \n", - "[INFO] [1712656209.576811]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.577154]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.DepositedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.577484]: Subclasses: []\n", - "[INFO] [1712656209.577853]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.578428]: Instances: []\n", - "[INFO] [1712656209.578783]: Direct Instances: []\n", - "[INFO] [1712656209.579153]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712656209.579473]: -------------------\n", - "[INFO] [1712656209.579780]: SOMA.InformationAcquisition \n", - "[INFO] [1712656209.580083]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.580389]: Ancestors: {SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712656209.580733]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712656209.581167]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712656209.581834]: Instances: []\n", - "[INFO] [1712656209.582238]: Direct Instances: []\n", - "[INFO] [1712656209.582672]: Inverse Restrictions: []\n", - "[INFO] [1712656209.583032]: -------------------\n", - "[INFO] [1712656209.583391]: SOMA.Premise \n", - "[INFO] [1712656209.583746]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712656209.584113]: Ancestors: {DUL.Concept, SOMA.Item, DUL.Entity, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Premise}\n", - "[INFO] [1712656209.584494]: Subclasses: []\n", - "[INFO] [1712656209.584830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.585343]: Instances: []\n", - "[INFO] [1712656209.585631]: Direct Instances: []\n", - "[INFO] [1712656209.585953]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656209.586195]: -------------------\n", - "[INFO] [1712656209.586428]: SOMA.FunctionalPart \n", - "[INFO] [1712656209.586671]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712656209.586924]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.587189]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712656209.587490]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.588044]: Instances: []\n", - "[INFO] [1712656209.588344]: Direct Instances: []\n", - "[INFO] [1712656209.588621]: Inverse Restrictions: []\n", - "[INFO] [1712656209.588876]: -------------------\n", - "[INFO] [1712656209.589118]: SOMA.Graspability \n", - "[INFO] [1712656209.589350]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712656209.589600]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Graspability, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.589851]: Subclasses: []\n", - "[INFO] [1712656209.590145]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.590639]: Instances: []\n", - "[INFO] [1712656209.590904]: Direct Instances: []\n", - "[INFO] [1712656209.591181]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712656209.591435]: -------------------\n", - "[INFO] [1712656209.591680]: SOMA.Destination \n", - "[INFO] [1712656209.591919]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712656209.592165]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.Destination, DUL.Entity, SOMA.Location}\n", - "[INFO] [1712656209.592416]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712656209.592711]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.593216]: Instances: []\n", - "[INFO] [1712656209.593481]: Direct Instances: []\n", - "[INFO] [1712656209.593818]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712656209.594078]: -------------------\n", - "[INFO] [1712656209.594322]: SOMA.Location \n", - "[INFO] [1712656209.594551]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712656209.594790]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Location}\n", - "[INFO] [1712656209.595053]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712656209.595350]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.595845]: Instances: []\n", - "[INFO] [1712656209.596121]: Direct Instances: []\n", - "[INFO] [1712656209.596389]: Inverse Restrictions: []\n", - "[INFO] [1712656209.596624]: -------------------\n", - "[INFO] [1712656209.596872]: SOMA.DestroyedObject \n", - "[INFO] [1712656209.597107]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.597353]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.DestroyedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.597606]: Subclasses: []\n", - "[INFO] [1712656209.597908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.598411]: Instances: []\n", - "[INFO] [1712656209.598679]: Direct Instances: []\n", - "[INFO] [1712656209.598972]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712656209.599225]: -------------------\n", - "[INFO] [1712656209.599461]: SOMA.Destruction \n", - "[INFO] [1712656209.599695]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712656209.599937]: Ancestors: {DUL.Concept, SOMA.Destruction, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656209.600172]: Subclasses: []\n", - "[INFO] [1712656209.600461]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.601022]: Instances: []\n", - "[INFO] [1712656209.601437]: Direct Instances: []\n", - "[INFO] [1712656209.601722]: Inverse Restrictions: []\n", - "[INFO] [1712656209.601967]: -------------------\n", - "[INFO] [1712656209.602204]: SOMA.DetectedObject \n", - "[INFO] [1712656209.602433]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.602671]: Ancestors: {DUL.Concept, SOMA.DetectedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.602906]: Subclasses: []\n", - "[INFO] [1712656209.603203]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.603685]: Instances: []\n", - "[INFO] [1712656209.603936]: Direct Instances: []\n", - "[INFO] [1712656209.604176]: Inverse Restrictions: []\n", - "[INFO] [1712656209.604399]: -------------------\n", - "[INFO] [1712656209.604634]: SOMA.DeviceState \n", - "[INFO] [1712656209.604873]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656209.605108]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity, SOMA.DeviceState}\n", - "[INFO] [1712656209.605338]: Subclasses: []\n", - "[INFO] [1712656209.605619]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.606106]: Instances: []\n", - "[INFO] [1712656209.606358]: Direct Instances: []\n", - "[INFO] [1712656209.606592]: Inverse Restrictions: []\n", - "[INFO] [1712656209.606819]: -------------------\n", - "[INFO] [1712656209.607052]: SOMA.DeviceStateRange \n", - "[INFO] [1712656209.607281]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656209.607515]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.DeviceStateRange}\n", - "[INFO] [1712656209.607760]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712656209.608051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.608556]: Instances: []\n", - "[INFO] [1712656209.608827]: Direct Instances: []\n", - "[INFO] [1712656209.609083]: Inverse Restrictions: []\n", - "[INFO] [1712656209.609310]: -------------------\n", - "[INFO] [1712656209.609535]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712656209.609771]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712656209.610013]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOff, DUL.Entity, SOMA.DeviceStateRange}\n", - "[INFO] [1712656209.610244]: Subclasses: []\n", - "[INFO] [1712656209.610522]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.611012]: Instances: []\n", - "[INFO] [1712656209.611265]: Direct Instances: []\n", - "[INFO] [1712656209.611546]: Inverse Restrictions: []\n", - "[INFO] [1712656209.611772]: -------------------\n", - "[INFO] [1712656209.611995]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712656209.612215]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712656209.612457]: Ancestors: {DUL.Region, DUL.Abstract, owl.Thing, SOMA.DeviceTurnedOn, DUL.Entity, SOMA.DeviceStateRange}\n", - "[INFO] [1712656209.612693]: Subclasses: []\n", - "[INFO] [1712656209.612976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.613485]: Instances: []\n", - "[INFO] [1712656209.613761]: Direct Instances: []\n", - "[INFO] [1712656209.614053]: Inverse Restrictions: []\n", - "[INFO] [1712656209.614291]: -------------------\n", - "[INFO] [1712656209.614522]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712656209.614748]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712656209.614995]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.615248]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712656209.615535]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.616027]: Instances: []\n", - "[INFO] [1712656209.616304]: Direct Instances: []\n", - "[INFO] [1712656209.616565]: Inverse Restrictions: []\n", - "[INFO] [1712656209.616809]: -------------------\n", - "[INFO] [1712656209.617049]: SOMA.Dicing \n", - "[INFO] [1712656209.617274]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712656209.617550]: Ancestors: {SOMA.Cutting, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Dicing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656209.617804]: Subclasses: []\n", - "[INFO] [1712656209.618089]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.618564]: Instances: []\n", - "[INFO] [1712656209.619115]: Direct Instances: []\n", - "[INFO] [1712656209.619692]: Inverse Restrictions: []\n", - "[INFO] [1712656209.619979]: -------------------\n", - "[INFO] [1712656209.620235]: SOMA.DirectedMotion \n", - "[INFO] [1712656209.620481]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712656209.620733]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.621010]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712656209.621337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.621896]: Instances: []\n", - "[INFO] [1712656209.622177]: Direct Instances: []\n", - "[INFO] [1712656209.622443]: Inverse Restrictions: []\n", - "[INFO] [1712656209.622676]: -------------------\n", - "[INFO] [1712656209.622911]: SOMA.UndirectedMotion \n", - "[INFO] [1712656209.623154]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712656209.623405]: Ancestors: {DUL.Concept, SOMA.UndirectedMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.623644]: Subclasses: []\n", - "[INFO] [1712656209.623930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.624427]: Instances: []\n", - "[INFO] [1712656209.624689]: Direct Instances: []\n", - "[INFO] [1712656209.624948]: Inverse Restrictions: []\n", - "[INFO] [1712656209.625177]: -------------------\n", - "[INFO] [1712656209.625410]: SOMA.Dirty \n", - "[INFO] [1712656209.625647]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712656209.625890]: Ancestors: {SOMA.Dirty, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.CleanlinessRegion}\n", - "[INFO] [1712656209.626133]: Subclasses: []\n", - "[INFO] [1712656209.626417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.626893]: Instances: []\n", - "[INFO] [1712656209.627167]: Direct Instances: []\n", - "[INFO] [1712656209.627419]: Inverse Restrictions: []\n", - "[INFO] [1712656209.627654]: -------------------\n", - "[INFO] [1712656209.627882]: SOMA.Discourse \n", - "[INFO] [1712656209.628106]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712656209.628340]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Discourse}\n", - "[INFO] [1712656209.628586]: Subclasses: []\n", - "[INFO] [1712656209.628924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.629469]: Instances: []\n", - "[INFO] [1712656209.629774]: Direct Instances: []\n", - "[INFO] [1712656209.630028]: Inverse Restrictions: []\n", - "[INFO] [1712656209.630257]: -------------------\n", - "[INFO] [1712656209.630485]: SOMA.Distancing \n", - "[INFO] [1712656209.630715]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712656209.630958]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Distancing}\n", - "[INFO] [1712656209.631193]: Subclasses: []\n", - "[INFO] [1712656209.631474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.631971]: Instances: []\n", - "[INFO] [1712656209.632237]: Direct Instances: []\n", - "[INFO] [1712656209.632483]: Inverse Restrictions: []\n", - "[INFO] [1712656209.632712]: -------------------\n", - "[INFO] [1712656209.632951]: SOMA.Dreaming \n", - "[INFO] [1712656209.633187]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656209.633427]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Dreaming}\n", - "[INFO] [1712656209.633664]: Subclasses: []\n", - "[INFO] [1712656209.633944]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.634441]: Instances: []\n", - "[INFO] [1712656209.634700]: Direct Instances: []\n", - "[INFO] [1712656209.634938]: Inverse Restrictions: []\n", - "[INFO] [1712656209.635164]: -------------------\n", - "[INFO] [1712656209.635391]: SOMA.Driving \n", - "[INFO] [1712656209.635628]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656209.635873]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Driving, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.636107]: Subclasses: []\n", - "[INFO] [1712656209.636400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.636913]: Instances: []\n", - "[INFO] [1712656209.637181]: Direct Instances: []\n", - "[INFO] [1712656209.637423]: Inverse Restrictions: []\n", - "[INFO] [1712656209.637651]: -------------------\n", - "[INFO] [1712656209.637878]: SOMA.Flying \n", - "[INFO] [1712656209.638103]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656209.638356]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Flying, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.638603]: Subclasses: []\n", - "[INFO] [1712656209.638903]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.639395]: Instances: []\n", - "[INFO] [1712656209.639656]: Direct Instances: []\n", - "[INFO] [1712656209.639915]: Inverse Restrictions: []\n", - "[INFO] [1712656209.640144]: -------------------\n", - "[INFO] [1712656209.640370]: SOMA.Swimming \n", - "[INFO] [1712656209.640598]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656209.640872]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType, SOMA.Swimming}\n", - "[INFO] [1712656209.641246]: Subclasses: []\n", - "[INFO] [1712656209.641575]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.642073]: Instances: []\n", - "[INFO] [1712656209.642357]: Direct Instances: []\n", - "[INFO] [1712656209.642623]: Inverse Restrictions: []\n", - "[INFO] [1712656209.643088]: -------------------\n", - "[INFO] [1712656209.643556]: SOMA.Walking \n", - "[INFO] [1712656209.644008]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656209.644428]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Walking, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.644824]: Subclasses: []\n", - "[INFO] [1712656209.645161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.645668]: Instances: []\n", - "[INFO] [1712656209.645935]: Direct Instances: []\n", - "[INFO] [1712656209.646410]: Inverse Restrictions: []\n", - "[INFO] [1712656209.646871]: -------------------\n", - "[INFO] [1712656209.647338]: SOMA.Dropping \n", - "[INFO] [1712656209.647793]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.648211]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Dropping, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.648612]: Subclasses: []\n", - "[INFO] [1712656209.649020]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.649639]: Instances: []\n", - "[INFO] [1712656209.649944]: Direct Instances: []\n", - "[INFO] [1712656209.650387]: Inverse Restrictions: []\n", - "[INFO] [1712656209.650834]: -------------------\n", - "[INFO] [1712656209.651188]: SOMA.Placing \n", - "[INFO] [1712656209.651547]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656209.651907]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Placing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.652265]: Subclasses: []\n", - "[INFO] [1712656209.652663]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.653279]: Instances: [SOMA.placing]\n", - "[INFO] [1712656209.653672]: Direct Instances: [SOMA.placing]\n", - "[INFO] [1712656209.654046]: Inverse Restrictions: []\n", - "[INFO] [1712656209.654392]: -------------------\n", - "[INFO] [1712656209.654728]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712656209.655071]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712656209.655429]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.ESTSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.655780]: Subclasses: []\n", - "[INFO] [1712656209.656181]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656209.656765]: Instances: []\n", - "[INFO] [1712656209.657148]: Direct Instances: []\n", - "[INFO] [1712656209.657503]: Inverse Restrictions: []\n", - "[INFO] [1712656209.657829]: -------------------\n", - "[INFO] [1712656209.658154]: SOMA.ExistingObjectRole \n", - "[INFO] [1712656209.658484]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656209.658821]: Ancestors: {SOMA.ExistingObjectRole, DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.659172]: Subclasses: []\n", - "[INFO] [1712656209.659566]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.660150]: Instances: []\n", - "[INFO] [1712656209.660516]: Direct Instances: []\n", - "[INFO] [1712656209.660914]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712656209.661245]: -------------------\n", - "[INFO] [1712656209.661568]: SOMA.Effort \n", - "[INFO] [1712656209.661886]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712656209.662215]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity, SOMA.Effort}\n", - "[INFO] [1712656209.662569]: Subclasses: []\n", - "[INFO] [1712656209.662955]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.663558]: Instances: []\n", - "[INFO] [1712656209.663952]: Direct Instances: []\n", - "[INFO] [1712656209.664316]: Inverse Restrictions: []\n", - "[INFO] [1712656209.664650]: -------------------\n", - "[INFO] [1712656209.665048]: SOMA.EnclosedObject \n", - "[INFO] [1712656209.665341]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712656209.665663]: Ancestors: {DUL.Concept, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.EnclosedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.665975]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712656209.666288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.666789]: Instances: []\n", - "[INFO] [1712656209.667199]: Direct Instances: []\n", - "[INFO] [1712656209.667630]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712656209.667990]: -------------------\n", - "[INFO] [1712656209.668250]: SOMA.Enclosing \n", - "[INFO] [1712656209.668606]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712656209.668899]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.669186]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712656209.669518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.670040]: Instances: []\n", - "[INFO] [1712656209.670314]: Direct Instances: []\n", - "[INFO] [1712656209.670575]: Inverse Restrictions: []\n", - "[INFO] [1712656209.670824]: -------------------\n", - "[INFO] [1712656209.671067]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712656209.671297]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656209.671534]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.671783]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712656209.672079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.672565]: Instances: []\n", - "[INFO] [1712656209.672843]: Direct Instances: []\n", - "[INFO] [1712656209.673108]: Inverse Restrictions: []\n", - "[INFO] [1712656209.673342]: -------------------\n", - "[INFO] [1712656209.673570]: SOMA.Manipulating \n", - "[INFO] [1712656209.673805]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712656209.674051]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.674324]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712656209.674615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.675123]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712656209.675400]: Direct Instances: []\n", - "[INFO] [1712656209.675673]: Inverse Restrictions: []\n", - "[INFO] [1712656209.675915]: -------------------\n", - "[INFO] [1712656209.676147]: SOMA.Episode \n", - "[INFO] [1712656209.676374]: Super classes: [DUL.Situation]\n", - "[INFO] [1712656209.676606]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing}\n", - "[INFO] [1712656209.676872]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712656209.677162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.677642]: Instances: []\n", - "[INFO] [1712656209.677904]: Direct Instances: []\n", - "[INFO] [1712656209.678165]: Inverse Restrictions: []\n", - "[INFO] [1712656209.678403]: -------------------\n", - "[INFO] [1712656209.678634]: SOMA.ExcludedObject \n", - "[INFO] [1712656209.678862]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.679098]: Ancestors: {DUL.Concept, SOMA.ExcludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.679344]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712656209.679643]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.680171]: Instances: []\n", - "[INFO] [1712656209.680446]: Direct Instances: []\n", - "[INFO] [1712656209.680778]: Inverse Restrictions: []\n", - "[INFO] [1712656209.681081]: -------------------\n", - "[INFO] [1712656209.681330]: SOMA.ExecutableFile \n", - "[INFO] [1712656209.681569]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.681806]: Ancestors: {owl.Thing, SOMA.ExecutableFile}\n", - "[INFO] [1712656209.682146]: Subclasses: []\n", - "[INFO] [1712656209.682468]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.realizes]\n", - "[INFO] [1712656209.683001]: Instances: []\n", - "[INFO] [1712656209.683286]: Direct Instances: []\n", - "[INFO] [1712656209.683611]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712656209.683852]: -------------------\n", - "[INFO] [1712656209.684101]: SOMA.Executable_Code \n", - "[INFO] [1712656209.684353]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712656209.684596]: Ancestors: {SOMA.Computer_Program, owl.Thing, SOMA.Executable_Code}\n", - "[INFO] [1712656209.684841]: Subclasses: []\n", - "[INFO] [1712656209.685147]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656209.685652]: Instances: []\n", - "[INFO] [1712656209.685914]: Direct Instances: []\n", - "[INFO] [1712656209.686251]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712656209.686486]: -------------------\n", - "[INFO] [1712656209.686714]: SOMA.ExecutableFormat \n", - "[INFO] [1712656209.686958]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712656209.687204]: Ancestors: {SOMA.ExecutableFormat, SOMA.File_format, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.687448]: Subclasses: []\n", - "[INFO] [1712656209.687739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.688240]: Instances: []\n", - "[INFO] [1712656209.688507]: Direct Instances: []\n", - "[INFO] [1712656209.688821]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712656209.689064]: -------------------\n", - "[INFO] [1712656209.689294]: SOMA.SchematicTheory \n", - "[INFO] [1712656209.689519]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712656209.689775]: Ancestors: {SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.690034]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712656209.690327]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.690850]: Instances: []\n", - "[INFO] [1712656209.691121]: Direct Instances: []\n", - "[INFO] [1712656209.691376]: Inverse Restrictions: []\n", - "[INFO] [1712656209.691605]: -------------------\n", - "[INFO] [1712656209.691834]: SOMA.ExecutableSoftware \n", - "[INFO] [1712656209.692072]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.692308]: Ancestors: {owl.Thing, SOMA.ExecutableSoftware}\n", - "[INFO] [1712656209.692547]: Subclasses: []\n", - "[INFO] [1712656209.692837]: Properties: [rdf-schema.isDefinedBy, DUL.hasMember, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.693339]: Instances: []\n", - "[INFO] [1712656209.693608]: Direct Instances: []\n", - "[INFO] [1712656209.693855]: Inverse Restrictions: []\n", - "[INFO] [1712656209.694085]: -------------------\n", - "[INFO] [1712656209.694314]: SOMA.Software \n", - "[INFO] [1712656209.694553]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712656209.694814]: Ancestors: {DUL.Design, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, SOMA.Software, DUL.Entity}\n", - "[INFO] [1712656209.695069]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712656209.695372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.describes]\n", - "[INFO] [1712656209.695869]: Instances: []\n", - "[INFO] [1712656209.696145]: Direct Instances: []\n", - "[INFO] [1712656209.696527]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656209.696822]: -------------------\n", - "[INFO] [1712656209.697083]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712656209.697321]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712656209.697570]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.697828]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712656209.698120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.698629]: Instances: []\n", - "[INFO] [1712656209.698916]: Direct Instances: []\n", - "[INFO] [1712656209.699178]: Inverse Restrictions: []\n", - "[INFO] [1712656209.699409]: -------------------\n", - "[INFO] [1712656209.699637]: SOMA.ExperiencerRole \n", - "[INFO] [1712656209.699862]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712656209.700101]: Ancestors: {DUL.Concept, SOMA.ExperiencerRole, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.PerformerRole}\n", - "[INFO] [1712656209.700364]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712656209.700655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.701173]: Instances: []\n", - "[INFO] [1712656209.701549]: Direct Instances: []\n", - "[INFO] [1712656209.701864]: Inverse Restrictions: []\n", - "[INFO] [1712656209.702209]: -------------------\n", - "[INFO] [1712656209.702477]: SOMA.ExtractedObject \n", - "[INFO] [1712656209.702732]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.702986]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.ExtractedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.703229]: Subclasses: []\n", - "[INFO] [1712656209.703533]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.704019]: Instances: []\n", - "[INFO] [1712656209.704287]: Direct Instances: []\n", - "[INFO] [1712656209.704527]: Inverse Restrictions: []\n", - "[INFO] [1712656209.704755]: -------------------\n", - "[INFO] [1712656209.705010]: SOMA.PhysicalQuality \n", - "[INFO] [1712656209.705249]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712656209.705483]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", - "[INFO] [1712656209.705732]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712656209.706018]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf, rdf-schema.label]\n", - "[INFO] [1712656209.706614]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712656209.706887]: Direct Instances: []\n", - "[INFO] [1712656209.707144]: Inverse Restrictions: []\n", - "[INFO] [1712656209.707375]: -------------------\n", - "[INFO] [1712656209.707606]: SOMA.FailedAttempt \n", - "[INFO] [1712656209.707845]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712656209.708090]: Ancestors: {DUL.Description, SOMA.FailedAttempt, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.708325]: Subclasses: []\n", - "[INFO] [1712656209.708611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.709117]: Instances: []\n", - "[INFO] [1712656209.709382]: Direct Instances: []\n", - "[INFO] [1712656209.709631]: Inverse Restrictions: []\n", - "[INFO] [1712656209.709859]: -------------------\n", - "[INFO] [1712656209.710087]: SOMA.FaultySoftware \n", - "[INFO] [1712656209.710324]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712656209.710569]: Ancestors: {SOMA.FaultySoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656209.710807]: Subclasses: []\n", - "[INFO] [1712656209.711090]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.711585]: Instances: []\n", - "[INFO] [1712656209.711854]: Direct Instances: []\n", - "[INFO] [1712656209.712097]: Inverse Restrictions: []\n", - "[INFO] [1712656209.712327]: -------------------\n", - "[INFO] [1712656209.712550]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712656209.712777]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712656209.713028]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656209.713290]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712656209.713588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.714197]: Instances: []\n", - "[INFO] [1712656209.714505]: Direct Instances: []\n", - "[INFO] [1712656209.714808]: Inverse Restrictions: []\n", - "[INFO] [1712656209.715067]: -------------------\n", - "[INFO] [1712656209.715472]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712656209.715875]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712656209.716266]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.PhysicalAcquiring, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656209.716666]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712656209.717121]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.717810]: Instances: []\n", - "[INFO] [1712656209.718261]: Direct Instances: []\n", - "[INFO] [1712656209.718626]: Inverse Restrictions: []\n", - "[INFO] [1712656209.718939]: -------------------\n", - "[INFO] [1712656209.719243]: SOMA.Finger \n", - "[INFO] [1712656209.719552]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712656209.719872]: Ancestors: {DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.Finger, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.720193]: Subclasses: []\n", - "[INFO] [1712656209.720586]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isPartOf]\n", - "[INFO] [1712656209.721254]: Instances: []\n", - "[INFO] [1712656209.721606]: Direct Instances: []\n", - "[INFO] [1712656209.721935]: Inverse Restrictions: []\n", - "[INFO] [1712656209.722251]: -------------------\n", - "[INFO] [1712656209.722580]: SOMA.Hand \n", - "[INFO] [1712656209.722912]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712656209.723254]: Ancestors: {DUL.PhysicalBody, SOMA.Hand, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.723587]: Subclasses: []\n", - "[INFO] [1712656209.723989]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.724713]: Instances: []\n", - "[INFO] [1712656209.725103]: Direct Instances: []\n", - "[INFO] [1712656209.725536]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712656209.725891]: -------------------\n", - "[INFO] [1712656209.726253]: SOMA.FixedJoint \n", - "[INFO] [1712656209.726651]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712656209.727035]: Ancestors: {DUL.PhysicalBody, SOMA.Joint, SOMA.FixedJoint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656209.727414]: Subclasses: []\n", - "[INFO] [1712656209.727902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.728687]: Instances: []\n", - "[INFO] [1712656209.729143]: Direct Instances: []\n", - "[INFO] [1712656209.729633]: Inverse Restrictions: []\n", - "[INFO] [1712656209.730035]: -------------------\n", - "[INFO] [1712656209.730488]: SOMA.MovableJoint \n", - "[INFO] [1712656209.730913]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712656209.731328]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656209.731776]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712656209.732283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointState]\n", - "[INFO] [1712656209.733162]: Instances: []\n", - "[INFO] [1712656209.733788]: Direct Instances: []\n", - "[INFO] [1712656209.734337]: Inverse Restrictions: []\n", - "[INFO] [1712656209.734767]: -------------------\n", - "[INFO] [1712656209.735187]: SOMA.Flipping \n", - "[INFO] [1712656209.735604]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712656209.736032]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Flipping, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.736443]: Subclasses: []\n", - "[INFO] [1712656209.736952]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656209.737723]: Instances: []\n", - "[INFO] [1712656209.738138]: Direct Instances: []\n", - "[INFO] [1712656209.738533]: Inverse Restrictions: []\n", - "[INFO] [1712656209.738882]: -------------------\n", - "[INFO] [1712656209.739222]: SOMA.FloatingJoint \n", - "[INFO] [1712656209.739559]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712656209.739898]: Ancestors: {SOMA.FloatingJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656209.740243]: Subclasses: []\n", - "[INFO] [1712656209.740646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.741287]: Instances: []\n", - "[INFO] [1712656209.741650]: Direct Instances: []\n", - "[INFO] [1712656209.741967]: Inverse Restrictions: []\n", - "[INFO] [1712656209.742265]: -------------------\n", - "[INFO] [1712656209.742541]: SOMA.Fluid \n", - "[INFO] [1712656209.742809]: Super classes: [DUL.Substance]\n", - "[INFO] [1712656209.743103]: Ancestors: {DUL.Substance, SOMA.Fluid, DUL.PhysicalBody, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656209.743384]: Subclasses: []\n", - "[INFO] [1712656209.743699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.744226]: Instances: []\n", - "[INFO] [1712656209.744511]: Direct Instances: []\n", - "[INFO] [1712656209.745092]: Inverse Restrictions: []\n", - "[INFO] [1712656209.745504]: -------------------\n", - "[INFO] [1712656209.745826]: SOMA.MovedObject \n", - "[INFO] [1712656209.746093]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712656209.746352]: Ancestors: {SOMA.MovedObject, DUL.Concept, SOMA.AlteredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.746615]: Subclasses: []\n", - "[INFO] [1712656209.746956]: Properties: [rdf-schema.isDefinedBy, SOMA.isTriggerDefinedIn, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.747470]: Instances: []\n", - "[INFO] [1712656209.747831]: Direct Instances: []\n", - "[INFO] [1712656209.748277]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712656209.748556]: -------------------\n", - "[INFO] [1712656209.748831]: SOMA.Focusing \n", - "[INFO] [1712656209.749081]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712656209.749330]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.AttentionShift, DUL.SocialObject, SOMA.MentalTask, DUL.Entity, SOMA.Focusing}\n", - "[INFO] [1712656209.749570]: Subclasses: []\n", - "[INFO] [1712656209.749857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.750375]: Instances: []\n", - "[INFO] [1712656209.750643]: Direct Instances: []\n", - "[INFO] [1712656209.750909]: Inverse Restrictions: []\n", - "[INFO] [1712656209.751149]: -------------------\n", - "[INFO] [1712656209.751383]: SOMA.Foolishness \n", - "[INFO] [1712656209.751616]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712656209.751855]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.Foolishness, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.752102]: Subclasses: []\n", - "[INFO] [1712656209.752393]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.752889]: Instances: []\n", - "[INFO] [1712656209.753149]: Direct Instances: []\n", - "[INFO] [1712656209.753391]: Inverse Restrictions: []\n", - "[INFO] [1712656209.753633]: -------------------\n", - "[INFO] [1712656209.753864]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712656209.754095]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712656209.754334]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, SOMA.ForgettingIncorrectInformation, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.754587]: Subclasses: []\n", - "[INFO] [1712656209.754876]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.755353]: Instances: []\n", - "[INFO] [1712656209.755628]: Direct Instances: []\n", - "[INFO] [1712656209.755881]: Inverse Restrictions: []\n", - "[INFO] [1712656209.756112]: -------------------\n", - "[INFO] [1712656209.756339]: SOMA.InformationDismissal \n", - "[INFO] [1712656209.756573]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712656209.756820]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.757088]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712656209.757386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712656209.757881]: Instances: []\n", - "[INFO] [1712656209.758140]: Direct Instances: []\n", - "[INFO] [1712656209.758395]: Inverse Restrictions: []\n", - "[INFO] [1712656209.758642]: -------------------\n", - "[INFO] [1712656209.758879]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712656209.759104]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712656209.759345]: Ancestors: {SOMA.ForgettingIrrelevantInformation, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.InformationDismissal, owl.Thing, DUL.SocialObject, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.759595]: Subclasses: []\n", - "[INFO] [1712656209.759882]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.760365]: Instances: []\n", - "[INFO] [1712656209.760618]: Direct Instances: []\n", - "[INFO] [1712656209.760875]: Inverse Restrictions: []\n", - "[INFO] [1712656209.761117]: -------------------\n", - "[INFO] [1712656209.761351]: SOMA.Language \n", - "[INFO] [1712656209.761583]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712656209.761821]: Ancestors: {DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.762086]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712656209.762383]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.762911]: Instances: []\n", - "[INFO] [1712656209.763184]: Direct Instances: []\n", - "[INFO] [1712656209.763555]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712656209.763834]: -------------------\n", - "[INFO] [1712656209.764074]: SOMA.Item \n", - "[INFO] [1712656209.764311]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656209.764555]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.764839]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712656209.765162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.765690]: Instances: []\n", - "[INFO] [1712656209.765968]: Direct Instances: []\n", - "[INFO] [1712656209.766325]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712656209.766566]: -------------------\n", - "[INFO] [1712656209.766801]: SOMA.FunctionalDesign \n", - "[INFO] [1712656209.767030]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712656209.767277]: Ancestors: {SOMA.FunctionalDesign, DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.767535]: Subclasses: []\n", - "[INFO] [1712656209.767837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.768316]: Instances: []\n", - "[INFO] [1712656209.768592]: Direct Instances: []\n", - "[INFO] [1712656209.768854]: Inverse Restrictions: []\n", - "[INFO] [1712656209.769099]: -------------------\n", - "[INFO] [1712656209.769333]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712656209.769565]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712656209.769801]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656209.770067]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712656209.770356]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.770846]: Instances: []\n", - "[INFO] [1712656209.771105]: Direct Instances: []\n", - "[INFO] [1712656209.771362]: Inverse Restrictions: []\n", - "[INFO] [1712656209.771597]: -------------------\n", - "[INFO] [1712656209.771832]: SOMA.LocatumRole \n", - "[INFO] [1712656209.772067]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656209.772311]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.LocatumRole, DUL.Entity, SOMA.SpatialRelationRole}\n", - "[INFO] [1712656209.772564]: Subclasses: []\n", - "[INFO] [1712656209.772866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.773354]: Instances: []\n", - "[INFO] [1712656209.773630]: Direct Instances: []\n", - "[INFO] [1712656209.773958]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712656209.774195]: -------------------\n", - "[INFO] [1712656209.774426]: SOMA.RelatumRole \n", - "[INFO] [1712656209.774657]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656209.774896]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, SOMA.RelatumRole, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SpatialRelationRole}\n", - "[INFO] [1712656209.775149]: Subclasses: []\n", - "[INFO] [1712656209.775444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.775933]: Instances: []\n", - "[INFO] [1712656209.776187]: Direct Instances: []\n", - "[INFO] [1712656209.776515]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712656209.776757]: -------------------\n", - "[INFO] [1712656209.777001]: SOMA.GetTaskParameter \n", - "[INFO] [1712656209.777232]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712656209.777466]: Ancestors: {SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712656209.777729]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712656209.778020]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.778507]: Instances: []\n", - "[INFO] [1712656209.778782]: Direct Instances: []\n", - "[INFO] [1712656209.779042]: Inverse Restrictions: []\n", - "[INFO] [1712656209.779274]: -------------------\n", - "[INFO] [1712656209.779501]: SOMA.Planning \n", - "[INFO] [1712656209.779733]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712656209.779969]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712656209.780273]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712656209.780590]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isTaskOf]\n", - "[INFO] [1712656209.781102]: Instances: []\n", - "[INFO] [1712656209.781382]: Direct Instances: []\n", - "[INFO] [1712656209.781657]: Inverse Restrictions: []\n", - "[INFO] [1712656209.781901]: -------------------\n", - "[INFO] [1712656209.782133]: SOMA.GraphDatabase \n", - "[INFO] [1712656209.782365]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712656209.782618]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.782872]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712656209.783161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.783645]: Instances: []\n", - "[INFO] [1712656209.783922]: Direct Instances: []\n", - "[INFO] [1712656209.784184]: Inverse Restrictions: []\n", - "[INFO] [1712656209.784425]: -------------------\n", - "[INFO] [1712656209.784672]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712656209.785010]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712656209.785343]: Ancestors: {SOMA.Computer_Language, SOMA.GraphQueryLanguage, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.785622]: Subclasses: []\n", - "[INFO] [1712656209.785930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.786417]: Instances: []\n", - "[INFO] [1712656209.786673]: Direct Instances: []\n", - "[INFO] [1712656209.786921]: Inverse Restrictions: []\n", - "[INFO] [1712656209.787150]: -------------------\n", - "[INFO] [1712656209.787388]: SOMA.QueryLanguage \n", - "[INFO] [1712656209.787623]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656209.787866]: Ancestors: {SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.788116]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712656209.788400]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.788910]: Instances: []\n", - "[INFO] [1712656209.789182]: Direct Instances: []\n", - "[INFO] [1712656209.789460]: Inverse Restrictions: []\n", - "[INFO] [1712656209.789703]: -------------------\n", - "[INFO] [1712656209.789932]: SOMA.GraspTransfer \n", - "[INFO] [1712656209.790159]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712656209.790410]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.GraspTransfer, SOMA.Grasping, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.790649]: Subclasses: []\n", - "[INFO] [1712656209.790933]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.791429]: Instances: []\n", - "[INFO] [1712656209.791696]: Direct Instances: []\n", - "[INFO] [1712656209.791948]: Inverse Restrictions: []\n", - "[INFO] [1712656209.792180]: -------------------\n", - "[INFO] [1712656209.792407]: SOMA.Grasping \n", - "[INFO] [1712656209.792630]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656209.792876]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Grasping, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.793132]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712656209.793432]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.793923]: Instances: []\n", - "[INFO] [1712656209.794230]: Direct Instances: []\n", - "[INFO] [1712656209.794512]: Inverse Restrictions: []\n", - "[INFO] [1712656209.794750]: -------------------\n", - "[INFO] [1712656209.794983]: SOMA.Releasing \n", - "[INFO] [1712656209.795211]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656209.795462]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Releasing, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.795709]: Subclasses: []\n", - "[INFO] [1712656209.796000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.796487]: Instances: []\n", - "[INFO] [1712656209.796770]: Direct Instances: []\n", - "[INFO] [1712656209.797077]: Inverse Restrictions: []\n", - "[INFO] [1712656209.797328]: -------------------\n", - "[INFO] [1712656209.797560]: SOMA.GraspingMotion \n", - "[INFO] [1712656209.797788]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712656209.798039]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.798309]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712656209.798623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.799121]: Instances: []\n", - "[INFO] [1712656209.799392]: Direct Instances: []\n", - "[INFO] [1712656209.799691]: Inverse Restrictions: []\n", - "[INFO] [1712656209.799929]: -------------------\n", - "[INFO] [1712656209.800160]: SOMA.IntermediateGrasp \n", - "[INFO] [1712656209.800400]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712656209.800649]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.IntermediateGrasp, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.800900]: Subclasses: []\n", - "[INFO] [1712656209.801199]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.801708]: Instances: []\n", - "[INFO] [1712656209.801969]: Direct Instances: []\n", - "[INFO] [1712656209.802257]: Inverse Restrictions: []\n", - "[INFO] [1712656209.802491]: -------------------\n", - "[INFO] [1712656209.802720]: SOMA.PowerGrasp \n", - "[INFO] [1712656209.802947]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712656209.803200]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.PowerGrasp, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.803443]: Subclasses: []\n", - "[INFO] [1712656209.803738]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.804223]: Instances: []\n", - "[INFO] [1712656209.804489]: Direct Instances: []\n", - "[INFO] [1712656209.804790]: Inverse Restrictions: []\n", - "[INFO] [1712656209.805032]: -------------------\n", - "[INFO] [1712656209.805263]: SOMA.PrecisionGrasp \n", - "[INFO] [1712656209.805490]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712656209.805743]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.GraspingMotion, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, SOMA.PrecisionGrasp, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.805988]: Subclasses: []\n", - "[INFO] [1712656209.806276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.806777]: Instances: []\n", - "[INFO] [1712656209.807050]: Direct Instances: []\n", - "[INFO] [1712656209.807352]: Inverse Restrictions: []\n", - "[INFO] [1712656209.807590]: -------------------\n", - "[INFO] [1712656209.807835]: SOMA.PrehensileMotion \n", - "[INFO] [1712656209.808088]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712656209.808362]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.PrehensileMotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.808619]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712656209.808942]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.809472]: Instances: []\n", - "[INFO] [1712656209.809744]: Direct Instances: []\n", - "[INFO] [1712656209.810001]: Inverse Restrictions: []\n", - "[INFO] [1712656209.810233]: -------------------\n", - "[INFO] [1712656209.810467]: SOMA.ReleasingMotion \n", - "[INFO] [1712656209.810706]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712656209.810952]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.PrehensileMotion, DUL.EventType, SOMA.ReleasingMotion, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.811191]: Subclasses: []\n", - "[INFO] [1712656209.811474]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.811976]: Instances: []\n", - "[INFO] [1712656209.812241]: Direct Instances: []\n", - "[INFO] [1712656209.812535]: Inverse Restrictions: []\n", - "[INFO] [1712656209.812765]: -------------------\n", - "[INFO] [1712656209.813004]: SOMA.GreenColor \n", - "[INFO] [1712656209.813232]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712656209.813502]: Ancestors: {SOMA.GreenColor, DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656209.813788]: Subclasses: []\n", - "[INFO] [1712656209.814083]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.814567]: Instances: []\n", - "[INFO] [1712656209.814836]: Direct Instances: []\n", - "[INFO] [1712656209.815086]: Inverse Restrictions: []\n", - "[INFO] [1712656209.815322]: -------------------\n", - "[INFO] [1712656209.815547]: SOMA.Gripper \n", - "[INFO] [1712656209.815771]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712656209.816005]: Ancestors: {SOMA.Gripper, DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.816251]: Subclasses: []\n", - "[INFO] [1712656209.816540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.817028]: Instances: []\n", - "[INFO] [1712656209.817302]: Direct Instances: []\n", - "[INFO] [1712656209.817560]: Inverse Restrictions: []\n", - "[INFO] [1712656209.817791]: -------------------\n", - "[INFO] [1712656209.818018]: SOMA.PrehensileEffector \n", - "[INFO] [1712656209.818244]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712656209.818477]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.PrehensileEffector, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.818738]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712656209.819028]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.819523]: Instances: []\n", - "[INFO] [1712656209.819969]: Direct Instances: []\n", - "[INFO] [1712656209.820374]: Inverse Restrictions: []\n", - "[INFO] [1712656209.820631]: -------------------\n", - "[INFO] [1712656209.820888]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712656209.821148]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712656209.821414]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, SOMA.HardwareDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.821667]: Subclasses: []\n", - "[INFO] [1712656209.821959]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.822468]: Instances: []\n", - "[INFO] [1712656209.822762]: Direct Instances: []\n", - "[INFO] [1712656209.823006]: Inverse Restrictions: []\n", - "[INFO] [1712656209.823238]: -------------------\n", - "[INFO] [1712656209.823466]: SOMA.HasQualityRegion \n", - "[INFO] [1712656209.823700]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712656209.823951]: Ancestors: {DUL.Relation, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, SOMA.HasQualityRegion, DUL.Entity}\n", - "[INFO] [1712656209.824195]: Subclasses: []\n", - "[INFO] [1712656209.824486]: Properties: [rdf-schema.isDefinedBy, DUL.hasRegion, rdf-schema.label, DUL.hasQuality, rdf-schema.comment]\n", - "[INFO] [1712656209.824970]: Instances: []\n", - "[INFO] [1712656209.825249]: Direct Instances: []\n", - "[INFO] [1712656209.825509]: Inverse Restrictions: []\n", - "[INFO] [1712656209.825741]: -------------------\n", - "[INFO] [1712656209.825968]: SOMA.Head \n", - "[INFO] [1712656209.826193]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712656209.826430]: Ancestors: {DUL.PhysicalBody, DUL.Object, owl.Thing, SOMA.Head, DUL.PhysicalObject, DUL.Entity, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.826681]: Subclasses: []\n", - "[INFO] [1712656209.826973]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.827457]: Instances: []\n", - "[INFO] [1712656209.827732]: Direct Instances: []\n", - "[INFO] [1712656209.827985]: Inverse Restrictions: []\n", - "[INFO] [1712656209.828219]: -------------------\n", - "[INFO] [1712656209.828448]: SOMA.HeadMovement \n", - "[INFO] [1712656209.828671]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712656209.828917]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.HeadMovement, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.829185]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712656209.829484]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.829982]: Instances: []\n", - "[INFO] [1712656209.830296]: Direct Instances: []\n", - "[INFO] [1712656209.830571]: Inverse Restrictions: []\n", - "[INFO] [1712656209.830807]: -------------------\n", - "[INFO] [1712656209.831039]: SOMA.HeadTurning \n", - "[INFO] [1712656209.831267]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712656209.831521]: Ancestors: {DUL.Concept, SOMA.HeadTurning, DUL.EventType, SOMA.HeadMovement, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.831767]: Subclasses: []\n", - "[INFO] [1712656209.832053]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.832550]: Instances: []\n", - "[INFO] [1712656209.832810]: Direct Instances: []\n", - "[INFO] [1712656209.833065]: Inverse Restrictions: []\n", - "[INFO] [1712656209.833303]: -------------------\n", - "[INFO] [1712656209.833568]: SOMA.Holding \n", - "[INFO] [1712656209.833817]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656209.834074]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Holding, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.834323]: Subclasses: []\n", - "[INFO] [1712656209.834610]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.835090]: Instances: []\n", - "[INFO] [1712656209.835363]: Direct Instances: []\n", - "[INFO] [1712656209.835620]: Inverse Restrictions: []\n", - "[INFO] [1712656209.835854]: -------------------\n", - "[INFO] [1712656209.836082]: SOMA.HostRole \n", - "[INFO] [1712656209.836314]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712656209.836569]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, SOMA.HostRole, SOMA.SoftwareRole}\n", - "[INFO] [1712656209.836825]: Subclasses: []\n", - "[INFO] [1712656209.837119]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", - "[INFO] [1712656209.837623]: Instances: []\n", - "[INFO] [1712656209.837893]: Direct Instances: []\n", - "[INFO] [1712656209.838208]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712656209.838444]: -------------------\n", - "[INFO] [1712656209.838676]: SOMA.PluginSpecification \n", - "[INFO] [1712656209.838920]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712656209.839176]: Ancestors: {DUL.Design, SOMA.API_Specification, DUL.Description, DUL.Object, SOMA.InterfaceSpecification, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PluginSpecification}\n", - "[INFO] [1712656209.839423]: Subclasses: []\n", - "[INFO] [1712656209.839769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesRole]\n", - "[INFO] [1712656209.840329]: Instances: []\n", - "[INFO] [1712656209.840632]: Direct Instances: []\n", - "[INFO] [1712656209.841011]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712656209.841274]: -------------------\n", - "[INFO] [1712656209.841515]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712656209.841759]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712656209.842024]: Ancestors: {SOMA.Computer_Language, SOMA.Human-readable_Programming_Language, SOMA.FormalLanguage, SOMA.Programming_Language, DUL.Object, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.842271]: Subclasses: []\n", - "[INFO] [1712656209.842570]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.843047]: Instances: []\n", - "[INFO] [1712656209.843321]: Direct Instances: []\n", - "[INFO] [1712656209.843644]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712656209.844040]: -------------------\n", - "[INFO] [1712656209.844394]: SOMA.Source_Code \n", - "[INFO] [1712656209.844746]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712656209.845144]: Ancestors: {SOMA.Computer_Program, SOMA.Source_Code, owl.Thing}\n", - "[INFO] [1712656209.845518]: Subclasses: []\n", - "[INFO] [1712656209.845943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656209.846549]: Instances: []\n", - "[INFO] [1712656209.846950]: Direct Instances: []\n", - "[INFO] [1712656209.847369]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712656209.847739]: -------------------\n", - "[INFO] [1712656209.848000]: SOMA.HumanActivityRecording \n", - "[INFO] [1712656209.848239]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712656209.848482]: Ancestors: {DUL.Situation, SOMA.Episode, SOMA.HumanActivityRecording, owl.Thing, DUL.Entity, SOMA.RecordedEpisode}\n", - "[INFO] [1712656209.848736]: Subclasses: []\n", - "[INFO] [1712656209.849033]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.849525]: Instances: []\n", - "[INFO] [1712656209.849793]: Direct Instances: []\n", - "[INFO] [1712656209.850049]: Inverse Restrictions: []\n", - "[INFO] [1712656209.850280]: -------------------\n", - "[INFO] [1712656209.850508]: SOMA.Imagining \n", - "[INFO] [1712656209.850734]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712656209.850972]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Imagining}\n", - "[INFO] [1712656209.851211]: Subclasses: []\n", - "[INFO] [1712656209.851494]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.851991]: Instances: []\n", - "[INFO] [1712656209.852261]: Direct Instances: []\n", - "[INFO] [1712656209.852510]: Inverse Restrictions: []\n", - "[INFO] [1712656209.852752]: -------------------\n", - "[INFO] [1712656209.853187]: SOMA.Impediment \n", - "[INFO] [1712656209.853570]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712656209.853948]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Impediment, DUL.Quality, SOMA.Blockage, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656209.854323]: Subclasses: []\n", - "[INFO] [1712656209.854737]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.855339]: Instances: []\n", - "[INFO] [1712656209.855721]: Direct Instances: []\n", - "[INFO] [1712656209.856017]: Inverse Restrictions: []\n", - "[INFO] [1712656209.856269]: -------------------\n", - "[INFO] [1712656209.856509]: SOMA.Obstacle \n", - "[INFO] [1712656209.856743]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712656209.857001]: Ancestors: {DUL.Concept, SOMA.Obstacle, DUL.Entity, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, SOMA.Barrier, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656209.857256]: Subclasses: []\n", - "[INFO] [1712656209.857548]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.858033]: Instances: []\n", - "[INFO] [1712656209.858286]: Direct Instances: []\n", - "[INFO] [1712656209.858578]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712656209.858823]: -------------------\n", - "[INFO] [1712656209.859057]: SOMA.RestrictedObject \n", - "[INFO] [1712656209.859283]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712656209.859520]: Ancestors: {DUL.Concept, SOMA.RestrictedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.BlockedObject}\n", - "[INFO] [1712656209.859768]: Subclasses: []\n", - "[INFO] [1712656209.860058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.860543]: Instances: []\n", - "[INFO] [1712656209.860800]: Direct Instances: []\n", - "[INFO] [1712656209.861085]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712656209.861333]: -------------------\n", - "[INFO] [1712656209.861567]: SOMA.StateTransition \n", - "[INFO] [1712656209.861807]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712656209.862041]: Ancestors: {DUL.Situation, DUL.Transition, owl.Thing, SOMA.StateTransition, DUL.Entity}\n", - "[INFO] [1712656209.862275]: Subclasses: []\n", - "[INFO] [1712656209.862572]: Properties: [SOMA.hasTerminalScene, DUL.satisfies, rdf-schema.isDefinedBy, SOMA.hasInitialScene, rdf-schema.label, rdf-schema.comment, DUL.includesEvent]\n", - "[INFO] [1712656209.863063]: Instances: []\n", - "[INFO] [1712656209.863319]: Direct Instances: []\n", - "[INFO] [1712656209.863636]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712656209.863889]: -------------------\n", - "[INFO] [1712656209.864126]: SOMA.Inability \n", - "[INFO] [1712656209.864355]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712656209.864594]: Ancestors: {SOMA.Inability, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.864830]: Subclasses: []\n", - "[INFO] [1712656209.865117]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.865666]: Instances: []\n", - "[INFO] [1712656209.865972]: Direct Instances: []\n", - "[INFO] [1712656209.866254]: Inverse Restrictions: []\n", - "[INFO] [1712656209.866523]: -------------------\n", - "[INFO] [1712656209.866872]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712656209.867167]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712656209.867463]: Ancestors: {SOMA.IncompatibleSoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656209.867739]: Subclasses: []\n", - "[INFO] [1712656209.868055]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.868576]: Instances: []\n", - "[INFO] [1712656209.868866]: Direct Instances: []\n", - "[INFO] [1712656209.869131]: Inverse Restrictions: []\n", - "[INFO] [1712656209.869367]: -------------------\n", - "[INFO] [1712656209.869596]: SOMA.InductiveReasoning \n", - "[INFO] [1712656209.869822]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712656209.870061]: Ancestors: {SOMA.InductiveReasoning, SOMA.DerivingInformation, SOMA.InformationAcquisition, owl.Thing, SOMA.Reasoning}\n", - "[INFO] [1712656209.870304]: Subclasses: []\n", - "[INFO] [1712656209.870591]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.871077]: Instances: []\n", - "[INFO] [1712656209.871351]: Direct Instances: []\n", - "[INFO] [1712656209.871596]: Inverse Restrictions: []\n", - "[INFO] [1712656209.871839]: -------------------\n", - "[INFO] [1712656209.872071]: SOMA.Infeasibility \n", - "[INFO] [1712656209.872299]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712656209.872541]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Infeasibility, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.872793]: Subclasses: []\n", - "[INFO] [1712656209.873084]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.873566]: Instances: []\n", - "[INFO] [1712656209.873821]: Direct Instances: []\n", - "[INFO] [1712656209.874072]: Inverse Restrictions: []\n", - "[INFO] [1712656209.874319]: -------------------\n", - "[INFO] [1712656209.874557]: SOMA.InferenceRules \n", - "[INFO] [1712656209.874791]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712656209.875036]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Knowledge, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.InferenceRules}\n", - "[INFO] [1712656209.875273]: Subclasses: []\n", - "[INFO] [1712656209.875568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.876059]: Instances: []\n", - "[INFO] [1712656209.876313]: Direct Instances: []\n", - "[INFO] [1712656209.876563]: Inverse Restrictions: []\n", - "[INFO] [1712656209.876797]: -------------------\n", - "[INFO] [1712656209.877040]: SOMA.InformationRetrieval \n", - "[INFO] [1712656209.877288]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712656209.877532]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.InformationRetrieval}\n", - "[INFO] [1712656209.877769]: Subclasses: []\n", - "[INFO] [1712656209.878051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712656209.878552]: Instances: []\n", - "[INFO] [1712656209.878818]: Direct Instances: []\n", - "[INFO] [1712656209.879103]: Inverse Restrictions: []\n", - "[INFO] [1712656209.879337]: -------------------\n", - "[INFO] [1712656209.879572]: SOMA.InformationStorage \n", - "[INFO] [1712656209.879824]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712656209.880072]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.880345]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712656209.880640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfInputRole]\n", - "[INFO] [1712656209.881144]: Instances: []\n", - "[INFO] [1712656209.881411]: Direct Instances: []\n", - "[INFO] [1712656209.881663]: Inverse Restrictions: []\n", - "[INFO] [1712656209.881900]: -------------------\n", - "[INFO] [1712656209.882131]: SOMA.StoredObject \n", - "[INFO] [1712656209.882360]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712656209.882619]: Ancestors: {DUL.Concept, DUL.Role, SOMA.IncludedObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, SOMA.StoredObject, owl.Thing, DUL.SocialObject, SOMA.EnclosedObject, DUL.Entity}\n", - "[INFO] [1712656209.882866]: Subclasses: []\n", - "[INFO] [1712656209.883150]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.883636]: Instances: []\n", - "[INFO] [1712656209.883907]: Direct Instances: []\n", - "[INFO] [1712656209.884250]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712656209.884496]: -------------------\n", - "[INFO] [1712656209.884736]: SOMA.InsertedObject \n", - "[INFO] [1712656209.885049]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712656209.885434]: Ancestors: {DUL.Concept, DUL.Role, SOMA.IncludedObject, SOMA.Patient, SOMA.InsertedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.EnclosedObject, DUL.Entity}\n", - "[INFO] [1712656209.885719]: Subclasses: []\n", - "[INFO] [1712656209.886026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.886520]: Instances: []\n", - "[INFO] [1712656209.886784]: Direct Instances: []\n", - "[INFO] [1712656209.887070]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712656209.887312]: -------------------\n", - "[INFO] [1712656209.887563]: SOMA.Instructions \n", - "[INFO] [1712656209.887800]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712656209.888046]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Instructions, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.888282]: Subclasses: []\n", - "[INFO] [1712656209.888562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.889069]: Instances: []\n", - "[INFO] [1712656209.889337]: Direct Instances: []\n", - "[INFO] [1712656209.889604]: Inverse Restrictions: []\n", - "[INFO] [1712656209.889858]: -------------------\n", - "[INFO] [1712656209.890101]: SOMA.Interpreting \n", - "[INFO] [1712656209.890334]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656209.890576]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Interpreting, SOMA.DerivingInformation}\n", - "[INFO] [1712656209.890819]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712656209.891118]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.891615]: Instances: []\n", - "[INFO] [1712656209.891868]: Direct Instances: []\n", - "[INFO] [1712656209.892110]: Inverse Restrictions: []\n", - "[INFO] [1712656209.892338]: -------------------\n", - "[INFO] [1712656209.892572]: SOMA.InterrogativeClause \n", - "[INFO] [1712656209.892815]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712656209.893064]: Ancestors: {DUL.InformationEntity, SOMA.ClausalObject, SOMA.Phrase, SOMA.LinguisticObject, owl.Thing, DUL.Object, DUL.SocialObject, DUL.Entity, SOMA.InterrogativeClause, DUL.InformationObject}\n", - "[INFO] [1712656209.893303]: Subclasses: []\n", - "[INFO] [1712656209.893585]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.894083]: Instances: []\n", - "[INFO] [1712656209.894351]: Direct Instances: []\n", - "[INFO] [1712656209.894643]: Inverse Restrictions: []\n", - "[INFO] [1712656209.894883]: -------------------\n", - "[INFO] [1712656209.895116]: SOMA.Introspecting \n", - "[INFO] [1712656209.895356]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712656209.895605]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Introspecting}\n", - "[INFO] [1712656209.895856]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712656209.896141]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.896626]: Instances: []\n", - "[INFO] [1712656209.896937]: Direct Instances: []\n", - "[INFO] [1712656209.897210]: Inverse Restrictions: []\n", - "[INFO] [1712656209.897453]: -------------------\n", - "[INFO] [1712656209.897686]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712656209.897917]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712656209.898156]: Ancestors: {DUL.Region, SOMA.KineticFrictionAttribute, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656209.898407]: Subclasses: []\n", - "[INFO] [1712656209.898693]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.899175]: Instances: []\n", - "[INFO] [1712656209.899426]: Direct Instances: []\n", - "[INFO] [1712656209.899684]: Inverse Restrictions: []\n", - "[INFO] [1712656209.899919]: -------------------\n", - "[INFO] [1712656209.900153]: SOMA.KinoDynamicData \n", - "[INFO] [1712656209.900385]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656209.900624]: Ancestors: {DUL.InformationEntity, SOMA.KinoDynamicData, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656209.900878]: Subclasses: []\n", - "[INFO] [1712656209.901173]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.901661]: Instances: []\n", - "[INFO] [1712656209.901908]: Direct Instances: []\n", - "[INFO] [1712656209.902152]: Inverse Restrictions: []\n", - "[INFO] [1712656209.902392]: -------------------\n", - "[INFO] [1712656209.902627]: SOMA.Room \n", - "[INFO] [1712656209.902862]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712656209.903099]: Ancestors: {SOMA.Room, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity}\n", - "[INFO] [1712656209.903339]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712656209.903628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.904118]: Instances: []\n", - "[INFO] [1712656209.904373]: Direct Instances: []\n", - "[INFO] [1712656209.904614]: Inverse Restrictions: []\n", - "[INFO] [1712656209.904862]: -------------------\n", - "[INFO] [1712656209.905101]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712656209.905333]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656209.905578]: Ancestors: {SOMA.Computer_Language, SOMA.KnowledgeRepresentationLanguage, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.905819]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712656209.906098]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.906619]: Instances: []\n", - "[INFO] [1712656209.906884]: Direct Instances: []\n", - "[INFO] [1712656209.907142]: Inverse Restrictions: []\n", - "[INFO] [1712656209.907380]: -------------------\n", - "[INFO] [1712656209.907614]: SOMA.Labeling \n", - "[INFO] [1712656209.907848]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712656209.908102]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Labeling, owl.Thing}\n", - "[INFO] [1712656209.908347]: Subclasses: []\n", - "[INFO] [1712656209.908633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656209.909119]: Instances: []\n", - "[INFO] [1712656209.909391]: Direct Instances: []\n", - "[INFO] [1712656209.909646]: Inverse Restrictions: []\n", - "[INFO] [1712656209.909890]: -------------------\n", - "[INFO] [1712656209.910123]: SOMA.Text \n", - "[INFO] [1712656209.910356]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.910604]: Ancestors: {owl.Thing, SOMA.Text}\n", - "[INFO] [1712656209.910848]: Subclasses: []\n", - "[INFO] [1712656209.911137]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656209.911625]: Instances: []\n", - "[INFO] [1712656209.911895]: Direct Instances: []\n", - "[INFO] [1712656209.912248]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712656209.912491]: -------------------\n", - "[INFO] [1712656209.912728]: SOMA.Leaning \n", - "[INFO] [1712656209.912963]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712656209.913211]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Leaning, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.913476]: Subclasses: []\n", - "[INFO] [1712656209.913778]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.914264]: Instances: []\n", - "[INFO] [1712656209.914515]: Direct Instances: []\n", - "[INFO] [1712656209.914775]: Inverse Restrictions: []\n", - "[INFO] [1712656209.915012]: -------------------\n", - "[INFO] [1712656209.915245]: SOMA.PosturalMoving \n", - "[INFO] [1712656209.915470]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712656209.915711]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.915971]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712656209.916257]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.916748]: Instances: []\n", - "[INFO] [1712656209.917019]: Direct Instances: []\n", - "[INFO] [1712656209.917279]: Inverse Restrictions: []\n", - "[INFO] [1712656209.917515]: -------------------\n", - "[INFO] [1712656209.917747]: SOMA.Learning \n", - "[INFO] [1712656209.917977]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712656209.918219]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.918477]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712656209.918769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.919258]: Instances: []\n", - "[INFO] [1712656209.919507]: Direct Instances: []\n", - "[INFO] [1712656209.919749]: Inverse Restrictions: []\n", - "[INFO] [1712656209.919996]: -------------------\n", - "[INFO] [1712656209.920229]: SOMA.Leg \n", - "[INFO] [1712656209.920459]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712656209.920704]: Ancestors: {DUL.PhysicalBody, SOMA.Limb, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PhysicalEffector, SOMA.Leg, SOMA.FunctionalPart}\n", - "[INFO] [1712656209.920963]: Subclasses: []\n", - "[INFO] [1712656209.921250]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.921733]: Instances: []\n", - "[INFO] [1712656209.922004]: Direct Instances: []\n", - "[INFO] [1712656209.922296]: Inverse Restrictions: []\n", - "[INFO] [1712656209.922536]: -------------------\n", - "[INFO] [1712656209.922771]: SOMA.LimbMotion \n", - "[INFO] [1712656209.923015]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712656209.923273]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, SOMA.LimbMotion, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656209.923520]: Subclasses: []\n", - "[INFO] [1712656209.923817]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.924302]: Instances: []\n", - "[INFO] [1712656209.924568]: Direct Instances: []\n", - "[INFO] [1712656209.924823]: Inverse Restrictions: []\n", - "[INFO] [1712656209.925057]: -------------------\n", - "[INFO] [1712656209.925295]: SOMA.LinkedObject \n", - "[INFO] [1712656209.925524]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712656209.925765]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.LinkedObject, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.926019]: Subclasses: []\n", - "[INFO] [1712656209.926307]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.926789]: Instances: []\n", - "[INFO] [1712656209.927044]: Direct Instances: []\n", - "[INFO] [1712656209.927378]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712656209.927637]: -------------------\n", - "[INFO] [1712656209.927876]: SOMA.LinkageState \n", - "[INFO] [1712656209.928118]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712656209.928364]: Ancestors: {DUL.Concept, SOMA.LinkageState, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656209.928599]: Subclasses: []\n", - "[INFO] [1712656209.928891]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.929388]: Instances: []\n", - "[INFO] [1712656209.929649]: Direct Instances: []\n", - "[INFO] [1712656209.929899]: Inverse Restrictions: []\n", - "[INFO] [1712656209.930154]: -------------------\n", - "[INFO] [1712656209.930401]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712656209.930651]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712656209.930904]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656209.931156]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712656209.931441]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.931963]: Instances: []\n", - "[INFO] [1712656209.932229]: Direct Instances: []\n", - "[INFO] [1712656209.932482]: Inverse Restrictions: []\n", - "[INFO] [1712656209.932722]: -------------------\n", - "[INFO] [1712656209.932970]: SOMA.SpatialRelationRole \n", - "[INFO] [1712656209.933215]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712656209.933468]: Ancestors: {DUL.Concept, SOMA.RelationAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SpatialRelationRole}\n", - "[INFO] [1712656209.933718]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712656209.934003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.934515]: Instances: []\n", - "[INFO] [1712656209.934779]: Direct Instances: []\n", - "[INFO] [1712656209.935035]: Inverse Restrictions: []\n", - "[INFO] [1712656209.935273]: -------------------\n", - "[INFO] [1712656209.935507]: SOMA.LocutionaryAction \n", - "[INFO] [1712656209.935740]: Super classes: [owl.Thing]\n", - "[INFO] [1712656209.935987]: Ancestors: {SOMA.LocutionaryAction, owl.Thing}\n", - "[INFO] [1712656209.936231]: Subclasses: []\n", - "[INFO] [1712656209.936518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656209.937003]: Instances: []\n", - "[INFO] [1712656209.937278]: Direct Instances: []\n", - "[INFO] [1712656209.937531]: Inverse Restrictions: []\n", - "[INFO] [1712656209.937769]: -------------------\n", - "[INFO] [1712656209.938007]: SOMA.LookingAt \n", - "[INFO] [1712656209.938239]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656209.938488]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.LookingAt}\n", - "[INFO] [1712656209.938739]: Subclasses: []\n", - "[INFO] [1712656209.939029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.939508]: Instances: []\n", - "[INFO] [1712656209.939764]: Direct Instances: []\n", - "[INFO] [1712656209.940006]: Inverse Restrictions: []\n", - "[INFO] [1712656209.940238]: -------------------\n", - "[INFO] [1712656209.940483]: SOMA.LookingFor \n", - "[INFO] [1712656209.940722]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712656209.940963]: Ancestors: {SOMA.Perceiving, SOMA.LookingFor, owl.Thing}\n", - "[INFO] [1712656209.941199]: Subclasses: []\n", - "[INFO] [1712656209.941483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.941981]: Instances: []\n", - "[INFO] [1712656209.942240]: Direct Instances: []\n", - "[INFO] [1712656209.942488]: Inverse Restrictions: []\n", - "[INFO] [1712656209.942722]: -------------------\n", - "[INFO] [1712656209.942954]: SOMA.Lowering \n", - "[INFO] [1712656209.943189]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656209.943449]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.Lowering, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656209.943711]: Subclasses: []\n", - "[INFO] [1712656209.943997]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.944487]: Instances: []\n", - "[INFO] [1712656209.944754]: Direct Instances: []\n", - "[INFO] [1712656209.945015]: Inverse Restrictions: []\n", - "[INFO] [1712656209.945254]: -------------------\n", - "[INFO] [1712656209.945484]: SOMA.PhysicalAction \n", - "[INFO] [1712656209.945713]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712656209.945953]: Ancestors: {SOMA.PhysicalAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656209.946204]: Subclasses: []\n", - "[INFO] [1712656209.946734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.947259]: Instances: []\n", - "[INFO] [1712656209.947528]: Direct Instances: []\n", - "[INFO] [1712656209.947837]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656209.948101]: -------------------\n", - "[INFO] [1712656209.948344]: SOMA.Markup_Language \n", - "[INFO] [1712656209.948578]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712656209.948834]: Ancestors: {SOMA.Markup_Language, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656209.949101]: Subclasses: []\n", - "[INFO] [1712656209.949413]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.949912]: Instances: []\n", - "[INFO] [1712656209.950167]: Direct Instances: []\n", - "[INFO] [1712656209.950410]: Inverse Restrictions: []\n", - "[INFO] [1712656209.950651]: -------------------\n", - "[INFO] [1712656209.950883]: SOMA.Masterful \n", - "[INFO] [1712656209.951112]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712656209.951352]: Ancestors: {SOMA.Masterful, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656209.951592]: Subclasses: []\n", - "[INFO] [1712656209.951881]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.952380]: Instances: []\n", - "[INFO] [1712656209.952637]: Direct Instances: []\n", - "[INFO] [1712656209.952886]: Inverse Restrictions: []\n", - "[INFO] [1712656209.953128]: -------------------\n", - "[INFO] [1712656209.953365]: SOMA.Material \n", - "[INFO] [1712656209.953600]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656209.953839]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Material}\n", - "[INFO] [1712656209.954073]: Subclasses: []\n", - "[INFO] [1712656209.954354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.954846]: Instances: []\n", - "[INFO] [1712656209.955101]: Direct Instances: []\n", - "[INFO] [1712656209.955347]: Inverse Restrictions: []\n", - "[INFO] [1712656209.955575]: -------------------\n", - "[INFO] [1712656209.955810]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712656209.956051]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712656209.956295]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MedicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656209.956533]: Subclasses: []\n", - "[INFO] [1712656209.956826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712656209.957329]: Instances: []\n", - "[INFO] [1712656209.957592]: Direct Instances: []\n", - "[INFO] [1712656209.957841]: Inverse Restrictions: []\n", - "[INFO] [1712656209.958076]: -------------------\n", - "[INFO] [1712656209.958306]: SOMA.Memorizing \n", - "[INFO] [1712656209.958544]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712656209.958795]: Ancestors: {SOMA.Learning, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Memorizing, DUL.SocialObject, SOMA.InformationStorage, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.959032]: Subclasses: []\n", - "[INFO] [1712656209.959313]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.959806]: Instances: []\n", - "[INFO] [1712656209.960066]: Direct Instances: []\n", - "[INFO] [1712656209.960309]: Inverse Restrictions: []\n", - "[INFO] [1712656209.960541]: -------------------\n", - "[INFO] [1712656209.960774]: SOMA.MentalAction \n", - "[INFO] [1712656209.961030]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712656209.961275]: Ancestors: {SOMA.MentalAction, owl.Thing, DUL.Action, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656209.961516]: Subclasses: []\n", - "[INFO] [1712656209.961804]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.962306]: Instances: []\n", - "[INFO] [1712656209.962569]: Direct Instances: []\n", - "[INFO] [1712656209.962857]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712656209.963096]: -------------------\n", - "[INFO] [1712656209.963336]: SOMA.MeshShape \n", - "[INFO] [1712656209.963625]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712656209.963877]: Ancestors: {SOMA.ShapeRegion, SOMA.MeshShape, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656209.964121]: Subclasses: []\n", - "[INFO] [1712656209.964412]: Properties: [rdf-schema.isDefinedBy, SOMA.hasFilePath, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.964910]: Instances: []\n", - "[INFO] [1712656209.965180]: Direct Instances: []\n", - "[INFO] [1712656209.965435]: Inverse Restrictions: []\n", - "[INFO] [1712656209.965671]: -------------------\n", - "[INFO] [1712656209.965904]: SOMA.MeshShapeData \n", - "[INFO] [1712656209.966139]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712656209.966398]: Ancestors: {SOMA.MeshShapeData, DUL.InformationEntity, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656209.966645]: Subclasses: []\n", - "[INFO] [1712656209.966937]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.967418]: Instances: []\n", - "[INFO] [1712656209.967685]: Direct Instances: []\n", - "[INFO] [1712656209.967939]: Inverse Restrictions: []\n", - "[INFO] [1712656209.968177]: -------------------\n", - "[INFO] [1712656209.968418]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712656209.968659]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712656209.969094]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656209.969501]: Subclasses: []\n", - "[INFO] [1712656209.969920]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.970536]: Instances: []\n", - "[INFO] [1712656209.970978]: Direct Instances: []\n", - "[INFO] [1712656209.971373]: Inverse Restrictions: []\n", - "[INFO] [1712656209.971748]: -------------------\n", - "[INFO] [1712656209.972112]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712656209.972467]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656209.972849]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656209.973238]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712656209.973568]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.974082]: Instances: []\n", - "[INFO] [1712656209.974352]: Direct Instances: []\n", - "[INFO] [1712656209.974622]: Inverse Restrictions: []\n", - "[INFO] [1712656209.974869]: -------------------\n", - "[INFO] [1712656209.975106]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712656209.975338]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712656209.975584]: Ancestors: {SOMA.MetaCognitionMemoryTopic, DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656209.975837]: Subclasses: []\n", - "[INFO] [1712656209.976130]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.976617]: Instances: []\n", - "[INFO] [1712656209.976875]: Direct Instances: []\n", - "[INFO] [1712656209.977118]: Inverse Restrictions: []\n", - "[INFO] [1712656209.977365]: -------------------\n", - "[INFO] [1712656209.977601]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712656209.977832]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712656209.978075]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656209.978342]: Subclasses: []\n", - "[INFO] [1712656209.978639]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.979128]: Instances: []\n", - "[INFO] [1712656209.979388]: Direct Instances: []\n", - "[INFO] [1712656209.979631]: Inverse Restrictions: []\n", - "[INFO] [1712656209.979878]: -------------------\n", - "[INFO] [1712656209.980122]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712656209.980354]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712656209.980603]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656209.980868]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712656209.981171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.981688]: Instances: []\n", - "[INFO] [1712656209.981951]: Direct Instances: []\n", - "[INFO] [1712656209.982205]: Inverse Restrictions: []\n", - "[INFO] [1712656209.982453]: -------------------\n", - "[INFO] [1712656209.982689]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712656209.982922]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712656209.983164]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MetacognitiveControlling, SOMA.MentalTask, DUL.Entity}\n", - "[INFO] [1712656209.983415]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712656209.983758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.984353]: Instances: []\n", - "[INFO] [1712656209.984679]: Direct Instances: []\n", - "[INFO] [1712656209.984988]: Inverse Restrictions: []\n", - "[INFO] [1712656209.985269]: -------------------\n", - "[INFO] [1712656209.985566]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712656209.985852]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712656209.986141]: Ancestors: {SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring, SOMA.Introspecting, owl.Thing}\n", - "[INFO] [1712656209.986426]: Subclasses: []\n", - "[INFO] [1712656209.986776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.987381]: Instances: []\n", - "[INFO] [1712656209.987693]: Direct Instances: []\n", - "[INFO] [1712656209.987980]: Inverse Restrictions: []\n", - "[INFO] [1712656209.988251]: -------------------\n", - "[INFO] [1712656209.988513]: SOMA.Mixing \n", - "[INFO] [1712656209.988774]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712656209.989068]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Mixing}\n", - "[INFO] [1712656209.989349]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712656209.989665]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.990201]: Instances: []\n", - "[INFO] [1712656209.990499]: Direct Instances: []\n", - "[INFO] [1712656209.990772]: Inverse Restrictions: []\n", - "[INFO] [1712656209.991018]: -------------------\n", - "[INFO] [1712656209.991256]: SOMA.MixingTheory \n", - "[INFO] [1712656209.991508]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712656209.991767]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, SOMA.MixingTheory, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.992017]: Subclasses: []\n", - "[INFO] [1712656209.992308]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656209.992831]: Instances: []\n", - "[INFO] [1712656209.993161]: Direct Instances: []\n", - "[INFO] [1712656209.993439]: Inverse Restrictions: []\n", - "[INFO] [1712656209.993704]: -------------------\n", - "[INFO] [1712656209.993958]: SOMA.MonitoringJointState \n", - "[INFO] [1712656209.994204]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712656209.994453]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.MonitoringJointState, DUL.EventType, SOMA.Proprioceiving, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.994697]: Subclasses: []\n", - "[INFO] [1712656209.994987]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656209.995503]: Instances: []\n", - "[INFO] [1712656209.995777]: Direct Instances: []\n", - "[INFO] [1712656209.996035]: Inverse Restrictions: []\n", - "[INFO] [1712656209.996294]: -------------------\n", - "[INFO] [1712656209.996550]: SOMA.Proprioceiving \n", - "[INFO] [1712656209.996813]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712656209.997094]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Proprioceiving, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656209.997391]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712656209.997741]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656209.998353]: Instances: []\n", - "[INFO] [1712656209.998680]: Direct Instances: []\n", - "[INFO] [1712656209.999016]: Inverse Restrictions: []\n", - "[INFO] [1712656209.999331]: -------------------\n", - "[INFO] [1712656209.999626]: SOMA.MovingAway \n", - "[INFO] [1712656209.999919]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712656210.000231]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, SOMA.MovingAway, SOMA.Locomotion, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656210.000545]: Subclasses: []\n", - "[INFO] [1712656210.000897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.001473]: Instances: []\n", - "[INFO] [1712656210.001770]: Direct Instances: []\n", - "[INFO] [1712656210.002054]: Inverse Restrictions: []\n", - "[INFO] [1712656210.002331]: -------------------\n", - "[INFO] [1712656210.002592]: SOMA.MovingTo \n", - "[INFO] [1712656210.002845]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712656210.003109]: Ancestors: {SOMA.MovingTo, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Navigating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.003361]: Subclasses: []\n", - "[INFO] [1712656210.003671]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.004176]: Instances: []\n", - "[INFO] [1712656210.004427]: Direct Instances: []\n", - "[INFO] [1712656210.004666]: Inverse Restrictions: []\n", - "[INFO] [1712656210.004916]: -------------------\n", - "[INFO] [1712656210.005152]: SOMA.Natural_Language \n", - "[INFO] [1712656210.005388]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712656210.005625]: Ancestors: {SOMA.Natural_Language, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656210.005872]: Subclasses: []\n", - "[INFO] [1712656210.006163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.006646]: Instances: []\n", - "[INFO] [1712656210.006920]: Direct Instances: []\n", - "[INFO] [1712656210.007231]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712656210.007474]: -------------------\n", - "[INFO] [1712656210.007708]: SOMA.Natural_Language_Text \n", - "[INFO] [1712656210.007938]: Super classes: [owl.Thing]\n", - "[INFO] [1712656210.008175]: Ancestors: {SOMA.Natural_Language_Text, owl.Thing}\n", - "[INFO] [1712656210.008425]: Subclasses: []\n", - "[INFO] [1712656210.008716]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656210.009204]: Instances: []\n", - "[INFO] [1712656210.009455]: Direct Instances: []\n", - "[INFO] [1712656210.009742]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712656210.009994]: -------------------\n", - "[INFO] [1712656210.010234]: SOMA.Ontology \n", - "[INFO] [1712656210.010467]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712656210.010703]: Ancestors: {owl.Thing, SOMA.Structured_Text, SOMA.Ontology}\n", - "[INFO] [1712656210.010945]: Subclasses: []\n", - "[INFO] [1712656210.011245]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isGivenMeaningBy]\n", - "[INFO] [1712656210.011734]: Instances: []\n", - "[INFO] [1712656210.011986]: Direct Instances: []\n", - "[INFO] [1712656210.012273]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712656210.012528]: -------------------\n", - "[INFO] [1712656210.012773]: SOMA.Ontology_Language \n", - "[INFO] [1712656210.013016]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712656210.013266]: Ancestors: {SOMA.Computer_Language, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, SOMA.FormalLanguage, DUL.Object, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656210.013506]: Subclasses: []\n", - "[INFO] [1712656210.013792]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.014290]: Instances: []\n", - "[INFO] [1712656210.014555]: Direct Instances: []\n", - "[INFO] [1712656210.014861]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712656210.015105]: -------------------\n", - "[INFO] [1712656210.015338]: SOMA.Option \n", - "[INFO] [1712656210.015585]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712656210.015836]: Ancestors: {DUL.Concept, SOMA.Option, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656210.016079]: Subclasses: []\n", - "[INFO] [1712656210.016366]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.016867]: Instances: []\n", - "[INFO] [1712656210.017129]: Direct Instances: []\n", - "[INFO] [1712656210.017375]: Inverse Restrictions: []\n", - "[INFO] [1712656210.017605]: -------------------\n", - "[INFO] [1712656210.017841]: SOMA.Singleton \n", - "[INFO] [1712656210.018073]: Super classes: [owl.Thing]\n", - "[INFO] [1712656210.018318]: Ancestors: {owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712656210.018567]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712656210.018852]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", - "[INFO] [1712656210.019339]: Instances: []\n", - "[INFO] [1712656210.019609]: Direct Instances: []\n", - "[INFO] [1712656210.019865]: Inverse Restrictions: []\n", - "[INFO] [1712656210.020104]: -------------------\n", - "[INFO] [1712656210.020339]: SOMA.Orienting \n", - "[INFO] [1712656210.020575]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712656210.020826]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, SOMA.Orienting, DUL.Task, SOMA.Positioning, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656210.021396]: Subclasses: []\n", - "[INFO] [1712656210.021728]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.022233]: Instances: []\n", - "[INFO] [1712656210.022563]: Direct Instances: []\n", - "[INFO] [1712656210.022856]: Inverse Restrictions: []\n", - "[INFO] [1712656210.023107]: -------------------\n", - "[INFO] [1712656210.023349]: SOMA.Positioning \n", - "[INFO] [1712656210.023593]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712656210.023843]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Positioning, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656210.024115]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712656210.024409]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.024904]: Instances: []\n", - "[INFO] [1712656210.025160]: Direct Instances: []\n", - "[INFO] [1712656210.025405]: Inverse Restrictions: []\n", - "[INFO] [1712656210.025645]: -------------------\n", - "[INFO] [1712656210.025884]: SOMA.Origin \n", - "[INFO] [1712656210.026119]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712656210.026361]: Ancestors: {DUL.Concept, SOMA.SpatioTemporalRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Origin, SOMA.Location}\n", - "[INFO] [1712656210.026597]: Subclasses: []\n", - "[INFO] [1712656210.026888]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.027396]: Instances: []\n", - "[INFO] [1712656210.027664]: Direct Instances: []\n", - "[INFO] [1712656210.027956]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712656210.028205]: -------------------\n", - "[INFO] [1712656210.028454]: SOMA.ParkingArms \n", - "[INFO] [1712656210.028692]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712656210.028941]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose, SOMA.AssumingArmPose, SOMA.ParkingArms}\n", - "[INFO] [1712656210.029186]: Subclasses: []\n", - "[INFO] [1712656210.029471]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.029986]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712656210.030301]: Direct Instances: [SOMA.parking_arms]\n", - "[INFO] [1712656210.030568]: Inverse Restrictions: []\n", - "[INFO] [1712656210.030814]: -------------------\n", - "[INFO] [1712656210.031062]: SOMA.PhaseTransition \n", - "[INFO] [1712656210.031305]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712656210.031551]: Ancestors: {DUL.Concept, SOMA.Alteration, SOMA.PhaseTransition, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ProcessType}\n", - "[INFO] [1712656210.031797]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712656210.032082]: Properties: [rdf-schema.isDefinedBy, rdf-schema.seeAlso, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.032603]: Instances: []\n", - "[INFO] [1712656210.032890]: Direct Instances: []\n", - "[INFO] [1712656210.033173]: Inverse Restrictions: []\n", - "[INFO] [1712656210.033437]: -------------------\n", - "[INFO] [1712656210.033713]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712656210.033995]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712656210.034312]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.PhysicalAccessibility, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656210.034623]: Subclasses: []\n", - "[INFO] [1712656210.034992]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.035656]: Instances: []\n", - "[INFO] [1712656210.036022]: Direct Instances: []\n", - "[INFO] [1712656210.036379]: Inverse Restrictions: []\n", - "[INFO] [1712656210.036729]: -------------------\n", - "[INFO] [1712656210.037074]: SOMA.PhysicalBlockage \n", - "[INFO] [1712656210.037409]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712656210.037760]: Ancestors: {DUL.Concept, SOMA.PhysicalBlockage, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity}\n", - "[INFO] [1712656210.038098]: Subclasses: []\n", - "[INFO] [1712656210.038494]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.039142]: Instances: []\n", - "[INFO] [1712656210.039491]: Direct Instances: []\n", - "[INFO] [1712656210.039815]: Inverse Restrictions: []\n", - "[INFO] [1712656210.040116]: -------------------\n", - "[INFO] [1712656210.040410]: SOMA.PhysicalExistence \n", - "[INFO] [1712656210.040697]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712656210.041012]: Ancestors: {owl.Thing, SOMA.PhysicalExistence, SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event}\n", - "[INFO] [1712656210.041315]: Subclasses: []\n", - "[INFO] [1712656210.041655]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.042233]: Instances: []\n", - "[INFO] [1712656210.042564]: Direct Instances: []\n", - "[INFO] [1712656210.042858]: Inverse Restrictions: []\n", - "[INFO] [1712656210.043133]: -------------------\n", - "[INFO] [1712656210.043392]: SOMA.PhysicalState \n", - "[INFO] [1712656210.043641]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712656210.043898]: Ancestors: {owl.Thing, SOMA.State, DUL.Entity, SOMA.PhysicalState, DUL.Event}\n", - "[INFO] [1712656210.044161]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712656210.044457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656210.044955]: Instances: []\n", - "[INFO] [1712656210.045234]: Direct Instances: []\n", - "[INFO] [1712656210.045499]: Inverse Restrictions: []\n", - "[INFO] [1712656210.045745]: -------------------\n", - "[INFO] [1712656210.045980]: SOMA.PhysicsProcess \n", - "[INFO] [1712656210.046213]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712656210.046447]: Ancestors: {DUL.Process, owl.Thing, SOMA.PhysicsProcess, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656210.046722]: Subclasses: []\n", - "[INFO] [1712656210.047046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656210.047541]: Instances: []\n", - "[INFO] [1712656210.047801]: Direct Instances: []\n", - "[INFO] [1712656210.048048]: Inverse Restrictions: []\n", - "[INFO] [1712656210.048297]: -------------------\n", - "[INFO] [1712656210.048542]: SOMA.PlacingTheory \n", - "[INFO] [1712656210.048816]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712656210.049085]: Ancestors: {SOMA.ExecutableSchematicTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, owl.Thing, DUL.Theory, DUL.SocialObject, DUL.Entity, SOMA.PlacingTheory}\n", - "[INFO] [1712656210.049328]: Subclasses: []\n", - "[INFO] [1712656210.049631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656210.050116]: Instances: []\n", - "[INFO] [1712656210.050368]: Direct Instances: []\n", - "[INFO] [1712656210.050606]: Inverse Restrictions: []\n", - "[INFO] [1712656210.050832]: -------------------\n", - "[INFO] [1712656210.051074]: SOMA.PlanarJoint \n", - "[INFO] [1712656210.051312]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712656210.051564]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.PlanarJoint, DUL.Entity}\n", - "[INFO] [1712656210.051811]: Subclasses: []\n", - "[INFO] [1712656210.052108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.052648]: Instances: []\n", - "[INFO] [1712656210.053242]: Direct Instances: []\n", - "[INFO] [1712656210.053741]: Inverse Restrictions: []\n", - "[INFO] [1712656210.054188]: -------------------\n", - "[INFO] [1712656210.054635]: SOMA.PluginRole \n", - "[INFO] [1712656210.055089]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712656210.055503]: Ancestors: {DUL.Concept, SOMA.InterfaceComponentRole, DUL.Object, owl.Thing, SOMA.PluginRole, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656210.055887]: Subclasses: []\n", - "[INFO] [1712656210.056383]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDefinedIn, rdf-schema.label]\n", - "[INFO] [1712656210.057186]: Instances: []\n", - "[INFO] [1712656210.057575]: Direct Instances: []\n", - "[INFO] [1712656210.058120]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712656210.058505]: -------------------\n", - "[INFO] [1712656210.058873]: SOMA.Pourable \n", - "[INFO] [1712656210.059245]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712656210.059631]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Pourable, DUL.Quality, owl.Thing, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656210.060020]: Subclasses: []\n", - "[INFO] [1712656210.060506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.061400]: Instances: []\n", - "[INFO] [1712656210.061869]: Direct Instances: []\n", - "[INFO] [1712656210.062460]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712656210.062938]: -------------------\n", - "[INFO] [1712656210.063459]: SOMA.PouredObject \n", - "[INFO] [1712656210.063932]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712656210.064340]: Ancestors: {DUL.Concept, SOMA.PouredObject, SOMA.Patient, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656210.064710]: Subclasses: []\n", - "[INFO] [1712656210.065140]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.065998]: Instances: []\n", - "[INFO] [1712656210.066441]: Direct Instances: []\n", - "[INFO] [1712656210.066921]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712656210.067312]: -------------------\n", - "[INFO] [1712656210.067692]: SOMA.Pouring \n", - "[INFO] [1712656210.068053]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712656210.068430]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712656210.068792]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712656210.069243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656210.069969]: Instances: []\n", - "[INFO] [1712656210.070355]: Direct Instances: []\n", - "[INFO] [1712656210.070760]: Inverse Restrictions: []\n", - "[INFO] [1712656210.071116]: -------------------\n", - "[INFO] [1712656210.071454]: SOMA.PouringInto \n", - "[INFO] [1712656210.071780]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712656210.072122]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PouringInto, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712656210.072495]: Subclasses: []\n", - "[INFO] [1712656210.073070]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.073824]: Instances: []\n", - "[INFO] [1712656210.074281]: Direct Instances: []\n", - "[INFO] [1712656210.074661]: Inverse Restrictions: []\n", - "[INFO] [1712656210.075003]: -------------------\n", - "[INFO] [1712656210.075326]: SOMA.PouringOnto \n", - "[INFO] [1712656210.075636]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712656210.075951]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.PouringOnto, DUL.SocialObject, DUL.Entity, SOMA.Actuating, SOMA.Pouring}\n", - "[INFO] [1712656210.076277]: Subclasses: []\n", - "[INFO] [1712656210.076635]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.077279]: Instances: []\n", - "[INFO] [1712656210.077672]: Direct Instances: []\n", - "[INFO] [1712656210.078065]: Inverse Restrictions: []\n", - "[INFO] [1712656210.078396]: -------------------\n", - "[INFO] [1712656210.078695]: SOMA.Prediction \n", - "[INFO] [1712656210.078977]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712656210.079268]: Ancestors: {SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.Prediction, SOMA.Prospecting, owl.Thing}\n", - "[INFO] [1712656210.079558]: Subclasses: []\n", - "[INFO] [1712656210.079861]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.080368]: Instances: []\n", - "[INFO] [1712656210.080654]: Direct Instances: []\n", - "[INFO] [1712656210.080928]: Inverse Restrictions: []\n", - "[INFO] [1712656210.081198]: -------------------\n", - "[INFO] [1712656210.081454]: SOMA.Prospecting \n", - "[INFO] [1712656210.081696]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712656210.081933]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.DerivingInformation, SOMA.Prospecting}\n", - "[INFO] [1712656210.082181]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712656210.082476]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.083027]: Instances: []\n", - "[INFO] [1712656210.083322]: Direct Instances: []\n", - "[INFO] [1712656210.083589]: Inverse Restrictions: []\n", - "[INFO] [1712656210.083833]: -------------------\n", - "[INFO] [1712656210.084085]: SOMA.Predilection \n", - "[INFO] [1712656210.084352]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712656210.084644]: Ancestors: {SOMA.Predilection, DUL.SocialRelation, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.084932]: Subclasses: []\n", - "[INFO] [1712656210.085269]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656210.085823]: Instances: []\n", - "[INFO] [1712656210.086106]: Direct Instances: []\n", - "[INFO] [1712656210.086380]: Inverse Restrictions: []\n", - "[INFO] [1712656210.086643]: -------------------\n", - "[INFO] [1712656210.086913]: SOMA.PreferenceOrder \n", - "[INFO] [1712656210.087187]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712656210.087479]: Ancestors: {DUL.SocialRelation, DUL.Relation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.PreferenceOrder}\n", - "[INFO] [1712656210.087756]: Subclasses: []\n", - "[INFO] [1712656210.088079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, SOMA.orders]\n", - "[INFO] [1712656210.088626]: Instances: []\n", - "[INFO] [1712656210.088921]: Direct Instances: []\n", - "[INFO] [1712656210.089204]: Inverse Restrictions: []\n", - "[INFO] [1712656210.089472]: -------------------\n", - "[INFO] [1712656210.089732]: SOMA.PreferenceRegion \n", - "[INFO] [1712656210.089996]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712656210.090288]: Ancestors: {SOMA.PreferenceRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.SocialObjectAttribute, DUL.Entity}\n", - "[INFO] [1712656210.090565]: Subclasses: []\n", - "[INFO] [1712656210.090889]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isRegionFor, rdf-schema.label]\n", - "[INFO] [1712656210.091446]: Instances: []\n", - "[INFO] [1712656210.091739]: Direct Instances: []\n", - "[INFO] [1712656210.092016]: Inverse Restrictions: []\n", - "[INFO] [1712656210.092274]: -------------------\n", - "[INFO] [1712656210.092526]: SOMA.PrismaticJoint \n", - "[INFO] [1712656210.092803]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712656210.093067]: Ancestors: {DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.PrismaticJoint}\n", - "[INFO] [1712656210.093328]: Subclasses: []\n", - "[INFO] [1712656210.093627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", - "[INFO] [1712656210.094124]: Instances: []\n", - "[INFO] [1712656210.094389]: Direct Instances: []\n", - "[INFO] [1712656210.094634]: Inverse Restrictions: []\n", - "[INFO] [1712656210.094866]: -------------------\n", - "[INFO] [1712656210.095091]: SOMA.ProcessFlow \n", - "[INFO] [1712656210.095322]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712656210.095571]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ProcessFlow, DUL.Entity}\n", - "[INFO] [1712656210.095812]: Subclasses: []\n", - "[INFO] [1712656210.096096]: Properties: [rdf-schema.isDefinedBy, SOMA.definesProcess, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.096602]: Instances: []\n", - "[INFO] [1712656210.096919]: Direct Instances: []\n", - "[INFO] [1712656210.097233]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712656210.097481]: -------------------\n", - "[INFO] [1712656210.097719]: SOMA.Progression \n", - "[INFO] [1712656210.097964]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712656210.098243]: Ancestors: {DUL.Entity, SOMA.Progression, DUL.Situation, owl.Thing}\n", - "[INFO] [1712656210.098487]: Subclasses: []\n", - "[INFO] [1712656210.098781]: Properties: [rdf-schema.isDefinedBy, DUL.satisfies, rdf-schema.comment]\n", - "[INFO] [1712656210.099264]: Instances: []\n", - "[INFO] [1712656210.099537]: Direct Instances: []\n", - "[INFO] [1712656210.099787]: Inverse Restrictions: []\n", - "[INFO] [1712656210.100025]: -------------------\n", - "[INFO] [1712656210.100255]: SOMA.Protector \n", - "[INFO] [1712656210.100485]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712656210.100742]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.Protector, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656210.101211]: Subclasses: []\n", - "[INFO] [1712656210.101672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.102335]: Instances: []\n", - "[INFO] [1712656210.102772]: Direct Instances: []\n", - "[INFO] [1712656210.103141]: Inverse Restrictions: []\n", - "[INFO] [1712656210.103547]: -------------------\n", - "[INFO] [1712656210.103976]: SOMA.ProximalTheory \n", - "[INFO] [1712656210.104384]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712656210.104759]: Ancestors: {SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, SOMA.ProximalTheory, DUL.Object, DUL.Theory, DUL.SocialObject, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656210.105111]: Subclasses: []\n", - "[INFO] [1712656210.105506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.defines, rdf-schema.label]\n", - "[INFO] [1712656210.106393]: Instances: []\n", - "[INFO] [1712656210.106774]: Direct Instances: []\n", - "[INFO] [1712656210.107128]: Inverse Restrictions: []\n", - "[INFO] [1712656210.107466]: -------------------\n", - "[INFO] [1712656210.107799]: SOMA.PushingAway \n", - "[INFO] [1712656210.108128]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712656210.108487]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.Actuating, SOMA.PushingAway}\n", - "[INFO] [1712656210.108875]: Subclasses: []\n", - "[INFO] [1712656210.109353]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.109970]: Instances: []\n", - "[INFO] [1712656210.110349]: Direct Instances: []\n", - "[INFO] [1712656210.110698]: Inverse Restrictions: []\n", - "[INFO] [1712656210.111028]: -------------------\n", - "[INFO] [1712656210.111349]: SOMA.PushingDown \n", - "[INFO] [1712656210.111667]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712656210.112007]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Pushing, DUL.Entity, SOMA.PushingDown, SOMA.Actuating}\n", - "[INFO] [1712656210.112346]: Subclasses: []\n", - "[INFO] [1712656210.112727]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.113305]: Instances: []\n", - "[INFO] [1712656210.113653]: Direct Instances: []\n", - "[INFO] [1712656210.113995]: Inverse Restrictions: []\n", - "[INFO] [1712656210.114318]: -------------------\n", - "[INFO] [1712656210.114639]: SOMA.PuttingDown \n", - "[INFO] [1712656210.114956]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712656210.115284]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.PuttingDown, DUL.Entity}\n", - "[INFO] [1712656210.115615]: Subclasses: []\n", - "[INFO] [1712656210.115998]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.116568]: Instances: []\n", - "[INFO] [1712656210.116921]: Direct Instances: []\n", - "[INFO] [1712656210.117267]: Inverse Restrictions: []\n", - "[INFO] [1712656210.117587]: -------------------\n", - "[INFO] [1712656210.117912]: SOMA.QualityTransition \n", - "[INFO] [1712656210.118225]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712656210.118553]: Ancestors: {DUL.Situation, SOMA.QualityTransition, DUL.Transition, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656210.118885]: Subclasses: []\n", - "[INFO] [1712656210.119260]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.119826]: Instances: []\n", - "[INFO] [1712656210.120173]: Direct Instances: []\n", - "[INFO] [1712656210.120504]: Inverse Restrictions: []\n", - "[INFO] [1712656210.120822]: -------------------\n", - "[INFO] [1712656210.121141]: SOMA.Query \n", - "[INFO] [1712656210.121450]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712656210.121778]: Ancestors: {DUL.Concept, SOMA.Item, SOMA.Patient, SOMA.Query, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.Message}\n", - "[INFO] [1712656210.122113]: Subclasses: []\n", - "[INFO] [1712656210.122488]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.123051]: Instances: []\n", - "[INFO] [1712656210.123400]: Direct Instances: []\n", - "[INFO] [1712656210.123773]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712656210.124094]: -------------------\n", - "[INFO] [1712656210.124413]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712656210.124727]: Super classes: [owl.Thing]\n", - "[INFO] [1712656210.125062]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", - "[INFO] [1712656210.125394]: Subclasses: []\n", - "[INFO] [1712656210.125769]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.126352]: Instances: []\n", - "[INFO] [1712656210.126706]: Direct Instances: []\n", - "[INFO] [1712656210.127052]: Inverse Restrictions: []\n", - "[INFO] [1712656210.127371]: -------------------\n", - "[INFO] [1712656210.127694]: SOMA.QueryEngine \n", - "[INFO] [1712656210.128011]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656210.128336]: Ancestors: {DUL.Concept, SOMA.QueryEngine, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656210.128670]: Subclasses: []\n", - "[INFO] [1712656210.129074]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.129601]: Instances: []\n", - "[INFO] [1712656210.129881]: Direct Instances: []\n", - "[INFO] [1712656210.130150]: Inverse Restrictions: []\n", - "[INFO] [1712656210.130404]: -------------------\n", - "[INFO] [1712656210.130653]: SOMA.Reaching \n", - "[INFO] [1712656210.130962]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712656210.131206]: Ancestors: {SOMA.PhysicalTask, SOMA.Reaching, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.131461]: Subclasses: []\n", - "[INFO] [1712656210.131762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.132253]: Instances: []\n", - "[INFO] [1712656210.132524]: Direct Instances: []\n", - "[INFO] [1712656210.132784]: Inverse Restrictions: []\n", - "[INFO] [1712656210.133024]: -------------------\n", - "[INFO] [1712656210.133262]: SOMA.Retracting \n", - "[INFO] [1712656210.133493]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712656210.133752]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, SOMA.EndEffectorPositioning, DUL.SocialObject, DUL.Entity, SOMA.Retracting}\n", - "[INFO] [1712656210.134001]: Subclasses: []\n", - "[INFO] [1712656210.134286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.134786]: Instances: []\n", - "[INFO] [1712656210.135047]: Direct Instances: []\n", - "[INFO] [1712656210.135297]: Inverse Restrictions: []\n", - "[INFO] [1712656210.135535]: -------------------\n", - "[INFO] [1712656210.135767]: SOMA.Reasoner \n", - "[INFO] [1712656210.136000]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712656210.136251]: Ancestors: {DUL.Concept, SOMA.Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656210.136508]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712656210.136793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.137281]: Instances: []\n", - "[INFO] [1712656210.137550]: Direct Instances: []\n", - "[INFO] [1712656210.137808]: Inverse Restrictions: []\n", - "[INFO] [1712656210.138048]: -------------------\n", - "[INFO] [1712656210.138285]: SOMA.RecipientRole \n", - "[INFO] [1712656210.138522]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712656210.138776]: Ancestors: {SOMA.BeneficiaryRole, DUL.Concept, SOMA.GoalRole, SOMA.RecipientRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656210.139021]: Subclasses: []\n", - "[INFO] [1712656210.139302]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.139777]: Instances: []\n", - "[INFO] [1712656210.140050]: Direct Instances: []\n", - "[INFO] [1712656210.140303]: Inverse Restrictions: []\n", - "[INFO] [1712656210.140539]: -------------------\n", - "[INFO] [1712656210.140787]: SOMA.RecordedEpisode \n", - "[INFO] [1712656210.141025]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712656210.141273]: Ancestors: {DUL.Situation, SOMA.Episode, owl.Thing, DUL.Entity, SOMA.RecordedEpisode}\n", - "[INFO] [1712656210.141528]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712656210.141818]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", - "[INFO] [1712656210.142309]: Instances: []\n", - "[INFO] [1712656210.142564]: Direct Instances: []\n", - "[INFO] [1712656210.142818]: Inverse Restrictions: []\n", - "[INFO] [1712656210.143054]: -------------------\n", - "[INFO] [1712656210.143287]: SOMA.RedColor \n", - "[INFO] [1712656210.143518]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712656210.143752]: Ancestors: {DUL.Region, SOMA.ColorRegion, DUL.Abstract, owl.Thing, SOMA.RedColor, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656210.144005]: Subclasses: []\n", - "[INFO] [1712656210.144295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.144781]: Instances: []\n", - "[INFO] [1712656210.145058]: Direct Instances: []\n", - "[INFO] [1712656210.145308]: Inverse Restrictions: []\n", - "[INFO] [1712656210.145545]: -------------------\n", - "[INFO] [1712656210.145778]: SOMA.Reification \n", - "[INFO] [1712656210.146013]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712656210.146266]: Ancestors: {SOMA.Reification, DUL.Object, DUL.Description, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.146511]: Subclasses: []\n", - "[INFO] [1712656210.146797]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", - "[INFO] [1712656210.147286]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712656210.147564]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712656210.148101]: Inverse Restrictions: []\n", - "[INFO] [1712656210.148431]: -------------------\n", - "[INFO] [1712656210.148687]: SOMA.RelationalDatabase \n", - "[INFO] [1712656210.149020]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712656210.149430]: Ancestors: {SOMA.RelationalDatabase, DUL.Concept, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656210.149820]: Subclasses: []\n", - "[INFO] [1712656210.150249]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.150864]: Instances: []\n", - "[INFO] [1712656210.151242]: Direct Instances: []\n", - "[INFO] [1712656210.151615]: Inverse Restrictions: []\n", - "[INFO] [1712656210.151899]: -------------------\n", - "[INFO] [1712656210.152254]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712656210.152539]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712656210.152815]: Ancestors: {SOMA.RelationalQueryLanguage, SOMA.Computer_Language, SOMA.FormalLanguage, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Entity, SOMA.System}\n", - "[INFO] [1712656210.153073]: Subclasses: []\n", - "[INFO] [1712656210.153368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.153858]: Instances: []\n", - "[INFO] [1712656210.154116]: Direct Instances: []\n", - "[INFO] [1712656210.154375]: Inverse Restrictions: []\n", - "[INFO] [1712656210.154616]: -------------------\n", - "[INFO] [1712656210.154849]: SOMA.RelevantPart \n", - "[INFO] [1712656210.155079]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712656210.155314]: Ancestors: {SOMA.Feature, DUL.Object, owl.Thing, DUL.Entity, SOMA.RelevantPart}\n", - "[INFO] [1712656210.155554]: Subclasses: []\n", - "[INFO] [1712656210.155843]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.156331]: Instances: []\n", - "[INFO] [1712656210.156610]: Direct Instances: []\n", - "[INFO] [1712656210.156875]: Inverse Restrictions: []\n", - "[INFO] [1712656210.157124]: -------------------\n", - "[INFO] [1712656210.157366]: SOMA.Remembering \n", - "[INFO] [1712656210.157608]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712656210.157858]: Ancestors: {SOMA.Remembering, owl.Thing}\n", - "[INFO] [1712656210.158104]: Subclasses: []\n", - "[INFO] [1712656210.158388]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.158869]: Instances: []\n", - "[INFO] [1712656210.159144]: Direct Instances: []\n", - "[INFO] [1712656210.159399]: Inverse Restrictions: []\n", - "[INFO] [1712656210.159639]: -------------------\n", - "[INFO] [1712656210.159874]: SOMA.Retrospecting \n", - "[INFO] [1712656210.160108]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712656210.160348]: Ancestors: {SOMA.InformationAcquisition, owl.Thing, SOMA.Retrospecting}\n", - "[INFO] [1712656210.160595]: Subclasses: []\n", - "[INFO] [1712656210.160897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.161386]: Instances: []\n", - "[INFO] [1712656210.161646]: Direct Instances: []\n", - "[INFO] [1712656210.161942]: Inverse Restrictions: []\n", - "[INFO] [1712656210.162197]: -------------------\n", - "[INFO] [1712656210.162440]: SOMA.RemovedObject \n", - "[INFO] [1712656210.162683]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712656210.162936]: Ancestors: {DUL.Concept, SOMA.ExcludedObject, SOMA.Patient, SOMA.EventAdjacentRole, SOMA.RemovedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656210.163182]: Subclasses: []\n", - "[INFO] [1712656210.163484]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.163990]: Instances: []\n", - "[INFO] [1712656210.164248]: Direct Instances: []\n", - "[INFO] [1712656210.164491]: Inverse Restrictions: []\n", - "[INFO] [1712656210.164727]: -------------------\n", - "[INFO] [1712656210.164986]: SOMA.Replanning \n", - "[INFO] [1712656210.165232]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712656210.165481]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, SOMA.Replanning, owl.Thing}\n", - "[INFO] [1712656210.165728]: Subclasses: []\n", - "[INFO] [1712656210.166029]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.166521]: Instances: []\n", - "[INFO] [1712656210.166787]: Direct Instances: []\n", - "[INFO] [1712656210.167036]: Inverse Restrictions: []\n", - "[INFO] [1712656210.167270]: -------------------\n", - "[INFO] [1712656210.167511]: SOMA.RevoluteJoint \n", - "[INFO] [1712656210.167763]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712656210.168020]: Ancestors: {SOMA.HingeJoint, SOMA.RevoluteJoint, DUL.PhysicalBody, SOMA.MovableJoint, SOMA.Joint, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656210.168267]: Subclasses: []\n", - "[INFO] [1712656210.168557]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasJointLimit]\n", - "[INFO] [1712656210.169064]: Instances: []\n", - "[INFO] [1712656210.169336]: Direct Instances: []\n", - "[INFO] [1712656210.169588]: Inverse Restrictions: []\n", - "[INFO] [1712656210.169828]: -------------------\n", - "[INFO] [1712656210.170064]: SOMA.Surface \n", - "[INFO] [1712656210.170316]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712656210.170594]: Ancestors: {SOMA.Surface, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.PhysicalPlace, DUL.Entity}\n", - "[INFO] [1712656210.170848]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712656210.171147]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.171652]: Instances: []\n", - "[INFO] [1712656210.171918]: Direct Instances: []\n", - "[INFO] [1712656210.172174]: Inverse Restrictions: []\n", - "[INFO] [1712656210.172413]: -------------------\n", - "[INFO] [1712656210.172663]: SOMA.Rubbing \n", - "[INFO] [1712656210.172947]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712656210.173276]: Ancestors: {SOMA.Rubbing, SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656210.173545]: Subclasses: []\n", - "[INFO] [1712656210.173864]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.174367]: Instances: []\n", - "[INFO] [1712656210.174634]: Direct Instances: []\n", - "[INFO] [1712656210.174885]: Inverse Restrictions: []\n", - "[INFO] [1712656210.175133]: -------------------\n", - "[INFO] [1712656210.175376]: SOMA.Scene \n", - "[INFO] [1712656210.175618]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712656210.175859]: Ancestors: {SOMA.Scene, DUL.Situation, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656210.176098]: Subclasses: []\n", - "[INFO] [1712656210.176388]: Properties: [rdf-schema.isDefinedBy, DUL.satisfies, rdf-schema.comment, DUL.includesEvent]\n", - "[INFO] [1712656210.176928]: Instances: []\n", - "[INFO] [1712656210.177261]: Direct Instances: []\n", - "[INFO] [1712656210.177650]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712656210.177938]: -------------------\n", - "[INFO] [1712656210.178201]: SOMA.SelectedObject \n", - "[INFO] [1712656210.178455]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712656210.178710]: Ancestors: {DUL.Concept, SOMA.SelectedObject, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656210.178960]: Subclasses: []\n", - "[INFO] [1712656210.179266]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.179763]: Instances: []\n", - "[INFO] [1712656210.180033]: Direct Instances: []\n", - "[INFO] [1712656210.180368]: Inverse Restrictions: []\n", - "[INFO] [1712656210.180630]: -------------------\n", - "[INFO] [1712656210.180884]: SOMA.Selecting \n", - "[INFO] [1712656210.181217]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712656210.181555]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.Selecting, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712656210.181852]: Subclasses: []\n", - "[INFO] [1712656210.182171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.182697]: Instances: []\n", - "[INFO] [1712656210.183059]: Direct Instances: []\n", - "[INFO] [1712656210.183344]: Inverse Restrictions: []\n", - "[INFO] [1712656210.183609]: -------------------\n", - "[INFO] [1712656210.183862]: SOMA.SelectingItem \n", - "[INFO] [1712656210.184115]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712656210.184382]: Ancestors: {SOMA.SelectingItem, SOMA.DerivingInformation, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.InformationAcquisition, SOMA.Planning, owl.Thing}\n", - "[INFO] [1712656210.184635]: Subclasses: []\n", - "[INFO] [1712656210.184940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.isTaskOfOutputRole]\n", - "[INFO] [1712656210.185447]: Instances: []\n", - "[INFO] [1712656210.185734]: Direct Instances: []\n", - "[INFO] [1712656210.185993]: Inverse Restrictions: []\n", - "[INFO] [1712656210.186239]: -------------------\n", - "[INFO] [1712656210.186481]: SOMA.SelfReflection \n", - "[INFO] [1712656210.186715]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712656210.186962]: Ancestors: {DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.MetacognitiveControlling, SOMA.MentalTask, DUL.Entity, SOMA.SelfReflection}\n", - "[INFO] [1712656210.187208]: Subclasses: []\n", - "[INFO] [1712656210.187496]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656210.187978]: Instances: []\n", - "[INFO] [1712656210.188252]: Direct Instances: []\n", - "[INFO] [1712656210.188502]: Inverse Restrictions: []\n", - "[INFO] [1712656210.188746]: -------------------\n", - "[INFO] [1712656210.188986]: SOMA.Serving \n", - "[INFO] [1712656210.189238]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712656210.189506]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Delivering, DUL.SocialObject, SOMA.Serving, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656210.189755]: Subclasses: []\n", - "[INFO] [1712656210.190046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.190527]: Instances: []\n", - "[INFO] [1712656210.190800]: Direct Instances: []\n", - "[INFO] [1712656210.191054]: Inverse Restrictions: []\n", - "[INFO] [1712656210.191289]: -------------------\n", - "[INFO] [1712656210.191520]: SOMA.SettingGripper \n", - "[INFO] [1712656210.191746]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712656210.191982]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.SettingGripper, DUL.SocialObject, DUL.Entity, SOMA.AssumingPose}\n", - "[INFO] [1712656210.192235]: Subclasses: []\n", - "[INFO] [1712656210.192523]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.193005]: Instances: []\n", - "[INFO] [1712656210.193274]: Direct Instances: []\n", - "[INFO] [1712656210.193524]: Inverse Restrictions: []\n", - "[INFO] [1712656210.193759]: -------------------\n", - "[INFO] [1712656210.193988]: SOMA.6DPose \n", - "[INFO] [1712656210.194235]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712656210.194482]: Ancestors: {DUL.Region, SOMA.6DPose, DUL.Abstract, owl.Thing, DUL.Entity, DUL.SpaceRegion}\n", - "[INFO] [1712656210.194721]: Subclasses: []\n", - "[INFO] [1712656210.195004]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasPositionData]\n", - "[INFO] [1712656210.195500]: Instances: []\n", - "[INFO] [1712656210.195762]: Direct Instances: []\n", - "[INFO] [1712656210.196047]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712656210.196289]: -------------------\n", - "[INFO] [1712656210.196542]: SOMA.Sharpness \n", - "[INFO] [1712656210.196808]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656210.197067]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Sharpness, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656210.197314]: Subclasses: []\n", - "[INFO] [1712656210.197608]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.198096]: Instances: []\n", - "[INFO] [1712656210.198368]: Direct Instances: []\n", - "[INFO] [1712656210.198620]: Inverse Restrictions: []\n", - "[INFO] [1712656210.198855]: -------------------\n", - "[INFO] [1712656210.199093]: SOMA.Simulating \n", - "[INFO] [1712656210.199335]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712656210.199579]: Ancestors: {SOMA.DerivingInformation, SOMA.Simulating, SOMA.InformationAcquisition, SOMA.Prospecting, owl.Thing}\n", - "[INFO] [1712656210.199820]: Subclasses: []\n", - "[INFO] [1712656210.200108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.200608]: Instances: []\n", - "[INFO] [1712656210.200881]: Direct Instances: []\n", - "[INFO] [1712656210.201142]: Inverse Restrictions: []\n", - "[INFO] [1712656210.201375]: -------------------\n", - "[INFO] [1712656210.201608]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712656210.201838]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712656210.202093]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.Simulation_Reasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656210.202336]: Subclasses: []\n", - "[INFO] [1712656210.202620]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.203110]: Instances: []\n", - "[INFO] [1712656210.203375]: Direct Instances: []\n", - "[INFO] [1712656210.203621]: Inverse Restrictions: []\n", - "[INFO] [1712656210.203850]: -------------------\n", - "[INFO] [1712656210.204080]: SOMA.Size \n", - "[INFO] [1712656210.204309]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712656210.204562]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, DUL.Quality, SOMA.Size, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656210.204809]: Subclasses: []\n", - "[INFO] [1712656210.205094]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.205572]: Instances: []\n", - "[INFO] [1712656210.205847]: Direct Instances: []\n", - "[INFO] [1712656210.206104]: Inverse Restrictions: []\n", - "[INFO] [1712656210.206345]: -------------------\n", - "[INFO] [1712656210.206584]: SOMA.Slicing \n", - "[INFO] [1712656210.206818]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712656210.207064]: Ancestors: {SOMA.Cutting, SOMA.Slicing, SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712656210.207316]: Subclasses: []\n", - "[INFO] [1712656210.207601]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.208081]: Instances: []\n", - "[INFO] [1712656210.208349]: Direct Instances: []\n", - "[INFO] [1712656210.208599]: Inverse Restrictions: []\n", - "[INFO] [1712656210.208833]: -------------------\n", - "[INFO] [1712656210.209064]: SOMA.Sluggishness \n", - "[INFO] [1712656210.209289]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712656210.209536]: Ancestors: {SOMA.Amateurish, DUL.Description, DUL.Object, owl.Thing, SOMA.DexterityDiagnosis, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.Sluggishness, DUL.Diagnosis}\n", - "[INFO] [1712656210.209782]: Subclasses: []\n", - "[INFO] [1712656210.210063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.210545]: Instances: []\n", - "[INFO] [1712656210.210804]: Direct Instances: []\n", - "[INFO] [1712656210.211047]: Inverse Restrictions: []\n", - "[INFO] [1712656210.211278]: -------------------\n", - "[INFO] [1712656210.211502]: SOMA.SocialState \n", - "[INFO] [1712656210.211738]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712656210.211984]: Ancestors: {SOMA.SocialState, owl.Thing, SOMA.State, DUL.Entity, DUL.Event}\n", - "[INFO] [1712656210.212220]: Subclasses: []\n", - "[INFO] [1712656210.212510]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712656210.213021]: Instances: []\n", - "[INFO] [1712656210.213292]: Direct Instances: []\n", - "[INFO] [1712656210.213582]: Inverse Restrictions: []\n", - "[INFO] [1712656210.213830]: -------------------\n", - "[INFO] [1712656210.214066]: SOMA.Software_Configuration \n", - "[INFO] [1712656210.214309]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712656210.214569]: Ancestors: {DUL.Collection, DUL.Configuration, SOMA.Software_Configuration, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.214818]: Subclasses: []\n", - "[INFO] [1712656210.215112]: Properties: [DUL.isDescribedBy, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712656210.215599]: Instances: []\n", - "[INFO] [1712656210.215874]: Direct Instances: []\n", - "[INFO] [1712656210.216223]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712656210.216465]: -------------------\n", - "[INFO] [1712656210.216704]: SOMA.SoftwareLibrary \n", - "[INFO] [1712656210.216940]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712656210.217194]: Ancestors: {SOMA.SoftwareLibrary, DUL.Design, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Software, DUL.Entity}\n", - "[INFO] [1712656210.217442]: Subclasses: []\n", - "[INFO] [1712656210.217730]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712656210.218217]: Instances: []\n", - "[INFO] [1712656210.218484]: Direct Instances: []\n", - "[INFO] [1712656210.218736]: Inverse Restrictions: []\n", - "[INFO] [1712656210.218967]: -------------------\n", - "[INFO] [1712656210.219199]: SOMA.SourceMaterialRole \n", - "[INFO] [1712656210.219424]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712656210.219665]: Ancestors: {DUL.Concept, SOMA.SourceMaterialRole, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656210.219914]: Subclasses: []\n", - "[INFO] [1712656210.220205]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.220694]: Instances: []\n", - "[INFO] [1712656210.220973]: Direct Instances: []\n", - "[INFO] [1712656210.221229]: Inverse Restrictions: []\n", - "[INFO] [1712656210.221470]: -------------------\n", - "[INFO] [1712656210.221712]: SOMA.SphereShape \n", - "[INFO] [1712656210.221949]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712656210.222204]: Ancestors: {SOMA.ShapeRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, SOMA.SphereShape}\n", - "[INFO] [1712656210.222610]: Subclasses: []\n", - "[INFO] [1712656210.223017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712656210.223634]: Instances: []\n", - "[INFO] [1712656210.224012]: Direct Instances: []\n", - "[INFO] [1712656210.224393]: Inverse Restrictions: []\n", - "[INFO] [1712656210.224674]: -------------------\n", - "[INFO] [1712656210.225052]: SOMA.Standing \n", - "[INFO] [1712656210.225427]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712656210.225725]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, SOMA.Standing, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656210.226068]: Subclasses: []\n", - "[INFO] [1712656210.226390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.226893]: Instances: []\n", - "[INFO] [1712656210.227161]: Direct Instances: []\n", - "[INFO] [1712656210.227420]: Inverse Restrictions: []\n", - "[INFO] [1712656210.227670]: -------------------\n", - "[INFO] [1712656210.227911]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712656210.228147]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712656210.228387]: Ancestors: {DUL.Region, SOMA.StaticFrictionAttribute, DUL.Abstract, owl.Thing, SOMA.FrictionAttribute, DUL.Entity, DUL.PhysicalAttribute}\n", - "[INFO] [1712656210.228630]: Subclasses: []\n", - "[INFO] [1712656210.228922]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.229415]: Instances: []\n", - "[INFO] [1712656210.229672]: Direct Instances: []\n", - "[INFO] [1712656210.229928]: Inverse Restrictions: []\n", - "[INFO] [1712656210.230166]: -------------------\n", - "[INFO] [1712656210.230402]: SOMA.Status \n", - "[INFO] [1712656210.230629]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712656210.230867]: Ancestors: {DUL.Concept, SOMA.Status, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.231114]: Subclasses: []\n", - "[INFO] [1712656210.231403]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.231882]: Instances: []\n", - "[INFO] [1712656210.232138]: Direct Instances: []\n", - "[INFO] [1712656210.232423]: Inverse Restrictions: []\n", - "[INFO] [1712656210.232673]: -------------------\n", - "[INFO] [1712656210.232915]: SOMA.StatusFailure \n", - "[INFO] [1712656210.233400]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656210.233818]: Ancestors: {SOMA.StatusFailure, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656210.234248]: Subclasses: []\n", - "[INFO] [1712656210.234705]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.235385]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712656210.235823]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712656210.236203]: Inverse Restrictions: []\n", - "[INFO] [1712656210.236550]: -------------------\n", - "[INFO] [1712656210.236893]: SOMA.StimulusRole \n", - "[INFO] [1712656210.237308]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712656210.237725]: Ancestors: {DUL.Concept, SOMA.CausativeRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.StimulusRole}\n", - "[INFO] [1712656210.238088]: Subclasses: []\n", - "[INFO] [1712656210.238482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.239064]: Instances: []\n", - "[INFO] [1712656210.239428]: Direct Instances: []\n", - "[INFO] [1712656210.239771]: Inverse Restrictions: []\n", - "[INFO] [1712656210.240100]: -------------------\n", - "[INFO] [1712656210.240419]: SOMA.Stirring \n", - "[INFO] [1712656210.240750]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712656210.241104]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Entity, DUL.Task, DUL.EventType, SOMA.Constructing, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Stirring, SOMA.Mixing}\n", - "[INFO] [1712656210.241446]: Subclasses: []\n", - "[INFO] [1712656210.241829]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712656210.242409]: Instances: []\n", - "[INFO] [1712656210.242773]: Direct Instances: []\n", - "[INFO] [1712656210.243116]: Inverse Restrictions: []\n", - "[INFO] [1712656210.243442]: -------------------\n", - "[INFO] [1712656210.243763]: SOMA.Storage \n", - "[INFO] [1712656210.244082]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712656210.244438]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Containment, DUL.Quality, SOMA.Enclosing, owl.Thing, SOMA.Storage, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656210.244788]: Subclasses: []\n", - "[INFO] [1712656210.245171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.245750]: Instances: []\n", - "[INFO] [1712656210.246114]: Direct Instances: []\n", - "[INFO] [1712656210.246456]: Inverse Restrictions: []\n", - "[INFO] [1712656210.246785]: -------------------\n", - "[INFO] [1712656210.247103]: SOMA.StructuralDesign \n", - "[INFO] [1712656210.247421]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712656210.247750]: Ancestors: {DUL.Design, DUL.Description, DUL.Object, SOMA.StructuralDesign, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.248089]: Subclasses: []\n", - "[INFO] [1712656210.248469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.249062]: Instances: []\n", - "[INFO] [1712656210.249424]: Direct Instances: []\n", - "[INFO] [1712656210.249762]: Inverse Restrictions: []\n", - "[INFO] [1712656210.250078]: -------------------\n", - "[INFO] [1712656210.250397]: SOMA.TaskInvocation \n", - "[INFO] [1712656210.250717]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712656210.251049]: Ancestors: {DUL.Workflow, DUL.Plan, SOMA.TaskInvocation, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.251384]: Subclasses: []\n", - "[INFO] [1712656210.251762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.definesTask]\n", - "[INFO] [1712656210.252337]: Instances: []\n", - "[INFO] [1712656210.252679]: Direct Instances: []\n", - "[INFO] [1712656210.253119]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712656210.253419]: -------------------\n", - "[INFO] [1712656210.253678]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712656210.253925]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712656210.254175]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656210.254444]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712656210.254744]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.255250]: Instances: []\n", - "[INFO] [1712656210.255523]: Direct Instances: []\n", - "[INFO] [1712656210.255785]: Inverse Restrictions: []\n", - "[INFO] [1712656210.256027]: -------------------\n", - "[INFO] [1712656210.256264]: SOMA.Successfulness \n", - "[INFO] [1712656210.256501]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712656210.256747]: Ancestors: {SOMA.Successfulness, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656210.257012]: Subclasses: []\n", - "[INFO] [1712656210.257312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.257796]: Instances: []\n", - "[INFO] [1712656210.258048]: Direct Instances: []\n", - "[INFO] [1712656210.258286]: Inverse Restrictions: []\n", - "[INFO] [1712656210.258527]: -------------------\n", - "[INFO] [1712656210.258764]: SOMA.SupportState \n", - "[INFO] [1712656210.259011]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712656210.259258]: Ancestors: {SOMA.FunctionalControl, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.StateType, DUL.Entity, SOMA.SupportState}\n", - "[INFO] [1712656210.259495]: Subclasses: []\n", - "[INFO] [1712656210.259792]: Properties: [rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.260282]: Instances: []\n", - "[INFO] [1712656210.260534]: Direct Instances: []\n", - "[INFO] [1712656210.260778]: Inverse Restrictions: []\n", - "[INFO] [1712656210.261032]: -------------------\n", - "[INFO] [1712656210.261277]: SOMA.Supporter \n", - "[INFO] [1712656210.261509]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712656210.261757]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.Supporter, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656210.261991]: Subclasses: []\n", - "[INFO] [1712656210.262283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.262784]: Instances: []\n", - "[INFO] [1712656210.263057]: Direct Instances: []\n", - "[INFO] [1712656210.263360]: Inverse Restrictions: []\n", - "[INFO] [1712656210.263598]: -------------------\n", - "[INFO] [1712656210.263829]: SOMA.SupportTheory \n", - "[INFO] [1712656210.264070]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712656210.264323]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.SchematicTheory, DUL.Description, DUL.Object, SOMA.ControlTheory, DUL.Theory, DUL.SocialObject, owl.Thing, SOMA.FunctionalSpatialSchemaTheory, SOMA.SupportTheory}\n", - "[INFO] [1712656210.264564]: Subclasses: []\n", - "[INFO] [1712656210.264851]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.265341]: Instances: []\n", - "[INFO] [1712656210.265608]: Direct Instances: []\n", - "[INFO] [1712656210.265864]: Inverse Restrictions: []\n", - "[INFO] [1712656210.266099]: -------------------\n", - "[INFO] [1712656210.266330]: SOMA.SupportedObject \n", - "[INFO] [1712656210.266557]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712656210.266806]: Ancestors: {DUL.Concept, SOMA.Patient, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.SupportedObject, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656210.267046]: Subclasses: []\n", - "[INFO] [1712656210.267323]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.267802]: Instances: []\n", - "[INFO] [1712656210.268082]: Direct Instances: []\n", - "[INFO] [1712656210.268336]: Inverse Restrictions: []\n", - "[INFO] [1712656210.268568]: -------------------\n", - "[INFO] [1712656210.268800]: SOMA.SymbolicReasoner \n", - "[INFO] [1712656210.269033]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712656210.269275]: Ancestors: {DUL.Concept, SOMA.Reasoner, SOMA.SymbolicReasoner, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.SoftwareRole}\n", - "[INFO] [1712656210.269526]: Subclasses: []\n", - "[INFO] [1712656210.269813]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.270293]: Instances: []\n", - "[INFO] [1712656210.270543]: Direct Instances: []\n", - "[INFO] [1712656210.270796]: Inverse Restrictions: []\n", - "[INFO] [1712656210.271030]: -------------------\n", - "[INFO] [1712656210.271267]: SOMA.Tapping \n", - "[INFO] [1712656210.271500]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712656210.271737]: Ancestors: {SOMA.DirectedMotion, DUL.Concept, DUL.EventType, DUL.Object, SOMA.Tapping, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656210.271981]: Subclasses: []\n", - "[INFO] [1712656210.272265]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.272747]: Instances: []\n", - "[INFO] [1712656210.273001]: Direct Instances: []\n", - "[INFO] [1712656210.273238]: Inverse Restrictions: []\n", - "[INFO] [1712656210.273483]: -------------------\n", - "[INFO] [1712656210.273722]: SOMA.Taxis \n", - "[INFO] [1712656210.273952]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712656210.274192]: Ancestors: {DUL.Concept, DUL.EventType, SOMA.Taxis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656210.274433]: Subclasses: []\n", - "[INFO] [1712656210.274719]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.275202]: Instances: []\n", - "[INFO] [1712656210.275451]: Direct Instances: []\n", - "[INFO] [1712656210.275693]: Inverse Restrictions: []\n", - "[INFO] [1712656210.275935]: -------------------\n", - "[INFO] [1712656210.276168]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712656210.276404]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712656210.276641]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656210.276886]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712656210.277185]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712656210.277687]: Instances: []\n", - "[INFO] [1712656210.277938]: Direct Instances: []\n", - "[INFO] [1712656210.278187]: Inverse Restrictions: []\n", - "[INFO] [1712656210.278432]: -------------------\n", - "[INFO] [1712656210.278666]: SOMA.Temperature \n", - "[INFO] [1712656210.278903]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712656210.279154]: Ancestors: {SOMA.PhysicalQuality, SOMA.Intrinsic, SOMA.Temperature, DUL.Quality, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656210.279399]: Subclasses: []\n", - "[INFO] [1712656210.279682]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712656210.280165]: Instances: []\n", - "[INFO] [1712656210.280437]: Direct Instances: []\n", - "[INFO] [1712656210.280735]: Inverse Restrictions: []\n", - "[INFO] [1712656210.280982]: -------------------\n", - "[INFO] [1712656210.281219]: SOMA.TemperatureRegion \n", - "[INFO] [1712656210.281449]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712656210.281704]: Ancestors: {SOMA.TemperatureRegion, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity}\n", - "[INFO] [1712656210.281947]: Subclasses: []\n", - "[INFO] [1712656210.282230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.282733]: Instances: []\n", - "[INFO] [1712656210.282998]: Direct Instances: []\n", - "[INFO] [1712656210.283322]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712656210.283569]: -------------------\n", - "[INFO] [1712656210.283803]: SOMA.Tempering \n", - "[INFO] [1712656210.284041]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712656210.284321]: Ancestors: {SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Variability, DUL.Quality, owl.Thing, SOMA.Tempering, DUL.Entity, SOMA.Disposition}\n", - "[INFO] [1712656210.284600]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712656210.284978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.285556]: Instances: []\n", - "[INFO] [1712656210.285849]: Direct Instances: []\n", - "[INFO] [1712656210.286126]: Inverse Restrictions: []\n", - "[INFO] [1712656210.286375]: -------------------\n", - "[INFO] [1712656210.286685]: SOMA.ThinkAloud \n", - "[INFO] [1712656210.286949]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712656210.287239]: Ancestors: {DUL.Concept, DUL.Task, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ThinkAloud, DUL.Entity}\n", - "[INFO] [1712656210.287503]: Subclasses: []\n", - "[INFO] [1712656210.287799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.288290]: Instances: []\n", - "[INFO] [1712656210.288549]: Direct Instances: []\n", - "[INFO] [1712656210.288816]: Inverse Restrictions: []\n", - "[INFO] [1712656210.289058]: -------------------\n", - "[INFO] [1712656210.289292]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712656210.289526]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656210.289773]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, SOMA.ThinkAloudActionTopic, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656210.290028]: Subclasses: []\n", - "[INFO] [1712656210.290317]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.290808]: Instances: []\n", - "[INFO] [1712656210.291078]: Direct Instances: []\n", - "[INFO] [1712656210.291330]: Inverse Restrictions: []\n", - "[INFO] [1712656210.291562]: -------------------\n", - "[INFO] [1712656210.291791]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712656210.292020]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712656210.292269]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656210.292521]: Subclasses: []\n", - "[INFO] [1712656210.292809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.293298]: Instances: []\n", - "[INFO] [1712656210.293573]: Direct Instances: []\n", - "[INFO] [1712656210.293831]: Inverse Restrictions: []\n", - "[INFO] [1712656210.294068]: -------------------\n", - "[INFO] [1712656210.294300]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712656210.294527]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656210.294772]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, SOMA.ThinkAloudKnowledgeTopic, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656210.295033]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712656210.295322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.295815]: Instances: []\n", - "[INFO] [1712656210.296082]: Direct Instances: []\n", - "[INFO] [1712656210.296335]: Inverse Restrictions: []\n", - "[INFO] [1712656210.296575]: -------------------\n", - "[INFO] [1712656210.296816]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712656210.297049]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656210.297309]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656210.297555]: Subclasses: []\n", - "[INFO] [1712656210.297837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.298315]: Instances: []\n", - "[INFO] [1712656210.298589]: Direct Instances: []\n", - "[INFO] [1712656210.298843]: Inverse Restrictions: []\n", - "[INFO] [1712656210.299080]: -------------------\n", - "[INFO] [1712656210.299310]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712656210.299539]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656210.299796]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656210.300040]: Subclasses: []\n", - "[INFO] [1712656210.300322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.300808]: Instances: []\n", - "[INFO] [1712656210.301085]: Direct Instances: []\n", - "[INFO] [1712656210.301339]: Inverse Restrictions: []\n", - "[INFO] [1712656210.301576]: -------------------\n", - "[INFO] [1712656210.301808]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712656210.302038]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656210.302291]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656210.302538]: Subclasses: []\n", - "[INFO] [1712656210.302827]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.303309]: Instances: []\n", - "[INFO] [1712656210.303573]: Direct Instances: []\n", - "[INFO] [1712656210.303821]: Inverse Restrictions: []\n", - "[INFO] [1712656210.304057]: -------------------\n", - "[INFO] [1712656210.304284]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712656210.304510]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712656210.304748]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.ThinkAloudPlanTopic, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656210.305002]: Subclasses: []\n", - "[INFO] [1712656210.305295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.305784]: Instances: []\n", - "[INFO] [1712656210.306034]: Direct Instances: []\n", - "[INFO] [1712656210.306282]: Inverse Restrictions: []\n", - "[INFO] [1712656210.306523]: -------------------\n", - "[INFO] [1712656210.306755]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712656210.306983]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712656210.307221]: Ancestors: {DUL.Concept, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudKnowledgeTopic, SOMA.EventAdjacentRole, SOMA.ThinkAloudSceneKnowledgeTopic, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity, SOMA.ThinkAloudTopic}\n", - "[INFO] [1712656210.307459]: Subclasses: []\n", - "[INFO] [1712656210.307748]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.308235]: Instances: []\n", - "[INFO] [1712656210.308505]: Direct Instances: []\n", - "[INFO] [1712656210.308760]: Inverse Restrictions: []\n", - "[INFO] [1712656210.309054]: -------------------\n", - "[INFO] [1712656210.309288]: SOMA.Threshold \n", - "[INFO] [1712656210.309517]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712656210.309753]: Ancestors: {DUL.Concept, SOMA.Threshold, DUL.Object, owl.Thing, DUL.Parameter, DUL.SocialObject, DUL.Entity}\n", - "[INFO] [1712656210.310002]: Subclasses: []\n", - "[INFO] [1712656210.310284]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.310768]: Instances: []\n", - "[INFO] [1712656210.311017]: Direct Instances: []\n", - "[INFO] [1712656210.311255]: Inverse Restrictions: []\n", - "[INFO] [1712656210.311498]: -------------------\n", - "[INFO] [1712656210.311737]: SOMA.Throwing \n", - "[INFO] [1712656210.311967]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712656210.312211]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, SOMA.Throwing, DUL.EventType, SOMA.Manipulating, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.Actuating}\n", - "[INFO] [1712656210.312461]: Subclasses: []\n", - "[INFO] [1712656210.312750]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.313238]: Instances: []\n", - "[INFO] [1712656210.313499]: Direct Instances: []\n", - "[INFO] [1712656210.313762]: Inverse Restrictions: []\n", - "[INFO] [1712656210.313999]: -------------------\n", - "[INFO] [1712656210.314229]: SOMA.TimeRole \n", - "[INFO] [1712656210.314469]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712656210.314717]: Ancestors: {SOMA.TimeRole, SOMA.SpatioTemporalRole, DUL.Concept, SOMA.EventAdjacentRole, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Role, DUL.Entity}\n", - "[INFO] [1712656210.314956]: Subclasses: []\n", - "[INFO] [1712656210.315238]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.315737]: Instances: []\n", - "[INFO] [1712656210.315997]: Direct Instances: []\n", - "[INFO] [1712656210.316246]: Inverse Restrictions: []\n", - "[INFO] [1712656210.316480]: -------------------\n", - "[INFO] [1712656210.316708]: SOMA.Transporting \n", - "[INFO] [1712656210.317044]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712656210.317370]: Ancestors: {SOMA.PhysicalTask, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", - "[INFO] [1712656210.317650]: Subclasses: []\n", - "[INFO] [1712656210.317958]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.318457]: Instances: []\n", - "[INFO] [1712656210.318736]: Direct Instances: []\n", - "[INFO] [1712656210.318996]: Inverse Restrictions: []\n", - "[INFO] [1712656210.319239]: -------------------\n", - "[INFO] [1712656210.319471]: SOMA.Triplestore \n", - "[INFO] [1712656210.319703]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712656210.319950]: Ancestors: {DUL.Concept, DUL.Object, owl.Thing, SOMA.Triplestore, DUL.SocialObject, SOMA.Database, DUL.Role, DUL.Entity, SOMA.GraphDatabase, SOMA.SoftwareRole}\n", - "[INFO] [1712656210.320205]: Subclasses: []\n", - "[INFO] [1712656210.320493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.320984]: Instances: []\n", - "[INFO] [1712656210.321239]: Direct Instances: []\n", - "[INFO] [1712656210.321494]: Inverse Restrictions: []\n", - "[INFO] [1712656210.321734]: -------------------\n", - "[INFO] [1712656210.321968]: SOMA.Turning \n", - "[INFO] [1712656210.322196]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712656210.322441]: Ancestors: {SOMA.PosturalMoving, DUL.Concept, DUL.EventType, SOMA.Turning, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.BodyMovement, DUL.Entity, SOMA.Motion, SOMA.ProcessType}\n", - "[INFO] [1712656210.322693]: Subclasses: []\n", - "[INFO] [1712656210.322987]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.323474]: Instances: []\n", - "[INFO] [1712656210.323728]: Direct Instances: []\n", - "[INFO] [1712656210.323970]: Inverse Restrictions: []\n", - "[INFO] [1712656210.324212]: -------------------\n", - "[INFO] [1712656210.324446]: SOMA.UnavailableSoftware \n", - "[INFO] [1712656210.324676]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712656210.324923]: Ancestors: {SOMA.UnavailableSoftware, SOMA.FunctionalDiagnosis, DUL.Description, SOMA.SoftwareDiagnosis, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.TechnicalDiagnosis, DUL.Entity, DUL.Diagnosis}\n", - "[INFO] [1712656210.325159]: Subclasses: []\n", - "[INFO] [1712656210.325450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.325936]: Instances: []\n", - "[INFO] [1712656210.326185]: Direct Instances: []\n", - "[INFO] [1712656210.326427]: Inverse Restrictions: []\n", - "[INFO] [1712656210.326669]: -------------------\n", - "[INFO] [1712656210.326903]: SOMA.Unsuccessfulness \n", - "[INFO] [1712656210.327132]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712656210.327374]: Ancestors: {DUL.Description, DUL.Object, owl.Thing, DUL.SocialObject, SOMA.Unsuccessfulness, DUL.Entity, SOMA.BehavioralDiagnosis, SOMA.SuccessDiagnosis, DUL.Diagnosis}\n", - "[INFO] [1712656210.327625]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712656210.327919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712656210.328414]: Instances: []\n", - "[INFO] [1712656210.328682]: Direct Instances: []\n", - "[INFO] [1712656210.328943]: Inverse Restrictions: []\n", - "[INFO] [1712656210.329179]: -------------------\n", - "[INFO] [1712656210.329413]: SOMA.VideoData \n", - "[INFO] [1712656210.329642]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712656210.329881]: Ancestors: {SOMA.VideoData, DUL.InformationEntity, DUL.Object, owl.Thing, DUL.SocialObject, DUL.Entity, DUL.InformationObject}\n", - "[INFO] [1712656210.330137]: Subclasses: []\n", - "[INFO] [1712656210.330428]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712656210.330917]: Instances: []\n", - "[INFO] [1712656210.331166]: Direct Instances: []\n", - "[INFO] [1712656210.331405]: Inverse Restrictions: []\n", - "[INFO] [1712656210.331644]: -------------------\n", - "[INFO] [1712656210.331884]: SOMA.3DPosition \n", - "[INFO] [1712656210.332119]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712656210.332356]: Ancestors: {SOMA.3DPosition, DUL.Region, DUL.Abstract, owl.Thing, DUL.Entity, DUL.SpaceRegion}\n", - "[INFO] [1712656210.332603]: Subclasses: []\n", - "[INFO] [1712656210.332897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasPositionData]\n", - "[INFO] [1712656210.333382]: Instances: []\n", - "[INFO] [1712656210.333681]: Direct Instances: []\n", - "[INFO] [1712656210.333947]: Inverse Restrictions: []\n", - "[INFO] [1712656210.334183]: -------------------\n", - "[INFO] [1712656210.334416]: SOMA.OntologyPlaceHolderObject \n", - "[INFO] [1712656210.334648]: Super classes: [SOMA.Container, owl.Thing]\n", - "[INFO] [1712656210.334924]: Ancestors: {DUL.Concept, DUL.Entity, SOMA.ResourceRole, SOMA.OntologyPlaceHolderObject, SOMA.EventAdjacentRole, SOMA.Container, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656210.335174]: Subclasses: [SOMA.Ontoegg_tray]\n", - "[INFO] [1712656210.335452]: Properties: []\n", - "[INFO] [1712656210.335959]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656210.336226]: Direct Instances: []\n", - "[INFO] [1712656210.336473]: Inverse Restrictions: []\n", - "[INFO] [1712656210.336707]: -------------------\n", - "[INFO] [1712656210.336941]: SOMA.OntologyHandheldObject \n", - "[INFO] [1712656210.337170]: Super classes: [owl.Thing]\n", - "[INFO] [1712656210.337430]: Ancestors: {owl.Thing, SOMA.OntologyHandheldObject}\n", - "[INFO] [1712656210.337677]: Subclasses: [SOMA.Ontoegg]\n", - "[INFO] [1712656210.337958]: Properties: []\n", - "[INFO] [1712656210.338485]: Instances: [SOMA.egg_concept]\n", - "[INFO] [1712656210.338763]: Direct Instances: []\n", - "[INFO] [1712656210.339023]: Inverse Restrictions: []\n", - "[INFO] [1712656210.339263]: -------------------\n", - "[INFO] [1712656210.339504]: SOMA.OntologySubject \n", - "[INFO] [1712656210.339740]: Super classes: [owl.Thing]\n", - "[INFO] [1712656210.340075]: Ancestors: {owl.Thing, SOMA.OntologySubject}\n", - "[INFO] [1712656210.340369]: Subclasses: []\n", - "[INFO] [1712656210.340675]: Properties: []\n", - "[INFO] [1712656210.341220]: Instances: [SOMA.subject]\n", - "[INFO] [1712656210.341495]: Direct Instances: [SOMA.subject]\n", - "[INFO] [1712656210.341751]: Inverse Restrictions: []\n", - "[INFO] [1712656210.342006]: -------------------\n", - "[INFO] [1712656210.342304]: SOMA.OntologyObject \n", - "[INFO] [1712656210.342554]: Super classes: [owl.Thing]\n", - "[INFO] [1712656210.342811]: Ancestors: {owl.Thing, SOMA.OntologyObject}\n", - "[INFO] [1712656210.343049]: Subclasses: []\n", - "[INFO] [1712656210.343335]: Properties: []\n", - "[INFO] [1712656210.343853]: Instances: [SOMA.object]\n", - "[INFO] [1712656210.344111]: Direct Instances: [SOMA.object]\n", - "[INFO] [1712656210.344359]: Inverse Restrictions: []\n", - "[INFO] [1712656210.344590]: -------------------\n", - "[INFO] [1712656210.344834]: SOMA.Ontoegg \n", - "[INFO] [1712656210.345069]: Super classes: [SOMA.OntologyHandheldObject, owl.Thing]\n", - "[INFO] [1712656210.345324]: Ancestors: {SOMA.Ontoegg, owl.Thing, SOMA.OntologyHandheldObject}\n", - "[INFO] [1712656210.345560]: Subclasses: []\n", - "[INFO] [1712656210.345828]: Properties: []\n", - "[INFO] [1712656210.346330]: Instances: [SOMA.egg_concept]\n", - "[INFO] [1712656210.346594]: Direct Instances: [SOMA.egg_concept]\n", - "[INFO] [1712656210.346846]: Inverse Restrictions: []\n", - "[INFO] [1712656210.347079]: -------------------\n", - "[INFO] [1712656210.347310]: SOMA.Ontoegg_tray \n", - "[INFO] [1712656210.347553]: Super classes: [SOMA.OntologyPlaceHolderObject, owl.Thing]\n", - "[INFO] [1712656210.347821]: Ancestors: {DUL.Concept, SOMA.Ontoegg_tray, DUL.Entity, SOMA.ResourceRole, SOMA.OntologyPlaceHolderObject, SOMA.EventAdjacentRole, SOMA.Container, DUL.Object, owl.Thing, SOMA.Instrument, DUL.SocialObject, DUL.Role, SOMA.Restrictor}\n", - "[INFO] [1712656210.348063]: Subclasses: []\n", - "[INFO] [1712656210.348331]: Properties: []\n", - "[INFO] [1712656210.349006]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656210.349386]: Direct Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712656210.349652]: Inverse Restrictions: []\n", - "[INFO] [1712656210.349891]: -------------------\n", - "[INFO] [1712656210.350124]: SOMA.DynamicOntologyConcept \n", - "[INFO] [1712656210.350372]: Super classes: [owl.Thing]\n", - "[INFO] [1712656210.350671]: Ancestors: {owl.Thing, SOMA.DynamicOntologyConcept}\n", - "[INFO] [1712656210.350928]: Subclasses: []\n", - "[INFO] [1712656210.351207]: Properties: []\n", - "[INFO] [1712656210.351749]: Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", - "[INFO] [1712656210.352041]: Direct Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", - "[INFO] [1712656210.352310]: Inverse Restrictions: []\n" + "[INFO] [1712690291.185135]: -------------------\n", + "[INFO] [1712690291.185760]: SOMA.DesignedContainer \n", + "[INFO] [1712690291.186187]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712690291.186590]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.186904]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712690291.187305]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690291.244938]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712690291.245481]: Direct Instances: []\n", + "[INFO] [1712690291.245826]: Inverse Restrictions: []\n", + "[INFO] [1712690291.247283]: -------------------\n", + "[INFO] [1712690291.247610]: DUL.PhysicalObject \n", + "[INFO] [1712690291.247908]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690291.248192]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690291.248475]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712690291.248818]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.249617]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712690291.249916]: Direct Instances: []\n", + "[INFO] [1712690291.255525]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712690291.255843]: -------------------\n", + "[INFO] [1712690291.256108]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712690291.256364]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690291.256701]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690291.257046]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712690291.257388]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.257920]: Instances: []\n", + "[INFO] [1712690291.258194]: Direct Instances: []\n", + "[INFO] [1712690291.258461]: Inverse Restrictions: []\n", + "[INFO] [1712690291.258711]: -------------------\n", + "[INFO] [1712690291.258973]: DUL.PhysicalObject \n", + "[INFO] [1712690291.259227]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690291.259480]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690291.259737]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712690291.260050]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.260857]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712690291.261204]: Direct Instances: []\n", + "[INFO] [1712690291.263985]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712690291.264335]: -------------------\n", + "[INFO] [1712690291.264607]: DUL.PhysicalObject \n", + "[INFO] [1712690291.264866]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690291.265125]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690291.265406]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", + "[INFO] [1712690291.265726]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.266498]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712690291.266795]: Direct Instances: []\n", + "[INFO] [1712690291.269280]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", + "[INFO] [1712690291.269587]: -------------------\n", + "[INFO] [1712690291.269861]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712690291.270113]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690291.270376]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690291.270640]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712690291.270942]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.271476]: Instances: []\n", + "[INFO] [1712690291.271766]: Direct Instances: []\n", + "[INFO] [1712690291.272038]: Inverse Restrictions: []\n", + "[INFO] [1712690291.273082]: -------------------\n", + "[INFO] [1712690291.273383]: SOMA.Affordance \n", + "[INFO] [1712690291.273700]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712690291.274004]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Affordance, DUL.Relation, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690291.274265]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712690291.274568]: Properties: [rdf-schema.isDefinedBy, SOMA.definesBearer, SOMA.definesTrigger, rdf-schema.comment, DUL.definesTask]\n", + "[INFO] [1712690291.275088]: Instances: []\n", + "[INFO] [1712690291.275362]: Direct Instances: []\n", + "[INFO] [1712690291.276495]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712690291.276781]: -------------------\n", + "[INFO] [1712690291.277047]: SOMA.Disposition \n", + "[INFO] [1712690291.278765]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712690291.279093]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.279397]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712690291.279714]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712690291.280269]: Instances: []\n", + "[INFO] [1712690291.280550]: Direct Instances: []\n", + "[INFO] [1712690291.280875]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712690291.281135]: -------------------\n", + "[INFO] [1712690291.281387]: SOMA.Setpoint \n", + "[INFO] [1712690291.281631]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712690291.281902]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Parameter, SOMA.Setpoint}\n", + "[INFO] [1712690291.282155]: Subclasses: []\n", + "[INFO] [1712690291.282461]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.282984]: Instances: []\n", + "[INFO] [1712690291.283286]: Direct Instances: []\n", + "[INFO] [1712690291.283560]: Inverse Restrictions: []\n", + "[INFO] [1712690291.283827]: -------------------\n", + "[INFO] [1712690291.284081]: SOMA.Answer \n", + "[INFO] [1712690291.284333]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712690291.284639]: Ancestors: {DUL.Entity, SOMA.Answer, SOMA.Message, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.284893]: Subclasses: []\n", + "[INFO] [1712690291.285202]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.285694]: Instances: []\n", + "[INFO] [1712690291.285962]: Direct Instances: []\n", + "[INFO] [1712690291.286647]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712690291.286914]: -------------------\n", + "[INFO] [1712690291.287161]: SOMA.Message \n", + "[INFO] [1712690291.287435]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712690291.287709]: Ancestors: {DUL.Entity, SOMA.Message, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.287975]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712690291.288275]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", + "[INFO] [1712690291.288774]: Instances: []\n", + "[INFO] [1712690291.289063]: Direct Instances: []\n", + "[INFO] [1712690291.290866]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690291.291150]: -------------------\n", + "[INFO] [1712690291.291409]: SOMA.ProcessType \n", + "[INFO] [1712690291.291706]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712690291.291990]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.292264]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712690291.292562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.293128]: Instances: []\n", + "[INFO] [1712690291.293421]: Direct Instances: []\n", + "[INFO] [1712690291.293803]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712690291.294092]: -------------------\n", + "[INFO] [1712690291.294355]: SOMA.OrderedElement \n", + "[INFO] [1712690291.294647]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712690291.296002]: Ancestors: {SOMA.OrderedElement, owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712690291.296302]: Subclasses: []\n", + "[INFO] [1712690291.296617]: Properties: [SOMA.isOrderedBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.297129]: Instances: []\n", + "[INFO] [1712690291.297425]: Direct Instances: []\n", + "[INFO] [1712690291.297827]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712690291.298088]: -------------------\n", + "[INFO] [1712690291.298339]: SOMA.System \n", + "[INFO] [1712690291.298586]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712690291.298867]: Ancestors: {DUL.Entity, SOMA.System, DUL.SocialObject, owl.Thing, DUL.Object}\n", + "[INFO] [1712690291.299132]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712690291.299433]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.299963]: Instances: []\n", + "[INFO] [1712690291.300242]: Direct Instances: []\n", + "[INFO] [1712690291.300509]: Inverse Restrictions: []\n", + "[INFO] [1712690291.300759]: -------------------\n", + "[INFO] [1712690291.301022]: SOMA.Binding \n", + "[INFO] [1712690291.301763]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712690291.302147]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690291.302465]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712690291.302799]: Properties: [SOMA.hasBindingRole, rdf-schema.isDefinedBy, SOMA.hasBindingFiller, rdf-schema.comment, Inverse(SOMA.hasBinding)]\n", + "[INFO] [1712690291.303342]: Instances: []\n", + "[INFO] [1712690291.303635]: Direct Instances: []\n", + "[INFO] [1712690291.303910]: Inverse Restrictions: []\n", + "[INFO] [1712690291.304160]: -------------------\n", + "[INFO] [1712690291.304405]: SOMA.Joint \n", + "[INFO] [1712690291.304676]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712690291.305677]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690291.306050]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712690291.306412]: Properties: [SOMA.hasChildLink, rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", + "[INFO] [1712690291.306953]: Instances: []\n", + "[INFO] [1712690291.307238]: Direct Instances: []\n", + "[INFO] [1712690291.307517]: Inverse Restrictions: []\n", + "[INFO] [1712690291.307783]: -------------------\n", + "[INFO] [1712690291.308035]: SOMA.Color \n", + "[INFO] [1712690291.308310]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712690291.308593]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.308932]: Subclasses: []\n", + "[INFO] [1712690291.309295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion, rdf-schema.label]\n", + "[INFO] [1712690291.309830]: Instances: []\n", + "[INFO] [1712690291.310122]: Direct Instances: []\n", + "[INFO] [1712690291.310468]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712690291.310744]: -------------------\n", + "[INFO] [1712690291.311007]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712690291.311267]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690291.312299]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ExecutionStateRegion}\n", + "[INFO] [1712690291.312608]: Subclasses: []\n", + "[INFO] [1712690291.312949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.313488]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712690291.313783]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712690291.314075]: Inverse Restrictions: []\n", + "[INFO] [1712690291.314341]: -------------------\n", + "[INFO] [1712690291.314601]: SOMA.Feature \n", + "[INFO] [1712690291.314881]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712690291.315160]: Ancestors: {DUL.Entity, SOMA.Feature, owl.Thing, DUL.Object}\n", + "[INFO] [1712690291.315446]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712690291.315779]: Properties: [SOMA.isFeatureOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.316290]: Instances: []\n", + "[INFO] [1712690291.316559]: Direct Instances: []\n", + "[INFO] [1712690291.316865]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712690291.317141]: -------------------\n", + "[INFO] [1712690291.317407]: SOMA.FrictionAttribute \n", + "[INFO] [1712690291.317686]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712690291.317979]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", + "[INFO] [1712690291.318263]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712690291.318577]: Properties: [SOMA.hasFrictionValue, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.319082]: Instances: []\n", + "[INFO] [1712690291.319373]: Direct Instances: []\n", + "[INFO] [1712690291.319660]: Inverse Restrictions: []\n", + "[INFO] [1712690291.319918]: -------------------\n", + "[INFO] [1712690291.320173]: SOMA.SituationTransition \n", + "[INFO] [1712690291.320425]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712690291.320711]: Ancestors: {DUL.Entity, DUL.Situation, owl.Thing, SOMA.SituationTransition, DUL.Transition}\n", + "[INFO] [1712690291.320998]: Subclasses: []\n", + "[INFO] [1712690291.321312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.321817]: Instances: []\n", + "[INFO] [1712690291.322087]: Direct Instances: []\n", + "[INFO] [1712690291.323891]: Inverse Restrictions: []\n", + "[INFO] [1712690291.324170]: -------------------\n", + "[INFO] [1712690291.324433]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712690291.324689]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712690291.326042]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation}\n", + "[INFO] [1712690291.326343]: Subclasses: []\n", + "[INFO] [1712690291.326669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.327196]: Instances: []\n", + "[INFO] [1712690291.327477]: Direct Instances: []\n", + "[INFO] [1712690291.328914]: Inverse Restrictions: []\n", + "[INFO] [1712690291.329305]: -------------------\n", + "[INFO] [1712690291.329598]: SOMA.JointLimit \n", + "[INFO] [1712690291.329868]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712690291.330175]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.JointLimit}\n", + "[INFO] [1712690291.330446]: Subclasses: []\n", + "[INFO] [1712690291.330765]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.331290]: Instances: []\n", + "[INFO] [1712690291.331565]: Direct Instances: []\n", + "[INFO] [1712690291.331908]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712690291.332161]: -------------------\n", + "[INFO] [1712690291.332404]: SOMA.JointState \n", + "[INFO] [1712690291.332691]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712690291.333012]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, SOMA.JointState, DUL.Abstract}\n", + "[INFO] [1712690291.333288]: Subclasses: []\n", + "[INFO] [1712690291.333619]: Properties: [SOMA.hasJointVelocity, SOMA.hasJointPosition, rdf-schema.isDefinedBy, rdf-schema.label, rdf-schema.comment]\n", + "[INFO] [1712690291.334126]: Instances: []\n", + "[INFO] [1712690291.334421]: Direct Instances: []\n", + "[INFO] [1712690291.334766]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712690291.335021]: -------------------\n", + "[INFO] [1712690291.335264]: SOMA.Localization \n", + "[INFO] [1712690291.335534]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712690291.335823]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.336085]: Subclasses: []\n", + "[INFO] [1712690291.336387]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712690291.336887]: Instances: []\n", + "[INFO] [1712690291.337172]: Direct Instances: []\n", + "[INFO] [1712690291.339390]: Inverse Restrictions: []\n", + "[INFO] [1712690291.339666]: -------------------\n", + "[INFO] [1712690291.339936]: SOMA.MassAttribute \n", + "[INFO] [1712690291.340213]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712690291.340489]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.MassAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690291.340742]: Subclasses: []\n", + "[INFO] [1712690291.341046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label]\n", + "[INFO] [1712690291.341554]: Instances: []\n", + "[INFO] [1712690291.341828]: Direct Instances: []\n", + "[INFO] [1712690291.342091]: Inverse Restrictions: []\n", + "[INFO] [1712690291.342338]: -------------------\n", + "[INFO] [1712690291.342576]: SOMA.NetForce \n", + "[INFO] [1712690291.342829]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712690291.343114]: Ancestors: {SOMA.NetForce, DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690291.343370]: Subclasses: []\n", + "[INFO] [1712690291.343666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.344157]: Instances: []\n", + "[INFO] [1712690291.344430]: Direct Instances: []\n", + "[INFO] [1712690291.344697]: Inverse Restrictions: []\n", + "[INFO] [1712690291.344953]: -------------------\n", + "[INFO] [1712690291.345195]: SOMA.Succedence \n", + "[INFO] [1712690291.345472]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712690291.345761]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Succedence}\n", + "[INFO] [1712690291.346032]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712690291.346342]: Properties: [SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy, SOMA.hasPredecessor, rdf-schema.comment]\n", + "[INFO] [1712690291.346840]: Instances: []\n", + "[INFO] [1712690291.347119]: Direct Instances: []\n", + "[INFO] [1712690291.347398]: Inverse Restrictions: []\n", + "[INFO] [1712690291.347649]: -------------------\n", + "[INFO] [1712690291.347891]: SOMA.Preference \n", + "[INFO] [1712690291.348153]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712690291.348430]: Ancestors: {SOMA.Preference, DUL.Entity, SOMA.SocialQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.348699]: Subclasses: []\n", + "[INFO] [1712690291.349008]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.349507]: Instances: []\n", + "[INFO] [1712690291.349782]: Direct Instances: []\n", + "[INFO] [1712690291.350915]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712690291.351195]: -------------------\n", + "[INFO] [1712690291.351462]: SOMA.Shape \n", + "[INFO] [1712690291.351744]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712690291.352028]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Shape, SOMA.Intrinsic}\n", + "[INFO] [1712690291.352288]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", + "[INFO] [1712690291.352584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712690291.353188]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712690291.353468]: Direct Instances: []\n", + "[INFO] [1712690291.355670]: Inverse Restrictions: []\n", + "[INFO] [1712690291.355948]: -------------------\n", + "[INFO] [1712690291.356206]: SOMA.ShapeRegion \n", + "[INFO] [1712690291.356477]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712690291.356861]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690291.357160]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712690291.357478]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.357988]: Instances: []\n", + "[INFO] [1712690291.358258]: Direct Instances: []\n", + "[INFO] [1712690291.358987]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712690291.359263]: -------------------\n", + "[INFO] [1712690291.359528]: SOMA.SoftwareInstance \n", + "[INFO] [1712690291.360186]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712690291.360464]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", + "[INFO] [1712690291.360725]: Subclasses: []\n", + "[INFO] [1712690291.361042]: Properties: [rdf-schema.isDefinedBy, DUL.actsFor, rdf-schema.label, rdf-schema.comment, SOMA.isDesignedBy]\n", + "[INFO] [1712690291.361544]: Instances: []\n", + "[INFO] [1712690291.361808]: Direct Instances: []\n", + "[INFO] [1712690291.362507]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712690291.362784]: -------------------\n", + "[INFO] [1712690291.363041]: SOMA.StateType \n", + "[INFO] [1712690291.363315]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712690291.363591]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.363855]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712690291.364165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.364699]: Instances: []\n", + "[INFO] [1712690291.364987]: Direct Instances: []\n", + "[INFO] [1712690291.365340]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712690291.365597]: -------------------\n", + "[INFO] [1712690291.365844]: SOMA.PhysicalEffector \n", + "[INFO] [1712690291.366114]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712690291.366415]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690291.366683]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712690291.366990]: Properties: [Inverse(DUL.hasPart), rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.367504]: Instances: []\n", + "[INFO] [1712690291.367783]: Direct Instances: []\n", + "[INFO] [1712690291.368053]: Inverse Restrictions: []\n", + "[INFO] [1712690291.368303]: -------------------\n", + "[INFO] [1712690291.368547]: SOMA.QueryingTask \n", + "[INFO] [1712690291.369192]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712690291.369506]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712690291.369774]: Subclasses: []\n", + "[INFO] [1712690291.370078]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.370570]: Instances: []\n", + "[INFO] [1712690291.370836]: Direct Instances: []\n", + "[INFO] [1712690291.372262]: Inverse Restrictions: []\n", + "[INFO] [1712690291.372524]: -------------------\n", + "[INFO] [1712690291.372776]: SOMA.Order \n", + "[INFO] [1712690291.373025]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712690291.373315]: Ancestors: {DUL.Entity, SOMA.Order, owl.Thing, DUL.FormalEntity, DUL.Abstract}\n", + "[INFO] [1712690291.373578]: Subclasses: []\n", + "[INFO] [1712690291.373875]: Properties: [SOMA.orders, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.374384]: Instances: []\n", + "[INFO] [1712690291.374655]: Direct Instances: []\n", + "[INFO] [1712690291.375021]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712690291.375274]: -------------------\n", + "[INFO] [1712690291.375523]: SOMA.State \n", + "[INFO] [1712690291.375777]: Super classes: [DUL.Event]\n", + "[INFO] [1712690291.376057]: Ancestors: {DUL.Entity, owl.Thing, SOMA.State, DUL.Event}\n", + "[INFO] [1712690291.376322]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712690291.376617]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.377118]: Instances: []\n", + "[INFO] [1712690291.377403]: Direct Instances: []\n", + "[INFO] [1712690291.377927]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712690291.378194]: -------------------\n", + "[INFO] [1712690291.378444]: SOMA.Transient \n", + "[INFO] [1712690291.378713]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712690291.378995]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, SOMA.Transient}\n", + "[INFO] [1712690291.379261]: Subclasses: []\n", + "[INFO] [1712690291.379563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.transitionsFrom]\n", + "[INFO] [1712690291.380055]: Instances: []\n", + "[INFO] [1712690291.380336]: Direct Instances: []\n", + "[INFO] [1712690291.380605]: Inverse Restrictions: []\n", + "[INFO] [1712690291.380857]: -------------------\n", + "[INFO] [1712690291.381102]: SOMA.ColorRegion \n", + "[INFO] [1712690291.381344]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712690291.381608]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690291.381881]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712690291.382185]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.382689]: Instances: []\n", + "[INFO] [1712690291.383024]: Direct Instances: []\n", + "[INFO] [1712690291.383421]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712690291.383713]: -------------------\n", + "[INFO] [1712690291.384001]: SOMA.ForceAttribute \n", + "[INFO] [1712690291.384360]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712690291.384656]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690291.384944]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712690291.385271]: Properties: [SOMA.hasForceValue, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.385788]: Instances: []\n", + "[INFO] [1712690291.386088]: Direct Instances: []\n", + "[INFO] [1712690291.386722]: Inverse Restrictions: []\n", + "[INFO] [1712690291.387039]: -------------------\n", + "[INFO] [1712690291.387327]: SOMA.API_Specification \n", + "[INFO] [1712690291.387604]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712690291.387935]: Ancestors: {DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690291.388232]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712690291.388563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.389091]: Instances: []\n", + "[INFO] [1712690291.389389]: Direct Instances: []\n", + "[INFO] [1712690291.389675]: Inverse Restrictions: []\n", + "[INFO] [1712690291.389944]: -------------------\n", + "[INFO] [1712690291.390202]: SOMA.InterfaceSpecification \n", + "[INFO] [1712690291.390457]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712690291.390722]: Ancestors: {DUL.Entity, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690291.391002]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712690291.391320]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.391836]: Instances: []\n", + "[INFO] [1712690291.392133]: Direct Instances: []\n", + "[INFO] [1712690291.393247]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712690291.393549]: -------------------\n", + "[INFO] [1712690291.393816]: SOMA.AbductiveReasoning \n", + "[INFO] [1712690291.394079]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712690291.395342]: Ancestors: {SOMA.AbductiveReasoning, SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690291.395633]: Subclasses: []\n", + "[INFO] [1712690291.395943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.396458]: Instances: []\n", + "[INFO] [1712690291.396742]: Direct Instances: []\n", + "[INFO] [1712690291.397026]: Inverse Restrictions: []\n", + "[INFO] [1712690291.397281]: -------------------\n", + "[INFO] [1712690291.397527]: SOMA.Reasoning \n", + "[INFO] [1712690291.397770]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690291.398016]: Ancestors: {SOMA.DerivingInformation, SOMA.Reasoning, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712690291.398291]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712690291.398595]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.399095]: Instances: []\n", + "[INFO] [1712690291.399361]: Direct Instances: []\n", + "[INFO] [1712690291.399622]: Inverse Restrictions: []\n", + "[INFO] [1712690291.399880]: -------------------\n", + "[INFO] [1712690291.400144]: SOMA.Accessor \n", + "[INFO] [1712690291.400410]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712690291.400705]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Accessor, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.400986]: Subclasses: []\n", + "[INFO] [1712690291.401296]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.401798]: Instances: []\n", + "[INFO] [1712690291.402058]: Direct Instances: []\n", + "[INFO] [1712690291.402313]: Inverse Restrictions: []\n", + "[INFO] [1712690291.402568]: -------------------\n", + "[INFO] [1712690291.402816]: SOMA.Instrument \n", + "[INFO] [1712690291.403056]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712690291.403310]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.403568]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712690291.403875]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.404449]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690291.404739]: Direct Instances: []\n", + "[INFO] [1712690291.405164]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690291.405432]: -------------------\n", + "[INFO] [1712690291.405682]: SOMA.Accident \n", + "[INFO] [1712690291.405922]: Super classes: [DUL.Event]\n", + "[INFO] [1712690291.406188]: Ancestors: {DUL.Entity, owl.Thing, DUL.Event, SOMA.Accident}\n", + "[INFO] [1712690291.406440]: Subclasses: []\n", + "[INFO] [1712690291.406757]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.407258]: Instances: []\n", + "[INFO] [1712690291.407521]: Direct Instances: []\n", + "[INFO] [1712690291.407777]: Inverse Restrictions: []\n", + "[INFO] [1712690291.408031]: -------------------\n", + "[INFO] [1712690291.408276]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712690291.408711]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712690291.409007]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Plan, owl.Thing, DUL.Object, DUL.Description, SOMA.ActionExecutionPlan}\n", + "[INFO] [1712690291.409266]: Subclasses: []\n", + "[INFO] [1712690291.409562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.410071]: Instances: []\n", + "[INFO] [1712690291.410354]: Direct Instances: []\n", + "[INFO] [1712690291.410617]: Inverse Restrictions: []\n", + "[INFO] [1712690291.410869]: -------------------\n", + "[INFO] [1712690291.411129]: SOMA.Actuating \n", + "[INFO] [1712690291.411385]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690291.411659]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.411950]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712690291.412261]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.412795]: Instances: []\n", + "[INFO] [1712690291.413063]: Direct Instances: []\n", + "[INFO] [1712690291.413327]: Inverse Restrictions: []\n", + "[INFO] [1712690291.413594]: -------------------\n", + "[INFO] [1712690291.413846]: SOMA.PhysicalTask \n", + "[INFO] [1712690291.415219]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712690291.415498]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.415796]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712690291.416104]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.416814]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", + "[INFO] [1712690291.417146]: Direct Instances: []\n", + "[INFO] [1712690291.417496]: Inverse Restrictions: []\n", + "[INFO] [1712690291.417761]: -------------------\n", + "[INFO] [1712690291.418014]: SOMA.AestheticDesign \n", + "[INFO] [1712690291.418273]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712690291.418557]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.AestheticDesign, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690291.418817]: Subclasses: []\n", + "[INFO] [1712690291.419114]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.419614]: Instances: []\n", + "[INFO] [1712690291.419889]: Direct Instances: []\n", + "[INFO] [1712690291.420151]: Inverse Restrictions: []\n", + "[INFO] [1712690291.420395]: -------------------\n", + "[INFO] [1712690291.420631]: SOMA.AffordsBeingSitOn \n", + "[INFO] [1712690291.421518]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", + "[INFO] [1712690291.421823]: Ancestors: {DUL.Entity, SOMA.AffordsBeingSitOn, DUL.SocialObject, SOMA.Affordance, DUL.Relation, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690291.422095]: Subclasses: []\n", + "[INFO] [1712690291.422407]: Properties: [DUL.describes, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.422910]: Instances: []\n", + "[INFO] [1712690291.423185]: Direct Instances: []\n", + "[INFO] [1712690291.423479]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", + "[INFO] [1712690291.423730]: -------------------\n", + "[INFO] [1712690291.423972]: SOMA.CanBeSatOn \n", + "[INFO] [1712690291.424219]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", + "[INFO] [1712690291.424496]: Ancestors: {SOMA.Deposition, DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.CanBeSatOn}\n", + "[INFO] [1712690291.424767]: Subclasses: []\n", + "[INFO] [1712690291.425076]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712690291.425566]: Instances: []\n", + "[INFO] [1712690291.425829]: Direct Instances: []\n", + "[INFO] [1712690291.426366]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712690291.426636]: -------------------\n", + "[INFO] [1712690291.426894]: SOMA.SittingDestination \n", + "[INFO] [1712690291.427152]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", + "[INFO] [1712690291.427449]: Ancestors: {DUL.Entity, SOMA.SittingDestination, DUL.Concept, DUL.SocialObject, SOMA.Destination, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690291.427716]: Subclasses: []\n", + "[INFO] [1712690291.428016]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.428515]: Instances: []\n", + "[INFO] [1712690291.428778]: Direct Instances: []\n", + "[INFO] [1712690291.429053]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712690291.429323]: -------------------\n", + "[INFO] [1712690291.429585]: SOMA.CanSit \n", + "[INFO] [1712690291.429847]: Super classes: [SOMA.Capability]\n", + "[INFO] [1712690291.430125]: Ancestors: {DUL.Entity, SOMA.Capability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.CanSit}\n", + "[INFO] [1712690291.430377]: Subclasses: []\n", + "[INFO] [1712690291.430700]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.431224]: Instances: []\n", + "[INFO] [1712690291.431499]: Direct Instances: []\n", + "[INFO] [1712690291.431790]: Inverse Restrictions: []\n", + "[INFO] [1712690291.432050]: -------------------\n", + "[INFO] [1712690291.432300]: SOMA.AgentRole \n", + "[INFO] [1712690291.432563]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712690291.432849]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.AgentRole, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, DUL.Role}\n", + "[INFO] [1712690291.433128]: Subclasses: []\n", + "[INFO] [1712690291.433455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.433963]: Instances: []\n", + "[INFO] [1712690291.434229]: Direct Instances: []\n", + "[INFO] [1712690291.434514]: Inverse Restrictions: []\n", + "[INFO] [1712690291.434755]: -------------------\n", + "[INFO] [1712690291.435004]: SOMA.Sitting \n", + "[INFO] [1712690291.435253]: Super classes: [SOMA.AssumingPose]\n", + "[INFO] [1712690291.435536]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.Sitting, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.435786]: Subclasses: []\n", + "[INFO] [1712690291.436074]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.436588]: Instances: []\n", + "[INFO] [1712690291.436862]: Direct Instances: []\n", + "[INFO] [1712690291.437146]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712690291.437395]: -------------------\n", + "[INFO] [1712690291.437640]: SOMA.CausativeRole \n", + "[INFO] [1712690291.437878]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690291.438140]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, DUL.Role}\n", + "[INFO] [1712690291.438402]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712690291.438698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.439203]: Instances: []\n", + "[INFO] [1712690291.439487]: Direct Instances: []\n", + "[INFO] [1712690291.439759]: Inverse Restrictions: []\n", + "[INFO] [1712690291.440005]: -------------------\n", + "[INFO] [1712690291.440244]: SOMA.Agonist \n", + "[INFO] [1712690291.440481]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690291.440754]: Ancestors: {DUL.Entity, SOMA.Agonist, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.441021]: Subclasses: []\n", + "[INFO] [1712690291.441318]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.441813]: Instances: []\n", + "[INFO] [1712690291.442073]: Direct Instances: []\n", + "[INFO] [1712690291.442389]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712690291.442646]: -------------------\n", + "[INFO] [1712690291.442892]: SOMA.Patient \n", + "[INFO] [1712690291.443129]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690291.443379]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.443675]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712690291.443983]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.444551]: Instances: []\n", + "[INFO] [1712690291.444836]: Direct Instances: []\n", + "[INFO] [1712690291.445287]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690291.445549]: -------------------\n", + "[INFO] [1712690291.445798]: SOMA.Algorithm \n", + "[INFO] [1712690291.446054]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712690291.446334]: Ancestors: {SOMA.Algorithm, DUL.Entity, DUL.SocialObject, DUL.Plan, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690291.446608]: Subclasses: []\n", + "[INFO] [1712690291.446919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.447436]: Instances: []\n", + "[INFO] [1712690291.447709]: Direct Instances: []\n", + "[INFO] [1712690291.448766]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712690291.449039]: -------------------\n", + "[INFO] [1712690291.449302]: SOMA.Alteration \n", + "[INFO] [1712690291.449548]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712690291.449820]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration}\n", + "[INFO] [1712690291.450082]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712690291.450384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.450922]: Instances: []\n", + "[INFO] [1712690291.451198]: Direct Instances: []\n", + "[INFO] [1712690291.451463]: Inverse Restrictions: []\n", + "[INFO] [1712690291.451704]: -------------------\n", + "[INFO] [1712690291.451949]: SOMA.AlterativeInteraction \n", + "[INFO] [1712690291.452188]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712690291.453078]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.AlterativeInteraction, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction}\n", + "[INFO] [1712690291.453357]: Subclasses: []\n", + "[INFO] [1712690291.453672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.454183]: Instances: []\n", + "[INFO] [1712690291.454454]: Direct Instances: []\n", + "[INFO] [1712690291.454748]: Inverse Restrictions: []\n", + "[INFO] [1712690291.454998]: -------------------\n", + "[INFO] [1712690291.455243]: SOMA.ForceInteraction \n", + "[INFO] [1712690291.455518]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712690291.455784]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction}\n", + "[INFO] [1712690291.456041]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712690291.456353]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment]\n", + "[INFO] [1712690291.456872]: Instances: []\n", + "[INFO] [1712690291.457146]: Direct Instances: []\n", + "[INFO] [1712690291.457409]: Inverse Restrictions: []\n", + "[INFO] [1712690291.457655]: -------------------\n", + "[INFO] [1712690291.457897]: SOMA.PreservativeInteraction \n", + "[INFO] [1712690291.458152]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712690291.458427]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction, SOMA.PreservativeInteraction}\n", + "[INFO] [1712690291.458680]: Subclasses: []\n", + "[INFO] [1712690291.458973]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.459483]: Instances: []\n", + "[INFO] [1712690291.459750]: Direct Instances: []\n", + "[INFO] [1712690291.460041]: Inverse Restrictions: []\n", + "[INFO] [1712690291.460287]: -------------------\n", + "[INFO] [1712690291.460536]: SOMA.AlteredObject \n", + "[INFO] [1712690291.460786]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690291.461059]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", + "[INFO] [1712690291.461322]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712690291.461612]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.462128]: Instances: []\n", + "[INFO] [1712690291.462396]: Direct Instances: []\n", + "[INFO] [1712690291.463110]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712690291.463385]: -------------------\n", + "[INFO] [1712690291.463648]: SOMA.Amateurish \n", + "[INFO] [1712690291.463897]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712690291.464191]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690291.464474]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712690291.464795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.465580]: Instances: []\n", + "[INFO] [1712690291.465874]: Direct Instances: []\n", + "[INFO] [1712690291.466133]: Inverse Restrictions: []\n", + "[INFO] [1712690291.466409]: -------------------\n", + "[INFO] [1712690291.466676]: SOMA.AnsweringTask \n", + "[INFO] [1712690291.466951]: Super classes: [owl.Thing]\n", + "[INFO] [1712690291.469482]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", + "[INFO] [1712690291.469806]: Subclasses: []\n", + "[INFO] [1712690291.470129]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.470633]: Instances: []\n", + "[INFO] [1712690291.470907]: Direct Instances: []\n", + "[INFO] [1712690291.471218]: Inverse Restrictions: []\n", + "[INFO] [1712690291.471473]: -------------------\n", + "[INFO] [1712690291.471722]: SOMA.CommandingTask \n", + "[INFO] [1712690291.472375]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712690291.472683]: Ancestors: {SOMA.IllocutionaryTask, SOMA.CommandingTask, owl.Thing}\n", + "[INFO] [1712690291.472963]: Subclasses: []\n", + "[INFO] [1712690291.473272]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.473787]: Instances: []\n", + "[INFO] [1712690291.474059]: Direct Instances: []\n", + "[INFO] [1712690291.474400]: Inverse Restrictions: []\n", + "[INFO] [1712690291.474651]: -------------------\n", + "[INFO] [1712690291.474896]: SOMA.IllocutionaryTask \n", + "[INFO] [1712690291.476287]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712690291.476573]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712690291.476851]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712690291.477162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.477671]: Instances: []\n", + "[INFO] [1712690291.477948]: Direct Instances: []\n", + "[INFO] [1712690291.478372]: Inverse Restrictions: []\n", + "[INFO] [1712690291.478629]: -------------------\n", + "[INFO] [1712690291.478873]: SOMA.Antagonist \n", + "[INFO] [1712690291.479115]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690291.479383]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, SOMA.Antagonist, DUL.Object, owl.Thing, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.479649]: Subclasses: []\n", + "[INFO] [1712690291.479962]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.480464]: Instances: []\n", + "[INFO] [1712690291.480737]: Direct Instances: []\n", + "[INFO] [1712690291.481047]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712690291.481300]: -------------------\n", + "[INFO] [1712690291.481544]: SOMA.Appliance \n", + "[INFO] [1712690291.481779]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712690291.482044]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.482340]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712690291.482650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.483159]: Instances: []\n", + "[INFO] [1712690291.483422]: Direct Instances: []\n", + "[INFO] [1712690291.483685]: Inverse Restrictions: []\n", + "[INFO] [1712690291.483945]: -------------------\n", + "[INFO] [1712690291.484195]: SOMA.Approaching \n", + "[INFO] [1712690291.484445]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690291.484743]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Approaching, SOMA.Locomotion}\n", + "[INFO] [1712690291.485019]: Subclasses: []\n", + "[INFO] [1712690291.485329]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.485824]: Instances: []\n", + "[INFO] [1712690291.486089]: Direct Instances: []\n", + "[INFO] [1712690291.486345]: Inverse Restrictions: []\n", + "[INFO] [1712690291.486590]: -------------------\n", + "[INFO] [1712690291.486846]: SOMA.Locomotion \n", + "[INFO] [1712690291.487101]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712690291.487356]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", + "[INFO] [1712690291.487620]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712690291.487931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.488446]: Instances: []\n", + "[INFO] [1712690291.488716]: Direct Instances: []\n", + "[INFO] [1712690291.488989]: Inverse Restrictions: []\n", + "[INFO] [1712690291.489233]: -------------------\n", + "[INFO] [1712690291.489484]: SOMA.ArchiveFile \n", + "[INFO] [1712690291.489742]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712690291.490994]: Ancestors: {DUL.Entity, SOMA.ArchiveFile, DUL.InformationEntity, SOMA.Digital_File, owl.Thing, DUL.InformationRealization}\n", + "[INFO] [1712690291.491280]: Subclasses: []\n", + "[INFO] [1712690291.491611]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.realizes, rdf-schema.comment]\n", + "[INFO] [1712690291.492115]: Instances: []\n", + "[INFO] [1712690291.492382]: Direct Instances: []\n", + "[INFO] [1712690291.492642]: Inverse Restrictions: []\n", + "[INFO] [1712690291.492909]: -------------------\n", + "[INFO] [1712690291.493173]: SOMA.ArchiveText \n", + "[INFO] [1712690291.493431]: Super classes: [owl.Thing]\n", + "[INFO] [1712690291.495216]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", + "[INFO] [1712690291.495510]: Subclasses: []\n", + "[INFO] [1712690291.495832]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", + "[INFO] [1712690291.496342]: Instances: []\n", + "[INFO] [1712690291.496611]: Direct Instances: []\n", + "[INFO] [1712690291.497043]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712690291.497337]: -------------------\n", + "[INFO] [1712690291.497617]: SOMA.Digital_File \n", + "[INFO] [1712690291.497906]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712690291.498168]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.Digital_File, owl.Thing, DUL.InformationRealization}\n", + "[INFO] [1712690291.498430]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712690291.498753]: Properties: [rdf-schema.isDefinedBy, SOMA.hasNameString, rdf-schema.label, rdf-schema.comment, DUL.realizes]\n", + "[INFO] [1712690291.499267]: Instances: []\n", + "[INFO] [1712690291.499535]: Direct Instances: []\n", + "[INFO] [1712690291.502105]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712690291.502398]: -------------------\n", + "[INFO] [1712690291.502661]: SOMA.ArchiveFormat \n", + "[INFO] [1712690291.502922]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712690291.503228]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.ArchiveFormat, SOMA.File_format}\n", + "[INFO] [1712690291.503498]: Subclasses: []\n", + "[INFO] [1712690291.503814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.504323]: Instances: []\n", + "[INFO] [1712690291.504602]: Direct Instances: []\n", + "[INFO] [1712690291.504904]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712690291.505159]: -------------------\n", + "[INFO] [1712690291.505405]: SOMA.File_format \n", + "[INFO] [1712690291.505646]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690291.505897]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.File_format}\n", + "[INFO] [1712690291.506167]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712690291.506468]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.506970]: Instances: []\n", + "[INFO] [1712690291.507231]: Direct Instances: []\n", + "[INFO] [1712690291.507502]: Inverse Restrictions: []\n", + "[INFO] [1712690291.507753]: -------------------\n", + "[INFO] [1712690291.507997]: SOMA.FileConfiguration \n", + "[INFO] [1712690291.508234]: Super classes: [owl.Thing]\n", + "[INFO] [1712690291.508715]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", + "[INFO] [1712690291.509001]: Subclasses: []\n", + "[INFO] [1712690291.509312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.509814]: Instances: []\n", + "[INFO] [1712690291.510078]: Direct Instances: []\n", + "[INFO] [1712690291.510388]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712690291.510649]: -------------------\n", + "[INFO] [1712690291.510905]: SOMA.Structured_Text \n", + "[INFO] [1712690291.511148]: Super classes: [owl.Thing]\n", + "[INFO] [1712690291.512354]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", + "[INFO] [1712690291.512646]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712690291.512962]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.513472]: Instances: []\n", + "[INFO] [1712690291.513757]: Direct Instances: []\n", + "[INFO] [1712690291.516408]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712690291.516694]: -------------------\n", + "[INFO] [1712690291.516972]: SOMA.AreaSurveying \n", + "[INFO] [1712690291.517233]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712690291.517511]: Ancestors: {SOMA.AreaSurveying, owl.Thing, SOMA.Perceiving}\n", + "[INFO] [1712690291.517769]: Subclasses: []\n", + "[INFO] [1712690291.518078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.518580]: Instances: []\n", + "[INFO] [1712690291.518846]: Direct Instances: []\n", + "[INFO] [1712690291.519100]: Inverse Restrictions: []\n", + "[INFO] [1712690291.519340]: -------------------\n", + "[INFO] [1712690291.519578]: SOMA.Perceiving \n", + "[INFO] [1712690291.519826]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712690291.520080]: Ancestors: {owl.Thing, SOMA.Perceiving}\n", + "[INFO] [1712690291.520341]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712690291.520636]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.521145]: Instances: []\n", + "[INFO] [1712690291.521416]: Direct Instances: []\n", + "[INFO] [1712690291.521683]: Inverse Restrictions: []\n", + "[INFO] [1712690291.521929]: -------------------\n", + "[INFO] [1712690291.522165]: SOMA.Arm \n", + "[INFO] [1712690291.522421]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712690291.523300]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Arm, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712690291.523570]: Subclasses: []\n", + "[INFO] [1712690291.523863]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.524404]: Instances: []\n", + "[INFO] [1712690291.524677]: Direct Instances: []\n", + "[INFO] [1712690291.524972]: Inverse Restrictions: []\n", + "[INFO] [1712690291.525220]: -------------------\n", + "[INFO] [1712690291.525465]: SOMA.Limb \n", + "[INFO] [1712690291.525722]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712690291.525987]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712690291.526249]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712690291.526550]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.527053]: Instances: []\n", + "[INFO] [1712690291.527330]: Direct Instances: []\n", + "[INFO] [1712690291.528024]: Inverse Restrictions: []\n", + "[INFO] [1712690291.528283]: -------------------\n", + "[INFO] [1712690291.528528]: SOMA.Armchair \n", + "[INFO] [1712690291.528791]: Super classes: [SOMA.DesignedChair]\n", + "[INFO] [1712690291.529088]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Armchair, SOMA.DesignedChair, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.529351]: Subclasses: []\n", + "[INFO] [1712690291.529654]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.530177]: Instances: []\n", + "[INFO] [1712690291.530462]: Direct Instances: []\n", + "[INFO] [1712690291.530717]: Inverse Restrictions: []\n", + "[INFO] [1712690291.530961]: -------------------\n", + "[INFO] [1712690291.531206]: SOMA.DesignedChair \n", + "[INFO] [1712690291.531462]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712690291.531720]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedChair, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.531973]: Subclasses: [SOMA.Armchair]\n", + "[INFO] [1712690291.532279]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690291.532807]: Instances: []\n", + "[INFO] [1712690291.533095]: Direct Instances: []\n", + "[INFO] [1712690291.533361]: Inverse Restrictions: []\n", + "[INFO] [1712690291.533608]: -------------------\n", + "[INFO] [1712690291.533853]: SOMA.Arranging \n", + "[INFO] [1712690291.534100]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712690291.534385]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Arranging}\n", + "[INFO] [1712690291.534638]: Subclasses: []\n", + "[INFO] [1712690291.534930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.535439]: Instances: []\n", + "[INFO] [1712690291.535714]: Direct Instances: []\n", + "[INFO] [1712690291.535971]: Inverse Restrictions: []\n", + "[INFO] [1712690291.536219]: -------------------\n", + "[INFO] [1712690291.536458]: SOMA.Constructing \n", + "[INFO] [1712690291.536701]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690291.536977]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.537249]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712690291.537557]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.538060]: Instances: []\n", + "[INFO] [1712690291.538340]: Direct Instances: []\n", + "[INFO] [1712690291.538614]: Inverse Restrictions: []\n", + "[INFO] [1712690291.538864]: -------------------\n", + "[INFO] [1712690291.539109]: SOMA.ArtificialAgent \n", + "[INFO] [1712690291.539346]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712690291.539627]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.Agent, SOMA.ArtificialAgent, DUL.PhysicalAgent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.539896]: Subclasses: []\n", + "[INFO] [1712690291.540202]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.540699]: Instances: []\n", + "[INFO] [1712690291.540964]: Direct Instances: []\n", + "[INFO] [1712690291.541236]: Inverse Restrictions: []\n", + "[INFO] [1712690291.541487]: -------------------\n", + "[INFO] [1712690291.541728]: SOMA.Assembling \n", + "[INFO] [1712690291.541965]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712690291.542232]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Assembling, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.542495]: Subclasses: []\n", + "[INFO] [1712690291.542793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.543282]: Instances: []\n", + "[INFO] [1712690291.543544]: Direct Instances: []\n", + "[INFO] [1712690291.543799]: Inverse Restrictions: []\n", + "[INFO] [1712690291.544055]: -------------------\n", + "[INFO] [1712690291.544312]: SOMA.AssertionTask \n", + "[INFO] [1712690291.544998]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712690291.545327]: Ancestors: {SOMA.IllocutionaryTask, SOMA.AssertionTask, owl.Thing}\n", + "[INFO] [1712690291.545595]: Subclasses: []\n", + "[INFO] [1712690291.545899]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.546402]: Instances: []\n", + "[INFO] [1712690291.546682]: Direct Instances: []\n", + "[INFO] [1712690291.546942]: Inverse Restrictions: []\n", + "[INFO] [1712690291.547189]: -------------------\n", + "[INFO] [1712690291.547428]: SOMA.DeclarativeClause \n", + "[INFO] [1712690291.547668]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712690291.547963]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.DeclarativeClause, SOMA.ClausalObject}\n", + "[INFO] [1712690291.548235]: Subclasses: []\n", + "[INFO] [1712690291.548540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.549040]: Instances: []\n", + "[INFO] [1712690291.549306]: Direct Instances: []\n", + "[INFO] [1712690291.549604]: Inverse Restrictions: []\n", + "[INFO] [1712690291.549868]: -------------------\n", + "[INFO] [1712690291.550131]: SOMA.AssumingArmPose \n", + "[INFO] [1712690291.550395]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712690291.550674]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.AssumingArmPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.550927]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712690291.551221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.551734]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712690291.552010]: Direct Instances: []\n", + "[INFO] [1712690291.552271]: Inverse Restrictions: []\n", + "[INFO] [1712690291.552513]: -------------------\n", + "[INFO] [1712690291.552762]: SOMA.AssumingPose \n", + "[INFO] [1712690291.553022]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690291.553281]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.553540]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712690291.553837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.554353]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712690291.554622]: Direct Instances: []\n", + "[INFO] [1712690291.554879]: Inverse Restrictions: []\n", + "[INFO] [1712690291.555133]: -------------------\n", + "[INFO] [1712690291.555384]: SOMA.AttentionShift \n", + "[INFO] [1712690291.555710]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712690291.556072]: Ancestors: {DUL.Entity, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.556389]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712690291.556734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.557264]: Instances: []\n", + "[INFO] [1712690291.557546]: Direct Instances: []\n", + "[INFO] [1712690291.557816]: Inverse Restrictions: []\n", + "[INFO] [1712690291.558073]: -------------------\n", + "[INFO] [1712690291.558340]: SOMA.MentalTask \n", + "[INFO] [1712690291.558621]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712690291.558898]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.559174]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712690291.559482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.560028]: Instances: []\n", + "[INFO] [1712690291.560313]: Direct Instances: []\n", + "[INFO] [1712690291.560630]: Inverse Restrictions: []\n", + "[INFO] [1712690291.560898]: -------------------\n", + "[INFO] [1712690291.561157]: SOMA.AvoidedObject \n", + "[INFO] [1712690291.561417]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690291.561715]: Ancestors: {DUL.Entity, SOMA.AvoidedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.561983]: Subclasses: []\n", + "[INFO] [1712690291.562293]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.562799]: Instances: []\n", + "[INFO] [1712690291.563091]: Direct Instances: []\n", + "[INFO] [1712690291.563364]: Inverse Restrictions: []\n", + "[INFO] [1712690291.563617]: -------------------\n", + "[INFO] [1712690291.563960]: SOMA.Avoiding \n", + "[INFO] [1712690291.564258]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712690291.564577]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Avoiding}\n", + "[INFO] [1712690291.564861]: Subclasses: []\n", + "[INFO] [1712690291.565187]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.565707]: Instances: []\n", + "[INFO] [1712690291.565986]: Direct Instances: []\n", + "[INFO] [1712690291.566250]: Inverse Restrictions: []\n", + "[INFO] [1712690291.566499]: -------------------\n", + "[INFO] [1712690291.566750]: SOMA.Navigating \n", + "[INFO] [1712690291.566998]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690291.567266]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.567542]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712690291.567857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.568373]: Instances: [SOMA.navigating]\n", + "[INFO] [1712690291.568671]: Direct Instances: [SOMA.navigating]\n", + "[INFO] [1712690291.568960]: Inverse Restrictions: []\n", + "[INFO] [1712690291.569223]: -------------------\n", + "[INFO] [1712690291.569481]: SOMA.BakedGood \n", + "[INFO] [1712690291.569733]: Super classes: [SOMA.Dish]\n", + "[INFO] [1712690291.570023]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.BakedGood, DUL.Object, owl.Thing, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.570306]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", + "[INFO] [1712690291.570610]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.571115]: Instances: []\n", + "[INFO] [1712690291.571386]: Direct Instances: []\n", + "[INFO] [1712690291.571666]: Inverse Restrictions: []\n", + "[INFO] [1712690291.571923]: -------------------\n", + "[INFO] [1712690291.572176]: SOMA.Dish \n", + "[INFO] [1712690291.572425]: Super classes: [DUL.DesignedArtifact]\n", + "[INFO] [1712690291.572682]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.572955]: Subclasses: [SOMA.BakedGood]\n", + "[INFO] [1712690291.573266]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.573778]: Instances: []\n", + "[INFO] [1712690291.574072]: Direct Instances: []\n", + "[INFO] [1712690291.574349]: Inverse Restrictions: []\n", + "[INFO] [1712690291.574605]: -------------------\n", + "[INFO] [1712690291.574857]: SOMA.Barrier \n", + "[INFO] [1712690291.575106]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712690291.575394]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.575684]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712690291.575999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.576511]: Instances: []\n", + "[INFO] [1712690291.576802]: Direct Instances: []\n", + "[INFO] [1712690291.577276]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712690291.577586]: -------------------\n", + "[INFO] [1712690291.577865]: SOMA.Restrictor \n", + "[INFO] [1712690291.578123]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712690291.578395]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.578665]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712690291.578966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.579520]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690291.579797]: Direct Instances: []\n", + "[INFO] [1712690291.580172]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712690291.580428]: -------------------\n", + "[INFO] [1712690291.580675]: SOMA.BedsideTable \n", + "[INFO] [1712690291.580936]: Super classes: [SOMA.Table]\n", + "[INFO] [1712690291.581225]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Table, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.BedsideTable}\n", + "[INFO] [1712690291.581479]: Subclasses: []\n", + "[INFO] [1712690291.581770]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.582258]: Instances: []\n", + "[INFO] [1712690291.582543]: Direct Instances: []\n", + "[INFO] [1712690291.582814]: Inverse Restrictions: []\n", + "[INFO] [1712690291.583088]: -------------------\n", + "[INFO] [1712690291.583434]: SOMA.Table \n", + "[INFO] [1712690291.583743]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712690291.584035]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Table, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.584322]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", + "[INFO] [1712690291.584651]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.585166]: Instances: []\n", + "[INFO] [1712690291.585457]: Direct Instances: []\n", + "[INFO] [1712690291.585726]: Inverse Restrictions: []\n", + "[INFO] [1712690291.585977]: -------------------\n", + "[INFO] [1712690291.586227]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712690291.586483]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712690291.586747]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690291.587021]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712690291.587328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712690291.587844]: Instances: []\n", + "[INFO] [1712690291.588462]: Direct Instances: []\n", + "[INFO] [1712690291.588762]: Inverse Restrictions: []\n", + "[INFO] [1712690291.589027]: -------------------\n", + "[INFO] [1712690291.589279]: SOMA.BeneficiaryRole \n", + "[INFO] [1712690291.589524]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712690291.589815]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.BeneficiaryRole, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690291.590096]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712690291.590417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.590918]: Instances: []\n", + "[INFO] [1712690291.591259]: Direct Instances: []\n", + "[INFO] [1712690291.591543]: Inverse Restrictions: []\n", + "[INFO] [1712690291.591805]: -------------------\n", + "[INFO] [1712690291.592059]: SOMA.GoalRole \n", + "[INFO] [1712690291.592315]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690291.592567]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690291.592843]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712690291.593148]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.593650]: Instances: []\n", + "[INFO] [1712690291.593930]: Direct Instances: []\n", + "[INFO] [1712690291.594195]: Inverse Restrictions: []\n", + "[INFO] [1712690291.594442]: -------------------\n", + "[INFO] [1712690291.594683]: SOMA.CounterfactualBinding \n", + "[INFO] [1712690291.594921]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712690291.595192]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.CounterfactualBinding, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690291.595459]: Subclasses: []\n", + "[INFO] [1712690291.595778]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.596277]: Instances: []\n", + "[INFO] [1712690291.596562]: Direct Instances: []\n", + "[INFO] [1712690291.596909]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712690291.597183]: -------------------\n", + "[INFO] [1712690291.597444]: SOMA.FactualBinding \n", + "[INFO] [1712690291.597689]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712690291.597960]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FactualBinding, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690291.598210]: Subclasses: []\n", + "[INFO] [1712690291.598503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.599013]: Instances: []\n", + "[INFO] [1712690291.599281]: Direct Instances: []\n", + "[INFO] [1712690291.599618]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712690291.599867]: -------------------\n", + "[INFO] [1712690291.600133]: SOMA.RoleFillerBinding \n", + "[INFO] [1712690291.600390]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712690291.600672]: Ancestors: {DUL.Entity, SOMA.RoleFillerBinding, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690291.600933]: Subclasses: []\n", + "[INFO] [1712690291.601243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.601758]: Instances: []\n", + "[INFO] [1712690291.602030]: Direct Instances: []\n", + "[INFO] [1712690291.602326]: Inverse Restrictions: []\n", + "[INFO] [1712690291.602576]: -------------------\n", + "[INFO] [1712690291.602813]: SOMA.RoleRoleBinding \n", + "[INFO] [1712690291.603472]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712690291.603771]: Ancestors: {SOMA.RoleRoleBinding, DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690291.604047]: Subclasses: []\n", + "[INFO] [1712690291.604349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.604847]: Instances: []\n", + "[INFO] [1712690291.605124]: Direct Instances: []\n", + "[INFO] [1712690291.605427]: Inverse Restrictions: []\n", + "[INFO] [1712690291.605678]: -------------------\n", + "[INFO] [1712690291.605925]: SOMA.Blade \n", + "[INFO] [1712690291.606162]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690291.606439]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.Blade, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.606704]: Subclasses: []\n", + "[INFO] [1712690291.607000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.607499]: Instances: []\n", + "[INFO] [1712690291.607755]: Direct Instances: []\n", + "[INFO] [1712690291.608030]: Inverse Restrictions: [SOMA.Knife]\n", + "[INFO] [1712690291.608289]: -------------------\n", + "[INFO] [1712690291.608534]: SOMA.DesignedComponent \n", + "[INFO] [1712690291.608798]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712690291.609054]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.609331]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712690291.609643]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690291.610167]: Instances: []\n", + "[INFO] [1712690291.610431]: Direct Instances: []\n", + "[INFO] [1712690291.610690]: Inverse Restrictions: []\n", + "[INFO] [1712690291.610944]: -------------------\n", + "[INFO] [1712690291.611191]: SOMA.Blockage \n", + "[INFO] [1712690291.611454]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712690291.611722]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.611972]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712690291.612266]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.612778]: Instances: []\n", + "[INFO] [1712690291.613052]: Direct Instances: []\n", + "[INFO] [1712690291.613314]: Inverse Restrictions: []\n", + "[INFO] [1712690291.613564]: -------------------\n", + "[INFO] [1712690291.613805]: SOMA.BlockedObject \n", + "[INFO] [1712690291.614052]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690291.614326]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.614584]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712690291.614876]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.615368]: Instances: []\n", + "[INFO] [1712690291.615641]: Direct Instances: []\n", + "[INFO] [1712690291.615937]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712690291.616188]: -------------------\n", + "[INFO] [1712690291.616431]: SOMA.BodyMovement \n", + "[INFO] [1712690291.617460]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712690291.617775]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.618052]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712690291.618354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.618879]: Instances: []\n", + "[INFO] [1712690291.619156]: Direct Instances: []\n", + "[INFO] [1712690291.619417]: Inverse Restrictions: []\n", + "[INFO] [1712690291.619661]: -------------------\n", + "[INFO] [1712690291.619903]: SOMA.Motion \n", + "[INFO] [1712690291.620139]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712690291.620380]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.620647]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712690291.620947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.621496]: Instances: []\n", + "[INFO] [1712690291.621770]: Direct Instances: []\n", + "[INFO] [1712690291.622036]: Inverse Restrictions: []\n", + "[INFO] [1712690291.622283]: -------------------\n", + "[INFO] [1712690291.622524]: SOMA.Boiling \n", + "[INFO] [1712690291.622761]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712690291.623049]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Boiling, DUL.Concept, DUL.SocialObject, SOMA.Vaporizing, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", + "[INFO] [1712690291.623307]: Subclasses: []\n", + "[INFO] [1712690291.623597]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.624083]: Instances: []\n", + "[INFO] [1712690291.624358]: Direct Instances: []\n", + "[INFO] [1712690291.624619]: Inverse Restrictions: []\n", + "[INFO] [1712690291.624863]: -------------------\n", + "[INFO] [1712690291.625101]: SOMA.Vaporizing \n", + "[INFO] [1712690291.625747]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712690291.626031]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Vaporizing, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", + "[INFO] [1712690291.626299]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712690291.626599]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690291.627097]: Instances: []\n", + "[INFO] [1712690291.627371]: Direct Instances: []\n", + "[INFO] [1712690291.627633]: Inverse Restrictions: []\n", + "[INFO] [1712690291.627873]: -------------------\n", + "[INFO] [1712690291.628108]: SOMA.Bottle \n", + "[INFO] [1712690291.628351]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712690291.628625]: Ancestors: {DUL.PhysicalArtifact, SOMA.Bottle, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.628890]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", + "[INFO] [1712690291.629178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.629689]: Instances: []\n", + "[INFO] [1712690291.629971]: Direct Instances: []\n", + "[INFO] [1712690291.630243]: Inverse Restrictions: []\n", + "[INFO] [1712690291.630506]: -------------------\n", + "[INFO] [1712690291.630756]: SOMA.DesignedContainer \n", + "[INFO] [1712690291.630998]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712690291.631261]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.631540]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712690291.631839]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690291.632427]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712690291.632725]: Direct Instances: []\n", + "[INFO] [1712690291.633008]: Inverse Restrictions: []\n", + "[INFO] [1712690291.633256]: -------------------\n", + "[INFO] [1712690291.633523]: SOMA.Bowl \n", + "[INFO] [1712690291.633759]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712690291.634052]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Bowl, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690291.634321]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", + "[INFO] [1712690291.634619]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.635112]: Instances: []\n", + "[INFO] [1712690291.635369]: Direct Instances: []\n", + "[INFO] [1712690291.635646]: Inverse Restrictions: [SOMA.Spoon]\n", + "[INFO] [1712690291.635902]: -------------------\n", + "[INFO] [1712690291.636149]: SOMA.Crockery \n", + "[INFO] [1712690291.637029]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712690291.637323]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690291.637595]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", + "[INFO] [1712690291.637891]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690291.638402]: Instances: []\n", + "[INFO] [1712690291.638673]: Direct Instances: []\n", + "[INFO] [1712690291.638932]: Inverse Restrictions: []\n", + "[INFO] [1712690291.639169]: -------------------\n", + "[INFO] [1712690291.639403]: SOMA.Box \n", + "[INFO] [1712690291.639654]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", + "[INFO] [1712690291.639923]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Box, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.640188]: Subclasses: [SOMA.CerealBox]\n", + "[INFO] [1712690291.640480]: Properties: [SOMA.hasShapeRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.640967]: Instances: []\n", + "[INFO] [1712690291.641230]: Direct Instances: []\n", + "[INFO] [1712690291.641480]: Inverse Restrictions: []\n", + "[INFO] [1712690291.641730]: -------------------\n", + "[INFO] [1712690291.641969]: SOMA.BoxShape \n", + "[INFO] [1712690291.642247]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712690291.642511]: Ancestors: {DUL.Entity, SOMA.BoxShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690291.642751]: Subclasses: []\n", + "[INFO] [1712690291.643054]: Properties: [SOMA.hasHeight, SOMA.hasLength, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasWidth]\n", + "[INFO] [1712690291.643545]: Instances: []\n", + "[INFO] [1712690291.643797]: Direct Instances: []\n", + "[INFO] [1712690291.644063]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712690291.644299]: -------------------\n", + "[INFO] [1712690291.644548]: SOMA.Bread \n", + "[INFO] [1712690291.644789]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712690291.645056]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Bread, SOMA.BakedGood, DUL.Object, owl.Thing, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.645299]: Subclasses: []\n", + "[INFO] [1712690291.645582]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.646084]: Instances: []\n", + "[INFO] [1712690291.646348]: Direct Instances: []\n", + "[INFO] [1712690291.646602]: Inverse Restrictions: []\n", + "[INFO] [1712690291.646835]: -------------------\n", + "[INFO] [1712690291.647087]: SOMA.BreadKnife \n", + "[INFO] [1712690291.647335]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712690291.647633]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Knife, SOMA.CuttingTool, owl.Thing, DUL.Object, SOMA.BreadKnife, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.KitchenKnife}\n", + "[INFO] [1712690291.647888]: Subclasses: []\n", + "[INFO] [1712690291.648177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.648660]: Instances: []\n", + "[INFO] [1712690291.648938]: Direct Instances: []\n", + "[INFO] [1712690291.649197]: Inverse Restrictions: []\n", + "[INFO] [1712690291.649435]: -------------------\n", + "[INFO] [1712690291.649668]: SOMA.KitchenKnife \n", + "[INFO] [1712690291.649896]: Super classes: [SOMA.Knife]\n", + "[INFO] [1712690291.650161]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Knife, SOMA.CuttingTool, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.KitchenKnife}\n", + "[INFO] [1712690291.650438]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", + "[INFO] [1712690291.650731]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.651244]: Instances: []\n", + "[INFO] [1712690291.651534]: Direct Instances: []\n", + "[INFO] [1712690291.651806]: Inverse Restrictions: []\n", + "[INFO] [1712690291.652076]: -------------------\n", + "[INFO] [1712690291.652341]: SOMA.BreakfastPlate \n", + "[INFO] [1712690291.652600]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712690291.652902]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.BreakfastPlate, SOMA.Tableware, SOMA.Crockery, owl.Thing, SOMA.Plate, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690291.653199]: Subclasses: []\n", + "[INFO] [1712690291.653525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.654046]: Instances: []\n", + "[INFO] [1712690291.654330]: Direct Instances: []\n", + "[INFO] [1712690291.654610]: Inverse Restrictions: []\n", + "[INFO] [1712690291.654864]: -------------------\n", + "[INFO] [1712690291.655116]: SOMA.Plate \n", + "[INFO] [1712690291.655357]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712690291.655608]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Tableware, SOMA.Crockery, owl.Thing, SOMA.Plate, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690291.655863]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", + "[INFO] [1712690291.656172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.656677]: Instances: []\n", + "[INFO] [1712690291.656950]: Direct Instances: []\n", + "[INFO] [1712690291.657211]: Inverse Restrictions: []\n", + "[INFO] [1712690291.657468]: -------------------\n", + "[INFO] [1712690291.657723]: SOMA.Building \n", + "[INFO] [1712690291.657967]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712690291.658238]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Building, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.658489]: Subclasses: []\n", + "[INFO] [1712690291.658792]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.659299]: Instances: []\n", + "[INFO] [1712690291.659568]: Direct Instances: []\n", + "[INFO] [1712690291.659824]: Inverse Restrictions: []\n", + "[INFO] [1712690291.660067]: -------------------\n", + "[INFO] [1712690291.660323]: SOMA.Deposition \n", + "[INFO] [1712690291.660603]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712690291.660862]: Ancestors: {SOMA.Deposition, DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.661116]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712690291.661417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.661912]: Instances: []\n", + "[INFO] [1712690291.662166]: Direct Instances: []\n", + "[INFO] [1712690291.662848]: Inverse Restrictions: []\n", + "[INFO] [1712690291.663112]: -------------------\n", + "[INFO] [1712690291.663362]: SOMA.CanCut \n", + "[INFO] [1712690291.663631]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712690291.663909]: Ancestors: {SOMA.CanCut, DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.664163]: Subclasses: []\n", + "[INFO] [1712690291.664466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.664962]: Instances: []\n", + "[INFO] [1712690291.665221]: Direct Instances: []\n", + "[INFO] [1712690291.665465]: Inverse Restrictions: []\n", + "[INFO] [1712690291.665708]: -------------------\n", + "[INFO] [1712690291.665951]: SOMA.Variability \n", + "[INFO] [1712690291.666215]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712690291.666471]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.666730]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712690291.667368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.667918]: Instances: []\n", + "[INFO] [1712690291.668200]: Direct Instances: []\n", + "[INFO] [1712690291.668478]: Inverse Restrictions: []\n", + "[INFO] [1712690291.668727]: -------------------\n", + "[INFO] [1712690291.668981]: SOMA.Cutter \n", + "[INFO] [1712690291.669236]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712690291.669526]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Cutter, SOMA.Tool, DUL.Role}\n", + "[INFO] [1712690291.669787]: Subclasses: []\n", + "[INFO] [1712690291.670081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.670584]: Instances: []\n", + "[INFO] [1712690291.670867]: Direct Instances: []\n", + "[INFO] [1712690291.671200]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712690291.671449]: -------------------\n", + "[INFO] [1712690291.671688]: SOMA.CutObject \n", + "[INFO] [1712690291.671924]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712690291.672205]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CutObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", + "[INFO] [1712690291.672458]: Subclasses: []\n", + "[INFO] [1712690291.672750]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.673237]: Instances: []\n", + "[INFO] [1712690291.673494]: Direct Instances: []\n", + "[INFO] [1712690291.673821]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712690291.674079]: -------------------\n", + "[INFO] [1712690291.674329]: SOMA.Capability \n", + "[INFO] [1712690291.676023]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712690291.676316]: Ancestors: {DUL.Entity, SOMA.Capability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.676582]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712690291.676885]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712690291.677380]: Instances: []\n", + "[INFO] [1712690291.677653]: Direct Instances: []\n", + "[INFO] [1712690291.677912]: Inverse Restrictions: []\n", + "[INFO] [1712690291.678153]: -------------------\n", + "[INFO] [1712690291.678396]: SOMA.Capacity \n", + "[INFO] [1712690291.678637]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690291.678897]: Ancestors: {DUL.Entity, SOMA.Capacity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690291.679158]: Subclasses: []\n", + "[INFO] [1712690291.679456]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.679959]: Instances: []\n", + "[INFO] [1712690291.680247]: Direct Instances: []\n", + "[INFO] [1712690291.680934]: Inverse Restrictions: []\n", + "[INFO] [1712690291.681200]: -------------------\n", + "[INFO] [1712690291.681455]: SOMA.Intrinsic \n", + "[INFO] [1712690291.681705]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712690291.681951]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690291.682217]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712690291.682511]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.683065]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712690291.683344]: Direct Instances: []\n", + "[INFO] [1712690291.683624]: Inverse Restrictions: []\n", + "[INFO] [1712690291.683867]: -------------------\n", + "[INFO] [1712690291.684114]: SOMA.Carafe \n", + "[INFO] [1712690291.684350]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712690291.684631]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Carafe, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.684895]: Subclasses: [SOMA.CoffeeCarafe]\n", + "[INFO] [1712690291.685186]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.685679]: Instances: []\n", + "[INFO] [1712690291.685959]: Direct Instances: []\n", + "[INFO] [1712690291.686219]: Inverse Restrictions: []\n", + "[INFO] [1712690291.686467]: -------------------\n", + "[INFO] [1712690291.686717]: SOMA.Catching \n", + "[INFO] [1712690291.686964]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690291.687232]: Ancestors: {DUL.Entity, SOMA.Catching, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.687475]: Subclasses: []\n", + "[INFO] [1712690291.687772]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.688275]: Instances: []\n", + "[INFO] [1712690291.688542]: Direct Instances: []\n", + "[INFO] [1712690291.688805]: Inverse Restrictions: []\n", + "[INFO] [1712690291.689049]: -------------------\n", + "[INFO] [1712690291.689286]: SOMA.PickingUp \n", + "[INFO] [1712690291.689520]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690291.689807]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.PickingUp}\n", + "[INFO] [1712690291.690068]: Subclasses: []\n", + "[INFO] [1712690291.690360]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.690850]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712690291.691112]: Direct Instances: [SOMA.picking_up]\n", + "[INFO] [1712690291.691383]: Inverse Restrictions: []\n", + "[INFO] [1712690291.691633]: -------------------\n", + "[INFO] [1712690291.691883]: SOMA.CausalEventRole \n", + "[INFO] [1712690291.692118]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712690291.692377]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausalEventRole, SOMA.CausativeRole, DUL.Role}\n", + "[INFO] [1712690291.692620]: Subclasses: []\n", + "[INFO] [1712690291.692920]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.693406]: Instances: []\n", + "[INFO] [1712690291.693667]: Direct Instances: []\n", + "[INFO] [1712690291.694040]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690291.694318]: -------------------\n", + "[INFO] [1712690291.694578]: SOMA.EventAdjacentRole \n", + "[INFO] [1712690291.694827]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712690291.695079]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.695337]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712690291.695658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.696351]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690291.696640]: Direct Instances: []\n", + "[INFO] [1712690291.696918]: Inverse Restrictions: []\n", + "[INFO] [1712690291.697191]: -------------------\n", + "[INFO] [1712690291.697441]: SOMA.CausedMotionTheory \n", + "[INFO] [1712690291.697743]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712690291.698071]: Ancestors: {DUL.Entity, SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690291.698334]: Subclasses: []\n", + "[INFO] [1712690291.698647]: Properties: [DUL.defines, DUL.hasPart, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.699136]: Instances: []\n", + "[INFO] [1712690291.699390]: Direct Instances: []\n", + "[INFO] [1712690291.699648]: Inverse Restrictions: []\n", + "[INFO] [1712690291.699892]: -------------------\n", + "[INFO] [1712690291.700149]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712690291.700402]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712690291.700647]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690291.700927]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712690291.701238]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.701755]: Instances: []\n", + "[INFO] [1712690291.702034]: Direct Instances: []\n", + "[INFO] [1712690291.702379]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", + "[INFO] [1712690291.702633]: -------------------\n", + "[INFO] [1712690291.702885]: SOMA.PerformerRole \n", + "[INFO] [1712690291.703149]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712690291.703442]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", + "[INFO] [1712690291.703713]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712690291.704014]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.704519]: Instances: []\n", + "[INFO] [1712690291.704799]: Direct Instances: []\n", + "[INFO] [1712690291.705144]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690291.705401]: -------------------\n", + "[INFO] [1712690291.705647]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712690291.705926]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712690291.706213]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.SourcePathGoalTheory}\n", + "[INFO] [1712690291.706469]: Subclasses: []\n", + "[INFO] [1712690291.706766]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.707265]: Instances: []\n", + "[INFO] [1712690291.707540]: Direct Instances: []\n", + "[INFO] [1712690291.707837]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690291.708086]: -------------------\n", + "[INFO] [1712690291.708324]: SOMA.Ceiling \n", + "[INFO] [1712690291.708565]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712690291.708858]: Ancestors: {DUL.Entity, SOMA.Ceiling, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690291.709110]: Subclasses: []\n", + "[INFO] [1712690291.709409]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.709890]: Instances: []\n", + "[INFO] [1712690291.710158]: Direct Instances: []\n", + "[INFO] [1712690291.710414]: Inverse Restrictions: []\n", + "[INFO] [1712690291.710651]: -------------------\n", + "[INFO] [1712690291.710881]: SOMA.RoomSurface \n", + "[INFO] [1712690291.711106]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712690291.711340]: Ancestors: {DUL.Entity, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690291.711599]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712690291.711890]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.712378]: Instances: []\n", + "[INFO] [1712690291.712628]: Direct Instances: []\n", + "[INFO] [1712690291.712885]: Inverse Restrictions: []\n", + "[INFO] [1712690291.713134]: -------------------\n", + "[INFO] [1712690291.713370]: SOMA.Floor \n", + "[INFO] [1712690291.713606]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712690291.713863]: Ancestors: {DUL.Entity, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Floor}\n", + "[INFO] [1712690291.714119]: Subclasses: []\n", + "[INFO] [1712690291.714416]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.714914]: Instances: []\n", + "[INFO] [1712690291.715167]: Direct Instances: []\n", + "[INFO] [1712690291.715415]: Inverse Restrictions: []\n", + "[INFO] [1712690291.715656]: -------------------\n", + "[INFO] [1712690291.715890]: SOMA.Wall \n", + "[INFO] [1712690291.716124]: Super classes: [SOMA.RoomSurface]\n", + "[INFO] [1712690291.716383]: Ancestors: {DUL.Entity, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, SOMA.Wall, DUL.PhysicalObject}\n", + "[INFO] [1712690291.716646]: Subclasses: []\n", + "[INFO] [1712690291.716957]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.717450]: Instances: []\n", + "[INFO] [1712690291.717702]: Direct Instances: []\n", + "[INFO] [1712690291.717944]: Inverse Restrictions: []\n", + "[INFO] [1712690291.718177]: -------------------\n", + "[INFO] [1712690291.718421]: SOMA.CeramicCooktop \n", + "[INFO] [1712690291.718655]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712690291.718934]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.CeramicCooktop, DUL.PhysicalBody, SOMA.ElectricCooktop, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.719177]: Subclasses: []\n", + "[INFO] [1712690291.719456]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.719960]: Instances: []\n", + "[INFO] [1712690291.720221]: Direct Instances: []\n", + "[INFO] [1712690291.720475]: Inverse Restrictions: []\n", + "[INFO] [1712690291.720714]: -------------------\n", + "[INFO] [1712690291.720955]: SOMA.ElectricCooktop \n", + "[INFO] [1712690291.721188]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712690291.721444]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.ElectricCooktop, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.721698]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", + "[INFO] [1712690291.721978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.722467]: Instances: []\n", + "[INFO] [1712690291.722736]: Direct Instances: []\n", + "[INFO] [1712690291.722997]: Inverse Restrictions: []\n", + "[INFO] [1712690291.723243]: -------------------\n", + "[INFO] [1712690291.723477]: SOMA.CerealBox \n", + "[INFO] [1712690291.723708]: Super classes: [SOMA.Box]\n", + "[INFO] [1712690291.723969]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Box, SOMA.CerealBox, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.724231]: Subclasses: []\n", + "[INFO] [1712690291.724525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.725022]: Instances: []\n", + "[INFO] [1712690291.725291]: Direct Instances: []\n", + "[INFO] [1712690291.725550]: Inverse Restrictions: []\n", + "[INFO] [1712690291.725791]: -------------------\n", + "[INFO] [1712690291.726027]: SOMA.Channel \n", + "[INFO] [1712690291.726280]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712690291.726567]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690291.726828]: Subclasses: []\n", + "[INFO] [1712690291.727126]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", + "[INFO] [1712690291.727627]: Instances: []\n", + "[INFO] [1712690291.727892]: Direct Instances: []\n", + "[INFO] [1712690291.728199]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690291.728441]: -------------------\n", + "[INFO] [1712690291.728678]: SOMA.PathRole \n", + "[INFO] [1712690291.728926]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712690291.729187]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.PathRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690291.729443]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712690291.729746]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.730263]: Instances: []\n", + "[INFO] [1712690291.730553]: Direct Instances: []\n", + "[INFO] [1712690291.730856]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712690291.731111]: -------------------\n", + "[INFO] [1712690291.731352]: SOMA.CommunicationTask \n", + "[INFO] [1712690291.732371]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712690291.732672]: Ancestors: {DUL.Entity, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.732974]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712690291.733293]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.733822]: Instances: []\n", + "[INFO] [1712690291.734107]: Direct Instances: []\n", + "[INFO] [1712690291.734957]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", + "[INFO] [1712690291.735228]: -------------------\n", + "[INFO] [1712690291.735490]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712690291.735739]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712690291.736005]: Ancestors: {SOMA.CheckingObjectPresence, owl.Thing, SOMA.Perceiving}\n", + "[INFO] [1712690291.736257]: Subclasses: []\n", + "[INFO] [1712690291.736552]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.737072]: Instances: []\n", + "[INFO] [1712690291.737345]: Direct Instances: []\n", + "[INFO] [1712690291.737605]: Inverse Restrictions: []\n", + "[INFO] [1712690291.737846]: -------------------\n", + "[INFO] [1712690291.738081]: SOMA.ChemicalProcess \n", + "[INFO] [1712690291.738321]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712690291.738602]: Ancestors: {DUL.Entity, DUL.Event, DUL.Process, owl.Thing, SOMA.ChemicalProcess}\n", + "[INFO] [1712690291.738858]: Subclasses: []\n", + "[INFO] [1712690291.739145]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.739631]: Instances: []\n", + "[INFO] [1712690291.739907]: Direct Instances: []\n", + "[INFO] [1712690291.740169]: Inverse Restrictions: []\n", + "[INFO] [1712690291.740408]: -------------------\n", + "[INFO] [1712690291.740650]: SOMA.Choice \n", + "[INFO] [1712690291.740892]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712690291.741168]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.Choice, DUL.SocialObject, SOMA.ResultRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690291.741434]: Subclasses: []\n", + "[INFO] [1712690291.741736]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.742229]: Instances: []\n", + "[INFO] [1712690291.742484]: Direct Instances: []\n", + "[INFO] [1712690291.742741]: Inverse Restrictions: []\n", + "[INFO] [1712690291.742985]: -------------------\n", + "[INFO] [1712690291.743219]: SOMA.ResultRole \n", + "[INFO] [1712690291.743459]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712690291.743708]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.ResultRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690291.743957]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712690291.744242]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.744762]: Instances: []\n", + "[INFO] [1712690291.745030]: Direct Instances: []\n", + "[INFO] [1712690291.745287]: Inverse Restrictions: []\n", + "[INFO] [1712690291.745522]: -------------------\n", + "[INFO] [1712690291.745750]: SOMA.CircularCylinder \n", + "[INFO] [1712690291.746018]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712690291.746307]: Ancestors: {SOMA.CircularCylinder, DUL.Entity, SOMA.CylinderShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690291.746565]: Subclasses: []\n", + "[INFO] [1712690291.746860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", + "[INFO] [1712690291.747366]: Instances: []\n", + "[INFO] [1712690291.747653]: Direct Instances: []\n", + "[INFO] [1712690291.747914]: Inverse Restrictions: []\n", + "[INFO] [1712690291.748155]: -------------------\n", + "[INFO] [1712690291.748390]: SOMA.CylinderShape \n", + "[INFO] [1712690291.748653]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712690291.748926]: Ancestors: {DUL.Entity, SOMA.CylinderShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690291.749186]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712690291.749487]: Properties: [SOMA.hasLength, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712690291.749995]: Instances: []\n", + "[INFO] [1712690291.750268]: Direct Instances: []\n", + "[INFO] [1712690291.750534]: Inverse Restrictions: []\n", + "[INFO] [1712690291.750776]: -------------------\n", + "[INFO] [1712690291.751011]: SOMA.Classifier \n", + "[INFO] [1712690291.751247]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712690291.751540]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Classifier, SOMA.StatisticalReasoner, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690291.751793]: Subclasses: []\n", + "[INFO] [1712690291.752085]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690291.752572]: Instances: []\n", + "[INFO] [1712690291.752842]: Direct Instances: []\n", + "[INFO] [1712690291.753100]: Inverse Restrictions: []\n", + "[INFO] [1712690291.753342]: -------------------\n", + "[INFO] [1712690291.753577]: SOMA.StatisticalReasoner \n", + "[INFO] [1712690291.753806]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712690291.754045]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690291.754305]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712690291.754598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690291.755083]: Instances: []\n", + "[INFO] [1712690291.755335]: Direct Instances: []\n", + "[INFO] [1712690291.755590]: Inverse Restrictions: []\n", + "[INFO] [1712690291.755836]: -------------------\n", + "[INFO] [1712690291.756076]: SOMA.ClausalObject \n", + "[INFO] [1712690291.756308]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712690291.756549]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.ClausalObject}\n", + "[INFO] [1712690291.756801]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712690291.757087]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.757600]: Instances: []\n", + "[INFO] [1712690291.757862]: Direct Instances: []\n", + "[INFO] [1712690291.758118]: Inverse Restrictions: []\n", + "[INFO] [1712690291.758361]: -------------------\n", + "[INFO] [1712690291.758600]: SOMA.Phrase \n", + "[INFO] [1712690291.758839]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712690291.759090]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690291.759343]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712690291.759632]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.760123]: Instances: []\n", + "[INFO] [1712690291.760393]: Direct Instances: []\n", + "[INFO] [1712690291.760660]: Inverse Restrictions: []\n", + "[INFO] [1712690291.760911]: -------------------\n", + "[INFO] [1712690291.761153]: SOMA.Clean \n", + "[INFO] [1712690291.761393]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712690291.761671]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion, SOMA.Clean}\n", + "[INFO] [1712690291.761923]: Subclasses: []\n", + "[INFO] [1712690291.762206]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.762685]: Instances: []\n", + "[INFO] [1712690291.762948]: Direct Instances: []\n", + "[INFO] [1712690291.763638]: Inverse Restrictions: []\n", + "[INFO] [1712690291.763892]: -------------------\n", + "[INFO] [1712690291.764129]: SOMA.CleanlinessRegion \n", + "[INFO] [1712690291.764371]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690291.764621]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion}\n", + "[INFO] [1712690291.764880]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712690291.765173]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.765672]: Instances: []\n", + "[INFO] [1712690291.765943]: Direct Instances: []\n", + "[INFO] [1712690291.766279]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712690291.766524]: -------------------\n", + "[INFO] [1712690291.766768]: SOMA.Cleaning \n", + "[INFO] [1712690291.767040]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712690291.767323]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, SOMA.Cleaning, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690291.767579]: Subclasses: []\n", + "[INFO] [1712690291.767876]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690291.768361]: Instances: []\n", + "[INFO] [1712690291.768612]: Direct Instances: []\n", + "[INFO] [1712690291.768867]: Inverse Restrictions: []\n", + "[INFO] [1712690291.769111]: -------------------\n", + "[INFO] [1712690291.769346]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712690291.769583]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690291.769824]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690291.770093]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712690291.770390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.770890]: Instances: []\n", + "[INFO] [1712690291.771155]: Direct Instances: []\n", + "[INFO] [1712690291.771417]: Inverse Restrictions: []\n", + "[INFO] [1712690291.771655]: -------------------\n", + "[INFO] [1712690291.771888]: SOMA.Purification \n", + "[INFO] [1712690291.772909]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712690291.773222]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Purification}\n", + "[INFO] [1712690291.773487]: Subclasses: []\n", + "[INFO] [1712690291.773787]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.774285]: Instances: []\n", + "[INFO] [1712690291.774554]: Direct Instances: []\n", + "[INFO] [1712690291.774841]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712690291.775089]: -------------------\n", + "[INFO] [1712690291.775326]: SOMA.Cleanliness \n", + "[INFO] [1712690291.775566]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712690291.775838]: Ancestors: {DUL.Entity, SOMA.SocialQuality, SOMA.Cleanliness, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.776088]: Subclasses: []\n", + "[INFO] [1712690291.776380]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712690291.776867]: Instances: []\n", + "[INFO] [1712690291.777141]: Direct Instances: []\n", + "[INFO] [1712690291.777476]: Inverse Restrictions: []\n", + "[INFO] [1712690291.777721]: -------------------\n", + "[INFO] [1712690291.777956]: SOMA.SocialQuality \n", + "[INFO] [1712690291.778194]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712690291.778431]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.SocialQuality, owl.Thing}\n", + "[INFO] [1712690291.778701]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712690291.778999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.779498]: Instances: []\n", + "[INFO] [1712690291.779765]: Direct Instances: []\n", + "[INFO] [1712690291.780025]: Inverse Restrictions: []\n", + "[INFO] [1712690291.780272]: -------------------\n", + "[INFO] [1712690291.780509]: SOMA.Client-Server_Specification \n", + "[INFO] [1712690291.781519]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712690291.781824]: Ancestors: {DUL.Entity, SOMA.InterfaceSpecification, DUL.SocialObject, SOMA.Client-Server_Specification, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690291.782109]: Subclasses: []\n", + "[INFO] [1712690291.782416]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesRole, rdf-schema.label]\n", + "[INFO] [1712690291.782937]: Instances: []\n", + "[INFO] [1712690291.783227]: Direct Instances: []\n", + "[INFO] [1712690291.783595]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712690291.783848]: -------------------\n", + "[INFO] [1712690291.784101]: SOMA.ClientRole \n", + "[INFO] [1712690291.784356]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712690291.785616]: Ancestors: {SOMA.ClientRole, DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690291.785893]: Subclasses: []\n", + "[INFO] [1712690291.786201]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.786712]: Instances: []\n", + "[INFO] [1712690291.786978]: Direct Instances: []\n", + "[INFO] [1712690291.787283]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712690291.787532]: -------------------\n", + "[INFO] [1712690291.787776]: SOMA.ServerRole \n", + "[INFO] [1712690291.788025]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712690291.788311]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.ServerRole, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690291.788576]: Subclasses: []\n", + "[INFO] [1712690291.788880]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.789372]: Instances: []\n", + "[INFO] [1712690291.789643]: Direct Instances: []\n", + "[INFO] [1712690291.790230]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712690291.790602]: -------------------\n", + "[INFO] [1712690291.790860]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712690291.791108]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690291.791363]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690291.791653]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712690291.791988]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690291.792504]: Instances: []\n", + "[INFO] [1712690291.792781]: Direct Instances: []\n", + "[INFO] [1712690291.793052]: Inverse Restrictions: []\n", + "[INFO] [1712690291.793304]: -------------------\n", + "[INFO] [1712690291.793551]: SOMA.Closing \n", + "[INFO] [1712690291.793817]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690291.794087]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, SOMA.Closing, owl.Thing}\n", + "[INFO] [1712690291.794360]: Subclasses: []\n", + "[INFO] [1712690291.794672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.795161]: Instances: []\n", + "[INFO] [1712690291.795419]: Direct Instances: []\n", + "[INFO] [1712690291.795668]: Inverse Restrictions: []\n", + "[INFO] [1712690291.795917]: -------------------\n", + "[INFO] [1712690291.796162]: SOMA.Delivering \n", + "[INFO] [1712690291.796426]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712690291.796717]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Delivering, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.797083]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712690291.797471]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690291.798007]: Instances: []\n", + "[INFO] [1712690291.798294]: Direct Instances: []\n", + "[INFO] [1712690291.798585]: Inverse Restrictions: []\n", + "[INFO] [1712690291.798855]: -------------------\n", + "[INFO] [1712690291.799116]: SOMA.Fetching \n", + "[INFO] [1712690291.799372]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712690291.799663]: Ancestors: {DUL.Entity, SOMA.Fetching, DUL.Concept, DUL.SocialObject, SOMA.PhysicalAcquiring, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690291.799927]: Subclasses: []\n", + "[INFO] [1712690291.800294]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.800816]: Instances: []\n", + "[INFO] [1712690291.801093]: Direct Instances: []\n", + "[INFO] [1712690291.801364]: Inverse Restrictions: []\n", + "[INFO] [1712690291.801619]: -------------------\n", + "[INFO] [1712690291.801887]: SOMA.Lifting \n", + "[INFO] [1712690291.802147]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690291.802435]: Ancestors: {DUL.Entity, SOMA.Lifting, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.802705]: Subclasses: []\n", + "[INFO] [1712690291.803027]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.803575]: Instances: []\n", + "[INFO] [1712690291.803892]: Direct Instances: []\n", + "[INFO] [1712690291.804187]: Inverse Restrictions: []\n", + "[INFO] [1712690291.804458]: -------------------\n", + "[INFO] [1712690291.804724]: SOMA.Opening \n", + "[INFO] [1712690291.805000]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690291.805288]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Opening}\n", + "[INFO] [1712690291.805569]: Subclasses: []\n", + "[INFO] [1712690291.805896]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.806404]: Instances: []\n", + "[INFO] [1712690291.806683]: Direct Instances: []\n", + "[INFO] [1712690291.806952]: Inverse Restrictions: []\n", + "[INFO] [1712690291.807217]: -------------------\n", + "[INFO] [1712690291.807474]: SOMA.Pulling \n", + "[INFO] [1712690291.807726]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690291.808002]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pulling}\n", + "[INFO] [1712690291.808261]: Subclasses: []\n", + "[INFO] [1712690291.808574]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.809104]: Instances: []\n", + "[INFO] [1712690291.809405]: Direct Instances: []\n", + "[INFO] [1712690291.809705]: Inverse Restrictions: []\n", + "[INFO] [1712690291.809987]: -------------------\n", + "[INFO] [1712690291.810277]: SOMA.Pushing \n", + "[INFO] [1712690291.810568]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690291.810907]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, SOMA.Pushing, SOMA.PhysicalTask, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.811245]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712690291.811648]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.812312]: Instances: []\n", + "[INFO] [1712690291.812611]: Direct Instances: []\n", + "[INFO] [1712690291.812897]: Inverse Restrictions: []\n", + "[INFO] [1712690291.813157]: -------------------\n", + "[INFO] [1712690291.813410]: SOMA.Squeezing \n", + "[INFO] [1712690291.813679]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690291.813962]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Squeezing, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690291.814241]: Subclasses: []\n", + "[INFO] [1712690291.814569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.815076]: Instances: []\n", + "[INFO] [1712690291.815350]: Direct Instances: []\n", + "[INFO] [1712690291.815621]: Inverse Restrictions: []\n", + "[INFO] [1712690291.815888]: -------------------\n", + "[INFO] [1712690291.816145]: SOMA.ClosingDisposition \n", + "[INFO] [1712690291.816396]: Super classes: [SOMA.Linkage]\n", + "[INFO] [1712690291.816687]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Linkage, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.ClosingDisposition}\n", + "[INFO] [1712690291.816972]: Subclasses: []\n", + "[INFO] [1712690291.817294]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.817801]: Instances: []\n", + "[INFO] [1712690291.818076]: Direct Instances: []\n", + "[INFO] [1712690291.818337]: Inverse Restrictions: []\n", + "[INFO] [1712690291.818587]: -------------------\n", + "[INFO] [1712690291.818836]: SOMA.Linkage \n", + "[INFO] [1712690291.819134]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712690291.819409]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Linkage, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.819675]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712690291.819990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.820507]: Instances: []\n", + "[INFO] [1712690291.820791]: Direct Instances: []\n", + "[INFO] [1712690291.821072]: Inverse Restrictions: []\n", + "[INFO] [1712690291.821332]: -------------------\n", + "[INFO] [1712690291.821584]: SOMA.Clumsiness \n", + "[INFO] [1712690291.821830]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712690291.822122]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Clumsiness}\n", + "[INFO] [1712690291.822387]: Subclasses: []\n", + "[INFO] [1712690291.822684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.823190]: Instances: []\n", + "[INFO] [1712690291.823464]: Direct Instances: []\n", + "[INFO] [1712690291.823727]: Inverse Restrictions: []\n", + "[INFO] [1712690291.823976]: -------------------\n", + "[INFO] [1712690291.824221]: SOMA.CoffeeCarafe \n", + "[INFO] [1712690291.824460]: Super classes: [SOMA.Carafe]\n", + "[INFO] [1712690291.824733]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Carafe, owl.Thing, DUL.Object, SOMA.CoffeeCarafe, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.825009]: Subclasses: []\n", + "[INFO] [1712690291.825314]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.825810]: Instances: []\n", + "[INFO] [1712690291.826080]: Direct Instances: []\n", + "[INFO] [1712690291.826337]: Inverse Restrictions: []\n", + "[INFO] [1712690291.826588]: -------------------\n", + "[INFO] [1712690291.826844]: SOMA.CoffeeTable \n", + "[INFO] [1712690291.827093]: Super classes: [SOMA.Table]\n", + "[INFO] [1712690291.827368]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Table, SOMA.CoffeeTable, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.827623]: Subclasses: []\n", + "[INFO] [1712690291.827931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.828435]: Instances: []\n", + "[INFO] [1712690291.828706]: Direct Instances: []\n", + "[INFO] [1712690291.828970]: Inverse Restrictions: []\n", + "[INFO] [1712690291.829218]: -------------------\n", + "[INFO] [1712690291.829464]: SOMA.CognitiveAgent \n", + "[INFO] [1712690291.829725]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712690291.830021]: Ancestors: {DUL.Entity, SOMA.CognitiveAgent, owl.Thing, DUL.Object, DUL.Agent}\n", + "[INFO] [1712690291.830295]: Subclasses: []\n", + "[INFO] [1712690291.830628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.831135]: Instances: []\n", + "[INFO] [1712690291.831408]: Direct Instances: []\n", + "[INFO] [1712690291.831678]: Inverse Restrictions: []\n", + "[INFO] [1712690291.831934]: -------------------\n", + "[INFO] [1712690291.832182]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712690291.832429]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712690291.832699]: Ancestors: {DUL.Entity, SOMA.SubCognitiveAgent, owl.Thing, DUL.Object, DUL.Agent}\n", + "[INFO] [1712690291.832973]: Subclasses: []\n", + "[INFO] [1712690291.833287]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.833802]: Instances: []\n", + "[INFO] [1712690291.834069]: Direct Instances: []\n", + "[INFO] [1712690291.834339]: Inverse Restrictions: []\n", + "[INFO] [1712690291.834610]: -------------------\n", + "[INFO] [1712690291.834870]: SOMA.CoilCooktop \n", + "[INFO] [1712690291.835119]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712690291.835399]: Ancestors: {DUL.PhysicalArtifact, SOMA.CoilCooktop, DUL.Entity, DUL.PhysicalBody, SOMA.ElectricCooktop, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.835655]: Subclasses: []\n", + "[INFO] [1712690291.835950]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.836461]: Instances: []\n", + "[INFO] [1712690291.836738]: Direct Instances: []\n", + "[INFO] [1712690291.837011]: Inverse Restrictions: []\n", + "[INFO] [1712690291.837269]: -------------------\n", + "[INFO] [1712690291.837519]: SOMA.Collision \n", + "[INFO] [1712690291.837764]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712690291.838035]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Collision}\n", + "[INFO] [1712690291.838305]: Subclasses: []\n", + "[INFO] [1712690291.838611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.839104]: Instances: []\n", + "[INFO] [1712690291.839371]: Direct Instances: []\n", + "[INFO] [1712690291.839638]: Inverse Restrictions: []\n", + "[INFO] [1712690291.839891]: -------------------\n", + "[INFO] [1712690291.840136]: SOMA.Extrinsic \n", + "[INFO] [1712690291.840380]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712690291.840627]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.840896]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712690291.841221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.841782]: Instances: []\n", + "[INFO] [1712690291.842056]: Direct Instances: []\n", + "[INFO] [1712690291.842334]: Inverse Restrictions: []\n", + "[INFO] [1712690291.842591]: -------------------\n", + "[INFO] [1712690291.842836]: SOMA.ImperativeClause \n", + "[INFO] [1712690291.843115]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712690291.843406]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, SOMA.ImperativeClause, owl.Thing, DUL.Object, SOMA.ClausalObject}\n", + "[INFO] [1712690291.843674]: Subclasses: []\n", + "[INFO] [1712690291.843984]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.844484]: Instances: []\n", + "[INFO] [1712690291.845137]: Direct Instances: []\n", + "[INFO] [1712690291.845778]: Inverse Restrictions: []\n", + "[INFO] [1712690291.846236]: -------------------\n", + "[INFO] [1712690291.846687]: SOMA.CommitedObject \n", + "[INFO] [1712690291.847130]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712690291.847602]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CommitedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.847994]: Subclasses: []\n", + "[INFO] [1712690291.848486]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.849126]: Instances: []\n", + "[INFO] [1712690291.849675]: Direct Instances: []\n", + "[INFO] [1712690291.850086]: Inverse Restrictions: []\n", + "[INFO] [1712690291.850458]: -------------------\n", + "[INFO] [1712690291.850895]: SOMA.ConnectedObject \n", + "[INFO] [1712690291.851248]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690291.851611]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.851973]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712690291.852386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.853004]: Instances: []\n", + "[INFO] [1712690291.853400]: Direct Instances: []\n", + "[INFO] [1712690291.853868]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712690291.854228]: -------------------\n", + "[INFO] [1712690291.854573]: SOMA.CommunicationAction \n", + "[INFO] [1712690291.854933]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712690291.855304]: Ancestors: {DUL.Entity, DUL.Event, SOMA.CommunicationAction, owl.Thing, DUL.Action}\n", + "[INFO] [1712690291.855644]: Subclasses: []\n", + "[INFO] [1712690291.856035]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690291.856635]: Instances: []\n", + "[INFO] [1712690291.857029]: Direct Instances: []\n", + "[INFO] [1712690291.858163]: Inverse Restrictions: []\n", + "[INFO] [1712690291.858525]: -------------------\n", + "[INFO] [1712690291.858867]: SOMA.LinguisticObject \n", + "[INFO] [1712690291.859210]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712690291.859557]: Ancestors: {DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690291.859897]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712690291.860276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690291.860864]: Instances: []\n", + "[INFO] [1712690291.861250]: Direct Instances: []\n", + "[INFO] [1712690291.861645]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712690291.861980]: -------------------\n", + "[INFO] [1712690291.862316]: SOMA.CommunicationReport \n", + "[INFO] [1712690291.862644]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690291.863009]: Ancestors: {DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.863358]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712690291.863741]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.864319]: Instances: []\n", + "[INFO] [1712690291.864659]: Direct Instances: []\n", + "[INFO] [1712690291.865004]: Inverse Restrictions: []\n", + "[INFO] [1712690291.865344]: -------------------\n", + "[INFO] [1712690291.865673]: SOMA.Receiver \n", + "[INFO] [1712690291.866004]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712690291.866369]: Ancestors: {SOMA.ExperiencerRole, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.Receiver, SOMA.PerformerRole, DUL.Role}\n", + "[INFO] [1712690291.866721]: Subclasses: []\n", + "[INFO] [1712690291.867113]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", + "[INFO] [1712690291.867692]: Instances: []\n", + "[INFO] [1712690291.868225]: Direct Instances: []\n", + "[INFO] [1712690291.868670]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690291.869029]: -------------------\n", + "[INFO] [1712690291.869379]: SOMA.Sender \n", + "[INFO] [1712690291.869723]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712690291.870083]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Sender, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", + "[INFO] [1712690291.870436]: Subclasses: []\n", + "[INFO] [1712690291.870832]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", + "[INFO] [1712690291.871417]: Instances: []\n", + "[INFO] [1712690291.871771]: Direct Instances: []\n", + "[INFO] [1712690291.872196]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690291.872549]: -------------------\n", + "[INFO] [1712690291.872900]: SOMA.CommunicationTopic \n", + "[INFO] [1712690291.874032]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712690291.874447]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.874815]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690291.875212]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.875822]: Instances: []\n", + "[INFO] [1712690291.876200]: Direct Instances: []\n", + "[INFO] [1712690291.876552]: Inverse Restrictions: []\n", + "[INFO] [1712690291.876896]: -------------------\n", + "[INFO] [1712690291.877255]: SOMA.ResourceRole \n", + "[INFO] [1712690291.877593]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690291.877941]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.878307]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712690291.878696]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.879342]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690291.879708]: Direct Instances: []\n", + "[INFO] [1712690291.880060]: Inverse Restrictions: []\n", + "[INFO] [1712690291.880391]: -------------------\n", + "[INFO] [1712690291.880725]: SOMA.Compartment \n", + "[INFO] [1712690291.881104]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690291.881419]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalObject}\n", + "[INFO] [1712690291.881716]: Subclasses: [SOMA.FreezerCompartment]\n", + "[INFO] [1712690291.882030]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.882556]: Instances: []\n", + "[INFO] [1712690291.882852]: Direct Instances: []\n", + "[INFO] [1712690291.883120]: Inverse Restrictions: []\n", + "[INFO] [1712690291.883369]: -------------------\n", + "[INFO] [1712690291.883633]: SOMA.Composing \n", + "[INFO] [1712690291.883890]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712690291.884165]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Composing}\n", + "[INFO] [1712690291.884420]: Subclasses: []\n", + "[INFO] [1712690291.884720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.885265]: Instances: []\n", + "[INFO] [1712690291.885587]: Direct Instances: []\n", + "[INFO] [1712690291.885914]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712690291.886174]: -------------------\n", + "[INFO] [1712690291.886426]: SOMA.Computer_Language \n", + "[INFO] [1712690291.886681]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712690291.886949]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690291.887217]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712690291.887518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.888029]: Instances: []\n", + "[INFO] [1712690291.888307]: Direct Instances: []\n", + "[INFO] [1712690291.888577]: Inverse Restrictions: []\n", + "[INFO] [1712690291.888832]: -------------------\n", + "[INFO] [1712690291.889084]: SOMA.FormalLanguage \n", + "[INFO] [1712690291.889337]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712690291.889594]: Ancestors: {DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690291.889867]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690291.890175]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.890702]: Instances: []\n", + "[INFO] [1712690291.890982]: Direct Instances: []\n", + "[INFO] [1712690291.891304]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712690291.891563]: -------------------\n", + "[INFO] [1712690291.891821]: SOMA.Computer_Program \n", + "[INFO] [1712690291.892261]: Super classes: [owl.Thing]\n", + "[INFO] [1712690291.896679]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712690291.897184]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712690291.897709]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", + "[INFO] [1712690291.898540]: Instances: []\n", + "[INFO] [1712690291.898944]: Direct Instances: []\n", + "[INFO] [1712690291.902585]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712690291.903024]: -------------------\n", + "[INFO] [1712690291.903383]: SOMA.Programming_Language \n", + "[INFO] [1712690291.903760]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712690291.904233]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.Programming_Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690291.904632]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712690291.905172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.905808]: Instances: []\n", + "[INFO] [1712690291.906191]: Direct Instances: []\n", + "[INFO] [1712690291.906628]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712690291.906988]: -------------------\n", + "[INFO] [1712690291.907271]: SOMA.Conclusion \n", + "[INFO] [1712690291.907532]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712690291.907835]: Ancestors: {SOMA.Conclusion, DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.CreatedObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.908098]: Subclasses: []\n", + "[INFO] [1712690291.908396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.908911]: Instances: []\n", + "[INFO] [1712690291.909193]: Direct Instances: []\n", + "[INFO] [1712690291.910256]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690291.910513]: -------------------\n", + "[INFO] [1712690291.910765]: SOMA.CreatedObject \n", + "[INFO] [1712690291.911016]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690291.911269]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CreatedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.911522]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712690291.911813]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.912325]: Instances: []\n", + "[INFO] [1712690291.912594]: Direct Instances: []\n", + "[INFO] [1712690291.912978]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712690291.913254]: -------------------\n", + "[INFO] [1712690291.913507]: SOMA.Knowledge \n", + "[INFO] [1712690291.913748]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712690291.913996]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.914260]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712690291.914556]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.915069]: Instances: []\n", + "[INFO] [1712690291.915343]: Direct Instances: []\n", + "[INFO] [1712690291.916520]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712690291.916780]: -------------------\n", + "[INFO] [1712690291.917040]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712690291.917287]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712690291.917551]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, SOMA.ConditionalSuccedence, DUL.Description, SOMA.Succedence}\n", + "[INFO] [1712690291.917805]: Subclasses: []\n", + "[INFO] [1712690291.918110]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.918608]: Instances: []\n", + "[INFO] [1712690291.918866]: Direct Instances: []\n", + "[INFO] [1712690291.919115]: Inverse Restrictions: []\n", + "[INFO] [1712690291.919362]: -------------------\n", + "[INFO] [1712690291.919600]: SOMA.Configuration \n", + "[INFO] [1712690291.919842]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712690291.920099]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Configuration, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690291.920339]: Subclasses: []\n", + "[INFO] [1712690291.920641]: Properties: [DUL.describes, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.921135]: Instances: []\n", + "[INFO] [1712690291.921390]: Direct Instances: []\n", + "[INFO] [1712690291.921635]: Inverse Restrictions: []\n", + "[INFO] [1712690291.921863]: -------------------\n", + "[INFO] [1712690291.922103]: SOMA.Connectivity \n", + "[INFO] [1712690291.922348]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712690291.922587]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.922832]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712690291.923116]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.923624]: Instances: []\n", + "[INFO] [1712690291.923885]: Direct Instances: []\n", + "[INFO] [1712690291.924179]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712690291.924415]: -------------------\n", + "[INFO] [1712690291.924648]: SOMA.ContactState \n", + "[INFO] [1712690291.924917]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712690291.925197]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.StateType, SOMA.ContactState, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.925451]: Subclasses: []\n", + "[INFO] [1712690291.925741]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.926250]: Instances: []\n", + "[INFO] [1712690291.926519]: Direct Instances: []\n", + "[INFO] [1712690291.926780]: Inverse Restrictions: []\n", + "[INFO] [1712690291.927021]: -------------------\n", + "[INFO] [1712690291.927255]: SOMA.Container \n", + "[INFO] [1712690291.927484]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712690291.927755]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, SOMA.Container, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.928011]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", + "[INFO] [1712690291.928299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.928802]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690291.929072]: Direct Instances: []\n", + "[INFO] [1712690291.929794]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712690291.930056]: -------------------\n", + "[INFO] [1712690291.930303]: SOMA.Containment \n", + "[INFO] [1712690291.930579]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712690291.930868]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.931134]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712690291.931436]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.931926]: Instances: []\n", + "[INFO] [1712690291.932211]: Direct Instances: []\n", + "[INFO] [1712690291.932622]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712690291.932884]: -------------------\n", + "[INFO] [1712690291.933124]: SOMA.IncludedObject \n", + "[INFO] [1712690291.933360]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690291.933644]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.933904]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712690291.934194]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.934683]: Instances: []\n", + "[INFO] [1712690291.934950]: Direct Instances: []\n", + "[INFO] [1712690291.935241]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712690291.935483]: -------------------\n", + "[INFO] [1712690291.935719]: SOMA.ContainmentState \n", + "[INFO] [1712690291.936731]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712690291.937050]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing, SOMA.ContainmentState}\n", + "[INFO] [1712690291.937326]: Subclasses: []\n", + "[INFO] [1712690291.937634]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690291.938139]: Instances: []\n", + "[INFO] [1712690291.938408]: Direct Instances: []\n", + "[INFO] [1712690291.938665]: Inverse Restrictions: []\n", + "[INFO] [1712690291.938903]: -------------------\n", + "[INFO] [1712690291.939137]: SOMA.FunctionalControl \n", + "[INFO] [1712690291.939394]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712690291.939662]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.939929]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712690291.940229]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690291.940738]: Instances: []\n", + "[INFO] [1712690291.941018]: Direct Instances: []\n", + "[INFO] [1712690291.941276]: Inverse Restrictions: []\n", + "[INFO] [1712690291.941517]: -------------------\n", + "[INFO] [1712690291.941751]: SOMA.ContainmentTheory \n", + "[INFO] [1712690291.942000]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712690291.942297]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, SOMA.ContainmentTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690291.942558]: Subclasses: []\n", + "[INFO] [1712690291.942855]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.943347]: Instances: []\n", + "[INFO] [1712690291.943624]: Direct Instances: []\n", + "[INFO] [1712690291.943885]: Inverse Restrictions: []\n", + "[INFO] [1712690291.944125]: -------------------\n", + "[INFO] [1712690291.944364]: SOMA.ControlTheory \n", + "[INFO] [1712690291.944608]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712690291.944875]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690291.945141]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712690291.945434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.945930]: Instances: []\n", + "[INFO] [1712690291.946204]: Direct Instances: []\n", + "[INFO] [1712690291.946464]: Inverse Restrictions: []\n", + "[INFO] [1712690291.946717]: -------------------\n", + "[INFO] [1712690291.946961]: SOMA.ContinuousJoint \n", + "[INFO] [1712690291.947205]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712690291.947485]: Ancestors: {DUL.Entity, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject, SOMA.ContinuousJoint}\n", + "[INFO] [1712690291.947753]: Subclasses: []\n", + "[INFO] [1712690291.948050]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.948545]: Instances: []\n", + "[INFO] [1712690291.948804]: Direct Instances: []\n", + "[INFO] [1712690291.949064]: Inverse Restrictions: []\n", + "[INFO] [1712690291.949316]: -------------------\n", + "[INFO] [1712690291.949561]: SOMA.HingeJoint \n", + "[INFO] [1712690291.949796]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712690291.950043]: Ancestors: {DUL.Entity, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690291.950308]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712690291.950603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.951100]: Instances: []\n", + "[INFO] [1712690291.951352]: Direct Instances: []\n", + "[INFO] [1712690291.951612]: Inverse Restrictions: []\n", + "[INFO] [1712690291.951854]: -------------------\n", + "[INFO] [1712690291.952098]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712690291.952360]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712690291.952632]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690291.952895]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712690291.953196]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.953690]: Instances: []\n", + "[INFO] [1712690291.953968]: Direct Instances: []\n", + "[INFO] [1712690291.954233]: Inverse Restrictions: []\n", + "[INFO] [1712690291.954482]: -------------------\n", + "[INFO] [1712690291.954723]: SOMA.Cooktop \n", + "[INFO] [1712690291.954959]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690291.955204]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.955469]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", + "[INFO] [1712690291.955764]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.956268]: Instances: []\n", + "[INFO] [1712690291.956536]: Direct Instances: []\n", + "[INFO] [1712690291.956800]: Inverse Restrictions: []\n", + "[INFO] [1712690291.957057]: -------------------\n", + "[INFO] [1712690291.957295]: SOMA.Countertop \n", + "[INFO] [1712690291.957524]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690291.957808]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Countertop, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.958074]: Subclasses: []\n", + "[INFO] [1712690291.958364]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.958855]: Instances: []\n", + "[INFO] [1712690291.959117]: Direct Instances: []\n", + "[INFO] [1712690291.959373]: Inverse Restrictions: []\n", + "[INFO] [1712690291.959616]: -------------------\n", + "[INFO] [1712690291.959851]: SOMA.Cover \n", + "[INFO] [1712690291.960082]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712690291.960346]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Cover, DUL.Role}\n", + "[INFO] [1712690291.960611]: Subclasses: []\n", + "[INFO] [1712690291.960908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.961405]: Instances: []\n", + "[INFO] [1712690291.961679]: Direct Instances: []\n", + "[INFO] [1712690291.961987]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712690291.962235]: -------------------\n", + "[INFO] [1712690291.962474]: SOMA.Coverage \n", + "[INFO] [1712690291.962732]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712690291.963023]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Coverage, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.963278]: Subclasses: []\n", + "[INFO] [1712690291.963577]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.964069]: Instances: []\n", + "[INFO] [1712690291.964339]: Direct Instances: []\n", + "[INFO] [1712690291.964599]: Inverse Restrictions: []\n", + "[INFO] [1712690291.964844]: -------------------\n", + "[INFO] [1712690291.965085]: SOMA.CoveredObject \n", + "[INFO] [1712690291.965338]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712690291.965609]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CoveredObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690291.965863]: Subclasses: []\n", + "[INFO] [1712690291.966154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.966651]: Instances: []\n", + "[INFO] [1712690291.966921]: Direct Instances: []\n", + "[INFO] [1712690291.967213]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712690291.967456]: -------------------\n", + "[INFO] [1712690291.967692]: SOMA.CoverageTheory \n", + "[INFO] [1712690291.967936]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712690291.968207]: Ancestors: {DUL.Entity, DUL.Description, SOMA.CoverageTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690291.968461]: Subclasses: []\n", + "[INFO] [1712690291.968753]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.969253]: Instances: []\n", + "[INFO] [1712690291.969524]: Direct Instances: []\n", + "[INFO] [1712690291.969779]: Inverse Restrictions: []\n", + "[INFO] [1712690291.970016]: -------------------\n", + "[INFO] [1712690291.970251]: SOMA.CoveringTheory \n", + "[INFO] [1712690291.970489]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712690291.970771]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.CoveringTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690291.971030]: Subclasses: []\n", + "[INFO] [1712690291.971324]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.971806]: Instances: []\n", + "[INFO] [1712690291.972071]: Direct Instances: []\n", + "[INFO] [1712690291.972327]: Inverse Restrictions: []\n", + "[INFO] [1712690291.972574]: -------------------\n", + "[INFO] [1712690291.972812]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712690291.973051]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712690291.973302]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690291.973564]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712690291.973856]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.974358]: Instances: []\n", + "[INFO] [1712690291.974627]: Direct Instances: []\n", + "[INFO] [1712690291.974889]: Inverse Restrictions: []\n", + "[INFO] [1712690291.975131]: -------------------\n", + "[INFO] [1712690291.975369]: SOMA.CrackingTheory \n", + "[INFO] [1712690291.975611]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712690291.975885]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.CrackingTheory, DUL.Description, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690291.976146]: Subclasses: []\n", + "[INFO] [1712690291.976449]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.976945]: Instances: []\n", + "[INFO] [1712690291.977202]: Direct Instances: []\n", + "[INFO] [1712690291.977470]: Inverse Restrictions: []\n", + "[INFO] [1712690291.977716]: -------------------\n", + "[INFO] [1712690291.977955]: SOMA.Creation \n", + "[INFO] [1712690291.978194]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712690291.978466]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Creation, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690291.978729]: Subclasses: []\n", + "[INFO] [1712690291.979048]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690291.979550]: Instances: []\n", + "[INFO] [1712690291.979806]: Direct Instances: []\n", + "[INFO] [1712690291.980057]: Inverse Restrictions: []\n", + "[INFO] [1712690291.980307]: -------------------\n", + "[INFO] [1712690291.980546]: SOMA.Tableware \n", + "[INFO] [1712690291.980787]: Super classes: [SOMA.DesignedTool]\n", + "[INFO] [1712690291.981041]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690291.981308]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", + "[INFO] [1712690291.981599]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690291.982120]: Instances: []\n", + "[INFO] [1712690291.982398]: Direct Instances: []\n", + "[INFO] [1712690291.982674]: Inverse Restrictions: []\n", + "[INFO] [1712690291.982922]: -------------------\n", + "[INFO] [1712690291.983164]: SOMA.Insertion \n", + "[INFO] [1712690291.983429]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712690291.983724]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Insertion, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690291.983984]: Subclasses: []\n", + "[INFO] [1712690291.984288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.984784]: Instances: []\n", + "[INFO] [1712690291.985066]: Direct Instances: []\n", + "[INFO] [1712690291.985609]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712690291.985870]: -------------------\n", + "[INFO] [1712690291.986112]: SOMA.Cup \n", + "[INFO] [1712690291.986366]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712690291.986660]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedTool, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Cup, DUL.PhysicalObject}\n", + "[INFO] [1712690291.986919]: Subclasses: []\n", + "[INFO] [1712690291.987212]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712690291.987700]: Instances: []\n", + "[INFO] [1712690291.987970]: Direct Instances: []\n", + "[INFO] [1712690291.988224]: Inverse Restrictions: []\n", + "[INFO] [1712690291.988467]: -------------------\n", + "[INFO] [1712690291.988706]: SOMA.DesignedHandle \n", + "[INFO] [1712690291.989162]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", + "[INFO] [1712690291.989621]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.DesignedHandle, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.989928]: Subclasses: []\n", + "[INFO] [1712690291.990259]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690291.990775]: Instances: []\n", + "[INFO] [1712690291.991045]: Direct Instances: []\n", + "[INFO] [1712690291.991397]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", + "[INFO] [1712690291.991887]: -------------------\n", + "[INFO] [1712690291.992173]: SOMA.Cupboard \n", + "[INFO] [1712690291.992440]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", + "[INFO] [1712690291.992718]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cupboard, owl.Thing, DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.992984]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", + "[INFO] [1712690291.993281]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712690291.993796]: Instances: []\n", + "[INFO] [1712690291.994064]: Direct Instances: []\n", + "[INFO] [1712690291.994325]: Inverse Restrictions: []\n", + "[INFO] [1712690291.994568]: -------------------\n", + "[INFO] [1712690291.994811]: SOMA.DesignedFurniture \n", + "[INFO] [1712690291.995057]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712690291.995308]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690291.995564]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712690291.995895]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690291.996416]: Instances: []\n", + "[INFO] [1712690291.996686]: Direct Instances: []\n", + "[INFO] [1712690291.996950]: Inverse Restrictions: []\n", + "[INFO] [1712690291.997195]: -------------------\n", + "[INFO] [1712690291.997439]: SOMA.Rack \n", + "[INFO] [1712690291.997691]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690291.997970]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Rack, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690291.998220]: Subclasses: []\n", + "[INFO] [1712690291.998514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690291.999022]: Instances: []\n", + "[INFO] [1712690291.999299]: Direct Instances: []\n", + "[INFO] [1712690291.999579]: Inverse Restrictions: [SOMA.Cupboard]\n", + "[INFO] [1712690291.999841]: -------------------\n", + "[INFO] [1712690292.000086]: SOMA.Cutlery \n", + "[INFO] [1712690292.000329]: Super classes: [SOMA.Tableware]\n", + "[INFO] [1712690292.000599]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.000863]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", + "[INFO] [1712690292.001167]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690292.001680]: Instances: []\n", + "[INFO] [1712690292.001941]: Direct Instances: []\n", + "[INFO] [1712690292.002193]: Inverse Restrictions: []\n", + "[INFO] [1712690292.002439]: -------------------\n", + "[INFO] [1712690292.002681]: SOMA.Cuttability \n", + "[INFO] [1712690292.002925]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712690292.003186]: Ancestors: {DUL.Entity, SOMA.Cuttability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690292.003447]: Subclasses: []\n", + "[INFO] [1712690292.003745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.004235]: Instances: []\n", + "[INFO] [1712690292.004488]: Direct Instances: []\n", + "[INFO] [1712690292.004739]: Inverse Restrictions: []\n", + "[INFO] [1712690292.004993]: -------------------\n", + "[INFO] [1712690292.005234]: SOMA.Tool \n", + "[INFO] [1712690292.005470]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712690292.005720]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Tool, DUL.Role}\n", + "[INFO] [1712690292.005984]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712690292.006277]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.006772]: Instances: []\n", + "[INFO] [1712690292.007030]: Direct Instances: []\n", + "[INFO] [1712690292.007330]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712690292.007579]: -------------------\n", + "[INFO] [1712690292.007814]: SOMA.Cutting \n", + "[INFO] [1712690292.008050]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712690292.008311]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting}\n", + "[INFO] [1712690292.008582]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712690292.008884]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.009387]: Instances: []\n", + "[INFO] [1712690292.009645]: Direct Instances: []\n", + "[INFO] [1712690292.009894]: Inverse Restrictions: []\n", + "[INFO] [1712690292.010145]: -------------------\n", + "[INFO] [1712690292.010386]: SOMA.CuttingTool \n", + "[INFO] [1712690292.010638]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", + "[INFO] [1712690292.010887]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.CuttingTool, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.011137]: Subclasses: [SOMA.Knife]\n", + "[INFO] [1712690292.011435]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", + "[INFO] [1712690292.011935]: Instances: []\n", + "[INFO] [1712690292.012191]: Direct Instances: []\n", + "[INFO] [1712690292.012433]: Inverse Restrictions: []\n", + "[INFO] [1712690292.012674]: -------------------\n", + "[INFO] [1712690292.012928]: SOMA.DesignedTool \n", + "[INFO] [1712690292.013182]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712690292.013436]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.013688]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712690292.013980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.014524]: Instances: []\n", + "[INFO] [1712690292.014793]: Direct Instances: []\n", + "[INFO] [1712690292.015049]: Inverse Restrictions: []\n", + "[INFO] [1712690292.015291]: -------------------\n", + "[INFO] [1712690292.015532]: SOMA.Shaping \n", + "[INFO] [1712690292.015807]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712690292.016095]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Shaping}\n", + "[INFO] [1712690292.016352]: Subclasses: []\n", + "[INFO] [1712690292.016656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.017160]: Instances: []\n", + "[INFO] [1712690292.017427]: Direct Instances: []\n", + "[INFO] [1712690292.017710]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712690292.017956]: -------------------\n", + "[INFO] [1712690292.018193]: SOMA.Database \n", + "[INFO] [1712690292.018428]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690292.018688]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, SOMA.Database, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.018943]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712690292.019246]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.019742]: Instances: []\n", + "[INFO] [1712690292.020002]: Direct Instances: []\n", + "[INFO] [1712690292.020251]: Inverse Restrictions: []\n", + "[INFO] [1712690292.020505]: -------------------\n", + "[INFO] [1712690292.020747]: SOMA.SoftwareRole \n", + "[INFO] [1712690292.021018]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712690292.021283]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.021554]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712690292.021857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.022378]: Instances: []\n", + "[INFO] [1712690292.022647]: Direct Instances: []\n", + "[INFO] [1712690292.022945]: Inverse Restrictions: []\n", + "[INFO] [1712690292.023192]: -------------------\n", + "[INFO] [1712690292.023429]: SOMA.Deciding \n", + "[INFO] [1712690292.023661]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690292.023918]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712690292.024184]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712690292.024482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690292.024990]: Instances: []\n", + "[INFO] [1712690292.025266]: Direct Instances: []\n", + "[INFO] [1712690292.025530]: Inverse Restrictions: []\n", + "[INFO] [1712690292.025768]: -------------------\n", + "[INFO] [1712690292.026003]: SOMA.DerivingInformation \n", + "[INFO] [1712690292.026247]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712690292.026484]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.026751]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712690292.027048]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.label]\n", + "[INFO] [1712690292.027565]: Instances: []\n", + "[INFO] [1712690292.027843]: Direct Instances: []\n", + "[INFO] [1712690292.028105]: Inverse Restrictions: []\n", + "[INFO] [1712690292.028349]: -------------------\n", + "[INFO] [1712690292.028585]: SOMA.DeductiveReasoning \n", + "[INFO] [1712690292.028838]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712690292.029129]: Ancestors: {SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.DeductiveReasoning, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.029392]: Subclasses: []\n", + "[INFO] [1712690292.029685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.030193]: Instances: []\n", + "[INFO] [1712690292.030493]: Direct Instances: []\n", + "[INFO] [1712690292.030761]: Inverse Restrictions: []\n", + "[INFO] [1712690292.031012]: -------------------\n", + "[INFO] [1712690292.031248]: SOMA.Deformation \n", + "[INFO] [1712690292.031506]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712690292.031773]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Deformation, owl.Thing, SOMA.Alteration}\n", + "[INFO] [1712690292.032032]: Subclasses: []\n", + "[INFO] [1712690292.032358]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.032875]: Instances: []\n", + "[INFO] [1712690292.033146]: Direct Instances: []\n", + "[INFO] [1712690292.033406]: Inverse Restrictions: []\n", + "[INFO] [1712690292.033646]: -------------------\n", + "[INFO] [1712690292.033887]: SOMA.ShapedObject \n", + "[INFO] [1712690292.034155]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712690292.034435]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.ShapedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", + "[INFO] [1712690292.034694]: Subclasses: []\n", + "[INFO] [1712690292.034997]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTriggerDefinedIn]\n", + "[INFO] [1712690292.035486]: Instances: []\n", + "[INFO] [1712690292.035760]: Direct Instances: []\n", + "[INFO] [1712690292.036080]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712690292.036329]: -------------------\n", + "[INFO] [1712690292.036570]: SOMA.FluidFlow \n", + "[INFO] [1712690292.036844]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712690292.037148]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.FluidFlow, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.037402]: Subclasses: []\n", + "[INFO] [1712690292.037695]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.038184]: Instances: []\n", + "[INFO] [1712690292.038453]: Direct Instances: []\n", + "[INFO] [1712690292.038708]: Inverse Restrictions: []\n", + "[INFO] [1712690292.038951]: -------------------\n", + "[INFO] [1712690292.039186]: SOMA.Shifting \n", + "[INFO] [1712690292.039454]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712690292.039742]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Shifting, owl.Thing}\n", + "[INFO] [1712690292.039998]: Subclasses: []\n", + "[INFO] [1712690292.040291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.040791]: Instances: []\n", + "[INFO] [1712690292.041072]: Direct Instances: []\n", + "[INFO] [1712690292.041407]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712690292.041659]: -------------------\n", + "[INFO] [1712690292.041901]: SOMA.DependentPlace \n", + "[INFO] [1712690292.042140]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712690292.042403]: Ancestors: {DUL.Entity, SOMA.DependentPlace, SOMA.Feature, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.042662]: Subclasses: []\n", + "[INFO] [1712690292.042958]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.043451]: Instances: []\n", + "[INFO] [1712690292.043709]: Direct Instances: []\n", + "[INFO] [1712690292.043951]: Inverse Restrictions: []\n", + "[INFO] [1712690292.044188]: -------------------\n", + "[INFO] [1712690292.044425]: SOMA.Deposit \n", + "[INFO] [1712690292.044666]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712690292.044939]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, SOMA.Deposit, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.045196]: Subclasses: []\n", + "[INFO] [1712690292.045488]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.045984]: Instances: []\n", + "[INFO] [1712690292.046250]: Direct Instances: []\n", + "[INFO] [1712690292.046546]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712690292.046800]: -------------------\n", + "[INFO] [1712690292.047041]: SOMA.DepositedObject \n", + "[INFO] [1712690292.047273]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690292.047551]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.DepositedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.047811]: Subclasses: []\n", + "[INFO] [1712690292.048108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.048603]: Instances: []\n", + "[INFO] [1712690292.048868]: Direct Instances: []\n", + "[INFO] [1712690292.049172]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712690292.049425]: -------------------\n", + "[INFO] [1712690292.049667]: SOMA.InformationAcquisition \n", + "[INFO] [1712690292.049904]: Super classes: [owl.Thing]\n", + "[INFO] [1712690292.050143]: Ancestors: {owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.050414]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712690292.050720]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.051252]: Instances: []\n", + "[INFO] [1712690292.051521]: Direct Instances: []\n", + "[INFO] [1712690292.051814]: Inverse Restrictions: []\n", + "[INFO] [1712690292.052060]: -------------------\n", + "[INFO] [1712690292.052297]: SOMA.Premise \n", + "[INFO] [1712690292.052532]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712690292.052800]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Premise, DUL.Role}\n", + "[INFO] [1712690292.053089]: Subclasses: []\n", + "[INFO] [1712690292.053406]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.053900]: Instances: []\n", + "[INFO] [1712690292.054161]: Direct Instances: []\n", + "[INFO] [1712690292.054457]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690292.054715]: -------------------\n", + "[INFO] [1712690292.054962]: SOMA.FunctionalPart \n", + "[INFO] [1712690292.055608]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712690292.055888]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690292.056154]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712690292.056451]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.056998]: Instances: []\n", + "[INFO] [1712690292.057278]: Direct Instances: []\n", + "[INFO] [1712690292.057549]: Inverse Restrictions: []\n", + "[INFO] [1712690292.057797]: -------------------\n", + "[INFO] [1712690292.058040]: SOMA.Graspability \n", + "[INFO] [1712690292.058275]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712690292.058555]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Graspability}\n", + "[INFO] [1712690292.058810]: Subclasses: []\n", + "[INFO] [1712690292.059103]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.059591]: Instances: []\n", + "[INFO] [1712690292.059860]: Direct Instances: []\n", + "[INFO] [1712690292.060141]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712690292.060389]: -------------------\n", + "[INFO] [1712690292.060630]: SOMA.DesignedSpade \n", + "[INFO] [1712690292.060872]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690292.061147]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.DesignedSpade, DUL.PhysicalObject}\n", + "[INFO] [1712690292.061418]: Subclasses: []\n", + "[INFO] [1712690292.061718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.062210]: Instances: []\n", + "[INFO] [1712690292.062464]: Direct Instances: []\n", + "[INFO] [1712690292.062738]: Inverse Restrictions: [SOMA.Spatula]\n", + "[INFO] [1712690292.062994]: -------------------\n", + "[INFO] [1712690292.063243]: SOMA.DessertFork \n", + "[INFO] [1712690292.063485]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712690292.063761]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cutlery, SOMA.DessertFork, owl.Thing, DUL.Object, SOMA.Fork, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.064010]: Subclasses: []\n", + "[INFO] [1712690292.064297]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.064916]: Instances: []\n", + "[INFO] [1712690292.065326]: Direct Instances: []\n", + "[INFO] [1712690292.065699]: Inverse Restrictions: []\n", + "[INFO] [1712690292.066057]: -------------------\n", + "[INFO] [1712690292.066338]: SOMA.Fork \n", + "[INFO] [1712690292.066597]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712690292.066873]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Fork, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.067159]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", + "[INFO] [1712690292.067465]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712690292.067982]: Instances: []\n", + "[INFO] [1712690292.068255]: Direct Instances: []\n", + "[INFO] [1712690292.068511]: Inverse Restrictions: []\n", + "[INFO] [1712690292.068755]: -------------------\n", + "[INFO] [1712690292.069002]: SOMA.Destination \n", + "[INFO] [1712690292.069418]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712690292.069720]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Destination, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690292.069987]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712690292.070293]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.070801]: Instances: []\n", + "[INFO] [1712690292.071085]: Direct Instances: []\n", + "[INFO] [1712690292.071421]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712690292.071673]: -------------------\n", + "[INFO] [1712690292.071913]: SOMA.Location \n", + "[INFO] [1712690292.072154]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712690292.072408]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690292.072674]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712690292.072982]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.073481]: Instances: []\n", + "[INFO] [1712690292.073755]: Direct Instances: []\n", + "[INFO] [1712690292.074018]: Inverse Restrictions: []\n", + "[INFO] [1712690292.074259]: -------------------\n", + "[INFO] [1712690292.074497]: SOMA.DestroyedObject \n", + "[INFO] [1712690292.074733]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690292.074997]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.DestroyedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.075259]: Subclasses: []\n", + "[INFO] [1712690292.075558]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.076051]: Instances: []\n", + "[INFO] [1712690292.076323]: Direct Instances: []\n", + "[INFO] [1712690292.076632]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712690292.076888]: -------------------\n", + "[INFO] [1712690292.077142]: SOMA.Destruction \n", + "[INFO] [1712690292.077409]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712690292.077712]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Destruction, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.078005]: Subclasses: []\n", + "[INFO] [1712690292.078362]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.078957]: Instances: []\n", + "[INFO] [1712690292.079292]: Direct Instances: []\n", + "[INFO] [1712690292.079632]: Inverse Restrictions: []\n", + "[INFO] [1712690292.079954]: -------------------\n", + "[INFO] [1712690292.080274]: SOMA.DetectedObject \n", + "[INFO] [1712690292.080596]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690292.080966]: Ancestors: {SOMA.DetectedObject, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.081296]: Subclasses: []\n", + "[INFO] [1712690292.081658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.082252]: Instances: []\n", + "[INFO] [1712690292.082570]: Direct Instances: []\n", + "[INFO] [1712690292.082874]: Inverse Restrictions: []\n", + "[INFO] [1712690292.083150]: -------------------\n", + "[INFO] [1712690292.083449]: SOMA.DeviceState \n", + "[INFO] [1712690292.083709]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690292.084011]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic, SOMA.DeviceState}\n", + "[INFO] [1712690292.084289]: Subclasses: []\n", + "[INFO] [1712690292.084579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.085066]: Instances: []\n", + "[INFO] [1712690292.085353]: Direct Instances: []\n", + "[INFO] [1712690292.085617]: Inverse Restrictions: []\n", + "[INFO] [1712690292.085858]: -------------------\n", + "[INFO] [1712690292.086093]: SOMA.DeviceStateRange \n", + "[INFO] [1712690292.086330]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690292.087199]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", + "[INFO] [1712690292.087477]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712690292.087795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.088304]: Instances: []\n", + "[INFO] [1712690292.088573]: Direct Instances: []\n", + "[INFO] [1712690292.088839]: Inverse Restrictions: []\n", + "[INFO] [1712690292.089086]: -------------------\n", + "[INFO] [1712690292.089328]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712690292.089574]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712690292.089844]: Ancestors: {DUL.Entity, SOMA.DeviceTurnedOff, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", + "[INFO] [1712690292.090092]: Subclasses: []\n", + "[INFO] [1712690292.090384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.090889]: Instances: []\n", + "[INFO] [1712690292.091157]: Direct Instances: []\n", + "[INFO] [1712690292.091446]: Inverse Restrictions: []\n", + "[INFO] [1712690292.091694]: -------------------\n", + "[INFO] [1712690292.091937]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712690292.092187]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712690292.092455]: Ancestors: {DUL.Entity, SOMA.DeviceTurnedOn, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", + "[INFO] [1712690292.092705]: Subclasses: []\n", + "[INFO] [1712690292.093019]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.093511]: Instances: []\n", + "[INFO] [1712690292.093768]: Direct Instances: []\n", + "[INFO] [1712690292.094059]: Inverse Restrictions: []\n", + "[INFO] [1712690292.094302]: -------------------\n", + "[INFO] [1712690292.094551]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712690292.094795]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712690292.095043]: Ancestors: {DUL.Entity, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.095289]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712690292.095572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.096084]: Instances: []\n", + "[INFO] [1712690292.096348]: Direct Instances: []\n", + "[INFO] [1712690292.096603]: Inverse Restrictions: []\n", + "[INFO] [1712690292.096852]: -------------------\n", + "[INFO] [1712690292.097122]: SOMA.Dicing \n", + "[INFO] [1712690292.097378]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712690292.097654]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Dicing, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting}\n", + "[INFO] [1712690292.097902]: Subclasses: []\n", + "[INFO] [1712690292.098189]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.098697]: Instances: []\n", + "[INFO] [1712690292.098967]: Direct Instances: []\n", + "[INFO] [1712690292.099218]: Inverse Restrictions: []\n", + "[INFO] [1712690292.099458]: -------------------\n", + "[INFO] [1712690292.099695]: SOMA.DinnerPlate \n", + "[INFO] [1712690292.099941]: Super classes: [SOMA.Plate]\n", + "[INFO] [1712690292.100234]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DinnerPlate, SOMA.Tableware, SOMA.Crockery, owl.Thing, SOMA.Plate, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.100495]: Subclasses: []\n", + "[INFO] [1712690292.100791]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.101300]: Instances: []\n", + "[INFO] [1712690292.101563]: Direct Instances: []\n", + "[INFO] [1712690292.101818]: Inverse Restrictions: []\n", + "[INFO] [1712690292.102058]: -------------------\n", + "[INFO] [1712690292.102296]: SOMA.DirectedMotion \n", + "[INFO] [1712690292.102530]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712690292.102786]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690292.103048]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712690292.103351]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.103866]: Instances: []\n", + "[INFO] [1712690292.104146]: Direct Instances: []\n", + "[INFO] [1712690292.104412]: Inverse Restrictions: []\n", + "[INFO] [1712690292.104657]: -------------------\n", + "[INFO] [1712690292.104898]: SOMA.UndirectedMotion \n", + "[INFO] [1712690292.105136]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712690292.105400]: Ancestors: {DUL.Entity, SOMA.UndirectedMotion, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.105660]: Subclasses: []\n", + "[INFO] [1712690292.105954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.106441]: Instances: []\n", + "[INFO] [1712690292.106712]: Direct Instances: []\n", + "[INFO] [1712690292.106977]: Inverse Restrictions: []\n", + "[INFO] [1712690292.107219]: -------------------\n", + "[INFO] [1712690292.107453]: SOMA.Dirty \n", + "[INFO] [1712690292.107687]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712690292.107955]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion, SOMA.Dirty}\n", + "[INFO] [1712690292.108206]: Subclasses: []\n", + "[INFO] [1712690292.108493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.108980]: Instances: []\n", + "[INFO] [1712690292.109252]: Direct Instances: []\n", + "[INFO] [1712690292.109514]: Inverse Restrictions: []\n", + "[INFO] [1712690292.109767]: -------------------\n", + "[INFO] [1712690292.110012]: SOMA.Discourse \n", + "[INFO] [1712690292.110251]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690292.110511]: Ancestors: {DUL.Entity, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Discourse}\n", + "[INFO] [1712690292.110772]: Subclasses: []\n", + "[INFO] [1712690292.111069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.111551]: Instances: []\n", + "[INFO] [1712690292.111818]: Direct Instances: []\n", + "[INFO] [1712690292.112074]: Inverse Restrictions: []\n", + "[INFO] [1712690292.112313]: -------------------\n", + "[INFO] [1712690292.112545]: SOMA.Dishwasher \n", + "[INFO] [1712690292.112781]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", + "[INFO] [1712690292.113049]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, SOMA.Dishwasher, DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.113315]: Subclasses: []\n", + "[INFO] [1712690292.113631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.114129]: Instances: []\n", + "[INFO] [1712690292.114389]: Direct Instances: []\n", + "[INFO] [1712690292.114637]: Inverse Restrictions: []\n", + "[INFO] [1712690292.114872]: -------------------\n", + "[INFO] [1712690292.115121]: SOMA.DishwasherTab \n", + "[INFO] [1712690292.115362]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712690292.115652]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.Substance, SOMA.DishwasherTab, DUL.DesignedSubstance, DUL.PhysicalBody, DUL.FunctionalSubstance, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.115905]: Subclasses: []\n", + "[INFO] [1712690292.116201]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.116708]: Instances: []\n", + "[INFO] [1712690292.116987]: Direct Instances: []\n", + "[INFO] [1712690292.117245]: Inverse Restrictions: []\n", + "[INFO] [1712690292.117488]: -------------------\n", + "[INFO] [1712690292.117725]: SOMA.Dispenser \n", + "[INFO] [1712690292.117976]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712690292.118242]: Ancestors: {SOMA.Dispenser, DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.118493]: Subclasses: [SOMA.SugarDispenser]\n", + "[INFO] [1712690292.118776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.119280]: Instances: []\n", + "[INFO] [1712690292.119542]: Direct Instances: []\n", + "[INFO] [1712690292.119791]: Inverse Restrictions: []\n", + "[INFO] [1712690292.120035]: -------------------\n", + "[INFO] [1712690292.120268]: SOMA.Distancing \n", + "[INFO] [1712690292.120518]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712690292.120791]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Distancing}\n", + "[INFO] [1712690292.121049]: Subclasses: []\n", + "[INFO] [1712690292.121343]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.121834]: Instances: []\n", + "[INFO] [1712690292.122102]: Direct Instances: []\n", + "[INFO] [1712690292.122355]: Inverse Restrictions: []\n", + "[INFO] [1712690292.122596]: -------------------\n", + "[INFO] [1712690292.122833]: SOMA.Door \n", + "[INFO] [1712690292.123068]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690292.123338]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Door, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690292.123587]: Subclasses: []\n", + "[INFO] [1712690292.123870]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.124355]: Instances: []\n", + "[INFO] [1712690292.124624]: Direct Instances: []\n", + "[INFO] [1712690292.124918]: Inverse Restrictions: [SOMA.Refrigerator]\n", + "[INFO] [1712690292.125172]: -------------------\n", + "[INFO] [1712690292.125411]: SOMA.Drawer \n", + "[INFO] [1712690292.125645]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", + "[INFO] [1712690292.125909]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.Drawer, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690292.126171]: Subclasses: []\n", + "[INFO] [1712690292.126467]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.126956]: Instances: []\n", + "[INFO] [1712690292.127211]: Direct Instances: []\n", + "[INFO] [1712690292.127453]: Inverse Restrictions: []\n", + "[INFO] [1712690292.127705]: -------------------\n", + "[INFO] [1712690292.127945]: SOMA.Dreaming \n", + "[INFO] [1712690292.128181]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690292.128436]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.Dreaming, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.128692]: Subclasses: []\n", + "[INFO] [1712690292.128989]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.129478]: Instances: []\n", + "[INFO] [1712690292.129729]: Direct Instances: []\n", + "[INFO] [1712690292.129998]: Inverse Restrictions: []\n", + "[INFO] [1712690292.130257]: -------------------\n", + "[INFO] [1712690292.130512]: SOMA.Driving \n", + "[INFO] [1712690292.130756]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690292.131018]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Driving, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", + "[INFO] [1712690292.131257]: Subclasses: []\n", + "[INFO] [1712690292.131557]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.132049]: Instances: []\n", + "[INFO] [1712690292.132306]: Direct Instances: []\n", + "[INFO] [1712690292.132550]: Inverse Restrictions: []\n", + "[INFO] [1712690292.132790]: -------------------\n", + "[INFO] [1712690292.133049]: SOMA.Flying \n", + "[INFO] [1712690292.133307]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690292.133609]: Ancestors: {DUL.Entity, SOMA.Flying, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", + "[INFO] [1712690292.133860]: Subclasses: []\n", + "[INFO] [1712690292.134178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.134676]: Instances: []\n", + "[INFO] [1712690292.134937]: Direct Instances: []\n", + "[INFO] [1712690292.135187]: Inverse Restrictions: []\n", + "[INFO] [1712690292.135420]: -------------------\n", + "[INFO] [1712690292.135658]: SOMA.Swimming \n", + "[INFO] [1712690292.135908]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690292.136182]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Swimming, SOMA.Locomotion}\n", + "[INFO] [1712690292.136433]: Subclasses: []\n", + "[INFO] [1712690292.136730]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.137237]: Instances: []\n", + "[INFO] [1712690292.137501]: Direct Instances: []\n", + "[INFO] [1712690292.137753]: Inverse Restrictions: []\n", + "[INFO] [1712690292.137992]: -------------------\n", + "[INFO] [1712690292.138229]: SOMA.Walking \n", + "[INFO] [1712690292.138478]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690292.138749]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Walking, SOMA.Locomotion}\n", + "[INFO] [1712690292.138996]: Subclasses: []\n", + "[INFO] [1712690292.139283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.139783]: Instances: []\n", + "[INFO] [1712690292.140053]: Direct Instances: []\n", + "[INFO] [1712690292.140308]: Inverse Restrictions: []\n", + "[INFO] [1712690292.140550]: -------------------\n", + "[INFO] [1712690292.140802]: SOMA.Dropping \n", + "[INFO] [1712690292.141052]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690292.141322]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, SOMA.Dropping, SOMA.PhysicalTask, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.141568]: Subclasses: []\n", + "[INFO] [1712690292.141863]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.142363]: Instances: []\n", + "[INFO] [1712690292.142623]: Direct Instances: []\n", + "[INFO] [1712690292.142870]: Inverse Restrictions: []\n", + "[INFO] [1712690292.143104]: -------------------\n", + "[INFO] [1712690292.143339]: SOMA.Placing \n", + "[INFO] [1712690292.143575]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690292.143844]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Placing, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690292.144092]: Subclasses: []\n", + "[INFO] [1712690292.144460]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.145021]: Instances: [SOMA.placing]\n", + "[INFO] [1712690292.145327]: Direct Instances: [SOMA.placing]\n", + "[INFO] [1712690292.145602]: Inverse Restrictions: []\n", + "[INFO] [1712690292.145853]: -------------------\n", + "[INFO] [1712690292.146098]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712690292.146375]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712690292.146672]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ESTSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690292.146935]: Subclasses: []\n", + "[INFO] [1712690292.147250]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.147746]: Instances: []\n", + "[INFO] [1712690292.148028]: Direct Instances: []\n", + "[INFO] [1712690292.148290]: Inverse Restrictions: []\n", + "[INFO] [1712690292.148537]: -------------------\n", + "[INFO] [1712690292.148783]: SOMA.ExistingObjectRole \n", + "[INFO] [1712690292.149038]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690292.149332]: Ancestors: {SOMA.ExistingObjectRole, DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", + "[INFO] [1712690292.149590]: Subclasses: []\n", + "[INFO] [1712690292.149886]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.150391]: Instances: []\n", + "[INFO] [1712690292.150661]: Direct Instances: []\n", + "[INFO] [1712690292.150953]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712690292.151197]: -------------------\n", + "[INFO] [1712690292.151437]: SOMA.Effort \n", + "[INFO] [1712690292.151672]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712690292.151946]: Ancestors: {DUL.Entity, SOMA.Effort, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, DUL.Parameter}\n", + "[INFO] [1712690292.152199]: Subclasses: []\n", + "[INFO] [1712690292.152487]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.152968]: Instances: []\n", + "[INFO] [1712690292.153229]: Direct Instances: []\n", + "[INFO] [1712690292.153489]: Inverse Restrictions: []\n", + "[INFO] [1712690292.153730]: -------------------\n", + "[INFO] [1712690292.153963]: SOMA.EnclosedObject \n", + "[INFO] [1712690292.154191]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712690292.154454]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.154725]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712690292.155022]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.155514]: Instances: []\n", + "[INFO] [1712690292.155769]: Direct Instances: []\n", + "[INFO] [1712690292.156064]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712690292.156324]: -------------------\n", + "[INFO] [1712690292.156578]: SOMA.Enclosing \n", + "[INFO] [1712690292.156843]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712690292.157585]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690292.158427]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712690292.159064]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.159857]: Instances: []\n", + "[INFO] [1712690292.160389]: Direct Instances: []\n", + "[INFO] [1712690292.160900]: Inverse Restrictions: []\n", + "[INFO] [1712690292.161421]: -------------------\n", + "[INFO] [1712690292.161859]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712690292.162248]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690292.162668]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690292.163059]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712690292.163533]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.164190]: Instances: []\n", + "[INFO] [1712690292.164609]: Direct Instances: []\n", + "[INFO] [1712690292.164990]: Inverse Restrictions: []\n", + "[INFO] [1712690292.165358]: -------------------\n", + "[INFO] [1712690292.165705]: SOMA.Manipulating \n", + "[INFO] [1712690292.166075]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712690292.166435]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690292.166810]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712690292.167263]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.167895]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712690292.168254]: Direct Instances: []\n", + "[INFO] [1712690292.168600]: Inverse Restrictions: []\n", + "[INFO] [1712690292.169030]: -------------------\n", + "[INFO] [1712690292.169412]: SOMA.Episode \n", + "[INFO] [1712690292.169764]: Super classes: [DUL.Situation]\n", + "[INFO] [1712690292.170130]: Ancestors: {SOMA.Episode, owl.Thing, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712690292.170483]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712690292.170871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.171458]: Instances: []\n", + "[INFO] [1712690292.171827]: Direct Instances: []\n", + "[INFO] [1712690292.172174]: Inverse Restrictions: []\n", + "[INFO] [1712690292.172503]: -------------------\n", + "[INFO] [1712690292.172832]: SOMA.ExcludedObject \n", + "[INFO] [1712690292.173172]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690292.173544]: Ancestors: {DUL.Entity, SOMA.ExcludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.173884]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712690292.174263]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.174838]: Instances: []\n", + "[INFO] [1712690292.175198]: Direct Instances: []\n", + "[INFO] [1712690292.175590]: Inverse Restrictions: []\n", + "[INFO] [1712690292.176002]: -------------------\n", + "[INFO] [1712690292.176332]: SOMA.ExecutableFile \n", + "[INFO] [1712690292.176651]: Super classes: [owl.Thing]\n", + "[INFO] [1712690292.177978]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", + "[INFO] [1712690292.178336]: Subclasses: []\n", + "[INFO] [1712690292.178717]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.realizes, rdf-schema.comment]\n", + "[INFO] [1712690292.179298]: Instances: []\n", + "[INFO] [1712690292.179663]: Direct Instances: []\n", + "[INFO] [1712690292.180802]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712690292.181157]: -------------------\n", + "[INFO] [1712690292.181485]: SOMA.Executable_Code \n", + "[INFO] [1712690292.181808]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712690292.183113]: Ancestors: {owl.Thing, SOMA.Executable_Code, SOMA.Computer_Program}\n", + "[INFO] [1712690292.183489]: Subclasses: []\n", + "[INFO] [1712690292.183891]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.184510]: Instances: []\n", + "[INFO] [1712690292.184871]: Direct Instances: []\n", + "[INFO] [1712690292.185307]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712690292.185647]: -------------------\n", + "[INFO] [1712690292.185973]: SOMA.ExecutableFormat \n", + "[INFO] [1712690292.186314]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712690292.186670]: Ancestors: {SOMA.ExecutableFormat, SOMA.Computer_Language, SOMA.System, DUL.Entity, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.File_format}\n", + "[INFO] [1712690292.187001]: Subclasses: []\n", + "[INFO] [1712690292.187383]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.187973]: Instances: []\n", + "[INFO] [1712690292.188321]: Direct Instances: []\n", + "[INFO] [1712690292.188730]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712690292.189089]: -------------------\n", + "[INFO] [1712690292.189391]: SOMA.SchematicTheory \n", + "[INFO] [1712690292.189651]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712690292.189917]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690292.190181]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712690292.190478]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.191016]: Instances: []\n", + "[INFO] [1712690292.191283]: Direct Instances: []\n", + "[INFO] [1712690292.191537]: Inverse Restrictions: []\n", + "[INFO] [1712690292.191780]: -------------------\n", + "[INFO] [1712690292.192016]: SOMA.ExecutableSoftware \n", + "[INFO] [1712690292.192246]: Super classes: [owl.Thing]\n", + "[INFO] [1712690292.193088]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", + "[INFO] [1712690292.193687]: Subclasses: []\n", + "[INFO] [1712690292.194241]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasMember, rdf-schema.comment]\n", + "[INFO] [1712690292.195112]: Instances: []\n", + "[INFO] [1712690292.195566]: Direct Instances: []\n", + "[INFO] [1712690292.195965]: Inverse Restrictions: []\n", + "[INFO] [1712690292.196353]: -------------------\n", + "[INFO] [1712690292.196728]: SOMA.Software \n", + "[INFO] [1712690292.197165]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712690292.197587]: Ancestors: {DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Software, DUL.Description, DUL.Design}\n", + "[INFO] [1712690292.197972]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712690292.198451]: Properties: [DUL.describes, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712690292.199245]: Instances: []\n", + "[INFO] [1712690292.199624]: Direct Instances: []\n", + "[INFO] [1712690292.200367]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690292.200734]: -------------------\n", + "[INFO] [1712690292.201115]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712690292.201479]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712690292.201857]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", + "[INFO] [1712690292.202248]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712690292.202712]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.203511]: Instances: []\n", + "[INFO] [1712690292.203889]: Direct Instances: []\n", + "[INFO] [1712690292.204282]: Inverse Restrictions: []\n", + "[INFO] [1712690292.204665]: -------------------\n", + "[INFO] [1712690292.205083]: SOMA.ExperiencerRole \n", + "[INFO] [1712690292.205506]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712690292.205959]: Ancestors: {SOMA.ExperiencerRole, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", + "[INFO] [1712690292.206444]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712690292.207031]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.207997]: Instances: []\n", + "[INFO] [1712690292.208437]: Direct Instances: []\n", + "[INFO] [1712690292.208879]: Inverse Restrictions: []\n", + "[INFO] [1712690292.209225]: -------------------\n", + "[INFO] [1712690292.209520]: SOMA.ExtractedObject \n", + "[INFO] [1712690292.209792]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690292.210086]: Ancestors: {DUL.Entity, SOMA.ExtractedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.210351]: Subclasses: []\n", + "[INFO] [1712690292.210664]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.211217]: Instances: []\n", + "[INFO] [1712690292.211519]: Direct Instances: []\n", + "[INFO] [1712690292.211807]: Inverse Restrictions: []\n", + "[INFO] [1712690292.212097]: -------------------\n", + "[INFO] [1712690292.212402]: SOMA.PhysicalQuality \n", + "[INFO] [1712690292.212712]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712690292.213050]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", + "[INFO] [1712690292.213396]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712690292.213824]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf, rdf-schema.label]\n", + "[INFO] [1712690292.214687]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712690292.215119]: Direct Instances: []\n", + "[INFO] [1712690292.215551]: Inverse Restrictions: []\n", + "[INFO] [1712690292.215966]: -------------------\n", + "[INFO] [1712690292.216393]: SOMA.FailedAttempt \n", + "[INFO] [1712690292.216821]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712690292.217368]: Ancestors: {DUL.Entity, SOMA.FailedAttempt, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690292.217900]: Subclasses: []\n", + "[INFO] [1712690292.218512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.219538]: Instances: []\n", + "[INFO] [1712690292.220123]: Direct Instances: []\n", + "[INFO] [1712690292.220745]: Inverse Restrictions: []\n", + "[INFO] [1712690292.221341]: -------------------\n", + "[INFO] [1712690292.221911]: SOMA.FaultySoftware \n", + "[INFO] [1712690292.222438]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712690292.223062]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.223628]: Subclasses: []\n", + "[INFO] [1712690292.224256]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.225222]: Instances: []\n", + "[INFO] [1712690292.225729]: Direct Instances: []\n", + "[INFO] [1712690292.226207]: Inverse Restrictions: []\n", + "[INFO] [1712690292.226640]: -------------------\n", + "[INFO] [1712690292.227057]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712690292.227457]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712690292.227868]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.228309]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712690292.228793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.229564]: Instances: []\n", + "[INFO] [1712690292.229956]: Direct Instances: []\n", + "[INFO] [1712690292.230340]: Inverse Restrictions: []\n", + "[INFO] [1712690292.230715]: -------------------\n", + "[INFO] [1712690292.231057]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712690292.231393]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712690292.231714]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.PhysicalAcquiring, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690292.232029]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712690292.232397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.232984]: Instances: []\n", + "[INFO] [1712690292.233300]: Direct Instances: []\n", + "[INFO] [1712690292.233591]: Inverse Restrictions: []\n", + "[INFO] [1712690292.233865]: -------------------\n", + "[INFO] [1712690292.234131]: SOMA.Finger \n", + "[INFO] [1712690292.234408]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712690292.234691]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Finger, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712690292.234962]: Subclasses: []\n", + "[INFO] [1712690292.235266]: Properties: [DUL.isPartOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.235758]: Instances: []\n", + "[INFO] [1712690292.236013]: Direct Instances: []\n", + "[INFO] [1712690292.236262]: Inverse Restrictions: []\n", + "[INFO] [1712690292.236517]: -------------------\n", + "[INFO] [1712690292.236756]: SOMA.Hand \n", + "[INFO] [1712690292.237100]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712690292.237423]: Ancestors: {DUL.Entity, SOMA.Hand, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690292.237698]: Subclasses: []\n", + "[INFO] [1712690292.238007]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.238510]: Instances: []\n", + "[INFO] [1712690292.238774]: Direct Instances: []\n", + "[INFO] [1712690292.239075]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712690292.239330]: -------------------\n", + "[INFO] [1712690292.239572]: SOMA.FixedJoint \n", + "[INFO] [1712690292.239827]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712690292.240093]: Ancestors: {DUL.Entity, SOMA.FixedJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690292.240355]: Subclasses: []\n", + "[INFO] [1712690292.240666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.241175]: Instances: []\n", + "[INFO] [1712690292.241463]: Direct Instances: []\n", + "[INFO] [1712690292.241796]: Inverse Restrictions: []\n", + "[INFO] [1712690292.242079]: -------------------\n", + "[INFO] [1712690292.242367]: SOMA.MovableJoint \n", + "[INFO] [1712690292.242652]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712690292.242954]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690292.243303]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712690292.243699]: Properties: [SOMA.hasJointState, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.244412]: Instances: []\n", + "[INFO] [1712690292.244808]: Direct Instances: []\n", + "[INFO] [1712690292.245336]: Inverse Restrictions: []\n", + "[INFO] [1712690292.245748]: -------------------\n", + "[INFO] [1712690292.246145]: SOMA.Flipping \n", + "[INFO] [1712690292.246562]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712690292.247069]: Ancestors: {DUL.Entity, SOMA.Flipping, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690292.247772]: Subclasses: []\n", + "[INFO] [1712690292.248588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690292.249924]: Instances: []\n", + "[INFO] [1712690292.250814]: Direct Instances: []\n", + "[INFO] [1712690292.251619]: Inverse Restrictions: []\n", + "[INFO] [1712690292.252377]: -------------------\n", + "[INFO] [1712690292.253232]: SOMA.FloatingJoint \n", + "[INFO] [1712690292.254111]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712690292.255044]: Ancestors: {SOMA.FloatingJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690292.255921]: Subclasses: []\n", + "[INFO] [1712690292.256924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.258469]: Instances: []\n", + "[INFO] [1712690292.259210]: Direct Instances: []\n", + "[INFO] [1712690292.259826]: Inverse Restrictions: []\n", + "[INFO] [1712690292.260363]: -------------------\n", + "[INFO] [1712690292.260898]: SOMA.Fluid \n", + "[INFO] [1712690292.261435]: Super classes: [DUL.Substance]\n", + "[INFO] [1712690292.262024]: Ancestors: {DUL.Substance, DUL.Entity, SOMA.Fluid, DUL.PhysicalBody, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690292.262547]: Subclasses: []\n", + "[INFO] [1712690292.263105]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.263997]: Instances: []\n", + "[INFO] [1712690292.264506]: Direct Instances: []\n", + "[INFO] [1712690292.265024]: Inverse Restrictions: []\n", + "[INFO] [1712690292.265455]: -------------------\n", + "[INFO] [1712690292.265866]: SOMA.MovedObject \n", + "[INFO] [1712690292.266333]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712690292.266804]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, SOMA.MovedObject, DUL.Role}\n", + "[INFO] [1712690292.267271]: Subclasses: []\n", + "[INFO] [1712690292.267804]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTriggerDefinedIn]\n", + "[INFO] [1712690292.268787]: Instances: []\n", + "[INFO] [1712690292.269350]: Direct Instances: []\n", + "[INFO] [1712690292.271528]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712690292.272407]: -------------------\n", + "[INFO] [1712690292.273277]: SOMA.Focusing \n", + "[INFO] [1712690292.274152]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712690292.274963]: Ancestors: {DUL.Entity, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Focusing}\n", + "[INFO] [1712690292.275677]: Subclasses: []\n", + "[INFO] [1712690292.276469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.277734]: Instances: []\n", + "[INFO] [1712690292.278389]: Direct Instances: []\n", + "[INFO] [1712690292.278948]: Inverse Restrictions: []\n", + "[INFO] [1712690292.279470]: -------------------\n", + "[INFO] [1712690292.279973]: SOMA.Foolishness \n", + "[INFO] [1712690292.280472]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712690292.281027]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, SOMA.Foolishness, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.281520]: Subclasses: []\n", + "[INFO] [1712690292.282100]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.283012]: Instances: []\n", + "[INFO] [1712690292.283481]: Direct Instances: []\n", + "[INFO] [1712690292.283944]: Inverse Restrictions: []\n", + "[INFO] [1712690292.284332]: -------------------\n", + "[INFO] [1712690292.284705]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712690292.285187]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712690292.285787]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.ForgettingIncorrectInformation, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.286306]: Subclasses: []\n", + "[INFO] [1712690292.286845]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.287608]: Instances: []\n", + "[INFO] [1712690292.287989]: Direct Instances: []\n", + "[INFO] [1712690292.288336]: Inverse Restrictions: []\n", + "[INFO] [1712690292.288647]: -------------------\n", + "[INFO] [1712690292.289052]: SOMA.InformationDismissal \n", + "[INFO] [1712690292.289482]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712690292.289838]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.290164]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712690292.290508]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.comment]\n", + "[INFO] [1712690292.291067]: Instances: []\n", + "[INFO] [1712690292.291383]: Direct Instances: []\n", + "[INFO] [1712690292.291688]: Inverse Restrictions: []\n", + "[INFO] [1712690292.291972]: -------------------\n", + "[INFO] [1712690292.292258]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712690292.292541]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712690292.292866]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForgettingIrrelevantInformation}\n", + "[INFO] [1712690292.293199]: Subclasses: []\n", + "[INFO] [1712690292.293573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.294198]: Instances: []\n", + "[INFO] [1712690292.294518]: Direct Instances: []\n", + "[INFO] [1712690292.294836]: Inverse Restrictions: []\n", + "[INFO] [1712690292.295156]: -------------------\n", + "[INFO] [1712690292.295472]: SOMA.Language \n", + "[INFO] [1712690292.295813]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712690292.296162]: Ancestors: {DUL.Entity, SOMA.System, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.296512]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712690292.296924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.297673]: Instances: []\n", + "[INFO] [1712690292.298095]: Direct Instances: []\n", + "[INFO] [1712690292.299673]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712690292.300094]: -------------------\n", + "[INFO] [1712690292.300485]: SOMA.FreezerCompartment \n", + "[INFO] [1712690292.300845]: Super classes: [SOMA.Compartment]\n", + "[INFO] [1712690292.301239]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.FreezerCompartment, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalObject}\n", + "[INFO] [1712690292.301574]: Subclasses: []\n", + "[INFO] [1712690292.301939]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.302565]: Instances: []\n", + "[INFO] [1712690292.302896]: Direct Instances: []\n", + "[INFO] [1712690292.303190]: Inverse Restrictions: []\n", + "[INFO] [1712690292.303470]: -------------------\n", + "[INFO] [1712690292.303742]: SOMA.Item \n", + "[INFO] [1712690292.304026]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690292.304332]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.304634]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712690292.304956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.305491]: Instances: []\n", + "[INFO] [1712690292.305819]: Direct Instances: []\n", + "[INFO] [1712690292.306206]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712690292.306480]: -------------------\n", + "[INFO] [1712690292.306738]: SOMA.FunctionalDesign \n", + "[INFO] [1712690292.306980]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712690292.307257]: Ancestors: {SOMA.FunctionalDesign, DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690292.307513]: Subclasses: []\n", + "[INFO] [1712690292.307807]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.308291]: Instances: []\n", + "[INFO] [1712690292.308544]: Direct Instances: []\n", + "[INFO] [1712690292.308793]: Inverse Restrictions: []\n", + "[INFO] [1712690292.309056]: -------------------\n", + "[INFO] [1712690292.309296]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712690292.309531]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712690292.309771]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.310014]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712690292.310313]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.310827]: Instances: []\n", + "[INFO] [1712690292.311087]: Direct Instances: []\n", + "[INFO] [1712690292.311336]: Inverse Restrictions: []\n", + "[INFO] [1712690292.311571]: -------------------\n", + "[INFO] [1712690292.311813]: SOMA.LocatumRole \n", + "[INFO] [1712690292.312053]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690292.312324]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.LocatumRole, SOMA.SpatialRelationRole, DUL.Role}\n", + "[INFO] [1712690292.312585]: Subclasses: []\n", + "[INFO] [1712690292.312891]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.313389]: Instances: []\n", + "[INFO] [1712690292.313644]: Direct Instances: []\n", + "[INFO] [1712690292.313987]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712690292.314258]: -------------------\n", + "[INFO] [1712690292.314515]: SOMA.RelatumRole \n", + "[INFO] [1712690292.314767]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690292.315033]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, SOMA.RelatumRole, owl.Thing, DUL.Object, SOMA.SpatialRelationRole, DUL.Role}\n", + "[INFO] [1712690292.315298]: Subclasses: []\n", + "[INFO] [1712690292.315598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.316092]: Instances: []\n", + "[INFO] [1712690292.316347]: Direct Instances: []\n", + "[INFO] [1712690292.316710]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712690292.317010]: -------------------\n", + "[INFO] [1712690292.317270]: SOMA.GasCooktop \n", + "[INFO] [1712690292.317509]: Super classes: [SOMA.Cooktop]\n", + "[INFO] [1712690292.317780]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.GasCooktop, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690292.318047]: Subclasses: []\n", + "[INFO] [1712690292.318344]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.318836]: Instances: []\n", + "[INFO] [1712690292.319096]: Direct Instances: []\n", + "[INFO] [1712690292.319346]: Inverse Restrictions: []\n", + "[INFO] [1712690292.319587]: -------------------\n", + "[INFO] [1712690292.319833]: SOMA.GetTaskParameter \n", + "[INFO] [1712690292.320076]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712690292.320362]: Ancestors: {SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.320616]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712690292.320915]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.321420]: Instances: []\n", + "[INFO] [1712690292.321686]: Direct Instances: []\n", + "[INFO] [1712690292.321937]: Inverse Restrictions: []\n", + "[INFO] [1712690292.322174]: -------------------\n", + "[INFO] [1712690292.322406]: SOMA.Planning \n", + "[INFO] [1712690292.323051]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712690292.323319]: Ancestors: {SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.323578]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712690292.323867]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.324370]: Instances: []\n", + "[INFO] [1712690292.324641]: Direct Instances: []\n", + "[INFO] [1712690292.324901]: Inverse Restrictions: []\n", + "[INFO] [1712690292.325148]: -------------------\n", + "[INFO] [1712690292.325384]: SOMA.Glass \n", + "[INFO] [1712690292.325634]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712690292.325902]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, SOMA.Glass, DUL.PhysicalObject}\n", + "[INFO] [1712690292.326155]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", + "[INFO] [1712690292.326434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.326928]: Instances: []\n", + "[INFO] [1712690292.327199]: Direct Instances: []\n", + "[INFO] [1712690292.327459]: Inverse Restrictions: []\n", + "[INFO] [1712690292.327700]: -------------------\n", + "[INFO] [1712690292.327937]: SOMA.GraphDatabase \n", + "[INFO] [1712690292.328176]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712690292.328448]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.Database, DUL.Object, SOMA.GraphDatabase, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.328703]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712690292.329000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.329500]: Instances: []\n", + "[INFO] [1712690292.329782]: Direct Instances: []\n", + "[INFO] [1712690292.330055]: Inverse Restrictions: []\n", + "[INFO] [1712690292.330307]: -------------------\n", + "[INFO] [1712690292.330541]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712690292.330780]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712690292.331048]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.GraphQueryLanguage, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.331313]: Subclasses: []\n", + "[INFO] [1712690292.331609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.332096]: Instances: []\n", + "[INFO] [1712690292.332361]: Direct Instances: []\n", + "[INFO] [1712690292.332615]: Inverse Restrictions: []\n", + "[INFO] [1712690292.332869]: -------------------\n", + "[INFO] [1712690292.333125]: SOMA.QueryLanguage \n", + "[INFO] [1712690292.333401]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690292.333664]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.333915]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712690292.334203]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.334706]: Instances: []\n", + "[INFO] [1712690292.334973]: Direct Instances: []\n", + "[INFO] [1712690292.335230]: Inverse Restrictions: []\n", + "[INFO] [1712690292.335473]: -------------------\n", + "[INFO] [1712690292.335712]: SOMA.GraspTransfer \n", + "[INFO] [1712690292.335948]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712690292.336233]: Ancestors: {DUL.Entity, SOMA.GraspTransfer, SOMA.Grasping, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690292.336488]: Subclasses: []\n", + "[INFO] [1712690292.336787]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.337282]: Instances: []\n", + "[INFO] [1712690292.337556]: Direct Instances: []\n", + "[INFO] [1712690292.337816]: Inverse Restrictions: []\n", + "[INFO] [1712690292.338060]: -------------------\n", + "[INFO] [1712690292.338295]: SOMA.Grasping \n", + "[INFO] [1712690292.338530]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690292.338773]: Ancestors: {DUL.Entity, SOMA.Grasping, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690292.339033]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712690292.339337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.339823]: Instances: []\n", + "[INFO] [1712690292.340078]: Direct Instances: []\n", + "[INFO] [1712690292.340338]: Inverse Restrictions: []\n", + "[INFO] [1712690292.340576]: -------------------\n", + "[INFO] [1712690292.340823]: SOMA.Releasing \n", + "[INFO] [1712690292.341064]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690292.341326]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Releasing, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690292.341588]: Subclasses: []\n", + "[INFO] [1712690292.341887]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.342378]: Instances: []\n", + "[INFO] [1712690292.342636]: Direct Instances: []\n", + "[INFO] [1712690292.342883]: Inverse Restrictions: []\n", + "[INFO] [1712690292.343127]: -------------------\n", + "[INFO] [1712690292.343371]: SOMA.GraspingMotion \n", + "[INFO] [1712690292.343603]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712690292.345034]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690292.345333]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712690292.345661]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.346171]: Instances: []\n", + "[INFO] [1712690292.346434]: Direct Instances: []\n", + "[INFO] [1712690292.346737]: Inverse Restrictions: []\n", + "[INFO] [1712690292.347008]: -------------------\n", + "[INFO] [1712690292.347260]: SOMA.IntermediateGrasp \n", + "[INFO] [1712690292.347507]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712690292.347782]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing, SOMA.IntermediateGrasp}\n", + "[INFO] [1712690292.348042]: Subclasses: []\n", + "[INFO] [1712690292.348354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.348852]: Instances: []\n", + "[INFO] [1712690292.349114]: Direct Instances: []\n", + "[INFO] [1712690292.349414]: Inverse Restrictions: []\n", + "[INFO] [1712690292.349668]: -------------------\n", + "[INFO] [1712690292.349909]: SOMA.PowerGrasp \n", + "[INFO] [1712690292.350167]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712690292.350459]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, SOMA.PowerGrasp, SOMA.DirectedMotion, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.350714]: Subclasses: []\n", + "[INFO] [1712690292.351017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.351515]: Instances: []\n", + "[INFO] [1712690292.351780]: Direct Instances: []\n", + "[INFO] [1712690292.352071]: Inverse Restrictions: []\n", + "[INFO] [1712690292.352311]: -------------------\n", + "[INFO] [1712690292.352543]: SOMA.PrecisionGrasp \n", + "[INFO] [1712690292.352798]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712690292.353071]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.PrecisionGrasp, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690292.353319]: Subclasses: []\n", + "[INFO] [1712690292.353605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.354106]: Instances: []\n", + "[INFO] [1712690292.354370]: Direct Instances: []\n", + "[INFO] [1712690292.354666]: Inverse Restrictions: []\n", + "[INFO] [1712690292.354909]: -------------------\n", + "[INFO] [1712690292.355146]: SOMA.PrehensileMotion \n", + "[INFO] [1712690292.355791]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712690292.356073]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690292.356338]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712690292.356647]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.357166]: Instances: []\n", + "[INFO] [1712690292.357442]: Direct Instances: []\n", + "[INFO] [1712690292.357708]: Inverse Restrictions: []\n", + "[INFO] [1712690292.357949]: -------------------\n", + "[INFO] [1712690292.358187]: SOMA.ReleasingMotion \n", + "[INFO] [1712690292.358422]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712690292.358695]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, SOMA.ReleasingMotion, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690292.358957]: Subclasses: []\n", + "[INFO] [1712690292.359253]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.359743]: Instances: []\n", + "[INFO] [1712690292.359993]: Direct Instances: []\n", + "[INFO] [1712690292.360280]: Inverse Restrictions: []\n", + "[INFO] [1712690292.360531]: -------------------\n", + "[INFO] [1712690292.360777]: SOMA.GreenColor \n", + "[INFO] [1712690292.361013]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712690292.361277]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, SOMA.GreenColor, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690292.361527]: Subclasses: []\n", + "[INFO] [1712690292.361822]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.362309]: Instances: []\n", + "[INFO] [1712690292.362559]: Direct Instances: []\n", + "[INFO] [1712690292.362798]: Inverse Restrictions: []\n", + "[INFO] [1712690292.363035]: -------------------\n", + "[INFO] [1712690292.363272]: SOMA.Gripper \n", + "[INFO] [1712690292.363507]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712690292.363768]: Ancestors: {SOMA.Gripper, DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690292.364028]: Subclasses: []\n", + "[INFO] [1712690292.364322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.364811]: Instances: []\n", + "[INFO] [1712690292.365093]: Direct Instances: []\n", + "[INFO] [1712690292.365353]: Inverse Restrictions: []\n", + "[INFO] [1712690292.365594]: -------------------\n", + "[INFO] [1712690292.365830]: SOMA.PrehensileEffector \n", + "[INFO] [1712690292.366065]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712690292.366313]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690292.366572]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712690292.366878]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.367385]: Instances: []\n", + "[INFO] [1712690292.367661]: Direct Instances: []\n", + "[INFO] [1712690292.367978]: Inverse Restrictions: []\n", + "[INFO] [1712690292.368225]: -------------------\n", + "[INFO] [1712690292.368465]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712690292.368698]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712690292.368977]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.HardwareDiagnosis}\n", + "[INFO] [1712690292.369231]: Subclasses: []\n", + "[INFO] [1712690292.369519]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.370004]: Instances: []\n", + "[INFO] [1712690292.370271]: Direct Instances: []\n", + "[INFO] [1712690292.370521]: Inverse Restrictions: []\n", + "[INFO] [1712690292.370763]: -------------------\n", + "[INFO] [1712690292.370994]: SOMA.HasQualityRegion \n", + "[INFO] [1712690292.371258]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712690292.371538]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, SOMA.HasQualityRegion, DUL.Description}\n", + "[INFO] [1712690292.371792]: Subclasses: []\n", + "[INFO] [1712690292.372087]: Properties: [DUL.hasQuality, DUL.hasRegion, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.372582]: Instances: []\n", + "[INFO] [1712690292.372849]: Direct Instances: []\n", + "[INFO] [1712690292.373103]: Inverse Restrictions: []\n", + "[INFO] [1712690292.373338]: -------------------\n", + "[INFO] [1712690292.373573]: SOMA.Head \n", + "[INFO] [1712690292.373807]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712690292.374066]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Head, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690292.374330]: Subclasses: []\n", + "[INFO] [1712690292.374627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.375114]: Instances: []\n", + "[INFO] [1712690292.375379]: Direct Instances: []\n", + "[INFO] [1712690292.375642]: Inverse Restrictions: []\n", + "[INFO] [1712690292.375885]: -------------------\n", + "[INFO] [1712690292.376121]: SOMA.HeadMovement \n", + "[INFO] [1712690292.376354]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712690292.376620]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.HeadMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.376882]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712690292.377175]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.377667]: Instances: []\n", + "[INFO] [1712690292.377937]: Direct Instances: []\n", + "[INFO] [1712690292.378193]: Inverse Restrictions: []\n", + "[INFO] [1712690292.378437]: -------------------\n", + "[INFO] [1712690292.378672]: SOMA.HeadTurning \n", + "[INFO] [1712690292.378908]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712690292.379174]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.HeadTurning, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.HeadMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.379438]: Subclasses: []\n", + "[INFO] [1712690292.379740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.380232]: Instances: []\n", + "[INFO] [1712690292.380489]: Direct Instances: []\n", + "[INFO] [1712690292.380735]: Inverse Restrictions: []\n", + "[INFO] [1712690292.380980]: -------------------\n", + "[INFO] [1712690292.381225]: SOMA.Holding \n", + "[INFO] [1712690292.381466]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690292.381730]: Ancestors: {DUL.Entity, SOMA.Holding, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690292.381973]: Subclasses: []\n", + "[INFO] [1712690292.382257]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.382772]: Instances: []\n", + "[INFO] [1712690292.383048]: Direct Instances: []\n", + "[INFO] [1712690292.383304]: Inverse Restrictions: []\n", + "[INFO] [1712690292.383566]: -------------------\n", + "[INFO] [1712690292.383806]: SOMA.HostRole \n", + "[INFO] [1712690292.384077]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712690292.384351]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.HostRole, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.384598]: Subclasses: []\n", + "[INFO] [1712690292.384892]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.385388]: Instances: []\n", + "[INFO] [1712690292.385665]: Direct Instances: []\n", + "[INFO] [1712690292.386713]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712690292.386966]: -------------------\n", + "[INFO] [1712690292.387221]: SOMA.PluginSpecification \n", + "[INFO] [1712690292.387470]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712690292.387738]: Ancestors: {DUL.Entity, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.PluginSpecification, DUL.Design}\n", + "[INFO] [1712690292.387984]: Subclasses: []\n", + "[INFO] [1712690292.388274]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesRole, rdf-schema.label]\n", + "[INFO] [1712690292.388782]: Instances: []\n", + "[INFO] [1712690292.389049]: Direct Instances: []\n", + "[INFO] [1712690292.389378]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712690292.389625]: -------------------\n", + "[INFO] [1712690292.389863]: SOMA.Hotplate \n", + "[INFO] [1712690292.390111]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690292.390381]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.Hotplate, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690292.390632]: Subclasses: []\n", + "[INFO] [1712690292.390916]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.391400]: Instances: []\n", + "[INFO] [1712690292.391655]: Direct Instances: []\n", + "[INFO] [1712690292.391944]: Inverse Restrictions: [SOMA.Stove]\n", + "[INFO] [1712690292.392200]: -------------------\n", + "[INFO] [1712690292.392442]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712690292.392699]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712690292.393001]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.Human-readable_Programming_Language, SOMA.Programming_Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.393266]: Subclasses: []\n", + "[INFO] [1712690292.393562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.394058]: Instances: []\n", + "[INFO] [1712690292.394443]: Direct Instances: []\n", + "[INFO] [1712690292.395519]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712690292.395809]: -------------------\n", + "[INFO] [1712690292.396062]: SOMA.Source_Code \n", + "[INFO] [1712690292.396307]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712690292.396803]: Ancestors: {SOMA.Source_Code, owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712690292.397072]: Subclasses: []\n", + "[INFO] [1712690292.397388]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.397887]: Instances: []\n", + "[INFO] [1712690292.398179]: Direct Instances: []\n", + "[INFO] [1712690292.398488]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712690292.398742]: -------------------\n", + "[INFO] [1712690292.398986]: SOMA.HumanActivityRecording \n", + "[INFO] [1712690292.399225]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712690292.399498]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712690292.399760]: Subclasses: []\n", + "[INFO] [1712690292.400075]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.400589]: Instances: []\n", + "[INFO] [1712690292.400861]: Direct Instances: []\n", + "[INFO] [1712690292.401137]: Inverse Restrictions: []\n", + "[INFO] [1712690292.401384]: -------------------\n", + "[INFO] [1712690292.401628]: SOMA.Imagining \n", + "[INFO] [1712690292.401863]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712690292.402124]: Ancestors: {SOMA.Imagining, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.402387]: Subclasses: []\n", + "[INFO] [1712690292.402684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.403177]: Instances: []\n", + "[INFO] [1712690292.403431]: Direct Instances: []\n", + "[INFO] [1712690292.403677]: Inverse Restrictions: []\n", + "[INFO] [1712690292.403928]: -------------------\n", + "[INFO] [1712690292.404167]: SOMA.Impediment \n", + "[INFO] [1712690292.404431]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712690292.404698]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Impediment, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690292.404953]: Subclasses: []\n", + "[INFO] [1712690292.405261]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.405757]: Instances: []\n", + "[INFO] [1712690292.406019]: Direct Instances: []\n", + "[INFO] [1712690292.406276]: Inverse Restrictions: []\n", + "[INFO] [1712690292.406519]: -------------------\n", + "[INFO] [1712690292.406757]: SOMA.Obstacle \n", + "[INFO] [1712690292.406989]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712690292.407254]: Ancestors: {SOMA.Obstacle, DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.407510]: Subclasses: []\n", + "[INFO] [1712690292.407801]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.408291]: Instances: []\n", + "[INFO] [1712690292.408562]: Direct Instances: []\n", + "[INFO] [1712690292.408864]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712690292.409113]: -------------------\n", + "[INFO] [1712690292.409351]: SOMA.RestrictedObject \n", + "[INFO] [1712690292.409587]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712690292.409850]: Ancestors: {DUL.Entity, SOMA.RestrictedObject, DUL.Concept, DUL.SocialObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.410111]: Subclasses: []\n", + "[INFO] [1712690292.410407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.410899]: Instances: []\n", + "[INFO] [1712690292.411153]: Direct Instances: []\n", + "[INFO] [1712690292.411437]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712690292.411697]: -------------------\n", + "[INFO] [1712690292.411950]: SOMA.StateTransition \n", + "[INFO] [1712690292.412224]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712690292.412493]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.StateTransition, owl.Thing, DUL.Transition}\n", + "[INFO] [1712690292.412754]: Subclasses: []\n", + "[INFO] [1712690292.413076]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.includesEvent, SOMA.hasTerminalScene, DUL.satisfies, SOMA.hasInitialScene]\n", + "[INFO] [1712690292.413576]: Instances: []\n", + "[INFO] [1712690292.413857]: Direct Instances: []\n", + "[INFO] [1712690292.414182]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712690292.414430]: -------------------\n", + "[INFO] [1712690292.414671]: SOMA.Inability \n", + "[INFO] [1712690292.414903]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712690292.415171]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.Inability, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690292.415437]: Subclasses: []\n", + "[INFO] [1712690292.415739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.416230]: Instances: []\n", + "[INFO] [1712690292.416486]: Direct Instances: []\n", + "[INFO] [1712690292.416759]: Inverse Restrictions: []\n", + "[INFO] [1712690292.417032]: -------------------\n", + "[INFO] [1712690292.417286]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712690292.417527]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712690292.417794]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, SOMA.IncompatibleSoftware, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.418062]: Subclasses: []\n", + "[INFO] [1712690292.418362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.418856]: Instances: []\n", + "[INFO] [1712690292.419124]: Direct Instances: []\n", + "[INFO] [1712690292.419370]: Inverse Restrictions: []\n", + "[INFO] [1712690292.419618]: -------------------\n", + "[INFO] [1712690292.419863]: SOMA.InductionCooktop \n", + "[INFO] [1712690292.420100]: Super classes: [SOMA.ElectricCooktop]\n", + "[INFO] [1712690292.420367]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.InductionCooktop, DUL.PhysicalBody, SOMA.ElectricCooktop, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690292.420609]: Subclasses: []\n", + "[INFO] [1712690292.420910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.421420]: Instances: []\n", + "[INFO] [1712690292.421705]: Direct Instances: []\n", + "[INFO] [1712690292.421965]: Inverse Restrictions: []\n", + "[INFO] [1712690292.422207]: -------------------\n", + "[INFO] [1712690292.422449]: SOMA.InductiveReasoning \n", + "[INFO] [1712690292.422703]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712690292.422983]: Ancestors: {SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.InductiveReasoning}\n", + "[INFO] [1712690292.423246]: Subclasses: []\n", + "[INFO] [1712690292.423534]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.424013]: Instances: []\n", + "[INFO] [1712690292.424285]: Direct Instances: []\n", + "[INFO] [1712690292.424546]: Inverse Restrictions: []\n", + "[INFO] [1712690292.424792]: -------------------\n", + "[INFO] [1712690292.425039]: SOMA.Infeasibility \n", + "[INFO] [1712690292.425278]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712690292.425551]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Infeasibility, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690292.425818]: Subclasses: []\n", + "[INFO] [1712690292.426114]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.426612]: Instances: []\n", + "[INFO] [1712690292.426875]: Direct Instances: []\n", + "[INFO] [1712690292.427137]: Inverse Restrictions: []\n", + "[INFO] [1712690292.427389]: -------------------\n", + "[INFO] [1712690292.427633]: SOMA.InferenceRules \n", + "[INFO] [1712690292.427873]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712690292.428140]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.InferenceRules, DUL.Role}\n", + "[INFO] [1712690292.428385]: Subclasses: []\n", + "[INFO] [1712690292.428687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.429181]: Instances: []\n", + "[INFO] [1712690292.429463]: Direct Instances: []\n", + "[INFO] [1712690292.429726]: Inverse Restrictions: []\n", + "[INFO] [1712690292.429982]: -------------------\n", + "[INFO] [1712690292.430267]: SOMA.InformationRetrieval \n", + "[INFO] [1712690292.430554]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712690292.430833]: Ancestors: {SOMA.InformationRetrieval, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.431104]: Subclasses: []\n", + "[INFO] [1712690292.431419]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.431916]: Instances: []\n", + "[INFO] [1712690292.432178]: Direct Instances: []\n", + "[INFO] [1712690292.432494]: Inverse Restrictions: []\n", + "[INFO] [1712690292.432762]: -------------------\n", + "[INFO] [1712690292.433029]: SOMA.InformationStorage \n", + "[INFO] [1712690292.433318]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712690292.433728]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.434016]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712690292.434332]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.comment]\n", + "[INFO] [1712690292.434834]: Instances: []\n", + "[INFO] [1712690292.435104]: Direct Instances: []\n", + "[INFO] [1712690292.435372]: Inverse Restrictions: []\n", + "[INFO] [1712690292.435618]: -------------------\n", + "[INFO] [1712690292.435864]: SOMA.StoredObject \n", + "[INFO] [1712690292.436103]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712690292.436371]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.StoredObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.436636]: Subclasses: []\n", + "[INFO] [1712690292.436947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.437446]: Instances: []\n", + "[INFO] [1712690292.437702]: Direct Instances: []\n", + "[INFO] [1712690292.438053]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712690292.438318]: -------------------\n", + "[INFO] [1712690292.438574]: SOMA.InsertedObject \n", + "[INFO] [1712690292.438817]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712690292.439095]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, SOMA.InsertedObject, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.439348]: Subclasses: []\n", + "[INFO] [1712690292.439653]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.440160]: Instances: []\n", + "[INFO] [1712690292.440425]: Direct Instances: []\n", + "[INFO] [1712690292.440716]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712690292.440966]: -------------------\n", + "[INFO] [1712690292.441225]: SOMA.Instructions \n", + "[INFO] [1712690292.441472]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712690292.441742]: Ancestors: {DUL.Entity, SOMA.Instructions, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.441996]: Subclasses: []\n", + "[INFO] [1712690292.442299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.442805]: Instances: []\n", + "[INFO] [1712690292.443088]: Direct Instances: []\n", + "[INFO] [1712690292.443351]: Inverse Restrictions: []\n", + "[INFO] [1712690292.443598]: -------------------\n", + "[INFO] [1712690292.443836]: SOMA.Interpreting \n", + "[INFO] [1712690292.444077]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690292.444426]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.444742]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712690292.445095]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.445621]: Instances: []\n", + "[INFO] [1712690292.445901]: Direct Instances: []\n", + "[INFO] [1712690292.446177]: Inverse Restrictions: []\n", + "[INFO] [1712690292.446440]: -------------------\n", + "[INFO] [1712690292.446695]: SOMA.InterrogativeClause \n", + "[INFO] [1712690292.446941]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712690292.447229]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.ClausalObject, SOMA.InterrogativeClause}\n", + "[INFO] [1712690292.447503]: Subclasses: []\n", + "[INFO] [1712690292.447811]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.448306]: Instances: []\n", + "[INFO] [1712690292.448570]: Direct Instances: []\n", + "[INFO] [1712690292.448874]: Inverse Restrictions: []\n", + "[INFO] [1712690292.449140]: -------------------\n", + "[INFO] [1712690292.449397]: SOMA.Introspecting \n", + "[INFO] [1712690292.449646]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712690292.449908]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.450162]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712690292.450466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.450964]: Instances: []\n", + "[INFO] [1712690292.451226]: Direct Instances: []\n", + "[INFO] [1712690292.451490]: Inverse Restrictions: []\n", + "[INFO] [1712690292.451735]: -------------------\n", + "[INFO] [1712690292.451975]: SOMA.JamJar \n", + "[INFO] [1712690292.452209]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712690292.452476]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.JamJar, owl.Thing, DUL.Object, SOMA.Jar, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.452744]: Subclasses: [SOMA.RaspberryJamJar]\n", + "[INFO] [1712690292.453058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.453557]: Instances: []\n", + "[INFO] [1712690292.453815]: Direct Instances: []\n", + "[INFO] [1712690292.454067]: Inverse Restrictions: []\n", + "[INFO] [1712690292.454324]: -------------------\n", + "[INFO] [1712690292.454571]: SOMA.Jar \n", + "[INFO] [1712690292.454817]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712690292.455078]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Jar, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.455355]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", + "[INFO] [1712690292.455649]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.456141]: Instances: []\n", + "[INFO] [1712690292.456413]: Direct Instances: []\n", + "[INFO] [1712690292.456672]: Inverse Restrictions: []\n", + "[INFO] [1712690292.456929]: -------------------\n", + "[INFO] [1712690292.457167]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712690292.457402]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712690292.457668]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.KineticFrictionAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", + "[INFO] [1712690292.457938]: Subclasses: []\n", + "[INFO] [1712690292.458243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.458749]: Instances: []\n", + "[INFO] [1712690292.459019]: Direct Instances: []\n", + "[INFO] [1712690292.459269]: Inverse Restrictions: []\n", + "[INFO] [1712690292.459519]: -------------------\n", + "[INFO] [1712690292.459767]: SOMA.KinoDynamicData \n", + "[INFO] [1712690292.460014]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690292.460279]: Ancestors: {DUL.Entity, DUL.InformationObject, SOMA.KinoDynamicData, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.460540]: Subclasses: []\n", + "[INFO] [1712690292.460847]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.461354]: Instances: []\n", + "[INFO] [1712690292.461622]: Direct Instances: []\n", + "[INFO] [1712690292.461886]: Inverse Restrictions: []\n", + "[INFO] [1712690292.462135]: -------------------\n", + "[INFO] [1712690292.462374]: SOMA.Kitchen \n", + "[INFO] [1712690292.462619]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712690292.462891]: Ancestors: {DUL.Entity, SOMA.Room, DUL.PhysicalPlace, DUL.Object, owl.Thing, SOMA.Kitchen, DUL.PhysicalObject}\n", + "[INFO] [1712690292.463157]: Subclasses: []\n", + "[INFO] [1712690292.463459]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690292.463953]: Instances: []\n", + "[INFO] [1712690292.464211]: Direct Instances: []\n", + "[INFO] [1712690292.464455]: Inverse Restrictions: []\n", + "[INFO] [1712690292.464700]: -------------------\n", + "[INFO] [1712690292.464961]: SOMA.Room \n", + "[INFO] [1712690292.465208]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712690292.465456]: Ancestors: {DUL.Entity, SOMA.Room, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690292.465702]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712690292.465991]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.466508]: Instances: []\n", + "[INFO] [1712690292.466777]: Direct Instances: []\n", + "[INFO] [1712690292.467040]: Inverse Restrictions: []\n", + "[INFO] [1712690292.467282]: -------------------\n", + "[INFO] [1712690292.467522]: SOMA.KitchenCabinet \n", + "[INFO] [1712690292.467772]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712690292.468044]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cupboard, owl.Thing, DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, SOMA.KitchenCabinet, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.468295]: Subclasses: []\n", + "[INFO] [1712690292.468585]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.469127]: Instances: []\n", + "[INFO] [1712690292.469656]: Direct Instances: []\n", + "[INFO] [1712690292.470071]: Inverse Restrictions: []\n", + "[INFO] [1712690292.470461]: -------------------\n", + "[INFO] [1712690292.470759]: SOMA.Knife \n", + "[INFO] [1712690292.471029]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712690292.471293]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Knife, SOMA.CuttingTool, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.471569]: Subclasses: [SOMA.KitchenKnife]\n", + "[INFO] [1712690292.471879]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712690292.472547]: Instances: []\n", + "[INFO] [1712690292.472948]: Direct Instances: []\n", + "[INFO] [1712690292.473216]: Inverse Restrictions: []\n", + "[INFO] [1712690292.473475]: -------------------\n", + "[INFO] [1712690292.473726]: SOMA.KitchenUnit \n", + "[INFO] [1712690292.473972]: Super classes: [SOMA.DesignedFurniture]\n", + "[INFO] [1712690292.474241]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedFurniture, SOMA.KitchenUnit, DUL.Object, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.474499]: Subclasses: []\n", + "[INFO] [1712690292.474798]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.475286]: Instances: []\n", + "[INFO] [1712690292.475552]: Direct Instances: []\n", + "[INFO] [1712690292.475803]: Inverse Restrictions: []\n", + "[INFO] [1712690292.476044]: -------------------\n", + "[INFO] [1712690292.476295]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712690292.476538]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690292.476807]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.KnowledgeRepresentationLanguage, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.477063]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712690292.477368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.477865]: Instances: []\n", + "[INFO] [1712690292.478124]: Direct Instances: []\n", + "[INFO] [1712690292.478371]: Inverse Restrictions: []\n", + "[INFO] [1712690292.478610]: -------------------\n", + "[INFO] [1712690292.478858]: SOMA.Labeling \n", + "[INFO] [1712690292.479098]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712690292.479360]: Ancestors: {SOMA.Interpreting, SOMA.Labeling, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.479616]: Subclasses: []\n", + "[INFO] [1712690292.479903]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690292.480407]: Instances: []\n", + "[INFO] [1712690292.480683]: Direct Instances: []\n", + "[INFO] [1712690292.480947]: Inverse Restrictions: []\n", + "[INFO] [1712690292.481190]: -------------------\n", + "[INFO] [1712690292.481425]: SOMA.Text \n", + "[INFO] [1712690292.481663]: Super classes: [owl.Thing]\n", + "[INFO] [1712690292.482902]: Ancestors: {owl.Thing, SOMA.Text}\n", + "[INFO] [1712690292.483187]: Subclasses: []\n", + "[INFO] [1712690292.483491]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.483990]: Instances: []\n", + "[INFO] [1712690292.484255]: Direct Instances: []\n", + "[INFO] [1712690292.485358]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712690292.485626]: -------------------\n", + "[INFO] [1712690292.485885]: SOMA.Leaning \n", + "[INFO] [1712690292.486124]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712690292.486406]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.Leaning, SOMA.PosturalMoving}\n", + "[INFO] [1712690292.486672]: Subclasses: []\n", + "[INFO] [1712690292.486971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.487473]: Instances: []\n", + "[INFO] [1712690292.487743]: Direct Instances: []\n", + "[INFO] [1712690292.487998]: Inverse Restrictions: []\n", + "[INFO] [1712690292.488242]: -------------------\n", + "[INFO] [1712690292.488478]: SOMA.PosturalMoving \n", + "[INFO] [1712690292.488714]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712690292.488982]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.PosturalMoving}\n", + "[INFO] [1712690292.489252]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712690292.489545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.490042]: Instances: []\n", + "[INFO] [1712690292.490314]: Direct Instances: []\n", + "[INFO] [1712690292.490580]: Inverse Restrictions: []\n", + "[INFO] [1712690292.490820]: -------------------\n", + "[INFO] [1712690292.491058]: SOMA.Learning \n", + "[INFO] [1712690292.491301]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712690292.491582]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing, SOMA.Learning}\n", + "[INFO] [1712690292.491842]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712690292.492136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.492629]: Instances: []\n", + "[INFO] [1712690292.492898]: Direct Instances: []\n", + "[INFO] [1712690292.493151]: Inverse Restrictions: []\n", + "[INFO] [1712690292.493391]: -------------------\n", + "[INFO] [1712690292.493625]: SOMA.Leg \n", + "[INFO] [1712690292.493859]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712690292.494133]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Leg, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712690292.494383]: Subclasses: []\n", + "[INFO] [1712690292.494668]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.495142]: Instances: []\n", + "[INFO] [1712690292.495408]: Direct Instances: []\n", + "[INFO] [1712690292.495699]: Inverse Restrictions: []\n", + "[INFO] [1712690292.495938]: -------------------\n", + "[INFO] [1712690292.496175]: SOMA.Lid \n", + "[INFO] [1712690292.496406]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690292.496668]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, SOMA.Lid, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690292.497001]: Subclasses: []\n", + "[INFO] [1712690292.497338]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.497849]: Instances: []\n", + "[INFO] [1712690292.498121]: Direct Instances: []\n", + "[INFO] [1712690292.498379]: Inverse Restrictions: []\n", + "[INFO] [1712690292.498627]: -------------------\n", + "[INFO] [1712690292.498899]: SOMA.LimbMotion \n", + "[INFO] [1712690292.499566]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712690292.499862]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.LimbMotion, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690292.500150]: Subclasses: []\n", + "[INFO] [1712690292.500469]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.500971]: Instances: []\n", + "[INFO] [1712690292.501251]: Direct Instances: []\n", + "[INFO] [1712690292.501520]: Inverse Restrictions: []\n", + "[INFO] [1712690292.501770]: -------------------\n", + "[INFO] [1712690292.502035]: SOMA.LinkedObject \n", + "[INFO] [1712690292.502278]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712690292.502550]: Ancestors: {DUL.Entity, SOMA.LinkedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.502819]: Subclasses: []\n", + "[INFO] [1712690292.503120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.503614]: Instances: []\n", + "[INFO] [1712690292.503871]: Direct Instances: []\n", + "[INFO] [1712690292.504218]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712690292.504483]: -------------------\n", + "[INFO] [1712690292.504731]: SOMA.LinkageState \n", + "[INFO] [1712690292.504981]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712690292.505249]: Ancestors: {DUL.Entity, SOMA.LinkageState, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.505497]: Subclasses: []\n", + "[INFO] [1712690292.505786]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.506290]: Instances: []\n", + "[INFO] [1712690292.506578]: Direct Instances: []\n", + "[INFO] [1712690292.506837]: Inverse Restrictions: []\n", + "[INFO] [1712690292.507075]: -------------------\n", + "[INFO] [1712690292.507312]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712690292.507553]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690292.507815]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690292.508086]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712690292.508406]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.508984]: Instances: []\n", + "[INFO] [1712690292.509310]: Direct Instances: []\n", + "[INFO] [1712690292.509606]: Inverse Restrictions: []\n", + "[INFO] [1712690292.509884]: -------------------\n", + "[INFO] [1712690292.510148]: SOMA.SpatialRelationRole \n", + "[INFO] [1712690292.510401]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712690292.510674]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SpatialRelationRole, DUL.Role}\n", + "[INFO] [1712690292.510944]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712690292.511242]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.511734]: Instances: []\n", + "[INFO] [1712690292.512006]: Direct Instances: []\n", + "[INFO] [1712690292.512264]: Inverse Restrictions: []\n", + "[INFO] [1712690292.512505]: -------------------\n", + "[INFO] [1712690292.512741]: SOMA.LocutionaryAction \n", + "[INFO] [1712690292.512979]: Super classes: [owl.Thing]\n", + "[INFO] [1712690292.514205]: Ancestors: {owl.Thing, SOMA.LocutionaryAction}\n", + "[INFO] [1712690292.514481]: Subclasses: []\n", + "[INFO] [1712690292.514782]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690292.515279]: Instances: []\n", + "[INFO] [1712690292.515553]: Direct Instances: []\n", + "[INFO] [1712690292.515808]: Inverse Restrictions: []\n", + "[INFO] [1712690292.516053]: -------------------\n", + "[INFO] [1712690292.516289]: SOMA.LookingAt \n", + "[INFO] [1712690292.516521]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690292.516840]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.LookingAt}\n", + "[INFO] [1712690292.517104]: Subclasses: []\n", + "[INFO] [1712690292.517397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.517886]: Instances: []\n", + "[INFO] [1712690292.518171]: Direct Instances: []\n", + "[INFO] [1712690292.518434]: Inverse Restrictions: []\n", + "[INFO] [1712690292.518679]: -------------------\n", + "[INFO] [1712690292.518919]: SOMA.LookingFor \n", + "[INFO] [1712690292.519156]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712690292.519410]: Ancestors: {owl.Thing, SOMA.LookingFor, SOMA.Perceiving}\n", + "[INFO] [1712690292.519672]: Subclasses: []\n", + "[INFO] [1712690292.519965]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.520452]: Instances: []\n", + "[INFO] [1712690292.520706]: Direct Instances: []\n", + "[INFO] [1712690292.520957]: Inverse Restrictions: []\n", + "[INFO] [1712690292.521195]: -------------------\n", + "[INFO] [1712690292.521441]: SOMA.Lowering \n", + "[INFO] [1712690292.521686]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690292.521948]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Lowering, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690292.522195]: Subclasses: []\n", + "[INFO] [1712690292.522476]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.522978]: Instances: []\n", + "[INFO] [1712690292.523243]: Direct Instances: []\n", + "[INFO] [1712690292.523491]: Inverse Restrictions: []\n", + "[INFO] [1712690292.523731]: -------------------\n", + "[INFO] [1712690292.523965]: SOMA.PhysicalAction \n", + "[INFO] [1712690292.524201]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712690292.524474]: Ancestors: {DUL.Entity, DUL.Event, SOMA.PhysicalAction, owl.Thing, DUL.Action}\n", + "[INFO] [1712690292.524724]: Subclasses: []\n", + "[INFO] [1712690292.525017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.525502]: Instances: []\n", + "[INFO] [1712690292.525750]: Direct Instances: []\n", + "[INFO] [1712690292.526044]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690292.526286]: -------------------\n", + "[INFO] [1712690292.526525]: SOMA.Markup_Language \n", + "[INFO] [1712690292.526759]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690292.527019]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, SOMA.Markup_Language, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.527276]: Subclasses: []\n", + "[INFO] [1712690292.527570]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.528054]: Instances: []\n", + "[INFO] [1712690292.528305]: Direct Instances: []\n", + "[INFO] [1712690292.528546]: Inverse Restrictions: []\n", + "[INFO] [1712690292.528795]: -------------------\n", + "[INFO] [1712690292.529038]: SOMA.Masterful \n", + "[INFO] [1712690292.529270]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712690292.529532]: Ancestors: {SOMA.Masterful, DUL.Entity, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.529775]: Subclasses: []\n", + "[INFO] [1712690292.530070]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.530562]: Instances: []\n", + "[INFO] [1712690292.530822]: Direct Instances: []\n", + "[INFO] [1712690292.531071]: Inverse Restrictions: []\n", + "[INFO] [1712690292.531306]: -------------------\n", + "[INFO] [1712690292.531552]: SOMA.Material \n", + "[INFO] [1712690292.531791]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690292.532056]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Material, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690292.532298]: Subclasses: []\n", + "[INFO] [1712690292.532574]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.533075]: Instances: []\n", + "[INFO] [1712690292.533359]: Direct Instances: []\n", + "[INFO] [1712690292.533629]: Inverse Restrictions: []\n", + "[INFO] [1712690292.533872]: -------------------\n", + "[INFO] [1712690292.534111]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712690292.534372]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712690292.534648]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, DUL.Object, owl.Thing, SOMA.MedicalDiagnosis, DUL.Description}\n", + "[INFO] [1712690292.534899]: Subclasses: []\n", + "[INFO] [1712690292.535195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712690292.535691]: Instances: []\n", + "[INFO] [1712690292.535977]: Direct Instances: []\n", + "[INFO] [1712690292.536240]: Inverse Restrictions: []\n", + "[INFO] [1712690292.536486]: -------------------\n", + "[INFO] [1712690292.536729]: SOMA.Memorizing \n", + "[INFO] [1712690292.537028]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712690292.537450]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.Memorizing, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing, SOMA.Learning}\n", + "[INFO] [1712690292.537850]: Subclasses: []\n", + "[INFO] [1712690292.538270]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.538796]: Instances: []\n", + "[INFO] [1712690292.539065]: Direct Instances: []\n", + "[INFO] [1712690292.539316]: Inverse Restrictions: []\n", + "[INFO] [1712690292.539562]: -------------------\n", + "[INFO] [1712690292.539808]: SOMA.MentalAction \n", + "[INFO] [1712690292.540450]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712690292.540729]: Ancestors: {DUL.Entity, DUL.Event, SOMA.MentalAction, owl.Thing, DUL.Action}\n", + "[INFO] [1712690292.541019]: Subclasses: []\n", + "[INFO] [1712690292.541343]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.541845]: Instances: []\n", + "[INFO] [1712690292.542114]: Direct Instances: []\n", + "[INFO] [1712690292.542411]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712690292.542664]: -------------------\n", + "[INFO] [1712690292.542902]: SOMA.MeshShape \n", + "[INFO] [1712690292.543175]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712690292.543445]: Ancestors: {DUL.Entity, SOMA.MeshShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690292.543711]: Subclasses: []\n", + "[INFO] [1712690292.544018]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasFilePath, rdf-schema.comment]\n", + "[INFO] [1712690292.544512]: Instances: []\n", + "[INFO] [1712690292.544766]: Direct Instances: []\n", + "[INFO] [1712690292.545015]: Inverse Restrictions: []\n", + "[INFO] [1712690292.545265]: -------------------\n", + "[INFO] [1712690292.545507]: SOMA.MeshShapeData \n", + "[INFO] [1712690292.545748]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690292.546006]: Ancestors: {DUL.Entity, SOMA.MeshShapeData, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.546245]: Subclasses: []\n", + "[INFO] [1712690292.546530]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.547028]: Instances: []\n", + "[INFO] [1712690292.547318]: Direct Instances: []\n", + "[INFO] [1712690292.547574]: Inverse Restrictions: []\n", + "[INFO] [1712690292.547816]: -------------------\n", + "[INFO] [1712690292.548064]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712690292.548301]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712690292.548581]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.548833]: Subclasses: []\n", + "[INFO] [1712690292.549127]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.549634]: Instances: []\n", + "[INFO] [1712690292.549898]: Direct Instances: []\n", + "[INFO] [1712690292.550170]: Inverse Restrictions: []\n", + "[INFO] [1712690292.550410]: -------------------\n", + "[INFO] [1712690292.550648]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712690292.550882]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690292.551142]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.551424]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712690292.551718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.552210]: Instances: []\n", + "[INFO] [1712690292.552479]: Direct Instances: []\n", + "[INFO] [1712690292.552738]: Inverse Restrictions: []\n", + "[INFO] [1712690292.552984]: -------------------\n", + "[INFO] [1712690292.553222]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712690292.553455]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712690292.553716]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.MetaCognitionMemoryTopic, DUL.Role}\n", + "[INFO] [1712690292.553977]: Subclasses: []\n", + "[INFO] [1712690292.554274]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.554762]: Instances: []\n", + "[INFO] [1712690292.555017]: Direct Instances: []\n", + "[INFO] [1712690292.555266]: Inverse Restrictions: []\n", + "[INFO] [1712690292.555511]: -------------------\n", + "[INFO] [1712690292.555760]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712690292.556000]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712690292.556266]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.556510]: Subclasses: []\n", + "[INFO] [1712690292.556800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.557304]: Instances: []\n", + "[INFO] [1712690292.557575]: Direct Instances: []\n", + "[INFO] [1712690292.557834]: Inverse Restrictions: []\n", + "[INFO] [1712690292.558071]: -------------------\n", + "[INFO] [1712690292.558305]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712690292.558535]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712690292.558794]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.559065]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712690292.559362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.559873]: Instances: []\n", + "[INFO] [1712690292.560146]: Direct Instances: []\n", + "[INFO] [1712690292.560414]: Inverse Restrictions: []\n", + "[INFO] [1712690292.560655]: -------------------\n", + "[INFO] [1712690292.560897]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712690292.561130]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712690292.561391]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.MetacognitiveControlling, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.561656]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712690292.561956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.562449]: Instances: []\n", + "[INFO] [1712690292.562702]: Direct Instances: []\n", + "[INFO] [1712690292.562946]: Inverse Restrictions: []\n", + "[INFO] [1712690292.563183]: -------------------\n", + "[INFO] [1712690292.563428]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712690292.563664]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712690292.563919]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring}\n", + "[INFO] [1712690292.564158]: Subclasses: []\n", + "[INFO] [1712690292.564435]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.564938]: Instances: []\n", + "[INFO] [1712690292.565206]: Direct Instances: []\n", + "[INFO] [1712690292.565465]: Inverse Restrictions: []\n", + "[INFO] [1712690292.565704]: -------------------\n", + "[INFO] [1712690292.565945]: SOMA.MilkBottle \n", + "[INFO] [1712690292.566188]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712690292.566454]: Ancestors: {DUL.PhysicalArtifact, SOMA.Bottle, DUL.Entity, SOMA.MilkBottle, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.566729]: Subclasses: []\n", + "[INFO] [1712690292.567022]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.567520]: Instances: []\n", + "[INFO] [1712690292.567793]: Direct Instances: []\n", + "[INFO] [1712690292.568046]: Inverse Restrictions: []\n", + "[INFO] [1712690292.568285]: -------------------\n", + "[INFO] [1712690292.568530]: SOMA.MilkPack \n", + "[INFO] [1712690292.568773]: Super classes: [SOMA.Pack]\n", + "[INFO] [1712690292.569047]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pack, owl.Thing, DUL.Object, SOMA.DesignedContainer, SOMA.MilkPack, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.569288]: Subclasses: []\n", + "[INFO] [1712690292.569573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.570078]: Instances: []\n", + "[INFO] [1712690292.570340]: Direct Instances: []\n", + "[INFO] [1712690292.570590]: Inverse Restrictions: []\n", + "[INFO] [1712690292.570826]: -------------------\n", + "[INFO] [1712690292.571055]: SOMA.Pack \n", + "[INFO] [1712690292.571282]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712690292.571538]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pack, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.571791]: Subclasses: [SOMA.MilkPack]\n", + "[INFO] [1712690292.572079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.572567]: Instances: []\n", + "[INFO] [1712690292.572828]: Direct Instances: []\n", + "[INFO] [1712690292.573086]: Inverse Restrictions: []\n", + "[INFO] [1712690292.573327]: -------------------\n", + "[INFO] [1712690292.573565]: SOMA.Mixing \n", + "[INFO] [1712690292.573797]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712690292.574056]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Mixing}\n", + "[INFO] [1712690292.574321]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712690292.574618]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.575111]: Instances: []\n", + "[INFO] [1712690292.575363]: Direct Instances: []\n", + "[INFO] [1712690292.575611]: Inverse Restrictions: []\n", + "[INFO] [1712690292.575862]: -------------------\n", + "[INFO] [1712690292.576112]: SOMA.MixingTheory \n", + "[INFO] [1712690292.576353]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712690292.576620]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.MixingTheory, owl.Thing, DUL.Object, DUL.Description, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690292.576869]: Subclasses: []\n", + "[INFO] [1712690292.577175]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.577666]: Instances: []\n", + "[INFO] [1712690292.577919]: Direct Instances: []\n", + "[INFO] [1712690292.578167]: Inverse Restrictions: []\n", + "[INFO] [1712690292.578398]: -------------------\n", + "[INFO] [1712690292.578638]: SOMA.MonitoringJointState \n", + "[INFO] [1712690292.578873]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712690292.579146]: Ancestors: {DUL.Entity, SOMA.MonitoringJointState, DUL.Concept, DUL.SocialObject, SOMA.Proprioceiving, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690292.579406]: Subclasses: []\n", + "[INFO] [1712690292.579702]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.580194]: Instances: []\n", + "[INFO] [1712690292.580461]: Direct Instances: []\n", + "[INFO] [1712690292.580711]: Inverse Restrictions: []\n", + "[INFO] [1712690292.580958]: -------------------\n", + "[INFO] [1712690292.581196]: SOMA.Proprioceiving \n", + "[INFO] [1712690292.581424]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690292.581668]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Proprioceiving, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690292.581922]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712690292.582207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.582692]: Instances: []\n", + "[INFO] [1712690292.582993]: Direct Instances: []\n", + "[INFO] [1712690292.583262]: Inverse Restrictions: []\n", + "[INFO] [1712690292.583515]: -------------------\n", + "[INFO] [1712690292.583766]: SOMA.MovingAway \n", + "[INFO] [1712690292.584001]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690292.584276]: Ancestors: {DUL.Entity, SOMA.MovingAway, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", + "[INFO] [1712690292.584527]: Subclasses: []\n", + "[INFO] [1712690292.584816]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.585317]: Instances: []\n", + "[INFO] [1712690292.585602]: Direct Instances: []\n", + "[INFO] [1712690292.585863]: Inverse Restrictions: []\n", + "[INFO] [1712690292.586107]: -------------------\n", + "[INFO] [1712690292.586356]: SOMA.MovingTo \n", + "[INFO] [1712690292.586594]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712690292.586857]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.MovingTo}\n", + "[INFO] [1712690292.587119]: Subclasses: []\n", + "[INFO] [1712690292.587414]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.587901]: Instances: []\n", + "[INFO] [1712690292.588159]: Direct Instances: []\n", + "[INFO] [1712690292.588419]: Inverse Restrictions: []\n", + "[INFO] [1712690292.588658]: -------------------\n", + "[INFO] [1712690292.588896]: SOMA.Natural_Language \n", + "[INFO] [1712690292.589164]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712690292.589447]: Ancestors: {SOMA.Natural_Language, DUL.Entity, SOMA.System, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.589701]: Subclasses: []\n", + "[INFO] [1712690292.589991]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.590478]: Instances: []\n", + "[INFO] [1712690292.590748]: Direct Instances: []\n", + "[INFO] [1712690292.591063]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712690292.591313]: -------------------\n", + "[INFO] [1712690292.591547]: SOMA.Natural_Language_Text \n", + "[INFO] [1712690292.591780]: Super classes: [owl.Thing]\n", + "[INFO] [1712690292.592266]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", + "[INFO] [1712690292.592532]: Subclasses: []\n", + "[INFO] [1712690292.592830]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.593312]: Instances: []\n", + "[INFO] [1712690292.593588]: Direct Instances: []\n", + "[INFO] [1712690292.593880]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712690292.594127]: -------------------\n", + "[INFO] [1712690292.594366]: SOMA.NutellaJar \n", + "[INFO] [1712690292.594599]: Super classes: [SOMA.Jar]\n", + "[INFO] [1712690292.594858]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Jar, SOMA.DesignedContainer, SOMA.NutellaJar, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.595354]: Subclasses: []\n", + "[INFO] [1712690292.595698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.596198]: Instances: []\n", + "[INFO] [1712690292.596471]: Direct Instances: []\n", + "[INFO] [1712690292.596747]: Inverse Restrictions: []\n", + "[INFO] [1712690292.597037]: -------------------\n", + "[INFO] [1712690292.597298]: SOMA.Ontology \n", + "[INFO] [1712690292.597547]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712690292.598767]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", + "[INFO] [1712690292.599065]: Subclasses: []\n", + "[INFO] [1712690292.599384]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.599890]: Instances: []\n", + "[INFO] [1712690292.600245]: Direct Instances: []\n", + "[INFO] [1712690292.600581]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712690292.600850]: -------------------\n", + "[INFO] [1712690292.601102]: SOMA.Ontology_Language \n", + "[INFO] [1712690292.601351]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712690292.601619]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.601876]: Subclasses: []\n", + "[INFO] [1712690292.602186]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.602678]: Instances: []\n", + "[INFO] [1712690292.602945]: Direct Instances: []\n", + "[INFO] [1712690292.603252]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712690292.603512]: -------------------\n", + "[INFO] [1712690292.603761]: SOMA.Option \n", + "[INFO] [1712690292.604002]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712690292.604270]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, SOMA.Option, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.604516]: Subclasses: []\n", + "[INFO] [1712690292.604826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.605365]: Instances: []\n", + "[INFO] [1712690292.605628]: Direct Instances: []\n", + "[INFO] [1712690292.605882]: Inverse Restrictions: []\n", + "[INFO] [1712690292.606129]: -------------------\n", + "[INFO] [1712690292.606367]: SOMA.Singleton \n", + "[INFO] [1712690292.606601]: Super classes: [owl.Thing]\n", + "[INFO] [1712690292.606841]: Ancestors: {owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712690292.607104]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712690292.607398]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", + "[INFO] [1712690292.607895]: Instances: []\n", + "[INFO] [1712690292.608153]: Direct Instances: []\n", + "[INFO] [1712690292.608418]: Inverse Restrictions: []\n", + "[INFO] [1712690292.608661]: -------------------\n", + "[INFO] [1712690292.608899]: SOMA.Orienting \n", + "[INFO] [1712690292.609132]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712690292.609404]: Ancestors: {SOMA.Orienting, DUL.Entity, SOMA.Positioning, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690292.609664]: Subclasses: []\n", + "[INFO] [1712690292.609959]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.610445]: Instances: []\n", + "[INFO] [1712690292.610715]: Direct Instances: []\n", + "[INFO] [1712690292.610970]: Inverse Restrictions: []\n", + "[INFO] [1712690292.611207]: -------------------\n", + "[INFO] [1712690292.611440]: SOMA.Positioning \n", + "[INFO] [1712690292.611672]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690292.611930]: Ancestors: {DUL.Entity, SOMA.Positioning, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690292.612185]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712690292.612469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.612981]: Instances: []\n", + "[INFO] [1712690292.613273]: Direct Instances: []\n", + "[INFO] [1712690292.613546]: Inverse Restrictions: []\n", + "[INFO] [1712690292.613790]: -------------------\n", + "[INFO] [1712690292.614037]: SOMA.Origin \n", + "[INFO] [1712690292.614281]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712690292.614559]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, SOMA.Origin, DUL.Role}\n", + "[INFO] [1712690292.614814]: Subclasses: []\n", + "[INFO] [1712690292.615100]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.615586]: Instances: []\n", + "[INFO] [1712690292.615851]: Direct Instances: []\n", + "[INFO] [1712690292.616147]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712690292.616391]: -------------------\n", + "[INFO] [1712690292.616631]: SOMA.Oven \n", + "[INFO] [1712690292.616912]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", + "[INFO] [1712690292.617193]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Oven, owl.Thing, DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.617456]: Subclasses: []\n", + "[INFO] [1712690292.617766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690292.618267]: Instances: []\n", + "[INFO] [1712690292.618522]: Direct Instances: []\n", + "[INFO] [1712690292.618764]: Inverse Restrictions: []\n", + "[INFO] [1712690292.619008]: -------------------\n", + "[INFO] [1712690292.619246]: SOMA.TemperingByHeating \n", + "[INFO] [1712690292.619477]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712690292.619748]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.TemperingByHeating, DUL.Quality, owl.Thing, SOMA.Tempering}\n", + "[INFO] [1712690292.620014]: Subclasses: []\n", + "[INFO] [1712690292.620310]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.620798]: Instances: []\n", + "[INFO] [1712690292.621055]: Direct Instances: []\n", + "[INFO] [1712690292.621321]: Inverse Restrictions: [SOMA.Oven]\n", + "[INFO] [1712690292.621573]: -------------------\n", + "[INFO] [1712690292.621816]: SOMA.Pan \n", + "[INFO] [1712690292.622049]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712690292.622310]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pan, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.622559]: Subclasses: []\n", + "[INFO] [1712690292.622848]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.623327]: Instances: []\n", + "[INFO] [1712690292.623584]: Direct Instances: []\n", + "[INFO] [1712690292.623825]: Inverse Restrictions: []\n", + "[INFO] [1712690292.624057]: -------------------\n", + "[INFO] [1712690292.624285]: SOMA.Pancake \n", + "[INFO] [1712690292.624530]: Super classes: [SOMA.BakedGood]\n", + "[INFO] [1712690292.624799]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pancake, SOMA.BakedGood, DUL.Object, owl.Thing, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.625044]: Subclasses: []\n", + "[INFO] [1712690292.625335]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690292.625822]: Instances: []\n", + "[INFO] [1712690292.626076]: Direct Instances: []\n", + "[INFO] [1712690292.626315]: Inverse Restrictions: []\n", + "[INFO] [1712690292.626552]: -------------------\n", + "[INFO] [1712690292.626795]: SOMA.PancakeMix \n", + "[INFO] [1712690292.627032]: Super classes: [DUL.DesignedSubstance]\n", + "[INFO] [1712690292.627295]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.PancakeMix, DUL.Substance, DUL.DesignedSubstance, DUL.PhysicalBody, DUL.FunctionalSubstance, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.627536]: Subclasses: []\n", + "[INFO] [1712690292.627828]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690292.628315]: Instances: []\n", + "[INFO] [1712690292.628573]: Direct Instances: []\n", + "[INFO] [1712690292.628820]: Inverse Restrictions: []\n", + "[INFO] [1712690292.629049]: -------------------\n", + "[INFO] [1712690292.629285]: SOMA.ParkingArms \n", + "[INFO] [1712690292.629524]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712690292.629795]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.AssumingArmPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ParkingArms}\n", + "[INFO] [1712690292.630055]: Subclasses: []\n", + "[INFO] [1712690292.630366]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.630898]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712690292.631173]: Direct Instances: [SOMA.parking_arms]\n", + "[INFO] [1712690292.631427]: Inverse Restrictions: []\n", + "[INFO] [1712690292.631666]: -------------------\n", + "[INFO] [1712690292.631901]: SOMA.PastaBowl \n", + "[INFO] [1712690292.632146]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712690292.632416]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Bowl, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, SOMA.PastaBowl, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.632663]: Subclasses: []\n", + "[INFO] [1712690292.632957]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.633476]: Instances: []\n", + "[INFO] [1712690292.633747]: Direct Instances: []\n", + "[INFO] [1712690292.634001]: Inverse Restrictions: []\n", + "[INFO] [1712690292.634238]: -------------------\n", + "[INFO] [1712690292.634484]: SOMA.PepperShaker \n", + "[INFO] [1712690292.634725]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712690292.634993]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.PepperShaker, SOMA.Shaker, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.635236]: Subclasses: []\n", + "[INFO] [1712690292.635517]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.636036]: Instances: []\n", + "[INFO] [1712690292.636321]: Direct Instances: []\n", + "[INFO] [1712690292.636575]: Inverse Restrictions: []\n", + "[INFO] [1712690292.636820]: -------------------\n", + "[INFO] [1712690292.637059]: SOMA.Shaker \n", + "[INFO] [1712690292.637310]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712690292.637560]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Shaker, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.637813]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", + "[INFO] [1712690292.638099]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.638604]: Instances: []\n", + "[INFO] [1712690292.638872]: Direct Instances: []\n", + "[INFO] [1712690292.639125]: Inverse Restrictions: []\n", + "[INFO] [1712690292.639358]: -------------------\n", + "[INFO] [1712690292.639589]: SOMA.PhaseTransition \n", + "[INFO] [1712690292.639832]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712690292.640079]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", + "[INFO] [1712690292.640326]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712690292.640613]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.641130]: Instances: []\n", + "[INFO] [1712690292.641401]: Direct Instances: []\n", + "[INFO] [1712690292.641653]: Inverse Restrictions: []\n", + "[INFO] [1712690292.641892]: -------------------\n", + "[INFO] [1712690292.642128]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712690292.642381]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712690292.642648]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.PhysicalAccessibility, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.642894]: Subclasses: []\n", + "[INFO] [1712690292.643184]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.643686]: Instances: []\n", + "[INFO] [1712690292.643948]: Direct Instances: []\n", + "[INFO] [1712690292.644197]: Inverse Restrictions: []\n", + "[INFO] [1712690292.644431]: -------------------\n", + "[INFO] [1712690292.644668]: SOMA.PhysicalBlockage \n", + "[INFO] [1712690292.644922]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712690292.645197]: Ancestors: {DUL.Entity, SOMA.PhysicalBlockage, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.645448]: Subclasses: []\n", + "[INFO] [1712690292.645743]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.646246]: Instances: []\n", + "[INFO] [1712690292.646511]: Direct Instances: []\n", + "[INFO] [1712690292.646764]: Inverse Restrictions: []\n", + "[INFO] [1712690292.647012]: -------------------\n", + "[INFO] [1712690292.647270]: SOMA.PhysicalExistence \n", + "[INFO] [1712690292.647515]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712690292.647788]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, SOMA.PhysicalExistence, owl.Thing, SOMA.PhysicalState}\n", + "[INFO] [1712690292.648046]: Subclasses: []\n", + "[INFO] [1712690292.648337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.648827]: Instances: []\n", + "[INFO] [1712690292.649094]: Direct Instances: []\n", + "[INFO] [1712690292.649348]: Inverse Restrictions: []\n", + "[INFO] [1712690292.649590]: -------------------\n", + "[INFO] [1712690292.649823]: SOMA.PhysicalState \n", + "[INFO] [1712690292.650199]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712690292.650575]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing, SOMA.PhysicalState}\n", + "[INFO] [1712690292.650947]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712690292.651372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690292.651902]: Instances: []\n", + "[INFO] [1712690292.652179]: Direct Instances: []\n", + "[INFO] [1712690292.652445]: Inverse Restrictions: []\n", + "[INFO] [1712690292.652689]: -------------------\n", + "[INFO] [1712690292.652934]: SOMA.PhysicsProcess \n", + "[INFO] [1712690292.653180]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712690292.653456]: Ancestors: {DUL.Entity, DUL.Event, DUL.Process, SOMA.PhysicsProcess, owl.Thing}\n", + "[INFO] [1712690292.653708]: Subclasses: []\n", + "[INFO] [1712690292.654005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690292.654486]: Instances: []\n", + "[INFO] [1712690292.654752]: Direct Instances: []\n", + "[INFO] [1712690292.655008]: Inverse Restrictions: []\n", + "[INFO] [1712690292.655246]: -------------------\n", + "[INFO] [1712690292.655478]: SOMA.PlacingTheory \n", + "[INFO] [1712690292.655719]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712690292.655995]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.PlacingTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690292.656242]: Subclasses: []\n", + "[INFO] [1712690292.656537]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.657041]: Instances: []\n", + "[INFO] [1712690292.657302]: Direct Instances: []\n", + "[INFO] [1712690292.657555]: Inverse Restrictions: []\n", + "[INFO] [1712690292.657788]: -------------------\n", + "[INFO] [1712690292.658020]: SOMA.PlanarJoint \n", + "[INFO] [1712690292.658262]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712690292.658527]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, SOMA.PlanarJoint, DUL.PhysicalObject}\n", + "[INFO] [1712690292.658769]: Subclasses: []\n", + "[INFO] [1712690292.659050]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.659545]: Instances: []\n", + "[INFO] [1712690292.659801]: Direct Instances: []\n", + "[INFO] [1712690292.660047]: Inverse Restrictions: []\n", + "[INFO] [1712690292.660275]: -------------------\n", + "[INFO] [1712690292.660506]: SOMA.PluginRole \n", + "[INFO] [1712690292.660753]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712690292.661176]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, SOMA.PluginRole, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.661487]: Subclasses: []\n", + "[INFO] [1712690292.661820]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.662330]: Instances: []\n", + "[INFO] [1712690292.662597]: Direct Instances: []\n", + "[INFO] [1712690292.662913]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712690292.663181]: -------------------\n", + "[INFO] [1712690292.663444]: SOMA.Pot \n", + "[INFO] [1712690292.663700]: Super classes: [SOMA.Crockery]\n", + "[INFO] [1712690292.663985]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pot, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.664267]: Subclasses: [SOMA.SoupPot]\n", + "[INFO] [1712690292.664578]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.665108]: Instances: []\n", + "[INFO] [1712690292.665382]: Direct Instances: []\n", + "[INFO] [1712690292.665648]: Inverse Restrictions: []\n", + "[INFO] [1712690292.665915]: -------------------\n", + "[INFO] [1712690292.666179]: SOMA.Pourable \n", + "[INFO] [1712690292.666461]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712690292.666759]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Pourable, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690292.667055]: Subclasses: []\n", + "[INFO] [1712690292.667397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.667962]: Instances: []\n", + "[INFO] [1712690292.668268]: Direct Instances: []\n", + "[INFO] [1712690292.668612]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712690292.668913]: -------------------\n", + "[INFO] [1712690292.669193]: SOMA.PouredObject \n", + "[INFO] [1712690292.669459]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690292.669742]: Ancestors: {SOMA.PouredObject, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.670096]: Subclasses: []\n", + "[INFO] [1712690292.670415]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.670933]: Instances: []\n", + "[INFO] [1712690292.671210]: Direct Instances: []\n", + "[INFO] [1712690292.671504]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712690292.671746]: -------------------\n", + "[INFO] [1712690292.671985]: SOMA.Pouring \n", + "[INFO] [1712690292.672226]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712690292.672505]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712690292.672764]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712690292.673062]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690292.673566]: Instances: []\n", + "[INFO] [1712690292.674016]: Direct Instances: []\n", + "[INFO] [1712690292.674345]: Inverse Restrictions: []\n", + "[INFO] [1712690292.674600]: -------------------\n", + "[INFO] [1712690292.674847]: SOMA.PouringInto \n", + "[INFO] [1712690292.675084]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712690292.675356]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.PouringInto, SOMA.Pouring}\n", + "[INFO] [1712690292.675631]: Subclasses: []\n", + "[INFO] [1712690292.675940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.676430]: Instances: []\n", + "[INFO] [1712690292.676697]: Direct Instances: []\n", + "[INFO] [1712690292.677047]: Inverse Restrictions: []\n", + "[INFO] [1712690292.677328]: -------------------\n", + "[INFO] [1712690292.677583]: SOMA.PouringOnto \n", + "[INFO] [1712690292.677838]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712690292.678117]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.PouringOnto, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712690292.678381]: Subclasses: []\n", + "[INFO] [1712690292.678678]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.679163]: Instances: []\n", + "[INFO] [1712690292.679431]: Direct Instances: []\n", + "[INFO] [1712690292.679683]: Inverse Restrictions: []\n", + "[INFO] [1712690292.679926]: -------------------\n", + "[INFO] [1712690292.680164]: SOMA.Prediction \n", + "[INFO] [1712690292.680397]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712690292.680664]: Ancestors: {SOMA.Prediction, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.680929]: Subclasses: []\n", + "[INFO] [1712690292.681233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.681721]: Instances: []\n", + "[INFO] [1712690292.681982]: Direct Instances: []\n", + "[INFO] [1712690292.682248]: Inverse Restrictions: []\n", + "[INFO] [1712690292.682491]: -------------------\n", + "[INFO] [1712690292.682730]: SOMA.Prospecting \n", + "[INFO] [1712690292.682961]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690292.683196]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.Prospecting, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.683462]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712690292.683758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.684250]: Instances: []\n", + "[INFO] [1712690292.684519]: Direct Instances: []\n", + "[INFO] [1712690292.684780]: Inverse Restrictions: []\n", + "[INFO] [1712690292.685025]: -------------------\n", + "[INFO] [1712690292.685265]: SOMA.Predilection \n", + "[INFO] [1712690292.686296]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712690292.686616]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Predilection}\n", + "[INFO] [1712690292.686878]: Subclasses: []\n", + "[INFO] [1712690292.687171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690292.687663]: Instances: []\n", + "[INFO] [1712690292.687935]: Direct Instances: []\n", + "[INFO] [1712690292.688189]: Inverse Restrictions: []\n", + "[INFO] [1712690292.688427]: -------------------\n", + "[INFO] [1712690292.688659]: SOMA.PreferenceOrder \n", + "[INFO] [1712690292.689380]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712690292.689757]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.PreferenceOrder}\n", + "[INFO] [1712690292.690055]: Subclasses: []\n", + "[INFO] [1712690292.690381]: Properties: [SOMA.orders, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690292.690888]: Instances: []\n", + "[INFO] [1712690292.691170]: Direct Instances: []\n", + "[INFO] [1712690292.691441]: Inverse Restrictions: []\n", + "[INFO] [1712690292.691688]: -------------------\n", + "[INFO] [1712690292.691932]: SOMA.PreferenceRegion \n", + "[INFO] [1712690292.692171]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712690292.692439]: Ancestors: {DUL.Entity, SOMA.PreferenceRegion, DUL.Region, DUL.SocialObjectAttribute, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690292.692705]: Subclasses: []\n", + "[INFO] [1712690292.693018]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isRegionFor, rdf-schema.label]\n", + "[INFO] [1712690292.693515]: Instances: []\n", + "[INFO] [1712690292.693788]: Direct Instances: []\n", + "[INFO] [1712690292.694043]: Inverse Restrictions: []\n", + "[INFO] [1712690292.694285]: -------------------\n", + "[INFO] [1712690292.694523]: SOMA.PrismaticJoint \n", + "[INFO] [1712690292.694759]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712690292.695031]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, SOMA.PrismaticJoint, DUL.PhysicalObject}\n", + "[INFO] [1712690292.695284]: Subclasses: []\n", + "[INFO] [1712690292.695578]: Properties: [SOMA.hasJointLimit, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.696067]: Instances: []\n", + "[INFO] [1712690292.696340]: Direct Instances: []\n", + "[INFO] [1712690292.696593]: Inverse Restrictions: []\n", + "[INFO] [1712690292.696843]: -------------------\n", + "[INFO] [1712690292.697098]: SOMA.ProcessFlow \n", + "[INFO] [1712690292.697350]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712690292.697626]: Ancestors: {DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.ProcessFlow, DUL.Description}\n", + "[INFO] [1712690292.697888]: Subclasses: []\n", + "[INFO] [1712690292.698189]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.definesProcess, rdf-schema.comment]\n", + "[INFO] [1712690292.698672]: Instances: []\n", + "[INFO] [1712690292.698948]: Direct Instances: []\n", + "[INFO] [1712690292.699609]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712690292.699863]: -------------------\n", + "[INFO] [1712690292.700160]: SOMA.Progression \n", + "[INFO] [1712690292.700434]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712690292.701300]: Ancestors: {SOMA.Progression, DUL.Entity, owl.Thing, DUL.Situation}\n", + "[INFO] [1712690292.701583]: Subclasses: []\n", + "[INFO] [1712690292.701897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies]\n", + "[INFO] [1712690292.702396]: Instances: []\n", + "[INFO] [1712690292.702671]: Direct Instances: []\n", + "[INFO] [1712690292.702931]: Inverse Restrictions: []\n", + "[INFO] [1712690292.703169]: -------------------\n", + "[INFO] [1712690292.703407]: SOMA.Protector \n", + "[INFO] [1712690292.703639]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712690292.703916]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, SOMA.Protector, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.704178]: Subclasses: []\n", + "[INFO] [1712690292.704473]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.704964]: Instances: []\n", + "[INFO] [1712690292.705220]: Direct Instances: []\n", + "[INFO] [1712690292.705478]: Inverse Restrictions: []\n", + "[INFO] [1712690292.705714]: -------------------\n", + "[INFO] [1712690292.706009]: SOMA.ProximalTheory \n", + "[INFO] [1712690292.706301]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712690292.706595]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, SOMA.ProximalTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690292.706870]: Subclasses: []\n", + "[INFO] [1712690292.707202]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.707761]: Instances: []\n", + "[INFO] [1712690292.708055]: Direct Instances: []\n", + "[INFO] [1712690292.708346]: Inverse Restrictions: []\n", + "[INFO] [1712690292.708617]: -------------------\n", + "[INFO] [1712690292.708889]: SOMA.PushingAway \n", + "[INFO] [1712690292.709158]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712690292.709484]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Pushing, DUL.EventType, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.PushingAway}\n", + "[INFO] [1712690292.709781]: Subclasses: []\n", + "[INFO] [1712690292.710134]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.710725]: Instances: []\n", + "[INFO] [1712690292.711049]: Direct Instances: []\n", + "[INFO] [1712690292.711347]: Inverse Restrictions: []\n", + "[INFO] [1712690292.711633]: -------------------\n", + "[INFO] [1712690292.711909]: SOMA.PushingDown \n", + "[INFO] [1712690292.712191]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712690292.712492]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Pushing, DUL.EventType, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.PushingDown}\n", + "[INFO] [1712690292.712758]: Subclasses: []\n", + "[INFO] [1712690292.713129]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.713656]: Instances: []\n", + "[INFO] [1712690292.713936]: Direct Instances: []\n", + "[INFO] [1712690292.714194]: Inverse Restrictions: []\n", + "[INFO] [1712690292.714436]: -------------------\n", + "[INFO] [1712690292.714688]: SOMA.PuttingDown \n", + "[INFO] [1712690292.714922]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690292.715196]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, SOMA.PuttingDown, SOMA.PhysicalTask, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712690292.715444]: Subclasses: []\n", + "[INFO] [1712690292.715734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.716221]: Instances: []\n", + "[INFO] [1712690292.716486]: Direct Instances: []\n", + "[INFO] [1712690292.716793]: Inverse Restrictions: []\n", + "[INFO] [1712690292.717046]: -------------------\n", + "[INFO] [1712690292.717287]: SOMA.QualityTransition \n", + "[INFO] [1712690292.717523]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712690292.717782]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.QualityTransition, owl.Thing, DUL.Transition}\n", + "[INFO] [1712690292.718057]: Subclasses: []\n", + "[INFO] [1712690292.718359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.718848]: Instances: []\n", + "[INFO] [1712690292.719102]: Direct Instances: []\n", + "[INFO] [1712690292.719342]: Inverse Restrictions: []\n", + "[INFO] [1712690292.719579]: -------------------\n", + "[INFO] [1712690292.719824]: SOMA.Query \n", + "[INFO] [1712690292.720061]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712690292.720328]: Ancestors: {DUL.Entity, SOMA.Message, SOMA.Query, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.720572]: Subclasses: []\n", + "[INFO] [1712690292.720859]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.721366]: Instances: []\n", + "[INFO] [1712690292.721635]: Direct Instances: []\n", + "[INFO] [1712690292.721924]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712690292.722173]: -------------------\n", + "[INFO] [1712690292.722414]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712690292.722649]: Super classes: [owl.Thing]\n", + "[INFO] [1712690292.724571]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", + "[INFO] [1712690292.724839]: Subclasses: []\n", + "[INFO] [1712690292.725137]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.725644]: Instances: []\n", + "[INFO] [1712690292.725908]: Direct Instances: []\n", + "[INFO] [1712690292.726159]: Inverse Restrictions: []\n", + "[INFO] [1712690292.726397]: -------------------\n", + "[INFO] [1712690292.726632]: SOMA.QueryEngine \n", + "[INFO] [1712690292.726874]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690292.727142]: Ancestors: {DUL.Entity, SOMA.QueryEngine, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.727389]: Subclasses: []\n", + "[INFO] [1712690292.727673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.728159]: Instances: []\n", + "[INFO] [1712690292.728432]: Direct Instances: []\n", + "[INFO] [1712690292.728689]: Inverse Restrictions: []\n", + "[INFO] [1712690292.728936]: -------------------\n", + "[INFO] [1712690292.729173]: SOMA.RaspberryJamJar \n", + "[INFO] [1712690292.729406]: Super classes: [SOMA.JamJar]\n", + "[INFO] [1712690292.729686]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.RaspberryJamJar, SOMA.JamJar, owl.Thing, DUL.Object, SOMA.Jar, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.729939]: Subclasses: []\n", + "[INFO] [1712690292.730223]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.730710]: Instances: []\n", + "[INFO] [1712690292.730977]: Direct Instances: []\n", + "[INFO] [1712690292.731240]: Inverse Restrictions: []\n", + "[INFO] [1712690292.731484]: -------------------\n", + "[INFO] [1712690292.731729]: SOMA.Reaching \n", + "[INFO] [1712690292.731960]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712690292.732230]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.Reaching}\n", + "[INFO] [1712690292.732492]: Subclasses: []\n", + "[INFO] [1712690292.732801]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.733286]: Instances: []\n", + "[INFO] [1712690292.733580]: Direct Instances: []\n", + "[INFO] [1712690292.733848]: Inverse Restrictions: []\n", + "[INFO] [1712690292.734089]: -------------------\n", + "[INFO] [1712690292.734329]: SOMA.Retracting \n", + "[INFO] [1712690292.734560]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712690292.734823]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.Retracting}\n", + "[INFO] [1712690292.735109]: Subclasses: []\n", + "[INFO] [1712690292.735409]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.735900]: Instances: []\n", + "[INFO] [1712690292.736159]: Direct Instances: []\n", + "[INFO] [1712690292.736406]: Inverse Restrictions: []\n", + "[INFO] [1712690292.736656]: -------------------\n", + "[INFO] [1712690292.736898]: SOMA.Reasoner \n", + "[INFO] [1712690292.737135]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690292.737378]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.737632]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712690292.737924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.738423]: Instances: []\n", + "[INFO] [1712690292.738674]: Direct Instances: []\n", + "[INFO] [1712690292.738918]: Inverse Restrictions: []\n", + "[INFO] [1712690292.739165]: -------------------\n", + "[INFO] [1712690292.739403]: SOMA.RecipientRole \n", + "[INFO] [1712690292.739633]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712690292.739892]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.BeneficiaryRole, SOMA.RecipientRole, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690292.740149]: Subclasses: []\n", + "[INFO] [1712690292.740443]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.740936]: Instances: []\n", + "[INFO] [1712690292.741211]: Direct Instances: []\n", + "[INFO] [1712690292.741476]: Inverse Restrictions: []\n", + "[INFO] [1712690292.741712]: -------------------\n", + "[INFO] [1712690292.741947]: SOMA.RecordedEpisode \n", + "[INFO] [1712690292.742191]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712690292.742428]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712690292.742685]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712690292.742978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", + "[INFO] [1712690292.743465]: Instances: []\n", + "[INFO] [1712690292.743720]: Direct Instances: []\n", + "[INFO] [1712690292.743973]: Inverse Restrictions: []\n", + "[INFO] [1712690292.744215]: -------------------\n", + "[INFO] [1712690292.744455]: SOMA.RedColor \n", + "[INFO] [1712690292.744698]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712690292.744990]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, SOMA.RedColor, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690292.745263]: Subclasses: []\n", + "[INFO] [1712690292.745559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.746054]: Instances: []\n", + "[INFO] [1712690292.746333]: Direct Instances: []\n", + "[INFO] [1712690292.746589]: Inverse Restrictions: []\n", + "[INFO] [1712690292.746834]: -------------------\n", + "[INFO] [1712690292.747074]: SOMA.Refrigerator \n", + "[INFO] [1712690292.747315]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", + "[INFO] [1712690292.747603]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Refrigerator, owl.Thing, DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.747867]: Subclasses: []\n", + "[INFO] [1712690292.748165]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712690292.748648]: Instances: []\n", + "[INFO] [1712690292.748932]: Direct Instances: []\n", + "[INFO] [1712690292.749197]: Inverse Restrictions: []\n", + "[INFO] [1712690292.749440]: -------------------\n", + "[INFO] [1712690292.749678]: SOMA.Reification \n", + "[INFO] [1712690292.749925]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712690292.750230]: Ancestors: {DUL.Entity, SOMA.Reification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690292.750490]: Subclasses: []\n", + "[INFO] [1712690292.750781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", + "[INFO] [1712690292.751311]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712690292.751613]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712690292.751881]: Inverse Restrictions: []\n", + "[INFO] [1712690292.752128]: -------------------\n", + "[INFO] [1712690292.752369]: SOMA.RelationalDatabase \n", + "[INFO] [1712690292.752606]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712690292.752878]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.Database, DUL.Object, SOMA.RelationalDatabase, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.753142]: Subclasses: []\n", + "[INFO] [1712690292.753448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.753936]: Instances: []\n", + "[INFO] [1712690292.754192]: Direct Instances: []\n", + "[INFO] [1712690292.754441]: Inverse Restrictions: []\n", + "[INFO] [1712690292.754699]: -------------------\n", + "[INFO] [1712690292.754969]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712690292.755224]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712690292.755496]: Ancestors: {SOMA.Computer_Language, SOMA.RelationalQueryLanguage, SOMA.System, DUL.Entity, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.755740]: Subclasses: []\n", + "[INFO] [1712690292.756040]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.756531]: Instances: []\n", + "[INFO] [1712690292.756793]: Direct Instances: []\n", + "[INFO] [1712690292.757037]: Inverse Restrictions: []\n", + "[INFO] [1712690292.757271]: -------------------\n", + "[INFO] [1712690292.757516]: SOMA.RelevantPart \n", + "[INFO] [1712690292.757757]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712690292.758016]: Ancestors: {DUL.Entity, SOMA.Feature, owl.Thing, DUL.Object, SOMA.RelevantPart}\n", + "[INFO] [1712690292.758261]: Subclasses: []\n", + "[INFO] [1712690292.758542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.759045]: Instances: []\n", + "[INFO] [1712690292.759314]: Direct Instances: []\n", + "[INFO] [1712690292.759574]: Inverse Restrictions: []\n", + "[INFO] [1712690292.759826]: -------------------\n", + "[INFO] [1712690292.760069]: SOMA.Remembering \n", + "[INFO] [1712690292.760312]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712690292.760567]: Ancestors: {owl.Thing, SOMA.Remembering}\n", + "[INFO] [1712690292.760813]: Subclasses: []\n", + "[INFO] [1712690292.761116]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.761607]: Instances: []\n", + "[INFO] [1712690292.761861]: Direct Instances: []\n", + "[INFO] [1712690292.762105]: Inverse Restrictions: []\n", + "[INFO] [1712690292.762344]: -------------------\n", + "[INFO] [1712690292.762589]: SOMA.Retrospecting \n", + "[INFO] [1712690292.762822]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712690292.763079]: Ancestors: {SOMA.Retrospecting, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.763338]: Subclasses: []\n", + "[INFO] [1712690292.763629]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.764116]: Instances: []\n", + "[INFO] [1712690292.764383]: Direct Instances: []\n", + "[INFO] [1712690292.764690]: Inverse Restrictions: []\n", + "[INFO] [1712690292.764939]: -------------------\n", + "[INFO] [1712690292.765188]: SOMA.RemovedObject \n", + "[INFO] [1712690292.765419]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712690292.765685]: Ancestors: {DUL.Entity, SOMA.ExcludedObject, DUL.Concept, DUL.SocialObject, SOMA.RemovedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.765949]: Subclasses: []\n", + "[INFO] [1712690292.766244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.766767]: Instances: []\n", + "[INFO] [1712690292.767060]: Direct Instances: []\n", + "[INFO] [1712690292.767326]: Inverse Restrictions: []\n", + "[INFO] [1712690292.767579]: -------------------\n", + "[INFO] [1712690292.767821]: SOMA.Replanning \n", + "[INFO] [1712690292.768069]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712690292.768352]: Ancestors: {SOMA.Deciding, SOMA.Planning, SOMA.Replanning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.768608]: Subclasses: []\n", + "[INFO] [1712690292.768904]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.769402]: Instances: []\n", + "[INFO] [1712690292.769657]: Direct Instances: []\n", + "[INFO] [1712690292.769918]: Inverse Restrictions: []\n", + "[INFO] [1712690292.770168]: -------------------\n", + "[INFO] [1712690292.770410]: SOMA.RevoluteJoint \n", + "[INFO] [1712690292.770654]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712690292.770928]: Ancestors: {DUL.Entity, SOMA.RevoluteJoint, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690292.771180]: Subclasses: []\n", + "[INFO] [1712690292.771480]: Properties: [SOMA.hasJointLimit, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.771966]: Instances: []\n", + "[INFO] [1712690292.772243]: Direct Instances: []\n", + "[INFO] [1712690292.772501]: Inverse Restrictions: []\n", + "[INFO] [1712690292.772743]: -------------------\n", + "[INFO] [1712690292.772985]: SOMA.Surface \n", + "[INFO] [1712690292.773221]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712690292.773462]: Ancestors: {DUL.Entity, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690292.773722]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712690292.774016]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.774520]: Instances: []\n", + "[INFO] [1712690292.774792]: Direct Instances: []\n", + "[INFO] [1712690292.775052]: Inverse Restrictions: []\n", + "[INFO] [1712690292.775294]: -------------------\n", + "[INFO] [1712690292.775533]: SOMA.Rubbing \n", + "[INFO] [1712690292.775763]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712690292.776027]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing, SOMA.Rubbing}\n", + "[INFO] [1712690292.776292]: Subclasses: []\n", + "[INFO] [1712690292.776583]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.777076]: Instances: []\n", + "[INFO] [1712690292.777350]: Direct Instances: []\n", + "[INFO] [1712690292.777607]: Inverse Restrictions: []\n", + "[INFO] [1712690292.777850]: -------------------\n", + "[INFO] [1712690292.778087]: SOMA.SaladBowl \n", + "[INFO] [1712690292.778324]: Super classes: [SOMA.Bowl]\n", + "[INFO] [1712690292.778606]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Bowl, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, SOMA.SaladBowl, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.778860]: Subclasses: []\n", + "[INFO] [1712690292.779145]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.779632]: Instances: []\n", + "[INFO] [1712690292.779905]: Direct Instances: []\n", + "[INFO] [1712690292.780174]: Inverse Restrictions: []\n", + "[INFO] [1712690292.780421]: -------------------\n", + "[INFO] [1712690292.780662]: SOMA.SaltShaker \n", + "[INFO] [1712690292.780912]: Super classes: [SOMA.Shaker]\n", + "[INFO] [1712690292.781187]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Shaker, SOMA.SaltShaker, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.781441]: Subclasses: []\n", + "[INFO] [1712690292.781730]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.782217]: Instances: []\n", + "[INFO] [1712690292.782487]: Direct Instances: []\n", + "[INFO] [1712690292.782755]: Inverse Restrictions: []\n", + "[INFO] [1712690292.783000]: -------------------\n", + "[INFO] [1712690292.783237]: SOMA.Scene \n", + "[INFO] [1712690292.783535]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712690292.783829]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.Scene}\n", + "[INFO] [1712690292.784090]: Subclasses: []\n", + "[INFO] [1712690292.784390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies, DUL.includesEvent]\n", + "[INFO] [1712690292.784882]: Instances: []\n", + "[INFO] [1712690292.785180]: Direct Instances: []\n", + "[INFO] [1712690292.785485]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712690292.785738]: -------------------\n", + "[INFO] [1712690292.785991]: SOMA.SelectedObject \n", + "[INFO] [1712690292.786237]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712690292.786504]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.SelectedObject, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", + "[INFO] [1712690292.786768]: Subclasses: []\n", + "[INFO] [1712690292.787069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.787566]: Instances: []\n", + "[INFO] [1712690292.787839]: Direct Instances: []\n", + "[INFO] [1712690292.788146]: Inverse Restrictions: []\n", + "[INFO] [1712690292.788394]: -------------------\n", + "[INFO] [1712690292.788634]: SOMA.Selecting \n", + "[INFO] [1712690292.788872]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712690292.789142]: Ancestors: {SOMA.Deciding, SOMA.Selecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.789403]: Subclasses: []\n", + "[INFO] [1712690292.789698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.790186]: Instances: []\n", + "[INFO] [1712690292.790439]: Direct Instances: []\n", + "[INFO] [1712690292.790681]: Inverse Restrictions: []\n", + "[INFO] [1712690292.790930]: -------------------\n", + "[INFO] [1712690292.791175]: SOMA.SelectingItem \n", + "[INFO] [1712690292.791830]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712690292.792118]: Ancestors: {SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.792385]: Subclasses: []\n", + "[INFO] [1712690292.792689]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.793188]: Instances: []\n", + "[INFO] [1712690292.793444]: Direct Instances: []\n", + "[INFO] [1712690292.793693]: Inverse Restrictions: []\n", + "[INFO] [1712690292.793944]: -------------------\n", + "[INFO] [1712690292.794189]: SOMA.SelfReflection \n", + "[INFO] [1712690292.794430]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712690292.794692]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.MetacognitiveControlling, DUL.Object, owl.Thing, SOMA.SelfReflection}\n", + "[INFO] [1712690292.794941]: Subclasses: []\n", + "[INFO] [1712690292.795242]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690292.795729]: Instances: []\n", + "[INFO] [1712690292.795986]: Direct Instances: []\n", + "[INFO] [1712690292.796234]: Inverse Restrictions: []\n", + "[INFO] [1712690292.796725]: -------------------\n", + "[INFO] [1712690292.797079]: SOMA.Serving \n", + "[INFO] [1712690292.798468]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712690292.798805]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Delivering, DUL.EventType, DUL.Object, SOMA.PhysicalTask, SOMA.Serving, owl.Thing}\n", + "[INFO] [1712690292.799081]: Subclasses: []\n", + "[INFO] [1712690292.799395]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.799896]: Instances: []\n", + "[INFO] [1712690292.800195]: Direct Instances: []\n", + "[INFO] [1712690292.800452]: Inverse Restrictions: []\n", + "[INFO] [1712690292.800704]: -------------------\n", + "[INFO] [1712690292.800960]: SOMA.SettingGripper \n", + "[INFO] [1712690292.801200]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712690292.801467]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.SettingGripper, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690292.801708]: Subclasses: []\n", + "[INFO] [1712690292.802008]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.802493]: Instances: []\n", + "[INFO] [1712690292.802749]: Direct Instances: []\n", + "[INFO] [1712690292.803014]: Inverse Restrictions: []\n", + "[INFO] [1712690292.803262]: -------------------\n", + "[INFO] [1712690292.803506]: SOMA.6DPose \n", + "[INFO] [1712690292.803776]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712690292.804055]: Ancestors: {DUL.Entity, SOMA.6DPose, DUL.SpaceRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690292.804310]: Subclasses: []\n", + "[INFO] [1712690292.804613]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", + "[INFO] [1712690292.805140]: Instances: []\n", + "[INFO] [1712690292.805449]: Direct Instances: []\n", + "[INFO] [1712690292.805775]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712690292.806050]: -------------------\n", + "[INFO] [1712690292.806306]: SOMA.Sharpness \n", + "[INFO] [1712690292.806551]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690292.806822]: Ancestors: {DUL.Entity, SOMA.Sharpness, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690292.807074]: Subclasses: []\n", + "[INFO] [1712690292.807363]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.807867]: Instances: []\n", + "[INFO] [1712690292.808150]: Direct Instances: []\n", + "[INFO] [1712690292.808416]: Inverse Restrictions: []\n", + "[INFO] [1712690292.808661]: -------------------\n", + "[INFO] [1712690292.808900]: SOMA.Simulating \n", + "[INFO] [1712690292.809161]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712690292.809432]: Ancestors: {SOMA.Simulating, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690292.809682]: Subclasses: []\n", + "[INFO] [1712690292.809968]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.810463]: Instances: []\n", + "[INFO] [1712690292.810724]: Direct Instances: []\n", + "[INFO] [1712690292.810974]: Inverse Restrictions: []\n", + "[INFO] [1712690292.811209]: -------------------\n", + "[INFO] [1712690292.811445]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712690292.811690]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712690292.811962]: Ancestors: {SOMA.Reasoner, DUL.Entity, SOMA.Simulation_Reasoner, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.812210]: Subclasses: []\n", + "[INFO] [1712690292.812501]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.813015]: Instances: []\n", + "[INFO] [1712690292.813298]: Direct Instances: []\n", + "[INFO] [1712690292.813563]: Inverse Restrictions: []\n", + "[INFO] [1712690292.813809]: -------------------\n", + "[INFO] [1712690292.814057]: SOMA.Sink \n", + "[INFO] [1712690292.814306]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690292.814576]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.Sink, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690292.814829]: Subclasses: []\n", + "[INFO] [1712690292.815115]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.815612]: Instances: []\n", + "[INFO] [1712690292.815877]: Direct Instances: []\n", + "[INFO] [1712690292.816128]: Inverse Restrictions: []\n", + "[INFO] [1712690292.816366]: -------------------\n", + "[INFO] [1712690292.816598]: SOMA.Size \n", + "[INFO] [1712690292.816860]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690292.817134]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Size, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690292.817387]: Subclasses: []\n", + "[INFO] [1712690292.817674]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.818202]: Instances: []\n", + "[INFO] [1712690292.818480]: Direct Instances: []\n", + "[INFO] [1712690292.818747]: Inverse Restrictions: []\n", + "[INFO] [1712690292.818986]: -------------------\n", + "[INFO] [1712690292.819223]: SOMA.Slicing \n", + "[INFO] [1712690292.819482]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712690292.819755]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting, SOMA.Slicing}\n", + "[INFO] [1712690292.820014]: Subclasses: []\n", + "[INFO] [1712690292.820302]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.820790]: Instances: []\n", + "[INFO] [1712690292.821072]: Direct Instances: []\n", + "[INFO] [1712690292.821329]: Inverse Restrictions: []\n", + "[INFO] [1712690292.821573]: -------------------\n", + "[INFO] [1712690292.821815]: SOMA.Sluggishness \n", + "[INFO] [1712690292.822051]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712690292.822315]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Sluggishness}\n", + "[INFO] [1712690292.822577]: Subclasses: []\n", + "[INFO] [1712690292.822874]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.823361]: Instances: []\n", + "[INFO] [1712690292.823614]: Direct Instances: []\n", + "[INFO] [1712690292.823855]: Inverse Restrictions: []\n", + "[INFO] [1712690292.824099]: -------------------\n", + "[INFO] [1712690292.824342]: SOMA.SocialState \n", + "[INFO] [1712690292.824597]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712690292.824863]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing, SOMA.SocialState}\n", + "[INFO] [1712690292.825120]: Subclasses: []\n", + "[INFO] [1712690292.825419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690292.825915]: Instances: []\n", + "[INFO] [1712690292.826190]: Direct Instances: []\n", + "[INFO] [1712690292.826446]: Inverse Restrictions: []\n", + "[INFO] [1712690292.826682]: -------------------\n", + "[INFO] [1712690292.826917]: SOMA.Sofa \n", + "[INFO] [1712690292.827151]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", + "[INFO] [1712690292.827414]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Sofa, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.827678]: Subclasses: []\n", + "[INFO] [1712690292.827976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690292.828465]: Instances: []\n", + "[INFO] [1712690292.828727]: Direct Instances: []\n", + "[INFO] [1712690292.828980]: Inverse Restrictions: []\n", + "[INFO] [1712690292.829231]: -------------------\n", + "[INFO] [1712690292.829477]: SOMA.Software_Configuration \n", + "[INFO] [1712690292.829723]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712690292.830018]: Ancestors: {DUL.Configuration, DUL.Entity, DUL.Collection, DUL.SocialObject, SOMA.Software_Configuration, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.830296]: Subclasses: []\n", + "[INFO] [1712690292.830614]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.isDescribedBy]\n", + "[INFO] [1712690292.831112]: Instances: []\n", + "[INFO] [1712690292.831393]: Direct Instances: []\n", + "[INFO] [1712690292.831748]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712690292.832002]: -------------------\n", + "[INFO] [1712690292.832246]: SOMA.SoftwareLibrary \n", + "[INFO] [1712690292.832484]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712690292.832760]: Ancestors: {SOMA.SoftwareLibrary, DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Software, DUL.Description, DUL.Design}\n", + "[INFO] [1712690292.833026]: Subclasses: []\n", + "[INFO] [1712690292.833324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690292.833837]: Instances: []\n", + "[INFO] [1712690292.834110]: Direct Instances: []\n", + "[INFO] [1712690292.834366]: Inverse Restrictions: []\n", + "[INFO] [1712690292.834608]: -------------------\n", + "[INFO] [1712690292.834843]: SOMA.SoupPot \n", + "[INFO] [1712690292.835076]: Super classes: [SOMA.Pot]\n", + "[INFO] [1712690292.835346]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pot, SOMA.SoupPot, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.Tableware, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.835616]: Subclasses: []\n", + "[INFO] [1712690292.835914]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.836417]: Instances: []\n", + "[INFO] [1712690292.836690]: Direct Instances: []\n", + "[INFO] [1712690292.836966]: Inverse Restrictions: []\n", + "[INFO] [1712690292.837214]: -------------------\n", + "[INFO] [1712690292.837455]: SOMA.SourceMaterialRole \n", + "[INFO] [1712690292.837694]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712690292.837965]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, SOMA.SourceMaterialRole, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.838223]: Subclasses: []\n", + "[INFO] [1712690292.838516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.839006]: Instances: []\n", + "[INFO] [1712690292.839278]: Direct Instances: []\n", + "[INFO] [1712690292.839538]: Inverse Restrictions: []\n", + "[INFO] [1712690292.839783]: -------------------\n", + "[INFO] [1712690292.840020]: SOMA.Spatula \n", + "[INFO] [1712690292.840258]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", + "[INFO] [1712690292.840528]: Ancestors: {DUL.PhysicalArtifact, SOMA.Spatula, DUL.Entity, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.840798]: Subclasses: []\n", + "[INFO] [1712690292.841094]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent]\n", + "[INFO] [1712690292.841594]: Instances: []\n", + "[INFO] [1712690292.841854]: Direct Instances: []\n", + "[INFO] [1712690292.842104]: Inverse Restrictions: []\n", + "[INFO] [1712690292.842351]: -------------------\n", + "[INFO] [1712690292.842595]: SOMA.SphereShape \n", + "[INFO] [1712690292.842856]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712690292.843122]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion, SOMA.SphereShape}\n", + "[INFO] [1712690292.843363]: Subclasses: []\n", + "[INFO] [1712690292.843654]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", + "[INFO] [1712690292.844157]: Instances: []\n", + "[INFO] [1712690292.844422]: Direct Instances: []\n", + "[INFO] [1712690292.844676]: Inverse Restrictions: []\n", + "[INFO] [1712690292.844920]: -------------------\n", + "[INFO] [1712690292.845164]: SOMA.Spoon \n", + "[INFO] [1712690292.845853]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", + "[INFO] [1712690292.846142]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Spoon, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.846426]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", + "[INFO] [1712690292.846728]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690292.847230]: Instances: []\n", + "[INFO] [1712690292.847518]: Direct Instances: []\n", + "[INFO] [1712690292.847785]: Inverse Restrictions: []\n", + "[INFO] [1712690292.848031]: -------------------\n", + "[INFO] [1712690292.848271]: SOMA.Standing \n", + "[INFO] [1712690292.848506]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712690292.848778]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.Standing, SOMA.PosturalMoving}\n", + "[INFO] [1712690292.849049]: Subclasses: []\n", + "[INFO] [1712690292.849348]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.849845]: Instances: []\n", + "[INFO] [1712690292.850142]: Direct Instances: []\n", + "[INFO] [1712690292.850391]: Inverse Restrictions: []\n", + "[INFO] [1712690292.850631]: -------------------\n", + "[INFO] [1712690292.850881]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712690292.851121]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712690292.851386]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.StaticFrictionAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", + "[INFO] [1712690292.851667]: Subclasses: []\n", + "[INFO] [1712690292.851978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.852471]: Instances: []\n", + "[INFO] [1712690292.852726]: Direct Instances: []\n", + "[INFO] [1712690292.852982]: Inverse Restrictions: []\n", + "[INFO] [1712690292.853222]: -------------------\n", + "[INFO] [1712690292.853472]: SOMA.Status \n", + "[INFO] [1712690292.853713]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712690292.853975]: Ancestors: {DUL.Entity, SOMA.Status, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Parameter}\n", + "[INFO] [1712690292.854218]: Subclasses: []\n", + "[INFO] [1712690292.854498]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.855001]: Instances: []\n", + "[INFO] [1712690292.855266]: Direct Instances: []\n", + "[INFO] [1712690292.855544]: Inverse Restrictions: []\n", + "[INFO] [1712690292.855787]: -------------------\n", + "[INFO] [1712690292.856026]: SOMA.StatusFailure \n", + "[INFO] [1712690292.856269]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690292.856537]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.StatusFailure}\n", + "[INFO] [1712690292.856786]: Subclasses: []\n", + "[INFO] [1712690292.857075]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.857655]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712690292.857954]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712690292.858233]: Inverse Restrictions: []\n", + "[INFO] [1712690292.858484]: -------------------\n", + "[INFO] [1712690292.858730]: SOMA.StimulusRole \n", + "[INFO] [1712690292.858974]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712690292.859247]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.StimulusRole, DUL.Role}\n", + "[INFO] [1712690292.859510]: Subclasses: []\n", + "[INFO] [1712690292.859807]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.860293]: Instances: []\n", + "[INFO] [1712690292.860552]: Direct Instances: []\n", + "[INFO] [1712690292.860816]: Inverse Restrictions: []\n", + "[INFO] [1712690292.861069]: -------------------\n", + "[INFO] [1712690292.861311]: SOMA.Stirring \n", + "[INFO] [1712690292.861547]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712690292.861813]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.Stirring, SOMA.PhysicalTask, SOMA.Mixing, owl.Thing}\n", + "[INFO] [1712690292.862064]: Subclasses: []\n", + "[INFO] [1712690292.862357]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690292.862846]: Instances: []\n", + "[INFO] [1712690292.863097]: Direct Instances: []\n", + "[INFO] [1712690292.863335]: Inverse Restrictions: []\n", + "[INFO] [1712690292.863575]: -------------------\n", + "[INFO] [1712690292.863814]: SOMA.Storage \n", + "[INFO] [1712690292.864058]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712690292.864323]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, SOMA.Storage, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690292.864564]: Subclasses: []\n", + "[INFO] [1712690292.864861]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.865387]: Instances: []\n", + "[INFO] [1712690292.865664]: Direct Instances: []\n", + "[INFO] [1712690292.865924]: Inverse Restrictions: []\n", + "[INFO] [1712690292.866166]: -------------------\n", + "[INFO] [1712690292.866398]: SOMA.Stove \n", + "[INFO] [1712690292.866635]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", + "[INFO] [1712690292.866946]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Stove, owl.Thing, DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.867203]: Subclasses: []\n", + "[INFO] [1712690292.867501]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712690292.867990]: Instances: []\n", + "[INFO] [1712690292.868278]: Direct Instances: []\n", + "[INFO] [1712690292.868541]: Inverse Restrictions: []\n", + "[INFO] [1712690292.868785]: -------------------\n", + "[INFO] [1712690292.869029]: SOMA.StructuralDesign \n", + "[INFO] [1712690292.869265]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712690292.869528]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.StructuralDesign, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690292.869787]: Subclasses: []\n", + "[INFO] [1712690292.870081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.870569]: Instances: []\n", + "[INFO] [1712690292.870829]: Direct Instances: []\n", + "[INFO] [1712690292.871084]: Inverse Restrictions: []\n", + "[INFO] [1712690292.871324]: -------------------\n", + "[INFO] [1712690292.871557]: SOMA.TaskInvocation \n", + "[INFO] [1712690292.871814]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712690292.872104]: Ancestors: {DUL.Entity, DUL.Workflow, DUL.SocialObject, SOMA.TaskInvocation, DUL.Plan, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690292.872358]: Subclasses: []\n", + "[INFO] [1712690292.872653]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesTask, rdf-schema.label]\n", + "[INFO] [1712690292.873140]: Instances: []\n", + "[INFO] [1712690292.873412]: Direct Instances: []\n", + "[INFO] [1712690292.873729]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712690292.873978]: -------------------\n", + "[INFO] [1712690292.874214]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712690292.874463]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712690292.874710]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690292.875071]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712690292.875728]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.876279]: Instances: []\n", + "[INFO] [1712690292.876554]: Direct Instances: []\n", + "[INFO] [1712690292.876818]: Inverse Restrictions: []\n", + "[INFO] [1712690292.877068]: -------------------\n", + "[INFO] [1712690292.877309]: SOMA.Successfulness \n", + "[INFO] [1712690292.877552]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712690292.877825]: Ancestors: {DUL.Entity, SOMA.Successfulness, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690292.878076]: Subclasses: []\n", + "[INFO] [1712690292.878376]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.878868]: Instances: []\n", + "[INFO] [1712690292.879151]: Direct Instances: []\n", + "[INFO] [1712690292.879421]: Inverse Restrictions: []\n", + "[INFO] [1712690292.879670]: -------------------\n", + "[INFO] [1712690292.879920]: SOMA.SugarDispenser \n", + "[INFO] [1712690292.880165]: Super classes: [SOMA.Dispenser]\n", + "[INFO] [1712690292.880438]: Ancestors: {SOMA.Dispenser, SOMA.SugarDispenser, DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.880710]: Subclasses: []\n", + "[INFO] [1712690292.881017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.881577]: Instances: []\n", + "[INFO] [1712690292.881850]: Direct Instances: []\n", + "[INFO] [1712690292.882107]: Inverse Restrictions: []\n", + "[INFO] [1712690292.882366]: -------------------\n", + "[INFO] [1712690292.882617]: SOMA.SupportState \n", + "[INFO] [1712690292.883667]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712690292.884000]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing, SOMA.SupportState}\n", + "[INFO] [1712690292.884274]: Subclasses: []\n", + "[INFO] [1712690292.884581]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690292.885077]: Instances: []\n", + "[INFO] [1712690292.885344]: Direct Instances: []\n", + "[INFO] [1712690292.885601]: Inverse Restrictions: []\n", + "[INFO] [1712690292.885861]: -------------------\n", + "[INFO] [1712690292.886119]: SOMA.Supporter \n", + "[INFO] [1712690292.886389]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712690292.886678]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, SOMA.Supporter, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.886939]: Subclasses: []\n", + "[INFO] [1712690292.887247]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.887754]: Instances: []\n", + "[INFO] [1712690292.888023]: Direct Instances: []\n", + "[INFO] [1712690292.888330]: Inverse Restrictions: []\n", + "[INFO] [1712690292.888571]: -------------------\n", + "[INFO] [1712690292.888982]: SOMA.SupportTheory \n", + "[INFO] [1712690292.889362]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712690292.889762]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.SupportTheory, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690292.890139]: Subclasses: []\n", + "[INFO] [1712690292.890556]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.891186]: Instances: []\n", + "[INFO] [1712690292.891578]: Direct Instances: []\n", + "[INFO] [1712690292.891954]: Inverse Restrictions: []\n", + "[INFO] [1712690292.892226]: -------------------\n", + "[INFO] [1712690292.892479]: SOMA.SupportedObject \n", + "[INFO] [1712690292.892720]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712690292.893007]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, SOMA.SupportedObject, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690292.893265]: Subclasses: []\n", + "[INFO] [1712690292.893557]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.894044]: Instances: []\n", + "[INFO] [1712690292.894296]: Direct Instances: []\n", + "[INFO] [1712690292.894547]: Inverse Restrictions: []\n", + "[INFO] [1712690292.894789]: -------------------\n", + "[INFO] [1712690292.895027]: SOMA.SymbolicReasoner \n", + "[INFO] [1712690292.895265]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712690292.895525]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.SymbolicReasoner, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.895770]: Subclasses: []\n", + "[INFO] [1712690292.896070]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.896553]: Instances: []\n", + "[INFO] [1712690292.896834]: Direct Instances: []\n", + "[INFO] [1712690292.897085]: Inverse Restrictions: []\n", + "[INFO] [1712690292.897325]: -------------------\n", + "[INFO] [1712690292.897570]: SOMA.TableFork \n", + "[INFO] [1712690292.897805]: Super classes: [SOMA.Fork]\n", + "[INFO] [1712690292.898069]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.TableFork, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Fork, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.898309]: Subclasses: []\n", + "[INFO] [1712690292.898602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.899096]: Instances: []\n", + "[INFO] [1712690292.899352]: Direct Instances: []\n", + "[INFO] [1712690292.899596]: Inverse Restrictions: []\n", + "[INFO] [1712690292.899834]: -------------------\n", + "[INFO] [1712690292.900123]: SOMA.TableKnife \n", + "[INFO] [1712690292.900368]: Super classes: [SOMA.KitchenKnife]\n", + "[INFO] [1712690292.900639]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Knife, SOMA.TableKnife, SOMA.CuttingTool, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.KitchenKnife}\n", + "[INFO] [1712690292.900886]: Subclasses: []\n", + "[INFO] [1712690292.901170]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.901672]: Instances: []\n", + "[INFO] [1712690292.901938]: Direct Instances: []\n", + "[INFO] [1712690292.902185]: Inverse Restrictions: []\n", + "[INFO] [1712690292.902422]: -------------------\n", + "[INFO] [1712690292.902651]: SOMA.TableSpoon \n", + "[INFO] [1712690292.902919]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712690292.903205]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Spoon, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.TableSpoon}\n", + "[INFO] [1712690292.903460]: Subclasses: []\n", + "[INFO] [1712690292.903761]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.904242]: Instances: []\n", + "[INFO] [1712690292.904521]: Direct Instances: []\n", + "[INFO] [1712690292.904783]: Inverse Restrictions: []\n", + "[INFO] [1712690292.905027]: -------------------\n", + "[INFO] [1712690292.905264]: SOMA.TeaSpoon \n", + "[INFO] [1712690292.905499]: Super classes: [SOMA.Spoon]\n", + "[INFO] [1712690292.905769]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Spoon, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, SOMA.TeaSpoon, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690292.906022]: Subclasses: []\n", + "[INFO] [1712690292.906317]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.906809]: Instances: []\n", + "[INFO] [1712690292.907065]: Direct Instances: []\n", + "[INFO] [1712690292.907328]: Inverse Restrictions: []\n", + "[INFO] [1712690292.907577]: -------------------\n", + "[INFO] [1712690292.907814]: SOMA.Tap \n", + "[INFO] [1712690292.908048]: Super classes: [SOMA.DesignedComponent]\n", + "[INFO] [1712690292.908310]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, SOMA.Tap, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690292.908571]: Subclasses: []\n", + "[INFO] [1712690292.908872]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.909364]: Instances: []\n", + "[INFO] [1712690292.909615]: Direct Instances: []\n", + "[INFO] [1712690292.909862]: Inverse Restrictions: []\n", + "[INFO] [1712690292.910097]: -------------------\n", + "[INFO] [1712690292.910348]: SOMA.Tapping \n", + "[INFO] [1712690292.910587]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712690292.910852]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Tapping, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690292.911094]: Subclasses: []\n", + "[INFO] [1712690292.911379]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.911882]: Instances: []\n", + "[INFO] [1712690292.912146]: Direct Instances: []\n", + "[INFO] [1712690292.912401]: Inverse Restrictions: []\n", + "[INFO] [1712690292.912640]: -------------------\n", + "[INFO] [1712690292.912880]: SOMA.Taxis \n", + "[INFO] [1712690292.913122]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712690292.913398]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Taxis, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690292.913650]: Subclasses: []\n", + "[INFO] [1712690292.913956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.914476]: Instances: []\n", + "[INFO] [1712690292.914752]: Direct Instances: []\n", + "[INFO] [1712690292.915010]: Inverse Restrictions: []\n", + "[INFO] [1712690292.915256]: -------------------\n", + "[INFO] [1712690292.915495]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712690292.915750]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712690292.916020]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.916276]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712690292.916564]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712690292.917086]: Instances: []\n", + "[INFO] [1712690292.917361]: Direct Instances: []\n", + "[INFO] [1712690292.917627]: Inverse Restrictions: []\n", + "[INFO] [1712690292.917875]: -------------------\n", + "[INFO] [1712690292.918142]: SOMA.Temperature \n", + "[INFO] [1712690292.918413]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712690292.918683]: Ancestors: {DUL.Entity, SOMA.Temperature, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690292.918947]: Subclasses: []\n", + "[INFO] [1712690292.919246]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712690292.919734]: Instances: []\n", + "[INFO] [1712690292.919988]: Direct Instances: []\n", + "[INFO] [1712690292.920647]: Inverse Restrictions: []\n", + "[INFO] [1712690292.920923]: -------------------\n", + "[INFO] [1712690292.921183]: SOMA.TemperatureRegion \n", + "[INFO] [1712690292.921431]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690292.921698]: Ancestors: {SOMA.TemperatureRegion, DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690292.921942]: Subclasses: []\n", + "[INFO] [1712690292.922230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.922736]: Instances: []\n", + "[INFO] [1712690292.923004]: Direct Instances: []\n", + "[INFO] [1712690292.923319]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712690292.923567]: -------------------\n", + "[INFO] [1712690292.923809]: SOMA.Tempering \n", + "[INFO] [1712690292.924080]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712690292.924344]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Tempering}\n", + "[INFO] [1712690292.924598]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712690292.924892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.925390]: Instances: []\n", + "[INFO] [1712690292.925661]: Direct Instances: []\n", + "[INFO] [1712690292.925920]: Inverse Restrictions: []\n", + "[INFO] [1712690292.926164]: -------------------\n", + "[INFO] [1712690292.926401]: SOMA.TemperingByCooling \n", + "[INFO] [1712690292.926639]: Super classes: [SOMA.Tempering]\n", + "[INFO] [1712690292.926901]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Tempering, SOMA.TemperingByCooling}\n", + "[INFO] [1712690292.927164]: Subclasses: []\n", + "[INFO] [1712690292.927457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.927947]: Instances: []\n", + "[INFO] [1712690292.928204]: Direct Instances: []\n", + "[INFO] [1712690292.928469]: Inverse Restrictions: []\n", + "[INFO] [1712690292.928715]: -------------------\n", + "[INFO] [1712690292.928958]: SOMA.ThinkAloud \n", + "[INFO] [1712690292.929190]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712690292.929452]: Ancestors: {DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.ThinkAloud}\n", + "[INFO] [1712690292.929711]: Subclasses: []\n", + "[INFO] [1712690292.930006]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.930499]: Instances: []\n", + "[INFO] [1712690292.930755]: Direct Instances: []\n", + "[INFO] [1712690292.931012]: Inverse Restrictions: []\n", + "[INFO] [1712690292.931262]: -------------------\n", + "[INFO] [1712690292.931504]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712690292.931738]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690292.932003]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudActionTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.932262]: Subclasses: []\n", + "[INFO] [1712690292.932552]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.933034]: Instances: []\n", + "[INFO] [1712690292.933327]: Direct Instances: []\n", + "[INFO] [1712690292.933613]: Inverse Restrictions: []\n", + "[INFO] [1712690292.933860]: -------------------\n", + "[INFO] [1712690292.934095]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712690292.934340]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712690292.934623]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudGeneralKnowledgeTopic, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.934871]: Subclasses: []\n", + "[INFO] [1712690292.935160]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.935652]: Instances: []\n", + "[INFO] [1712690292.935943]: Direct Instances: []\n", + "[INFO] [1712690292.936199]: Inverse Restrictions: []\n", + "[INFO] [1712690292.936438]: -------------------\n", + "[INFO] [1712690292.936673]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712690292.936922]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690292.937181]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.937433]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712690292.937720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.938212]: Instances: []\n", + "[INFO] [1712690292.938483]: Direct Instances: []\n", + "[INFO] [1712690292.938740]: Inverse Restrictions: []\n", + "[INFO] [1712690292.938978]: -------------------\n", + "[INFO] [1712690292.939211]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712690292.939442]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690292.939713]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.939973]: Subclasses: []\n", + "[INFO] [1712690292.940267]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.940756]: Instances: []\n", + "[INFO] [1712690292.941018]: Direct Instances: []\n", + "[INFO] [1712690292.941275]: Inverse Restrictions: []\n", + "[INFO] [1712690292.941517]: -------------------\n", + "[INFO] [1712690292.941754]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712690292.941984]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690292.942256]: Ancestors: {SOMA.ThinkAloudOpinionTopic, DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.942508]: Subclasses: []\n", + "[INFO] [1712690292.942795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.943273]: Instances: []\n", + "[INFO] [1712690292.943544]: Direct Instances: []\n", + "[INFO] [1712690292.943799]: Inverse Restrictions: []\n", + "[INFO] [1712690292.944038]: -------------------\n", + "[INFO] [1712690292.944273]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712690292.944503]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690292.944777]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.945030]: Subclasses: []\n", + "[INFO] [1712690292.945322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.945806]: Instances: []\n", + "[INFO] [1712690292.946083]: Direct Instances: []\n", + "[INFO] [1712690292.946337]: Inverse Restrictions: []\n", + "[INFO] [1712690292.946584]: -------------------\n", + "[INFO] [1712690292.946820]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712690292.947049]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690292.947325]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudPlanTopic, DUL.Object, owl.Thing, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.947575]: Subclasses: []\n", + "[INFO] [1712690292.947864]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.948349]: Instances: []\n", + "[INFO] [1712690292.948609]: Direct Instances: []\n", + "[INFO] [1712690292.948867]: Inverse Restrictions: []\n", + "[INFO] [1712690292.949108]: -------------------\n", + "[INFO] [1712690292.949342]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712690292.949567]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712690292.949827]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690292.950130]: Subclasses: []\n", + "[INFO] [1712690292.950428]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.950909]: Instances: []\n", + "[INFO] [1712690292.951164]: Direct Instances: []\n", + "[INFO] [1712690292.951429]: Inverse Restrictions: []\n", + "[INFO] [1712690292.951685]: -------------------\n", + "[INFO] [1712690292.951925]: SOMA.Threshold \n", + "[INFO] [1712690292.952158]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712690292.952418]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Threshold, DUL.Concept, owl.Thing, DUL.Object, DUL.Parameter}\n", + "[INFO] [1712690292.952674]: Subclasses: []\n", + "[INFO] [1712690292.952967]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.953461]: Instances: []\n", + "[INFO] [1712690292.953715]: Direct Instances: []\n", + "[INFO] [1712690292.953969]: Inverse Restrictions: []\n", + "[INFO] [1712690292.954209]: -------------------\n", + "[INFO] [1712690292.954441]: SOMA.Throwing \n", + "[INFO] [1712690292.954677]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712690292.954940]: Ancestors: {DUL.Entity, SOMA.Throwing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690292.955200]: Subclasses: []\n", + "[INFO] [1712690292.955493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.955974]: Instances: []\n", + "[INFO] [1712690292.956227]: Direct Instances: []\n", + "[INFO] [1712690292.956465]: Inverse Restrictions: []\n", + "[INFO] [1712690292.956705]: -------------------\n", + "[INFO] [1712690292.956951]: SOMA.TimeRole \n", + "[INFO] [1712690292.957189]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712690292.957453]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.TimeRole, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690292.957695]: Subclasses: []\n", + "[INFO] [1712690292.957979]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.958471]: Instances: []\n", + "[INFO] [1712690292.958730]: Direct Instances: []\n", + "[INFO] [1712690292.958980]: Inverse Restrictions: []\n", + "[INFO] [1712690292.959212]: -------------------\n", + "[INFO] [1712690292.959450]: SOMA.Transporting \n", + "[INFO] [1712690292.959699]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712690292.959970]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", + "[INFO] [1712690292.960219]: Subclasses: []\n", + "[INFO] [1712690292.960504]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.960991]: Instances: []\n", + "[INFO] [1712690292.961271]: Direct Instances: []\n", + "[INFO] [1712690292.961526]: Inverse Restrictions: []\n", + "[INFO] [1712690292.961768]: -------------------\n", + "[INFO] [1712690292.962001]: SOMA.TrashContainer \n", + "[INFO] [1712690292.962232]: Super classes: [SOMA.DesignedContainer]\n", + "[INFO] [1712690292.962499]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.TrashContainer, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.962754]: Subclasses: []\n", + "[INFO] [1712690292.963063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.963577]: Instances: []\n", + "[INFO] [1712690292.963867]: Direct Instances: []\n", + "[INFO] [1712690292.964124]: Inverse Restrictions: []\n", + "[INFO] [1712690292.964365]: -------------------\n", + "[INFO] [1712690292.964605]: SOMA.Triplestore \n", + "[INFO] [1712690292.964872]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712690292.965167]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Triplestore, owl.Thing, SOMA.Database, DUL.Object, SOMA.GraphDatabase, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690292.965421]: Subclasses: []\n", + "[INFO] [1712690292.965729]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.966227]: Instances: []\n", + "[INFO] [1712690292.966492]: Direct Instances: []\n", + "[INFO] [1712690292.966790]: Inverse Restrictions: []\n", + "[INFO] [1712690292.967052]: -------------------\n", + "[INFO] [1712690292.967302]: SOMA.Turning \n", + "[INFO] [1712690292.967544]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712690292.967811]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Turning, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.PosturalMoving}\n", + "[INFO] [1712690292.968072]: Subclasses: []\n", + "[INFO] [1712690292.968365]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.968874]: Instances: []\n", + "[INFO] [1712690292.969145]: Direct Instances: []\n", + "[INFO] [1712690292.969401]: Inverse Restrictions: []\n", + "[INFO] [1712690292.969641]: -------------------\n", + "[INFO] [1712690292.969878]: SOMA.UnavailableSoftware \n", + "[INFO] [1712690292.970112]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712690292.970377]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, SOMA.UnavailableSoftware, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.970636]: Subclasses: []\n", + "[INFO] [1712690292.970932]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.971411]: Instances: []\n", + "[INFO] [1712690292.971662]: Direct Instances: []\n", + "[INFO] [1712690292.971914]: Inverse Restrictions: []\n", + "[INFO] [1712690292.972163]: -------------------\n", + "[INFO] [1712690292.972407]: SOMA.Unsuccessfulness \n", + "[INFO] [1712690292.972641]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712690292.972894]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690292.973159]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712690292.973452]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.973945]: Instances: []\n", + "[INFO] [1712690292.974197]: Direct Instances: []\n", + "[INFO] [1712690292.974456]: Inverse Restrictions: []\n", + "[INFO] [1712690292.974700]: -------------------\n", + "[INFO] [1712690292.974938]: SOMA.VideoData \n", + "[INFO] [1712690292.975175]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712690292.975438]: Ancestors: {DUL.Entity, SOMA.VideoData, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690292.975693]: Subclasses: []\n", + "[INFO] [1712690292.975987]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690292.976476]: Instances: []\n", + "[INFO] [1712690292.976734]: Direct Instances: []\n", + "[INFO] [1712690292.976996]: Inverse Restrictions: []\n", + "[INFO] [1712690292.977246]: -------------------\n", + "[INFO] [1712690292.977491]: SOMA.Wardrobe \n", + "[INFO] [1712690292.977729]: Super classes: [SOMA.Cupboard]\n", + "[INFO] [1712690292.977990]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cupboard, owl.Thing, DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Wardrobe, DUL.PhysicalObject}\n", + "[INFO] [1712690292.978248]: Subclasses: []\n", + "[INFO] [1712690292.978542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.979032]: Instances: []\n", + "[INFO] [1712690292.979286]: Direct Instances: []\n", + "[INFO] [1712690292.979531]: Inverse Restrictions: []\n", + "[INFO] [1712690292.979893]: -------------------\n", + "[INFO] [1712690292.980134]: SOMA.WaterBottle \n", + "[INFO] [1712690292.980370]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712690292.980634]: Ancestors: {DUL.PhysicalArtifact, SOMA.Bottle, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.WaterBottle}\n", + "[INFO] [1712690292.980879]: Subclasses: []\n", + "[INFO] [1712690292.981167]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.981668]: Instances: []\n", + "[INFO] [1712690292.981934]: Direct Instances: []\n", + "[INFO] [1712690292.982189]: Inverse Restrictions: []\n", + "[INFO] [1712690292.982421]: -------------------\n", + "[INFO] [1712690292.982653]: SOMA.WaterGlass \n", + "[INFO] [1712690292.982892]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712690292.983171]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Tableware, SOMA.Crockery, SOMA.WaterGlass, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, SOMA.Glass, DUL.PhysicalObject}\n", + "[INFO] [1712690292.983485]: Subclasses: []\n", + "[INFO] [1712690292.983783]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.984277]: Instances: []\n", + "[INFO] [1712690292.984556]: Direct Instances: []\n", + "[INFO] [1712690292.984815]: Inverse Restrictions: []\n", + "[INFO] [1712690292.985063]: -------------------\n", + "[INFO] [1712690292.985301]: SOMA.WineBottle \n", + "[INFO] [1712690292.985548]: Super classes: [SOMA.Bottle]\n", + "[INFO] [1712690292.985829]: Ancestors: {DUL.PhysicalArtifact, SOMA.Bottle, DUL.Entity, SOMA.WineBottle, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690292.986091]: Subclasses: []\n", + "[INFO] [1712690292.986386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.986871]: Instances: []\n", + "[INFO] [1712690292.987139]: Direct Instances: []\n", + "[INFO] [1712690292.987395]: Inverse Restrictions: []\n", + "[INFO] [1712690292.987634]: -------------------\n", + "[INFO] [1712690292.987870]: SOMA.WineGlass \n", + "[INFO] [1712690292.988104]: Super classes: [SOMA.Glass]\n", + "[INFO] [1712690292.988370]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.WineGlass, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, SOMA.Glass, DUL.PhysicalObject}\n", + "[INFO] [1712690292.988635]: Subclasses: []\n", + "[INFO] [1712690292.988938]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690292.989430]: Instances: []\n", + "[INFO] [1712690292.989686]: Direct Instances: []\n", + "[INFO] [1712690292.989936]: Inverse Restrictions: []\n", + "[INFO] [1712690292.990185]: -------------------\n", + "[INFO] [1712690292.990428]: SOMA.3DPosition \n", + "[INFO] [1712690292.990690]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712690292.990956]: Ancestors: {DUL.Entity, SOMA.3DPosition, DUL.SpaceRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690292.991200]: Subclasses: []\n", + "[INFO] [1712690292.991494]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", + "[INFO] [1712690292.991998]: Instances: []\n", + "[INFO] [1712690292.992261]: Direct Instances: []\n", + "[INFO] [1712690292.992510]: Inverse Restrictions: []\n", + "[INFO] [1712690292.992745]: -------------------\n", + "[INFO] [1712690292.992983]: SOMA.Affordance \n", + "[INFO] [1712690292.993253]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712690292.993507]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Affordance, DUL.Relation, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690292.993760]: Subclasses: [SOMA.AffordsBeingSitOn]\n", + "[INFO] [1712690292.994055]: Properties: [rdf-schema.isDefinedBy, SOMA.definesBearer, SOMA.definesTrigger, rdf-schema.comment, DUL.definesTask]\n", + "[INFO] [1712690292.994546]: Instances: []\n", + "[INFO] [1712690292.994813]: Direct Instances: []\n", + "[INFO] [1712690292.995193]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712690292.995439]: -------------------\n", + "[INFO] [1712690292.995679]: SOMA.Disposition \n", + "[INFO] [1712690292.995935]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", + "[INFO] [1712690292.996185]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690292.996468]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", + "[INFO] [1712690292.996775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712690292.997378]: Instances: []\n", + "[INFO] [1712690292.997809]: Direct Instances: []\n", + "[INFO] [1712690292.998146]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", + "[INFO] [1712690292.998404]: -------------------\n", + "[INFO] [1712690292.998649]: SOMA.Setpoint \n", + "[INFO] [1712690292.998893]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712690292.999164]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Parameter, SOMA.Setpoint}\n", + "[INFO] [1712690292.999445]: Subclasses: []\n", + "[INFO] [1712690292.999743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.000282]: Instances: []\n", + "[INFO] [1712690293.000574]: Direct Instances: []\n", + "[INFO] [1712690293.000844]: Inverse Restrictions: []\n", + "[INFO] [1712690293.001097]: -------------------\n", + "[INFO] [1712690293.001358]: SOMA.Answer \n", + "[INFO] [1712690293.001613]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712690293.001868]: Ancestors: {DUL.Entity, SOMA.Answer, SOMA.Message, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.002131]: Subclasses: []\n", + "[INFO] [1712690293.002431]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.002924]: Instances: []\n", + "[INFO] [1712690293.003187]: Direct Instances: []\n", + "[INFO] [1712690293.003474]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", + "[INFO] [1712690293.003757]: -------------------\n", + "[INFO] [1712690293.004017]: SOMA.Message \n", + "[INFO] [1712690293.004268]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", + "[INFO] [1712690293.004521]: Ancestors: {DUL.Entity, SOMA.Message, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.004785]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", + "[INFO] [1712690293.005097]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", + "[INFO] [1712690293.005608]: Instances: []\n", + "[INFO] [1712690293.005874]: Direct Instances: []\n", + "[INFO] [1712690293.006192]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690293.006453]: -------------------\n", + "[INFO] [1712690293.006704]: SOMA.ProcessType \n", + "[INFO] [1712690293.006955]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", + "[INFO] [1712690293.007204]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.007463]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", + "[INFO] [1712690293.007760]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.008341]: Instances: []\n", + "[INFO] [1712690293.008614]: Direct Instances: []\n", + "[INFO] [1712690293.008945]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712690293.009212]: -------------------\n", + "[INFO] [1712690293.009462]: SOMA.OrderedElement \n", + "[INFO] [1712690293.009716]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", + "[INFO] [1712690293.009963]: Ancestors: {SOMA.OrderedElement, owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712690293.010206]: Subclasses: []\n", + "[INFO] [1712690293.010511]: Properties: [SOMA.isOrderedBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.011006]: Instances: []\n", + "[INFO] [1712690293.011267]: Direct Instances: []\n", + "[INFO] [1712690293.011634]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712690293.011885]: -------------------\n", + "[INFO] [1712690293.012131]: SOMA.System \n", + "[INFO] [1712690293.012370]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", + "[INFO] [1712690293.012610]: Ancestors: {DUL.Entity, SOMA.System, DUL.SocialObject, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.012876]: Subclasses: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712690293.013174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.013694]: Instances: []\n", + "[INFO] [1712690293.013953]: Direct Instances: []\n", + "[INFO] [1712690293.014199]: Inverse Restrictions: []\n", + "[INFO] [1712690293.014448]: -------------------\n", + "[INFO] [1712690293.014685]: SOMA.Binding \n", + "[INFO] [1712690293.014945]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712690293.015194]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690293.015455]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", + "[INFO] [1712690293.015760]: Properties: [SOMA.hasBindingRole, rdf-schema.isDefinedBy, SOMA.hasBindingFiller, rdf-schema.comment, Inverse(SOMA.hasBinding)]\n", + "[INFO] [1712690293.016259]: Instances: []\n", + "[INFO] [1712690293.016516]: Direct Instances: []\n", + "[INFO] [1712690293.016848]: Inverse Restrictions: []\n", + "[INFO] [1712690293.017108]: -------------------\n", + "[INFO] [1712690293.017350]: SOMA.Joint \n", + "[INFO] [1712690293.017608]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", + "[INFO] [1712690293.017864]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690293.018133]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", + "[INFO] [1712690293.018449]: Properties: [SOMA.hasChildLink, rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", + "[INFO] [1712690293.018959]: Instances: []\n", + "[INFO] [1712690293.019220]: Direct Instances: []\n", + "[INFO] [1712690293.019495]: Inverse Restrictions: []\n", + "[INFO] [1712690293.019748]: -------------------\n", + "[INFO] [1712690293.019995]: SOMA.Color \n", + "[INFO] [1712690293.020240]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", + "[INFO] [1712690293.020493]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.020753]: Subclasses: []\n", + "[INFO] [1712690293.021065]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion, rdf-schema.label]\n", + "[INFO] [1712690293.021567]: Instances: []\n", + "[INFO] [1712690293.021826]: Direct Instances: []\n", + "[INFO] [1712690293.022111]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712690293.022368]: -------------------\n", + "[INFO] [1712690293.022618]: SOMA.ExecutionStateRegion \n", + "[INFO] [1712690293.022857]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690293.023099]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ExecutionStateRegion}\n", + "[INFO] [1712690293.023335]: Subclasses: []\n", + "[INFO] [1712690293.023646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.024156]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712690293.024431]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", + "[INFO] [1712690293.024687]: Inverse Restrictions: []\n", + "[INFO] [1712690293.025037]: -------------------\n", + "[INFO] [1712690293.025366]: SOMA.Feature \n", + "[INFO] [1712690293.025649]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712690293.025914]: Ancestors: {DUL.Entity, SOMA.Feature, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.026180]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", + "[INFO] [1712690293.026498]: Properties: [SOMA.isFeatureOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.027015]: Instances: []\n", + "[INFO] [1712690293.027288]: Direct Instances: []\n", + "[INFO] [1712690293.027589]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712690293.027837]: -------------------\n", + "[INFO] [1712690293.028082]: SOMA.FrictionAttribute \n", + "[INFO] [1712690293.028334]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", + "[INFO] [1712690293.028589]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", + "[INFO] [1712690293.028852]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", + "[INFO] [1712690293.029154]: Properties: [SOMA.hasFrictionValue, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.029669]: Instances: []\n", + "[INFO] [1712690293.029933]: Direct Instances: []\n", + "[INFO] [1712690293.030193]: Inverse Restrictions: []\n", + "[INFO] [1712690293.030432]: -------------------\n", + "[INFO] [1712690293.030669]: SOMA.SituationTransition \n", + "[INFO] [1712690293.030910]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712690293.031157]: Ancestors: {DUL.Entity, DUL.Situation, owl.Thing, SOMA.SituationTransition, DUL.Transition}\n", + "[INFO] [1712690293.031410]: Subclasses: []\n", + "[INFO] [1712690293.031727]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.032211]: Instances: []\n", + "[INFO] [1712690293.032469]: Direct Instances: []\n", + "[INFO] [1712690293.034293]: Inverse Restrictions: []\n", + "[INFO] [1712690293.034618]: -------------------\n", + "[INFO] [1712690293.034891]: SOMA.NonmanifestedSituation \n", + "[INFO] [1712690293.035148]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712690293.035425]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation}\n", + "[INFO] [1712690293.035676]: Subclasses: []\n", + "[INFO] [1712690293.035990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.036501]: Instances: []\n", + "[INFO] [1712690293.036778]: Direct Instances: []\n", + "[INFO] [1712690293.038170]: Inverse Restrictions: []\n", + "[INFO] [1712690293.038433]: -------------------\n", + "[INFO] [1712690293.038684]: SOMA.JointLimit \n", + "[INFO] [1712690293.038929]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", + "[INFO] [1712690293.039176]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.JointLimit}\n", + "[INFO] [1712690293.039415]: Subclasses: []\n", + "[INFO] [1712690293.039699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.040197]: Instances: []\n", + "[INFO] [1712690293.040468]: Direct Instances: []\n", + "[INFO] [1712690293.040790]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712690293.041034]: -------------------\n", + "[INFO] [1712690293.041273]: SOMA.JointState \n", + "[INFO] [1712690293.041532]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", + "[INFO] [1712690293.041788]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, SOMA.JointState, DUL.Abstract}\n", + "[INFO] [1712690293.042037]: Subclasses: []\n", + "[INFO] [1712690293.042333]: Properties: [SOMA.hasJointVelocity, SOMA.hasJointPosition, rdf-schema.isDefinedBy, rdf-schema.label, rdf-schema.comment]\n", + "[INFO] [1712690293.042832]: Instances: []\n", + "[INFO] [1712690293.043104]: Direct Instances: []\n", + "[INFO] [1712690293.043423]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", + "[INFO] [1712690293.043665]: -------------------\n", + "[INFO] [1712690293.043899]: SOMA.Localization \n", + "[INFO] [1712690293.044139]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", + "[INFO] [1712690293.044399]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.044661]: Subclasses: []\n", + "[INFO] [1712690293.044971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712690293.045478]: Instances: []\n", + "[INFO] [1712690293.045746]: Direct Instances: []\n", + "[INFO] [1712690293.046859]: Inverse Restrictions: []\n", + "[INFO] [1712690293.047158]: -------------------\n", + "[INFO] [1712690293.047454]: SOMA.MassAttribute \n", + "[INFO] [1712690293.047747]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", + "[INFO] [1712690293.048025]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.MassAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690293.048294]: Subclasses: []\n", + "[INFO] [1712690293.048620]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label]\n", + "[INFO] [1712690293.049204]: Instances: []\n", + "[INFO] [1712690293.049612]: Direct Instances: []\n", + "[INFO] [1712690293.049932]: Inverse Restrictions: []\n", + "[INFO] [1712690293.050210]: -------------------\n", + "[INFO] [1712690293.050468]: SOMA.NetForce \n", + "[INFO] [1712690293.050725]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", + "[INFO] [1712690293.050994]: Ancestors: {SOMA.NetForce, DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690293.051250]: Subclasses: []\n", + "[INFO] [1712690293.051542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.052029]: Instances: []\n", + "[INFO] [1712690293.052302]: Direct Instances: []\n", + "[INFO] [1712690293.052564]: Inverse Restrictions: []\n", + "[INFO] [1712690293.052813]: -------------------\n", + "[INFO] [1712690293.053056]: SOMA.Succedence \n", + "[INFO] [1712690293.053309]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", + "[INFO] [1712690293.053563]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Succedence}\n", + "[INFO] [1712690293.053826]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712690293.054135]: Properties: [SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy, SOMA.hasPredecessor, rdf-schema.comment]\n", + "[INFO] [1712690293.054626]: Instances: []\n", + "[INFO] [1712690293.054884]: Direct Instances: []\n", + "[INFO] [1712690293.055142]: Inverse Restrictions: []\n", + "[INFO] [1712690293.055398]: -------------------\n", + "[INFO] [1712690293.055645]: SOMA.Preference \n", + "[INFO] [1712690293.055890]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", + "[INFO] [1712690293.056132]: Ancestors: {SOMA.Preference, DUL.Entity, SOMA.SocialQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.056376]: Subclasses: []\n", + "[INFO] [1712690293.056673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.057276]: Instances: []\n", + "[INFO] [1712690293.057630]: Direct Instances: []\n", + "[INFO] [1712690293.058048]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", + "[INFO] [1712690293.058336]: -------------------\n", + "[INFO] [1712690293.058608]: SOMA.Shape \n", + "[INFO] [1712690293.058875]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", + "[INFO] [1712690293.059135]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Shape, SOMA.Intrinsic}\n", + "[INFO] [1712690293.059412]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", + "[INFO] [1712690293.059723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712690293.060243]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712690293.060515]: Direct Instances: []\n", + "[INFO] [1712690293.061661]: Inverse Restrictions: []\n", + "[INFO] [1712690293.061920]: -------------------\n", + "[INFO] [1712690293.062167]: SOMA.ShapeRegion \n", + "[INFO] [1712690293.062412]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", + "[INFO] [1712690293.062657]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690293.062913]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", + "[INFO] [1712690293.063221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.063730]: Instances: []\n", + "[INFO] [1712690293.063991]: Direct Instances: []\n", + "[INFO] [1712690293.064716]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", + "[INFO] [1712690293.064986]: -------------------\n", + "[INFO] [1712690293.065237]: SOMA.SoftwareInstance \n", + "[INFO] [1712690293.065493]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", + "[INFO] [1712690293.065739]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", + "[INFO] [1712690293.065984]: Subclasses: []\n", + "[INFO] [1712690293.066296]: Properties: [rdf-schema.isDefinedBy, DUL.actsFor, rdf-schema.label, rdf-schema.comment, SOMA.isDesignedBy]\n", + "[INFO] [1712690293.066818]: Instances: []\n", + "[INFO] [1712690293.067100]: Direct Instances: []\n", + "[INFO] [1712690293.067423]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712690293.067685]: -------------------\n", + "[INFO] [1712690293.067935]: SOMA.StateType \n", + "[INFO] [1712690293.068188]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", + "[INFO] [1712690293.068434]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.068691]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", + "[INFO] [1712690293.069008]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.069520]: Instances: []\n", + "[INFO] [1712690293.069780]: Direct Instances: []\n", + "[INFO] [1712690293.070097]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712690293.070360]: -------------------\n", + "[INFO] [1712690293.070609]: SOMA.PhysicalEffector \n", + "[INFO] [1712690293.070858]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", + "[INFO] [1712690293.071105]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690293.071357]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", + "[INFO] [1712690293.071663]: Properties: [Inverse(DUL.hasPart), rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.072174]: Instances: []\n", + "[INFO] [1712690293.072431]: Direct Instances: []\n", + "[INFO] [1712690293.072684]: Inverse Restrictions: []\n", + "[INFO] [1712690293.073001]: -------------------\n", + "[INFO] [1712690293.073315]: SOMA.QueryingTask \n", + "[INFO] [1712690293.073599]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", + "[INFO] [1712690293.073867]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712690293.074128]: Subclasses: []\n", + "[INFO] [1712690293.074450]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.074953]: Instances: []\n", + "[INFO] [1712690293.075225]: Direct Instances: []\n", + "[INFO] [1712690293.075557]: Inverse Restrictions: []\n", + "[INFO] [1712690293.075802]: -------------------\n", + "[INFO] [1712690293.076220]: SOMA.Order \n", + "[INFO] [1712690293.076574]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", + "[INFO] [1712690293.076914]: Ancestors: {DUL.Entity, SOMA.Order, owl.Thing, DUL.FormalEntity, DUL.Abstract}\n", + "[INFO] [1712690293.077169]: Subclasses: []\n", + "[INFO] [1712690293.077467]: Properties: [SOMA.orders, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.077976]: Instances: []\n", + "[INFO] [1712690293.078252]: Direct Instances: []\n", + "[INFO] [1712690293.078623]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712690293.078876]: -------------------\n", + "[INFO] [1712690293.079125]: SOMA.State \n", + "[INFO] [1712690293.079363]: Super classes: [DUL.Event]\n", + "[INFO] [1712690293.079610]: Ancestors: {DUL.Entity, owl.Thing, SOMA.State, DUL.Event}\n", + "[INFO] [1712690293.079880]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", + "[INFO] [1712690293.080183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.080691]: Instances: []\n", + "[INFO] [1712690293.081013]: Direct Instances: []\n", + "[INFO] [1712690293.081558]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", + "[INFO] [1712690293.081824]: -------------------\n", + "[INFO] [1712690293.082092]: SOMA.Transient \n", + "[INFO] [1712690293.082349]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", + "[INFO] [1712690293.082606]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, SOMA.Transient}\n", + "[INFO] [1712690293.082854]: Subclasses: []\n", + "[INFO] [1712690293.083170]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.transitionsFrom]\n", + "[INFO] [1712690293.083674]: Instances: []\n", + "[INFO] [1712690293.083947]: Direct Instances: []\n", + "[INFO] [1712690293.084201]: Inverse Restrictions: []\n", + "[INFO] [1712690293.084449]: -------------------\n", + "[INFO] [1712690293.084704]: SOMA.ColorRegion \n", + "[INFO] [1712690293.084958]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", + "[INFO] [1712690293.085209]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690293.085464]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", + "[INFO] [1712690293.085758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.086284]: Instances: []\n", + "[INFO] [1712690293.086588]: Direct Instances: []\n", + "[INFO] [1712690293.086922]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", + "[INFO] [1712690293.087179]: -------------------\n", + "[INFO] [1712690293.087438]: SOMA.ForceAttribute \n", + "[INFO] [1712690293.087693]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", + "[INFO] [1712690293.087950]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690293.088203]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", + "[INFO] [1712690293.088500]: Properties: [SOMA.hasForceValue, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.089014]: Instances: []\n", + "[INFO] [1712690293.089293]: Direct Instances: []\n", + "[INFO] [1712690293.089557]: Inverse Restrictions: []\n", + "[INFO] [1712690293.089804]: -------------------\n", + "[INFO] [1712690293.090055]: SOMA.API_Specification \n", + "[INFO] [1712690293.090304]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", + "[INFO] [1712690293.090559]: Ancestors: {DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690293.090815]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712690293.091104]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.091612]: Instances: []\n", + "[INFO] [1712690293.091890]: Direct Instances: []\n", + "[INFO] [1712690293.092153]: Inverse Restrictions: []\n", + "[INFO] [1712690293.092400]: -------------------\n", + "[INFO] [1712690293.092645]: SOMA.InterfaceSpecification \n", + "[INFO] [1712690293.092905]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712690293.093165]: Ancestors: {DUL.Entity, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690293.093425]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712690293.093720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.094223]: Instances: []\n", + "[INFO] [1712690293.094493]: Direct Instances: []\n", + "[INFO] [1712690293.094811]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", + "[INFO] [1712690293.095059]: -------------------\n", + "[INFO] [1712690293.095298]: SOMA.AbductiveReasoning \n", + "[INFO] [1712690293.095539]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712690293.095799]: Ancestors: {SOMA.AbductiveReasoning, SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.096048]: Subclasses: []\n", + "[INFO] [1712690293.096341]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.096858]: Instances: []\n", + "[INFO] [1712690293.097259]: Direct Instances: []\n", + "[INFO] [1712690293.097568]: Inverse Restrictions: []\n", + "[INFO] [1712690293.097839]: -------------------\n", + "[INFO] [1712690293.098102]: SOMA.Reasoning \n", + "[INFO] [1712690293.098352]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690293.098606]: Ancestors: {SOMA.DerivingInformation, SOMA.Reasoning, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712690293.098880]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", + "[INFO] [1712690293.099190]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.099691]: Instances: []\n", + "[INFO] [1712690293.099974]: Direct Instances: []\n", + "[INFO] [1712690293.100277]: Inverse Restrictions: []\n", + "[INFO] [1712690293.100530]: -------------------\n", + "[INFO] [1712690293.100781]: SOMA.Accessor \n", + "[INFO] [1712690293.101028]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712690293.101281]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Accessor, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.101558]: Subclasses: []\n", + "[INFO] [1712690293.101865]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.102357]: Instances: []\n", + "[INFO] [1712690293.102615]: Direct Instances: []\n", + "[INFO] [1712690293.102870]: Inverse Restrictions: []\n", + "[INFO] [1712690293.103123]: -------------------\n", + "[INFO] [1712690293.103365]: SOMA.Instrument \n", + "[INFO] [1712690293.103601]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712690293.103846]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.104097]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", + "[INFO] [1712690293.104391]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.104932]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690293.105199]: Direct Instances: []\n", + "[INFO] [1712690293.105575]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690293.105837]: -------------------\n", + "[INFO] [1712690293.106083]: SOMA.Accident \n", + "[INFO] [1712690293.106328]: Super classes: [DUL.Event]\n", + "[INFO] [1712690293.106568]: Ancestors: {DUL.Entity, owl.Thing, DUL.Event, SOMA.Accident}\n", + "[INFO] [1712690293.106810]: Subclasses: []\n", + "[INFO] [1712690293.107123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.107621]: Instances: []\n", + "[INFO] [1712690293.107878]: Direct Instances: []\n", + "[INFO] [1712690293.108126]: Inverse Restrictions: []\n", + "[INFO] [1712690293.108359]: -------------------\n", + "[INFO] [1712690293.108608]: SOMA.ActionExecutionPlan \n", + "[INFO] [1712690293.108860]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", + "[INFO] [1712690293.109112]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Plan, owl.Thing, DUL.Object, DUL.Description, SOMA.ActionExecutionPlan}\n", + "[INFO] [1712690293.109356]: Subclasses: []\n", + "[INFO] [1712690293.109645]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.110151]: Instances: []\n", + "[INFO] [1712690293.110417]: Direct Instances: []\n", + "[INFO] [1712690293.110672]: Inverse Restrictions: []\n", + "[INFO] [1712690293.110909]: -------------------\n", + "[INFO] [1712690293.111150]: SOMA.Actuating \n", + "[INFO] [1712690293.111389]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690293.111649]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.111932]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", + "[INFO] [1712690293.112233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.112760]: Instances: []\n", + "[INFO] [1712690293.113046]: Direct Instances: []\n", + "[INFO] [1712690293.113334]: Inverse Restrictions: []\n", + "[INFO] [1712690293.113590]: -------------------\n", + "[INFO] [1712690293.113845]: SOMA.PhysicalTask \n", + "[INFO] [1712690293.114120]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712690293.114378]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.114649]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", + "[INFO] [1712690293.114948]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.115572]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", + "[INFO] [1712690293.115852]: Direct Instances: []\n", + "[INFO] [1712690293.116167]: Inverse Restrictions: []\n", + "[INFO] [1712690293.116418]: -------------------\n", + "[INFO] [1712690293.116670]: SOMA.AestheticDesign \n", + "[INFO] [1712690293.116947]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712690293.117201]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.AestheticDesign, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690293.117450]: Subclasses: []\n", + "[INFO] [1712690293.117760]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.118270]: Instances: []\n", + "[INFO] [1712690293.118537]: Direct Instances: []\n", + "[INFO] [1712690293.118786]: Inverse Restrictions: []\n", + "[INFO] [1712690293.119037]: -------------------\n", + "[INFO] [1712690293.119280]: SOMA.AgentRole \n", + "[INFO] [1712690293.119522]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712690293.119768]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.AgentRole, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, DUL.Role}\n", + "[INFO] [1712690293.120007]: Subclasses: []\n", + "[INFO] [1712690293.120307]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.120805]: Instances: []\n", + "[INFO] [1712690293.121063]: Direct Instances: []\n", + "[INFO] [1712690293.121343]: Inverse Restrictions: []\n", + "[INFO] [1712690293.121586]: -------------------\n", + "[INFO] [1712690293.121837]: SOMA.CausativeRole \n", + "[INFO] [1712690293.122081]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690293.122331]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, DUL.Role}\n", + "[INFO] [1712690293.122590]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", + "[INFO] [1712690293.122880]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.123398]: Instances: []\n", + "[INFO] [1712690293.123671]: Direct Instances: []\n", + "[INFO] [1712690293.123939]: Inverse Restrictions: []\n", + "[INFO] [1712690293.124191]: -------------------\n", + "[INFO] [1712690293.124435]: SOMA.Agonist \n", + "[INFO] [1712690293.124676]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.124928]: Ancestors: {DUL.Entity, SOMA.Agonist, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.125187]: Subclasses: []\n", + "[INFO] [1712690293.125481]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.125977]: Instances: []\n", + "[INFO] [1712690293.126230]: Direct Instances: []\n", + "[INFO] [1712690293.126518]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712690293.126778]: -------------------\n", + "[INFO] [1712690293.127024]: SOMA.Patient \n", + "[INFO] [1712690293.127267]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690293.127513]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.127796]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", + "[INFO] [1712690293.128106]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.128670]: Instances: []\n", + "[INFO] [1712690293.128942]: Direct Instances: []\n", + "[INFO] [1712690293.129355]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690293.129613]: -------------------\n", + "[INFO] [1712690293.129857]: SOMA.Algorithm \n", + "[INFO] [1712690293.130094]: Super classes: [DUL.Plan, DUL.Plan]\n", + "[INFO] [1712690293.130339]: Ancestors: {SOMA.Algorithm, DUL.Entity, DUL.SocialObject, DUL.Plan, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690293.130594]: Subclasses: []\n", + "[INFO] [1712690293.130892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.131391]: Instances: []\n", + "[INFO] [1712690293.131659]: Direct Instances: []\n", + "[INFO] [1712690293.131976]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712690293.132226]: -------------------\n", + "[INFO] [1712690293.132469]: SOMA.Alteration \n", + "[INFO] [1712690293.132708]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712690293.132963]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration}\n", + "[INFO] [1712690293.133215]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", + "[INFO] [1712690293.133576]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.134095]: Instances: []\n", + "[INFO] [1712690293.134366]: Direct Instances: []\n", + "[INFO] [1712690293.134617]: Inverse Restrictions: []\n", + "[INFO] [1712690293.134868]: -------------------\n", + "[INFO] [1712690293.135116]: SOMA.AlterativeInteraction \n", + "[INFO] [1712690293.135375]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712690293.135627]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.AlterativeInteraction, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction}\n", + "[INFO] [1712690293.135870]: Subclasses: []\n", + "[INFO] [1712690293.136169]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.136680]: Instances: []\n", + "[INFO] [1712690293.136952]: Direct Instances: []\n", + "[INFO] [1712690293.137246]: Inverse Restrictions: []\n", + "[INFO] [1712690293.137492]: -------------------\n", + "[INFO] [1712690293.137733]: SOMA.ForceInteraction \n", + "[INFO] [1712690293.137995]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", + "[INFO] [1712690293.138252]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction}\n", + "[INFO] [1712690293.138511]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", + "[INFO] [1712690293.138824]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment]\n", + "[INFO] [1712690293.139342]: Instances: []\n", + "[INFO] [1712690293.139610]: Direct Instances: []\n", + "[INFO] [1712690293.139870]: Inverse Restrictions: []\n", + "[INFO] [1712690293.140113]: -------------------\n", + "[INFO] [1712690293.140351]: SOMA.PreservativeInteraction \n", + "[INFO] [1712690293.140598]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712690293.140865]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction, SOMA.PreservativeInteraction}\n", + "[INFO] [1712690293.141116]: Subclasses: []\n", + "[INFO] [1712690293.141407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.141900]: Instances: []\n", + "[INFO] [1712690293.142168]: Direct Instances: []\n", + "[INFO] [1712690293.142469]: Inverse Restrictions: []\n", + "[INFO] [1712690293.142716]: -------------------\n", + "[INFO] [1712690293.142955]: SOMA.AlteredObject \n", + "[INFO] [1712690293.143193]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.143439]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", + "[INFO] [1712690293.143706]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", + "[INFO] [1712690293.144004]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.144506]: Instances: []\n", + "[INFO] [1712690293.144783]: Direct Instances: []\n", + "[INFO] [1712690293.145128]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712690293.145383]: -------------------\n", + "[INFO] [1712690293.145629]: SOMA.Amateurish \n", + "[INFO] [1712690293.145869]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712690293.146114]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.146379]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", + "[INFO] [1712690293.146685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.147178]: Instances: []\n", + "[INFO] [1712690293.147455]: Direct Instances: []\n", + "[INFO] [1712690293.147717]: Inverse Restrictions: []\n", + "[INFO] [1712690293.147959]: -------------------\n", + "[INFO] [1712690293.148196]: SOMA.AnsweringTask \n", + "[INFO] [1712690293.148429]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.148678]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", + "[INFO] [1712690293.148931]: Subclasses: []\n", + "[INFO] [1712690293.149231]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.149722]: Instances: []\n", + "[INFO] [1712690293.150009]: Direct Instances: []\n", + "[INFO] [1712690293.150326]: Inverse Restrictions: []\n", + "[INFO] [1712690293.150572]: -------------------\n", + "[INFO] [1712690293.150812]: SOMA.CommandingTask \n", + "[INFO] [1712690293.151055]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", + "[INFO] [1712690293.151292]: Ancestors: {SOMA.IllocutionaryTask, SOMA.CommandingTask, owl.Thing}\n", + "[INFO] [1712690293.151562]: Subclasses: []\n", + "[INFO] [1712690293.151868]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.152358]: Instances: []\n", + "[INFO] [1712690293.152612]: Direct Instances: []\n", + "[INFO] [1712690293.152944]: Inverse Restrictions: []\n", + "[INFO] [1712690293.153202]: -------------------\n", + "[INFO] [1712690293.153447]: SOMA.IllocutionaryTask \n", + "[INFO] [1712690293.153699]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712690293.153943]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", + "[INFO] [1712690293.154207]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", + "[INFO] [1712690293.154506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.155003]: Instances: []\n", + "[INFO] [1712690293.155272]: Direct Instances: []\n", + "[INFO] [1712690293.155571]: Inverse Restrictions: []\n", + "[INFO] [1712690293.155817]: -------------------\n", + "[INFO] [1712690293.156059]: SOMA.Antagonist \n", + "[INFO] [1712690293.156296]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.156540]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, SOMA.Antagonist, DUL.Object, owl.Thing, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.156798]: Subclasses: []\n", + "[INFO] [1712690293.157091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.157572]: Instances: []\n", + "[INFO] [1712690293.157842]: Direct Instances: []\n", + "[INFO] [1712690293.158134]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", + "[INFO] [1712690293.158389]: -------------------\n", + "[INFO] [1712690293.158638]: SOMA.Appliance \n", + "[INFO] [1712690293.158880]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712690293.159131]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690293.159400]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", + "[INFO] [1712690293.159699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.160192]: Instances: []\n", + "[INFO] [1712690293.160453]: Direct Instances: []\n", + "[INFO] [1712690293.160705]: Inverse Restrictions: []\n", + "[INFO] [1712690293.160952]: -------------------\n", + "[INFO] [1712690293.161196]: SOMA.Approaching \n", + "[INFO] [1712690293.161438]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690293.161688]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Approaching, SOMA.Locomotion}\n", + "[INFO] [1712690293.161933]: Subclasses: []\n", + "[INFO] [1712690293.162234]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.162728]: Instances: []\n", + "[INFO] [1712690293.162986]: Direct Instances: []\n", + "[INFO] [1712690293.163232]: Inverse Restrictions: []\n", + "[INFO] [1712690293.163469]: -------------------\n", + "[INFO] [1712690293.163705]: SOMA.Locomotion \n", + "[INFO] [1712690293.163949]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", + "[INFO] [1712690293.164203]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", + "[INFO] [1712690293.164463]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", + "[INFO] [1712690293.164799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.165312]: Instances: []\n", + "[INFO] [1712690293.165577]: Direct Instances: []\n", + "[INFO] [1712690293.165836]: Inverse Restrictions: []\n", + "[INFO] [1712690293.166089]: -------------------\n", + "[INFO] [1712690293.166336]: SOMA.ArchiveFile \n", + "[INFO] [1712690293.166578]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", + "[INFO] [1712690293.166838]: Ancestors: {DUL.Entity, SOMA.ArchiveFile, DUL.InformationEntity, SOMA.Digital_File, owl.Thing, DUL.InformationRealization}\n", + "[INFO] [1712690293.167084]: Subclasses: []\n", + "[INFO] [1712690293.167388]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.realizes, rdf-schema.comment]\n", + "[INFO] [1712690293.167897]: Instances: []\n", + "[INFO] [1712690293.168166]: Direct Instances: []\n", + "[INFO] [1712690293.168429]: Inverse Restrictions: []\n", + "[INFO] [1712690293.168670]: -------------------\n", + "[INFO] [1712690293.168915]: SOMA.ArchiveText \n", + "[INFO] [1712690293.169164]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.169410]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", + "[INFO] [1712690293.169654]: Subclasses: []\n", + "[INFO] [1712690293.169948]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", + "[INFO] [1712690293.170455]: Instances: []\n", + "[INFO] [1712690293.170723]: Direct Instances: []\n", + "[INFO] [1712690293.171060]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", + "[INFO] [1712690293.171314]: -------------------\n", + "[INFO] [1712690293.171567]: SOMA.Digital_File \n", + "[INFO] [1712690293.171819]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", + "[INFO] [1712690293.172067]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.Digital_File, owl.Thing, DUL.InformationRealization}\n", + "[INFO] [1712690293.172318]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", + "[INFO] [1712690293.172626]: Properties: [rdf-schema.isDefinedBy, SOMA.hasNameString, rdf-schema.label, rdf-schema.comment, DUL.realizes]\n", + "[INFO] [1712690293.173126]: Instances: []\n", + "[INFO] [1712690293.173392]: Direct Instances: []\n", + "[INFO] [1712690293.174498]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", + "[INFO] [1712690293.174764]: -------------------\n", + "[INFO] [1712690293.175013]: SOMA.ArchiveFormat \n", + "[INFO] [1712690293.175260]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", + "[INFO] [1712690293.175509]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.ArchiveFormat, SOMA.File_format}\n", + "[INFO] [1712690293.175751]: Subclasses: []\n", + "[INFO] [1712690293.176045]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.176544]: Instances: []\n", + "[INFO] [1712690293.176806]: Direct Instances: []\n", + "[INFO] [1712690293.177095]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712690293.177348]: -------------------\n", + "[INFO] [1712690293.177598]: SOMA.File_format \n", + "[INFO] [1712690293.177837]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690293.178085]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.File_format}\n", + "[INFO] [1712690293.178335]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712690293.178623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.179140]: Instances: []\n", + "[INFO] [1712690293.179405]: Direct Instances: []\n", + "[INFO] [1712690293.179660]: Inverse Restrictions: []\n", + "[INFO] [1712690293.179902]: -------------------\n", + "[INFO] [1712690293.180140]: SOMA.FileConfiguration \n", + "[INFO] [1712690293.180375]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.180636]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", + "[INFO] [1712690293.180889]: Subclasses: []\n", + "[INFO] [1712690293.181182]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.181671]: Instances: []\n", + "[INFO] [1712690293.181946]: Direct Instances: []\n", + "[INFO] [1712690293.182258]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", + "[INFO] [1712690293.182504]: -------------------\n", + "[INFO] [1712690293.182744]: SOMA.Structured_Text \n", + "[INFO] [1712690293.182997]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.183252]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", + "[INFO] [1712690293.183537]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712690293.183837]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.184341]: Instances: []\n", + "[INFO] [1712690293.184615]: Direct Instances: []\n", + "[INFO] [1712690293.185049]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712690293.185310]: -------------------\n", + "[INFO] [1712690293.185554]: SOMA.AreaSurveying \n", + "[INFO] [1712690293.185792]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712690293.186038]: Ancestors: {SOMA.AreaSurveying, owl.Thing, SOMA.Perceiving}\n", + "[INFO] [1712690293.186296]: Subclasses: []\n", + "[INFO] [1712690293.186593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.187085]: Instances: []\n", + "[INFO] [1712690293.187356]: Direct Instances: []\n", + "[INFO] [1712690293.187611]: Inverse Restrictions: []\n", + "[INFO] [1712690293.187855]: -------------------\n", + "[INFO] [1712690293.188093]: SOMA.Perceiving \n", + "[INFO] [1712690293.188329]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", + "[INFO] [1712690293.188587]: Ancestors: {owl.Thing, SOMA.Perceiving}\n", + "[INFO] [1712690293.188857]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", + "[INFO] [1712690293.189163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.189660]: Instances: []\n", + "[INFO] [1712690293.189936]: Direct Instances: []\n", + "[INFO] [1712690293.190203]: Inverse Restrictions: []\n", + "[INFO] [1712690293.190443]: -------------------\n", + "[INFO] [1712690293.190681]: SOMA.Arm \n", + "[INFO] [1712690293.190918]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712690293.191161]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Arm, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712690293.191417]: Subclasses: []\n", + "[INFO] [1712690293.191714]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.192241]: Instances: []\n", + "[INFO] [1712690293.192502]: Direct Instances: []\n", + "[INFO] [1712690293.192798]: Inverse Restrictions: []\n", + "[INFO] [1712690293.193054]: -------------------\n", + "[INFO] [1712690293.193297]: SOMA.Limb \n", + "[INFO] [1712690293.193530]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712690293.193774]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712690293.194040]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", + "[INFO] [1712690293.194345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.194845]: Instances: []\n", + "[INFO] [1712690293.195117]: Direct Instances: []\n", + "[INFO] [1712690293.195438]: Inverse Restrictions: []\n", + "[INFO] [1712690293.195683]: -------------------\n", + "[INFO] [1712690293.195922]: SOMA.Arranging \n", + "[INFO] [1712690293.196159]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712690293.196414]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Arranging}\n", + "[INFO] [1712690293.196669]: Subclasses: []\n", + "[INFO] [1712690293.196970]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.197479]: Instances: []\n", + "[INFO] [1712690293.197758]: Direct Instances: []\n", + "[INFO] [1712690293.198150]: Inverse Restrictions: []\n", + "[INFO] [1712690293.198658]: -------------------\n", + "[INFO] [1712690293.199007]: SOMA.Constructing \n", + "[INFO] [1712690293.199255]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690293.199500]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.199769]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", + "[INFO] [1712690293.200122]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.200651]: Instances: []\n", + "[INFO] [1712690293.200934]: Direct Instances: []\n", + "[INFO] [1712690293.201197]: Inverse Restrictions: []\n", + "[INFO] [1712690293.201467]: -------------------\n", + "[INFO] [1712690293.201737]: SOMA.ArtificialAgent \n", + "[INFO] [1712690293.201995]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", + "[INFO] [1712690293.202251]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.Agent, SOMA.ArtificialAgent, DUL.PhysicalAgent, DUL.PhysicalObject}\n", + "[INFO] [1712690293.202504]: Subclasses: []\n", + "[INFO] [1712690293.202797]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.203305]: Instances: []\n", + "[INFO] [1712690293.203578]: Direct Instances: []\n", + "[INFO] [1712690293.203841]: Inverse Restrictions: []\n", + "[INFO] [1712690293.204086]: -------------------\n", + "[INFO] [1712690293.204326]: SOMA.Assembling \n", + "[INFO] [1712690293.204584]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712690293.204851]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Assembling, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.205115]: Subclasses: []\n", + "[INFO] [1712690293.205420]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.205915]: Instances: []\n", + "[INFO] [1712690293.206189]: Direct Instances: []\n", + "[INFO] [1712690293.206451]: Inverse Restrictions: []\n", + "[INFO] [1712690293.206697]: -------------------\n", + "[INFO] [1712690293.206941]: SOMA.AssertionTask \n", + "[INFO] [1712690293.207198]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", + "[INFO] [1712690293.207455]: Ancestors: {SOMA.IllocutionaryTask, SOMA.AssertionTask, owl.Thing}\n", + "[INFO] [1712690293.207709]: Subclasses: []\n", + "[INFO] [1712690293.208010]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.208499]: Instances: []\n", + "[INFO] [1712690293.208779]: Direct Instances: []\n", + "[INFO] [1712690293.209047]: Inverse Restrictions: []\n", + "[INFO] [1712690293.209297]: -------------------\n", + "[INFO] [1712690293.209540]: SOMA.DeclarativeClause \n", + "[INFO] [1712690293.209784]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712690293.210037]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.DeclarativeClause, SOMA.ClausalObject}\n", + "[INFO] [1712690293.210301]: Subclasses: []\n", + "[INFO] [1712690293.210602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.211097]: Instances: []\n", + "[INFO] [1712690293.211361]: Direct Instances: []\n", + "[INFO] [1712690293.211658]: Inverse Restrictions: []\n", + "[INFO] [1712690293.211919]: -------------------\n", + "[INFO] [1712690293.212172]: SOMA.AssumingArmPose \n", + "[INFO] [1712690293.212416]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712690293.212668]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.AssumingArmPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.212923]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", + "[INFO] [1712690293.213249]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.213778]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712690293.214057]: Direct Instances: []\n", + "[INFO] [1712690293.214331]: Inverse Restrictions: []\n", + "[INFO] [1712690293.214583]: -------------------\n", + "[INFO] [1712690293.214829]: SOMA.AssumingPose \n", + "[INFO] [1712690293.215068]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690293.215320]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.215589]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", + "[INFO] [1712690293.215890]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.216400]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712690293.216680]: Direct Instances: []\n", + "[INFO] [1712690293.216992]: Inverse Restrictions: []\n", + "[INFO] [1712690293.217252]: -------------------\n", + "[INFO] [1712690293.217501]: SOMA.AttentionShift \n", + "[INFO] [1712690293.217751]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712690293.218018]: Ancestors: {DUL.Entity, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.218299]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", + "[INFO] [1712690293.218608]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.219107]: Instances: []\n", + "[INFO] [1712690293.219368]: Direct Instances: []\n", + "[INFO] [1712690293.219627]: Inverse Restrictions: []\n", + "[INFO] [1712690293.219885]: -------------------\n", + "[INFO] [1712690293.220140]: SOMA.MentalTask \n", + "[INFO] [1712690293.220406]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", + "[INFO] [1712690293.220685]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.220966]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712690293.221276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.221798]: Instances: []\n", + "[INFO] [1712690293.222079]: Direct Instances: []\n", + "[INFO] [1712690293.222383]: Inverse Restrictions: []\n", + "[INFO] [1712690293.222633]: -------------------\n", + "[INFO] [1712690293.222879]: SOMA.AvoidedObject \n", + "[INFO] [1712690293.223119]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.223375]: Ancestors: {DUL.Entity, SOMA.AvoidedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.223643]: Subclasses: []\n", + "[INFO] [1712690293.223945]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.224433]: Instances: []\n", + "[INFO] [1712690293.224693]: Direct Instances: []\n", + "[INFO] [1712690293.224956]: Inverse Restrictions: []\n", + "[INFO] [1712690293.225211]: -------------------\n", + "[INFO] [1712690293.225456]: SOMA.Avoiding \n", + "[INFO] [1712690293.225702]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712690293.225954]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Avoiding}\n", + "[INFO] [1712690293.226196]: Subclasses: []\n", + "[INFO] [1712690293.226483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.226988]: Instances: []\n", + "[INFO] [1712690293.227263]: Direct Instances: []\n", + "[INFO] [1712690293.227523]: Inverse Restrictions: []\n", + "[INFO] [1712690293.227768]: -------------------\n", + "[INFO] [1712690293.228010]: SOMA.Navigating \n", + "[INFO] [1712690293.228255]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690293.228520]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.228791]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", + "[INFO] [1712690293.229091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.229594]: Instances: [SOMA.navigating]\n", + "[INFO] [1712690293.230233]: Direct Instances: [SOMA.navigating]\n", + "[INFO] [1712690293.230533]: Inverse Restrictions: []\n", + "[INFO] [1712690293.230787]: -------------------\n", + "[INFO] [1712690293.231046]: SOMA.Barrier \n", + "[INFO] [1712690293.231321]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712690293.231602]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.231868]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", + "[INFO] [1712690293.232165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.232661]: Instances: []\n", + "[INFO] [1712690293.233002]: Direct Instances: []\n", + "[INFO] [1712690293.233363]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712690293.233713]: -------------------\n", + "[INFO] [1712690293.234006]: SOMA.Restrictor \n", + "[INFO] [1712690293.234283]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712690293.234554]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.234839]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", + "[INFO] [1712690293.235154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.235684]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690293.235969]: Direct Instances: []\n", + "[INFO] [1712690293.236334]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712690293.236606]: -------------------\n", + "[INFO] [1712690293.236860]: SOMA.BehavioralDiagnosis \n", + "[INFO] [1712690293.237104]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", + "[INFO] [1712690293.237352]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.237619]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", + "[INFO] [1712690293.237921]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712690293.238443]: Instances: []\n", + "[INFO] [1712690293.238718]: Direct Instances: []\n", + "[INFO] [1712690293.238975]: Inverse Restrictions: []\n", + "[INFO] [1712690293.239222]: -------------------\n", + "[INFO] [1712690293.239460]: SOMA.BeneficiaryRole \n", + "[INFO] [1712690293.239696]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712690293.239949]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.BeneficiaryRole, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690293.240211]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", + "[INFO] [1712690293.240506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.241002]: Instances: []\n", + "[INFO] [1712690293.241280]: Direct Instances: []\n", + "[INFO] [1712690293.241541]: Inverse Restrictions: []\n", + "[INFO] [1712690293.241788]: -------------------\n", + "[INFO] [1712690293.242030]: SOMA.GoalRole \n", + "[INFO] [1712690293.242281]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690293.242536]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690293.242787]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", + "[INFO] [1712690293.243078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.243585]: Instances: []\n", + "[INFO] [1712690293.243853]: Direct Instances: []\n", + "[INFO] [1712690293.244110]: Inverse Restrictions: []\n", + "[INFO] [1712690293.244350]: -------------------\n", + "[INFO] [1712690293.244584]: SOMA.CounterfactualBinding \n", + "[INFO] [1712690293.244864]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712690293.245277]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.CounterfactualBinding, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690293.245578]: Subclasses: []\n", + "[INFO] [1712690293.245913]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.246419]: Instances: []\n", + "[INFO] [1712690293.246701]: Direct Instances: []\n", + "[INFO] [1712690293.247114]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", + "[INFO] [1712690293.247403]: -------------------\n", + "[INFO] [1712690293.247662]: SOMA.FactualBinding \n", + "[INFO] [1712690293.247917]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712690293.248174]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FactualBinding, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690293.248436]: Subclasses: []\n", + "[INFO] [1712690293.248737]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.249244]: Instances: []\n", + "[INFO] [1712690293.249507]: Direct Instances: []\n", + "[INFO] [1712690293.249835]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", + "[INFO] [1712690293.250145]: -------------------\n", + "[INFO] [1712690293.250405]: SOMA.RoleFillerBinding \n", + "[INFO] [1712690293.250654]: Super classes: [SOMA.Binding, SOMA.Binding]\n", + "[INFO] [1712690293.250908]: Ancestors: {DUL.Entity, SOMA.RoleFillerBinding, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690293.251171]: Subclasses: []\n", + "[INFO] [1712690293.251499]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.251995]: Instances: []\n", + "[INFO] [1712690293.252263]: Direct Instances: []\n", + "[INFO] [1712690293.252551]: Inverse Restrictions: []\n", + "[INFO] [1712690293.252813]: -------------------\n", + "[INFO] [1712690293.253070]: SOMA.RoleRoleBinding \n", + "[INFO] [1712690293.253314]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", + "[INFO] [1712690293.253569]: Ancestors: {SOMA.RoleRoleBinding, DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", + "[INFO] [1712690293.253814]: Subclasses: []\n", + "[INFO] [1712690293.254112]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.254610]: Instances: []\n", + "[INFO] [1712690293.254874]: Direct Instances: []\n", + "[INFO] [1712690293.255166]: Inverse Restrictions: []\n", + "[INFO] [1712690293.255410]: -------------------\n", + "[INFO] [1712690293.255663]: SOMA.DesignedComponent \n", + "[INFO] [1712690293.255916]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", + "[INFO] [1712690293.256175]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", + "[INFO] [1712690293.256446]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", + "[INFO] [1712690293.256744]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690293.257291]: Instances: []\n", + "[INFO] [1712690293.257561]: Direct Instances: []\n", + "[INFO] [1712690293.257827]: Inverse Restrictions: []\n", + "[INFO] [1712690293.258074]: -------------------\n", + "[INFO] [1712690293.258316]: SOMA.Blockage \n", + "[INFO] [1712690293.258564]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", + "[INFO] [1712690293.258829]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.259093]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", + "[INFO] [1712690293.259395]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.259888]: Instances: []\n", + "[INFO] [1712690293.260154]: Direct Instances: []\n", + "[INFO] [1712690293.260425]: Inverse Restrictions: []\n", + "[INFO] [1712690293.260671]: -------------------\n", + "[INFO] [1712690293.260912]: SOMA.BlockedObject \n", + "[INFO] [1712690293.261152]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.261402]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.261669]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", + "[INFO] [1712690293.261966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.262464]: Instances: []\n", + "[INFO] [1712690293.262734]: Direct Instances: []\n", + "[INFO] [1712690293.263031]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", + "[INFO] [1712690293.263277]: -------------------\n", + "[INFO] [1712690293.263514]: SOMA.BodyMovement \n", + "[INFO] [1712690293.263770]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", + "[INFO] [1712690293.264037]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.264322]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", + "[INFO] [1712690293.264626]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.265152]: Instances: []\n", + "[INFO] [1712690293.265429]: Direct Instances: []\n", + "[INFO] [1712690293.265697]: Inverse Restrictions: []\n", + "[INFO] [1712690293.265944]: -------------------\n", + "[INFO] [1712690293.266186]: SOMA.Motion \n", + "[INFO] [1712690293.266423]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712690293.266702]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.267010]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", + "[INFO] [1712690293.267314]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.267862]: Instances: []\n", + "[INFO] [1712690293.268150]: Direct Instances: []\n", + "[INFO] [1712690293.268418]: Inverse Restrictions: []\n", + "[INFO] [1712690293.268667]: -------------------\n", + "[INFO] [1712690293.268986]: SOMA.Boiling \n", + "[INFO] [1712690293.269306]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712690293.269597]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Boiling, DUL.Concept, DUL.SocialObject, SOMA.Vaporizing, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", + "[INFO] [1712690293.269878]: Subclasses: []\n", + "[INFO] [1712690293.270189]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.270690]: Instances: []\n", + "[INFO] [1712690293.270971]: Direct Instances: []\n", + "[INFO] [1712690293.271238]: Inverse Restrictions: []\n", + "[INFO] [1712690293.271484]: -------------------\n", + "[INFO] [1712690293.271727]: SOMA.Vaporizing \n", + "[INFO] [1712690293.271977]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", + "[INFO] [1712690293.272224]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Vaporizing, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", + "[INFO] [1712690293.272489]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", + "[INFO] [1712690293.272799]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.273312]: Instances: []\n", + "[INFO] [1712690293.273574]: Direct Instances: []\n", + "[INFO] [1712690293.273828]: Inverse Restrictions: []\n", + "[INFO] [1712690293.274067]: -------------------\n", + "[INFO] [1712690293.274318]: SOMA.DesignedContainer \n", + "[INFO] [1712690293.274561]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712690293.274809]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690293.275084]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712690293.275382]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712690293.275996]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712690293.276269]: Direct Instances: []\n", + "[INFO] [1712690293.276535]: Inverse Restrictions: []\n", + "[INFO] [1712690293.276784]: -------------------\n", + "[INFO] [1712690293.277029]: SOMA.BoxShape \n", + "[INFO] [1712690293.277528]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", + "[INFO] [1712690293.277946]: Ancestors: {DUL.Entity, SOMA.BoxShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690293.278227]: Subclasses: []\n", + "[INFO] [1712690293.278530]: Properties: [SOMA.hasHeight, SOMA.hasLength, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasWidth]\n", + "[INFO] [1712690293.279025]: Instances: []\n", + "[INFO] [1712690293.279300]: Direct Instances: []\n", + "[INFO] [1712690293.279587]: Inverse Restrictions: [SOMA.Box]\n", + "[INFO] [1712690293.279837]: -------------------\n", + "[INFO] [1712690293.280076]: SOMA.Deposition \n", + "[INFO] [1712690293.280505]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", + "[INFO] [1712690293.280904]: Ancestors: {SOMA.Deposition, DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.281312]: Subclasses: [SOMA.CanBeSatOn]\n", + "[INFO] [1712690293.281760]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.282389]: Instances: []\n", + "[INFO] [1712690293.282690]: Direct Instances: []\n", + "[INFO] [1712690293.283041]: Inverse Restrictions: []\n", + "[INFO] [1712690293.283296]: -------------------\n", + "[INFO] [1712690293.283544]: SOMA.CanCut \n", + "[INFO] [1712690293.283794]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", + "[INFO] [1712690293.284047]: Ancestors: {SOMA.CanCut, DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.284307]: Subclasses: []\n", + "[INFO] [1712690293.284610]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.285104]: Instances: []\n", + "[INFO] [1712690293.285372]: Direct Instances: []\n", + "[INFO] [1712690293.285629]: Inverse Restrictions: []\n", + "[INFO] [1712690293.285884]: -------------------\n", + "[INFO] [1712690293.286130]: SOMA.Variability \n", + "[INFO] [1712690293.286392]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", + "[INFO] [1712690293.286645]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.286907]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", + "[INFO] [1712690293.287200]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.287731]: Instances: []\n", + "[INFO] [1712690293.288006]: Direct Instances: []\n", + "[INFO] [1712690293.288269]: Inverse Restrictions: []\n", + "[INFO] [1712690293.288516]: -------------------\n", + "[INFO] [1712690293.288763]: SOMA.Cutter \n", + "[INFO] [1712690293.289018]: Super classes: [SOMA.Tool, SOMA.Tool]\n", + "[INFO] [1712690293.289284]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Cutter, SOMA.Tool, DUL.Role}\n", + "[INFO] [1712690293.289536]: Subclasses: []\n", + "[INFO] [1712690293.289830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.290337]: Instances: []\n", + "[INFO] [1712690293.290608]: Direct Instances: []\n", + "[INFO] [1712690293.290932]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712690293.291181]: -------------------\n", + "[INFO] [1712690293.291441]: SOMA.CutObject \n", + "[INFO] [1712690293.291683]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", + "[INFO] [1712690293.291939]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CutObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", + "[INFO] [1712690293.292185]: Subclasses: []\n", + "[INFO] [1712690293.292478]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.292994]: Instances: []\n", + "[INFO] [1712690293.293267]: Direct Instances: []\n", + "[INFO] [1712690293.293585]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", + "[INFO] [1712690293.293839]: -------------------\n", + "[INFO] [1712690293.294103]: SOMA.Capability \n", + "[INFO] [1712690293.294361]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", + "[INFO] [1712690293.294633]: Ancestors: {DUL.Entity, SOMA.Capability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.294896]: Subclasses: [SOMA.CanSit]\n", + "[INFO] [1712690293.295193]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", + "[INFO] [1712690293.295688]: Instances: []\n", + "[INFO] [1712690293.295962]: Direct Instances: []\n", + "[INFO] [1712690293.296219]: Inverse Restrictions: []\n", + "[INFO] [1712690293.296472]: -------------------\n", + "[INFO] [1712690293.296710]: SOMA.Capacity \n", + "[INFO] [1712690293.297008]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690293.297279]: Ancestors: {DUL.Entity, SOMA.Capacity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690293.297544]: Subclasses: []\n", + "[INFO] [1712690293.297844]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.298343]: Instances: []\n", + "[INFO] [1712690293.298621]: Direct Instances: []\n", + "[INFO] [1712690293.298929]: Inverse Restrictions: []\n", + "[INFO] [1712690293.299180]: -------------------\n", + "[INFO] [1712690293.299422]: SOMA.Intrinsic \n", + "[INFO] [1712690293.299669]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712690293.299932]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690293.300217]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", + "[INFO] [1712690293.300526]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.301051]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712690293.301343]: Direct Instances: []\n", + "[INFO] [1712690293.301616]: Inverse Restrictions: []\n", + "[INFO] [1712690293.301862]: -------------------\n", + "[INFO] [1712690293.302109]: SOMA.Catching \n", + "[INFO] [1712690293.302349]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.302599]: Ancestors: {DUL.Entity, SOMA.Catching, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.302857]: Subclasses: []\n", + "[INFO] [1712690293.303165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.303651]: Instances: []\n", + "[INFO] [1712690293.303905]: Direct Instances: []\n", + "[INFO] [1712690293.304148]: Inverse Restrictions: []\n", + "[INFO] [1712690293.304401]: -------------------\n", + "[INFO] [1712690293.304645]: SOMA.PickingUp \n", + "[INFO] [1712690293.304893]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690293.305148]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.PickingUp}\n", + "[INFO] [1712690293.305460]: Subclasses: []\n", + "[INFO] [1712690293.305776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.306313]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712690293.306610]: Direct Instances: [SOMA.picking_up]\n", + "[INFO] [1712690293.306888]: Inverse Restrictions: []\n", + "[INFO] [1712690293.307137]: -------------------\n", + "[INFO] [1712690293.307377]: SOMA.CausalEventRole \n", + "[INFO] [1712690293.307613]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712690293.307872]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausalEventRole, SOMA.CausativeRole, DUL.Role}\n", + "[INFO] [1712690293.308119]: Subclasses: []\n", + "[INFO] [1712690293.308408]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.308889]: Instances: []\n", + "[INFO] [1712690293.309187]: Direct Instances: []\n", + "[INFO] [1712690293.309498]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690293.309736]: -------------------\n", + "[INFO] [1712690293.309968]: SOMA.EventAdjacentRole \n", + "[INFO] [1712690293.310194]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712690293.310444]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.310709]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712690293.311003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.311660]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690293.311953]: Direct Instances: []\n", + "[INFO] [1712690293.312230]: Inverse Restrictions: []\n", + "[INFO] [1712690293.312480]: -------------------\n", + "[INFO] [1712690293.312720]: SOMA.CausedMotionTheory \n", + "[INFO] [1712690293.313008]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", + "[INFO] [1712690293.313275]: Ancestors: {DUL.Entity, SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690293.313527]: Subclasses: []\n", + "[INFO] [1712690293.313864]: Properties: [DUL.defines, DUL.hasPart, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.314384]: Instances: []\n", + "[INFO] [1712690293.314678]: Direct Instances: []\n", + "[INFO] [1712690293.314943]: Inverse Restrictions: []\n", + "[INFO] [1712690293.315189]: -------------------\n", + "[INFO] [1712690293.315438]: SOMA.ImageSchemaTheory \n", + "[INFO] [1712690293.315673]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", + "[INFO] [1712690293.315919]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690293.316185]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", + "[INFO] [1712690293.316484]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.316997]: Instances: []\n", + "[INFO] [1712690293.317274]: Direct Instances: []\n", + "[INFO] [1712690293.317603]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", + "[INFO] [1712690293.317857]: -------------------\n", + "[INFO] [1712690293.318096]: SOMA.PerformerRole \n", + "[INFO] [1712690293.318343]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", + "[INFO] [1712690293.318592]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", + "[INFO] [1712690293.318864]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", + "[INFO] [1712690293.319164]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.319664]: Instances: []\n", + "[INFO] [1712690293.319919]: Direct Instances: []\n", + "[INFO] [1712690293.320233]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690293.320487]: -------------------\n", + "[INFO] [1712690293.320732]: SOMA.SourcePathGoalTheory \n", + "[INFO] [1712690293.320981]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", + "[INFO] [1712690293.321234]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.SourcePathGoalTheory}\n", + "[INFO] [1712690293.321497]: Subclasses: []\n", + "[INFO] [1712690293.321796]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.322286]: Instances: []\n", + "[INFO] [1712690293.322539]: Direct Instances: []\n", + "[INFO] [1712690293.322821]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", + "[INFO] [1712690293.323081]: -------------------\n", + "[INFO] [1712690293.323327]: SOMA.RoomSurface \n", + "[INFO] [1712690293.323572]: Super classes: [SOMA.Surface, SOMA.Surface]\n", + "[INFO] [1712690293.323817]: Ancestors: {DUL.Entity, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690293.324086]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", + "[INFO] [1712690293.324384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.324916]: Instances: []\n", + "[INFO] [1712690293.325342]: Direct Instances: []\n", + "[INFO] [1712690293.325654]: Inverse Restrictions: []\n", + "[INFO] [1712690293.325931]: -------------------\n", + "[INFO] [1712690293.326190]: SOMA.Channel \n", + "[INFO] [1712690293.326447]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712690293.326725]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690293.326985]: Subclasses: []\n", + "[INFO] [1712690293.327291]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", + "[INFO] [1712690293.327789]: Instances: []\n", + "[INFO] [1712690293.328066]: Direct Instances: []\n", + "[INFO] [1712690293.328382]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690293.328633]: -------------------\n", + "[INFO] [1712690293.328882]: SOMA.PathRole \n", + "[INFO] [1712690293.329126]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712690293.329389]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.PathRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690293.329647]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", + "[INFO] [1712690293.329949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.330444]: Instances: []\n", + "[INFO] [1712690293.330717]: Direct Instances: []\n", + "[INFO] [1712690293.331021]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712690293.331279]: -------------------\n", + "[INFO] [1712690293.331527]: SOMA.CommunicationTask \n", + "[INFO] [1712690293.331792]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", + "[INFO] [1712690293.332069]: Ancestors: {DUL.Entity, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.332336]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", + "[INFO] [1712690293.332644]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.333150]: Instances: []\n", + "[INFO] [1712690293.333660]: Direct Instances: []\n", + "[INFO] [1712690293.334193]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", + "[INFO] [1712690293.334471]: -------------------\n", + "[INFO] [1712690293.334733]: SOMA.CheckingObjectPresence \n", + "[INFO] [1712690293.334984]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712690293.335245]: Ancestors: {SOMA.CheckingObjectPresence, owl.Thing, SOMA.Perceiving}\n", + "[INFO] [1712690293.335510]: Subclasses: []\n", + "[INFO] [1712690293.335826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.336325]: Instances: []\n", + "[INFO] [1712690293.336584]: Direct Instances: []\n", + "[INFO] [1712690293.336842]: Inverse Restrictions: []\n", + "[INFO] [1712690293.337104]: -------------------\n", + "[INFO] [1712690293.337350]: SOMA.ChemicalProcess \n", + "[INFO] [1712690293.337585]: Super classes: [DUL.Process, DUL.Process]\n", + "[INFO] [1712690293.337829]: Ancestors: {DUL.Entity, DUL.Event, DUL.Process, owl.Thing, SOMA.ChemicalProcess}\n", + "[INFO] [1712690293.338070]: Subclasses: []\n", + "[INFO] [1712690293.338354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.338860]: Instances: []\n", + "[INFO] [1712690293.339125]: Direct Instances: []\n", + "[INFO] [1712690293.339380]: Inverse Restrictions: []\n", + "[INFO] [1712690293.339624]: -------------------\n", + "[INFO] [1712690293.339874]: SOMA.Choice \n", + "[INFO] [1712690293.340122]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", + "[INFO] [1712690293.340369]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.Choice, DUL.SocialObject, SOMA.ResultRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690293.340611]: Subclasses: []\n", + "[INFO] [1712690293.340904]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.341411]: Instances: []\n", + "[INFO] [1712690293.341676]: Direct Instances: []\n", + "[INFO] [1712690293.341938]: Inverse Restrictions: []\n", + "[INFO] [1712690293.342181]: -------------------\n", + "[INFO] [1712690293.342418]: SOMA.ResultRole \n", + "[INFO] [1712690293.342664]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", + "[INFO] [1712690293.342918]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.ResultRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690293.343167]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", + "[INFO] [1712690293.343452]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.343954]: Instances: []\n", + "[INFO] [1712690293.344222]: Direct Instances: []\n", + "[INFO] [1712690293.344481]: Inverse Restrictions: []\n", + "[INFO] [1712690293.344827]: -------------------\n", + "[INFO] [1712690293.345101]: SOMA.CircularCylinder \n", + "[INFO] [1712690293.345370]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712690293.345646]: Ancestors: {SOMA.CircularCylinder, DUL.Entity, SOMA.CylinderShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690293.345913]: Subclasses: []\n", + "[INFO] [1712690293.346230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", + "[INFO] [1712690293.346748]: Instances: []\n", + "[INFO] [1712690293.347056]: Direct Instances: []\n", + "[INFO] [1712690293.347320]: Inverse Restrictions: []\n", + "[INFO] [1712690293.347567]: -------------------\n", + "[INFO] [1712690293.347807]: SOMA.CylinderShape \n", + "[INFO] [1712690293.348052]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", + "[INFO] [1712690293.348299]: Ancestors: {DUL.Entity, SOMA.CylinderShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690293.348562]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", + "[INFO] [1712690293.348875]: Properties: [SOMA.hasLength, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", + "[INFO] [1712690293.349370]: Instances: []\n", + "[INFO] [1712690293.349643]: Direct Instances: []\n", + "[INFO] [1712690293.349899]: Inverse Restrictions: []\n", + "[INFO] [1712690293.350175]: -------------------\n", + "[INFO] [1712690293.350421]: SOMA.Classifier \n", + "[INFO] [1712690293.350657]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", + "[INFO] [1712690293.350904]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Classifier, SOMA.StatisticalReasoner, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.351160]: Subclasses: []\n", + "[INFO] [1712690293.351456]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690293.351955]: Instances: []\n", + "[INFO] [1712690293.352212]: Direct Instances: []\n", + "[INFO] [1712690293.352458]: Inverse Restrictions: []\n", + "[INFO] [1712690293.352708]: -------------------\n", + "[INFO] [1712690293.353079]: SOMA.StatisticalReasoner \n", + "[INFO] [1712690293.353398]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712690293.353695]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.353978]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", + "[INFO] [1712690293.354289]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690293.354793]: Instances: []\n", + "[INFO] [1712690293.355078]: Direct Instances: []\n", + "[INFO] [1712690293.355352]: Inverse Restrictions: []\n", + "[INFO] [1712690293.355608]: -------------------\n", + "[INFO] [1712690293.355854]: SOMA.ClausalObject \n", + "[INFO] [1712690293.356096]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712690293.356356]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.ClausalObject}\n", + "[INFO] [1712690293.356623]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", + "[INFO] [1712690293.356929]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.357428]: Instances: []\n", + "[INFO] [1712690293.357687]: Direct Instances: []\n", + "[INFO] [1712690293.357949]: Inverse Restrictions: []\n", + "[INFO] [1712690293.358197]: -------------------\n", + "[INFO] [1712690293.358442]: SOMA.Phrase \n", + "[INFO] [1712690293.358681]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", + "[INFO] [1712690293.358927]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.359172]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712690293.359476]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690293.359986]: Instances: []\n", + "[INFO] [1712690293.360250]: Direct Instances: []\n", + "[INFO] [1712690293.360499]: Inverse Restrictions: []\n", + "[INFO] [1712690293.360749]: -------------------\n", + "[INFO] [1712690293.361004]: SOMA.Clean \n", + "[INFO] [1712690293.361247]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712690293.361489]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion, SOMA.Clean}\n", + "[INFO] [1712690293.361728]: Subclasses: []\n", + "[INFO] [1712690293.362011]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.362515]: Instances: []\n", + "[INFO] [1712690293.362786]: Direct Instances: []\n", + "[INFO] [1712690293.363112]: Inverse Restrictions: []\n", + "[INFO] [1712690293.363359]: -------------------\n", + "[INFO] [1712690293.363598]: SOMA.CleanlinessRegion \n", + "[INFO] [1712690293.363838]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690293.364089]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion}\n", + "[INFO] [1712690293.364344]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", + "[INFO] [1712690293.364636]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.365127]: Instances: []\n", + "[INFO] [1712690293.365408]: Direct Instances: []\n", + "[INFO] [1712690293.365735]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", + "[INFO] [1712690293.365982]: -------------------\n", + "[INFO] [1712690293.366221]: SOMA.Cleaning \n", + "[INFO] [1712690293.366462]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", + "[INFO] [1712690293.366727]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, SOMA.Cleaning, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690293.367014]: Subclasses: []\n", + "[INFO] [1712690293.367322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690293.367831]: Instances: []\n", + "[INFO] [1712690293.368104]: Direct Instances: []\n", + "[INFO] [1712690293.368368]: Inverse Restrictions: []\n", + "[INFO] [1712690293.368609]: -------------------\n", + "[INFO] [1712690293.368849]: SOMA.ModifyingPhysicalObject \n", + "[INFO] [1712690293.369102]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690293.369359]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690293.369623]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", + "[INFO] [1712690293.369917]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.370433]: Instances: []\n", + "[INFO] [1712690293.370703]: Direct Instances: []\n", + "[INFO] [1712690293.370966]: Inverse Restrictions: []\n", + "[INFO] [1712690293.371209]: -------------------\n", + "[INFO] [1712690293.371450]: SOMA.Purification \n", + "[INFO] [1712690293.371861]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712690293.372246]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Purification}\n", + "[INFO] [1712690293.372616]: Subclasses: []\n", + "[INFO] [1712690293.373039]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.373695]: Instances: []\n", + "[INFO] [1712690293.374087]: Direct Instances: []\n", + "[INFO] [1712690293.374500]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", + "[INFO] [1712690293.374864]: -------------------\n", + "[INFO] [1712690293.375130]: SOMA.Cleanliness \n", + "[INFO] [1712690293.375401]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", + "[INFO] [1712690293.375664]: Ancestors: {DUL.Entity, SOMA.SocialQuality, SOMA.Cleanliness, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.375914]: Subclasses: []\n", + "[INFO] [1712690293.376209]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712690293.376702]: Instances: []\n", + "[INFO] [1712690293.376998]: Direct Instances: []\n", + "[INFO] [1712690293.377339]: Inverse Restrictions: []\n", + "[INFO] [1712690293.377594]: -------------------\n", + "[INFO] [1712690293.377842]: SOMA.SocialQuality \n", + "[INFO] [1712690293.378101]: Super classes: [DUL.Quality, DUL.Quality]\n", + "[INFO] [1712690293.378348]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.SocialQuality, owl.Thing}\n", + "[INFO] [1712690293.378609]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", + "[INFO] [1712690293.378900]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.379414]: Instances: []\n", + "[INFO] [1712690293.379682]: Direct Instances: []\n", + "[INFO] [1712690293.379945]: Inverse Restrictions: []\n", + "[INFO] [1712690293.380187]: -------------------\n", + "[INFO] [1712690293.380425]: SOMA.Client-Server_Specification \n", + "[INFO] [1712690293.380687]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", + "[INFO] [1712690293.380958]: Ancestors: {DUL.Entity, SOMA.InterfaceSpecification, DUL.SocialObject, SOMA.Client-Server_Specification, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690293.381208]: Subclasses: []\n", + "[INFO] [1712690293.381504]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesRole, rdf-schema.label]\n", + "[INFO] [1712690293.381998]: Instances: []\n", + "[INFO] [1712690293.382278]: Direct Instances: []\n", + "[INFO] [1712690293.382609]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", + "[INFO] [1712690293.382864]: -------------------\n", + "[INFO] [1712690293.383111]: SOMA.ClientRole \n", + "[INFO] [1712690293.383360]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712690293.383613]: Ancestors: {SOMA.ClientRole, DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.383870]: Subclasses: []\n", + "[INFO] [1712690293.384171]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.384661]: Instances: []\n", + "[INFO] [1712690293.384936]: Direct Instances: []\n", + "[INFO] [1712690293.385245]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712690293.385492]: -------------------\n", + "[INFO] [1712690293.385743]: SOMA.ServerRole \n", + "[INFO] [1712690293.385987]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", + "[INFO] [1712690293.386240]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.ServerRole, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.386512]: Subclasses: []\n", + "[INFO] [1712690293.386817]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.387317]: Instances: []\n", + "[INFO] [1712690293.387572]: Direct Instances: []\n", + "[INFO] [1712690293.387880]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", + "[INFO] [1712690293.388140]: -------------------\n", + "[INFO] [1712690293.388386]: SOMA.InterfaceComponentRole \n", + "[INFO] [1712690293.388628]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690293.388882]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.389160]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", + "[INFO] [1712690293.389472]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690293.389982]: Instances: []\n", + "[INFO] [1712690293.390257]: Direct Instances: []\n", + "[INFO] [1712690293.390523]: Inverse Restrictions: []\n", + "[INFO] [1712690293.390771]: -------------------\n", + "[INFO] [1712690293.391011]: SOMA.Closing \n", + "[INFO] [1712690293.391244]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.391494]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, SOMA.Closing, owl.Thing}\n", + "[INFO] [1712690293.391754]: Subclasses: []\n", + "[INFO] [1712690293.392065]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.392559]: Instances: []\n", + "[INFO] [1712690293.392817]: Direct Instances: []\n", + "[INFO] [1712690293.393063]: Inverse Restrictions: []\n", + "[INFO] [1712690293.393315]: -------------------\n", + "[INFO] [1712690293.393558]: SOMA.Delivering \n", + "[INFO] [1712690293.393803]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712690293.394049]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Delivering, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.394297]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", + "[INFO] [1712690293.394615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690293.395116]: Instances: []\n", + "[INFO] [1712690293.395374]: Direct Instances: []\n", + "[INFO] [1712690293.395630]: Inverse Restrictions: []\n", + "[INFO] [1712690293.395872]: -------------------\n", + "[INFO] [1712690293.396120]: SOMA.Fetching \n", + "[INFO] [1712690293.396360]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", + "[INFO] [1712690293.396609]: Ancestors: {DUL.Entity, SOMA.Fetching, DUL.Concept, DUL.SocialObject, SOMA.PhysicalAcquiring, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690293.396881]: Subclasses: []\n", + "[INFO] [1712690293.397196]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.397690]: Instances: []\n", + "[INFO] [1712690293.397960]: Direct Instances: []\n", + "[INFO] [1712690293.398219]: Inverse Restrictions: []\n", + "[INFO] [1712690293.398459]: -------------------\n", + "[INFO] [1712690293.398692]: SOMA.Lifting \n", + "[INFO] [1712690293.398925]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.399182]: Ancestors: {DUL.Entity, SOMA.Lifting, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.399724]: Subclasses: []\n", + "[INFO] [1712690293.400287]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.400800]: Instances: []\n", + "[INFO] [1712690293.401082]: Direct Instances: []\n", + "[INFO] [1712690293.401354]: Inverse Restrictions: []\n", + "[INFO] [1712690293.401609]: -------------------\n", + "[INFO] [1712690293.401865]: SOMA.Opening \n", + "[INFO] [1712690293.402107]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.402366]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Opening}\n", + "[INFO] [1712690293.402626]: Subclasses: []\n", + "[INFO] [1712690293.402936]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.403433]: Instances: []\n", + "[INFO] [1712690293.403693]: Direct Instances: []\n", + "[INFO] [1712690293.403955]: Inverse Restrictions: []\n", + "[INFO] [1712690293.404211]: -------------------\n", + "[INFO] [1712690293.404455]: SOMA.Pulling \n", + "[INFO] [1712690293.404690]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.404989]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pulling}\n", + "[INFO] [1712690293.405288]: Subclasses: []\n", + "[INFO] [1712690293.405612]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.406108]: Instances: []\n", + "[INFO] [1712690293.406383]: Direct Instances: []\n", + "[INFO] [1712690293.406654]: Inverse Restrictions: []\n", + "[INFO] [1712690293.406909]: -------------------\n", + "[INFO] [1712690293.407145]: SOMA.Pushing \n", + "[INFO] [1712690293.407396]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.407654]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, SOMA.Pushing, SOMA.PhysicalTask, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.407912]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", + "[INFO] [1712690293.408216]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.408729]: Instances: []\n", + "[INFO] [1712690293.409003]: Direct Instances: []\n", + "[INFO] [1712690293.409266]: Inverse Restrictions: []\n", + "[INFO] [1712690293.409508]: -------------------\n", + "[INFO] [1712690293.409745]: SOMA.Squeezing \n", + "[INFO] [1712690293.409996]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.410251]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Squeezing, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.410496]: Subclasses: []\n", + "[INFO] [1712690293.410783]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.411288]: Instances: []\n", + "[INFO] [1712690293.411552]: Direct Instances: []\n", + "[INFO] [1712690293.411844]: Inverse Restrictions: []\n", + "[INFO] [1712690293.412097]: -------------------\n", + "[INFO] [1712690293.412343]: SOMA.Linkage \n", + "[INFO] [1712690293.412594]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", + "[INFO] [1712690293.412866]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Linkage, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.413125]: Subclasses: [SOMA.ClosingDisposition]\n", + "[INFO] [1712690293.413430]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.413944]: Instances: []\n", + "[INFO] [1712690293.414230]: Direct Instances: []\n", + "[INFO] [1712690293.414495]: Inverse Restrictions: []\n", + "[INFO] [1712690293.414745]: -------------------\n", + "[INFO] [1712690293.414987]: SOMA.Clumsiness \n", + "[INFO] [1712690293.415231]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712690293.415501]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Clumsiness}\n", + "[INFO] [1712690293.415774]: Subclasses: []\n", + "[INFO] [1712690293.416080]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.416574]: Instances: []\n", + "[INFO] [1712690293.416894]: Direct Instances: []\n", + "[INFO] [1712690293.417183]: Inverse Restrictions: []\n", + "[INFO] [1712690293.417443]: -------------------\n", + "[INFO] [1712690293.417692]: SOMA.CognitiveAgent \n", + "[INFO] [1712690293.417935]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712690293.418192]: Ancestors: {DUL.Entity, SOMA.CognitiveAgent, owl.Thing, DUL.Object, DUL.Agent}\n", + "[INFO] [1712690293.418463]: Subclasses: []\n", + "[INFO] [1712690293.418778]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.419279]: Instances: []\n", + "[INFO] [1712690293.419557]: Direct Instances: []\n", + "[INFO] [1712690293.419818]: Inverse Restrictions: []\n", + "[INFO] [1712690293.420071]: -------------------\n", + "[INFO] [1712690293.420315]: SOMA.SubCognitiveAgent \n", + "[INFO] [1712690293.420557]: Super classes: [DUL.Agent, DUL.Agent]\n", + "[INFO] [1712690293.420807]: Ancestors: {DUL.Entity, SOMA.SubCognitiveAgent, owl.Thing, DUL.Object, DUL.Agent}\n", + "[INFO] [1712690293.421072]: Subclasses: []\n", + "[INFO] [1712690293.421376]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.421871]: Instances: []\n", + "[INFO] [1712690293.422138]: Direct Instances: []\n", + "[INFO] [1712690293.422400]: Inverse Restrictions: []\n", + "[INFO] [1712690293.422657]: -------------------\n", + "[INFO] [1712690293.422907]: SOMA.Collision \n", + "[INFO] [1712690293.423156]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", + "[INFO] [1712690293.423406]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Collision}\n", + "[INFO] [1712690293.423666]: Subclasses: []\n", + "[INFO] [1712690293.423965]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.424463]: Instances: []\n", + "[INFO] [1712690293.424746]: Direct Instances: []\n", + "[INFO] [1712690293.425017]: Inverse Restrictions: []\n", + "[INFO] [1712690293.425270]: -------------------\n", + "[INFO] [1712690293.425520]: SOMA.Extrinsic \n", + "[INFO] [1712690293.425758]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", + "[INFO] [1712690293.426007]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.426276]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", + "[INFO] [1712690293.426584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.427130]: Instances: []\n", + "[INFO] [1712690293.427409]: Direct Instances: []\n", + "[INFO] [1712690293.427674]: Inverse Restrictions: []\n", + "[INFO] [1712690293.427923]: -------------------\n", + "[INFO] [1712690293.428170]: SOMA.ImperativeClause \n", + "[INFO] [1712690293.428431]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", + "[INFO] [1712690293.428703]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, SOMA.ImperativeClause, owl.Thing, DUL.Object, SOMA.ClausalObject}\n", + "[INFO] [1712690293.428963]: Subclasses: []\n", + "[INFO] [1712690293.429266]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.429765]: Instances: []\n", + "[INFO] [1712690293.430053]: Direct Instances: []\n", + "[INFO] [1712690293.430360]: Inverse Restrictions: []\n", + "[INFO] [1712690293.430613]: -------------------\n", + "[INFO] [1712690293.430859]: SOMA.CommitedObject \n", + "[INFO] [1712690293.431103]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712690293.431365]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CommitedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.431639]: Subclasses: []\n", + "[INFO] [1712690293.431949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.432449]: Instances: []\n", + "[INFO] [1712690293.432754]: Direct Instances: []\n", + "[INFO] [1712690293.433041]: Inverse Restrictions: []\n", + "[INFO] [1712690293.433299]: -------------------\n", + "[INFO] [1712690293.433546]: SOMA.ConnectedObject \n", + "[INFO] [1712690293.433788]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.434038]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.434297]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", + "[INFO] [1712690293.434602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.435100]: Instances: []\n", + "[INFO] [1712690293.435360]: Direct Instances: []\n", + "[INFO] [1712690293.435704]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", + "[INFO] [1712690293.435964]: -------------------\n", + "[INFO] [1712690293.436216]: SOMA.CommunicationAction \n", + "[INFO] [1712690293.436464]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", + "[INFO] [1712690293.436711]: Ancestors: {DUL.Entity, DUL.Event, SOMA.CommunicationAction, owl.Thing, DUL.Action}\n", + "[INFO] [1712690293.436960]: Subclasses: []\n", + "[INFO] [1712690293.437254]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690293.437769]: Instances: []\n", + "[INFO] [1712690293.438040]: Direct Instances: []\n", + "[INFO] [1712690293.438330]: Inverse Restrictions: []\n", + "[INFO] [1712690293.438575]: -------------------\n", + "[INFO] [1712690293.438817]: SOMA.LinguisticObject \n", + "[INFO] [1712690293.439068]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712690293.439316]: Ancestors: {DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.439567]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", + "[INFO] [1712690293.439852]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690293.440359]: Instances: []\n", + "[INFO] [1712690293.440629]: Direct Instances: []\n", + "[INFO] [1712690293.440927]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", + "[INFO] [1712690293.441176]: -------------------\n", + "[INFO] [1712690293.441413]: SOMA.CommunicationReport \n", + "[INFO] [1712690293.441649]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690293.441913]: Ancestors: {DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.442168]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", + "[INFO] [1712690293.442457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.442942]: Instances: []\n", + "[INFO] [1712690293.443218]: Direct Instances: []\n", + "[INFO] [1712690293.443477]: Inverse Restrictions: []\n", + "[INFO] [1712690293.443718]: -------------------\n", + "[INFO] [1712690293.443952]: SOMA.Receiver \n", + "[INFO] [1712690293.444188]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712690293.444443]: Ancestors: {SOMA.ExperiencerRole, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.Receiver, SOMA.PerformerRole, DUL.Role}\n", + "[INFO] [1712690293.444704]: Subclasses: []\n", + "[INFO] [1712690293.445008]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", + "[INFO] [1712690293.445507]: Instances: []\n", + "[INFO] [1712690293.445763]: Direct Instances: []\n", + "[INFO] [1712690293.446074]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690293.446332]: -------------------\n", + "[INFO] [1712690293.446579]: SOMA.Sender \n", + "[INFO] [1712690293.446823]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", + "[INFO] [1712690293.447073]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Sender, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", + "[INFO] [1712690293.447333]: Subclasses: []\n", + "[INFO] [1712690293.447644]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", + "[INFO] [1712690293.448142]: Instances: []\n", + "[INFO] [1712690293.448402]: Direct Instances: []\n", + "[INFO] [1712690293.448723]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690293.449046]: -------------------\n", + "[INFO] [1712690293.449339]: SOMA.CommunicationTopic \n", + "[INFO] [1712690293.449625]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", + "[INFO] [1712690293.449915]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.450188]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690293.450500]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.451025]: Instances: []\n", + "[INFO] [1712690293.451293]: Direct Instances: []\n", + "[INFO] [1712690293.451561]: Inverse Restrictions: []\n", + "[INFO] [1712690293.451809]: -------------------\n", + "[INFO] [1712690293.452053]: SOMA.ResourceRole \n", + "[INFO] [1712690293.452291]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690293.452532]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.452804]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", + "[INFO] [1712690293.453120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.453746]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690293.454055]: Direct Instances: []\n", + "[INFO] [1712690293.454331]: Inverse Restrictions: []\n", + "[INFO] [1712690293.454590]: -------------------\n", + "[INFO] [1712690293.454850]: SOMA.Composing \n", + "[INFO] [1712690293.455107]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712690293.455365]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Composing}\n", + "[INFO] [1712690293.455614]: Subclasses: []\n", + "[INFO] [1712690293.455909]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.456400]: Instances: []\n", + "[INFO] [1712690293.456683]: Direct Instances: []\n", + "[INFO] [1712690293.457050]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712690293.457365]: -------------------\n", + "[INFO] [1712690293.457640]: SOMA.Computer_Language \n", + "[INFO] [1712690293.457897]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", + "[INFO] [1712690293.458161]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.458454]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", + "[INFO] [1712690293.458768]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.459297]: Instances: []\n", + "[INFO] [1712690293.459584]: Direct Instances: []\n", + "[INFO] [1712690293.459852]: Inverse Restrictions: []\n", + "[INFO] [1712690293.460102]: -------------------\n", + "[INFO] [1712690293.460341]: SOMA.FormalLanguage \n", + "[INFO] [1712690293.460585]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", + "[INFO] [1712690293.460850]: Ancestors: {DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.461127]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690293.461439]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.462000]: Instances: []\n", + "[INFO] [1712690293.462315]: Direct Instances: []\n", + "[INFO] [1712690293.462690]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712690293.462993]: -------------------\n", + "[INFO] [1712690293.463302]: SOMA.Computer_Program \n", + "[INFO] [1712690293.463609]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.463939]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712690293.464283]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", + "[INFO] [1712690293.464694]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", + "[INFO] [1712690293.465509]: Instances: []\n", + "[INFO] [1712690293.465973]: Direct Instances: []\n", + "[INFO] [1712690293.466561]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", + "[INFO] [1712690293.467054]: -------------------\n", + "[INFO] [1712690293.467511]: SOMA.Programming_Language \n", + "[INFO] [1712690293.467957]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", + "[INFO] [1712690293.468443]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.Programming_Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.468973]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712690293.469599]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.470660]: Instances: []\n", + "[INFO] [1712690293.471279]: Direct Instances: []\n", + "[INFO] [1712690293.472049]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712690293.472693]: -------------------\n", + "[INFO] [1712690293.473499]: SOMA.Conclusion \n", + "[INFO] [1712690293.474225]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", + "[INFO] [1712690293.474929]: Ancestors: {SOMA.Conclusion, DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.CreatedObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.475596]: Subclasses: []\n", + "[INFO] [1712690293.476390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.477711]: Instances: []\n", + "[INFO] [1712690293.478828]: Direct Instances: []\n", + "[INFO] [1712690293.479762]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690293.480356]: -------------------\n", + "[INFO] [1712690293.481483]: SOMA.CreatedObject \n", + "[INFO] [1712690293.482480]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.483552]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CreatedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.484733]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", + "[INFO] [1712690293.486163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.488374]: Instances: []\n", + "[INFO] [1712690293.489790]: Direct Instances: []\n", + "[INFO] [1712690293.490938]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", + "[INFO] [1712690293.491856]: -------------------\n", + "[INFO] [1712690293.492725]: SOMA.Knowledge \n", + "[INFO] [1712690293.493643]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712690293.494572]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.495437]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", + "[INFO] [1712690293.496358]: Properties: [rdf-schema.isDefinedBy]\n", + "[INFO] [1712690293.497837]: Instances: []\n", + "[INFO] [1712690293.498549]: Direct Instances: []\n", + "[INFO] [1712690293.499602]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", + "[INFO] [1712690293.500208]: -------------------\n", + "[INFO] [1712690293.500786]: SOMA.ConditionalSuccedence \n", + "[INFO] [1712690293.501341]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", + "[INFO] [1712690293.501910]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, SOMA.ConditionalSuccedence, DUL.Description, SOMA.Succedence}\n", + "[INFO] [1712690293.502437]: Subclasses: []\n", + "[INFO] [1712690293.503079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.504038]: Instances: []\n", + "[INFO] [1712690293.504533]: Direct Instances: []\n", + "[INFO] [1712690293.505003]: Inverse Restrictions: []\n", + "[INFO] [1712690293.505435]: -------------------\n", + "[INFO] [1712690293.506076]: SOMA.Configuration \n", + "[INFO] [1712690293.506670]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", + "[INFO] [1712690293.507288]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Configuration, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690293.507941]: Subclasses: []\n", + "[INFO] [1712690293.508713]: Properties: [DUL.describes, rdf-schema.comment, rdf-schema.isDefinedBy]\n", + "[INFO] [1712690293.509800]: Instances: []\n", + "[INFO] [1712690293.510398]: Direct Instances: []\n", + "[INFO] [1712690293.510962]: Inverse Restrictions: []\n", + "[INFO] [1712690293.511471]: -------------------\n", + "[INFO] [1712690293.511957]: SOMA.Connectivity \n", + "[INFO] [1712690293.512448]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", + "[INFO] [1712690293.512969]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.513453]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712690293.514004]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.514853]: Instances: []\n", + "[INFO] [1712690293.515306]: Direct Instances: []\n", + "[INFO] [1712690293.515808]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", + "[INFO] [1712690293.516190]: -------------------\n", + "[INFO] [1712690293.516551]: SOMA.ContactState \n", + "[INFO] [1712690293.516927]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", + "[INFO] [1712690293.517325]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.StateType, SOMA.ContactState, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.517688]: Subclasses: []\n", + "[INFO] [1712690293.518108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.518792]: Instances: []\n", + "[INFO] [1712690293.519159]: Direct Instances: []\n", + "[INFO] [1712690293.519489]: Inverse Restrictions: []\n", + "[INFO] [1712690293.519792]: -------------------\n", + "[INFO] [1712690293.520093]: SOMA.Container \n", + "[INFO] [1712690293.520367]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712690293.520658]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, SOMA.Container, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.520952]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", + "[INFO] [1712690293.521278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.521821]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690293.522115]: Direct Instances: []\n", + "[INFO] [1712690293.522465]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712690293.522723]: -------------------\n", + "[INFO] [1712690293.522974]: SOMA.Containment \n", + "[INFO] [1712690293.523228]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", + "[INFO] [1712690293.523493]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.523756]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712690293.524056]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.524557]: Instances: []\n", + "[INFO] [1712690293.524831]: Direct Instances: []\n", + "[INFO] [1712690293.525219]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", + "[INFO] [1712690293.525465]: -------------------\n", + "[INFO] [1712690293.525702]: SOMA.IncludedObject \n", + "[INFO] [1712690293.525935]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.526181]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.526441]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712690293.526736]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.527232]: Instances: []\n", + "[INFO] [1712690293.527490]: Direct Instances: []\n", + "[INFO] [1712690293.527787]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", + "[INFO] [1712690293.528033]: -------------------\n", + "[INFO] [1712690293.528272]: SOMA.ContainmentState \n", + "[INFO] [1712690293.528515]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", + "[INFO] [1712690293.528761]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing, SOMA.ContainmentState}\n", + "[INFO] [1712690293.529026]: Subclasses: []\n", + "[INFO] [1712690293.529326]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.529815]: Instances: []\n", + "[INFO] [1712690293.530067]: Direct Instances: []\n", + "[INFO] [1712690293.530334]: Inverse Restrictions: []\n", + "[INFO] [1712690293.530575]: -------------------\n", + "[INFO] [1712690293.530808]: SOMA.FunctionalControl \n", + "[INFO] [1712690293.531046]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712690293.531301]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.531571]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", + "[INFO] [1712690293.531872]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.532372]: Instances: []\n", + "[INFO] [1712690293.532645]: Direct Instances: []\n", + "[INFO] [1712690293.532914]: Inverse Restrictions: []\n", + "[INFO] [1712690293.533160]: -------------------\n", + "[INFO] [1712690293.533400]: SOMA.ContainmentTheory \n", + "[INFO] [1712690293.533634]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712690293.533880]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, SOMA.ContainmentTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690293.534136]: Subclasses: []\n", + "[INFO] [1712690293.534436]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.534921]: Instances: []\n", + "[INFO] [1712690293.535192]: Direct Instances: []\n", + "[INFO] [1712690293.535448]: Inverse Restrictions: []\n", + "[INFO] [1712690293.535686]: -------------------\n", + "[INFO] [1712690293.535925]: SOMA.ControlTheory \n", + "[INFO] [1712690293.536157]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712690293.536402]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690293.536663]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", + "[INFO] [1712690293.536960]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.537453]: Instances: []\n", + "[INFO] [1712690293.537709]: Direct Instances: []\n", + "[INFO] [1712690293.537958]: Inverse Restrictions: []\n", + "[INFO] [1712690293.538206]: -------------------\n", + "[INFO] [1712690293.538446]: SOMA.ContinuousJoint \n", + "[INFO] [1712690293.538684]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", + "[INFO] [1712690293.538930]: Ancestors: {DUL.Entity, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject, SOMA.ContinuousJoint}\n", + "[INFO] [1712690293.539187]: Subclasses: []\n", + "[INFO] [1712690293.539481]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.539968]: Instances: []\n", + "[INFO] [1712690293.540221]: Direct Instances: []\n", + "[INFO] [1712690293.540482]: Inverse Restrictions: []\n", + "[INFO] [1712690293.540726]: -------------------\n", + "[INFO] [1712690293.540966]: SOMA.HingeJoint \n", + "[INFO] [1712690293.541200]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712690293.541440]: Ancestors: {DUL.Entity, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690293.541684]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", + "[INFO] [1712690293.541985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.542480]: Instances: []\n", + "[INFO] [1712690293.542738]: Direct Instances: []\n", + "[INFO] [1712690293.542988]: Inverse Restrictions: []\n", + "[INFO] [1712690293.543238]: -------------------\n", + "[INFO] [1712690293.543482]: SOMA.FunctionalSpatialSchemaTheory \n", + "[INFO] [1712690293.543727]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712690293.543970]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690293.544232]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", + "[INFO] [1712690293.544531]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.545027]: Instances: []\n", + "[INFO] [1712690293.545301]: Direct Instances: []\n", + "[INFO] [1712690293.545561]: Inverse Restrictions: []\n", + "[INFO] [1712690293.545797]: -------------------\n", + "[INFO] [1712690293.546035]: SOMA.Cover \n", + "[INFO] [1712690293.546269]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712690293.546510]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Cover, DUL.Role}\n", + "[INFO] [1712690293.546769]: Subclasses: []\n", + "[INFO] [1712690293.547068]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.547568]: Instances: []\n", + "[INFO] [1712690293.547843]: Direct Instances: []\n", + "[INFO] [1712690293.548141]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712690293.548393]: -------------------\n", + "[INFO] [1712690293.548634]: SOMA.Coverage \n", + "[INFO] [1712690293.548885]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", + "[INFO] [1712690293.549140]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Coverage, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.549399]: Subclasses: []\n", + "[INFO] [1712690293.549699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.550195]: Instances: []\n", + "[INFO] [1712690293.550456]: Direct Instances: []\n", + "[INFO] [1712690293.550715]: Inverse Restrictions: []\n", + "[INFO] [1712690293.550960]: -------------------\n", + "[INFO] [1712690293.551195]: SOMA.CoveredObject \n", + "[INFO] [1712690293.551427]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712690293.551668]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CoveredObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.551922]: Subclasses: []\n", + "[INFO] [1712690293.552215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.552697]: Instances: []\n", + "[INFO] [1712690293.552972]: Direct Instances: []\n", + "[INFO] [1712690293.553267]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", + "[INFO] [1712690293.553515]: -------------------\n", + "[INFO] [1712690293.553751]: SOMA.CoverageTheory \n", + "[INFO] [1712690293.553986]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712690293.554232]: Ancestors: {DUL.Entity, DUL.Description, SOMA.CoverageTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690293.554484]: Subclasses: []\n", + "[INFO] [1712690293.554775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.555265]: Instances: []\n", + "[INFO] [1712690293.555525]: Direct Instances: []\n", + "[INFO] [1712690293.555781]: Inverse Restrictions: []\n", + "[INFO] [1712690293.556024]: -------------------\n", + "[INFO] [1712690293.556260]: SOMA.CoveringTheory \n", + "[INFO] [1712690293.556503]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", + "[INFO] [1712690293.556742]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.CoveringTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690293.556988]: Subclasses: []\n", + "[INFO] [1712690293.557295]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.557792]: Instances: []\n", + "[INFO] [1712690293.558048]: Direct Instances: []\n", + "[INFO] [1712690293.558296]: Inverse Restrictions: []\n", + "[INFO] [1712690293.558541]: -------------------\n", + "[INFO] [1712690293.558784]: SOMA.ExecutableSchematicTheory \n", + "[INFO] [1712690293.559021]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", + "[INFO] [1712690293.559261]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690293.559510]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", + "[INFO] [1712690293.559814]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.560316]: Instances: []\n", + "[INFO] [1712690293.560572]: Direct Instances: []\n", + "[INFO] [1712690293.560840]: Inverse Restrictions: []\n", + "[INFO] [1712690293.561083]: -------------------\n", + "[INFO] [1712690293.561317]: SOMA.CrackingTheory \n", + "[INFO] [1712690293.561555]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712690293.561798]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.CrackingTheory, DUL.Description, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690293.562033]: Subclasses: []\n", + "[INFO] [1712690293.562330]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.562818]: Instances: []\n", + "[INFO] [1712690293.563073]: Direct Instances: []\n", + "[INFO] [1712690293.563319]: Inverse Restrictions: []\n", + "[INFO] [1712690293.563559]: -------------------\n", + "[INFO] [1712690293.563801]: SOMA.Creation \n", + "[INFO] [1712690293.564039]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", + "[INFO] [1712690293.564284]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Creation, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.564522]: Subclasses: []\n", + "[INFO] [1712690293.564818]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.565318]: Instances: []\n", + "[INFO] [1712690293.565576]: Direct Instances: []\n", + "[INFO] [1712690293.565818]: Inverse Restrictions: []\n", + "[INFO] [1712690293.566043]: -------------------\n", + "[INFO] [1712690293.566275]: SOMA.Insertion \n", + "[INFO] [1712690293.566513]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", + "[INFO] [1712690293.566753]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Insertion, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.567002]: Subclasses: []\n", + "[INFO] [1712690293.567290]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.567795]: Instances: []\n", + "[INFO] [1712690293.568058]: Direct Instances: []\n", + "[INFO] [1712690293.568392]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", + "[INFO] [1712690293.568636]: -------------------\n", + "[INFO] [1712690293.568890]: SOMA.DesignedFurniture \n", + "[INFO] [1712690293.569135]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712690293.569380]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690293.569632]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", + "[INFO] [1712690293.569919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.570441]: Instances: []\n", + "[INFO] [1712690293.570707]: Direct Instances: []\n", + "[INFO] [1712690293.570967]: Inverse Restrictions: []\n", + "[INFO] [1712690293.571208]: -------------------\n", + "[INFO] [1712690293.571446]: SOMA.Cuttability \n", + "[INFO] [1712690293.571684]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", + "[INFO] [1712690293.571939]: Ancestors: {DUL.Entity, SOMA.Cuttability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.572191]: Subclasses: []\n", + "[INFO] [1712690293.572484]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.572977]: Instances: []\n", + "[INFO] [1712690293.573250]: Direct Instances: []\n", + "[INFO] [1712690293.573505]: Inverse Restrictions: []\n", + "[INFO] [1712690293.573747]: -------------------\n", + "[INFO] [1712690293.573982]: SOMA.Tool \n", + "[INFO] [1712690293.574211]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712690293.574451]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Tool, DUL.Role}\n", + "[INFO] [1712690293.574710]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", + "[INFO] [1712690293.575002]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.575504]: Instances: []\n", + "[INFO] [1712690293.575760]: Direct Instances: []\n", + "[INFO] [1712690293.576057]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", + "[INFO] [1712690293.576306]: -------------------\n", + "[INFO] [1712690293.576545]: SOMA.Cutting \n", + "[INFO] [1712690293.576780]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712690293.577027]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting}\n", + "[INFO] [1712690293.577280]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", + "[INFO] [1712690293.577579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.578072]: Instances: []\n", + "[INFO] [1712690293.578324]: Direct Instances: []\n", + "[INFO] [1712690293.578569]: Inverse Restrictions: []\n", + "[INFO] [1712690293.578815]: -------------------\n", + "[INFO] [1712690293.579056]: SOMA.DesignedTool \n", + "[INFO] [1712690293.579291]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", + "[INFO] [1712690293.579527]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", + "[INFO] [1712690293.579780]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", + "[INFO] [1712690293.580072]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.580601]: Instances: []\n", + "[INFO] [1712690293.580880]: Direct Instances: []\n", + "[INFO] [1712690293.581150]: Inverse Restrictions: []\n", + "[INFO] [1712690293.581404]: -------------------\n", + "[INFO] [1712690293.581646]: SOMA.Shaping \n", + "[INFO] [1712690293.581894]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", + "[INFO] [1712690293.582157]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Shaping}\n", + "[INFO] [1712690293.582408]: Subclasses: []\n", + "[INFO] [1712690293.582701]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.583240]: Instances: []\n", + "[INFO] [1712690293.583510]: Direct Instances: []\n", + "[INFO] [1712690293.583798]: Inverse Restrictions: [SOMA.CuttingTool]\n", + "[INFO] [1712690293.584051]: -------------------\n", + "[INFO] [1712690293.584293]: SOMA.Database \n", + "[INFO] [1712690293.584524]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690293.584762]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, SOMA.Database, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.585025]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", + "[INFO] [1712690293.585312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.585811]: Instances: []\n", + "[INFO] [1712690293.586062]: Direct Instances: []\n", + "[INFO] [1712690293.586322]: Inverse Restrictions: []\n", + "[INFO] [1712690293.586565]: -------------------\n", + "[INFO] [1712690293.586807]: SOMA.SoftwareRole \n", + "[INFO] [1712690293.587044]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", + "[INFO] [1712690293.587296]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.587564]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", + "[INFO] [1712690293.587862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.588381]: Instances: []\n", + "[INFO] [1712690293.588649]: Direct Instances: []\n", + "[INFO] [1712690293.588950]: Inverse Restrictions: []\n", + "[INFO] [1712690293.589194]: -------------------\n", + "[INFO] [1712690293.589429]: SOMA.Deciding \n", + "[INFO] [1712690293.589664]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690293.589903]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", + "[INFO] [1712690293.590163]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", + "[INFO] [1712690293.590455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690293.590955]: Instances: []\n", + "[INFO] [1712690293.591225]: Direct Instances: []\n", + "[INFO] [1712690293.591487]: Inverse Restrictions: []\n", + "[INFO] [1712690293.591726]: -------------------\n", + "[INFO] [1712690293.591959]: SOMA.DerivingInformation \n", + "[INFO] [1712690293.592199]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", + "[INFO] [1712690293.592448]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.592709]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", + "[INFO] [1712690293.593150]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.label]\n", + "[INFO] [1712690293.593750]: Instances: []\n", + "[INFO] [1712690293.594076]: Direct Instances: []\n", + "[INFO] [1712690293.594370]: Inverse Restrictions: []\n", + "[INFO] [1712690293.594631]: -------------------\n", + "[INFO] [1712690293.594883]: SOMA.DeductiveReasoning \n", + "[INFO] [1712690293.595136]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712690293.595395]: Ancestors: {SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.DeductiveReasoning, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.595648]: Subclasses: []\n", + "[INFO] [1712690293.595945]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.596437]: Instances: []\n", + "[INFO] [1712690293.596712]: Direct Instances: []\n", + "[INFO] [1712690293.596980]: Inverse Restrictions: []\n", + "[INFO] [1712690293.597228]: -------------------\n", + "[INFO] [1712690293.597467]: SOMA.Deformation \n", + "[INFO] [1712690293.597716]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", + "[INFO] [1712690293.597965]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Deformation, owl.Thing, SOMA.Alteration}\n", + "[INFO] [1712690293.598226]: Subclasses: []\n", + "[INFO] [1712690293.598551]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.599045]: Instances: []\n", + "[INFO] [1712690293.599307]: Direct Instances: []\n", + "[INFO] [1712690293.599559]: Inverse Restrictions: []\n", + "[INFO] [1712690293.599809]: -------------------\n", + "[INFO] [1712690293.600096]: SOMA.ShapedObject \n", + "[INFO] [1712690293.600349]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", + "[INFO] [1712690293.600812]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.ShapedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", + "[INFO] [1712690293.601176]: Subclasses: []\n", + "[INFO] [1712690293.601507]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTriggerDefinedIn]\n", + "[INFO] [1712690293.602026]: Instances: []\n", + "[INFO] [1712690293.602301]: Direct Instances: []\n", + "[INFO] [1712690293.602623]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", + "[INFO] [1712690293.602880]: -------------------\n", + "[INFO] [1712690293.603140]: SOMA.FluidFlow \n", + "[INFO] [1712690293.603409]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", + "[INFO] [1712690293.603676]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.FluidFlow, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.603926]: Subclasses: []\n", + "[INFO] [1712690293.604224]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.604727]: Instances: []\n", + "[INFO] [1712690293.605000]: Direct Instances: []\n", + "[INFO] [1712690293.605258]: Inverse Restrictions: []\n", + "[INFO] [1712690293.605501]: -------------------\n", + "[INFO] [1712690293.605740]: SOMA.Shifting \n", + "[INFO] [1712690293.605984]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", + "[INFO] [1712690293.606233]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Shifting, owl.Thing}\n", + "[INFO] [1712690293.606490]: Subclasses: []\n", + "[INFO] [1712690293.606792]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.607281]: Instances: []\n", + "[INFO] [1712690293.607546]: Direct Instances: []\n", + "[INFO] [1712690293.607873]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", + "[INFO] [1712690293.608121]: -------------------\n", + "[INFO] [1712690293.608357]: SOMA.DependentPlace \n", + "[INFO] [1712690293.608594]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712690293.608846]: Ancestors: {DUL.Entity, SOMA.DependentPlace, SOMA.Feature, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.609103]: Subclasses: []\n", + "[INFO] [1712690293.609396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.609884]: Instances: []\n", + "[INFO] [1712690293.610162]: Direct Instances: []\n", + "[INFO] [1712690293.610424]: Inverse Restrictions: []\n", + "[INFO] [1712690293.610669]: -------------------\n", + "[INFO] [1712690293.610907]: SOMA.Deposit \n", + "[INFO] [1712690293.611141]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", + "[INFO] [1712690293.611387]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, SOMA.Deposit, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.611645]: Subclasses: []\n", + "[INFO] [1712690293.611941]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.612431]: Instances: []\n", + "[INFO] [1712690293.612684]: Direct Instances: []\n", + "[INFO] [1712690293.613096]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712690293.613431]: -------------------\n", + "[INFO] [1712690293.613740]: SOMA.DepositedObject \n", + "[INFO] [1712690293.614009]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.614275]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.DepositedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.614528]: Subclasses: []\n", + "[INFO] [1712690293.614828]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.615322]: Instances: []\n", + "[INFO] [1712690293.615604]: Direct Instances: []\n", + "[INFO] [1712690293.615901]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", + "[INFO] [1712690293.616152]: -------------------\n", + "[INFO] [1712690293.616394]: SOMA.InformationAcquisition \n", + "[INFO] [1712690293.616632]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.616891]: Ancestors: {owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.617157]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", + "[INFO] [1712690293.617456]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.617992]: Instances: []\n", + "[INFO] [1712690293.618269]: Direct Instances: []\n", + "[INFO] [1712690293.618571]: Inverse Restrictions: []\n", + "[INFO] [1712690293.618824]: -------------------\n", + "[INFO] [1712690293.619069]: SOMA.Premise \n", + "[INFO] [1712690293.619309]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712690293.619570]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Premise, DUL.Role}\n", + "[INFO] [1712690293.619826]: Subclasses: []\n", + "[INFO] [1712690293.620121]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.620609]: Instances: []\n", + "[INFO] [1712690293.620886]: Direct Instances: []\n", + "[INFO] [1712690293.621197]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690293.621449]: -------------------\n", + "[INFO] [1712690293.621696]: SOMA.FunctionalPart \n", + "[INFO] [1712690293.621943]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", + "[INFO] [1712690293.622206]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690293.622476]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", + "[INFO] [1712690293.622780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.623318]: Instances: []\n", + "[INFO] [1712690293.623595]: Direct Instances: []\n", + "[INFO] [1712690293.623859]: Inverse Restrictions: []\n", + "[INFO] [1712690293.624103]: -------------------\n", + "[INFO] [1712690293.624342]: SOMA.Graspability \n", + "[INFO] [1712690293.624580]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", + "[INFO] [1712690293.624836]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Graspability}\n", + "[INFO] [1712690293.625098]: Subclasses: []\n", + "[INFO] [1712690293.625396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.625889]: Instances: []\n", + "[INFO] [1712690293.626148]: Direct Instances: []\n", + "[INFO] [1712690293.626430]: Inverse Restrictions: [SOMA.DesignedHandle]\n", + "[INFO] [1712690293.626681]: -------------------\n", + "[INFO] [1712690293.626923]: SOMA.Destination \n", + "[INFO] [1712690293.627159]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712690293.627405]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Destination, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690293.627649]: Subclasses: [SOMA.SittingDestination]\n", + "[INFO] [1712690293.627951]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.628448]: Instances: []\n", + "[INFO] [1712690293.628706]: Direct Instances: []\n", + "[INFO] [1712690293.629029]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712690293.629276]: -------------------\n", + "[INFO] [1712690293.629528]: SOMA.Location \n", + "[INFO] [1712690293.629772]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712690293.630021]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690293.630269]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", + "[INFO] [1712690293.630562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.631081]: Instances: []\n", + "[INFO] [1712690293.631373]: Direct Instances: []\n", + "[INFO] [1712690293.631659]: Inverse Restrictions: []\n", + "[INFO] [1712690293.631917]: -------------------\n", + "[INFO] [1712690293.632166]: SOMA.DestroyedObject \n", + "[INFO] [1712690293.632406]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.632762]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.DestroyedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.633027]: Subclasses: []\n", + "[INFO] [1712690293.633322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.633807]: Instances: []\n", + "[INFO] [1712690293.634080]: Direct Instances: []\n", + "[INFO] [1712690293.634374]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", + "[INFO] [1712690293.634622]: -------------------\n", + "[INFO] [1712690293.634863]: SOMA.Destruction \n", + "[INFO] [1712690293.635107]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", + "[INFO] [1712690293.635355]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Destruction, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.635615]: Subclasses: []\n", + "[INFO] [1712690293.635919]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.636413]: Instances: []\n", + "[INFO] [1712690293.636679]: Direct Instances: []\n", + "[INFO] [1712690293.636995]: Inverse Restrictions: []\n", + "[INFO] [1712690293.637288]: -------------------\n", + "[INFO] [1712690293.637550]: SOMA.DetectedObject \n", + "[INFO] [1712690293.637796]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.638052]: Ancestors: {SOMA.DetectedObject, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.638324]: Subclasses: []\n", + "[INFO] [1712690293.638631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.639119]: Instances: []\n", + "[INFO] [1712690293.639383]: Direct Instances: []\n", + "[INFO] [1712690293.639636]: Inverse Restrictions: []\n", + "[INFO] [1712690293.639888]: -------------------\n", + "[INFO] [1712690293.640131]: SOMA.DeviceState \n", + "[INFO] [1712690293.640366]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690293.640609]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic, SOMA.DeviceState}\n", + "[INFO] [1712690293.640850]: Subclasses: []\n", + "[INFO] [1712690293.641147]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.641638]: Instances: []\n", + "[INFO] [1712690293.641896]: Direct Instances: []\n", + "[INFO] [1712690293.642141]: Inverse Restrictions: []\n", + "[INFO] [1712690293.642383]: -------------------\n", + "[INFO] [1712690293.642629]: SOMA.DeviceStateRange \n", + "[INFO] [1712690293.642867]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690293.643107]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", + "[INFO] [1712690293.643351]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", + "[INFO] [1712690293.643666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.644166]: Instances: []\n", + "[INFO] [1712690293.644444]: Direct Instances: []\n", + "[INFO] [1712690293.644862]: Inverse Restrictions: []\n", + "[INFO] [1712690293.645252]: -------------------\n", + "[INFO] [1712690293.645623]: SOMA.DeviceTurnedOff \n", + "[INFO] [1712690293.646019]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712690293.646294]: Ancestors: {DUL.Entity, SOMA.DeviceTurnedOff, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", + "[INFO] [1712690293.646545]: Subclasses: []\n", + "[INFO] [1712690293.646837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.647342]: Instances: []\n", + "[INFO] [1712690293.647624]: Direct Instances: []\n", + "[INFO] [1712690293.647923]: Inverse Restrictions: []\n", + "[INFO] [1712690293.648170]: -------------------\n", + "[INFO] [1712690293.648408]: SOMA.DeviceTurnedOn \n", + "[INFO] [1712690293.648647]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", + "[INFO] [1712690293.648908]: Ancestors: {DUL.Entity, SOMA.DeviceTurnedOn, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", + "[INFO] [1712690293.649161]: Subclasses: []\n", + "[INFO] [1712690293.649455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.649942]: Instances: []\n", + "[INFO] [1712690293.650200]: Direct Instances: []\n", + "[INFO] [1712690293.650497]: Inverse Restrictions: []\n", + "[INFO] [1712690293.650744]: -------------------\n", + "[INFO] [1712690293.650982]: SOMA.DexterityDiagnosis \n", + "[INFO] [1712690293.651213]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712690293.651449]: Ancestors: {DUL.Entity, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.651708]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", + "[INFO] [1712690293.652005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.652501]: Instances: []\n", + "[INFO] [1712690293.652757]: Direct Instances: []\n", + "[INFO] [1712690293.653018]: Inverse Restrictions: []\n", + "[INFO] [1712690293.653267]: -------------------\n", + "[INFO] [1712690293.653508]: SOMA.Dicing \n", + "[INFO] [1712690293.653741]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712690293.653988]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Dicing, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting}\n", + "[INFO] [1712690293.654239]: Subclasses: []\n", + "[INFO] [1712690293.654527]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.655006]: Instances: []\n", + "[INFO] [1712690293.655265]: Direct Instances: []\n", + "[INFO] [1712690293.655527]: Inverse Restrictions: []\n", + "[INFO] [1712690293.655770]: -------------------\n", + "[INFO] [1712690293.656008]: SOMA.DirectedMotion \n", + "[INFO] [1712690293.656239]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712690293.656481]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690293.656748]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", + "[INFO] [1712690293.657057]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.657575]: Instances: []\n", + "[INFO] [1712690293.657850]: Direct Instances: []\n", + "[INFO] [1712690293.658113]: Inverse Restrictions: []\n", + "[INFO] [1712690293.658359]: -------------------\n", + "[INFO] [1712690293.658600]: SOMA.UndirectedMotion \n", + "[INFO] [1712690293.658836]: Super classes: [SOMA.Motion, SOMA.Motion]\n", + "[INFO] [1712690293.659083]: Ancestors: {DUL.Entity, SOMA.UndirectedMotion, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.659339]: Subclasses: []\n", + "[INFO] [1712690293.659633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.660126]: Instances: []\n", + "[INFO] [1712690293.660378]: Direct Instances: []\n", + "[INFO] [1712690293.660621]: Inverse Restrictions: []\n", + "[INFO] [1712690293.660876]: -------------------\n", + "[INFO] [1712690293.661120]: SOMA.Dirty \n", + "[INFO] [1712690293.661357]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", + "[INFO] [1712690293.661595]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion, SOMA.Dirty}\n", + "[INFO] [1712690293.661830]: Subclasses: []\n", + "[INFO] [1712690293.662118]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.662611]: Instances: []\n", + "[INFO] [1712690293.662877]: Direct Instances: []\n", + "[INFO] [1712690293.663130]: Inverse Restrictions: []\n", + "[INFO] [1712690293.663369]: -------------------\n", + "[INFO] [1712690293.663622]: SOMA.Discourse \n", + "[INFO] [1712690293.663866]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", + "[INFO] [1712690293.664113]: Ancestors: {DUL.Entity, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Discourse}\n", + "[INFO] [1712690293.664355]: Subclasses: []\n", + "[INFO] [1712690293.664640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.665146]: Instances: []\n", + "[INFO] [1712690293.665412]: Direct Instances: []\n", + "[INFO] [1712690293.665663]: Inverse Restrictions: []\n", + "[INFO] [1712690293.665907]: -------------------\n", + "[INFO] [1712690293.666145]: SOMA.Distancing \n", + "[INFO] [1712690293.666388]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712690293.666641]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Distancing}\n", + "[INFO] [1712690293.666882]: Subclasses: []\n", + "[INFO] [1712690293.667166]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.667671]: Instances: []\n", + "[INFO] [1712690293.667933]: Direct Instances: []\n", + "[INFO] [1712690293.668185]: Inverse Restrictions: []\n", + "[INFO] [1712690293.668426]: -------------------\n", + "[INFO] [1712690293.668660]: SOMA.Dreaming \n", + "[INFO] [1712690293.668909]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690293.669163]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.Dreaming, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.669409]: Subclasses: []\n", + "[INFO] [1712690293.669698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.670183]: Instances: []\n", + "[INFO] [1712690293.670454]: Direct Instances: []\n", + "[INFO] [1712690293.670710]: Inverse Restrictions: []\n", + "[INFO] [1712690293.670957]: -------------------\n", + "[INFO] [1712690293.671205]: SOMA.Driving \n", + "[INFO] [1712690293.671444]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690293.671704]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Driving, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", + "[INFO] [1712690293.671954]: Subclasses: []\n", + "[INFO] [1712690293.672252]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.672740]: Instances: []\n", + "[INFO] [1712690293.673009]: Direct Instances: []\n", + "[INFO] [1712690293.673265]: Inverse Restrictions: []\n", + "[INFO] [1712690293.673504]: -------------------\n", + "[INFO] [1712690293.673737]: SOMA.Flying \n", + "[INFO] [1712690293.673968]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690293.674213]: Ancestors: {DUL.Entity, SOMA.Flying, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", + "[INFO] [1712690293.674473]: Subclasses: []\n", + "[INFO] [1712690293.674775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.675267]: Instances: []\n", + "[INFO] [1712690293.675521]: Direct Instances: []\n", + "[INFO] [1712690293.675769]: Inverse Restrictions: []\n", + "[INFO] [1712690293.676015]: -------------------\n", + "[INFO] [1712690293.676252]: SOMA.Swimming \n", + "[INFO] [1712690293.676484]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690293.676733]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Swimming, SOMA.Locomotion}\n", + "[INFO] [1712690293.676991]: Subclasses: []\n", + "[INFO] [1712690293.677295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.677784]: Instances: []\n", + "[INFO] [1712690293.678039]: Direct Instances: []\n", + "[INFO] [1712690293.678306]: Inverse Restrictions: []\n", + "[INFO] [1712690293.678555]: -------------------\n", + "[INFO] [1712690293.678797]: SOMA.Walking \n", + "[INFO] [1712690293.679039]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690293.679285]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Walking, SOMA.Locomotion}\n", + "[INFO] [1712690293.679521]: Subclasses: []\n", + "[INFO] [1712690293.679825]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.680469]: Instances: []\n", + "[INFO] [1712690293.680794]: Direct Instances: []\n", + "[INFO] [1712690293.681047]: Inverse Restrictions: []\n", + "[INFO] [1712690293.681477]: -------------------\n", + "[INFO] [1712690293.681885]: SOMA.Dropping \n", + "[INFO] [1712690293.682190]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.682477]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, SOMA.Dropping, SOMA.PhysicalTask, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.682745]: Subclasses: []\n", + "[INFO] [1712690293.683066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.683567]: Instances: []\n", + "[INFO] [1712690293.683851]: Direct Instances: []\n", + "[INFO] [1712690293.684117]: Inverse Restrictions: []\n", + "[INFO] [1712690293.684368]: -------------------\n", + "[INFO] [1712690293.684611]: SOMA.Placing \n", + "[INFO] [1712690293.684856]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690293.685113]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Placing, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.685379]: Subclasses: []\n", + "[INFO] [1712690293.685680]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.686174]: Instances: [SOMA.placing]\n", + "[INFO] [1712690293.686437]: Direct Instances: [SOMA.placing]\n", + "[INFO] [1712690293.686693]: Inverse Restrictions: []\n", + "[INFO] [1712690293.686952]: -------------------\n", + "[INFO] [1712690293.687252]: SOMA.ESTSchemaTheory \n", + "[INFO] [1712690293.687517]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", + "[INFO] [1712690293.687771]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ESTSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690293.688016]: Subclasses: []\n", + "[INFO] [1712690293.688321]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.688820]: Instances: []\n", + "[INFO] [1712690293.689096]: Direct Instances: []\n", + "[INFO] [1712690293.689345]: Inverse Restrictions: []\n", + "[INFO] [1712690293.689596]: -------------------\n", + "[INFO] [1712690293.689839]: SOMA.ExistingObjectRole \n", + "[INFO] [1712690293.690075]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690293.690318]: Ancestors: {SOMA.ExistingObjectRole, DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", + "[INFO] [1712690293.690553]: Subclasses: []\n", + "[INFO] [1712690293.690862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.691360]: Instances: []\n", + "[INFO] [1712690293.691617]: Direct Instances: []\n", + "[INFO] [1712690293.691902]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", + "[INFO] [1712690293.692153]: -------------------\n", + "[INFO] [1712690293.692397]: SOMA.Effort \n", + "[INFO] [1712690293.692632]: Super classes: [DUL.Parameter, DUL.Parameter]\n", + "[INFO] [1712690293.692971]: Ancestors: {DUL.Entity, SOMA.Effort, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, DUL.Parameter}\n", + "[INFO] [1712690293.693286]: Subclasses: []\n", + "[INFO] [1712690293.693619]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.694132]: Instances: []\n", + "[INFO] [1712690293.694407]: Direct Instances: []\n", + "[INFO] [1712690293.694667]: Inverse Restrictions: []\n", + "[INFO] [1712690293.694915]: -------------------\n", + "[INFO] [1712690293.695154]: SOMA.EnclosedObject \n", + "[INFO] [1712690293.695405]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", + "[INFO] [1712690293.695669]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.695933]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", + "[INFO] [1712690293.696228]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.696724]: Instances: []\n", + "[INFO] [1712690293.697005]: Direct Instances: []\n", + "[INFO] [1712690293.697319]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", + "[INFO] [1712690293.697577]: -------------------\n", + "[INFO] [1712690293.697819]: SOMA.Enclosing \n", + "[INFO] [1712690293.698056]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", + "[INFO] [1712690293.698306]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.698570]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", + "[INFO] [1712690293.698866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.699363]: Instances: []\n", + "[INFO] [1712690293.699636]: Direct Instances: []\n", + "[INFO] [1712690293.699898]: Inverse Restrictions: []\n", + "[INFO] [1712690293.700137]: -------------------\n", + "[INFO] [1712690293.700378]: SOMA.EndEffectorPositioning \n", + "[INFO] [1712690293.700612]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690293.700861]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690293.701127]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", + "[INFO] [1712690293.701424]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.701920]: Instances: []\n", + "[INFO] [1712690293.702187]: Direct Instances: []\n", + "[INFO] [1712690293.702457]: Inverse Restrictions: []\n", + "[INFO] [1712690293.702704]: -------------------\n", + "[INFO] [1712690293.702947]: SOMA.Manipulating \n", + "[INFO] [1712690293.703188]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", + "[INFO] [1712690293.703428]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690293.703704]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", + "[INFO] [1712690293.704003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.704511]: Instances: [SOMA.picking_up]\n", + "[INFO] [1712690293.704789]: Direct Instances: []\n", + "[INFO] [1712690293.705056]: Inverse Restrictions: []\n", + "[INFO] [1712690293.705300]: -------------------\n", + "[INFO] [1712690293.705536]: SOMA.Episode \n", + "[INFO] [1712690293.705767]: Super classes: [DUL.Situation]\n", + "[INFO] [1712690293.706003]: Ancestors: {SOMA.Episode, owl.Thing, DUL.Entity, DUL.Situation}\n", + "[INFO] [1712690293.706259]: Subclasses: [SOMA.RecordedEpisode]\n", + "[INFO] [1712690293.706552]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.707115]: Instances: []\n", + "[INFO] [1712690293.707376]: Direct Instances: []\n", + "[INFO] [1712690293.707623]: Inverse Restrictions: []\n", + "[INFO] [1712690293.707874]: -------------------\n", + "[INFO] [1712690293.708118]: SOMA.ExcludedObject \n", + "[INFO] [1712690293.708354]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.708602]: Ancestors: {DUL.Entity, SOMA.ExcludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.708869]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", + "[INFO] [1712690293.709169]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.709669]: Instances: []\n", + "[INFO] [1712690293.709922]: Direct Instances: []\n", + "[INFO] [1712690293.710220]: Inverse Restrictions: []\n", + "[INFO] [1712690293.710472]: -------------------\n", + "[INFO] [1712690293.710715]: SOMA.ExecutableFile \n", + "[INFO] [1712690293.710954]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.711193]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", + "[INFO] [1712690293.711429]: Subclasses: []\n", + "[INFO] [1712690293.711734]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.realizes, rdf-schema.comment]\n", + "[INFO] [1712690293.712231]: Instances: []\n", + "[INFO] [1712690293.712490]: Direct Instances: []\n", + "[INFO] [1712690293.712795]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", + "[INFO] [1712690293.713049]: -------------------\n", + "[INFO] [1712690293.713299]: SOMA.Executable_Code \n", + "[INFO] [1712690293.713546]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712690293.713789]: Ancestors: {owl.Thing, SOMA.Executable_Code, SOMA.Computer_Program}\n", + "[INFO] [1712690293.714032]: Subclasses: []\n", + "[INFO] [1712690293.714343]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.714844]: Instances: []\n", + "[INFO] [1712690293.715106]: Direct Instances: []\n", + "[INFO] [1712690293.715432]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", + "[INFO] [1712690293.715692]: -------------------\n", + "[INFO] [1712690293.715937]: SOMA.ExecutableFormat \n", + "[INFO] [1712690293.716181]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", + "[INFO] [1712690293.716427]: Ancestors: {SOMA.ExecutableFormat, SOMA.Computer_Language, SOMA.System, DUL.Entity, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.File_format}\n", + "[INFO] [1712690293.716670]: Subclasses: []\n", + "[INFO] [1712690293.716983]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.717484]: Instances: []\n", + "[INFO] [1712690293.717741]: Direct Instances: []\n", + "[INFO] [1712690293.718038]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", + "[INFO] [1712690293.718291]: -------------------\n", + "[INFO] [1712690293.718536]: SOMA.SchematicTheory \n", + "[INFO] [1712690293.718774]: Super classes: [DUL.Theory, DUL.Theory]\n", + "[INFO] [1712690293.719012]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690293.719259]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", + "[INFO] [1712690293.719558]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.720076]: Instances: []\n", + "[INFO] [1712690293.720346]: Direct Instances: []\n", + "[INFO] [1712690293.720601]: Inverse Restrictions: []\n", + "[INFO] [1712690293.720842]: -------------------\n", + "[INFO] [1712690293.721078]: SOMA.ExecutableSoftware \n", + "[INFO] [1712690293.721309]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.721543]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", + "[INFO] [1712690293.721793]: Subclasses: []\n", + "[INFO] [1712690293.722092]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasMember, rdf-schema.comment]\n", + "[INFO] [1712690293.722582]: Instances: []\n", + "[INFO] [1712690293.722852]: Direct Instances: []\n", + "[INFO] [1712690293.723108]: Inverse Restrictions: []\n", + "[INFO] [1712690293.723346]: -------------------\n", + "[INFO] [1712690293.723580]: SOMA.Software \n", + "[INFO] [1712690293.723821]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", + "[INFO] [1712690293.724082]: Ancestors: {DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Software, DUL.Description, DUL.Design}\n", + "[INFO] [1712690293.724336]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", + "[INFO] [1712690293.724629]: Properties: [DUL.describes, rdf-schema.label, rdf-schema.isDefinedBy]\n", + "[INFO] [1712690293.725123]: Instances: []\n", + "[INFO] [1712690293.725395]: Direct Instances: []\n", + "[INFO] [1712690293.725772]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690293.726021]: -------------------\n", + "[INFO] [1712690293.726263]: SOMA.RelationAdjacentRole \n", + "[INFO] [1712690293.726503]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712690293.726763]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", + "[INFO] [1712690293.727020]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", + "[INFO] [1712690293.727313]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.727808]: Instances: []\n", + "[INFO] [1712690293.728083]: Direct Instances: []\n", + "[INFO] [1712690293.728341]: Inverse Restrictions: []\n", + "[INFO] [1712690293.728585]: -------------------\n", + "[INFO] [1712690293.728819]: SOMA.ExperiencerRole \n", + "[INFO] [1712690293.729061]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", + "[INFO] [1712690293.729318]: Ancestors: {SOMA.ExperiencerRole, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", + "[INFO] [1712690293.729571]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", + "[INFO] [1712690293.729860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.730346]: Instances: []\n", + "[INFO] [1712690293.730618]: Direct Instances: []\n", + "[INFO] [1712690293.730882]: Inverse Restrictions: []\n", + "[INFO] [1712690293.731119]: -------------------\n", + "[INFO] [1712690293.731360]: SOMA.ExtractedObject \n", + "[INFO] [1712690293.731614]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.731884]: Ancestors: {DUL.Entity, SOMA.ExtractedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.732134]: Subclasses: []\n", + "[INFO] [1712690293.732426]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.732917]: Instances: []\n", + "[INFO] [1712690293.733199]: Direct Instances: []\n", + "[INFO] [1712690293.733461]: Inverse Restrictions: []\n", + "[INFO] [1712690293.733703]: -------------------\n", + "[INFO] [1712690293.733941]: SOMA.PhysicalQuality \n", + "[INFO] [1712690293.734183]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", + "[INFO] [1712690293.734426]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", + "[INFO] [1712690293.734685]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", + "[INFO] [1712690293.734986]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf, rdf-schema.label]\n", + "[INFO] [1712690293.735575]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", + "[INFO] [1712690293.735854]: Direct Instances: []\n", + "[INFO] [1712690293.736114]: Inverse Restrictions: []\n", + "[INFO] [1712690293.736356]: -------------------\n", + "[INFO] [1712690293.736594]: SOMA.FailedAttempt \n", + "[INFO] [1712690293.736834]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712690293.737078]: Ancestors: {DUL.Entity, SOMA.FailedAttempt, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690293.737333]: Subclasses: []\n", + "[INFO] [1712690293.737630]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.738121]: Instances: []\n", + "[INFO] [1712690293.738373]: Direct Instances: []\n", + "[INFO] [1712690293.738619]: Inverse Restrictions: []\n", + "[INFO] [1712690293.738862]: -------------------\n", + "[INFO] [1712690293.739104]: SOMA.FaultySoftware \n", + "[INFO] [1712690293.739336]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712690293.739579]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.739835]: Subclasses: []\n", + "[INFO] [1712690293.740134]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.740622]: Instances: []\n", + "[INFO] [1712690293.740881]: Direct Instances: []\n", + "[INFO] [1712690293.741133]: Inverse Restrictions: []\n", + "[INFO] [1712690293.741378]: -------------------\n", + "[INFO] [1712690293.741621]: SOMA.SoftwareDiagnosis \n", + "[INFO] [1712690293.741856]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712690293.742098]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.742347]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", + "[INFO] [1712690293.742647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.743146]: Instances: []\n", + "[INFO] [1712690293.743403]: Direct Instances: []\n", + "[INFO] [1712690293.743650]: Inverse Restrictions: []\n", + "[INFO] [1712690293.743892]: -------------------\n", + "[INFO] [1712690293.744139]: SOMA.PhysicalAcquiring \n", + "[INFO] [1712690293.744377]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712690293.744623]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.PhysicalAcquiring, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", + "[INFO] [1712690293.744873]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", + "[INFO] [1712690293.745163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.745676]: Instances: []\n", + "[INFO] [1712690293.745942]: Direct Instances: []\n", + "[INFO] [1712690293.746194]: Inverse Restrictions: []\n", + "[INFO] [1712690293.746432]: -------------------\n", + "[INFO] [1712690293.746665]: SOMA.Finger \n", + "[INFO] [1712690293.746913]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", + "[INFO] [1712690293.747168]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Finger, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712690293.747423]: Subclasses: []\n", + "[INFO] [1712690293.747734]: Properties: [DUL.isPartOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.748237]: Instances: []\n", + "[INFO] [1712690293.748513]: Direct Instances: []\n", + "[INFO] [1712690293.748772]: Inverse Restrictions: []\n", + "[INFO] [1712690293.749016]: -------------------\n", + "[INFO] [1712690293.749257]: SOMA.Hand \n", + "[INFO] [1712690293.749485]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712690293.749745]: Ancestors: {DUL.Entity, SOMA.Hand, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690293.750002]: Subclasses: []\n", + "[INFO] [1712690293.750291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.750775]: Instances: []\n", + "[INFO] [1712690293.751042]: Direct Instances: []\n", + "[INFO] [1712690293.751330]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", + "[INFO] [1712690293.751578]: -------------------\n", + "[INFO] [1712690293.751818]: SOMA.FixedJoint \n", + "[INFO] [1712690293.752057]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", + "[INFO] [1712690293.752314]: Ancestors: {DUL.Entity, SOMA.FixedJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690293.752565]: Subclasses: []\n", + "[INFO] [1712690293.752873]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.753370]: Instances: []\n", + "[INFO] [1712690293.753641]: Direct Instances: []\n", + "[INFO] [1712690293.753929]: Inverse Restrictions: []\n", + "[INFO] [1712690293.754174]: -------------------\n", + "[INFO] [1712690293.754408]: SOMA.MovableJoint \n", + "[INFO] [1712690293.754651]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", + "[INFO] [1712690293.754906]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690293.755165]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", + "[INFO] [1712690293.755459]: Properties: [SOMA.hasJointState, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.755959]: Instances: []\n", + "[INFO] [1712690293.756229]: Direct Instances: []\n", + "[INFO] [1712690293.756528]: Inverse Restrictions: []\n", + "[INFO] [1712690293.756778]: -------------------\n", + "[INFO] [1712690293.757018]: SOMA.Flipping \n", + "[INFO] [1712690293.757259]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", + "[INFO] [1712690293.757520]: Ancestors: {DUL.Entity, SOMA.Flipping, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.757770]: Subclasses: []\n", + "[INFO] [1712690293.758063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690293.758558]: Instances: []\n", + "[INFO] [1712690293.758822]: Direct Instances: []\n", + "[INFO] [1712690293.759071]: Inverse Restrictions: []\n", + "[INFO] [1712690293.759305]: -------------------\n", + "[INFO] [1712690293.759533]: SOMA.FloatingJoint \n", + "[INFO] [1712690293.759781]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712690293.760030]: Ancestors: {SOMA.FloatingJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690293.760273]: Subclasses: []\n", + "[INFO] [1712690293.760560]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.761059]: Instances: []\n", + "[INFO] [1712690293.761320]: Direct Instances: []\n", + "[INFO] [1712690293.761570]: Inverse Restrictions: []\n", + "[INFO] [1712690293.761801]: -------------------\n", + "[INFO] [1712690293.762035]: SOMA.Fluid \n", + "[INFO] [1712690293.762277]: Super classes: [DUL.Substance]\n", + "[INFO] [1712690293.762527]: Ancestors: {DUL.Substance, DUL.Entity, SOMA.Fluid, DUL.PhysicalBody, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690293.762768]: Subclasses: []\n", + "[INFO] [1712690293.763051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.763555]: Instances: []\n", + "[INFO] [1712690293.763819]: Direct Instances: []\n", + "[INFO] [1712690293.764078]: Inverse Restrictions: []\n", + "[INFO] [1712690293.764319]: -------------------\n", + "[INFO] [1712690293.764557]: SOMA.MovedObject \n", + "[INFO] [1712690293.764818]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", + "[INFO] [1712690293.765076]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, SOMA.MovedObject, DUL.Role}\n", + "[INFO] [1712690293.765319]: Subclasses: []\n", + "[INFO] [1712690293.765610]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTriggerDefinedIn]\n", + "[INFO] [1712690293.766115]: Instances: []\n", + "[INFO] [1712690293.766377]: Direct Instances: []\n", + "[INFO] [1712690293.766772]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", + "[INFO] [1712690293.767013]: -------------------\n", + "[INFO] [1712690293.767256]: SOMA.Focusing \n", + "[INFO] [1712690293.767503]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", + "[INFO] [1712690293.767756]: Ancestors: {DUL.Entity, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Focusing}\n", + "[INFO] [1712690293.767998]: Subclasses: []\n", + "[INFO] [1712690293.768281]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.768787]: Instances: []\n", + "[INFO] [1712690293.769053]: Direct Instances: []\n", + "[INFO] [1712690293.769301]: Inverse Restrictions: []\n", + "[INFO] [1712690293.769542]: -------------------\n", + "[INFO] [1712690293.769777]: SOMA.Foolishness \n", + "[INFO] [1712690293.770008]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712690293.770271]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, SOMA.Foolishness, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.770521]: Subclasses: []\n", + "[INFO] [1712690293.770809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.771288]: Instances: []\n", + "[INFO] [1712690293.771551]: Direct Instances: []\n", + "[INFO] [1712690293.771811]: Inverse Restrictions: []\n", + "[INFO] [1712690293.772049]: -------------------\n", + "[INFO] [1712690293.772286]: SOMA.ForgettingIncorrectInformation \n", + "[INFO] [1712690293.772521]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712690293.772763]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.ForgettingIncorrectInformation, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.773027]: Subclasses: []\n", + "[INFO] [1712690293.773324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.773814]: Instances: []\n", + "[INFO] [1712690293.774084]: Direct Instances: []\n", + "[INFO] [1712690293.774338]: Inverse Restrictions: []\n", + "[INFO] [1712690293.774580]: -------------------\n", + "[INFO] [1712690293.774817]: SOMA.InformationDismissal \n", + "[INFO] [1712690293.775069]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", + "[INFO] [1712690293.775323]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.775577]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", + "[INFO] [1712690293.775866]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.comment]\n", + "[INFO] [1712690293.776358]: Instances: []\n", + "[INFO] [1712690293.776629]: Direct Instances: []\n", + "[INFO] [1712690293.776896]: Inverse Restrictions: []\n", + "[INFO] [1712690293.777142]: -------------------\n", + "[INFO] [1712690293.777382]: SOMA.ForgettingIrrelevantInformation \n", + "[INFO] [1712690293.777633]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", + "[INFO] [1712690293.777892]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForgettingIrrelevantInformation}\n", + "[INFO] [1712690293.778150]: Subclasses: []\n", + "[INFO] [1712690293.778451]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.778937]: Instances: []\n", + "[INFO] [1712690293.779186]: Direct Instances: []\n", + "[INFO] [1712690293.779429]: Inverse Restrictions: []\n", + "[INFO] [1712690293.779674]: -------------------\n", + "[INFO] [1712690293.779913]: SOMA.Language \n", + "[INFO] [1712690293.780158]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", + "[INFO] [1712690293.780401]: Ancestors: {DUL.Entity, SOMA.System, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.780644]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", + "[INFO] [1712690293.780954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.781488]: Instances: []\n", + "[INFO] [1712690293.781755]: Direct Instances: []\n", + "[INFO] [1712690293.782078]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", + "[INFO] [1712690293.782336]: -------------------\n", + "[INFO] [1712690293.782575]: SOMA.Item \n", + "[INFO] [1712690293.782814]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690293.783062]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.783344]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", + "[INFO] [1712690293.783653]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.784168]: Instances: []\n", + "[INFO] [1712690293.784441]: Direct Instances: []\n", + "[INFO] [1712690293.784790]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", + "[INFO] [1712690293.785040]: -------------------\n", + "[INFO] [1712690293.785283]: SOMA.FunctionalDesign \n", + "[INFO] [1712690293.785517]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712690293.785763]: Ancestors: {SOMA.FunctionalDesign, DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690293.786015]: Subclasses: []\n", + "[INFO] [1712690293.786311]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.786798]: Instances: []\n", + "[INFO] [1712690293.787077]: Direct Instances: []\n", + "[INFO] [1712690293.787337]: Inverse Restrictions: []\n", + "[INFO] [1712690293.787594]: -------------------\n", + "[INFO] [1712690293.787836]: SOMA.FunctionalDiagnosis \n", + "[INFO] [1712690293.788070]: Super classes: [DUL.Diagnosis]\n", + "[INFO] [1712690293.788311]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.788554]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712690293.788857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.789366]: Instances: []\n", + "[INFO] [1712690293.789636]: Direct Instances: []\n", + "[INFO] [1712690293.789896]: Inverse Restrictions: []\n", + "[INFO] [1712690293.790139]: -------------------\n", + "[INFO] [1712690293.790372]: SOMA.LocatumRole \n", + "[INFO] [1712690293.790606]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690293.790862]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.LocatumRole, SOMA.SpatialRelationRole, DUL.Role}\n", + "[INFO] [1712690293.791112]: Subclasses: []\n", + "[INFO] [1712690293.791402]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.791897]: Instances: []\n", + "[INFO] [1712690293.792170]: Direct Instances: []\n", + "[INFO] [1712690293.792487]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712690293.792733]: -------------------\n", + "[INFO] [1712690293.792975]: SOMA.RelatumRole \n", + "[INFO] [1712690293.793218]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690293.793474]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, SOMA.RelatumRole, owl.Thing, DUL.Object, SOMA.SpatialRelationRole, DUL.Role}\n", + "[INFO] [1712690293.793732]: Subclasses: []\n", + "[INFO] [1712690293.794030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.794523]: Instances: []\n", + "[INFO] [1712690293.794791]: Direct Instances: []\n", + "[INFO] [1712690293.795111]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", + "[INFO] [1712690293.795355]: -------------------\n", + "[INFO] [1712690293.795589]: SOMA.GetTaskParameter \n", + "[INFO] [1712690293.795826]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712690293.796069]: Ancestors: {SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.796330]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", + "[INFO] [1712690293.796624]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.797121]: Instances: []\n", + "[INFO] [1712690293.797399]: Direct Instances: []\n", + "[INFO] [1712690293.797659]: Inverse Restrictions: []\n", + "[INFO] [1712690293.797900]: -------------------\n", + "[INFO] [1712690293.798136]: SOMA.Planning \n", + "[INFO] [1712690293.798372]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", + "[INFO] [1712690293.798611]: Ancestors: {SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.798875]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", + "[INFO] [1712690293.799173]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.799669]: Instances: []\n", + "[INFO] [1712690293.799923]: Direct Instances: []\n", + "[INFO] [1712690293.800168]: Inverse Restrictions: []\n", + "[INFO] [1712690293.800423]: -------------------\n", + "[INFO] [1712690293.800666]: SOMA.GraphDatabase \n", + "[INFO] [1712690293.801008]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712690293.801378]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.Database, DUL.Object, SOMA.GraphDatabase, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.801686]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", + "[INFO] [1712690293.802392]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.802937]: Instances: []\n", + "[INFO] [1712690293.803222]: Direct Instances: []\n", + "[INFO] [1712690293.803532]: Inverse Restrictions: []\n", + "[INFO] [1712690293.803812]: -------------------\n", + "[INFO] [1712690293.804102]: SOMA.GraphQueryLanguage \n", + "[INFO] [1712690293.804354]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712690293.804616]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.GraphQueryLanguage, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.804884]: Subclasses: []\n", + "[INFO] [1712690293.805194]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.805686]: Instances: []\n", + "[INFO] [1712690293.805961]: Direct Instances: []\n", + "[INFO] [1712690293.806221]: Inverse Restrictions: []\n", + "[INFO] [1712690293.806464]: -------------------\n", + "[INFO] [1712690293.806703]: SOMA.QueryLanguage \n", + "[INFO] [1712690293.806940]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690293.807184]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.807454]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", + "[INFO] [1712690293.807759]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.808259]: Instances: []\n", + "[INFO] [1712690293.808522]: Direct Instances: []\n", + "[INFO] [1712690293.808775]: Inverse Restrictions: []\n", + "[INFO] [1712690293.809031]: -------------------\n", + "[INFO] [1712690293.809278]: SOMA.GraspTransfer \n", + "[INFO] [1712690293.809514]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", + "[INFO] [1712690293.809762]: Ancestors: {DUL.Entity, SOMA.GraspTransfer, SOMA.Grasping, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690293.809997]: Subclasses: []\n", + "[INFO] [1712690293.810299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.810811]: Instances: []\n", + "[INFO] [1712690293.811094]: Direct Instances: []\n", + "[INFO] [1712690293.811345]: Inverse Restrictions: []\n", + "[INFO] [1712690293.811587]: -------------------\n", + "[INFO] [1712690293.811841]: SOMA.Grasping \n", + "[INFO] [1712690293.812087]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690293.812342]: Ancestors: {DUL.Entity, SOMA.Grasping, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690293.812590]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", + "[INFO] [1712690293.812894]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.813411]: Instances: []\n", + "[INFO] [1712690293.813690]: Direct Instances: []\n", + "[INFO] [1712690293.813960]: Inverse Restrictions: []\n", + "[INFO] [1712690293.814212]: -------------------\n", + "[INFO] [1712690293.814463]: SOMA.Releasing \n", + "[INFO] [1712690293.814722]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690293.814999]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Releasing, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690293.815251]: Subclasses: []\n", + "[INFO] [1712690293.815545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.816069]: Instances: []\n", + "[INFO] [1712690293.816362]: Direct Instances: []\n", + "[INFO] [1712690293.816649]: Inverse Restrictions: []\n", + "[INFO] [1712690293.816930]: -------------------\n", + "[INFO] [1712690293.817206]: SOMA.GraspingMotion \n", + "[INFO] [1712690293.817569]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712690293.817889]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690293.818178]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", + "[INFO] [1712690293.818503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.819011]: Instances: []\n", + "[INFO] [1712690293.819294]: Direct Instances: []\n", + "[INFO] [1712690293.819601]: Inverse Restrictions: []\n", + "[INFO] [1712690293.819857]: -------------------\n", + "[INFO] [1712690293.820101]: SOMA.IntermediateGrasp \n", + "[INFO] [1712690293.820339]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712690293.820595]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing, SOMA.IntermediateGrasp}\n", + "[INFO] [1712690293.820859]: Subclasses: []\n", + "[INFO] [1712690293.821174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.821672]: Instances: []\n", + "[INFO] [1712690293.821938]: Direct Instances: []\n", + "[INFO] [1712690293.822231]: Inverse Restrictions: []\n", + "[INFO] [1712690293.822476]: -------------------\n", + "[INFO] [1712690293.822713]: SOMA.PowerGrasp \n", + "[INFO] [1712690293.822948]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712690293.823197]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, SOMA.PowerGrasp, SOMA.DirectedMotion, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.823454]: Subclasses: []\n", + "[INFO] [1712690293.823762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.824264]: Instances: []\n", + "[INFO] [1712690293.824520]: Direct Instances: []\n", + "[INFO] [1712690293.824804]: Inverse Restrictions: []\n", + "[INFO] [1712690293.825063]: -------------------\n", + "[INFO] [1712690293.825312]: SOMA.PrecisionGrasp \n", + "[INFO] [1712690293.825552]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", + "[INFO] [1712690293.825801]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.PrecisionGrasp, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690293.826040]: Subclasses: []\n", + "[INFO] [1712690293.826337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.826842]: Instances: []\n", + "[INFO] [1712690293.827109]: Direct Instances: []\n", + "[INFO] [1712690293.827404]: Inverse Restrictions: []\n", + "[INFO] [1712690293.827647]: -------------------\n", + "[INFO] [1712690293.827889]: SOMA.PrehensileMotion \n", + "[INFO] [1712690293.828153]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", + "[INFO] [1712690293.828411]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690293.828665]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", + "[INFO] [1712690293.828972]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.829490]: Instances: []\n", + "[INFO] [1712690293.829759]: Direct Instances: []\n", + "[INFO] [1712690293.830024]: Inverse Restrictions: []\n", + "[INFO] [1712690293.830266]: -------------------\n", + "[INFO] [1712690293.830503]: SOMA.ReleasingMotion \n", + "[INFO] [1712690293.830757]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", + "[INFO] [1712690293.831022]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, SOMA.ReleasingMotion, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690293.831275]: Subclasses: []\n", + "[INFO] [1712690293.831569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.832074]: Instances: []\n", + "[INFO] [1712690293.832358]: Direct Instances: []\n", + "[INFO] [1712690293.832658]: Inverse Restrictions: []\n", + "[INFO] [1712690293.832906]: -------------------\n", + "[INFO] [1712690293.833150]: SOMA.GreenColor \n", + "[INFO] [1712690293.833388]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712690293.833644]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, SOMA.GreenColor, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690293.833888]: Subclasses: []\n", + "[INFO] [1712690293.834176]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.834656]: Instances: []\n", + "[INFO] [1712690293.834923]: Direct Instances: []\n", + "[INFO] [1712690293.835176]: Inverse Restrictions: []\n", + "[INFO] [1712690293.835413]: -------------------\n", + "[INFO] [1712690293.835648]: SOMA.Gripper \n", + "[INFO] [1712690293.835882]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", + "[INFO] [1712690293.836135]: Ancestors: {SOMA.Gripper, DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690293.836387]: Subclasses: []\n", + "[INFO] [1712690293.836680]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.837171]: Instances: []\n", + "[INFO] [1712690293.837426]: Direct Instances: []\n", + "[INFO] [1712690293.837683]: Inverse Restrictions: []\n", + "[INFO] [1712690293.837926]: -------------------\n", + "[INFO] [1712690293.838165]: SOMA.PrehensileEffector \n", + "[INFO] [1712690293.838398]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", + "[INFO] [1712690293.838637]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690293.838905]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", + "[INFO] [1712690293.839200]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.839699]: Instances: []\n", + "[INFO] [1712690293.839970]: Direct Instances: []\n", + "[INFO] [1712690293.840287]: Inverse Restrictions: []\n", + "[INFO] [1712690293.840542]: -------------------\n", + "[INFO] [1712690293.840809]: SOMA.HardwareDiagnosis \n", + "[INFO] [1712690293.841154]: Super classes: [SOMA.TechnicalDiagnosis]\n", + "[INFO] [1712690293.841451]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.HardwareDiagnosis}\n", + "[INFO] [1712690293.841727]: Subclasses: []\n", + "[INFO] [1712690293.842036]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.842541]: Instances: []\n", + "[INFO] [1712690293.842808]: Direct Instances: []\n", + "[INFO] [1712690293.843086]: Inverse Restrictions: []\n", + "[INFO] [1712690293.843346]: -------------------\n", + "[INFO] [1712690293.843594]: SOMA.HasQualityRegion \n", + "[INFO] [1712690293.843839]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", + "[INFO] [1712690293.844348]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, SOMA.HasQualityRegion, DUL.Description}\n", + "[INFO] [1712690293.844842]: Subclasses: []\n", + "[INFO] [1712690293.845385]: Properties: [DUL.hasQuality, DUL.hasRegion, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.846114]: Instances: []\n", + "[INFO] [1712690293.846562]: Direct Instances: []\n", + "[INFO] [1712690293.846997]: Inverse Restrictions: []\n", + "[INFO] [1712690293.847415]: -------------------\n", + "[INFO] [1712690293.847838]: SOMA.Head \n", + "[INFO] [1712690293.848202]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", + "[INFO] [1712690293.848558]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Head, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690293.848935]: Subclasses: []\n", + "[INFO] [1712690293.849297]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.849811]: Instances: []\n", + "[INFO] [1712690293.850081]: Direct Instances: []\n", + "[INFO] [1712690293.850330]: Inverse Restrictions: []\n", + "[INFO] [1712690293.850570]: -------------------\n", + "[INFO] [1712690293.850820]: SOMA.HeadMovement \n", + "[INFO] [1712690293.851064]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712690293.851315]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.HeadMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.851561]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", + "[INFO] [1712690293.851845]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.852353]: Instances: []\n", + "[INFO] [1712690293.852621]: Direct Instances: []\n", + "[INFO] [1712690293.852883]: Inverse Restrictions: []\n", + "[INFO] [1712690293.853125]: -------------------\n", + "[INFO] [1712690293.853364]: SOMA.HeadTurning \n", + "[INFO] [1712690293.853609]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", + "[INFO] [1712690293.853864]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.HeadTurning, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.HeadMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.854108]: Subclasses: []\n", + "[INFO] [1712690293.854398]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.854900]: Instances: []\n", + "[INFO] [1712690293.855161]: Direct Instances: []\n", + "[INFO] [1712690293.855411]: Inverse Restrictions: []\n", + "[INFO] [1712690293.855651]: -------------------\n", + "[INFO] [1712690293.855887]: SOMA.Holding \n", + "[INFO] [1712690293.856133]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690293.856388]: Ancestors: {DUL.Entity, SOMA.Holding, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690293.856633]: Subclasses: []\n", + "[INFO] [1712690293.856924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.857424]: Instances: []\n", + "[INFO] [1712690293.857696]: Direct Instances: []\n", + "[INFO] [1712690293.857952]: Inverse Restrictions: []\n", + "[INFO] [1712690293.858194]: -------------------\n", + "[INFO] [1712690293.858433]: SOMA.HostRole \n", + "[INFO] [1712690293.858719]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712690293.858988]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.HostRole, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690293.859240]: Subclasses: []\n", + "[INFO] [1712690293.859538]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.860038]: Instances: []\n", + "[INFO] [1712690293.860304]: Direct Instances: []\n", + "[INFO] [1712690293.860613]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712690293.860859]: -------------------\n", + "[INFO] [1712690293.861097]: SOMA.PluginSpecification \n", + "[INFO] [1712690293.861356]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", + "[INFO] [1712690293.861617]: Ancestors: {DUL.Entity, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.PluginSpecification, DUL.Design}\n", + "[INFO] [1712690293.861866]: Subclasses: []\n", + "[INFO] [1712690293.862161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesRole, rdf-schema.label]\n", + "[INFO] [1712690293.862647]: Instances: []\n", + "[INFO] [1712690293.862924]: Direct Instances: []\n", + "[INFO] [1712690293.863248]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", + "[INFO] [1712690293.863497]: -------------------\n", + "[INFO] [1712690293.863734]: SOMA.Human-readable_Programming_Language \n", + "[INFO] [1712690293.863979]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", + "[INFO] [1712690293.864226]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.Human-readable_Programming_Language, SOMA.Programming_Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.864488]: Subclasses: []\n", + "[INFO] [1712690293.864791]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.865285]: Instances: []\n", + "[INFO] [1712690293.865541]: Direct Instances: []\n", + "[INFO] [1712690293.865850]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", + "[INFO] [1712690293.866107]: -------------------\n", + "[INFO] [1712690293.866352]: SOMA.Source_Code \n", + "[INFO] [1712690293.866588]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", + "[INFO] [1712690293.866829]: Ancestors: {SOMA.Source_Code, owl.Thing, SOMA.Computer_Program}\n", + "[INFO] [1712690293.867069]: Subclasses: []\n", + "[INFO] [1712690293.867372]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.867875]: Instances: []\n", + "[INFO] [1712690293.868136]: Direct Instances: []\n", + "[INFO] [1712690293.868418]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", + "[INFO] [1712690293.868665]: -------------------\n", + "[INFO] [1712690293.869020]: SOMA.HumanActivityRecording \n", + "[INFO] [1712690293.869364]: Super classes: [SOMA.RecordedEpisode]\n", + "[INFO] [1712690293.869659]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712690293.869937]: Subclasses: []\n", + "[INFO] [1712690293.870253]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.870778]: Instances: []\n", + "[INFO] [1712690293.871063]: Direct Instances: []\n", + "[INFO] [1712690293.871334]: Inverse Restrictions: []\n", + "[INFO] [1712690293.871584]: -------------------\n", + "[INFO] [1712690293.871827]: SOMA.Imagining \n", + "[INFO] [1712690293.872066]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712690293.872323]: Ancestors: {SOMA.Imagining, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.872576]: Subclasses: []\n", + "[INFO] [1712690293.872881]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.873373]: Instances: []\n", + "[INFO] [1712690293.873647]: Direct Instances: []\n", + "[INFO] [1712690293.873905]: Inverse Restrictions: []\n", + "[INFO] [1712690293.874146]: -------------------\n", + "[INFO] [1712690293.874382]: SOMA.Impediment \n", + "[INFO] [1712690293.874626]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", + "[INFO] [1712690293.874879]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Impediment, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690293.875139]: Subclasses: []\n", + "[INFO] [1712690293.875433]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.875921]: Instances: []\n", + "[INFO] [1712690293.876173]: Direct Instances: []\n", + "[INFO] [1712690293.876422]: Inverse Restrictions: []\n", + "[INFO] [1712690293.876671]: -------------------\n", + "[INFO] [1712690293.876917]: SOMA.Obstacle \n", + "[INFO] [1712690293.877156]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", + "[INFO] [1712690293.877403]: Ancestors: {SOMA.Obstacle, DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.877645]: Subclasses: []\n", + "[INFO] [1712690293.877947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.878441]: Instances: []\n", + "[INFO] [1712690293.878697]: Direct Instances: []\n", + "[INFO] [1712690293.878982]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712690293.879239]: -------------------\n", + "[INFO] [1712690293.879486]: SOMA.RestrictedObject \n", + "[INFO] [1712690293.879726]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", + "[INFO] [1712690293.880018]: Ancestors: {DUL.Entity, SOMA.RestrictedObject, DUL.Concept, DUL.SocialObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.880271]: Subclasses: []\n", + "[INFO] [1712690293.880574]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.881072]: Instances: []\n", + "[INFO] [1712690293.881331]: Direct Instances: []\n", + "[INFO] [1712690293.881618]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", + "[INFO] [1712690293.882167]: -------------------\n", + "[INFO] [1712690293.882552]: SOMA.StateTransition \n", + "[INFO] [1712690293.882845]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712690293.883119]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.StateTransition, owl.Thing, DUL.Transition}\n", + "[INFO] [1712690293.883389]: Subclasses: []\n", + "[INFO] [1712690293.883717]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.includesEvent, SOMA.hasTerminalScene, DUL.satisfies, SOMA.hasInitialScene]\n", + "[INFO] [1712690293.884233]: Instances: []\n", + "[INFO] [1712690293.884512]: Direct Instances: []\n", + "[INFO] [1712690293.884844]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", + "[INFO] [1712690293.885103]: -------------------\n", + "[INFO] [1712690293.885349]: SOMA.Inability \n", + "[INFO] [1712690293.885600]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712690293.885865]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.Inability, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690293.886116]: Subclasses: []\n", + "[INFO] [1712690293.886408]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.886897]: Instances: []\n", + "[INFO] [1712690293.887181]: Direct Instances: []\n", + "[INFO] [1712690293.887442]: Inverse Restrictions: []\n", + "[INFO] [1712690293.887695]: -------------------\n", + "[INFO] [1712690293.887941]: SOMA.IncompatibleSoftware \n", + "[INFO] [1712690293.888191]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712690293.888448]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, SOMA.IncompatibleSoftware, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.888716]: Subclasses: []\n", + "[INFO] [1712690293.889050]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.889568]: Instances: []\n", + "[INFO] [1712690293.889841]: Direct Instances: []\n", + "[INFO] [1712690293.890108]: Inverse Restrictions: []\n", + "[INFO] [1712690293.890375]: -------------------\n", + "[INFO] [1712690293.890636]: SOMA.InductiveReasoning \n", + "[INFO] [1712690293.890886]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", + "[INFO] [1712690293.891151]: Ancestors: {SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.InductiveReasoning}\n", + "[INFO] [1712690293.891416]: Subclasses: []\n", + "[INFO] [1712690293.891732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.892297]: Instances: []\n", + "[INFO] [1712690293.892598]: Direct Instances: []\n", + "[INFO] [1712690293.892944]: Inverse Restrictions: []\n", + "[INFO] [1712690293.893353]: -------------------\n", + "[INFO] [1712690293.893915]: SOMA.Infeasibility \n", + "[INFO] [1712690293.894440]: Super classes: [SOMA.Unsuccessfulness]\n", + "[INFO] [1712690293.894984]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Infeasibility, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690293.895542]: Subclasses: []\n", + "[INFO] [1712690293.896096]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.896893]: Instances: []\n", + "[INFO] [1712690293.897409]: Direct Instances: []\n", + "[INFO] [1712690293.897844]: Inverse Restrictions: []\n", + "[INFO] [1712690293.898247]: -------------------\n", + "[INFO] [1712690293.898632]: SOMA.InferenceRules \n", + "[INFO] [1712690293.899158]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", + "[INFO] [1712690293.899592]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.InferenceRules, DUL.Role}\n", + "[INFO] [1712690293.899992]: Subclasses: []\n", + "[INFO] [1712690293.900449]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.901126]: Instances: []\n", + "[INFO] [1712690293.901553]: Direct Instances: []\n", + "[INFO] [1712690293.901961]: Inverse Restrictions: []\n", + "[INFO] [1712690293.902339]: -------------------\n", + "[INFO] [1712690293.902713]: SOMA.InformationRetrieval \n", + "[INFO] [1712690293.903090]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", + "[INFO] [1712690293.903465]: Ancestors: {SOMA.InformationRetrieval, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.903857]: Subclasses: []\n", + "[INFO] [1712690293.904270]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.904870]: Instances: []\n", + "[INFO] [1712690293.905226]: Direct Instances: []\n", + "[INFO] [1712690293.905604]: Inverse Restrictions: []\n", + "[INFO] [1712690293.905951]: -------------------\n", + "[INFO] [1712690293.906284]: SOMA.InformationStorage \n", + "[INFO] [1712690293.906621]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", + "[INFO] [1712690293.906957]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.907305]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712690293.907695]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.comment]\n", + "[INFO] [1712690293.908274]: Instances: []\n", + "[INFO] [1712690293.908618]: Direct Instances: []\n", + "[INFO] [1712690293.908965]: Inverse Restrictions: []\n", + "[INFO] [1712690293.909307]: -------------------\n", + "[INFO] [1712690293.909651]: SOMA.StoredObject \n", + "[INFO] [1712690293.909980]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712690293.910322]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.StoredObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.910652]: Subclasses: []\n", + "[INFO] [1712690293.911035]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.911623]: Instances: []\n", + "[INFO] [1712690293.911977]: Direct Instances: []\n", + "[INFO] [1712690293.912401]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", + "[INFO] [1712690293.912732]: -------------------\n", + "[INFO] [1712690293.913073]: SOMA.InsertedObject \n", + "[INFO] [1712690293.913401]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", + "[INFO] [1712690293.913746]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, SOMA.InsertedObject, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.914086]: Subclasses: []\n", + "[INFO] [1712690293.914458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.915051]: Instances: []\n", + "[INFO] [1712690293.915402]: Direct Instances: []\n", + "[INFO] [1712690293.915778]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", + "[INFO] [1712690293.916107]: -------------------\n", + "[INFO] [1712690293.916433]: SOMA.Instructions \n", + "[INFO] [1712690293.916756]: Super classes: [SOMA.Item, SOMA.Item]\n", + "[INFO] [1712690293.917114]: Ancestors: {DUL.Entity, SOMA.Instructions, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.917457]: Subclasses: []\n", + "[INFO] [1712690293.917837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.918412]: Instances: []\n", + "[INFO] [1712690293.918772]: Direct Instances: []\n", + "[INFO] [1712690293.919113]: Inverse Restrictions: []\n", + "[INFO] [1712690293.919441]: -------------------\n", + "[INFO] [1712690293.919763]: SOMA.Interpreting \n", + "[INFO] [1712690293.920081]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690293.920408]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.920755]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", + "[INFO] [1712690293.921141]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.921717]: Instances: []\n", + "[INFO] [1712690293.922082]: Direct Instances: []\n", + "[INFO] [1712690293.922430]: Inverse Restrictions: []\n", + "[INFO] [1712690293.922762]: -------------------\n", + "[INFO] [1712690293.923094]: SOMA.InterrogativeClause \n", + "[INFO] [1712690293.923421]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", + "[INFO] [1712690293.923766]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.ClausalObject, SOMA.InterrogativeClause}\n", + "[INFO] [1712690293.924109]: Subclasses: []\n", + "[INFO] [1712690293.924489]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.925071]: Instances: []\n", + "[INFO] [1712690293.925431]: Direct Instances: []\n", + "[INFO] [1712690293.925817]: Inverse Restrictions: []\n", + "[INFO] [1712690293.926148]: -------------------\n", + "[INFO] [1712690293.926474]: SOMA.Introspecting \n", + "[INFO] [1712690293.926809]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712690293.927143]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.927478]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", + "[INFO] [1712690293.927852]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.928432]: Instances: []\n", + "[INFO] [1712690293.928792]: Direct Instances: []\n", + "[INFO] [1712690293.929141]: Inverse Restrictions: []\n", + "[INFO] [1712690293.929473]: -------------------\n", + "[INFO] [1712690293.929800]: SOMA.KineticFrictionAttribute \n", + "[INFO] [1712690293.930120]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712690293.930448]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.KineticFrictionAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", + "[INFO] [1712690293.930794]: Subclasses: []\n", + "[INFO] [1712690293.931173]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.931756]: Instances: []\n", + "[INFO] [1712690293.932107]: Direct Instances: []\n", + "[INFO] [1712690293.932446]: Inverse Restrictions: []\n", + "[INFO] [1712690293.932788]: -------------------\n", + "[INFO] [1712690293.933128]: SOMA.KinoDynamicData \n", + "[INFO] [1712690293.933470]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690293.933801]: Ancestors: {DUL.Entity, DUL.InformationObject, SOMA.KinoDynamicData, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.934126]: Subclasses: []\n", + "[INFO] [1712690293.934511]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.935083]: Instances: []\n", + "[INFO] [1712690293.935423]: Direct Instances: []\n", + "[INFO] [1712690293.935751]: Inverse Restrictions: []\n", + "[INFO] [1712690293.936081]: -------------------\n", + "[INFO] [1712690293.936411]: SOMA.Room \n", + "[INFO] [1712690293.936734]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712690293.937090]: Ancestors: {DUL.Entity, SOMA.Room, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690293.937374]: Subclasses: [SOMA.Kitchen]\n", + "[INFO] [1712690293.937686]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.938215]: Instances: []\n", + "[INFO] [1712690293.938501]: Direct Instances: []\n", + "[INFO] [1712690293.938776]: Inverse Restrictions: []\n", + "[INFO] [1712690293.939028]: -------------------\n", + "[INFO] [1712690293.939275]: SOMA.KnowledgeRepresentationLanguage \n", + "[INFO] [1712690293.939523]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690293.939780]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.KnowledgeRepresentationLanguage, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.940034]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712690293.940325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.940821]: Instances: []\n", + "[INFO] [1712690293.941113]: Direct Instances: []\n", + "[INFO] [1712690293.941385]: Inverse Restrictions: []\n", + "[INFO] [1712690293.941634]: -------------------\n", + "[INFO] [1712690293.941879]: SOMA.Labeling \n", + "[INFO] [1712690293.942117]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", + "[INFO] [1712690293.942368]: Ancestors: {SOMA.Interpreting, SOMA.Labeling, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690293.942625]: Subclasses: []\n", + "[INFO] [1712690293.942923]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690293.943414]: Instances: []\n", + "[INFO] [1712690293.943670]: Direct Instances: []\n", + "[INFO] [1712690293.943919]: Inverse Restrictions: []\n", + "[INFO] [1712690293.944170]: -------------------\n", + "[INFO] [1712690293.944420]: SOMA.Text \n", + "[INFO] [1712690293.944666]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.945037]: Ancestors: {owl.Thing, SOMA.Text}\n", + "[INFO] [1712690293.945378]: Subclasses: []\n", + "[INFO] [1712690293.945724]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.946237]: Instances: []\n", + "[INFO] [1712690293.946506]: Direct Instances: []\n", + "[INFO] [1712690293.946863]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", + "[INFO] [1712690293.947131]: -------------------\n", + "[INFO] [1712690293.947386]: SOMA.Leaning \n", + "[INFO] [1712690293.947634]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712690293.947903]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.Leaning, SOMA.PosturalMoving}\n", + "[INFO] [1712690293.948156]: Subclasses: []\n", + "[INFO] [1712690293.948453]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.948961]: Instances: []\n", + "[INFO] [1712690293.949234]: Direct Instances: []\n", + "[INFO] [1712690293.949489]: Inverse Restrictions: []\n", + "[INFO] [1712690293.949730]: -------------------\n", + "[INFO] [1712690293.949971]: SOMA.PosturalMoving \n", + "[INFO] [1712690293.950262]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712690293.950529]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.PosturalMoving}\n", + "[INFO] [1712690293.950787]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", + "[INFO] [1712690293.951075]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.951592]: Instances: []\n", + "[INFO] [1712690293.951862]: Direct Instances: []\n", + "[INFO] [1712690293.952119]: Inverse Restrictions: []\n", + "[INFO] [1712690293.952357]: -------------------\n", + "[INFO] [1712690293.952590]: SOMA.Learning \n", + "[INFO] [1712690293.952840]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", + "[INFO] [1712690293.953099]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing, SOMA.Learning}\n", + "[INFO] [1712690293.953350]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", + "[INFO] [1712690293.953638]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.954144]: Instances: []\n", + "[INFO] [1712690293.954411]: Direct Instances: []\n", + "[INFO] [1712690293.954667]: Inverse Restrictions: []\n", + "[INFO] [1712690293.954907]: -------------------\n", + "[INFO] [1712690293.955147]: SOMA.Leg \n", + "[INFO] [1712690293.955395]: Super classes: [SOMA.Limb, SOMA.Limb]\n", + "[INFO] [1712690293.955651]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Leg, SOMA.Limb, DUL.PhysicalObject}\n", + "[INFO] [1712690293.955897]: Subclasses: []\n", + "[INFO] [1712690293.956195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.956708]: Instances: []\n", + "[INFO] [1712690293.957133]: Direct Instances: []\n", + "[INFO] [1712690293.957567]: Inverse Restrictions: []\n", + "[INFO] [1712690293.957931]: -------------------\n", + "[INFO] [1712690293.958296]: SOMA.LimbMotion \n", + "[INFO] [1712690293.958673]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", + "[INFO] [1712690293.959012]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.LimbMotion, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690293.959385]: Subclasses: []\n", + "[INFO] [1712690293.959743]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.960263]: Instances: []\n", + "[INFO] [1712690293.960541]: Direct Instances: []\n", + "[INFO] [1712690293.960800]: Inverse Restrictions: []\n", + "[INFO] [1712690293.961045]: -------------------\n", + "[INFO] [1712690293.961288]: SOMA.LinkedObject \n", + "[INFO] [1712690293.961524]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712690293.961790]: Ancestors: {DUL.Entity, SOMA.LinkedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690293.962046]: Subclasses: []\n", + "[INFO] [1712690293.962342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.962836]: Instances: []\n", + "[INFO] [1712690293.963104]: Direct Instances: []\n", + "[INFO] [1712690293.963451]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", + "[INFO] [1712690293.963697]: -------------------\n", + "[INFO] [1712690293.963937]: SOMA.LinkageState \n", + "[INFO] [1712690293.964176]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", + "[INFO] [1712690293.964421]: Ancestors: {DUL.Entity, SOMA.LinkageState, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690293.964677]: Subclasses: []\n", + "[INFO] [1712690293.964978]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690293.965470]: Instances: []\n", + "[INFO] [1712690293.965723]: Direct Instances: []\n", + "[INFO] [1712690293.965970]: Inverse Restrictions: []\n", + "[INFO] [1712690293.966219]: -------------------\n", + "[INFO] [1712690293.966460]: SOMA.SpatioTemporalRole \n", + "[INFO] [1712690293.966695]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", + "[INFO] [1712690293.966938]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690293.967189]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", + "[INFO] [1712690293.967489]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.968004]: Instances: []\n", + "[INFO] [1712690293.968262]: Direct Instances: []\n", + "[INFO] [1712690293.968510]: Inverse Restrictions: []\n", + "[INFO] [1712690293.968748]: -------------------\n", + "[INFO] [1712690293.969139]: SOMA.SpatialRelationRole \n", + "[INFO] [1712690293.969449]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", + "[INFO] [1712690293.969743]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SpatialRelationRole, DUL.Role}\n", + "[INFO] [1712690293.970028]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", + "[INFO] [1712690293.970350]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.970862]: Instances: []\n", + "[INFO] [1712690293.971152]: Direct Instances: []\n", + "[INFO] [1712690293.971427]: Inverse Restrictions: []\n", + "[INFO] [1712690293.971679]: -------------------\n", + "[INFO] [1712690293.971926]: SOMA.LocutionaryAction \n", + "[INFO] [1712690293.972168]: Super classes: [owl.Thing]\n", + "[INFO] [1712690293.972410]: Ancestors: {owl.Thing, SOMA.LocutionaryAction}\n", + "[INFO] [1712690293.972654]: Subclasses: []\n", + "[INFO] [1712690293.972969]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690293.973464]: Instances: []\n", + "[INFO] [1712690293.973726]: Direct Instances: []\n", + "[INFO] [1712690293.973979]: Inverse Restrictions: []\n", + "[INFO] [1712690293.974231]: -------------------\n", + "[INFO] [1712690293.974477]: SOMA.LookingAt \n", + "[INFO] [1712690293.974952]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690293.975425]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.LookingAt}\n", + "[INFO] [1712690293.975866]: Subclasses: []\n", + "[INFO] [1712690293.976403]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.977097]: Instances: []\n", + "[INFO] [1712690293.977529]: Direct Instances: []\n", + "[INFO] [1712690293.977945]: Inverse Restrictions: []\n", + "[INFO] [1712690293.978362]: -------------------\n", + "[INFO] [1712690293.978729]: SOMA.LookingFor \n", + "[INFO] [1712690293.979077]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", + "[INFO] [1712690293.979494]: Ancestors: {owl.Thing, SOMA.LookingFor, SOMA.Perceiving}\n", + "[INFO] [1712690293.979909]: Subclasses: []\n", + "[INFO] [1712690293.980308]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.980927]: Instances: []\n", + "[INFO] [1712690293.981299]: Direct Instances: []\n", + "[INFO] [1712690293.981656]: Inverse Restrictions: []\n", + "[INFO] [1712690293.981997]: -------------------\n", + "[INFO] [1712690293.982330]: SOMA.Lowering \n", + "[INFO] [1712690293.982672]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690293.983017]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Lowering, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690293.983368]: Subclasses: []\n", + "[INFO] [1712690293.983774]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.984368]: Instances: []\n", + "[INFO] [1712690293.984719]: Direct Instances: []\n", + "[INFO] [1712690293.985078]: Inverse Restrictions: []\n", + "[INFO] [1712690293.985350]: -------------------\n", + "[INFO] [1712690293.985601]: SOMA.PhysicalAction \n", + "[INFO] [1712690293.985856]: Super classes: [DUL.Action, DUL.Action]\n", + "[INFO] [1712690293.986104]: Ancestors: {DUL.Entity, DUL.Event, SOMA.PhysicalAction, owl.Thing, DUL.Action}\n", + "[INFO] [1712690293.986351]: Subclasses: []\n", + "[INFO] [1712690293.986641]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.987144]: Instances: []\n", + "[INFO] [1712690293.987411]: Direct Instances: []\n", + "[INFO] [1712690293.987715]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690293.987967]: -------------------\n", + "[INFO] [1712690293.988211]: SOMA.Markup_Language \n", + "[INFO] [1712690293.988461]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", + "[INFO] [1712690293.988712]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, SOMA.Markup_Language, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690293.988978]: Subclasses: []\n", + "[INFO] [1712690293.989352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690293.989887]: Instances: []\n", + "[INFO] [1712690293.990166]: Direct Instances: []\n", + "[INFO] [1712690293.990420]: Inverse Restrictions: []\n", + "[INFO] [1712690293.990658]: -------------------\n", + "[INFO] [1712690293.990902]: SOMA.Masterful \n", + "[INFO] [1712690293.991145]: Super classes: [SOMA.DexterityDiagnosis]\n", + "[INFO] [1712690293.991398]: Ancestors: {SOMA.Masterful, DUL.Entity, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690293.991647]: Subclasses: []\n", + "[INFO] [1712690293.991946]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.992434]: Instances: []\n", + "[INFO] [1712690293.992702]: Direct Instances: []\n", + "[INFO] [1712690293.993134]: Inverse Restrictions: []\n", + "[INFO] [1712690293.993441]: -------------------\n", + "[INFO] [1712690293.993702]: SOMA.Material \n", + "[INFO] [1712690293.993949]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690293.994202]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Material, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690293.994451]: Subclasses: []\n", + "[INFO] [1712690293.994745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690293.995248]: Instances: []\n", + "[INFO] [1712690293.995509]: Direct Instances: []\n", + "[INFO] [1712690293.995763]: Inverse Restrictions: []\n", + "[INFO] [1712690293.996006]: -------------------\n", + "[INFO] [1712690293.996240]: SOMA.MedicalDiagnosis \n", + "[INFO] [1712690293.996489]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", + "[INFO] [1712690293.996748]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, DUL.Object, owl.Thing, SOMA.MedicalDiagnosis, DUL.Description}\n", + "[INFO] [1712690293.997004]: Subclasses: []\n", + "[INFO] [1712690293.997310]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712690293.997807]: Instances: []\n", + "[INFO] [1712690293.998089]: Direct Instances: []\n", + "[INFO] [1712690293.998352]: Inverse Restrictions: []\n", + "[INFO] [1712690293.998600]: -------------------\n", + "[INFO] [1712690293.998883]: SOMA.Memorizing \n", + "[INFO] [1712690293.999130]: Super classes: [SOMA.Learning, SOMA.Learning]\n", + "[INFO] [1712690293.999403]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.Memorizing, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing, SOMA.Learning}\n", + "[INFO] [1712690293.999659]: Subclasses: []\n", + "[INFO] [1712690293.999954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.000440]: Instances: []\n", + "[INFO] [1712690294.000711]: Direct Instances: []\n", + "[INFO] [1712690294.000974]: Inverse Restrictions: []\n", + "[INFO] [1712690294.001216]: -------------------\n", + "[INFO] [1712690294.001455]: SOMA.MentalAction \n", + "[INFO] [1712690294.001701]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", + "[INFO] [1712690294.001945]: Ancestors: {DUL.Entity, DUL.Event, SOMA.MentalAction, owl.Thing, DUL.Action}\n", + "[INFO] [1712690294.002197]: Subclasses: []\n", + "[INFO] [1712690294.002494]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.002985]: Instances: []\n", + "[INFO] [1712690294.003256]: Direct Instances: []\n", + "[INFO] [1712690294.003552]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712690294.004078]: -------------------\n", + "[INFO] [1712690294.004467]: SOMA.MeshShape \n", + "[INFO] [1712690294.004736]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", + "[INFO] [1712690294.005002]: Ancestors: {DUL.Entity, SOMA.MeshShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", + "[INFO] [1712690294.005274]: Subclasses: []\n", + "[INFO] [1712690294.005590]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasFilePath, rdf-schema.comment]\n", + "[INFO] [1712690294.006108]: Instances: []\n", + "[INFO] [1712690294.006383]: Direct Instances: []\n", + "[INFO] [1712690294.006635]: Inverse Restrictions: []\n", + "[INFO] [1712690294.006880]: -------------------\n", + "[INFO] [1712690294.007135]: SOMA.MeshShapeData \n", + "[INFO] [1712690294.007387]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", + "[INFO] [1712690294.007638]: Ancestors: {DUL.Entity, SOMA.MeshShapeData, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690294.007882]: Subclasses: []\n", + "[INFO] [1712690294.008177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.008677]: Instances: []\n", + "[INFO] [1712690294.008952]: Direct Instances: []\n", + "[INFO] [1712690294.009207]: Inverse Restrictions: []\n", + "[INFO] [1712690294.009442]: -------------------\n", + "[INFO] [1712690294.009673]: SOMA.MetaCognitionEvaluationTopic \n", + "[INFO] [1712690294.009903]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712690294.010161]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.010412]: Subclasses: []\n", + "[INFO] [1712690294.010703]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.011187]: Instances: []\n", + "[INFO] [1712690294.011457]: Direct Instances: []\n", + "[INFO] [1712690294.011707]: Inverse Restrictions: []\n", + "[INFO] [1712690294.011941]: -------------------\n", + "[INFO] [1712690294.012172]: SOMA.MetaCognitionTopic \n", + "[INFO] [1712690294.012403]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690294.012645]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.012923]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", + "[INFO] [1712690294.013228]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.013723]: Instances: []\n", + "[INFO] [1712690294.013988]: Direct Instances: []\n", + "[INFO] [1712690294.014246]: Inverse Restrictions: []\n", + "[INFO] [1712690294.014491]: -------------------\n", + "[INFO] [1712690294.014729]: SOMA.MetaCognitionMemoryTopic \n", + "[INFO] [1712690294.014964]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712690294.015213]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.MetaCognitionMemoryTopic, DUL.Role}\n", + "[INFO] [1712690294.015469]: Subclasses: []\n", + "[INFO] [1712690294.015766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.016251]: Instances: []\n", + "[INFO] [1712690294.016511]: Direct Instances: []\n", + "[INFO] [1712690294.016762]: Inverse Restrictions: []\n", + "[INFO] [1712690294.017016]: -------------------\n", + "[INFO] [1712690294.017253]: SOMA.MetaCognitionPlanningTopic \n", + "[INFO] [1712690294.017487]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", + "[INFO] [1712690294.017737]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.017979]: Subclasses: []\n", + "[INFO] [1712690294.018280]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.018776]: Instances: []\n", + "[INFO] [1712690294.019033]: Direct Instances: []\n", + "[INFO] [1712690294.019280]: Inverse Restrictions: []\n", + "[INFO] [1712690294.019510]: -------------------\n", + "[INFO] [1712690294.019750]: SOMA.ThinkAloudTopic \n", + "[INFO] [1712690294.019983]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", + "[INFO] [1712690294.020223]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.020486]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", + "[INFO] [1712690294.020781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.021307]: Instances: []\n", + "[INFO] [1712690294.021583]: Direct Instances: []\n", + "[INFO] [1712690294.021852]: Inverse Restrictions: []\n", + "[INFO] [1712690294.022087]: -------------------\n", + "[INFO] [1712690294.022321]: SOMA.MetacognitiveControlling \n", + "[INFO] [1712690294.022566]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", + "[INFO] [1712690294.022815]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.MetacognitiveControlling, DUL.Object, owl.Thing}\n", + "[INFO] [1712690294.023070]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", + "[INFO] [1712690294.023359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.023842]: Instances: []\n", + "[INFO] [1712690294.024120]: Direct Instances: []\n", + "[INFO] [1712690294.024384]: Inverse Restrictions: []\n", + "[INFO] [1712690294.024620]: -------------------\n", + "[INFO] [1712690294.024862]: SOMA.MetacognitiveMonitoring \n", + "[INFO] [1712690294.025094]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", + "[INFO] [1712690294.025329]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring}\n", + "[INFO] [1712690294.025581]: Subclasses: []\n", + "[INFO] [1712690294.025875]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.026374]: Instances: []\n", + "[INFO] [1712690294.026636]: Direct Instances: []\n", + "[INFO] [1712690294.026882]: Inverse Restrictions: []\n", + "[INFO] [1712690294.027125]: -------------------\n", + "[INFO] [1712690294.027360]: SOMA.Mixing \n", + "[INFO] [1712690294.027591]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", + "[INFO] [1712690294.027831]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Mixing}\n", + "[INFO] [1712690294.028095]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", + "[INFO] [1712690294.028394]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.028895]: Instances: []\n", + "[INFO] [1712690294.029175]: Direct Instances: []\n", + "[INFO] [1712690294.029446]: Inverse Restrictions: []\n", + "[INFO] [1712690294.029683]: -------------------\n", + "[INFO] [1712690294.029915]: SOMA.MixingTheory \n", + "[INFO] [1712690294.030153]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712690294.030394]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.MixingTheory, owl.Thing, DUL.Object, DUL.Description, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690294.030650]: Subclasses: []\n", + "[INFO] [1712690294.030948]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.031430]: Instances: []\n", + "[INFO] [1712690294.031702]: Direct Instances: []\n", + "[INFO] [1712690294.031966]: Inverse Restrictions: []\n", + "[INFO] [1712690294.032214]: -------------------\n", + "[INFO] [1712690294.032451]: SOMA.MonitoringJointState \n", + "[INFO] [1712690294.032684]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", + "[INFO] [1712690294.033095]: Ancestors: {DUL.Entity, SOMA.MonitoringJointState, DUL.Concept, DUL.SocialObject, SOMA.Proprioceiving, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690294.033557]: Subclasses: []\n", + "[INFO] [1712690294.033912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.034425]: Instances: []\n", + "[INFO] [1712690294.034704]: Direct Instances: []\n", + "[INFO] [1712690294.034959]: Inverse Restrictions: []\n", + "[INFO] [1712690294.035206]: -------------------\n", + "[INFO] [1712690294.035444]: SOMA.Proprioceiving \n", + "[INFO] [1712690294.035679]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", + "[INFO] [1712690294.035952]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Proprioceiving, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690294.036225]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", + "[INFO] [1712690294.036524]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.037020]: Instances: []\n", + "[INFO] [1712690294.037366]: Direct Instances: []\n", + "[INFO] [1712690294.037657]: Inverse Restrictions: []\n", + "[INFO] [1712690294.037911]: -------------------\n", + "[INFO] [1712690294.038153]: SOMA.MovingAway \n", + "[INFO] [1712690294.038389]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", + "[INFO] [1712690294.038635]: Ancestors: {DUL.Entity, SOMA.MovingAway, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", + "[INFO] [1712690294.038875]: Subclasses: []\n", + "[INFO] [1712690294.039165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.039678]: Instances: []\n", + "[INFO] [1712690294.039954]: Direct Instances: []\n", + "[INFO] [1712690294.040214]: Inverse Restrictions: []\n", + "[INFO] [1712690294.040452]: -------------------\n", + "[INFO] [1712690294.040689]: SOMA.MovingTo \n", + "[INFO] [1712690294.040946]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", + "[INFO] [1712690294.041199]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.MovingTo}\n", + "[INFO] [1712690294.041449]: Subclasses: []\n", + "[INFO] [1712690294.041739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.042226]: Instances: []\n", + "[INFO] [1712690294.042500]: Direct Instances: []\n", + "[INFO] [1712690294.042762]: Inverse Restrictions: []\n", + "[INFO] [1712690294.043005]: -------------------\n", + "[INFO] [1712690294.043237]: SOMA.Natural_Language \n", + "[INFO] [1712690294.043470]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", + "[INFO] [1712690294.043717]: Ancestors: {SOMA.Natural_Language, DUL.Entity, SOMA.System, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690294.043965]: Subclasses: []\n", + "[INFO] [1712690294.044260]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.044748]: Instances: []\n", + "[INFO] [1712690294.045071]: Direct Instances: []\n", + "[INFO] [1712690294.045428]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", + "[INFO] [1712690294.045689]: -------------------\n", + "[INFO] [1712690294.045936]: SOMA.Natural_Language_Text \n", + "[INFO] [1712690294.046173]: Super classes: [owl.Thing]\n", + "[INFO] [1712690294.046412]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", + "[INFO] [1712690294.046672]: Subclasses: []\n", + "[INFO] [1712690294.046979]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.047478]: Instances: []\n", + "[INFO] [1712690294.047764]: Direct Instances: []\n", + "[INFO] [1712690294.048074]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", + "[INFO] [1712690294.048328]: -------------------\n", + "[INFO] [1712690294.048568]: SOMA.Ontology \n", + "[INFO] [1712690294.048810]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", + "[INFO] [1712690294.049051]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", + "[INFO] [1712690294.049306]: Subclasses: []\n", + "[INFO] [1712690294.049615]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.050106]: Instances: []\n", + "[INFO] [1712690294.050374]: Direct Instances: []\n", + "[INFO] [1712690294.050684]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", + "[INFO] [1712690294.050927]: -------------------\n", + "[INFO] [1712690294.051163]: SOMA.Ontology_Language \n", + "[INFO] [1712690294.051399]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", + "[INFO] [1712690294.051647]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, owl.Thing, DUL.Object}\n", + "[INFO] [1712690294.051895]: Subclasses: []\n", + "[INFO] [1712690294.052201]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.052693]: Instances: []\n", + "[INFO] [1712690294.052960]: Direct Instances: []\n", + "[INFO] [1712690294.053272]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", + "[INFO] [1712690294.053531]: -------------------\n", + "[INFO] [1712690294.053772]: SOMA.Option \n", + "[INFO] [1712690294.054008]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712690294.054250]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, SOMA.Option, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690294.054495]: Subclasses: []\n", + "[INFO] [1712690294.054783]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.055287]: Instances: []\n", + "[INFO] [1712690294.055550]: Direct Instances: []\n", + "[INFO] [1712690294.055807]: Inverse Restrictions: []\n", + "[INFO] [1712690294.056041]: -------------------\n", + "[INFO] [1712690294.056271]: SOMA.Singleton \n", + "[INFO] [1712690294.056501]: Super classes: [owl.Thing]\n", + "[INFO] [1712690294.056748]: Ancestors: {owl.Thing, SOMA.Singleton}\n", + "[INFO] [1712690294.057011]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", + "[INFO] [1712690294.057306]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", + "[INFO] [1712690294.057820]: Instances: []\n", + "[INFO] [1712690294.058099]: Direct Instances: []\n", + "[INFO] [1712690294.058370]: Inverse Restrictions: []\n", + "[INFO] [1712690294.058608]: -------------------\n", + "[INFO] [1712690294.058838]: SOMA.Orienting \n", + "[INFO] [1712690294.059063]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", + "[INFO] [1712690294.059302]: Ancestors: {SOMA.Orienting, DUL.Entity, SOMA.Positioning, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690294.059555]: Subclasses: []\n", + "[INFO] [1712690294.059846]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.060328]: Instances: []\n", + "[INFO] [1712690294.060610]: Direct Instances: []\n", + "[INFO] [1712690294.060880]: Inverse Restrictions: []\n", + "[INFO] [1712690294.061117]: -------------------\n", + "[INFO] [1712690294.061349]: SOMA.Positioning \n", + "[INFO] [1712690294.061576]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", + "[INFO] [1712690294.061814]: Ancestors: {DUL.Entity, SOMA.Positioning, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690294.062080]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", + "[INFO] [1712690294.062371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.062855]: Instances: []\n", + "[INFO] [1712690294.063123]: Direct Instances: []\n", + "[INFO] [1712690294.063380]: Inverse Restrictions: []\n", + "[INFO] [1712690294.063616]: -------------------\n", + "[INFO] [1712690294.063846]: SOMA.Origin \n", + "[INFO] [1712690294.064072]: Super classes: [SOMA.Location, SOMA.Location]\n", + "[INFO] [1712690294.064308]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, SOMA.Origin, DUL.Role}\n", + "[INFO] [1712690294.064560]: Subclasses: []\n", + "[INFO] [1712690294.064856]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.065345]: Instances: []\n", + "[INFO] [1712690294.065599]: Direct Instances: []\n", + "[INFO] [1712690294.065908]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", + "[INFO] [1712690294.066152]: -------------------\n", + "[INFO] [1712690294.066386]: SOMA.ParkingArms \n", + "[INFO] [1712690294.066616]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", + "[INFO] [1712690294.066855]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.AssumingArmPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ParkingArms}\n", + "[INFO] [1712690294.067111]: Subclasses: []\n", + "[INFO] [1712690294.067413]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.067906]: Instances: [SOMA.parking_arms]\n", + "[INFO] [1712690294.068172]: Direct Instances: [SOMA.parking_arms]\n", + "[INFO] [1712690294.068436]: Inverse Restrictions: []\n", + "[INFO] [1712690294.068678]: -------------------\n", + "[INFO] [1712690294.068921]: SOMA.PhaseTransition \n", + "[INFO] [1712690294.069154]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", + "[INFO] [1712690294.069394]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", + "[INFO] [1712690294.069658]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", + "[INFO] [1712690294.069954]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.070441]: Instances: []\n", + "[INFO] [1712690294.070714]: Direct Instances: []\n", + "[INFO] [1712690294.070984]: Inverse Restrictions: []\n", + "[INFO] [1712690294.071222]: -------------------\n", + "[INFO] [1712690294.071453]: SOMA.PhysicalAccessibility \n", + "[INFO] [1712690294.071689]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712690294.071930]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.PhysicalAccessibility, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690294.072185]: Subclasses: []\n", + "[INFO] [1712690294.072483]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690294.072975]: Instances: []\n", + "[INFO] [1712690294.073255]: Direct Instances: []\n", + "[INFO] [1712690294.073515]: Inverse Restrictions: []\n", + "[INFO] [1712690294.073751]: -------------------\n", + "[INFO] [1712690294.073983]: SOMA.PhysicalBlockage \n", + "[INFO] [1712690294.074218]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", + "[INFO] [1712690294.074469]: Ancestors: {DUL.Entity, SOMA.PhysicalBlockage, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690294.074717]: Subclasses: []\n", + "[INFO] [1712690294.075010]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690294.075492]: Instances: []\n", + "[INFO] [1712690294.075768]: Direct Instances: []\n", + "[INFO] [1712690294.076023]: Inverse Restrictions: []\n", + "[INFO] [1712690294.076260]: -------------------\n", + "[INFO] [1712690294.076493]: SOMA.PhysicalExistence \n", + "[INFO] [1712690294.076723]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", + "[INFO] [1712690294.076978]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, SOMA.PhysicalExistence, owl.Thing, SOMA.PhysicalState}\n", + "[INFO] [1712690294.077234]: Subclasses: []\n", + "[INFO] [1712690294.077526]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.078010]: Instances: []\n", + "[INFO] [1712690294.078285]: Direct Instances: []\n", + "[INFO] [1712690294.078543]: Inverse Restrictions: []\n", + "[INFO] [1712690294.078780]: -------------------\n", + "[INFO] [1712690294.079012]: SOMA.PhysicalState \n", + "[INFO] [1712690294.079246]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712690294.079486]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing, SOMA.PhysicalState}\n", + "[INFO] [1712690294.079753]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", + "[INFO] [1712690294.080055]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690294.080544]: Instances: []\n", + "[INFO] [1712690294.080826]: Direct Instances: []\n", + "[INFO] [1712690294.081088]: Inverse Restrictions: []\n", + "[INFO] [1712690294.081324]: -------------------\n", + "[INFO] [1712690294.081562]: SOMA.PhysicsProcess \n", + "[INFO] [1712690294.081796]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", + "[INFO] [1712690294.082057]: Ancestors: {DUL.Entity, DUL.Event, DUL.Process, SOMA.PhysicsProcess, owl.Thing}\n", + "[INFO] [1712690294.082304]: Subclasses: []\n", + "[INFO] [1712690294.082597]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690294.083145]: Instances: []\n", + "[INFO] [1712690294.083494]: Direct Instances: []\n", + "[INFO] [1712690294.083781]: Inverse Restrictions: []\n", + "[INFO] [1712690294.084041]: -------------------\n", + "[INFO] [1712690294.084300]: SOMA.PlacingTheory \n", + "[INFO] [1712690294.084567]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", + "[INFO] [1712690294.084851]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.PlacingTheory, SOMA.ExecutableSchematicTheory}\n", + "[INFO] [1712690294.085125]: Subclasses: []\n", + "[INFO] [1712690294.085443]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.085942]: Instances: []\n", + "[INFO] [1712690294.086226]: Direct Instances: []\n", + "[INFO] [1712690294.086492]: Inverse Restrictions: []\n", + "[INFO] [1712690294.086737]: -------------------\n", + "[INFO] [1712690294.086985]: SOMA.PlanarJoint \n", + "[INFO] [1712690294.087231]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", + "[INFO] [1712690294.087480]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, SOMA.PlanarJoint, DUL.PhysicalObject}\n", + "[INFO] [1712690294.087736]: Subclasses: []\n", + "[INFO] [1712690294.088046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.088534]: Instances: []\n", + "[INFO] [1712690294.088802]: Direct Instances: []\n", + "[INFO] [1712690294.089229]: Inverse Restrictions: []\n", + "[INFO] [1712690294.089601]: -------------------\n", + "[INFO] [1712690294.089968]: SOMA.PluginRole \n", + "[INFO] [1712690294.090342]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", + "[INFO] [1712690294.090719]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, SOMA.PluginRole, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690294.091099]: Subclasses: []\n", + "[INFO] [1712690294.091441]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.091952]: Instances: []\n", + "[INFO] [1712690294.092220]: Direct Instances: []\n", + "[INFO] [1712690294.092543]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", + "[INFO] [1712690294.092816]: -------------------\n", + "[INFO] [1712690294.093071]: SOMA.Pourable \n", + "[INFO] [1712690294.093322]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", + "[INFO] [1712690294.093573]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Pourable, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690294.093820]: Subclasses: []\n", + "[INFO] [1712690294.094121]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.094633]: Instances: []\n", + "[INFO] [1712690294.094901]: Direct Instances: []\n", + "[INFO] [1712690294.095201]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712690294.095445]: -------------------\n", + "[INFO] [1712690294.095681]: SOMA.PouredObject \n", + "[INFO] [1712690294.095913]: Super classes: [SOMA.Patient, SOMA.Patient]\n", + "[INFO] [1712690294.096169]: Ancestors: {SOMA.PouredObject, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690294.096429]: Subclasses: []\n", + "[INFO] [1712690294.096743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.097244]: Instances: []\n", + "[INFO] [1712690294.097527]: Direct Instances: []\n", + "[INFO] [1712690294.097830]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", + "[INFO] [1712690294.098071]: -------------------\n", + "[INFO] [1712690294.098305]: SOMA.Pouring \n", + "[INFO] [1712690294.098539]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", + "[INFO] [1712690294.098780]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712690294.099047]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", + "[INFO] [1712690294.099348]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690294.099854]: Instances: []\n", + "[INFO] [1712690294.100179]: Direct Instances: []\n", + "[INFO] [1712690294.100482]: Inverse Restrictions: []\n", + "[INFO] [1712690294.100747]: -------------------\n", + "[INFO] [1712690294.101016]: SOMA.PouringInto \n", + "[INFO] [1712690294.101265]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712690294.101542]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.PouringInto, SOMA.Pouring}\n", + "[INFO] [1712690294.101826]: Subclasses: []\n", + "[INFO] [1712690294.102132]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.102624]: Instances: []\n", + "[INFO] [1712690294.102901]: Direct Instances: []\n", + "[INFO] [1712690294.103167]: Inverse Restrictions: []\n", + "[INFO] [1712690294.103404]: -------------------\n", + "[INFO] [1712690294.103636]: SOMA.PouringOnto \n", + "[INFO] [1712690294.103863]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", + "[INFO] [1712690294.104105]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.PouringOnto, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pouring}\n", + "[INFO] [1712690294.104359]: Subclasses: []\n", + "[INFO] [1712690294.104651]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.105169]: Instances: []\n", + "[INFO] [1712690294.105460]: Direct Instances: []\n", + "[INFO] [1712690294.105711]: Inverse Restrictions: []\n", + "[INFO] [1712690294.105947]: -------------------\n", + "[INFO] [1712690294.106189]: SOMA.Prediction \n", + "[INFO] [1712690294.106423]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712690294.106660]: Ancestors: {SOMA.Prediction, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690294.106897]: Subclasses: []\n", + "[INFO] [1712690294.107185]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.107688]: Instances: []\n", + "[INFO] [1712690294.107960]: Direct Instances: []\n", + "[INFO] [1712690294.108213]: Inverse Restrictions: []\n", + "[INFO] [1712690294.108445]: -------------------\n", + "[INFO] [1712690294.108676]: SOMA.Prospecting \n", + "[INFO] [1712690294.108919]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", + "[INFO] [1712690294.109159]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.Prospecting, SOMA.InformationAcquisition}\n", + "[INFO] [1712690294.109413]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", + "[INFO] [1712690294.109699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.110198]: Instances: []\n", + "[INFO] [1712690294.110464]: Direct Instances: []\n", + "[INFO] [1712690294.110723]: Inverse Restrictions: []\n", + "[INFO] [1712690294.110954]: -------------------\n", + "[INFO] [1712690294.111181]: SOMA.Predilection \n", + "[INFO] [1712690294.111440]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", + "[INFO] [1712690294.111690]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Predilection}\n", + "[INFO] [1712690294.111934]: Subclasses: []\n", + "[INFO] [1712690294.112224]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690294.112727]: Instances: []\n", + "[INFO] [1712690294.113065]: Direct Instances: []\n", + "[INFO] [1712690294.113368]: Inverse Restrictions: []\n", + "[INFO] [1712690294.113643]: -------------------\n", + "[INFO] [1712690294.113902]: SOMA.PreferenceOrder \n", + "[INFO] [1712690294.114156]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", + "[INFO] [1712690294.114407]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.PreferenceOrder}\n", + "[INFO] [1712690294.114653]: Subclasses: []\n", + "[INFO] [1712690294.114960]: Properties: [SOMA.orders, rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690294.115468]: Instances: []\n", + "[INFO] [1712690294.115739]: Direct Instances: []\n", + "[INFO] [1712690294.115988]: Inverse Restrictions: []\n", + "[INFO] [1712690294.116231]: -------------------\n", + "[INFO] [1712690294.116461]: SOMA.PreferenceRegion \n", + "[INFO] [1712690294.116743]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", + "[INFO] [1712690294.117020]: Ancestors: {DUL.Entity, SOMA.PreferenceRegion, DUL.Region, DUL.SocialObjectAttribute, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690294.117285]: Subclasses: []\n", + "[INFO] [1712690294.117584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isRegionFor, rdf-schema.label]\n", + "[INFO] [1712690294.118076]: Instances: []\n", + "[INFO] [1712690294.118367]: Direct Instances: []\n", + "[INFO] [1712690294.118629]: Inverse Restrictions: []\n", + "[INFO] [1712690294.118872]: -------------------\n", + "[INFO] [1712690294.119106]: SOMA.PrismaticJoint \n", + "[INFO] [1712690294.119343]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712690294.119598]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, SOMA.PrismaticJoint, DUL.PhysicalObject}\n", + "[INFO] [1712690294.119847]: Subclasses: []\n", + "[INFO] [1712690294.120140]: Properties: [SOMA.hasJointLimit, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.120629]: Instances: []\n", + "[INFO] [1712690294.120909]: Direct Instances: []\n", + "[INFO] [1712690294.121174]: Inverse Restrictions: []\n", + "[INFO] [1712690294.121415]: -------------------\n", + "[INFO] [1712690294.121644]: SOMA.ProcessFlow \n", + "[INFO] [1712690294.121881]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", + "[INFO] [1712690294.122118]: Ancestors: {DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.ProcessFlow, DUL.Description}\n", + "[INFO] [1712690294.122371]: Subclasses: []\n", + "[INFO] [1712690294.122667]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.definesProcess, rdf-schema.comment]\n", + "[INFO] [1712690294.123150]: Instances: []\n", + "[INFO] [1712690294.123403]: Direct Instances: []\n", + "[INFO] [1712690294.123707]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", + "[INFO] [1712690294.123946]: -------------------\n", + "[INFO] [1712690294.124178]: SOMA.Progression \n", + "[INFO] [1712690294.124406]: Super classes: [DUL.Situation, DUL.Situation]\n", + "[INFO] [1712690294.124640]: Ancestors: {SOMA.Progression, DUL.Entity, owl.Thing, DUL.Situation}\n", + "[INFO] [1712690294.124901]: Subclasses: []\n", + "[INFO] [1712690294.125204]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies]\n", + "[INFO] [1712690294.125696]: Instances: []\n", + "[INFO] [1712690294.125947]: Direct Instances: []\n", + "[INFO] [1712690294.126205]: Inverse Restrictions: []\n", + "[INFO] [1712690294.126441]: -------------------\n", + "[INFO] [1712690294.126671]: SOMA.Protector \n", + "[INFO] [1712690294.126897]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712690294.127143]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, SOMA.Protector, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690294.127392]: Subclasses: []\n", + "[INFO] [1712690294.127679]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.128158]: Instances: []\n", + "[INFO] [1712690294.128429]: Direct Instances: []\n", + "[INFO] [1712690294.128679]: Inverse Restrictions: []\n", + "[INFO] [1712690294.128919]: -------------------\n", + "[INFO] [1712690294.129148]: SOMA.ProximalTheory \n", + "[INFO] [1712690294.129381]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", + "[INFO] [1712690294.129625]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, SOMA.ProximalTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690294.129883]: Subclasses: []\n", + "[INFO] [1712690294.130180]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.130662]: Instances: []\n", + "[INFO] [1712690294.130934]: Direct Instances: []\n", + "[INFO] [1712690294.131191]: Inverse Restrictions: []\n", + "[INFO] [1712690294.131426]: -------------------\n", + "[INFO] [1712690294.131655]: SOMA.PushingAway \n", + "[INFO] [1712690294.131885]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712690294.132261]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Pushing, DUL.EventType, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.PushingAway}\n", + "[INFO] [1712690294.132551]: Subclasses: []\n", + "[INFO] [1712690294.132882]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.133408]: Instances: []\n", + "[INFO] [1712690294.133722]: Direct Instances: []\n", + "[INFO] [1712690294.134073]: Inverse Restrictions: []\n", + "[INFO] [1712690294.134339]: -------------------\n", + "[INFO] [1712690294.134588]: SOMA.PushingDown \n", + "[INFO] [1712690294.134828]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", + "[INFO] [1712690294.135077]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Pushing, DUL.EventType, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.PushingDown}\n", + "[INFO] [1712690294.135341]: Subclasses: []\n", + "[INFO] [1712690294.135647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.136150]: Instances: []\n", + "[INFO] [1712690294.136433]: Direct Instances: []\n", + "[INFO] [1712690294.136700]: Inverse Restrictions: []\n", + "[INFO] [1712690294.136957]: -------------------\n", + "[INFO] [1712690294.137197]: SOMA.PuttingDown \n", + "[INFO] [1712690294.137430]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", + "[INFO] [1712690294.137672]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, SOMA.PuttingDown, SOMA.PhysicalTask, DUL.Object, SOMA.Manipulating, owl.Thing}\n", + "[INFO] [1712690294.137908]: Subclasses: []\n", + "[INFO] [1712690294.138191]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.138686]: Instances: []\n", + "[INFO] [1712690294.138947]: Direct Instances: []\n", + "[INFO] [1712690294.139201]: Inverse Restrictions: []\n", + "[INFO] [1712690294.139433]: -------------------\n", + "[INFO] [1712690294.139672]: SOMA.QualityTransition \n", + "[INFO] [1712690294.139914]: Super classes: [DUL.Transition, DUL.Transition]\n", + "[INFO] [1712690294.140155]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.QualityTransition, owl.Thing, DUL.Transition}\n", + "[INFO] [1712690294.140394]: Subclasses: []\n", + "[INFO] [1712690294.140680]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.141185]: Instances: []\n", + "[INFO] [1712690294.141448]: Direct Instances: []\n", + "[INFO] [1712690294.141695]: Inverse Restrictions: []\n", + "[INFO] [1712690294.141929]: -------------------\n", + "[INFO] [1712690294.142155]: SOMA.Query \n", + "[INFO] [1712690294.142381]: Super classes: [SOMA.Message, SOMA.Message]\n", + "[INFO] [1712690294.142627]: Ancestors: {DUL.Entity, SOMA.Message, SOMA.Query, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690294.142884]: Subclasses: []\n", + "[INFO] [1712690294.143173]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.143647]: Instances: []\n", + "[INFO] [1712690294.143911]: Direct Instances: []\n", + "[INFO] [1712690294.144210]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", + "[INFO] [1712690294.144448]: -------------------\n", + "[INFO] [1712690294.144678]: SOMA.QueryAnsweringTask \n", + "[INFO] [1712690294.144913]: Super classes: [owl.Thing]\n", + "[INFO] [1712690294.145152]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", + "[INFO] [1712690294.145394]: Subclasses: []\n", + "[INFO] [1712690294.145684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.146164]: Instances: []\n", + "[INFO] [1712690294.146451]: Direct Instances: []\n", + "[INFO] [1712690294.146720]: Inverse Restrictions: []\n", + "[INFO] [1712690294.146959]: -------------------\n", + "[INFO] [1712690294.147191]: SOMA.QueryEngine \n", + "[INFO] [1712690294.147418]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690294.147664]: Ancestors: {DUL.Entity, SOMA.QueryEngine, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690294.147916]: Subclasses: []\n", + "[INFO] [1712690294.148211]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.148692]: Instances: []\n", + "[INFO] [1712690294.148963]: Direct Instances: []\n", + "[INFO] [1712690294.149218]: Inverse Restrictions: []\n", + "[INFO] [1712690294.149452]: -------------------\n", + "[INFO] [1712690294.149681]: SOMA.Reaching \n", + "[INFO] [1712690294.149907]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712690294.150166]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.Reaching}\n", + "[INFO] [1712690294.150427]: Subclasses: []\n", + "[INFO] [1712690294.150732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.151216]: Instances: []\n", + "[INFO] [1712690294.151499]: Direct Instances: []\n", + "[INFO] [1712690294.151766]: Inverse Restrictions: []\n", + "[INFO] [1712690294.152007]: -------------------\n", + "[INFO] [1712690294.152239]: SOMA.Retracting \n", + "[INFO] [1712690294.152488]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", + "[INFO] [1712690294.152739]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.Retracting}\n", + "[INFO] [1712690294.152996]: Subclasses: []\n", + "[INFO] [1712690294.153296]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.153862]: Instances: []\n", + "[INFO] [1712690294.154124]: Direct Instances: []\n", + "[INFO] [1712690294.154371]: Inverse Restrictions: []\n", + "[INFO] [1712690294.154605]: -------------------\n", + "[INFO] [1712690294.154853]: SOMA.Reasoner \n", + "[INFO] [1712690294.155088]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", + "[INFO] [1712690294.155337]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690294.155601]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", + "[INFO] [1712690294.155902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.156401]: Instances: []\n", + "[INFO] [1712690294.156657]: Direct Instances: []\n", + "[INFO] [1712690294.156925]: Inverse Restrictions: []\n", + "[INFO] [1712690294.157169]: -------------------\n", + "[INFO] [1712690294.157409]: SOMA.RecipientRole \n", + "[INFO] [1712690294.157638]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", + "[INFO] [1712690294.157880]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.BeneficiaryRole, SOMA.RecipientRole, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", + "[INFO] [1712690294.158126]: Subclasses: []\n", + "[INFO] [1712690294.158420]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.158908]: Instances: []\n", + "[INFO] [1712690294.159178]: Direct Instances: []\n", + "[INFO] [1712690294.159433]: Inverse Restrictions: []\n", + "[INFO] [1712690294.159680]: -------------------\n", + "[INFO] [1712690294.159918]: SOMA.RecordedEpisode \n", + "[INFO] [1712690294.160153]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", + "[INFO] [1712690294.160395]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing, SOMA.RecordedEpisode}\n", + "[INFO] [1712690294.160653]: Subclasses: [SOMA.HumanActivityRecording]\n", + "[INFO] [1712690294.160950]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", + "[INFO] [1712690294.161442]: Instances: []\n", + "[INFO] [1712690294.161695]: Direct Instances: []\n", + "[INFO] [1712690294.161958]: Inverse Restrictions: []\n", + "[INFO] [1712690294.162205]: -------------------\n", + "[INFO] [1712690294.162440]: SOMA.RedColor \n", + "[INFO] [1712690294.162676]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", + "[INFO] [1712690294.162914]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, SOMA.RedColor, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690294.163154]: Subclasses: []\n", + "[INFO] [1712690294.163450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.163938]: Instances: []\n", + "[INFO] [1712690294.164190]: Direct Instances: []\n", + "[INFO] [1712690294.164432]: Inverse Restrictions: []\n", + "[INFO] [1712690294.164663]: -------------------\n", + "[INFO] [1712690294.164910]: SOMA.Reification \n", + "[INFO] [1712690294.165153]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", + "[INFO] [1712690294.165397]: Ancestors: {DUL.Entity, SOMA.Reification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690294.165632]: Subclasses: []\n", + "[INFO] [1712690294.165912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", + "[INFO] [1712690294.166415]: Instances: [SOMA.RDFType]\n", + "[INFO] [1712690294.166700]: Direct Instances: [SOMA.RDFType]\n", + "[INFO] [1712690294.166970]: Inverse Restrictions: []\n", + "[INFO] [1712690294.167208]: -------------------\n", + "[INFO] [1712690294.167441]: SOMA.RelationalDatabase \n", + "[INFO] [1712690294.167687]: Super classes: [SOMA.Database, SOMA.Database]\n", + "[INFO] [1712690294.167942]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.Database, DUL.Object, SOMA.RelationalDatabase, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690294.168200]: Subclasses: []\n", + "[INFO] [1712690294.168497]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.169000]: Instances: []\n", + "[INFO] [1712690294.169267]: Direct Instances: []\n", + "[INFO] [1712690294.169522]: Inverse Restrictions: []\n", + "[INFO] [1712690294.169755]: -------------------\n", + "[INFO] [1712690294.169990]: SOMA.RelationalQueryLanguage \n", + "[INFO] [1712690294.170223]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", + "[INFO] [1712690294.170475]: Ancestors: {SOMA.Computer_Language, SOMA.RelationalQueryLanguage, SOMA.System, DUL.Entity, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", + "[INFO] [1712690294.170725]: Subclasses: []\n", + "[INFO] [1712690294.171017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.171500]: Instances: []\n", + "[INFO] [1712690294.171756]: Direct Instances: []\n", + "[INFO] [1712690294.172018]: Inverse Restrictions: []\n", + "[INFO] [1712690294.172261]: -------------------\n", + "[INFO] [1712690294.172495]: SOMA.RelevantPart \n", + "[INFO] [1712690294.172725]: Super classes: [SOMA.Feature, SOMA.Feature]\n", + "[INFO] [1712690294.172964]: Ancestors: {DUL.Entity, SOMA.Feature, owl.Thing, DUL.Object, SOMA.RelevantPart}\n", + "[INFO] [1712690294.173199]: Subclasses: []\n", + "[INFO] [1712690294.173483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.173972]: Instances: []\n", + "[INFO] [1712690294.174223]: Direct Instances: []\n", + "[INFO] [1712690294.174469]: Inverse Restrictions: []\n", + "[INFO] [1712690294.174706]: -------------------\n", + "[INFO] [1712690294.174952]: SOMA.Remembering \n", + "[INFO] [1712690294.175193]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", + "[INFO] [1712690294.175428]: Ancestors: {owl.Thing, SOMA.Remembering}\n", + "[INFO] [1712690294.175673]: Subclasses: []\n", + "[INFO] [1712690294.175977]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.176469]: Instances: []\n", + "[INFO] [1712690294.176722]: Direct Instances: []\n", + "[INFO] [1712690294.176983]: Inverse Restrictions: []\n", + "[INFO] [1712690294.177229]: -------------------\n", + "[INFO] [1712690294.177471]: SOMA.Retrospecting \n", + "[INFO] [1712690294.177704]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", + "[INFO] [1712690294.177945]: Ancestors: {SOMA.Retrospecting, owl.Thing, SOMA.InformationAcquisition}\n", + "[INFO] [1712690294.178181]: Subclasses: []\n", + "[INFO] [1712690294.178477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.178971]: Instances: []\n", + "[INFO] [1712690294.179224]: Direct Instances: []\n", + "[INFO] [1712690294.179513]: Inverse Restrictions: []\n", + "[INFO] [1712690294.179765]: -------------------\n", + "[INFO] [1712690294.180008]: SOMA.RemovedObject \n", + "[INFO] [1712690294.180243]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", + "[INFO] [1712690294.180485]: Ancestors: {DUL.Entity, SOMA.ExcludedObject, DUL.Concept, DUL.SocialObject, SOMA.RemovedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690294.180723]: Subclasses: []\n", + "[INFO] [1712690294.181026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.181517]: Instances: []\n", + "[INFO] [1712690294.181772]: Direct Instances: []\n", + "[INFO] [1712690294.182033]: Inverse Restrictions: []\n", + "[INFO] [1712690294.182424]: -------------------\n", + "[INFO] [1712690294.182799]: SOMA.Replanning \n", + "[INFO] [1712690294.183164]: Super classes: [SOMA.Planning, SOMA.Planning]\n", + "[INFO] [1712690294.183549]: Ancestors: {SOMA.Deciding, SOMA.Planning, SOMA.Replanning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690294.183928]: Subclasses: []\n", + "[INFO] [1712690294.184369]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.184915]: Instances: []\n", + "[INFO] [1712690294.185219]: Direct Instances: []\n", + "[INFO] [1712690294.185483]: Inverse Restrictions: []\n", + "[INFO] [1712690294.185732]: -------------------\n", + "[INFO] [1712690294.185997]: SOMA.RevoluteJoint \n", + "[INFO] [1712690294.186249]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", + "[INFO] [1712690294.186514]: Ancestors: {DUL.Entity, SOMA.RevoluteJoint, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", + "[INFO] [1712690294.186774]: Subclasses: []\n", + "[INFO] [1712690294.187079]: Properties: [SOMA.hasJointLimit, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.187574]: Instances: []\n", + "[INFO] [1712690294.187836]: Direct Instances: []\n", + "[INFO] [1712690294.188099]: Inverse Restrictions: []\n", + "[INFO] [1712690294.188340]: -------------------\n", + "[INFO] [1712690294.188575]: SOMA.Surface \n", + "[INFO] [1712690294.188806]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", + "[INFO] [1712690294.189049]: Ancestors: {DUL.Entity, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1712690294.189301]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", + "[INFO] [1712690294.189604]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.190106]: Instances: []\n", + "[INFO] [1712690294.190370]: Direct Instances: []\n", + "[INFO] [1712690294.190640]: Inverse Restrictions: []\n", + "[INFO] [1712690294.190880]: -------------------\n", + "[INFO] [1712690294.191113]: SOMA.Rubbing \n", + "[INFO] [1712690294.191343]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712690294.191584]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing, SOMA.Rubbing}\n", + "[INFO] [1712690294.191843]: Subclasses: []\n", + "[INFO] [1712690294.192136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.192622]: Instances: []\n", + "[INFO] [1712690294.192904]: Direct Instances: []\n", + "[INFO] [1712690294.193174]: Inverse Restrictions: []\n", + "[INFO] [1712690294.193412]: -------------------\n", + "[INFO] [1712690294.193645]: SOMA.Scene \n", + "[INFO] [1712690294.193883]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", + "[INFO] [1712690294.194130]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.Scene}\n", + "[INFO] [1712690294.194380]: Subclasses: []\n", + "[INFO] [1712690294.194672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies, DUL.includesEvent]\n", + "[INFO] [1712690294.195148]: Instances: []\n", + "[INFO] [1712690294.195424]: Direct Instances: []\n", + "[INFO] [1712690294.195721]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", + "[INFO] [1712690294.195960]: -------------------\n", + "[INFO] [1712690294.196191]: SOMA.SelectedObject \n", + "[INFO] [1712690294.196425]: Super classes: [DUL.Role, DUL.Role]\n", + "[INFO] [1712690294.196675]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.SelectedObject, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", + "[INFO] [1712690294.196925]: Subclasses: []\n", + "[INFO] [1712690294.197215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.197699]: Instances: []\n", + "[INFO] [1712690294.197973]: Direct Instances: []\n", + "[INFO] [1712690294.198290]: Inverse Restrictions: []\n", + "[INFO] [1712690294.198524]: -------------------\n", + "[INFO] [1712690294.198755]: SOMA.Selecting \n", + "[INFO] [1712690294.198983]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", + "[INFO] [1712690294.199231]: Ancestors: {SOMA.Deciding, SOMA.Selecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690294.199474]: Subclasses: []\n", + "[INFO] [1712690294.199762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.200269]: Instances: []\n", + "[INFO] [1712690294.200553]: Direct Instances: []\n", + "[INFO] [1712690294.200821]: Inverse Restrictions: []\n", + "[INFO] [1712690294.201060]: -------------------\n", + "[INFO] [1712690294.201310]: SOMA.SelectingItem \n", + "[INFO] [1712690294.201569]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", + "[INFO] [1712690294.201825]: Ancestors: {SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690294.202074]: Subclasses: []\n", + "[INFO] [1712690294.202366]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.202845]: Instances: []\n", + "[INFO] [1712690294.203128]: Direct Instances: []\n", + "[INFO] [1712690294.203382]: Inverse Restrictions: []\n", + "[INFO] [1712690294.203618]: -------------------\n", + "[INFO] [1712690294.203850]: SOMA.SelfReflection \n", + "[INFO] [1712690294.204083]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", + "[INFO] [1712690294.204332]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.MetacognitiveControlling, DUL.Object, owl.Thing, SOMA.SelfReflection}\n", + "[INFO] [1712690294.204583]: Subclasses: []\n", + "[INFO] [1712690294.204934]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690294.205607]: Instances: []\n", + "[INFO] [1712690294.205924]: Direct Instances: []\n", + "[INFO] [1712690294.206192]: Inverse Restrictions: []\n", + "[INFO] [1712690294.206436]: -------------------\n", + "[INFO] [1712690294.206785]: SOMA.Serving \n", + "[INFO] [1712690294.207071]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", + "[INFO] [1712690294.207352]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Delivering, DUL.EventType, DUL.Object, SOMA.PhysicalTask, SOMA.Serving, owl.Thing}\n", + "[INFO] [1712690294.207614]: Subclasses: []\n", + "[INFO] [1712690294.207915]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.208401]: Instances: []\n", + "[INFO] [1712690294.208676]: Direct Instances: []\n", + "[INFO] [1712690294.209025]: Inverse Restrictions: []\n", + "[INFO] [1712690294.209437]: -------------------\n", + "[INFO] [1712690294.209825]: SOMA.SettingGripper \n", + "[INFO] [1712690294.210202]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", + "[INFO] [1712690294.210596]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.SettingGripper, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", + "[INFO] [1712690294.210992]: Subclasses: []\n", + "[INFO] [1712690294.211331]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.211848]: Instances: []\n", + "[INFO] [1712690294.212126]: Direct Instances: []\n", + "[INFO] [1712690294.212380]: Inverse Restrictions: []\n", + "[INFO] [1712690294.212616]: -------------------\n", + "[INFO] [1712690294.212859]: SOMA.6DPose \n", + "[INFO] [1712690294.213108]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712690294.213354]: Ancestors: {DUL.Entity, SOMA.6DPose, DUL.SpaceRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690294.213629]: Subclasses: []\n", + "[INFO] [1712690294.213932]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", + "[INFO] [1712690294.214417]: Instances: []\n", + "[INFO] [1712690294.214698]: Direct Instances: []\n", + "[INFO] [1712690294.215003]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", + "[INFO] [1712690294.215248]: -------------------\n", + "[INFO] [1712690294.215479]: SOMA.Sharpness \n", + "[INFO] [1712690294.215707]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690294.215941]: Ancestors: {DUL.Entity, SOMA.Sharpness, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690294.216193]: Subclasses: []\n", + "[INFO] [1712690294.216486]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.216976]: Instances: []\n", + "[INFO] [1712690294.217260]: Direct Instances: []\n", + "[INFO] [1712690294.217515]: Inverse Restrictions: []\n", + "[INFO] [1712690294.217757]: -------------------\n", + "[INFO] [1712690294.217988]: SOMA.Simulating \n", + "[INFO] [1712690294.218217]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", + "[INFO] [1712690294.218449]: Ancestors: {SOMA.Simulating, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", + "[INFO] [1712690294.218697]: Subclasses: []\n", + "[INFO] [1712690294.218986]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.219467]: Instances: []\n", + "[INFO] [1712690294.219734]: Direct Instances: []\n", + "[INFO] [1712690294.219985]: Inverse Restrictions: []\n", + "[INFO] [1712690294.220216]: -------------------\n", + "[INFO] [1712690294.220443]: SOMA.Simulation_Reasoner \n", + "[INFO] [1712690294.220666]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712690294.220905]: Ancestors: {SOMA.Reasoner, DUL.Entity, SOMA.Simulation_Reasoner, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690294.221155]: Subclasses: []\n", + "[INFO] [1712690294.221444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.221924]: Instances: []\n", + "[INFO] [1712690294.222195]: Direct Instances: []\n", + "[INFO] [1712690294.222450]: Inverse Restrictions: []\n", + "[INFO] [1712690294.222684]: -------------------\n", + "[INFO] [1712690294.222913]: SOMA.Size \n", + "[INFO] [1712690294.223143]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", + "[INFO] [1712690294.223388]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Size, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690294.223629]: Subclasses: []\n", + "[INFO] [1712690294.223912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.224390]: Instances: []\n", + "[INFO] [1712690294.224653]: Direct Instances: []\n", + "[INFO] [1712690294.224906]: Inverse Restrictions: []\n", + "[INFO] [1712690294.225141]: -------------------\n", + "[INFO] [1712690294.225368]: SOMA.Slicing \n", + "[INFO] [1712690294.225592]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", + "[INFO] [1712690294.225834]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting, SOMA.Slicing}\n", + "[INFO] [1712690294.226079]: Subclasses: []\n", + "[INFO] [1712690294.226365]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.226863]: Instances: []\n", + "[INFO] [1712690294.227147]: Direct Instances: []\n", + "[INFO] [1712690294.227395]: Inverse Restrictions: []\n", + "[INFO] [1712690294.227629]: -------------------\n", + "[INFO] [1712690294.227860]: SOMA.Sluggishness \n", + "[INFO] [1712690294.228100]: Super classes: [SOMA.Amateurish]\n", + "[INFO] [1712690294.228346]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Sluggishness}\n", + "[INFO] [1712690294.228585]: Subclasses: []\n", + "[INFO] [1712690294.228873]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.229368]: Instances: []\n", + "[INFO] [1712690294.229639]: Direct Instances: []\n", + "[INFO] [1712690294.229886]: Inverse Restrictions: []\n", + "[INFO] [1712690294.230116]: -------------------\n", + "[INFO] [1712690294.230348]: SOMA.SocialState \n", + "[INFO] [1712690294.230581]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", + "[INFO] [1712690294.230829]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing, SOMA.SocialState}\n", + "[INFO] [1712690294.231072]: Subclasses: []\n", + "[INFO] [1712690294.231361]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", + "[INFO] [1712690294.231836]: Instances: []\n", + "[INFO] [1712690294.232111]: Direct Instances: []\n", + "[INFO] [1712690294.232372]: Inverse Restrictions: []\n", + "[INFO] [1712690294.232628]: -------------------\n", + "[INFO] [1712690294.232935]: SOMA.Software_Configuration \n", + "[INFO] [1712690294.233378]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", + "[INFO] [1712690294.233783]: Ancestors: {DUL.Configuration, DUL.Entity, DUL.Collection, DUL.SocialObject, SOMA.Software_Configuration, owl.Thing, DUL.Object}\n", + "[INFO] [1712690294.234081]: Subclasses: []\n", + "[INFO] [1712690294.234399]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.isDescribedBy]\n", + "[INFO] [1712690294.234894]: Instances: []\n", + "[INFO] [1712690294.235157]: Direct Instances: []\n", + "[INFO] [1712690294.235508]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", + "[INFO] [1712690294.235768]: -------------------\n", + "[INFO] [1712690294.236016]: SOMA.SoftwareLibrary \n", + "[INFO] [1712690294.236265]: Super classes: [SOMA.Software, SOMA.Software]\n", + "[INFO] [1712690294.236524]: Ancestors: {SOMA.SoftwareLibrary, DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Software, DUL.Description, DUL.Design}\n", + "[INFO] [1712690294.236774]: Subclasses: []\n", + "[INFO] [1712690294.237080]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", + "[INFO] [1712690294.237580]: Instances: []\n", + "[INFO] [1712690294.237845]: Direct Instances: []\n", + "[INFO] [1712690294.238092]: Inverse Restrictions: []\n", + "[INFO] [1712690294.238322]: -------------------\n", + "[INFO] [1712690294.238550]: SOMA.SourceMaterialRole \n", + "[INFO] [1712690294.238778]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", + "[INFO] [1712690294.239029]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, SOMA.SourceMaterialRole, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690294.239273]: Subclasses: []\n", + "[INFO] [1712690294.239561]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.240056]: Instances: []\n", + "[INFO] [1712690294.240318]: Direct Instances: []\n", + "[INFO] [1712690294.240568]: Inverse Restrictions: []\n", + "[INFO] [1712690294.240813]: -------------------\n", + "[INFO] [1712690294.241060]: SOMA.SphereShape \n", + "[INFO] [1712690294.241303]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", + "[INFO] [1712690294.241544]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion, SOMA.SphereShape}\n", + "[INFO] [1712690294.241786]: Subclasses: []\n", + "[INFO] [1712690294.242078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", + "[INFO] [1712690294.242582]: Instances: []\n", + "[INFO] [1712690294.242852]: Direct Instances: []\n", + "[INFO] [1712690294.243106]: Inverse Restrictions: []\n", + "[INFO] [1712690294.243341]: -------------------\n", + "[INFO] [1712690294.243578]: SOMA.Standing \n", + "[INFO] [1712690294.243815]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712690294.244073]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.Standing, SOMA.PosturalMoving}\n", + "[INFO] [1712690294.244323]: Subclasses: []\n", + "[INFO] [1712690294.244614]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.245120]: Instances: []\n", + "[INFO] [1712690294.245407]: Direct Instances: []\n", + "[INFO] [1712690294.245664]: Inverse Restrictions: []\n", + "[INFO] [1712690294.245899]: -------------------\n", + "[INFO] [1712690294.246131]: SOMA.StaticFrictionAttribute \n", + "[INFO] [1712690294.246363]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", + "[INFO] [1712690294.246614]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.StaticFrictionAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", + "[INFO] [1712690294.246859]: Subclasses: []\n", + "[INFO] [1712690294.247149]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.247664]: Instances: []\n", + "[INFO] [1712690294.247946]: Direct Instances: []\n", + "[INFO] [1712690294.248206]: Inverse Restrictions: []\n", + "[INFO] [1712690294.248444]: -------------------\n", + "[INFO] [1712690294.248677]: SOMA.Status \n", + "[INFO] [1712690294.248916]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712690294.249164]: Ancestors: {DUL.Entity, SOMA.Status, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Parameter}\n", + "[INFO] [1712690294.249422]: Subclasses: []\n", + "[INFO] [1712690294.249713]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.250213]: Instances: []\n", + "[INFO] [1712690294.250497]: Direct Instances: []\n", + "[INFO] [1712690294.250789]: Inverse Restrictions: []\n", + "[INFO] [1712690294.251028]: -------------------\n", + "[INFO] [1712690294.251259]: SOMA.StatusFailure \n", + "[INFO] [1712690294.251514]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690294.251765]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.StatusFailure}\n", + "[INFO] [1712690294.252011]: Subclasses: []\n", + "[INFO] [1712690294.252296]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.252820]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712690294.253103]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", + "[INFO] [1712690294.253367]: Inverse Restrictions: []\n", + "[INFO] [1712690294.253602]: -------------------\n", + "[INFO] [1712690294.253831]: SOMA.StimulusRole \n", + "[INFO] [1712690294.254057]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", + "[INFO] [1712690294.254302]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.StimulusRole, DUL.Role}\n", + "[INFO] [1712690294.254551]: Subclasses: []\n", + "[INFO] [1712690294.254840]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.255314]: Instances: []\n", + "[INFO] [1712690294.255572]: Direct Instances: []\n", + "[INFO] [1712690294.255828]: Inverse Restrictions: []\n", + "[INFO] [1712690294.256066]: -------------------\n", + "[INFO] [1712690294.256305]: SOMA.Stirring \n", + "[INFO] [1712690294.256543]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", + "[INFO] [1712690294.256787]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.Stirring, SOMA.PhysicalTask, SOMA.Mixing, owl.Thing}\n", + "[INFO] [1712690294.257046]: Subclasses: []\n", + "[INFO] [1712690294.257340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", + "[INFO] [1712690294.257815]: Instances: []\n", + "[INFO] [1712690294.258066]: Direct Instances: []\n", + "[INFO] [1712690294.258316]: Inverse Restrictions: []\n", + "[INFO] [1712690294.258548]: -------------------\n", + "[INFO] [1712690294.258780]: SOMA.Storage \n", + "[INFO] [1712690294.259010]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", + "[INFO] [1712690294.259248]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, SOMA.Storage, DUL.Quality, owl.Thing}\n", + "[INFO] [1712690294.259499]: Subclasses: []\n", + "[INFO] [1712690294.259794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.260278]: Instances: []\n", + "[INFO] [1712690294.260527]: Direct Instances: []\n", + "[INFO] [1712690294.260775]: Inverse Restrictions: []\n", + "[INFO] [1712690294.261025]: -------------------\n", + "[INFO] [1712690294.261267]: SOMA.StructuralDesign \n", + "[INFO] [1712690294.261499]: Super classes: [DUL.Design, DUL.Design]\n", + "[INFO] [1712690294.261735]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.StructuralDesign, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", + "[INFO] [1712690294.261990]: Subclasses: []\n", + "[INFO] [1712690294.262286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.262774]: Instances: []\n", + "[INFO] [1712690294.263058]: Direct Instances: []\n", + "[INFO] [1712690294.263320]: Inverse Restrictions: []\n", + "[INFO] [1712690294.263555]: -------------------\n", + "[INFO] [1712690294.263785]: SOMA.TaskInvocation \n", + "[INFO] [1712690294.264021]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", + "[INFO] [1712690294.264262]: Ancestors: {DUL.Entity, DUL.Workflow, DUL.SocialObject, SOMA.TaskInvocation, DUL.Plan, owl.Thing, DUL.Object, DUL.Description}\n", + "[INFO] [1712690294.264516]: Subclasses: []\n", + "[INFO] [1712690294.264820]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesTask, rdf-schema.label]\n", + "[INFO] [1712690294.265314]: Instances: []\n", + "[INFO] [1712690294.265591]: Direct Instances: []\n", + "[INFO] [1712690294.265914]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", + "[INFO] [1712690294.266156]: -------------------\n", + "[INFO] [1712690294.266391]: SOMA.SuccessDiagnosis \n", + "[INFO] [1712690294.266623]: Super classes: [SOMA.BehavioralDiagnosis]\n", + "[INFO] [1712690294.266907]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690294.267171]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", + "[INFO] [1712690294.267465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.267958]: Instances: []\n", + "[INFO] [1712690294.268224]: Direct Instances: []\n", + "[INFO] [1712690294.268488]: Inverse Restrictions: []\n", + "[INFO] [1712690294.268724]: -------------------\n", + "[INFO] [1712690294.268969]: SOMA.Successfulness \n", + "[INFO] [1712690294.269204]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712690294.269446]: Ancestors: {DUL.Entity, SOMA.Successfulness, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690294.269692]: Subclasses: []\n", + "[INFO] [1712690294.269998]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.270482]: Instances: []\n", + "[INFO] [1712690294.270745]: Direct Instances: []\n", + "[INFO] [1712690294.271008]: Inverse Restrictions: []\n", + "[INFO] [1712690294.271251]: -------------------\n", + "[INFO] [1712690294.271484]: SOMA.SupportState \n", + "[INFO] [1712690294.271732]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", + "[INFO] [1712690294.271979]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing, SOMA.SupportState}\n", + "[INFO] [1712690294.272231]: Subclasses: []\n", + "[INFO] [1712690294.272526]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", + "[INFO] [1712690294.273015]: Instances: []\n", + "[INFO] [1712690294.273287]: Direct Instances: []\n", + "[INFO] [1712690294.273545]: Inverse Restrictions: []\n", + "[INFO] [1712690294.273782]: -------------------\n", + "[INFO] [1712690294.274017]: SOMA.Supporter \n", + "[INFO] [1712690294.274246]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", + "[INFO] [1712690294.274493]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, SOMA.Supporter, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690294.274748]: Subclasses: []\n", + "[INFO] [1712690294.275042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.275525]: Instances: []\n", + "[INFO] [1712690294.275779]: Direct Instances: []\n", + "[INFO] [1712690294.276083]: Inverse Restrictions: []\n", + "[INFO] [1712690294.276332]: -------------------\n", + "[INFO] [1712690294.276571]: SOMA.SupportTheory \n", + "[INFO] [1712690294.276807]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", + "[INFO] [1712690294.277054]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.SupportTheory, SOMA.FunctionalSpatialSchemaTheory}\n", + "[INFO] [1712690294.277292]: Subclasses: []\n", + "[INFO] [1712690294.277582]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.278075]: Instances: []\n", + "[INFO] [1712690294.278330]: Direct Instances: []\n", + "[INFO] [1712690294.278571]: Inverse Restrictions: []\n", + "[INFO] [1712690294.278798]: -------------------\n", + "[INFO] [1712690294.279035]: SOMA.SupportedObject \n", + "[INFO] [1712690294.279273]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", + "[INFO] [1712690294.279519]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, SOMA.SupportedObject, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", + "[INFO] [1712690294.279758]: Subclasses: []\n", + "[INFO] [1712690294.280059]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.280565]: Instances: []\n", + "[INFO] [1712690294.280835]: Direct Instances: []\n", + "[INFO] [1712690294.281093]: Inverse Restrictions: []\n", + "[INFO] [1712690294.281343]: -------------------\n", + "[INFO] [1712690294.281581]: SOMA.SymbolicReasoner \n", + "[INFO] [1712690294.281818]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", + "[INFO] [1712690294.282059]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.SymbolicReasoner, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690294.282321]: Subclasses: []\n", + "[INFO] [1712690294.282617]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.283267]: Instances: []\n", + "[INFO] [1712690294.283675]: Direct Instances: []\n", + "[INFO] [1712690294.284190]: Inverse Restrictions: []\n", + "[INFO] [1712690294.284654]: -------------------\n", + "[INFO] [1712690294.285054]: SOMA.Tapping \n", + "[INFO] [1712690294.285546]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", + "[INFO] [1712690294.285965]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Tapping, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", + "[INFO] [1712690294.286354]: Subclasses: []\n", + "[INFO] [1712690294.286780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.287509]: Instances: []\n", + "[INFO] [1712690294.287838]: Direct Instances: []\n", + "[INFO] [1712690294.288120]: Inverse Restrictions: []\n", + "[INFO] [1712690294.288378]: -------------------\n", + "[INFO] [1712690294.288624]: SOMA.Taxis \n", + "[INFO] [1712690294.288870]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", + "[INFO] [1712690294.289134]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Taxis, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", + "[INFO] [1712690294.289389]: Subclasses: []\n", + "[INFO] [1712690294.289681]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.290169]: Instances: []\n", + "[INFO] [1712690294.290428]: Direct Instances: []\n", + "[INFO] [1712690294.290672]: Inverse Restrictions: []\n", + "[INFO] [1712690294.290925]: -------------------\n", + "[INFO] [1712690294.291168]: SOMA.TechnicalDiagnosis \n", + "[INFO] [1712690294.291409]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", + "[INFO] [1712690294.291649]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690294.291898]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", + "[INFO] [1712690294.292199]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", + "[INFO] [1712690294.292701]: Instances: []\n", + "[INFO] [1712690294.292958]: Direct Instances: []\n", + "[INFO] [1712690294.293202]: Inverse Restrictions: []\n", + "[INFO] [1712690294.293442]: -------------------\n", + "[INFO] [1712690294.293681]: SOMA.Temperature \n", + "[INFO] [1712690294.293926]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", + "[INFO] [1712690294.294166]: Ancestors: {DUL.Entity, SOMA.Temperature, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", + "[INFO] [1712690294.294406]: Subclasses: []\n", + "[INFO] [1712690294.294705]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", + "[INFO] [1712690294.295194]: Instances: []\n", + "[INFO] [1712690294.295451]: Direct Instances: []\n", + "[INFO] [1712690294.295737]: Inverse Restrictions: []\n", + "[INFO] [1712690294.295987]: -------------------\n", + "[INFO] [1712690294.296231]: SOMA.TemperatureRegion \n", + "[INFO] [1712690294.296464]: Super classes: [DUL.Region, DUL.Region]\n", + "[INFO] [1712690294.296707]: Ancestors: {SOMA.TemperatureRegion, DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690294.296951]: Subclasses: []\n", + "[INFO] [1712690294.297259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.297774]: Instances: []\n", + "[INFO] [1712690294.298043]: Direct Instances: []\n", + "[INFO] [1712690294.298380]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", + "[INFO] [1712690294.298658]: -------------------\n", + "[INFO] [1712690294.298925]: SOMA.Tempering \n", + "[INFO] [1712690294.299204]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", + "[INFO] [1712690294.299488]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Tempering}\n", + "[INFO] [1712690294.299773]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", + "[INFO] [1712690294.300124]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.300781]: Instances: []\n", + "[INFO] [1712690294.301109]: Direct Instances: []\n", + "[INFO] [1712690294.301426]: Inverse Restrictions: []\n", + "[INFO] [1712690294.301717]: -------------------\n", + "[INFO] [1712690294.302009]: SOMA.ThinkAloud \n", + "[INFO] [1712690294.302290]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", + "[INFO] [1712690294.302592]: Ancestors: {DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.ThinkAloud}\n", + "[INFO] [1712690294.302876]: Subclasses: []\n", + "[INFO] [1712690294.303204]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.303742]: Instances: []\n", + "[INFO] [1712690294.304036]: Direct Instances: []\n", + "[INFO] [1712690294.304307]: Inverse Restrictions: []\n", + "[INFO] [1712690294.304560]: -------------------\n", + "[INFO] [1712690294.304809]: SOMA.ThinkAloudActionTopic \n", + "[INFO] [1712690294.305058]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690294.305313]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudActionTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.305567]: Subclasses: []\n", + "[INFO] [1712690294.305857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.306344]: Instances: []\n", + "[INFO] [1712690294.306599]: Direct Instances: []\n", + "[INFO] [1712690294.306839]: Inverse Restrictions: []\n", + "[INFO] [1712690294.307085]: -------------------\n", + "[INFO] [1712690294.307328]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", + "[INFO] [1712690294.307566]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712690294.307814]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudGeneralKnowledgeTopic, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.308050]: Subclasses: []\n", + "[INFO] [1712690294.308331]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.308855]: Instances: []\n", + "[INFO] [1712690294.309166]: Direct Instances: []\n", + "[INFO] [1712690294.309450]: Inverse Restrictions: []\n", + "[INFO] [1712690294.309713]: -------------------\n", + "[INFO] [1712690294.309967]: SOMA.ThinkAloudKnowledgeTopic \n", + "[INFO] [1712690294.310356]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690294.310684]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.310997]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", + "[INFO] [1712690294.311335]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.311850]: Instances: []\n", + "[INFO] [1712690294.312127]: Direct Instances: []\n", + "[INFO] [1712690294.312391]: Inverse Restrictions: []\n", + "[INFO] [1712690294.312639]: -------------------\n", + "[INFO] [1712690294.312903]: SOMA.ThinkAloudObstructionTopic \n", + "[INFO] [1712690294.313247]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690294.313550]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.313833]: Subclasses: []\n", + "[INFO] [1712690294.314180]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.314761]: Instances: []\n", + "[INFO] [1712690294.315101]: Direct Instances: []\n", + "[INFO] [1712690294.315430]: Inverse Restrictions: []\n", + "[INFO] [1712690294.315742]: -------------------\n", + "[INFO] [1712690294.316064]: SOMA.ThinkAloudOpinionTopic \n", + "[INFO] [1712690294.316380]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690294.316705]: Ancestors: {SOMA.ThinkAloudOpinionTopic, DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.317037]: Subclasses: []\n", + "[INFO] [1712690294.317440]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.318142]: Instances: []\n", + "[INFO] [1712690294.318646]: Direct Instances: []\n", + "[INFO] [1712690294.319036]: Inverse Restrictions: []\n", + "[INFO] [1712690294.319377]: -------------------\n", + "[INFO] [1712690294.319708]: SOMA.ThinkAloudPerceptionTopic \n", + "[INFO] [1712690294.320036]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690294.320377]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.320698]: Subclasses: []\n", + "[INFO] [1712690294.321076]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.321674]: Instances: []\n", + "[INFO] [1712690294.322006]: Direct Instances: []\n", + "[INFO] [1712690294.322305]: Inverse Restrictions: []\n", + "[INFO] [1712690294.322578]: -------------------\n", + "[INFO] [1712690294.322854]: SOMA.ThinkAloudPlanTopic \n", + "[INFO] [1712690294.323114]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", + "[INFO] [1712690294.323383]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudPlanTopic, DUL.Object, owl.Thing, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.323654]: Subclasses: []\n", + "[INFO] [1712690294.323961]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.324459]: Instances: []\n", + "[INFO] [1712690294.324726]: Direct Instances: []\n", + "[INFO] [1712690294.324991]: Inverse Restrictions: []\n", + "[INFO] [1712690294.325234]: -------------------\n", + "[INFO] [1712690294.325470]: SOMA.ThinkAloudSceneKnowledgeTopic \n", + "[INFO] [1712690294.325706]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", + "[INFO] [1712690294.325952]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", + "[INFO] [1712690294.326211]: Subclasses: []\n", + "[INFO] [1712690294.326509]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.327004]: Instances: []\n", + "[INFO] [1712690294.327260]: Direct Instances: []\n", + "[INFO] [1712690294.327508]: Inverse Restrictions: []\n", + "[INFO] [1712690294.327757]: -------------------\n", + "[INFO] [1712690294.328000]: SOMA.Threshold \n", + "[INFO] [1712690294.328232]: Super classes: [DUL.Parameter]\n", + "[INFO] [1712690294.328474]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Threshold, DUL.Concept, owl.Thing, DUL.Object, DUL.Parameter}\n", + "[INFO] [1712690294.328710]: Subclasses: []\n", + "[INFO] [1712690294.329003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.329504]: Instances: []\n", + "[INFO] [1712690294.329761]: Direct Instances: []\n", + "[INFO] [1712690294.330006]: Inverse Restrictions: []\n", + "[INFO] [1712690294.330242]: -------------------\n", + "[INFO] [1712690294.330476]: SOMA.Throwing \n", + "[INFO] [1712690294.330741]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", + "[INFO] [1712690294.331000]: Ancestors: {DUL.Entity, SOMA.Throwing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", + "[INFO] [1712690294.331244]: Subclasses: []\n", + "[INFO] [1712690294.331538]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.332039]: Instances: []\n", + "[INFO] [1712690294.332348]: Direct Instances: []\n", + "[INFO] [1712690294.332614]: Inverse Restrictions: []\n", + "[INFO] [1712690294.332950]: -------------------\n", + "[INFO] [1712690294.333241]: SOMA.TimeRole \n", + "[INFO] [1712690294.333518]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", + "[INFO] [1712690294.333794]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.TimeRole, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", + "[INFO] [1712690294.334056]: Subclasses: []\n", + "[INFO] [1712690294.334368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.334877]: Instances: []\n", + "[INFO] [1712690294.335155]: Direct Instances: []\n", + "[INFO] [1712690294.335418]: Inverse Restrictions: []\n", + "[INFO] [1712690294.335664]: -------------------\n", + "[INFO] [1712690294.335909]: SOMA.Transporting \n", + "[INFO] [1712690294.336167]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", + "[INFO] [1712690294.336444]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", + "[INFO] [1712690294.336704]: Subclasses: []\n", + "[INFO] [1712690294.337005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.337501]: Instances: []\n", + "[INFO] [1712690294.337777]: Direct Instances: []\n", + "[INFO] [1712690294.338037]: Inverse Restrictions: []\n", + "[INFO] [1712690294.338282]: -------------------\n", + "[INFO] [1712690294.338523]: SOMA.Triplestore \n", + "[INFO] [1712690294.338761]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", + "[INFO] [1712690294.339009]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Triplestore, owl.Thing, SOMA.Database, DUL.Object, SOMA.GraphDatabase, SOMA.SoftwareRole, DUL.Role}\n", + "[INFO] [1712690294.339264]: Subclasses: []\n", + "[INFO] [1712690294.339559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.340066]: Instances: []\n", + "[INFO] [1712690294.340343]: Direct Instances: []\n", + "[INFO] [1712690294.340631]: Inverse Restrictions: []\n", + "[INFO] [1712690294.340915]: -------------------\n", + "[INFO] [1712690294.341184]: SOMA.Turning \n", + "[INFO] [1712690294.341444]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", + "[INFO] [1712690294.341712]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Turning, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.PosturalMoving}\n", + "[INFO] [1712690294.341995]: Subclasses: []\n", + "[INFO] [1712690294.342304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.342806]: Instances: []\n", + "[INFO] [1712690294.343081]: Direct Instances: []\n", + "[INFO] [1712690294.343337]: Inverse Restrictions: []\n", + "[INFO] [1712690294.343581]: -------------------\n", + "[INFO] [1712690294.343819]: SOMA.UnavailableSoftware \n", + "[INFO] [1712690294.344052]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", + "[INFO] [1712690294.344298]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, SOMA.UnavailableSoftware, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", + "[INFO] [1712690294.344556]: Subclasses: []\n", + "[INFO] [1712690294.344859]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.345352]: Instances: []\n", + "[INFO] [1712690294.345625]: Direct Instances: []\n", + "[INFO] [1712690294.345886]: Inverse Restrictions: []\n", + "[INFO] [1712690294.346127]: -------------------\n", + "[INFO] [1712690294.346362]: SOMA.Unsuccessfulness \n", + "[INFO] [1712690294.346622]: Super classes: [SOMA.SuccessDiagnosis]\n", + "[INFO] [1712690294.346876]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", + "[INFO] [1712690294.347150]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", + "[INFO] [1712690294.347448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712690294.347939]: Instances: []\n", + "[INFO] [1712690294.348199]: Direct Instances: []\n", + "[INFO] [1712690294.348449]: Inverse Restrictions: []\n", + "[INFO] [1712690294.348702]: -------------------\n", + "[INFO] [1712690294.348958]: SOMA.VideoData \n", + "[INFO] [1712690294.349200]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", + "[INFO] [1712690294.349443]: Ancestors: {DUL.Entity, SOMA.VideoData, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", + "[INFO] [1712690294.349686]: Subclasses: []\n", + "[INFO] [1712690294.350001]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712690294.350522]: Instances: []\n", + "[INFO] [1712690294.350780]: Direct Instances: []\n", + "[INFO] [1712690294.351022]: Inverse Restrictions: []\n", + "[INFO] [1712690294.351263]: -------------------\n", + "[INFO] [1712690294.351530]: SOMA.3DPosition \n", + "[INFO] [1712690294.351780]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", + "[INFO] [1712690294.352027]: Ancestors: {DUL.Entity, SOMA.3DPosition, DUL.SpaceRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", + "[INFO] [1712690294.352269]: Subclasses: []\n", + "[INFO] [1712690294.352562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", + "[INFO] [1712690294.353063]: Instances: []\n", + "[INFO] [1712690294.353327]: Direct Instances: []\n", + "[INFO] [1712690294.353580]: Inverse Restrictions: []\n", + "[INFO] [1712690294.353818]: -------------------\n", + "[INFO] [1712690294.354066]: SOMA.OntologyPlaceHolderObject \n", + "[INFO] [1712690294.354311]: Super classes: [SOMA.Container, owl.Thing]\n", + "[INFO] [1712690294.354590]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, SOMA.Container, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.OntologyPlaceHolderObject, DUL.Role}\n", + "[INFO] [1712690294.354840]: Subclasses: [SOMA.Ontoegg_tray]\n", + "[INFO] [1712690294.355121]: Properties: []\n", + "[INFO] [1712690294.355628]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690294.355887]: Direct Instances: []\n", + "[INFO] [1712690294.356141]: Inverse Restrictions: []\n", + "[INFO] [1712690294.356377]: -------------------\n", + "[INFO] [1712690294.356610]: SOMA.OntologyHandheldObject \n", + "[INFO] [1712690294.356841]: Super classes: [owl.Thing]\n", + "[INFO] [1712690294.357108]: Ancestors: {SOMA.OntologyHandheldObject, owl.Thing}\n", + "[INFO] [1712690294.357365]: Subclasses: [SOMA.Ontoegg]\n", + "[INFO] [1712690294.357649]: Properties: []\n", + "[INFO] [1712690294.358180]: Instances: [SOMA.egg_concept]\n", + "[INFO] [1712690294.358463]: Direct Instances: []\n", + "[INFO] [1712690294.358733]: Inverse Restrictions: []\n", + "[INFO] [1712690294.358981]: -------------------\n", + "[INFO] [1712690294.359222]: SOMA.OntologySubject \n", + "[INFO] [1712690294.359461]: Super classes: [owl.Thing]\n", + "[INFO] [1712690294.359725]: Ancestors: {owl.Thing, SOMA.OntologySubject}\n", + "[INFO] [1712690294.359988]: Subclasses: []\n", + "[INFO] [1712690294.360276]: Properties: []\n", + "[INFO] [1712690294.360802]: Instances: [SOMA.subject]\n", + "[INFO] [1712690294.361071]: Direct Instances: [SOMA.subject]\n", + "[INFO] [1712690294.361334]: Inverse Restrictions: []\n", + "[INFO] [1712690294.361580]: -------------------\n", + "[INFO] [1712690294.361815]: SOMA.OntologyObject \n", + "[INFO] [1712690294.362049]: Super classes: [owl.Thing]\n", + "[INFO] [1712690294.362301]: Ancestors: {SOMA.OntologyObject, owl.Thing}\n", + "[INFO] [1712690294.362539]: Subclasses: []\n", + "[INFO] [1712690294.362817]: Properties: []\n", + "[INFO] [1712690294.363339]: Instances: [SOMA.object]\n", + "[INFO] [1712690294.363604]: Direct Instances: [SOMA.object]\n", + "[INFO] [1712690294.363857]: Inverse Restrictions: []\n", + "[INFO] [1712690294.364108]: -------------------\n", + "[INFO] [1712690294.364350]: SOMA.Ontoegg \n", + "[INFO] [1712690294.364587]: Super classes: [SOMA.OntologyHandheldObject, owl.Thing]\n", + "[INFO] [1712690294.364845]: Ancestors: {SOMA.OntologyHandheldObject, SOMA.Ontoegg, owl.Thing}\n", + "[INFO] [1712690294.365093]: Subclasses: []\n", + "[INFO] [1712690294.365379]: Properties: []\n", + "[INFO] [1712690294.365872]: Instances: [SOMA.egg_concept]\n", + "[INFO] [1712690294.366128]: Direct Instances: [SOMA.egg_concept]\n", + "[INFO] [1712690294.366373]: Inverse Restrictions: []\n", + "[INFO] [1712690294.366600]: -------------------\n", + "[INFO] [1712690294.366856]: SOMA.Ontoegg_tray \n", + "[INFO] [1712690294.367100]: Super classes: [SOMA.OntologyPlaceHolderObject, owl.Thing]\n", + "[INFO] [1712690294.367372]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, SOMA.Container, owl.Thing, DUL.Object, SOMA.Ontoegg_tray, SOMA.EventAdjacentRole, SOMA.OntologyPlaceHolderObject, DUL.Role}\n", + "[INFO] [1712690294.367620]: Subclasses: []\n", + "[INFO] [1712690294.367910]: Properties: []\n", + "[INFO] [1712690294.368420]: Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690294.368691]: Direct Instances: [SOMA.egg_tray_concept]\n", + "[INFO] [1712690294.368944]: Inverse Restrictions: []\n", + "[INFO] [1712690294.369193]: -------------------\n", + "[INFO] [1712690294.369433]: SOMA.DynamicOntologyConcept \n", + "[INFO] [1712690294.369670]: Super classes: [owl.Thing]\n", + "[INFO] [1712690294.369922]: Ancestors: {SOMA.DynamicOntologyConcept, owl.Thing}\n", + "[INFO] [1712690294.370174]: Subclasses: []\n", + "[INFO] [1712690294.370461]: Properties: []\n", + "[INFO] [1712690294.371008]: Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", + "[INFO] [1712690294.371292]: Direct Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", + "[INFO] [1712690294.371553]: Inverse Restrictions: []\n" ] }, { @@ -11095,8 +11102,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.371357Z", - "start_time": "2024-04-09T09:50:10.360910Z" + "end_time": "2024-04-09T19:18:14.390521Z", + "start_time": "2024-04-09T19:18:14.379633Z" } }, "outputs": [ @@ -11169,7 +11176,7 @@ { "cell_type": "markdown", "source": [ - "## Create a new ontology class and its individual\n", + "## Create a new ontology concept class and its individual\n", "\n", "A new ontology class can be created dynamically as inheriting from an existing class in the loaded ontology.\n", "Here we create the class and its instance, also known as [__individual__](https://owlready2.readthedocs.io/en/latest/class.html#creating-equivalent-classes) in ontology terms, which is then wrapped inside an `OntologyConceptHolder`." @@ -11189,8 +11196,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.385254Z", - "start_time": "2024-04-09T09:50:10.371791Z" + "end_time": "2024-04-09T19:18:14.403703Z", + "start_time": "2024-04-09T19:18:14.390954Z" } }, "outputs": [], @@ -11199,7 +11206,7 @@ { "cell_type": "markdown", "source": [ - "## Access ontology classes and individuals\n", + "## Access ontology concept classes and individuals\n", "All ontology classes created on the fly inherit from __`owlready2.Thing`__, and so share the same namespace with the loaded ontology instance `onto`. They can then be accessible through that namespace by __`main_ontology.`__.\n", "The same applies for individuals of those classes, accessible by __`main_ontology.`__" ], @@ -11211,13 +11218,13 @@ "cell_type": "code", "source": [ "ontology_manager.print_ontology_class(main_ontology.CustomContainerConcept)\n", - "print(f\"custom_container_concept is {main_ontology.ontology_custom_container_concept}: {custom_container_concept_holder is main_ontology.ontology_custom_container_concept}\")" + "print(f\"custom_container_concept is {main_ontology.ontology_custom_container_concept}: {custom_container_concept_holder.ontology_concept is main_ontology.ontology_custom_container_concept}\")" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.404996Z", - "start_time": "2024-04-09T09:50:10.385729Z" + "end_time": "2024-04-09T19:18:14.417703Z", + "start_time": "2024-04-09T19:18:14.404158Z" } }, "outputs": [ @@ -11225,16 +11232,16 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712656210.400535]: -------------------\n", - "[INFO] [1712656210.401217]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712656210.401553]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712656210.401861]: Ancestors: {SOMA-HOME.CustomContainerConcept, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712656210.402154]: Subclasses: []\n", - "[INFO] [1712656210.402501]: Properties: []\n", - "[INFO] [1712656210.403068]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712656210.403376]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712656210.403667]: Inverse Restrictions: []\n", - "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: False\n" + "[INFO] [1712690294.412744]: -------------------\n", + "[INFO] [1712690294.413391]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712690294.413740]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712690294.414044]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA-HOME.CustomContainerConcept, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712690294.414533]: Subclasses: []\n", + "[INFO] [1712690294.414967]: Properties: []\n", + "[INFO] [1712690294.415613]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712690294.416013]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712690294.416384]: Inverse Restrictions: []\n", + "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } ], @@ -11257,8 +11264,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.421049Z", - "start_time": "2024-04-09T09:50:10.405612Z" + "end_time": "2024-04-09T19:18:14.433630Z", + "start_time": "2024-04-09T19:18:14.418134Z" } }, "outputs": [ @@ -11266,15 +11273,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712656210.416254]: -------------------\n", - "[INFO] [1712656210.416954]: SOMA.Cup \n", - "[INFO] [1712656210.417386]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712656210.417790]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalArtifact, DUL.Object, owl.Thing, SOMA.Tableware, SOMA.Crockery, DUL.PhysicalObject, DUL.Entity, SOMA.Cup}\n", - "[INFO] [1712656210.418179]: Subclasses: []\n", - "[INFO] [1712656210.418587]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712656210.419123]: Instances: []\n", - "[INFO] [1712656210.419400]: Direct Instances: []\n", - "[INFO] [1712656210.419657]: Inverse Restrictions: []\n" + "[INFO] [1712690294.428489]: -------------------\n", + "[INFO] [1712690294.429125]: SOMA.Cup \n", + "[INFO] [1712690294.429589]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712690294.430025]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedTool, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Cup, DUL.PhysicalObject}\n", + "[INFO] [1712690294.430442]: Subclasses: []\n", + "[INFO] [1712690294.430912]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", + "[INFO] [1712690294.431616]: Instances: []\n", + "[INFO] [1712690294.431995]: Direct Instances: []\n", + "[INFO] [1712690294.432343]: Inverse Restrictions: []\n" ] } ], @@ -11284,7 +11291,7 @@ "cell_type": "markdown", "source": [ "## Connect ontology class individuals with designators\n", - "After creating `custom_container_concept` class, we connect it to a designator (say `obj_designator`) by:\n", + "After creating `custom_container_concept_holder` (wrapping `custom_container_concept` as an `owlready2.Thing`), we connect it to a designator (say `obj_designator`) by:\n", "- Append to `obj_designator.ontology_concept_holders` with `custom_container_concept_holder`\n", "- Append to `custom_container_concept_holder.designators` with `obj_designator`" ], @@ -11302,8 +11309,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.432780Z", - "start_time": "2024-04-09T09:50:10.421648Z" + "end_time": "2024-04-09T19:18:14.444913Z", + "start_time": "2024-04-09T19:18:14.434129Z" } }, "outputs": [], @@ -11325,14 +11332,16 @@ " designator_class=ObjectDesignatorDescription,\n", " ontology_concept_name=\"AnotherCustomContainerConcept\",\n", " ontology_parent_class=ontology_designed_container_class)\n", - "print(another_custom_container_designator.ontology_concept_holders)\n", - "print(OntologyConceptHolder.get_ontology_concept_holder_by_name(main_ontology.AnotherCustomContainerConcept.instances()[0].name).get_default_designator().names)" + "another_custom_container_concept = another_custom_container_designator.ontology_concept_holders[0].ontology_concept \n", + "print(f\"Ontology concept: {another_custom_container_concept.name} of class {type(another_custom_container_concept)}\")\n", + "another_custom_container_designator = OntologyConceptHolder.get_ontology_concept_holder_by_name(main_ontology.AnotherCustomContainerConcept.instances()[0].name).get_default_designator()\n", + "print(f\"Designator: {another_custom_container_designator.names[0]} of type {type(another_custom_container_designator)}\")" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.443583Z", - "start_time": "2024-04-09T09:50:10.433439Z" + "end_time": "2024-04-09T19:18:14.455692Z", + "start_time": "2024-04-09T19:18:14.446037Z" } }, "outputs": [ @@ -11340,8 +11349,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "[]\n", - "['another_custom_container']\n" + "Ontology concept: another_custom_container_concept of class SOMA-HOME.AnotherCustomContainerConcept\n", + "Designator: another_custom_container of type \n" ] } ], @@ -11375,8 +11384,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.457870Z", - "start_time": "2024-04-09T09:50:10.444165Z" + "end_time": "2024-04-09T19:18:14.469901Z", + "start_time": "2024-04-09T19:18:14.456158Z" } }, "outputs": [], @@ -11386,7 +11395,7 @@ "cell_type": "markdown", "source": [ "There, we use `soma.DesignedContainer` & `soma.Shape`, existing concept in SOMA ontology, as the parent classes for the subject & object concepts respectively.\n", - "There is also a note that those classes, as inheriting from __owlready2__-provided classes, are automatically given the same namespace of `main_ontology`, so later on to be accessible through it.\n", + "There is also a note that those classes will have the same namespace with `main_ontology`, so later on to be accessible through it.\n", "\n", "Then now we define some instances of the newly created triple classes, and link them to object designators, again using __`ontology_manager.create_ontology_linked_designator()`__" ], @@ -11397,26 +11406,26 @@ { "cell_type": "code", "source": [ - "def create_ontology_handheld_object(object_name: str, ontology_parent_class: Type[owlready2.Thing]):\n", + "def create_ontology_handheld_object_designator(object_name: str, ontology_parent_class: Type[owlready2.Thing]):\n", " return ontology_manager.create_ontology_linked_designator(designator_name=object_name,\n", " designator_class=ObjectDesignatorDescription,\n", " ontology_concept_name=f\"Onto{object_name}\",\n", " ontology_parent_class=ontology_parent_class)\n", "# Holdable Objects\n", - "cookie_box = create_ontology_handheld_object(\"cookie_box\", main_ontology.OntologyHandheldObject)\n", - "egg = create_ontology_handheld_object(\"egg\", main_ontology.OntologyHandheldObject)\n", + "cookie_box = create_ontology_handheld_object_designator(\"cookie_box\", main_ontology.OntologyHandheldObject)\n", + "egg = create_ontology_handheld_object_designator(\"egg\", main_ontology.OntologyHandheldObject)\n", " \n", "# Placeholder objects\n", - "placeholders = [create_ontology_handheld_object(object_name, main_ontology.OntologyPlaceHolderObject)\n", + "placeholders = [create_ontology_handheld_object_designator(object_name, main_ontology.OntologyPlaceHolderObject)\n", " for object_name in ['table', 'stool', 'shelf']]\n", "\n", - "egg_tray = create_ontology_handheld_object(\"egg_tray\", main_ontology.OntologyPlaceHolderObject)" + "egg_tray = create_ontology_handheld_object_designator(\"egg_tray\", main_ontology.OntologyPlaceHolderObject)" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.473295Z", - "start_time": "2024-04-09T09:50:10.458483Z" + "end_time": "2024-04-09T19:18:14.485135Z", + "start_time": "2024-04-09T19:18:14.470540Z" } }, "outputs": [], @@ -11446,8 +11455,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.487382Z", - "start_time": "2024-04-09T09:50:10.473958Z" + "end_time": "2024-04-09T19:18:14.498679Z", + "start_time": "2024-04-09T19:18:14.485612Z" } }, "outputs": [], @@ -11491,8 +11500,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.497725Z", - "start_time": "2024-04-09T09:50:10.488555Z" + "end_time": "2024-04-09T19:18:14.508742Z", + "start_time": "2024-04-09T19:18:14.499111Z" } }, "outputs": [ @@ -11546,8 +11555,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T09:50:10.512151Z", - "start_time": "2024-04-09T09:50:10.498343Z" + "end_time": "2024-04-09T19:18:14.522795Z", + "start_time": "2024-04-09T19:18:14.509169Z" } }, "outputs": [ @@ -11587,8 +11596,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T09:50:11.054825Z", - "start_time": "2024-04-09T09:50:10.512792Z" + "end_time": "2024-04-09T19:18:15.178858Z", + "start_time": "2024-04-09T19:18:14.523230Z" } }, "cell_type": "code", @@ -11627,8 +11636,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T09:50:11.135066Z", - "start_time": "2024-04-09T09:50:11.055514Z" + "end_time": "2024-04-09T19:18:15.187180Z", + "start_time": "2024-04-09T19:18:15.179648Z" } }, "cell_type": "code", @@ -11655,22 +11664,22 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T09:50:11.219495Z", - "start_time": "2024-04-09T09:50:11.135847Z" + "end_time": "2024-04-09T19:18:15.270787Z", + "start_time": "2024-04-09T19:18:15.187653Z" } }, "cell_type": "code", "source": [ "# Holdable obj\n", "milk_box = Object(\"milk_box\", ObjectType.MILK, \"milk.stl\")\n", - "milk_box_designator = create_ontology_handheld_object(milk_box.name, main_ontology.OntologyPourableObject)\n", + "milk_box_designator = create_ontology_handheld_object_designator(milk_box.name, main_ontology.OntologyPourableObject)\n", "\n", "# Liquid-holders\n", "cup = Object(\"cup\", ObjectType.JEROEN_CUP, \"jeroen_cup.stl\", pose=Pose([1.4, 1, 0.9]))\n", "bowl = Object(\"bowl\", ObjectType.BOWL, \"bowl.stl\", pose=Pose([1.4, 0.5, 0.9]))\n", "pitcher = Object(\"pitcher\", ObjectType.GENERIC_OBJECT, \"Static_MilkPitcher.stl\", pose=Pose([1.4, 0, 0.9]))\n", "milk_holders = [cup, bowl, pitcher]\n", - "milk_holder_designators = [create_ontology_handheld_object(obj.name, main_ontology.OntologyLiquidHolderObject)\n", + "milk_holder_designators = [create_ontology_handheld_object_designator(obj.name, main_ontology.OntologyLiquidHolderObject)\n", " for obj in milk_holders]" ], "outputs": [], @@ -11684,8 +11693,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T09:50:11.237716Z", - "start_time": "2024-04-09T09:50:11.220130Z" + "end_time": "2024-04-09T19:18:15.298235Z", + "start_time": "2024-04-09T19:18:15.271829Z" } }, "cell_type": "code", @@ -11705,8 +11714,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T09:50:11.247494Z", - "start_time": "2024-04-09T09:50:11.238467Z" + "end_time": "2024-04-09T19:18:15.308277Z", + "start_time": "2024-04-09T19:18:15.298747Z" } }, "cell_type": "code", @@ -11733,8 +11742,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T09:50:11.262286Z", - "start_time": "2024-04-09T09:50:11.248124Z" + "end_time": "2024-04-09T19:18:15.323064Z", + "start_time": "2024-04-09T19:18:15.308703Z" } }, "cell_type": "code", @@ -11761,8 +11770,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T09:50:19.980432Z", - "start_time": "2024-04-09T09:50:11.262883Z" + "end_time": "2024-04-09T19:18:24.042541Z", + "start_time": "2024-04-09T19:18:15.324343Z" } }, "cell_type": "code", @@ -11802,8 +11811,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712656212\n", - " nsecs: 765562534\n", + " secs: 1712690296\n", + " nsecs: 782019138\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -11837,8 +11846,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T09:50:20.033324Z", - "start_time": "2024-04-09T09:50:19.981960Z" + "end_time": "2024-04-09T19:18:24.097192Z", + "start_time": "2024-04-09T19:18:24.043256Z" } }, "cell_type": "code", @@ -11848,7 +11857,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712656220.031394]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712690304.095454]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], @@ -11866,9 +11875,9 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "pycram", "language": "python", - "name": "python3" + "name": "pycram" }, "language_info": { "codemirror_mode": { diff --git a/src/pycram/designators/object_designator.py b/src/pycram/designators/object_designator.py index ea73ec96f..740c7a357 100644 --- a/src/pycram/designators/object_designator.py +++ b/src/pycram/designators/object_designator.py @@ -1,5 +1,7 @@ +from __future__ import annotations + import dataclasses -from typing_extensions import List, Optional, Callable +from typing_extensions import List, Optional, Callable, TYPE_CHECKING import sqlalchemy.orm from pycram.world import World from pycram.world_concepts.world_object import Object as WorldObject @@ -9,10 +11,8 @@ from pycram.datastructures.pose import Pose from ..external_interfaces.robokudo import query -try: +if TYPE_CHECKING: import owlready2 -except ImportError: - owlready2 = None class BelieveObject(ObjectDesignatorDescription): """ diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index 318279246..617f54841 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import inspect import logging from pathlib import Path @@ -10,7 +12,7 @@ from owlready2 import * except ImportError: owlready2 = None - logging.warn("Could not import owlready2, OWL Ontology Manager could not be initialized") + rospy.logwarn("Could not import owlready2, OntologyManager could not be initialized!") from pycram.datastructures.enums import ObjectType from pycram.helper import Singleton @@ -69,7 +71,6 @@ def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = f"{P Path(ontology_search_path).mkdir(parents=True, exist_ok=True) owlready2.onto_path.append(ontology_search_path) else: - rospy.logerr("owlready2 is not imported!") return self.ontologies: Dict[str, owlready2.Ontology] = {} @@ -131,6 +132,9 @@ def fetch_ontology(ontology__): rospy.logerr(f"Ontology [{ontology.base_iri}]\'s name: {ontology.name} failed being loaded") return None, None + def initialized(self) -> bool: + return hasattr(self, "main_ontology") and self.main_ontology.loaded + @staticmethod def browse_ontologies(ontology: owlready2.Ontology, condition: Optional[Callable] = None, func: Optional[Callable] = None, **kwargs): @@ -330,9 +334,9 @@ def create_ontology_triple_classes(self, subject_class_name: str, object_class_n ontology_subject_parent_class: Optional[Type[owlready2.Thing]] = None, ontology_object_parent_class: Optional[Type[owlready2.Thing]] = None, ontology_property_parent_class: Optional[Type[ - owlready2.Property]] = owlready2.ObjectProperty, + owlready2.Property]] = owlready2.ObjectProperty if owlready2 else None, ontology_inverse_property_parent_class: Optional[Type[ - owlready2.Property]] = owlready2.ObjectProperty): + owlready2.Property]] = owlready2.ObjectProperty if owlready2 else None): """ Dynamically create ontology triple classes under same namespace with the main ontology, as known as {subject, predicate, object}, with the relations among them @@ -469,7 +473,7 @@ def get_designators_by_subject_predicate(subject: DesignatorDescription, if hasattr(subject_concept_holder.ontology_concept, predicate_name)])) def create_ontology_object_designator_from_type(self, object_type: ObjectType, - ontology_concept_class=Type[owlready2.Thing]) \ + ontology_concept_class: Type[owlready2.Thing]) \ -> ObjectDesignatorDescription: object_type_name = object_type.name.lower() object_designator = \ diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py index 396762b0d..0cc524917 100644 --- a/src/pycram/ontology/ontology_common.py +++ b/src/pycram/ontology/ontology_common.py @@ -1,13 +1,18 @@ +from __future__ import annotations + import logging -from typing import Optional, List, Type +from typing import Callable, Dict, List, Optional, Type, TYPE_CHECKING import rospy +if TYPE_CHECKING: + from pycram.designator import DesignatorDescription + try: import owlready2 from owlready2 import * except ImportError: owlready2 = None - logging.warn("Could not import owlready2") + rospy.logwarn("Could not import owlready2, OntologyConceptHolder will not be available!") class OntologyConceptHolder(object): @@ -18,28 +23,35 @@ class OntologyConceptHolder(object): Attributes ---------- + ontology_concept: owlready2.Thing + An ontology concept, either dynamically created, or loaded from an ontology designators: List[DesignatorDescription] List of designators associated with this ontology concept resolve: Callable A callable used to resolve the designators to whatever of interest, like designators or their resolving results - ontology_concept: owlready2.Thing - An ontology concept, either dynamically created, or loaded from an ontology """ - __all_ontology_concept_holders = {} + + __all_ontology_concept_holders: Dict[str, OntologyConceptHolder] = {} + """ + Dictionary of all ontology concept holders, keyed by concept names + """ def __init__(self, ontology_concept: owlready2.Thing): """ :param ontology_concept: An ontology concept instance """ - self.ontology_concept = ontology_concept - self.designators = [] - self.resolve = None + if owlready2 is None: + return + + self.ontology_concept: owlready2.Thing = ontology_concept + self.designators: List[DesignatorDescription] = [] + self.resolve: Optional[Callable] = None if ontology_concept.name in self.__all_ontology_concept_holders: rospy.logerr(f"OntologyConceptHolder for [{ontology_concept.name}] was already created!") self.__all_ontology_concept_holders.setdefault(ontology_concept.name, self) @property - def name(self): + def name(self) -> str: """ :return: Ontology concept name """ @@ -53,7 +65,7 @@ def remove_ontology_concept(cls, ontology_concept_name: str): if ontology_concept_name in cls.__all_ontology_concept_holders: del cls.__all_ontology_concept_holders[ontology_concept_name] - def __eq__(self, other): + def __eq__(self, other: OntologyConceptHolder) -> bool: """ Equality check based on name of the ontology concept :param other: Other ontology concept instance to check against @@ -61,7 +73,7 @@ def __eq__(self, other): return ((self.ontology_concept == other.ontology_concept) or (self.ontology_concept.name == other.ontology_concept.name)) - def get_default_designator(self): + def get_default_designator(self) -> DesignatorDescription: """ :return: The first element of designators if there is, else None """ @@ -88,7 +100,8 @@ def get_ontology_concept_by_name(cls, ontology_concept_name: str) -> owlready2.T return concept_holder.ontology_concept if concept_holder else None @classmethod - def get_ontology_concept_holders_by_class(cls, ontology_concept_class: Type[owlready2.Thing]): + def get_ontology_concept_holders_by_class(cls, ontology_concept_class: Type[owlready2.Thing])\ + -> List[OntologyConceptHolder]: """ :ontology_concept_class: An ontology concept class Return a list of ontology concept holders for the given ontology concept class @@ -97,7 +110,7 @@ def get_ontology_concept_holders_by_class(cls, ontology_concept_class: Type[owlr if isinstance(concept_holder.ontology_concept, ontology_concept_class)] @classmethod - def get_ontology_concept_holder_by_name(cls, ontology_concept_name: str): + def get_ontology_concept_holder_by_name(cls, ontology_concept_name: str) -> OntologyConceptHolder: """ :ontology_concept_name: Name of an ontology concept Return the ontology concept holder for one of a given name if exists, otherwise None @@ -105,7 +118,7 @@ def get_ontology_concept_holder_by_name(cls, ontology_concept_name: str): return cls.__all_ontology_concept_holders.get(ontology_concept_name) @classmethod - def get_ontology_concept_of_designator(cls, designator): + def get_ontology_concept_of_designator(cls, designator) -> owlready2.Thing | None: """ :param designator: A designator associated with an ontology concept :return: The corresponding ontology concept for a given designator @@ -116,7 +129,7 @@ def get_ontology_concept_of_designator(cls, designator): return None @classmethod - def get_designators_of_ontology_concept(cls, ontology_concept_name: str): + def get_designators_of_ontology_concept(cls, ontology_concept_name: str) -> List[DesignatorDescription]: """ :param ontology_concept_name: An ontology concept name :return: The corresponding designators associated with the given ontology concept @@ -124,7 +137,7 @@ def get_designators_of_ontology_concept(cls, ontology_concept_name: str): return cls.__all_ontology_concept_holders[ontology_concept_name].designators \ if ontology_concept_name in cls.__all_ontology_concept_holders else [] - def has_designator(self, designator): + def has_designator(self, designator) -> bool: """ :return: True if a given designator was registered by this ontology concept holder, either by itself or under another of the same name diff --git a/test/test_ontology.py b/test/test_ontology.py index 3a1585a5b..97120053d 100644 --- a/test/test_ontology.py +++ b/test/test_ontology.py @@ -1,20 +1,19 @@ +from __future__ import annotations + import unittest -import inspect import logging from pathlib import Path -from typing import Optional, List, Type, Callable +from typing import Type -import rospy -from pycram.datastructures.enums import ObjectType -from pycram.designator import DesignatorDescription, ObjectDesignatorDescription -from pycram.task import with_tree +from pycram.designator import ObjectDesignatorDescription +import rospy try: import owlready2 from owlready2 import * except ImportError: owlready2 = None - logging.warn("Could not import owlready2, ontology unit-tests could not run") + rospy.logwarn("Could not import owlready2, Ontology unit-tests could not run!") from pycram.ontology.ontology import OntologyManager, SOMA_ONTOLOGY_IRI from pycram.ontology.ontology_common import OntologyConceptHolder @@ -22,33 +21,44 @@ class TestOntologyManager(unittest.TestCase): ontology_manager: OntologyManager - main_ontology: owlready2.Ontology - soma: owlready2.Ontology - dul: owlready2.Ontology + main_ontology: owlready2.Ontology | None + soma: owlready2.Ontology | None + dul: owlready2.Ontology | None @classmethod def setUpClass(cls): cls.ontology_manager = OntologyManager(SOMA_ONTOLOGY_IRI) - cls.main_ontology = cls.ontology_manager.main_ontology - cls.soma = cls.ontology_manager.soma - cls.dul = cls.ontology_manager.dul + if cls.ontology_manager.initialized(): + cls.main_ontology = cls.ontology_manager.main_ontology + cls.soma = cls.ontology_manager.soma + cls.dul = cls.ontology_manager.dul + else: + cls.main_ontology = None + cls.soma = None + cls.dul = None @classmethod def tearDownClass(cls): - save_dir = Path(f"{Path.home()}/ontologies") - save_dir.mkdir(parents=True, exist_ok=True) - cls.ontology_manager.save(f"{save_dir}/{Path(cls.ontology_manager.main_ontology_iri).stem}.owl") + if cls.ontology_manager.initialized(): + save_dir = Path(f"{Path.home()}/ontologies") + save_dir.mkdir(parents=True, exist_ok=True) + cls.ontology_manager.save(f"{save_dir}/{Path(cls.ontology_manager.main_ontology_iri).stem}.owl") def test_ontology_manager(self): - self.assertIs(self.ontology_manager, OntologyManager()) + if self.ontology_manager.initialized(): + self.assertIs(self.ontology_manager, OntologyManager()) def test_ontology_concept_holder(self): + if not self.ontology_manager.initialized(): + return dynamic_ontology_concept_class = self.ontology_manager.create_ontology_concept_class('DynamicOntologyConcept') dynamic_ontology_concept_holder = OntologyConceptHolder(dynamic_ontology_concept_class(name='dynamic_ontology_concept1', namespace=self.main_ontology)) self.assertTrue(owlready2.isinstance_python(dynamic_ontology_concept_holder.ontology_concept, owlready2.Thing)) def test_loaded_ontologies(self): + if not self.ontology_manager.initialized(): + return self.assertIsNotNone(self.main_ontology) self.assertTrue(self.main_ontology.loaded) self.assertIsNotNone(self.soma) @@ -57,6 +67,8 @@ def test_loaded_ontologies(self): self.assertTrue(self.dul.loaded) def test_ontology_concept_class_dynamic_creation(self): + if not self.ontology_manager.initialized(): + return dynamic_ontology_concept_class = self.ontology_manager.create_ontology_concept_class('DynamicOntologyConcept') self.assertIsNotNone(dynamic_ontology_concept_class) self.assertEqual(dynamic_ontology_concept_class.namespace, self.main_ontology) @@ -67,6 +79,8 @@ def test_ontology_concept_class_dynamic_creation(self): self.assertTrue(owlready2.isinstance_python(dynamic_ontology_concept, owlready2.Thing)) def test_ontology_triple_classes_dynamic_creation(self): + if not self.ontology_manager.initialized(): + return # Test dynamic triple classes creation without inheritance from existing parent ontology classes self.ontology_manager.create_ontology_triple_classes(subject_class_name="OntologySubject", object_class_name="OntologyObject", @@ -95,16 +109,16 @@ def test_ontology_triple_classes_dynamic_creation(self): ontology_property_parent_class=self.soma.affordsBearer, ontology_inverse_property_parent_class=self.soma.isBearerAffordedBy) - def create_ontology_handheld_object(object_name: str, ontology_parent_class: Type[owlready2.Thing]): + def create_ontology_handheld_object_designator(object_name: str, ontology_parent_class: Type[owlready2.Thing]): return self.ontology_manager.create_ontology_linked_designator(designator_name=object_name, designator_class=ObjectDesignatorDescription, ontology_concept_name=f"Onto{object_name}", ontology_parent_class=ontology_parent_class) # Holdable object - egg = create_ontology_handheld_object("egg", self.main_ontology.OntologyHandheldObject) + egg = create_ontology_handheld_object_designator("egg", self.main_ontology.OntologyHandheldObject) # Placeholder object - egg_tray = create_ontology_handheld_object("egg_tray", self.main_ontology.OntologyPlaceHolderObject) + egg_tray = create_ontology_handheld_object_designator("egg_tray", self.main_ontology.OntologyPlaceHolderObject) # Create ontology relation between [Place-holder] and [Holdable obj] self.ontology_manager.set_ontology_relation(subject_designator=egg, object_designator=egg_tray, @@ -127,6 +141,8 @@ def create_ontology_handheld_object(object_name: str, ontology_parent_class: Typ self.assertEqual(egg_tray_holdables[0], ["egg"]) def test_ontology_class_destruction(self): + if not self.ontology_manager.initialized(): + return concept_class_name = 'DynamicOntologyConcept' dynamic_ontology_concept_class = self.ontology_manager.create_ontology_concept_class(concept_class_name) OntologyConceptHolder(dynamic_ontology_concept_class(name='dynamic_ontology_concept3', From a0bfc512519bbd9f93bb707261142134781a913c Mon Sep 17 00:00:00 2001 From: duc than Date: Wed, 10 Apr 2024 10:50:35 +0200 Subject: [PATCH 14/26] Ontology.ipynb print just a few examples of classes-query results only --- examples/ontology.ipynb | 11135 +----------------- src/pycram/designators/action_designator.py | 5 +- src/pycram/helper.py | 4 + src/pycram/ontology/ontology.py | 4 +- src/pycram/ontology/ontology_common.py | 28 +- 5 files changed, 116 insertions(+), 11060 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 9b50ee8a2..9e7986efa 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:10.925720Z", - "start_time": "2024-04-09T19:18:10.426170Z" + "end_time": "2024-04-10T08:57:42.351645Z", + "start_time": "2024-04-10T08:57:41.771320Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:10.937267Z", - "start_time": "2024-04-09T19:18:10.928050Z" + "end_time": "2024-04-10T08:57:42.358363Z", + "start_time": "2024-04-10T08:57:42.352340Z" } }, "outputs": [], @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:11.064394Z", - "start_time": "2024-04-09T19:18:10.937703Z" + "end_time": "2024-04-10T08:57:42.486850Z", + "start_time": "2024-04-10T08:57:42.358864Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712690291.060597]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712690291.061361]: - main namespace: SOMA-HOME\n", - "[INFO] [1712690291.061769]: - loaded ontologies:\n", - "[INFO] [1712690291.062137]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712690291.062499]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712690291.062862]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712739462.483887]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712739462.484472]: - main namespace: SOMA-HOME\n", + "[INFO] [1712739462.484767]: - loaded ontologies:\n", + "[INFO] [1712739462.485029]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712739462.485276]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712739462.485512]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -132,13 +132,13 @@ "cell_type": "markdown", "source": [ "## Ontology Concept Holder\n", - "__`OntologyConceptHolder`__ class, encapsulating an __`owlready2.Thing`__ instance, is used primarily as the binding connection between that ontology concept (of `owlready2.Thing` type) to designators in PyCram. We make it that way, instead of making the custom concept class type inherit from `owlready2.Thing` for these reasons:\n", + "__`OntologyConceptHolder`__ class, encapsulating an __`owlready2.Thing`__ instance, is used primarily as the binding connection between the `owlready2.Thing` ontology concept to PyCram designators. We make it that way, instead of creating a custom concept class that inherits from `owlready2.Thing` for the reasons below:\n", "\n", - "- `owlready2` API does not have very robust support for client classes inheriting from theirs, particularly in our case, where classes like `DesignatorDescription` have their `metaclass` as `ABCMeta`, while it is `EntityClass` that is the metaclass used for basically all concepts (classes, properties) in `owlready2`. Since those two metaclasses just bear no relationship, for the inheritance to work, the only way is to create a child metaclass with both of those as parents, however the second reason below will point out it's not worth the effort.\n", + "- `owlready2` API does not have very robust support for client classes to inherit from theirs with added (non-semantic) attributes, particularly in our case, where classes like `DesignatorDescription` have their `metaclass` as `ABCMeta`, while it is `EntityClass` that is the metaclass used for basically all concepts (classes, properties) in `owlready2`. Since those two metaclasses just bear no relationship, for the inheritance to work, the only way is to create a child metaclass with both of those as parents, however without full support by `owlready2`, plus the second reason below will point out it's not worth the effort.\n", "\n", "\n", - "- Essentially, we will have new ontology concept classes created dynamically, if their types inherit from `owlready2.Thing`, all custom-type attributes, which are defined in child classes and having types known only by PyCram, will apparently be not saved back into the ontology by `owlready2` api. Then the next time the ontology is loaded, those same dynamic classes will not be created anymore but without those attributes visible anymore, causing running error.\n", - "As such, in short, an ontology concept class, either newly created on the fly or loaded from ontologies, can be always `owlready2.Thing` to make itself reusable upon reloading.\n", + "- Essentially, we will have new ontology concept classes created dynamically, if their types inherit from `owlready2.Thing`, all custom-type non-semantic (of types known only by PyCram) attributes, which are defined by their own in child classes, will apparently be not savable into the ontology by `owlready2` api. Then the next time the ontology is loaded, those same dynamic classes will not be created anymore, thus without those attributes either, causing running error.\n", + "As such, in short, an ontology concept class, either newly created on the fly or loaded from ontologies, has to be `owlready2.Thing` or its pure derived class (without non-semantic attributes), so to make itself reusable upon reloading.\n", "\n", "Notable attributes:\n", "- `ontology_concept`: An ontology concept of `owlready2.Thing` type, either dynamically created, or loaded from an ontology\n", @@ -166,14 +166,14 @@ "source": [ "ontology_designed_container_class = ontology_manager.get_ontology_class('DesignedContainer')\n", "ontology_manager.print_ontology_class(ontology_designed_container_class)\n", - "ontology_manager.get_ontology_classes_by_subname('PhysicalObject')\n", - "ontology_manager.get_ontology_classes_by_namespace('SOMA')" + "classes = ontology_manager.get_ontology_classes_by_subname('PhysicalObject'); print(classes[0])\n", + "classes = ontology_manager.get_ontology_classes_by_namespace('SOMA'); print(classes[:2])" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.379122Z", - "start_time": "2024-04-09T19:18:11.065146Z" + "end_time": "2024-04-10T08:57:42.670908Z", + "start_time": "2024-04-10T08:57:42.487665Z" } }, "outputs": [ @@ -181,10908 +181,18 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712690291.185135]: -------------------\n", - "[INFO] [1712690291.185760]: SOMA.DesignedContainer \n", - "[INFO] [1712690291.186187]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712690291.186590]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.186904]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712690291.187305]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690291.244938]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712690291.245481]: Direct Instances: []\n", - "[INFO] [1712690291.245826]: Inverse Restrictions: []\n", - "[INFO] [1712690291.247283]: -------------------\n", - "[INFO] [1712690291.247610]: DUL.PhysicalObject \n", - "[INFO] [1712690291.247908]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690291.248192]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690291.248475]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712690291.248818]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.249617]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712690291.249916]: Direct Instances: []\n", - "[INFO] [1712690291.255525]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712690291.255843]: -------------------\n", - "[INFO] [1712690291.256108]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712690291.256364]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690291.256701]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690291.257046]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712690291.257388]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.257920]: Instances: []\n", - "[INFO] [1712690291.258194]: Direct Instances: []\n", - "[INFO] [1712690291.258461]: Inverse Restrictions: []\n", - "[INFO] [1712690291.258711]: -------------------\n", - "[INFO] [1712690291.258973]: DUL.PhysicalObject \n", - "[INFO] [1712690291.259227]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690291.259480]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690291.259737]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712690291.260050]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.260857]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712690291.261204]: Direct Instances: []\n", - "[INFO] [1712690291.263985]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712690291.264335]: -------------------\n", - "[INFO] [1712690291.264607]: DUL.PhysicalObject \n", - "[INFO] [1712690291.264866]: Super classes: [DUL.Object, DUL.hasPart.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690291.265125]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690291.265406]: Subclasses: [DUL.PhysicalAgent, DUL.PhysicalBody, DUL.PhysicalPlace, DUL.PhysicalArtifact]\n", - "[INFO] [1712690291.265726]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.266498]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712690291.266795]: Direct Instances: []\n", - "[INFO] [1712690291.269280]: Inverse Restrictions: [SOMA.PhysicalQuality, SOMA.Joint, SOMA.Joint, SOMA.Feature, SOMA.PhysicalQuality, SOMA.Feature, SOMA.Joint, SOMA.Joint, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.PhysicsProcess, SOMA.PhysicalState, SOMA.RelatumRole, SOMA.MeshShapeData, SOMA.LocatumRole, SOMA.KinoDynamicData, SOMA.ExistingObjectRole, DUL.PhysicalObject, DUL.PhysicalAttribute, SOMA.MeshShapeData, SOMA.KinoDynamicData, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.ExistingObjectRole]\n", - "[INFO] [1712690291.269587]: -------------------\n", - "[INFO] [1712690291.269861]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712690291.270113]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690291.270376]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690291.270640]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712690291.270942]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.271476]: Instances: []\n", - "[INFO] [1712690291.271766]: Direct Instances: []\n", - "[INFO] [1712690291.272038]: Inverse Restrictions: []\n", - "[INFO] [1712690291.273082]: -------------------\n", - "[INFO] [1712690291.273383]: SOMA.Affordance \n", - "[INFO] [1712690291.273700]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712690291.274004]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Affordance, DUL.Relation, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690291.274265]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712690291.274568]: Properties: [rdf-schema.isDefinedBy, SOMA.definesBearer, SOMA.definesTrigger, rdf-schema.comment, DUL.definesTask]\n", - "[INFO] [1712690291.275088]: Instances: []\n", - "[INFO] [1712690291.275362]: Direct Instances: []\n", - "[INFO] [1712690291.276495]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712690291.276781]: -------------------\n", - "[INFO] [1712690291.277047]: SOMA.Disposition \n", - "[INFO] [1712690291.278765]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712690291.279093]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.279397]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712690291.279714]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712690291.280269]: Instances: []\n", - "[INFO] [1712690291.280550]: Direct Instances: []\n", - "[INFO] [1712690291.280875]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712690291.281135]: -------------------\n", - "[INFO] [1712690291.281387]: SOMA.Setpoint \n", - "[INFO] [1712690291.281631]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712690291.281902]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Parameter, SOMA.Setpoint}\n", - "[INFO] [1712690291.282155]: Subclasses: []\n", - "[INFO] [1712690291.282461]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.282984]: Instances: []\n", - "[INFO] [1712690291.283286]: Direct Instances: []\n", - "[INFO] [1712690291.283560]: Inverse Restrictions: []\n", - "[INFO] [1712690291.283827]: -------------------\n", - "[INFO] [1712690291.284081]: SOMA.Answer \n", - "[INFO] [1712690291.284333]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712690291.284639]: Ancestors: {DUL.Entity, SOMA.Answer, SOMA.Message, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.284893]: Subclasses: []\n", - "[INFO] [1712690291.285202]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.285694]: Instances: []\n", - "[INFO] [1712690291.285962]: Direct Instances: []\n", - "[INFO] [1712690291.286647]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712690291.286914]: -------------------\n", - "[INFO] [1712690291.287161]: SOMA.Message \n", - "[INFO] [1712690291.287435]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712690291.287709]: Ancestors: {DUL.Entity, SOMA.Message, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.287975]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712690291.288275]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", - "[INFO] [1712690291.288774]: Instances: []\n", - "[INFO] [1712690291.289063]: Direct Instances: []\n", - "[INFO] [1712690291.290866]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690291.291150]: -------------------\n", - "[INFO] [1712690291.291409]: SOMA.ProcessType \n", - "[INFO] [1712690291.291706]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712690291.291990]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.292264]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712690291.292562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.293128]: Instances: []\n", - "[INFO] [1712690291.293421]: Direct Instances: []\n", - "[INFO] [1712690291.293803]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712690291.294092]: -------------------\n", - "[INFO] [1712690291.294355]: SOMA.OrderedElement \n", - "[INFO] [1712690291.294647]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712690291.296002]: Ancestors: {SOMA.OrderedElement, owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712690291.296302]: Subclasses: []\n", - "[INFO] [1712690291.296617]: Properties: [SOMA.isOrderedBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.297129]: Instances: []\n", - "[INFO] [1712690291.297425]: Direct Instances: []\n", - "[INFO] [1712690291.297827]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712690291.298088]: -------------------\n", - "[INFO] [1712690291.298339]: SOMA.System \n", - "[INFO] [1712690291.298586]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712690291.298867]: Ancestors: {DUL.Entity, SOMA.System, DUL.SocialObject, owl.Thing, DUL.Object}\n", - "[INFO] [1712690291.299132]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712690291.299433]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.299963]: Instances: []\n", - "[INFO] [1712690291.300242]: Direct Instances: []\n", - "[INFO] [1712690291.300509]: Inverse Restrictions: []\n", - "[INFO] [1712690291.300759]: -------------------\n", - "[INFO] [1712690291.301022]: SOMA.Binding \n", - "[INFO] [1712690291.301763]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712690291.302147]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690291.302465]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712690291.302799]: Properties: [SOMA.hasBindingRole, rdf-schema.isDefinedBy, SOMA.hasBindingFiller, rdf-schema.comment, Inverse(SOMA.hasBinding)]\n", - "[INFO] [1712690291.303342]: Instances: []\n", - "[INFO] [1712690291.303635]: Direct Instances: []\n", - "[INFO] [1712690291.303910]: Inverse Restrictions: []\n", - "[INFO] [1712690291.304160]: -------------------\n", - "[INFO] [1712690291.304405]: SOMA.Joint \n", - "[INFO] [1712690291.304676]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712690291.305677]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690291.306050]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712690291.306412]: Properties: [SOMA.hasChildLink, rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", - "[INFO] [1712690291.306953]: Instances: []\n", - "[INFO] [1712690291.307238]: Direct Instances: []\n", - "[INFO] [1712690291.307517]: Inverse Restrictions: []\n", - "[INFO] [1712690291.307783]: -------------------\n", - "[INFO] [1712690291.308035]: SOMA.Color \n", - "[INFO] [1712690291.308310]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712690291.308593]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.308932]: Subclasses: []\n", - "[INFO] [1712690291.309295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion, rdf-schema.label]\n", - "[INFO] [1712690291.309830]: Instances: []\n", - "[INFO] [1712690291.310122]: Direct Instances: []\n", - "[INFO] [1712690291.310468]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712690291.310744]: -------------------\n", - "[INFO] [1712690291.311007]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712690291.311267]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690291.312299]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ExecutionStateRegion}\n", - "[INFO] [1712690291.312608]: Subclasses: []\n", - "[INFO] [1712690291.312949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.313488]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712690291.313783]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712690291.314075]: Inverse Restrictions: []\n", - "[INFO] [1712690291.314341]: -------------------\n", - "[INFO] [1712690291.314601]: SOMA.Feature \n", - "[INFO] [1712690291.314881]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712690291.315160]: Ancestors: {DUL.Entity, SOMA.Feature, owl.Thing, DUL.Object}\n", - "[INFO] [1712690291.315446]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712690291.315779]: Properties: [SOMA.isFeatureOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.316290]: Instances: []\n", - "[INFO] [1712690291.316559]: Direct Instances: []\n", - "[INFO] [1712690291.316865]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712690291.317141]: -------------------\n", - "[INFO] [1712690291.317407]: SOMA.FrictionAttribute \n", - "[INFO] [1712690291.317686]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712690291.317979]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", - "[INFO] [1712690291.318263]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712690291.318577]: Properties: [SOMA.hasFrictionValue, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.319082]: Instances: []\n", - "[INFO] [1712690291.319373]: Direct Instances: []\n", - "[INFO] [1712690291.319660]: Inverse Restrictions: []\n", - "[INFO] [1712690291.319918]: -------------------\n", - "[INFO] [1712690291.320173]: SOMA.SituationTransition \n", - "[INFO] [1712690291.320425]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712690291.320711]: Ancestors: {DUL.Entity, DUL.Situation, owl.Thing, SOMA.SituationTransition, DUL.Transition}\n", - "[INFO] [1712690291.320998]: Subclasses: []\n", - "[INFO] [1712690291.321312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.321817]: Instances: []\n", - "[INFO] [1712690291.322087]: Direct Instances: []\n", - "[INFO] [1712690291.323891]: Inverse Restrictions: []\n", - "[INFO] [1712690291.324170]: -------------------\n", - "[INFO] [1712690291.324433]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712690291.324689]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712690291.326042]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation}\n", - "[INFO] [1712690291.326343]: Subclasses: []\n", - "[INFO] [1712690291.326669]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.327196]: Instances: []\n", - "[INFO] [1712690291.327477]: Direct Instances: []\n", - "[INFO] [1712690291.328914]: Inverse Restrictions: []\n", - "[INFO] [1712690291.329305]: -------------------\n", - "[INFO] [1712690291.329598]: SOMA.JointLimit \n", - "[INFO] [1712690291.329868]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712690291.330175]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.JointLimit}\n", - "[INFO] [1712690291.330446]: Subclasses: []\n", - "[INFO] [1712690291.330765]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.331290]: Instances: []\n", - "[INFO] [1712690291.331565]: Direct Instances: []\n", - "[INFO] [1712690291.331908]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712690291.332161]: -------------------\n", - "[INFO] [1712690291.332404]: SOMA.JointState \n", - "[INFO] [1712690291.332691]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712690291.333012]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, SOMA.JointState, DUL.Abstract}\n", - "[INFO] [1712690291.333288]: Subclasses: []\n", - "[INFO] [1712690291.333619]: Properties: [SOMA.hasJointVelocity, SOMA.hasJointPosition, rdf-schema.isDefinedBy, rdf-schema.label, rdf-schema.comment]\n", - "[INFO] [1712690291.334126]: Instances: []\n", - "[INFO] [1712690291.334421]: Direct Instances: []\n", - "[INFO] [1712690291.334766]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712690291.335021]: -------------------\n", - "[INFO] [1712690291.335264]: SOMA.Localization \n", - "[INFO] [1712690291.335534]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712690291.335823]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.336085]: Subclasses: []\n", - "[INFO] [1712690291.336387]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712690291.336887]: Instances: []\n", - "[INFO] [1712690291.337172]: Direct Instances: []\n", - "[INFO] [1712690291.339390]: Inverse Restrictions: []\n", - "[INFO] [1712690291.339666]: -------------------\n", - "[INFO] [1712690291.339936]: SOMA.MassAttribute \n", - "[INFO] [1712690291.340213]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712690291.340489]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.MassAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690291.340742]: Subclasses: []\n", - "[INFO] [1712690291.341046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label]\n", - "[INFO] [1712690291.341554]: Instances: []\n", - "[INFO] [1712690291.341828]: Direct Instances: []\n", - "[INFO] [1712690291.342091]: Inverse Restrictions: []\n", - "[INFO] [1712690291.342338]: -------------------\n", - "[INFO] [1712690291.342576]: SOMA.NetForce \n", - "[INFO] [1712690291.342829]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712690291.343114]: Ancestors: {SOMA.NetForce, DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690291.343370]: Subclasses: []\n", - "[INFO] [1712690291.343666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.344157]: Instances: []\n", - "[INFO] [1712690291.344430]: Direct Instances: []\n", - "[INFO] [1712690291.344697]: Inverse Restrictions: []\n", - "[INFO] [1712690291.344953]: -------------------\n", - "[INFO] [1712690291.345195]: SOMA.Succedence \n", - "[INFO] [1712690291.345472]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712690291.345761]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Succedence}\n", - "[INFO] [1712690291.346032]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712690291.346342]: Properties: [SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy, SOMA.hasPredecessor, rdf-schema.comment]\n", - "[INFO] [1712690291.346840]: Instances: []\n", - "[INFO] [1712690291.347119]: Direct Instances: []\n", - "[INFO] [1712690291.347398]: Inverse Restrictions: []\n", - "[INFO] [1712690291.347649]: -------------------\n", - "[INFO] [1712690291.347891]: SOMA.Preference \n", - "[INFO] [1712690291.348153]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712690291.348430]: Ancestors: {SOMA.Preference, DUL.Entity, SOMA.SocialQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.348699]: Subclasses: []\n", - "[INFO] [1712690291.349008]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.349507]: Instances: []\n", - "[INFO] [1712690291.349782]: Direct Instances: []\n", - "[INFO] [1712690291.350915]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712690291.351195]: -------------------\n", - "[INFO] [1712690291.351462]: SOMA.Shape \n", - "[INFO] [1712690291.351744]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712690291.352028]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Shape, SOMA.Intrinsic}\n", - "[INFO] [1712690291.352288]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", - "[INFO] [1712690291.352584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712690291.353188]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712690291.353468]: Direct Instances: []\n", - "[INFO] [1712690291.355670]: Inverse Restrictions: []\n", - "[INFO] [1712690291.355948]: -------------------\n", - "[INFO] [1712690291.356206]: SOMA.ShapeRegion \n", - "[INFO] [1712690291.356477]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712690291.356861]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690291.357160]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712690291.357478]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.357988]: Instances: []\n", - "[INFO] [1712690291.358258]: Direct Instances: []\n", - "[INFO] [1712690291.358987]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712690291.359263]: -------------------\n", - "[INFO] [1712690291.359528]: SOMA.SoftwareInstance \n", - "[INFO] [1712690291.360186]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712690291.360464]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", - "[INFO] [1712690291.360725]: Subclasses: []\n", - "[INFO] [1712690291.361042]: Properties: [rdf-schema.isDefinedBy, DUL.actsFor, rdf-schema.label, rdf-schema.comment, SOMA.isDesignedBy]\n", - "[INFO] [1712690291.361544]: Instances: []\n", - "[INFO] [1712690291.361808]: Direct Instances: []\n", - "[INFO] [1712690291.362507]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712690291.362784]: -------------------\n", - "[INFO] [1712690291.363041]: SOMA.StateType \n", - "[INFO] [1712690291.363315]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712690291.363591]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.363855]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712690291.364165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.364699]: Instances: []\n", - "[INFO] [1712690291.364987]: Direct Instances: []\n", - "[INFO] [1712690291.365340]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712690291.365597]: -------------------\n", - "[INFO] [1712690291.365844]: SOMA.PhysicalEffector \n", - "[INFO] [1712690291.366114]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712690291.366415]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690291.366683]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712690291.366990]: Properties: [Inverse(DUL.hasPart), rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.367504]: Instances: []\n", - "[INFO] [1712690291.367783]: Direct Instances: []\n", - "[INFO] [1712690291.368053]: Inverse Restrictions: []\n", - "[INFO] [1712690291.368303]: -------------------\n", - "[INFO] [1712690291.368547]: SOMA.QueryingTask \n", - "[INFO] [1712690291.369192]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712690291.369506]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712690291.369774]: Subclasses: []\n", - "[INFO] [1712690291.370078]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.370570]: Instances: []\n", - "[INFO] [1712690291.370836]: Direct Instances: []\n", - "[INFO] [1712690291.372262]: Inverse Restrictions: []\n", - "[INFO] [1712690291.372524]: -------------------\n", - "[INFO] [1712690291.372776]: SOMA.Order \n", - "[INFO] [1712690291.373025]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712690291.373315]: Ancestors: {DUL.Entity, SOMA.Order, owl.Thing, DUL.FormalEntity, DUL.Abstract}\n", - "[INFO] [1712690291.373578]: Subclasses: []\n", - "[INFO] [1712690291.373875]: Properties: [SOMA.orders, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.374384]: Instances: []\n", - "[INFO] [1712690291.374655]: Direct Instances: []\n", - "[INFO] [1712690291.375021]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712690291.375274]: -------------------\n", - "[INFO] [1712690291.375523]: SOMA.State \n", - "[INFO] [1712690291.375777]: Super classes: [DUL.Event]\n", - "[INFO] [1712690291.376057]: Ancestors: {DUL.Entity, owl.Thing, SOMA.State, DUL.Event}\n", - "[INFO] [1712690291.376322]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712690291.376617]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.377118]: Instances: []\n", - "[INFO] [1712690291.377403]: Direct Instances: []\n", - "[INFO] [1712690291.377927]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712690291.378194]: -------------------\n", - "[INFO] [1712690291.378444]: SOMA.Transient \n", - "[INFO] [1712690291.378713]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712690291.378995]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, SOMA.Transient}\n", - "[INFO] [1712690291.379261]: Subclasses: []\n", - "[INFO] [1712690291.379563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.transitionsFrom]\n", - "[INFO] [1712690291.380055]: Instances: []\n", - "[INFO] [1712690291.380336]: Direct Instances: []\n", - "[INFO] [1712690291.380605]: Inverse Restrictions: []\n", - "[INFO] [1712690291.380857]: -------------------\n", - "[INFO] [1712690291.381102]: SOMA.ColorRegion \n", - "[INFO] [1712690291.381344]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712690291.381608]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690291.381881]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712690291.382185]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.382689]: Instances: []\n", - "[INFO] [1712690291.383024]: Direct Instances: []\n", - "[INFO] [1712690291.383421]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712690291.383713]: -------------------\n", - "[INFO] [1712690291.384001]: SOMA.ForceAttribute \n", - "[INFO] [1712690291.384360]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712690291.384656]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690291.384944]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712690291.385271]: Properties: [SOMA.hasForceValue, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.385788]: Instances: []\n", - "[INFO] [1712690291.386088]: Direct Instances: []\n", - "[INFO] [1712690291.386722]: Inverse Restrictions: []\n", - "[INFO] [1712690291.387039]: -------------------\n", - "[INFO] [1712690291.387327]: SOMA.API_Specification \n", - "[INFO] [1712690291.387604]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712690291.387935]: Ancestors: {DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690291.388232]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712690291.388563]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.389091]: Instances: []\n", - "[INFO] [1712690291.389389]: Direct Instances: []\n", - "[INFO] [1712690291.389675]: Inverse Restrictions: []\n", - "[INFO] [1712690291.389944]: -------------------\n", - "[INFO] [1712690291.390202]: SOMA.InterfaceSpecification \n", - "[INFO] [1712690291.390457]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712690291.390722]: Ancestors: {DUL.Entity, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690291.391002]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712690291.391320]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.391836]: Instances: []\n", - "[INFO] [1712690291.392133]: Direct Instances: []\n", - "[INFO] [1712690291.393247]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712690291.393549]: -------------------\n", - "[INFO] [1712690291.393816]: SOMA.AbductiveReasoning \n", - "[INFO] [1712690291.394079]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712690291.395342]: Ancestors: {SOMA.AbductiveReasoning, SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690291.395633]: Subclasses: []\n", - "[INFO] [1712690291.395943]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.396458]: Instances: []\n", - "[INFO] [1712690291.396742]: Direct Instances: []\n", - "[INFO] [1712690291.397026]: Inverse Restrictions: []\n", - "[INFO] [1712690291.397281]: -------------------\n", - "[INFO] [1712690291.397527]: SOMA.Reasoning \n", - "[INFO] [1712690291.397770]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690291.398016]: Ancestors: {SOMA.DerivingInformation, SOMA.Reasoning, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712690291.398291]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712690291.398595]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.399095]: Instances: []\n", - "[INFO] [1712690291.399361]: Direct Instances: []\n", - "[INFO] [1712690291.399622]: Inverse Restrictions: []\n", - "[INFO] [1712690291.399880]: -------------------\n", - "[INFO] [1712690291.400144]: SOMA.Accessor \n", - "[INFO] [1712690291.400410]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712690291.400705]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Accessor, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.400986]: Subclasses: []\n", - "[INFO] [1712690291.401296]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.401798]: Instances: []\n", - "[INFO] [1712690291.402058]: Direct Instances: []\n", - "[INFO] [1712690291.402313]: Inverse Restrictions: []\n", - "[INFO] [1712690291.402568]: -------------------\n", - "[INFO] [1712690291.402816]: SOMA.Instrument \n", - "[INFO] [1712690291.403056]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712690291.403310]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.403568]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712690291.403875]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.404449]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690291.404739]: Direct Instances: []\n", - "[INFO] [1712690291.405164]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690291.405432]: -------------------\n", - "[INFO] [1712690291.405682]: SOMA.Accident \n", - "[INFO] [1712690291.405922]: Super classes: [DUL.Event]\n", - "[INFO] [1712690291.406188]: Ancestors: {DUL.Entity, owl.Thing, DUL.Event, SOMA.Accident}\n", - "[INFO] [1712690291.406440]: Subclasses: []\n", - "[INFO] [1712690291.406757]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.407258]: Instances: []\n", - "[INFO] [1712690291.407521]: Direct Instances: []\n", - "[INFO] [1712690291.407777]: Inverse Restrictions: []\n", - "[INFO] [1712690291.408031]: -------------------\n", - "[INFO] [1712690291.408276]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712690291.408711]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712690291.409007]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Plan, owl.Thing, DUL.Object, DUL.Description, SOMA.ActionExecutionPlan}\n", - "[INFO] [1712690291.409266]: Subclasses: []\n", - "[INFO] [1712690291.409562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.410071]: Instances: []\n", - "[INFO] [1712690291.410354]: Direct Instances: []\n", - "[INFO] [1712690291.410617]: Inverse Restrictions: []\n", - "[INFO] [1712690291.410869]: -------------------\n", - "[INFO] [1712690291.411129]: SOMA.Actuating \n", - "[INFO] [1712690291.411385]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690291.411659]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.411950]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712690291.412261]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.412795]: Instances: []\n", - "[INFO] [1712690291.413063]: Direct Instances: []\n", - "[INFO] [1712690291.413327]: Inverse Restrictions: []\n", - "[INFO] [1712690291.413594]: -------------------\n", - "[INFO] [1712690291.413846]: SOMA.PhysicalTask \n", - "[INFO] [1712690291.415219]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712690291.415498]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.415796]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712690291.416104]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.416814]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", - "[INFO] [1712690291.417146]: Direct Instances: []\n", - "[INFO] [1712690291.417496]: Inverse Restrictions: []\n", - "[INFO] [1712690291.417761]: -------------------\n", - "[INFO] [1712690291.418014]: SOMA.AestheticDesign \n", - "[INFO] [1712690291.418273]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712690291.418557]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.AestheticDesign, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690291.418817]: Subclasses: []\n", - "[INFO] [1712690291.419114]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.419614]: Instances: []\n", - "[INFO] [1712690291.419889]: Direct Instances: []\n", - "[INFO] [1712690291.420151]: Inverse Restrictions: []\n", - "[INFO] [1712690291.420395]: -------------------\n", - "[INFO] [1712690291.420631]: SOMA.AffordsBeingSitOn \n", - "[INFO] [1712690291.421518]: Super classes: [SOMA.Affordance, DUL.describes.some(SOMA.CanBeSatOn), SOMA.definesBearer.only(SOMA.SittingDestination), SOMA.definesTrigger.only(SOMA.AgentRole & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanSit))), DUL.definesTask.only(SOMA.Sitting)]\n", - "[INFO] [1712690291.421823]: Ancestors: {DUL.Entity, SOMA.AffordsBeingSitOn, DUL.SocialObject, SOMA.Affordance, DUL.Relation, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690291.422095]: Subclasses: []\n", - "[INFO] [1712690291.422407]: Properties: [DUL.describes, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.422910]: Instances: []\n", - "[INFO] [1712690291.423185]: Direct Instances: []\n", - "[INFO] [1712690291.423479]: Inverse Restrictions: [SOMA.CanBeSatOn]\n", - "[INFO] [1712690291.423730]: -------------------\n", - "[INFO] [1712690291.423972]: SOMA.CanBeSatOn \n", - "[INFO] [1712690291.424219]: Super classes: [SOMA.Deposition, DUL.isDescribedBy.some(SOMA.AffordsBeingSitOn)]\n", - "[INFO] [1712690291.424496]: Ancestors: {SOMA.Deposition, DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.CanBeSatOn}\n", - "[INFO] [1712690291.424767]: Subclasses: []\n", - "[INFO] [1712690291.425076]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712690291.425566]: Instances: []\n", - "[INFO] [1712690291.425829]: Direct Instances: []\n", - "[INFO] [1712690291.426366]: Inverse Restrictions: [SOMA.Sofa, SOMA.DesignedChair, SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712690291.426636]: -------------------\n", - "[INFO] [1712690291.426894]: SOMA.SittingDestination \n", - "[INFO] [1712690291.427152]: Super classes: [SOMA.Destination, DUL.classifies.only(SOMA.hasDisposition.some(SOMA.CanBeSatOn))]\n", - "[INFO] [1712690291.427449]: Ancestors: {DUL.Entity, SOMA.SittingDestination, DUL.Concept, DUL.SocialObject, SOMA.Destination, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690291.427716]: Subclasses: []\n", - "[INFO] [1712690291.428016]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.428515]: Instances: []\n", - "[INFO] [1712690291.428778]: Direct Instances: []\n", - "[INFO] [1712690291.429053]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712690291.429323]: -------------------\n", - "[INFO] [1712690291.429585]: SOMA.CanSit \n", - "[INFO] [1712690291.429847]: Super classes: [SOMA.Capability]\n", - "[INFO] [1712690291.430125]: Ancestors: {DUL.Entity, SOMA.Capability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.CanSit}\n", - "[INFO] [1712690291.430377]: Subclasses: []\n", - "[INFO] [1712690291.430700]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.431224]: Instances: []\n", - "[INFO] [1712690291.431499]: Direct Instances: []\n", - "[INFO] [1712690291.431790]: Inverse Restrictions: []\n", - "[INFO] [1712690291.432050]: -------------------\n", - "[INFO] [1712690291.432300]: SOMA.AgentRole \n", - "[INFO] [1712690291.432563]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712690291.432849]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.AgentRole, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, DUL.Role}\n", - "[INFO] [1712690291.433128]: Subclasses: []\n", - "[INFO] [1712690291.433455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.433963]: Instances: []\n", - "[INFO] [1712690291.434229]: Direct Instances: []\n", - "[INFO] [1712690291.434514]: Inverse Restrictions: []\n", - "[INFO] [1712690291.434755]: -------------------\n", - "[INFO] [1712690291.435004]: SOMA.Sitting \n", - "[INFO] [1712690291.435253]: Super classes: [SOMA.AssumingPose]\n", - "[INFO] [1712690291.435536]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.Sitting, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.435786]: Subclasses: []\n", - "[INFO] [1712690291.436074]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.436588]: Instances: []\n", - "[INFO] [1712690291.436862]: Direct Instances: []\n", - "[INFO] [1712690291.437146]: Inverse Restrictions: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712690291.437395]: -------------------\n", - "[INFO] [1712690291.437640]: SOMA.CausativeRole \n", - "[INFO] [1712690291.437878]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690291.438140]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, DUL.Role}\n", - "[INFO] [1712690291.438402]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712690291.438698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.439203]: Instances: []\n", - "[INFO] [1712690291.439487]: Direct Instances: []\n", - "[INFO] [1712690291.439759]: Inverse Restrictions: []\n", - "[INFO] [1712690291.440005]: -------------------\n", - "[INFO] [1712690291.440244]: SOMA.Agonist \n", - "[INFO] [1712690291.440481]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690291.440754]: Ancestors: {DUL.Entity, SOMA.Agonist, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.441021]: Subclasses: []\n", - "[INFO] [1712690291.441318]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.441813]: Instances: []\n", - "[INFO] [1712690291.442073]: Direct Instances: []\n", - "[INFO] [1712690291.442389]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712690291.442646]: -------------------\n", - "[INFO] [1712690291.442892]: SOMA.Patient \n", - "[INFO] [1712690291.443129]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690291.443379]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.443675]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712690291.443983]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.444551]: Instances: []\n", - "[INFO] [1712690291.444836]: Direct Instances: []\n", - "[INFO] [1712690291.445287]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690291.445549]: -------------------\n", - "[INFO] [1712690291.445798]: SOMA.Algorithm \n", - "[INFO] [1712690291.446054]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712690291.446334]: Ancestors: {SOMA.Algorithm, DUL.Entity, DUL.SocialObject, DUL.Plan, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690291.446608]: Subclasses: []\n", - "[INFO] [1712690291.446919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.447436]: Instances: []\n", - "[INFO] [1712690291.447709]: Direct Instances: []\n", - "[INFO] [1712690291.448766]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712690291.449039]: -------------------\n", - "[INFO] [1712690291.449302]: SOMA.Alteration \n", - "[INFO] [1712690291.449548]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712690291.449820]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration}\n", - "[INFO] [1712690291.450082]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712690291.450384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.450922]: Instances: []\n", - "[INFO] [1712690291.451198]: Direct Instances: []\n", - "[INFO] [1712690291.451463]: Inverse Restrictions: []\n", - "[INFO] [1712690291.451704]: -------------------\n", - "[INFO] [1712690291.451949]: SOMA.AlterativeInteraction \n", - "[INFO] [1712690291.452188]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712690291.453078]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.AlterativeInteraction, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction}\n", - "[INFO] [1712690291.453357]: Subclasses: []\n", - "[INFO] [1712690291.453672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.454183]: Instances: []\n", - "[INFO] [1712690291.454454]: Direct Instances: []\n", - "[INFO] [1712690291.454748]: Inverse Restrictions: []\n", - "[INFO] [1712690291.454998]: -------------------\n", - "[INFO] [1712690291.455243]: SOMA.ForceInteraction \n", - "[INFO] [1712690291.455518]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712690291.455784]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction}\n", - "[INFO] [1712690291.456041]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712690291.456353]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment]\n", - "[INFO] [1712690291.456872]: Instances: []\n", - "[INFO] [1712690291.457146]: Direct Instances: []\n", - "[INFO] [1712690291.457409]: Inverse Restrictions: []\n", - "[INFO] [1712690291.457655]: -------------------\n", - "[INFO] [1712690291.457897]: SOMA.PreservativeInteraction \n", - "[INFO] [1712690291.458152]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712690291.458427]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction, SOMA.PreservativeInteraction}\n", - "[INFO] [1712690291.458680]: Subclasses: []\n", - "[INFO] [1712690291.458973]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.459483]: Instances: []\n", - "[INFO] [1712690291.459750]: Direct Instances: []\n", - "[INFO] [1712690291.460041]: Inverse Restrictions: []\n", - "[INFO] [1712690291.460287]: -------------------\n", - "[INFO] [1712690291.460536]: SOMA.AlteredObject \n", - "[INFO] [1712690291.460786]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690291.461059]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", - "[INFO] [1712690291.461322]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712690291.461612]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.462128]: Instances: []\n", - "[INFO] [1712690291.462396]: Direct Instances: []\n", - "[INFO] [1712690291.463110]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712690291.463385]: -------------------\n", - "[INFO] [1712690291.463648]: SOMA.Amateurish \n", - "[INFO] [1712690291.463897]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712690291.464191]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690291.464474]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712690291.464795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.465580]: Instances: []\n", - "[INFO] [1712690291.465874]: Direct Instances: []\n", - "[INFO] [1712690291.466133]: Inverse Restrictions: []\n", - "[INFO] [1712690291.466409]: -------------------\n", - "[INFO] [1712690291.466676]: SOMA.AnsweringTask \n", - "[INFO] [1712690291.466951]: Super classes: [owl.Thing]\n", - "[INFO] [1712690291.469482]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", - "[INFO] [1712690291.469806]: Subclasses: []\n", - "[INFO] [1712690291.470129]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.470633]: Instances: []\n", - "[INFO] [1712690291.470907]: Direct Instances: []\n", - "[INFO] [1712690291.471218]: Inverse Restrictions: []\n", - "[INFO] [1712690291.471473]: -------------------\n", - "[INFO] [1712690291.471722]: SOMA.CommandingTask \n", - "[INFO] [1712690291.472375]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712690291.472683]: Ancestors: {SOMA.IllocutionaryTask, SOMA.CommandingTask, owl.Thing}\n", - "[INFO] [1712690291.472963]: Subclasses: []\n", - "[INFO] [1712690291.473272]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.473787]: Instances: []\n", - "[INFO] [1712690291.474059]: Direct Instances: []\n", - "[INFO] [1712690291.474400]: Inverse Restrictions: []\n", - "[INFO] [1712690291.474651]: -------------------\n", - "[INFO] [1712690291.474896]: SOMA.IllocutionaryTask \n", - "[INFO] [1712690291.476287]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712690291.476573]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712690291.476851]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712690291.477162]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.477671]: Instances: []\n", - "[INFO] [1712690291.477948]: Direct Instances: []\n", - "[INFO] [1712690291.478372]: Inverse Restrictions: []\n", - "[INFO] [1712690291.478629]: -------------------\n", - "[INFO] [1712690291.478873]: SOMA.Antagonist \n", - "[INFO] [1712690291.479115]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690291.479383]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, SOMA.Antagonist, DUL.Object, owl.Thing, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.479649]: Subclasses: []\n", - "[INFO] [1712690291.479962]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.480464]: Instances: []\n", - "[INFO] [1712690291.480737]: Direct Instances: []\n", - "[INFO] [1712690291.481047]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712690291.481300]: -------------------\n", - "[INFO] [1712690291.481544]: SOMA.Appliance \n", - "[INFO] [1712690291.481779]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712690291.482044]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.482340]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712690291.482650]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.483159]: Instances: []\n", - "[INFO] [1712690291.483422]: Direct Instances: []\n", - "[INFO] [1712690291.483685]: Inverse Restrictions: []\n", - "[INFO] [1712690291.483945]: -------------------\n", - "[INFO] [1712690291.484195]: SOMA.Approaching \n", - "[INFO] [1712690291.484445]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690291.484743]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Approaching, SOMA.Locomotion}\n", - "[INFO] [1712690291.485019]: Subclasses: []\n", - "[INFO] [1712690291.485329]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.485824]: Instances: []\n", - "[INFO] [1712690291.486089]: Direct Instances: []\n", - "[INFO] [1712690291.486345]: Inverse Restrictions: []\n", - "[INFO] [1712690291.486590]: -------------------\n", - "[INFO] [1712690291.486846]: SOMA.Locomotion \n", - "[INFO] [1712690291.487101]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712690291.487356]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", - "[INFO] [1712690291.487620]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712690291.487931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.488446]: Instances: []\n", - "[INFO] [1712690291.488716]: Direct Instances: []\n", - "[INFO] [1712690291.488989]: Inverse Restrictions: []\n", - "[INFO] [1712690291.489233]: -------------------\n", - "[INFO] [1712690291.489484]: SOMA.ArchiveFile \n", - "[INFO] [1712690291.489742]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712690291.490994]: Ancestors: {DUL.Entity, SOMA.ArchiveFile, DUL.InformationEntity, SOMA.Digital_File, owl.Thing, DUL.InformationRealization}\n", - "[INFO] [1712690291.491280]: Subclasses: []\n", - "[INFO] [1712690291.491611]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.realizes, rdf-schema.comment]\n", - "[INFO] [1712690291.492115]: Instances: []\n", - "[INFO] [1712690291.492382]: Direct Instances: []\n", - "[INFO] [1712690291.492642]: Inverse Restrictions: []\n", - "[INFO] [1712690291.492909]: -------------------\n", - "[INFO] [1712690291.493173]: SOMA.ArchiveText \n", - "[INFO] [1712690291.493431]: Super classes: [owl.Thing]\n", - "[INFO] [1712690291.495216]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", - "[INFO] [1712690291.495510]: Subclasses: []\n", - "[INFO] [1712690291.495832]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", - "[INFO] [1712690291.496342]: Instances: []\n", - "[INFO] [1712690291.496611]: Direct Instances: []\n", - "[INFO] [1712690291.497043]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712690291.497337]: -------------------\n", - "[INFO] [1712690291.497617]: SOMA.Digital_File \n", - "[INFO] [1712690291.497906]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712690291.498168]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.Digital_File, owl.Thing, DUL.InformationRealization}\n", - "[INFO] [1712690291.498430]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712690291.498753]: Properties: [rdf-schema.isDefinedBy, SOMA.hasNameString, rdf-schema.label, rdf-schema.comment, DUL.realizes]\n", - "[INFO] [1712690291.499267]: Instances: []\n", - "[INFO] [1712690291.499535]: Direct Instances: []\n", - "[INFO] [1712690291.502105]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712690291.502398]: -------------------\n", - "[INFO] [1712690291.502661]: SOMA.ArchiveFormat \n", - "[INFO] [1712690291.502922]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712690291.503228]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.ArchiveFormat, SOMA.File_format}\n", - "[INFO] [1712690291.503498]: Subclasses: []\n", - "[INFO] [1712690291.503814]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.504323]: Instances: []\n", - "[INFO] [1712690291.504602]: Direct Instances: []\n", - "[INFO] [1712690291.504904]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712690291.505159]: -------------------\n", - "[INFO] [1712690291.505405]: SOMA.File_format \n", - "[INFO] [1712690291.505646]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690291.505897]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.File_format}\n", - "[INFO] [1712690291.506167]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712690291.506468]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.506970]: Instances: []\n", - "[INFO] [1712690291.507231]: Direct Instances: []\n", - "[INFO] [1712690291.507502]: Inverse Restrictions: []\n", - "[INFO] [1712690291.507753]: -------------------\n", - "[INFO] [1712690291.507997]: SOMA.FileConfiguration \n", - "[INFO] [1712690291.508234]: Super classes: [owl.Thing]\n", - "[INFO] [1712690291.508715]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", - "[INFO] [1712690291.509001]: Subclasses: []\n", - "[INFO] [1712690291.509312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.509814]: Instances: []\n", - "[INFO] [1712690291.510078]: Direct Instances: []\n", - "[INFO] [1712690291.510388]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712690291.510649]: -------------------\n", - "[INFO] [1712690291.510905]: SOMA.Structured_Text \n", - "[INFO] [1712690291.511148]: Super classes: [owl.Thing]\n", - "[INFO] [1712690291.512354]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", - "[INFO] [1712690291.512646]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712690291.512962]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.513472]: Instances: []\n", - "[INFO] [1712690291.513757]: Direct Instances: []\n", - "[INFO] [1712690291.516408]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712690291.516694]: -------------------\n", - "[INFO] [1712690291.516972]: SOMA.AreaSurveying \n", - "[INFO] [1712690291.517233]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712690291.517511]: Ancestors: {SOMA.AreaSurveying, owl.Thing, SOMA.Perceiving}\n", - "[INFO] [1712690291.517769]: Subclasses: []\n", - "[INFO] [1712690291.518078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.518580]: Instances: []\n", - "[INFO] [1712690291.518846]: Direct Instances: []\n", - "[INFO] [1712690291.519100]: Inverse Restrictions: []\n", - "[INFO] [1712690291.519340]: -------------------\n", - "[INFO] [1712690291.519578]: SOMA.Perceiving \n", - "[INFO] [1712690291.519826]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712690291.520080]: Ancestors: {owl.Thing, SOMA.Perceiving}\n", - "[INFO] [1712690291.520341]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712690291.520636]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.521145]: Instances: []\n", - "[INFO] [1712690291.521416]: Direct Instances: []\n", - "[INFO] [1712690291.521683]: Inverse Restrictions: []\n", - "[INFO] [1712690291.521929]: -------------------\n", - "[INFO] [1712690291.522165]: SOMA.Arm \n", - "[INFO] [1712690291.522421]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712690291.523300]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Arm, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712690291.523570]: Subclasses: []\n", - "[INFO] [1712690291.523863]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.524404]: Instances: []\n", - "[INFO] [1712690291.524677]: Direct Instances: []\n", - "[INFO] [1712690291.524972]: Inverse Restrictions: []\n", - "[INFO] [1712690291.525220]: -------------------\n", - "[INFO] [1712690291.525465]: SOMA.Limb \n", - "[INFO] [1712690291.525722]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712690291.525987]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712690291.526249]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712690291.526550]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.527053]: Instances: []\n", - "[INFO] [1712690291.527330]: Direct Instances: []\n", - "[INFO] [1712690291.528024]: Inverse Restrictions: []\n", - "[INFO] [1712690291.528283]: -------------------\n", - "[INFO] [1712690291.528528]: SOMA.Armchair \n", - "[INFO] [1712690291.528791]: Super classes: [SOMA.DesignedChair]\n", - "[INFO] [1712690291.529088]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Armchair, SOMA.DesignedChair, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.529351]: Subclasses: []\n", - "[INFO] [1712690291.529654]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.530177]: Instances: []\n", - "[INFO] [1712690291.530462]: Direct Instances: []\n", - "[INFO] [1712690291.530717]: Inverse Restrictions: []\n", - "[INFO] [1712690291.530961]: -------------------\n", - "[INFO] [1712690291.531206]: SOMA.DesignedChair \n", - "[INFO] [1712690291.531462]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712690291.531720]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedChair, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.531973]: Subclasses: [SOMA.Armchair]\n", - "[INFO] [1712690291.532279]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690291.532807]: Instances: []\n", - "[INFO] [1712690291.533095]: Direct Instances: []\n", - "[INFO] [1712690291.533361]: Inverse Restrictions: []\n", - "[INFO] [1712690291.533608]: -------------------\n", - "[INFO] [1712690291.533853]: SOMA.Arranging \n", - "[INFO] [1712690291.534100]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712690291.534385]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Arranging}\n", - "[INFO] [1712690291.534638]: Subclasses: []\n", - "[INFO] [1712690291.534930]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.535439]: Instances: []\n", - "[INFO] [1712690291.535714]: Direct Instances: []\n", - "[INFO] [1712690291.535971]: Inverse Restrictions: []\n", - "[INFO] [1712690291.536219]: -------------------\n", - "[INFO] [1712690291.536458]: SOMA.Constructing \n", - "[INFO] [1712690291.536701]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690291.536977]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.537249]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712690291.537557]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.538060]: Instances: []\n", - "[INFO] [1712690291.538340]: Direct Instances: []\n", - "[INFO] [1712690291.538614]: Inverse Restrictions: []\n", - "[INFO] [1712690291.538864]: -------------------\n", - "[INFO] [1712690291.539109]: SOMA.ArtificialAgent \n", - "[INFO] [1712690291.539346]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712690291.539627]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.Agent, SOMA.ArtificialAgent, DUL.PhysicalAgent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.539896]: Subclasses: []\n", - "[INFO] [1712690291.540202]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.540699]: Instances: []\n", - "[INFO] [1712690291.540964]: Direct Instances: []\n", - "[INFO] [1712690291.541236]: Inverse Restrictions: []\n", - "[INFO] [1712690291.541487]: -------------------\n", - "[INFO] [1712690291.541728]: SOMA.Assembling \n", - "[INFO] [1712690291.541965]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712690291.542232]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Assembling, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.542495]: Subclasses: []\n", - "[INFO] [1712690291.542793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.543282]: Instances: []\n", - "[INFO] [1712690291.543544]: Direct Instances: []\n", - "[INFO] [1712690291.543799]: Inverse Restrictions: []\n", - "[INFO] [1712690291.544055]: -------------------\n", - "[INFO] [1712690291.544312]: SOMA.AssertionTask \n", - "[INFO] [1712690291.544998]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712690291.545327]: Ancestors: {SOMA.IllocutionaryTask, SOMA.AssertionTask, owl.Thing}\n", - "[INFO] [1712690291.545595]: Subclasses: []\n", - "[INFO] [1712690291.545899]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.546402]: Instances: []\n", - "[INFO] [1712690291.546682]: Direct Instances: []\n", - "[INFO] [1712690291.546942]: Inverse Restrictions: []\n", - "[INFO] [1712690291.547189]: -------------------\n", - "[INFO] [1712690291.547428]: SOMA.DeclarativeClause \n", - "[INFO] [1712690291.547668]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712690291.547963]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.DeclarativeClause, SOMA.ClausalObject}\n", - "[INFO] [1712690291.548235]: Subclasses: []\n", - "[INFO] [1712690291.548540]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.549040]: Instances: []\n", - "[INFO] [1712690291.549306]: Direct Instances: []\n", - "[INFO] [1712690291.549604]: Inverse Restrictions: []\n", - "[INFO] [1712690291.549868]: -------------------\n", - "[INFO] [1712690291.550131]: SOMA.AssumingArmPose \n", - "[INFO] [1712690291.550395]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712690291.550674]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.AssumingArmPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.550927]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712690291.551221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.551734]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712690291.552010]: Direct Instances: []\n", - "[INFO] [1712690291.552271]: Inverse Restrictions: []\n", - "[INFO] [1712690291.552513]: -------------------\n", - "[INFO] [1712690291.552762]: SOMA.AssumingPose \n", - "[INFO] [1712690291.553022]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690291.553281]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.553540]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712690291.553837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.554353]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712690291.554622]: Direct Instances: []\n", - "[INFO] [1712690291.554879]: Inverse Restrictions: []\n", - "[INFO] [1712690291.555133]: -------------------\n", - "[INFO] [1712690291.555384]: SOMA.AttentionShift \n", - "[INFO] [1712690291.555710]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712690291.556072]: Ancestors: {DUL.Entity, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.556389]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712690291.556734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.557264]: Instances: []\n", - "[INFO] [1712690291.557546]: Direct Instances: []\n", - "[INFO] [1712690291.557816]: Inverse Restrictions: []\n", - "[INFO] [1712690291.558073]: -------------------\n", - "[INFO] [1712690291.558340]: SOMA.MentalTask \n", - "[INFO] [1712690291.558621]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712690291.558898]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.559174]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712690291.559482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.560028]: Instances: []\n", - "[INFO] [1712690291.560313]: Direct Instances: []\n", - "[INFO] [1712690291.560630]: Inverse Restrictions: []\n", - "[INFO] [1712690291.560898]: -------------------\n", - "[INFO] [1712690291.561157]: SOMA.AvoidedObject \n", - "[INFO] [1712690291.561417]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690291.561715]: Ancestors: {DUL.Entity, SOMA.AvoidedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.561983]: Subclasses: []\n", - "[INFO] [1712690291.562293]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.562799]: Instances: []\n", - "[INFO] [1712690291.563091]: Direct Instances: []\n", - "[INFO] [1712690291.563364]: Inverse Restrictions: []\n", - "[INFO] [1712690291.563617]: -------------------\n", - "[INFO] [1712690291.563960]: SOMA.Avoiding \n", - "[INFO] [1712690291.564258]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712690291.564577]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Avoiding}\n", - "[INFO] [1712690291.564861]: Subclasses: []\n", - "[INFO] [1712690291.565187]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.565707]: Instances: []\n", - "[INFO] [1712690291.565986]: Direct Instances: []\n", - "[INFO] [1712690291.566250]: Inverse Restrictions: []\n", - "[INFO] [1712690291.566499]: -------------------\n", - "[INFO] [1712690291.566750]: SOMA.Navigating \n", - "[INFO] [1712690291.566998]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690291.567266]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.567542]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712690291.567857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.568373]: Instances: [SOMA.navigating]\n", - "[INFO] [1712690291.568671]: Direct Instances: [SOMA.navigating]\n", - "[INFO] [1712690291.568960]: Inverse Restrictions: []\n", - "[INFO] [1712690291.569223]: -------------------\n", - "[INFO] [1712690291.569481]: SOMA.BakedGood \n", - "[INFO] [1712690291.569733]: Super classes: [SOMA.Dish]\n", - "[INFO] [1712690291.570023]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.BakedGood, DUL.Object, owl.Thing, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.570306]: Subclasses: [SOMA.Bread, SOMA.Pancake]\n", - "[INFO] [1712690291.570610]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.571115]: Instances: []\n", - "[INFO] [1712690291.571386]: Direct Instances: []\n", - "[INFO] [1712690291.571666]: Inverse Restrictions: []\n", - "[INFO] [1712690291.571923]: -------------------\n", - "[INFO] [1712690291.572176]: SOMA.Dish \n", - "[INFO] [1712690291.572425]: Super classes: [DUL.DesignedArtifact]\n", - "[INFO] [1712690291.572682]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.572955]: Subclasses: [SOMA.BakedGood]\n", - "[INFO] [1712690291.573266]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.573778]: Instances: []\n", - "[INFO] [1712690291.574072]: Direct Instances: []\n", - "[INFO] [1712690291.574349]: Inverse Restrictions: []\n", - "[INFO] [1712690291.574605]: -------------------\n", - "[INFO] [1712690291.574857]: SOMA.Barrier \n", - "[INFO] [1712690291.575106]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712690291.575394]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.575684]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712690291.575999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.576511]: Instances: []\n", - "[INFO] [1712690291.576802]: Direct Instances: []\n", - "[INFO] [1712690291.577276]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712690291.577586]: -------------------\n", - "[INFO] [1712690291.577865]: SOMA.Restrictor \n", - "[INFO] [1712690291.578123]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712690291.578395]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.578665]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712690291.578966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.579520]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690291.579797]: Direct Instances: []\n", - "[INFO] [1712690291.580172]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712690291.580428]: -------------------\n", - "[INFO] [1712690291.580675]: SOMA.BedsideTable \n", - "[INFO] [1712690291.580936]: Super classes: [SOMA.Table]\n", - "[INFO] [1712690291.581225]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Table, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.BedsideTable}\n", - "[INFO] [1712690291.581479]: Subclasses: []\n", - "[INFO] [1712690291.581770]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.582258]: Instances: []\n", - "[INFO] [1712690291.582543]: Direct Instances: []\n", - "[INFO] [1712690291.582814]: Inverse Restrictions: []\n", - "[INFO] [1712690291.583088]: -------------------\n", - "[INFO] [1712690291.583434]: SOMA.Table \n", - "[INFO] [1712690291.583743]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712690291.584035]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Table, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.584322]: Subclasses: [SOMA.BedsideTable, SOMA.CoffeeTable]\n", - "[INFO] [1712690291.584651]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.585166]: Instances: []\n", - "[INFO] [1712690291.585457]: Direct Instances: []\n", - "[INFO] [1712690291.585726]: Inverse Restrictions: []\n", - "[INFO] [1712690291.585977]: -------------------\n", - "[INFO] [1712690291.586227]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712690291.586483]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712690291.586747]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690291.587021]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712690291.587328]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712690291.587844]: Instances: []\n", - "[INFO] [1712690291.588462]: Direct Instances: []\n", - "[INFO] [1712690291.588762]: Inverse Restrictions: []\n", - "[INFO] [1712690291.589027]: -------------------\n", - "[INFO] [1712690291.589279]: SOMA.BeneficiaryRole \n", - "[INFO] [1712690291.589524]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712690291.589815]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.BeneficiaryRole, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690291.590096]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712690291.590417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.590918]: Instances: []\n", - "[INFO] [1712690291.591259]: Direct Instances: []\n", - "[INFO] [1712690291.591543]: Inverse Restrictions: []\n", - "[INFO] [1712690291.591805]: -------------------\n", - "[INFO] [1712690291.592059]: SOMA.GoalRole \n", - "[INFO] [1712690291.592315]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690291.592567]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690291.592843]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712690291.593148]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.593650]: Instances: []\n", - "[INFO] [1712690291.593930]: Direct Instances: []\n", - "[INFO] [1712690291.594195]: Inverse Restrictions: []\n", - "[INFO] [1712690291.594442]: -------------------\n", - "[INFO] [1712690291.594683]: SOMA.CounterfactualBinding \n", - "[INFO] [1712690291.594921]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712690291.595192]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.CounterfactualBinding, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690291.595459]: Subclasses: []\n", - "[INFO] [1712690291.595778]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.596277]: Instances: []\n", - "[INFO] [1712690291.596562]: Direct Instances: []\n", - "[INFO] [1712690291.596909]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712690291.597183]: -------------------\n", - "[INFO] [1712690291.597444]: SOMA.FactualBinding \n", - "[INFO] [1712690291.597689]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712690291.597960]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FactualBinding, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690291.598210]: Subclasses: []\n", - "[INFO] [1712690291.598503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.599013]: Instances: []\n", - "[INFO] [1712690291.599281]: Direct Instances: []\n", - "[INFO] [1712690291.599618]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712690291.599867]: -------------------\n", - "[INFO] [1712690291.600133]: SOMA.RoleFillerBinding \n", - "[INFO] [1712690291.600390]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712690291.600672]: Ancestors: {DUL.Entity, SOMA.RoleFillerBinding, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690291.600933]: Subclasses: []\n", - "[INFO] [1712690291.601243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.601758]: Instances: []\n", - "[INFO] [1712690291.602030]: Direct Instances: []\n", - "[INFO] [1712690291.602326]: Inverse Restrictions: []\n", - "[INFO] [1712690291.602576]: -------------------\n", - "[INFO] [1712690291.602813]: SOMA.RoleRoleBinding \n", - "[INFO] [1712690291.603472]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712690291.603771]: Ancestors: {SOMA.RoleRoleBinding, DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690291.604047]: Subclasses: []\n", - "[INFO] [1712690291.604349]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.604847]: Instances: []\n", - "[INFO] [1712690291.605124]: Direct Instances: []\n", - "[INFO] [1712690291.605427]: Inverse Restrictions: []\n", - "[INFO] [1712690291.605678]: -------------------\n", - "[INFO] [1712690291.605925]: SOMA.Blade \n", - "[INFO] [1712690291.606162]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690291.606439]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.Blade, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.606704]: Subclasses: []\n", - "[INFO] [1712690291.607000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.607499]: Instances: []\n", - "[INFO] [1712690291.607755]: Direct Instances: []\n", - "[INFO] [1712690291.608030]: Inverse Restrictions: [SOMA.Knife]\n", - "[INFO] [1712690291.608289]: -------------------\n", - "[INFO] [1712690291.608534]: SOMA.DesignedComponent \n", - "[INFO] [1712690291.608798]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712690291.609054]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.609331]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712690291.609643]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690291.610167]: Instances: []\n", - "[INFO] [1712690291.610431]: Direct Instances: []\n", - "[INFO] [1712690291.610690]: Inverse Restrictions: []\n", - "[INFO] [1712690291.610944]: -------------------\n", - "[INFO] [1712690291.611191]: SOMA.Blockage \n", - "[INFO] [1712690291.611454]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712690291.611722]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.611972]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712690291.612266]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.612778]: Instances: []\n", - "[INFO] [1712690291.613052]: Direct Instances: []\n", - "[INFO] [1712690291.613314]: Inverse Restrictions: []\n", - "[INFO] [1712690291.613564]: -------------------\n", - "[INFO] [1712690291.613805]: SOMA.BlockedObject \n", - "[INFO] [1712690291.614052]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690291.614326]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.614584]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712690291.614876]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.615368]: Instances: []\n", - "[INFO] [1712690291.615641]: Direct Instances: []\n", - "[INFO] [1712690291.615937]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712690291.616188]: -------------------\n", - "[INFO] [1712690291.616431]: SOMA.BodyMovement \n", - "[INFO] [1712690291.617460]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712690291.617775]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.618052]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712690291.618354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.618879]: Instances: []\n", - "[INFO] [1712690291.619156]: Direct Instances: []\n", - "[INFO] [1712690291.619417]: Inverse Restrictions: []\n", - "[INFO] [1712690291.619661]: -------------------\n", - "[INFO] [1712690291.619903]: SOMA.Motion \n", - "[INFO] [1712690291.620139]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712690291.620380]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.620647]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712690291.620947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.621496]: Instances: []\n", - "[INFO] [1712690291.621770]: Direct Instances: []\n", - "[INFO] [1712690291.622036]: Inverse Restrictions: []\n", - "[INFO] [1712690291.622283]: -------------------\n", - "[INFO] [1712690291.622524]: SOMA.Boiling \n", - "[INFO] [1712690291.622761]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712690291.623049]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Boiling, DUL.Concept, DUL.SocialObject, SOMA.Vaporizing, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", - "[INFO] [1712690291.623307]: Subclasses: []\n", - "[INFO] [1712690291.623597]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.624083]: Instances: []\n", - "[INFO] [1712690291.624358]: Direct Instances: []\n", - "[INFO] [1712690291.624619]: Inverse Restrictions: []\n", - "[INFO] [1712690291.624863]: -------------------\n", - "[INFO] [1712690291.625101]: SOMA.Vaporizing \n", - "[INFO] [1712690291.625747]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712690291.626031]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Vaporizing, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", - "[INFO] [1712690291.626299]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712690291.626599]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690291.627097]: Instances: []\n", - "[INFO] [1712690291.627371]: Direct Instances: []\n", - "[INFO] [1712690291.627633]: Inverse Restrictions: []\n", - "[INFO] [1712690291.627873]: -------------------\n", - "[INFO] [1712690291.628108]: SOMA.Bottle \n", - "[INFO] [1712690291.628351]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712690291.628625]: Ancestors: {DUL.PhysicalArtifact, SOMA.Bottle, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.628890]: Subclasses: [SOMA.MilkBottle, SOMA.WaterBottle, SOMA.WineBottle]\n", - "[INFO] [1712690291.629178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.629689]: Instances: []\n", - "[INFO] [1712690291.629971]: Direct Instances: []\n", - "[INFO] [1712690291.630243]: Inverse Restrictions: []\n", - "[INFO] [1712690291.630506]: -------------------\n", - "[INFO] [1712690291.630756]: SOMA.DesignedContainer \n", - "[INFO] [1712690291.630998]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712690291.631261]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.631540]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712690291.631839]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690291.632427]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712690291.632725]: Direct Instances: []\n", - "[INFO] [1712690291.633008]: Inverse Restrictions: []\n", - "[INFO] [1712690291.633256]: -------------------\n", - "[INFO] [1712690291.633523]: SOMA.Bowl \n", - "[INFO] [1712690291.633759]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712690291.634052]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Bowl, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690291.634321]: Subclasses: [SOMA.PastaBowl, SOMA.SaladBowl]\n", - "[INFO] [1712690291.634619]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.635112]: Instances: []\n", - "[INFO] [1712690291.635369]: Direct Instances: []\n", - "[INFO] [1712690291.635646]: Inverse Restrictions: [SOMA.Spoon]\n", - "[INFO] [1712690291.635902]: -------------------\n", - "[INFO] [1712690291.636149]: SOMA.Crockery \n", - "[INFO] [1712690291.637029]: Super classes: [SOMA.DesignedContainer, SOMA.Tableware, SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712690291.637323]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690291.637595]: Subclasses: [SOMA.Bowl, SOMA.Plate, SOMA.Cup, SOMA.Glass, SOMA.Pan, SOMA.Pot]\n", - "[INFO] [1712690291.637891]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690291.638402]: Instances: []\n", - "[INFO] [1712690291.638673]: Direct Instances: []\n", - "[INFO] [1712690291.638932]: Inverse Restrictions: []\n", - "[INFO] [1712690291.639169]: -------------------\n", - "[INFO] [1712690291.639403]: SOMA.Box \n", - "[INFO] [1712690291.639654]: Super classes: [SOMA.DesignedContainer, SOMA.hasShapeRegion.some(SOMA.BoxShape)]\n", - "[INFO] [1712690291.639923]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Box, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.640188]: Subclasses: [SOMA.CerealBox]\n", - "[INFO] [1712690291.640480]: Properties: [SOMA.hasShapeRegion, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.640967]: Instances: []\n", - "[INFO] [1712690291.641230]: Direct Instances: []\n", - "[INFO] [1712690291.641480]: Inverse Restrictions: []\n", - "[INFO] [1712690291.641730]: -------------------\n", - "[INFO] [1712690291.641969]: SOMA.BoxShape \n", - "[INFO] [1712690291.642247]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712690291.642511]: Ancestors: {DUL.Entity, SOMA.BoxShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690291.642751]: Subclasses: []\n", - "[INFO] [1712690291.643054]: Properties: [SOMA.hasHeight, SOMA.hasLength, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasWidth]\n", - "[INFO] [1712690291.643545]: Instances: []\n", - "[INFO] [1712690291.643797]: Direct Instances: []\n", - "[INFO] [1712690291.644063]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712690291.644299]: -------------------\n", - "[INFO] [1712690291.644548]: SOMA.Bread \n", - "[INFO] [1712690291.644789]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712690291.645056]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Bread, SOMA.BakedGood, DUL.Object, owl.Thing, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.645299]: Subclasses: []\n", - "[INFO] [1712690291.645582]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.646084]: Instances: []\n", - "[INFO] [1712690291.646348]: Direct Instances: []\n", - "[INFO] [1712690291.646602]: Inverse Restrictions: []\n", - "[INFO] [1712690291.646835]: -------------------\n", - "[INFO] [1712690291.647087]: SOMA.BreadKnife \n", - "[INFO] [1712690291.647335]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712690291.647633]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Knife, SOMA.CuttingTool, owl.Thing, DUL.Object, SOMA.BreadKnife, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.KitchenKnife}\n", - "[INFO] [1712690291.647888]: Subclasses: []\n", - "[INFO] [1712690291.648177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.648660]: Instances: []\n", - "[INFO] [1712690291.648938]: Direct Instances: []\n", - "[INFO] [1712690291.649197]: Inverse Restrictions: []\n", - "[INFO] [1712690291.649435]: -------------------\n", - "[INFO] [1712690291.649668]: SOMA.KitchenKnife \n", - "[INFO] [1712690291.649896]: Super classes: [SOMA.Knife]\n", - "[INFO] [1712690291.650161]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Knife, SOMA.CuttingTool, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.KitchenKnife}\n", - "[INFO] [1712690291.650438]: Subclasses: [SOMA.BreadKnife, SOMA.TableKnife]\n", - "[INFO] [1712690291.650731]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.651244]: Instances: []\n", - "[INFO] [1712690291.651534]: Direct Instances: []\n", - "[INFO] [1712690291.651806]: Inverse Restrictions: []\n", - "[INFO] [1712690291.652076]: -------------------\n", - "[INFO] [1712690291.652341]: SOMA.BreakfastPlate \n", - "[INFO] [1712690291.652600]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712690291.652902]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.BreakfastPlate, SOMA.Tableware, SOMA.Crockery, owl.Thing, SOMA.Plate, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690291.653199]: Subclasses: []\n", - "[INFO] [1712690291.653525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.654046]: Instances: []\n", - "[INFO] [1712690291.654330]: Direct Instances: []\n", - "[INFO] [1712690291.654610]: Inverse Restrictions: []\n", - "[INFO] [1712690291.654864]: -------------------\n", - "[INFO] [1712690291.655116]: SOMA.Plate \n", - "[INFO] [1712690291.655357]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712690291.655608]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Tableware, SOMA.Crockery, owl.Thing, SOMA.Plate, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690291.655863]: Subclasses: [SOMA.BreakfastPlate, SOMA.DinnerPlate]\n", - "[INFO] [1712690291.656172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.656677]: Instances: []\n", - "[INFO] [1712690291.656950]: Direct Instances: []\n", - "[INFO] [1712690291.657211]: Inverse Restrictions: []\n", - "[INFO] [1712690291.657468]: -------------------\n", - "[INFO] [1712690291.657723]: SOMA.Building \n", - "[INFO] [1712690291.657967]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712690291.658238]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Building, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.658489]: Subclasses: []\n", - "[INFO] [1712690291.658792]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.659299]: Instances: []\n", - "[INFO] [1712690291.659568]: Direct Instances: []\n", - "[INFO] [1712690291.659824]: Inverse Restrictions: []\n", - "[INFO] [1712690291.660067]: -------------------\n", - "[INFO] [1712690291.660323]: SOMA.Deposition \n", - "[INFO] [1712690291.660603]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712690291.660862]: Ancestors: {SOMA.Deposition, DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.661116]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712690291.661417]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.661912]: Instances: []\n", - "[INFO] [1712690291.662166]: Direct Instances: []\n", - "[INFO] [1712690291.662848]: Inverse Restrictions: []\n", - "[INFO] [1712690291.663112]: -------------------\n", - "[INFO] [1712690291.663362]: SOMA.CanCut \n", - "[INFO] [1712690291.663631]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712690291.663909]: Ancestors: {SOMA.CanCut, DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.664163]: Subclasses: []\n", - "[INFO] [1712690291.664466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.664962]: Instances: []\n", - "[INFO] [1712690291.665221]: Direct Instances: []\n", - "[INFO] [1712690291.665465]: Inverse Restrictions: []\n", - "[INFO] [1712690291.665708]: -------------------\n", - "[INFO] [1712690291.665951]: SOMA.Variability \n", - "[INFO] [1712690291.666215]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712690291.666471]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.666730]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712690291.667368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.667918]: Instances: []\n", - "[INFO] [1712690291.668200]: Direct Instances: []\n", - "[INFO] [1712690291.668478]: Inverse Restrictions: []\n", - "[INFO] [1712690291.668727]: -------------------\n", - "[INFO] [1712690291.668981]: SOMA.Cutter \n", - "[INFO] [1712690291.669236]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712690291.669526]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Cutter, SOMA.Tool, DUL.Role}\n", - "[INFO] [1712690291.669787]: Subclasses: []\n", - "[INFO] [1712690291.670081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.670584]: Instances: []\n", - "[INFO] [1712690291.670867]: Direct Instances: []\n", - "[INFO] [1712690291.671200]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712690291.671449]: -------------------\n", - "[INFO] [1712690291.671688]: SOMA.CutObject \n", - "[INFO] [1712690291.671924]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712690291.672205]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CutObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", - "[INFO] [1712690291.672458]: Subclasses: []\n", - "[INFO] [1712690291.672750]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.673237]: Instances: []\n", - "[INFO] [1712690291.673494]: Direct Instances: []\n", - "[INFO] [1712690291.673821]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712690291.674079]: -------------------\n", - "[INFO] [1712690291.674329]: SOMA.Capability \n", - "[INFO] [1712690291.676023]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712690291.676316]: Ancestors: {DUL.Entity, SOMA.Capability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.676582]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712690291.676885]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712690291.677380]: Instances: []\n", - "[INFO] [1712690291.677653]: Direct Instances: []\n", - "[INFO] [1712690291.677912]: Inverse Restrictions: []\n", - "[INFO] [1712690291.678153]: -------------------\n", - "[INFO] [1712690291.678396]: SOMA.Capacity \n", - "[INFO] [1712690291.678637]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690291.678897]: Ancestors: {DUL.Entity, SOMA.Capacity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690291.679158]: Subclasses: []\n", - "[INFO] [1712690291.679456]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.679959]: Instances: []\n", - "[INFO] [1712690291.680247]: Direct Instances: []\n", - "[INFO] [1712690291.680934]: Inverse Restrictions: []\n", - "[INFO] [1712690291.681200]: -------------------\n", - "[INFO] [1712690291.681455]: SOMA.Intrinsic \n", - "[INFO] [1712690291.681705]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712690291.681951]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690291.682217]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712690291.682511]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.683065]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712690291.683344]: Direct Instances: []\n", - "[INFO] [1712690291.683624]: Inverse Restrictions: []\n", - "[INFO] [1712690291.683867]: -------------------\n", - "[INFO] [1712690291.684114]: SOMA.Carafe \n", - "[INFO] [1712690291.684350]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712690291.684631]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Carafe, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.684895]: Subclasses: [SOMA.CoffeeCarafe]\n", - "[INFO] [1712690291.685186]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.685679]: Instances: []\n", - "[INFO] [1712690291.685959]: Direct Instances: []\n", - "[INFO] [1712690291.686219]: Inverse Restrictions: []\n", - "[INFO] [1712690291.686467]: -------------------\n", - "[INFO] [1712690291.686717]: SOMA.Catching \n", - "[INFO] [1712690291.686964]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690291.687232]: Ancestors: {DUL.Entity, SOMA.Catching, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.687475]: Subclasses: []\n", - "[INFO] [1712690291.687772]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.688275]: Instances: []\n", - "[INFO] [1712690291.688542]: Direct Instances: []\n", - "[INFO] [1712690291.688805]: Inverse Restrictions: []\n", - "[INFO] [1712690291.689049]: -------------------\n", - "[INFO] [1712690291.689286]: SOMA.PickingUp \n", - "[INFO] [1712690291.689520]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690291.689807]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.PickingUp}\n", - "[INFO] [1712690291.690068]: Subclasses: []\n", - "[INFO] [1712690291.690360]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.690850]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712690291.691112]: Direct Instances: [SOMA.picking_up]\n", - "[INFO] [1712690291.691383]: Inverse Restrictions: []\n", - "[INFO] [1712690291.691633]: -------------------\n", - "[INFO] [1712690291.691883]: SOMA.CausalEventRole \n", - "[INFO] [1712690291.692118]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712690291.692377]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausalEventRole, SOMA.CausativeRole, DUL.Role}\n", - "[INFO] [1712690291.692620]: Subclasses: []\n", - "[INFO] [1712690291.692920]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.693406]: Instances: []\n", - "[INFO] [1712690291.693667]: Direct Instances: []\n", - "[INFO] [1712690291.694040]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690291.694318]: -------------------\n", - "[INFO] [1712690291.694578]: SOMA.EventAdjacentRole \n", - "[INFO] [1712690291.694827]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712690291.695079]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.695337]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712690291.695658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.696351]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690291.696640]: Direct Instances: []\n", - "[INFO] [1712690291.696918]: Inverse Restrictions: []\n", - "[INFO] [1712690291.697191]: -------------------\n", - "[INFO] [1712690291.697441]: SOMA.CausedMotionTheory \n", - "[INFO] [1712690291.697743]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712690291.698071]: Ancestors: {DUL.Entity, SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690291.698334]: Subclasses: []\n", - "[INFO] [1712690291.698647]: Properties: [DUL.defines, DUL.hasPart, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.699136]: Instances: []\n", - "[INFO] [1712690291.699390]: Direct Instances: []\n", - "[INFO] [1712690291.699648]: Inverse Restrictions: []\n", - "[INFO] [1712690291.699892]: -------------------\n", - "[INFO] [1712690291.700149]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712690291.700402]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712690291.700647]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690291.700927]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712690291.701238]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.701755]: Instances: []\n", - "[INFO] [1712690291.702034]: Direct Instances: []\n", - "[INFO] [1712690291.702379]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", - "[INFO] [1712690291.702633]: -------------------\n", - "[INFO] [1712690291.702885]: SOMA.PerformerRole \n", - "[INFO] [1712690291.703149]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712690291.703442]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", - "[INFO] [1712690291.703713]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712690291.704014]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.704519]: Instances: []\n", - "[INFO] [1712690291.704799]: Direct Instances: []\n", - "[INFO] [1712690291.705144]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690291.705401]: -------------------\n", - "[INFO] [1712690291.705647]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712690291.705926]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712690291.706213]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.SourcePathGoalTheory}\n", - "[INFO] [1712690291.706469]: Subclasses: []\n", - "[INFO] [1712690291.706766]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.707265]: Instances: []\n", - "[INFO] [1712690291.707540]: Direct Instances: []\n", - "[INFO] [1712690291.707837]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690291.708086]: -------------------\n", - "[INFO] [1712690291.708324]: SOMA.Ceiling \n", - "[INFO] [1712690291.708565]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712690291.708858]: Ancestors: {DUL.Entity, SOMA.Ceiling, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690291.709110]: Subclasses: []\n", - "[INFO] [1712690291.709409]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.709890]: Instances: []\n", - "[INFO] [1712690291.710158]: Direct Instances: []\n", - "[INFO] [1712690291.710414]: Inverse Restrictions: []\n", - "[INFO] [1712690291.710651]: -------------------\n", - "[INFO] [1712690291.710881]: SOMA.RoomSurface \n", - "[INFO] [1712690291.711106]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712690291.711340]: Ancestors: {DUL.Entity, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690291.711599]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712690291.711890]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.712378]: Instances: []\n", - "[INFO] [1712690291.712628]: Direct Instances: []\n", - "[INFO] [1712690291.712885]: Inverse Restrictions: []\n", - "[INFO] [1712690291.713134]: -------------------\n", - "[INFO] [1712690291.713370]: SOMA.Floor \n", - "[INFO] [1712690291.713606]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712690291.713863]: Ancestors: {DUL.Entity, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA.Floor}\n", - "[INFO] [1712690291.714119]: Subclasses: []\n", - "[INFO] [1712690291.714416]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.714914]: Instances: []\n", - "[INFO] [1712690291.715167]: Direct Instances: []\n", - "[INFO] [1712690291.715415]: Inverse Restrictions: []\n", - "[INFO] [1712690291.715656]: -------------------\n", - "[INFO] [1712690291.715890]: SOMA.Wall \n", - "[INFO] [1712690291.716124]: Super classes: [SOMA.RoomSurface]\n", - "[INFO] [1712690291.716383]: Ancestors: {DUL.Entity, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, SOMA.Wall, DUL.PhysicalObject}\n", - "[INFO] [1712690291.716646]: Subclasses: []\n", - "[INFO] [1712690291.716957]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.717450]: Instances: []\n", - "[INFO] [1712690291.717702]: Direct Instances: []\n", - "[INFO] [1712690291.717944]: Inverse Restrictions: []\n", - "[INFO] [1712690291.718177]: -------------------\n", - "[INFO] [1712690291.718421]: SOMA.CeramicCooktop \n", - "[INFO] [1712690291.718655]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712690291.718934]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.CeramicCooktop, DUL.PhysicalBody, SOMA.ElectricCooktop, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.719177]: Subclasses: []\n", - "[INFO] [1712690291.719456]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.719960]: Instances: []\n", - "[INFO] [1712690291.720221]: Direct Instances: []\n", - "[INFO] [1712690291.720475]: Inverse Restrictions: []\n", - "[INFO] [1712690291.720714]: -------------------\n", - "[INFO] [1712690291.720955]: SOMA.ElectricCooktop \n", - "[INFO] [1712690291.721188]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712690291.721444]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.ElectricCooktop, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.721698]: Subclasses: [SOMA.CeramicCooktop, SOMA.CoilCooktop, SOMA.InductionCooktop]\n", - "[INFO] [1712690291.721978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.722467]: Instances: []\n", - "[INFO] [1712690291.722736]: Direct Instances: []\n", - "[INFO] [1712690291.722997]: Inverse Restrictions: []\n", - "[INFO] [1712690291.723243]: -------------------\n", - "[INFO] [1712690291.723477]: SOMA.CerealBox \n", - "[INFO] [1712690291.723708]: Super classes: [SOMA.Box]\n", - "[INFO] [1712690291.723969]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Box, SOMA.CerealBox, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.724231]: Subclasses: []\n", - "[INFO] [1712690291.724525]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.725022]: Instances: []\n", - "[INFO] [1712690291.725291]: Direct Instances: []\n", - "[INFO] [1712690291.725550]: Inverse Restrictions: []\n", - "[INFO] [1712690291.725791]: -------------------\n", - "[INFO] [1712690291.726027]: SOMA.Channel \n", - "[INFO] [1712690291.726280]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712690291.726567]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690291.726828]: Subclasses: []\n", - "[INFO] [1712690291.727126]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", - "[INFO] [1712690291.727627]: Instances: []\n", - "[INFO] [1712690291.727892]: Direct Instances: []\n", - "[INFO] [1712690291.728199]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690291.728441]: -------------------\n", - "[INFO] [1712690291.728678]: SOMA.PathRole \n", - "[INFO] [1712690291.728926]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712690291.729187]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.PathRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690291.729443]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712690291.729746]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.730263]: Instances: []\n", - "[INFO] [1712690291.730553]: Direct Instances: []\n", - "[INFO] [1712690291.730856]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712690291.731111]: -------------------\n", - "[INFO] [1712690291.731352]: SOMA.CommunicationTask \n", - "[INFO] [1712690291.732371]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712690291.732672]: Ancestors: {DUL.Entity, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.732974]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712690291.733293]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.733822]: Instances: []\n", - "[INFO] [1712690291.734107]: Direct Instances: []\n", - "[INFO] [1712690291.734957]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", - "[INFO] [1712690291.735228]: -------------------\n", - "[INFO] [1712690291.735490]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712690291.735739]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712690291.736005]: Ancestors: {SOMA.CheckingObjectPresence, owl.Thing, SOMA.Perceiving}\n", - "[INFO] [1712690291.736257]: Subclasses: []\n", - "[INFO] [1712690291.736552]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.737072]: Instances: []\n", - "[INFO] [1712690291.737345]: Direct Instances: []\n", - "[INFO] [1712690291.737605]: Inverse Restrictions: []\n", - "[INFO] [1712690291.737846]: -------------------\n", - "[INFO] [1712690291.738081]: SOMA.ChemicalProcess \n", - "[INFO] [1712690291.738321]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712690291.738602]: Ancestors: {DUL.Entity, DUL.Event, DUL.Process, owl.Thing, SOMA.ChemicalProcess}\n", - "[INFO] [1712690291.738858]: Subclasses: []\n", - "[INFO] [1712690291.739145]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.739631]: Instances: []\n", - "[INFO] [1712690291.739907]: Direct Instances: []\n", - "[INFO] [1712690291.740169]: Inverse Restrictions: []\n", - "[INFO] [1712690291.740408]: -------------------\n", - "[INFO] [1712690291.740650]: SOMA.Choice \n", - "[INFO] [1712690291.740892]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712690291.741168]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.Choice, DUL.SocialObject, SOMA.ResultRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690291.741434]: Subclasses: []\n", - "[INFO] [1712690291.741736]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.742229]: Instances: []\n", - "[INFO] [1712690291.742484]: Direct Instances: []\n", - "[INFO] [1712690291.742741]: Inverse Restrictions: []\n", - "[INFO] [1712690291.742985]: -------------------\n", - "[INFO] [1712690291.743219]: SOMA.ResultRole \n", - "[INFO] [1712690291.743459]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712690291.743708]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.ResultRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690291.743957]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712690291.744242]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.744762]: Instances: []\n", - "[INFO] [1712690291.745030]: Direct Instances: []\n", - "[INFO] [1712690291.745287]: Inverse Restrictions: []\n", - "[INFO] [1712690291.745522]: -------------------\n", - "[INFO] [1712690291.745750]: SOMA.CircularCylinder \n", - "[INFO] [1712690291.746018]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712690291.746307]: Ancestors: {SOMA.CircularCylinder, DUL.Entity, SOMA.CylinderShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690291.746565]: Subclasses: []\n", - "[INFO] [1712690291.746860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", - "[INFO] [1712690291.747366]: Instances: []\n", - "[INFO] [1712690291.747653]: Direct Instances: []\n", - "[INFO] [1712690291.747914]: Inverse Restrictions: []\n", - "[INFO] [1712690291.748155]: -------------------\n", - "[INFO] [1712690291.748390]: SOMA.CylinderShape \n", - "[INFO] [1712690291.748653]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712690291.748926]: Ancestors: {DUL.Entity, SOMA.CylinderShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690291.749186]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712690291.749487]: Properties: [SOMA.hasLength, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712690291.749995]: Instances: []\n", - "[INFO] [1712690291.750268]: Direct Instances: []\n", - "[INFO] [1712690291.750534]: Inverse Restrictions: []\n", - "[INFO] [1712690291.750776]: -------------------\n", - "[INFO] [1712690291.751011]: SOMA.Classifier \n", - "[INFO] [1712690291.751247]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712690291.751540]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Classifier, SOMA.StatisticalReasoner, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690291.751793]: Subclasses: []\n", - "[INFO] [1712690291.752085]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690291.752572]: Instances: []\n", - "[INFO] [1712690291.752842]: Direct Instances: []\n", - "[INFO] [1712690291.753100]: Inverse Restrictions: []\n", - "[INFO] [1712690291.753342]: -------------------\n", - "[INFO] [1712690291.753577]: SOMA.StatisticalReasoner \n", - "[INFO] [1712690291.753806]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712690291.754045]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690291.754305]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712690291.754598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690291.755083]: Instances: []\n", - "[INFO] [1712690291.755335]: Direct Instances: []\n", - "[INFO] [1712690291.755590]: Inverse Restrictions: []\n", - "[INFO] [1712690291.755836]: -------------------\n", - "[INFO] [1712690291.756076]: SOMA.ClausalObject \n", - "[INFO] [1712690291.756308]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712690291.756549]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.ClausalObject}\n", - "[INFO] [1712690291.756801]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712690291.757087]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.757600]: Instances: []\n", - "[INFO] [1712690291.757862]: Direct Instances: []\n", - "[INFO] [1712690291.758118]: Inverse Restrictions: []\n", - "[INFO] [1712690291.758361]: -------------------\n", - "[INFO] [1712690291.758600]: SOMA.Phrase \n", - "[INFO] [1712690291.758839]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712690291.759090]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690291.759343]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712690291.759632]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.760123]: Instances: []\n", - "[INFO] [1712690291.760393]: Direct Instances: []\n", - "[INFO] [1712690291.760660]: Inverse Restrictions: []\n", - "[INFO] [1712690291.760911]: -------------------\n", - "[INFO] [1712690291.761153]: SOMA.Clean \n", - "[INFO] [1712690291.761393]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712690291.761671]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion, SOMA.Clean}\n", - "[INFO] [1712690291.761923]: Subclasses: []\n", - "[INFO] [1712690291.762206]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.762685]: Instances: []\n", - "[INFO] [1712690291.762948]: Direct Instances: []\n", - "[INFO] [1712690291.763638]: Inverse Restrictions: []\n", - "[INFO] [1712690291.763892]: -------------------\n", - "[INFO] [1712690291.764129]: SOMA.CleanlinessRegion \n", - "[INFO] [1712690291.764371]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690291.764621]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion}\n", - "[INFO] [1712690291.764880]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712690291.765173]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.765672]: Instances: []\n", - "[INFO] [1712690291.765943]: Direct Instances: []\n", - "[INFO] [1712690291.766279]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712690291.766524]: -------------------\n", - "[INFO] [1712690291.766768]: SOMA.Cleaning \n", - "[INFO] [1712690291.767040]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712690291.767323]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, SOMA.Cleaning, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690291.767579]: Subclasses: []\n", - "[INFO] [1712690291.767876]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690291.768361]: Instances: []\n", - "[INFO] [1712690291.768612]: Direct Instances: []\n", - "[INFO] [1712690291.768867]: Inverse Restrictions: []\n", - "[INFO] [1712690291.769111]: -------------------\n", - "[INFO] [1712690291.769346]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712690291.769583]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690291.769824]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690291.770093]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712690291.770390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.770890]: Instances: []\n", - "[INFO] [1712690291.771155]: Direct Instances: []\n", - "[INFO] [1712690291.771417]: Inverse Restrictions: []\n", - "[INFO] [1712690291.771655]: -------------------\n", - "[INFO] [1712690291.771888]: SOMA.Purification \n", - "[INFO] [1712690291.772909]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712690291.773222]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Purification}\n", - "[INFO] [1712690291.773487]: Subclasses: []\n", - "[INFO] [1712690291.773787]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.774285]: Instances: []\n", - "[INFO] [1712690291.774554]: Direct Instances: []\n", - "[INFO] [1712690291.774841]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712690291.775089]: -------------------\n", - "[INFO] [1712690291.775326]: SOMA.Cleanliness \n", - "[INFO] [1712690291.775566]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712690291.775838]: Ancestors: {DUL.Entity, SOMA.SocialQuality, SOMA.Cleanliness, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.776088]: Subclasses: []\n", - "[INFO] [1712690291.776380]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712690291.776867]: Instances: []\n", - "[INFO] [1712690291.777141]: Direct Instances: []\n", - "[INFO] [1712690291.777476]: Inverse Restrictions: []\n", - "[INFO] [1712690291.777721]: -------------------\n", - "[INFO] [1712690291.777956]: SOMA.SocialQuality \n", - "[INFO] [1712690291.778194]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712690291.778431]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.SocialQuality, owl.Thing}\n", - "[INFO] [1712690291.778701]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712690291.778999]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.779498]: Instances: []\n", - "[INFO] [1712690291.779765]: Direct Instances: []\n", - "[INFO] [1712690291.780025]: Inverse Restrictions: []\n", - "[INFO] [1712690291.780272]: -------------------\n", - "[INFO] [1712690291.780509]: SOMA.Client-Server_Specification \n", - "[INFO] [1712690291.781519]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712690291.781824]: Ancestors: {DUL.Entity, SOMA.InterfaceSpecification, DUL.SocialObject, SOMA.Client-Server_Specification, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690291.782109]: Subclasses: []\n", - "[INFO] [1712690291.782416]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesRole, rdf-schema.label]\n", - "[INFO] [1712690291.782937]: Instances: []\n", - "[INFO] [1712690291.783227]: Direct Instances: []\n", - "[INFO] [1712690291.783595]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712690291.783848]: -------------------\n", - "[INFO] [1712690291.784101]: SOMA.ClientRole \n", - "[INFO] [1712690291.784356]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712690291.785616]: Ancestors: {SOMA.ClientRole, DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690291.785893]: Subclasses: []\n", - "[INFO] [1712690291.786201]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.786712]: Instances: []\n", - "[INFO] [1712690291.786978]: Direct Instances: []\n", - "[INFO] [1712690291.787283]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712690291.787532]: -------------------\n", - "[INFO] [1712690291.787776]: SOMA.ServerRole \n", - "[INFO] [1712690291.788025]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712690291.788311]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.ServerRole, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690291.788576]: Subclasses: []\n", - "[INFO] [1712690291.788880]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.789372]: Instances: []\n", - "[INFO] [1712690291.789643]: Direct Instances: []\n", - "[INFO] [1712690291.790230]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712690291.790602]: -------------------\n", - "[INFO] [1712690291.790860]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712690291.791108]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690291.791363]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690291.791653]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712690291.791988]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690291.792504]: Instances: []\n", - "[INFO] [1712690291.792781]: Direct Instances: []\n", - "[INFO] [1712690291.793052]: Inverse Restrictions: []\n", - "[INFO] [1712690291.793304]: -------------------\n", - "[INFO] [1712690291.793551]: SOMA.Closing \n", - "[INFO] [1712690291.793817]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690291.794087]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, SOMA.Closing, owl.Thing}\n", - "[INFO] [1712690291.794360]: Subclasses: []\n", - "[INFO] [1712690291.794672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.795161]: Instances: []\n", - "[INFO] [1712690291.795419]: Direct Instances: []\n", - "[INFO] [1712690291.795668]: Inverse Restrictions: []\n", - "[INFO] [1712690291.795917]: -------------------\n", - "[INFO] [1712690291.796162]: SOMA.Delivering \n", - "[INFO] [1712690291.796426]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712690291.796717]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Delivering, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.797083]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712690291.797471]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690291.798007]: Instances: []\n", - "[INFO] [1712690291.798294]: Direct Instances: []\n", - "[INFO] [1712690291.798585]: Inverse Restrictions: []\n", - "[INFO] [1712690291.798855]: -------------------\n", - "[INFO] [1712690291.799116]: SOMA.Fetching \n", - "[INFO] [1712690291.799372]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712690291.799663]: Ancestors: {DUL.Entity, SOMA.Fetching, DUL.Concept, DUL.SocialObject, SOMA.PhysicalAcquiring, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690291.799927]: Subclasses: []\n", - "[INFO] [1712690291.800294]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.800816]: Instances: []\n", - "[INFO] [1712690291.801093]: Direct Instances: []\n", - "[INFO] [1712690291.801364]: Inverse Restrictions: []\n", - "[INFO] [1712690291.801619]: -------------------\n", - "[INFO] [1712690291.801887]: SOMA.Lifting \n", - "[INFO] [1712690291.802147]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690291.802435]: Ancestors: {DUL.Entity, SOMA.Lifting, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.802705]: Subclasses: []\n", - "[INFO] [1712690291.803027]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.803575]: Instances: []\n", - "[INFO] [1712690291.803892]: Direct Instances: []\n", - "[INFO] [1712690291.804187]: Inverse Restrictions: []\n", - "[INFO] [1712690291.804458]: -------------------\n", - "[INFO] [1712690291.804724]: SOMA.Opening \n", - "[INFO] [1712690291.805000]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690291.805288]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Opening}\n", - "[INFO] [1712690291.805569]: Subclasses: []\n", - "[INFO] [1712690291.805896]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.806404]: Instances: []\n", - "[INFO] [1712690291.806683]: Direct Instances: []\n", - "[INFO] [1712690291.806952]: Inverse Restrictions: []\n", - "[INFO] [1712690291.807217]: -------------------\n", - "[INFO] [1712690291.807474]: SOMA.Pulling \n", - "[INFO] [1712690291.807726]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690291.808002]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pulling}\n", - "[INFO] [1712690291.808261]: Subclasses: []\n", - "[INFO] [1712690291.808574]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.809104]: Instances: []\n", - "[INFO] [1712690291.809405]: Direct Instances: []\n", - "[INFO] [1712690291.809705]: Inverse Restrictions: []\n", - "[INFO] [1712690291.809987]: -------------------\n", - "[INFO] [1712690291.810277]: SOMA.Pushing \n", - "[INFO] [1712690291.810568]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690291.810907]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, SOMA.Pushing, SOMA.PhysicalTask, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.811245]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712690291.811648]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.812312]: Instances: []\n", - "[INFO] [1712690291.812611]: Direct Instances: []\n", - "[INFO] [1712690291.812897]: Inverse Restrictions: []\n", - "[INFO] [1712690291.813157]: -------------------\n", - "[INFO] [1712690291.813410]: SOMA.Squeezing \n", - "[INFO] [1712690291.813679]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690291.813962]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Squeezing, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690291.814241]: Subclasses: []\n", - "[INFO] [1712690291.814569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.815076]: Instances: []\n", - "[INFO] [1712690291.815350]: Direct Instances: []\n", - "[INFO] [1712690291.815621]: Inverse Restrictions: []\n", - "[INFO] [1712690291.815888]: -------------------\n", - "[INFO] [1712690291.816145]: SOMA.ClosingDisposition \n", - "[INFO] [1712690291.816396]: Super classes: [SOMA.Linkage]\n", - "[INFO] [1712690291.816687]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Linkage, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.ClosingDisposition}\n", - "[INFO] [1712690291.816972]: Subclasses: []\n", - "[INFO] [1712690291.817294]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.817801]: Instances: []\n", - "[INFO] [1712690291.818076]: Direct Instances: []\n", - "[INFO] [1712690291.818337]: Inverse Restrictions: []\n", - "[INFO] [1712690291.818587]: -------------------\n", - "[INFO] [1712690291.818836]: SOMA.Linkage \n", - "[INFO] [1712690291.819134]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712690291.819409]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Linkage, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.819675]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712690291.819990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.820507]: Instances: []\n", - "[INFO] [1712690291.820791]: Direct Instances: []\n", - "[INFO] [1712690291.821072]: Inverse Restrictions: []\n", - "[INFO] [1712690291.821332]: -------------------\n", - "[INFO] [1712690291.821584]: SOMA.Clumsiness \n", - "[INFO] [1712690291.821830]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712690291.822122]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Clumsiness}\n", - "[INFO] [1712690291.822387]: Subclasses: []\n", - "[INFO] [1712690291.822684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.823190]: Instances: []\n", - "[INFO] [1712690291.823464]: Direct Instances: []\n", - "[INFO] [1712690291.823727]: Inverse Restrictions: []\n", - "[INFO] [1712690291.823976]: -------------------\n", - "[INFO] [1712690291.824221]: SOMA.CoffeeCarafe \n", - "[INFO] [1712690291.824460]: Super classes: [SOMA.Carafe]\n", - "[INFO] [1712690291.824733]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Carafe, owl.Thing, DUL.Object, SOMA.CoffeeCarafe, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.825009]: Subclasses: []\n", - "[INFO] [1712690291.825314]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.825810]: Instances: []\n", - "[INFO] [1712690291.826080]: Direct Instances: []\n", - "[INFO] [1712690291.826337]: Inverse Restrictions: []\n", - "[INFO] [1712690291.826588]: -------------------\n", - "[INFO] [1712690291.826844]: SOMA.CoffeeTable \n", - "[INFO] [1712690291.827093]: Super classes: [SOMA.Table]\n", - "[INFO] [1712690291.827368]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Table, SOMA.CoffeeTable, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.827623]: Subclasses: []\n", - "[INFO] [1712690291.827931]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.828435]: Instances: []\n", - "[INFO] [1712690291.828706]: Direct Instances: []\n", - "[INFO] [1712690291.828970]: Inverse Restrictions: []\n", - "[INFO] [1712690291.829218]: -------------------\n", - "[INFO] [1712690291.829464]: SOMA.CognitiveAgent \n", - "[INFO] [1712690291.829725]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712690291.830021]: Ancestors: {DUL.Entity, SOMA.CognitiveAgent, owl.Thing, DUL.Object, DUL.Agent}\n", - "[INFO] [1712690291.830295]: Subclasses: []\n", - "[INFO] [1712690291.830628]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.831135]: Instances: []\n", - "[INFO] [1712690291.831408]: Direct Instances: []\n", - "[INFO] [1712690291.831678]: Inverse Restrictions: []\n", - "[INFO] [1712690291.831934]: -------------------\n", - "[INFO] [1712690291.832182]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712690291.832429]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712690291.832699]: Ancestors: {DUL.Entity, SOMA.SubCognitiveAgent, owl.Thing, DUL.Object, DUL.Agent}\n", - "[INFO] [1712690291.832973]: Subclasses: []\n", - "[INFO] [1712690291.833287]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.833802]: Instances: []\n", - "[INFO] [1712690291.834069]: Direct Instances: []\n", - "[INFO] [1712690291.834339]: Inverse Restrictions: []\n", - "[INFO] [1712690291.834610]: -------------------\n", - "[INFO] [1712690291.834870]: SOMA.CoilCooktop \n", - "[INFO] [1712690291.835119]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712690291.835399]: Ancestors: {DUL.PhysicalArtifact, SOMA.CoilCooktop, DUL.Entity, DUL.PhysicalBody, SOMA.ElectricCooktop, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.835655]: Subclasses: []\n", - "[INFO] [1712690291.835950]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.836461]: Instances: []\n", - "[INFO] [1712690291.836738]: Direct Instances: []\n", - "[INFO] [1712690291.837011]: Inverse Restrictions: []\n", - "[INFO] [1712690291.837269]: -------------------\n", - "[INFO] [1712690291.837519]: SOMA.Collision \n", - "[INFO] [1712690291.837764]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712690291.838035]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Collision}\n", - "[INFO] [1712690291.838305]: Subclasses: []\n", - "[INFO] [1712690291.838611]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.839104]: Instances: []\n", - "[INFO] [1712690291.839371]: Direct Instances: []\n", - "[INFO] [1712690291.839638]: Inverse Restrictions: []\n", - "[INFO] [1712690291.839891]: -------------------\n", - "[INFO] [1712690291.840136]: SOMA.Extrinsic \n", - "[INFO] [1712690291.840380]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712690291.840627]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.840896]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712690291.841221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.841782]: Instances: []\n", - "[INFO] [1712690291.842056]: Direct Instances: []\n", - "[INFO] [1712690291.842334]: Inverse Restrictions: []\n", - "[INFO] [1712690291.842591]: -------------------\n", - "[INFO] [1712690291.842836]: SOMA.ImperativeClause \n", - "[INFO] [1712690291.843115]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712690291.843406]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, SOMA.ImperativeClause, owl.Thing, DUL.Object, SOMA.ClausalObject}\n", - "[INFO] [1712690291.843674]: Subclasses: []\n", - "[INFO] [1712690291.843984]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.844484]: Instances: []\n", - "[INFO] [1712690291.845137]: Direct Instances: []\n", - "[INFO] [1712690291.845778]: Inverse Restrictions: []\n", - "[INFO] [1712690291.846236]: -------------------\n", - "[INFO] [1712690291.846687]: SOMA.CommitedObject \n", - "[INFO] [1712690291.847130]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712690291.847602]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CommitedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.847994]: Subclasses: []\n", - "[INFO] [1712690291.848486]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.849126]: Instances: []\n", - "[INFO] [1712690291.849675]: Direct Instances: []\n", - "[INFO] [1712690291.850086]: Inverse Restrictions: []\n", - "[INFO] [1712690291.850458]: -------------------\n", - "[INFO] [1712690291.850895]: SOMA.ConnectedObject \n", - "[INFO] [1712690291.851248]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690291.851611]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.851973]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712690291.852386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.853004]: Instances: []\n", - "[INFO] [1712690291.853400]: Direct Instances: []\n", - "[INFO] [1712690291.853868]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712690291.854228]: -------------------\n", - "[INFO] [1712690291.854573]: SOMA.CommunicationAction \n", - "[INFO] [1712690291.854933]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712690291.855304]: Ancestors: {DUL.Entity, DUL.Event, SOMA.CommunicationAction, owl.Thing, DUL.Action}\n", - "[INFO] [1712690291.855644]: Subclasses: []\n", - "[INFO] [1712690291.856035]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690291.856635]: Instances: []\n", - "[INFO] [1712690291.857029]: Direct Instances: []\n", - "[INFO] [1712690291.858163]: Inverse Restrictions: []\n", - "[INFO] [1712690291.858525]: -------------------\n", - "[INFO] [1712690291.858867]: SOMA.LinguisticObject \n", - "[INFO] [1712690291.859210]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712690291.859557]: Ancestors: {DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690291.859897]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712690291.860276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690291.860864]: Instances: []\n", - "[INFO] [1712690291.861250]: Direct Instances: []\n", - "[INFO] [1712690291.861645]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712690291.861980]: -------------------\n", - "[INFO] [1712690291.862316]: SOMA.CommunicationReport \n", - "[INFO] [1712690291.862644]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690291.863009]: Ancestors: {DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.863358]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712690291.863741]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.864319]: Instances: []\n", - "[INFO] [1712690291.864659]: Direct Instances: []\n", - "[INFO] [1712690291.865004]: Inverse Restrictions: []\n", - "[INFO] [1712690291.865344]: -------------------\n", - "[INFO] [1712690291.865673]: SOMA.Receiver \n", - "[INFO] [1712690291.866004]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712690291.866369]: Ancestors: {SOMA.ExperiencerRole, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.Receiver, SOMA.PerformerRole, DUL.Role}\n", - "[INFO] [1712690291.866721]: Subclasses: []\n", - "[INFO] [1712690291.867113]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", - "[INFO] [1712690291.867692]: Instances: []\n", - "[INFO] [1712690291.868225]: Direct Instances: []\n", - "[INFO] [1712690291.868670]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690291.869029]: -------------------\n", - "[INFO] [1712690291.869379]: SOMA.Sender \n", - "[INFO] [1712690291.869723]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712690291.870083]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Sender, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", - "[INFO] [1712690291.870436]: Subclasses: []\n", - "[INFO] [1712690291.870832]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", - "[INFO] [1712690291.871417]: Instances: []\n", - "[INFO] [1712690291.871771]: Direct Instances: []\n", - "[INFO] [1712690291.872196]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690291.872549]: -------------------\n", - "[INFO] [1712690291.872900]: SOMA.CommunicationTopic \n", - "[INFO] [1712690291.874032]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712690291.874447]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.874815]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690291.875212]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.875822]: Instances: []\n", - "[INFO] [1712690291.876200]: Direct Instances: []\n", - "[INFO] [1712690291.876552]: Inverse Restrictions: []\n", - "[INFO] [1712690291.876896]: -------------------\n", - "[INFO] [1712690291.877255]: SOMA.ResourceRole \n", - "[INFO] [1712690291.877593]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690291.877941]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.878307]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712690291.878696]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.879342]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690291.879708]: Direct Instances: []\n", - "[INFO] [1712690291.880060]: Inverse Restrictions: []\n", - "[INFO] [1712690291.880391]: -------------------\n", - "[INFO] [1712690291.880725]: SOMA.Compartment \n", - "[INFO] [1712690291.881104]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690291.881419]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalObject}\n", - "[INFO] [1712690291.881716]: Subclasses: [SOMA.FreezerCompartment]\n", - "[INFO] [1712690291.882030]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.882556]: Instances: []\n", - "[INFO] [1712690291.882852]: Direct Instances: []\n", - "[INFO] [1712690291.883120]: Inverse Restrictions: []\n", - "[INFO] [1712690291.883369]: -------------------\n", - "[INFO] [1712690291.883633]: SOMA.Composing \n", - "[INFO] [1712690291.883890]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712690291.884165]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Composing}\n", - "[INFO] [1712690291.884420]: Subclasses: []\n", - "[INFO] [1712690291.884720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.885265]: Instances: []\n", - "[INFO] [1712690291.885587]: Direct Instances: []\n", - "[INFO] [1712690291.885914]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712690291.886174]: -------------------\n", - "[INFO] [1712690291.886426]: SOMA.Computer_Language \n", - "[INFO] [1712690291.886681]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712690291.886949]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690291.887217]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712690291.887518]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.888029]: Instances: []\n", - "[INFO] [1712690291.888307]: Direct Instances: []\n", - "[INFO] [1712690291.888577]: Inverse Restrictions: []\n", - "[INFO] [1712690291.888832]: -------------------\n", - "[INFO] [1712690291.889084]: SOMA.FormalLanguage \n", - "[INFO] [1712690291.889337]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712690291.889594]: Ancestors: {DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690291.889867]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690291.890175]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.890702]: Instances: []\n", - "[INFO] [1712690291.890982]: Direct Instances: []\n", - "[INFO] [1712690291.891304]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712690291.891563]: -------------------\n", - "[INFO] [1712690291.891821]: SOMA.Computer_Program \n", - "[INFO] [1712690291.892261]: Super classes: [owl.Thing]\n", - "[INFO] [1712690291.896679]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712690291.897184]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712690291.897709]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", - "[INFO] [1712690291.898540]: Instances: []\n", - "[INFO] [1712690291.898944]: Direct Instances: []\n", - "[INFO] [1712690291.902585]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712690291.903024]: -------------------\n", - "[INFO] [1712690291.903383]: SOMA.Programming_Language \n", - "[INFO] [1712690291.903760]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712690291.904233]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.Programming_Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690291.904632]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712690291.905172]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.905808]: Instances: []\n", - "[INFO] [1712690291.906191]: Direct Instances: []\n", - "[INFO] [1712690291.906628]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712690291.906988]: -------------------\n", - "[INFO] [1712690291.907271]: SOMA.Conclusion \n", - "[INFO] [1712690291.907532]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712690291.907835]: Ancestors: {SOMA.Conclusion, DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.CreatedObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.908098]: Subclasses: []\n", - "[INFO] [1712690291.908396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.908911]: Instances: []\n", - "[INFO] [1712690291.909193]: Direct Instances: []\n", - "[INFO] [1712690291.910256]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690291.910513]: -------------------\n", - "[INFO] [1712690291.910765]: SOMA.CreatedObject \n", - "[INFO] [1712690291.911016]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690291.911269]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CreatedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.911522]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712690291.911813]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.912325]: Instances: []\n", - "[INFO] [1712690291.912594]: Direct Instances: []\n", - "[INFO] [1712690291.912978]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712690291.913254]: -------------------\n", - "[INFO] [1712690291.913507]: SOMA.Knowledge \n", - "[INFO] [1712690291.913748]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712690291.913996]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.914260]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712690291.914556]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.915069]: Instances: []\n", - "[INFO] [1712690291.915343]: Direct Instances: []\n", - "[INFO] [1712690291.916520]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712690291.916780]: -------------------\n", - "[INFO] [1712690291.917040]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712690291.917287]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712690291.917551]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, SOMA.ConditionalSuccedence, DUL.Description, SOMA.Succedence}\n", - "[INFO] [1712690291.917805]: Subclasses: []\n", - "[INFO] [1712690291.918110]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.918608]: Instances: []\n", - "[INFO] [1712690291.918866]: Direct Instances: []\n", - "[INFO] [1712690291.919115]: Inverse Restrictions: []\n", - "[INFO] [1712690291.919362]: -------------------\n", - "[INFO] [1712690291.919600]: SOMA.Configuration \n", - "[INFO] [1712690291.919842]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712690291.920099]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Configuration, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690291.920339]: Subclasses: []\n", - "[INFO] [1712690291.920641]: Properties: [DUL.describes, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.921135]: Instances: []\n", - "[INFO] [1712690291.921390]: Direct Instances: []\n", - "[INFO] [1712690291.921635]: Inverse Restrictions: []\n", - "[INFO] [1712690291.921863]: -------------------\n", - "[INFO] [1712690291.922103]: SOMA.Connectivity \n", - "[INFO] [1712690291.922348]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712690291.922587]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.922832]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712690291.923116]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.923624]: Instances: []\n", - "[INFO] [1712690291.923885]: Direct Instances: []\n", - "[INFO] [1712690291.924179]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712690291.924415]: -------------------\n", - "[INFO] [1712690291.924648]: SOMA.ContactState \n", - "[INFO] [1712690291.924917]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712690291.925197]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.StateType, SOMA.ContactState, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.925451]: Subclasses: []\n", - "[INFO] [1712690291.925741]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.926250]: Instances: []\n", - "[INFO] [1712690291.926519]: Direct Instances: []\n", - "[INFO] [1712690291.926780]: Inverse Restrictions: []\n", - "[INFO] [1712690291.927021]: -------------------\n", - "[INFO] [1712690291.927255]: SOMA.Container \n", - "[INFO] [1712690291.927484]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712690291.927755]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, SOMA.Container, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.928011]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", - "[INFO] [1712690291.928299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.928802]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690291.929072]: Direct Instances: []\n", - "[INFO] [1712690291.929794]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712690291.930056]: -------------------\n", - "[INFO] [1712690291.930303]: SOMA.Containment \n", - "[INFO] [1712690291.930579]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712690291.930868]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.931134]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712690291.931436]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.931926]: Instances: []\n", - "[INFO] [1712690291.932211]: Direct Instances: []\n", - "[INFO] [1712690291.932622]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712690291.932884]: -------------------\n", - "[INFO] [1712690291.933124]: SOMA.IncludedObject \n", - "[INFO] [1712690291.933360]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690291.933644]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.933904]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712690291.934194]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.934683]: Instances: []\n", - "[INFO] [1712690291.934950]: Direct Instances: []\n", - "[INFO] [1712690291.935241]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712690291.935483]: -------------------\n", - "[INFO] [1712690291.935719]: SOMA.ContainmentState \n", - "[INFO] [1712690291.936731]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712690291.937050]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing, SOMA.ContainmentState}\n", - "[INFO] [1712690291.937326]: Subclasses: []\n", - "[INFO] [1712690291.937634]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690291.938139]: Instances: []\n", - "[INFO] [1712690291.938408]: Direct Instances: []\n", - "[INFO] [1712690291.938665]: Inverse Restrictions: []\n", - "[INFO] [1712690291.938903]: -------------------\n", - "[INFO] [1712690291.939137]: SOMA.FunctionalControl \n", - "[INFO] [1712690291.939394]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712690291.939662]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.939929]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712690291.940229]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690291.940738]: Instances: []\n", - "[INFO] [1712690291.941018]: Direct Instances: []\n", - "[INFO] [1712690291.941276]: Inverse Restrictions: []\n", - "[INFO] [1712690291.941517]: -------------------\n", - "[INFO] [1712690291.941751]: SOMA.ContainmentTheory \n", - "[INFO] [1712690291.942000]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712690291.942297]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, SOMA.ContainmentTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690291.942558]: Subclasses: []\n", - "[INFO] [1712690291.942855]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.943347]: Instances: []\n", - "[INFO] [1712690291.943624]: Direct Instances: []\n", - "[INFO] [1712690291.943885]: Inverse Restrictions: []\n", - "[INFO] [1712690291.944125]: -------------------\n", - "[INFO] [1712690291.944364]: SOMA.ControlTheory \n", - "[INFO] [1712690291.944608]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712690291.944875]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690291.945141]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712690291.945434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.945930]: Instances: []\n", - "[INFO] [1712690291.946204]: Direct Instances: []\n", - "[INFO] [1712690291.946464]: Inverse Restrictions: []\n", - "[INFO] [1712690291.946717]: -------------------\n", - "[INFO] [1712690291.946961]: SOMA.ContinuousJoint \n", - "[INFO] [1712690291.947205]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712690291.947485]: Ancestors: {DUL.Entity, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject, SOMA.ContinuousJoint}\n", - "[INFO] [1712690291.947753]: Subclasses: []\n", - "[INFO] [1712690291.948050]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.948545]: Instances: []\n", - "[INFO] [1712690291.948804]: Direct Instances: []\n", - "[INFO] [1712690291.949064]: Inverse Restrictions: []\n", - "[INFO] [1712690291.949316]: -------------------\n", - "[INFO] [1712690291.949561]: SOMA.HingeJoint \n", - "[INFO] [1712690291.949796]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712690291.950043]: Ancestors: {DUL.Entity, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690291.950308]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712690291.950603]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.951100]: Instances: []\n", - "[INFO] [1712690291.951352]: Direct Instances: []\n", - "[INFO] [1712690291.951612]: Inverse Restrictions: []\n", - "[INFO] [1712690291.951854]: -------------------\n", - "[INFO] [1712690291.952098]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712690291.952360]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712690291.952632]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690291.952895]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712690291.953196]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.953690]: Instances: []\n", - "[INFO] [1712690291.953968]: Direct Instances: []\n", - "[INFO] [1712690291.954233]: Inverse Restrictions: []\n", - "[INFO] [1712690291.954482]: -------------------\n", - "[INFO] [1712690291.954723]: SOMA.Cooktop \n", - "[INFO] [1712690291.954959]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690291.955204]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.955469]: Subclasses: [SOMA.ElectricCooktop, SOMA.GasCooktop]\n", - "[INFO] [1712690291.955764]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.956268]: Instances: []\n", - "[INFO] [1712690291.956536]: Direct Instances: []\n", - "[INFO] [1712690291.956800]: Inverse Restrictions: []\n", - "[INFO] [1712690291.957057]: -------------------\n", - "[INFO] [1712690291.957295]: SOMA.Countertop \n", - "[INFO] [1712690291.957524]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690291.957808]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Countertop, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.958074]: Subclasses: []\n", - "[INFO] [1712690291.958364]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.958855]: Instances: []\n", - "[INFO] [1712690291.959117]: Direct Instances: []\n", - "[INFO] [1712690291.959373]: Inverse Restrictions: []\n", - "[INFO] [1712690291.959616]: -------------------\n", - "[INFO] [1712690291.959851]: SOMA.Cover \n", - "[INFO] [1712690291.960082]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712690291.960346]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Cover, DUL.Role}\n", - "[INFO] [1712690291.960611]: Subclasses: []\n", - "[INFO] [1712690291.960908]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.961405]: Instances: []\n", - "[INFO] [1712690291.961679]: Direct Instances: []\n", - "[INFO] [1712690291.961987]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712690291.962235]: -------------------\n", - "[INFO] [1712690291.962474]: SOMA.Coverage \n", - "[INFO] [1712690291.962732]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712690291.963023]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Coverage, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.963278]: Subclasses: []\n", - "[INFO] [1712690291.963577]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.964069]: Instances: []\n", - "[INFO] [1712690291.964339]: Direct Instances: []\n", - "[INFO] [1712690291.964599]: Inverse Restrictions: []\n", - "[INFO] [1712690291.964844]: -------------------\n", - "[INFO] [1712690291.965085]: SOMA.CoveredObject \n", - "[INFO] [1712690291.965338]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712690291.965609]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CoveredObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690291.965863]: Subclasses: []\n", - "[INFO] [1712690291.966154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.966651]: Instances: []\n", - "[INFO] [1712690291.966921]: Direct Instances: []\n", - "[INFO] [1712690291.967213]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712690291.967456]: -------------------\n", - "[INFO] [1712690291.967692]: SOMA.CoverageTheory \n", - "[INFO] [1712690291.967936]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712690291.968207]: Ancestors: {DUL.Entity, DUL.Description, SOMA.CoverageTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690291.968461]: Subclasses: []\n", - "[INFO] [1712690291.968753]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.969253]: Instances: []\n", - "[INFO] [1712690291.969524]: Direct Instances: []\n", - "[INFO] [1712690291.969779]: Inverse Restrictions: []\n", - "[INFO] [1712690291.970016]: -------------------\n", - "[INFO] [1712690291.970251]: SOMA.CoveringTheory \n", - "[INFO] [1712690291.970489]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712690291.970771]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.CoveringTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690291.971030]: Subclasses: []\n", - "[INFO] [1712690291.971324]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.971806]: Instances: []\n", - "[INFO] [1712690291.972071]: Direct Instances: []\n", - "[INFO] [1712690291.972327]: Inverse Restrictions: []\n", - "[INFO] [1712690291.972574]: -------------------\n", - "[INFO] [1712690291.972812]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712690291.973051]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712690291.973302]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690291.973564]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712690291.973856]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.974358]: Instances: []\n", - "[INFO] [1712690291.974627]: Direct Instances: []\n", - "[INFO] [1712690291.974889]: Inverse Restrictions: []\n", - "[INFO] [1712690291.975131]: -------------------\n", - "[INFO] [1712690291.975369]: SOMA.CrackingTheory \n", - "[INFO] [1712690291.975611]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712690291.975885]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.CrackingTheory, DUL.Description, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690291.976146]: Subclasses: []\n", - "[INFO] [1712690291.976449]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.976945]: Instances: []\n", - "[INFO] [1712690291.977202]: Direct Instances: []\n", - "[INFO] [1712690291.977470]: Inverse Restrictions: []\n", - "[INFO] [1712690291.977716]: -------------------\n", - "[INFO] [1712690291.977955]: SOMA.Creation \n", - "[INFO] [1712690291.978194]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712690291.978466]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Creation, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690291.978729]: Subclasses: []\n", - "[INFO] [1712690291.979048]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690291.979550]: Instances: []\n", - "[INFO] [1712690291.979806]: Direct Instances: []\n", - "[INFO] [1712690291.980057]: Inverse Restrictions: []\n", - "[INFO] [1712690291.980307]: -------------------\n", - "[INFO] [1712690291.980546]: SOMA.Tableware \n", - "[INFO] [1712690291.980787]: Super classes: [SOMA.DesignedTool]\n", - "[INFO] [1712690291.981041]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690291.981308]: Subclasses: [SOMA.Crockery, SOMA.Cutlery]\n", - "[INFO] [1712690291.981599]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690291.982120]: Instances: []\n", - "[INFO] [1712690291.982398]: Direct Instances: []\n", - "[INFO] [1712690291.982674]: Inverse Restrictions: []\n", - "[INFO] [1712690291.982922]: -------------------\n", - "[INFO] [1712690291.983164]: SOMA.Insertion \n", - "[INFO] [1712690291.983429]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712690291.983724]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Insertion, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690291.983984]: Subclasses: []\n", - "[INFO] [1712690291.984288]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.984784]: Instances: []\n", - "[INFO] [1712690291.985066]: Direct Instances: []\n", - "[INFO] [1712690291.985609]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712690291.985870]: -------------------\n", - "[INFO] [1712690291.986112]: SOMA.Cup \n", - "[INFO] [1712690291.986366]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712690291.986660]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedTool, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Cup, DUL.PhysicalObject}\n", - "[INFO] [1712690291.986919]: Subclasses: []\n", - "[INFO] [1712690291.987212]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712690291.987700]: Instances: []\n", - "[INFO] [1712690291.987970]: Direct Instances: []\n", - "[INFO] [1712690291.988224]: Inverse Restrictions: []\n", - "[INFO] [1712690291.988467]: -------------------\n", - "[INFO] [1712690291.988706]: SOMA.DesignedHandle \n", - "[INFO] [1712690291.989162]: Super classes: [SOMA.DesignedComponent, SOMA.hasDisposition.some(SOMA.Graspability)]\n", - "[INFO] [1712690291.989621]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.DesignedHandle, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.989928]: Subclasses: []\n", - "[INFO] [1712690291.990259]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690291.990775]: Instances: []\n", - "[INFO] [1712690291.991045]: Direct Instances: []\n", - "[INFO] [1712690291.991397]: Inverse Restrictions: [SOMA.Spoon, SOMA.Spatula, SOMA.Knife, SOMA.Fork, SOMA.Cup]\n", - "[INFO] [1712690291.991887]: -------------------\n", - "[INFO] [1712690291.992173]: SOMA.Cupboard \n", - "[INFO] [1712690291.992440]: Super classes: [SOMA.DesignedContainer, SOMA.DesignedFurniture, SOMA.hasPhysicalComponent.some(SOMA.Rack)]\n", - "[INFO] [1712690291.992718]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cupboard, owl.Thing, DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.992984]: Subclasses: [SOMA.KitchenCabinet, SOMA.Wardrobe]\n", - "[INFO] [1712690291.993281]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712690291.993796]: Instances: []\n", - "[INFO] [1712690291.994064]: Direct Instances: []\n", - "[INFO] [1712690291.994325]: Inverse Restrictions: []\n", - "[INFO] [1712690291.994568]: -------------------\n", - "[INFO] [1712690291.994811]: SOMA.DesignedFurniture \n", - "[INFO] [1712690291.995057]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712690291.995308]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690291.995564]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712690291.995895]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690291.996416]: Instances: []\n", - "[INFO] [1712690291.996686]: Direct Instances: []\n", - "[INFO] [1712690291.996950]: Inverse Restrictions: []\n", - "[INFO] [1712690291.997195]: -------------------\n", - "[INFO] [1712690291.997439]: SOMA.Rack \n", - "[INFO] [1712690291.997691]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690291.997970]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Rack, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690291.998220]: Subclasses: []\n", - "[INFO] [1712690291.998514]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690291.999022]: Instances: []\n", - "[INFO] [1712690291.999299]: Direct Instances: []\n", - "[INFO] [1712690291.999579]: Inverse Restrictions: [SOMA.Cupboard]\n", - "[INFO] [1712690291.999841]: -------------------\n", - "[INFO] [1712690292.000086]: SOMA.Cutlery \n", - "[INFO] [1712690292.000329]: Super classes: [SOMA.Tableware]\n", - "[INFO] [1712690292.000599]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.000863]: Subclasses: [SOMA.Fork, SOMA.Spatula, SOMA.Spoon]\n", - "[INFO] [1712690292.001167]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690292.001680]: Instances: []\n", - "[INFO] [1712690292.001941]: Direct Instances: []\n", - "[INFO] [1712690292.002193]: Inverse Restrictions: []\n", - "[INFO] [1712690292.002439]: -------------------\n", - "[INFO] [1712690292.002681]: SOMA.Cuttability \n", - "[INFO] [1712690292.002925]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712690292.003186]: Ancestors: {DUL.Entity, SOMA.Cuttability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690292.003447]: Subclasses: []\n", - "[INFO] [1712690292.003745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.004235]: Instances: []\n", - "[INFO] [1712690292.004488]: Direct Instances: []\n", - "[INFO] [1712690292.004739]: Inverse Restrictions: []\n", - "[INFO] [1712690292.004993]: -------------------\n", - "[INFO] [1712690292.005234]: SOMA.Tool \n", - "[INFO] [1712690292.005470]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712690292.005720]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Tool, DUL.Role}\n", - "[INFO] [1712690292.005984]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712690292.006277]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.006772]: Instances: []\n", - "[INFO] [1712690292.007030]: Direct Instances: []\n", - "[INFO] [1712690292.007330]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712690292.007579]: -------------------\n", - "[INFO] [1712690292.007814]: SOMA.Cutting \n", - "[INFO] [1712690292.008050]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712690292.008311]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting}\n", - "[INFO] [1712690292.008582]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712690292.008884]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.009387]: Instances: []\n", - "[INFO] [1712690292.009645]: Direct Instances: []\n", - "[INFO] [1712690292.009894]: Inverse Restrictions: []\n", - "[INFO] [1712690292.010145]: -------------------\n", - "[INFO] [1712690292.010386]: SOMA.CuttingTool \n", - "[INFO] [1712690292.010638]: Super classes: [SOMA.DesignedTool, SOMA.hasDisposition.some(SOMA.Shaping)]\n", - "[INFO] [1712690292.010887]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.CuttingTool, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.011137]: Subclasses: [SOMA.Knife]\n", - "[INFO] [1712690292.011435]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition]\n", - "[INFO] [1712690292.011935]: Instances: []\n", - "[INFO] [1712690292.012191]: Direct Instances: []\n", - "[INFO] [1712690292.012433]: Inverse Restrictions: []\n", - "[INFO] [1712690292.012674]: -------------------\n", - "[INFO] [1712690292.012928]: SOMA.DesignedTool \n", - "[INFO] [1712690292.013182]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712690292.013436]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.013688]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712690292.013980]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.014524]: Instances: []\n", - "[INFO] [1712690292.014793]: Direct Instances: []\n", - "[INFO] [1712690292.015049]: Inverse Restrictions: []\n", - "[INFO] [1712690292.015291]: -------------------\n", - "[INFO] [1712690292.015532]: SOMA.Shaping \n", - "[INFO] [1712690292.015807]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712690292.016095]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Shaping}\n", - "[INFO] [1712690292.016352]: Subclasses: []\n", - "[INFO] [1712690292.016656]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.017160]: Instances: []\n", - "[INFO] [1712690292.017427]: Direct Instances: []\n", - "[INFO] [1712690292.017710]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712690292.017956]: -------------------\n", - "[INFO] [1712690292.018193]: SOMA.Database \n", - "[INFO] [1712690292.018428]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690292.018688]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, SOMA.Database, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.018943]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712690292.019246]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.019742]: Instances: []\n", - "[INFO] [1712690292.020002]: Direct Instances: []\n", - "[INFO] [1712690292.020251]: Inverse Restrictions: []\n", - "[INFO] [1712690292.020505]: -------------------\n", - "[INFO] [1712690292.020747]: SOMA.SoftwareRole \n", - "[INFO] [1712690292.021018]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712690292.021283]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.021554]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712690292.021857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.022378]: Instances: []\n", - "[INFO] [1712690292.022647]: Direct Instances: []\n", - "[INFO] [1712690292.022945]: Inverse Restrictions: []\n", - "[INFO] [1712690292.023192]: -------------------\n", - "[INFO] [1712690292.023429]: SOMA.Deciding \n", - "[INFO] [1712690292.023661]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690292.023918]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712690292.024184]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712690292.024482]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690292.024990]: Instances: []\n", - "[INFO] [1712690292.025266]: Direct Instances: []\n", - "[INFO] [1712690292.025530]: Inverse Restrictions: []\n", - "[INFO] [1712690292.025768]: -------------------\n", - "[INFO] [1712690292.026003]: SOMA.DerivingInformation \n", - "[INFO] [1712690292.026247]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712690292.026484]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.026751]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712690292.027048]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.label]\n", - "[INFO] [1712690292.027565]: Instances: []\n", - "[INFO] [1712690292.027843]: Direct Instances: []\n", - "[INFO] [1712690292.028105]: Inverse Restrictions: []\n", - "[INFO] [1712690292.028349]: -------------------\n", - "[INFO] [1712690292.028585]: SOMA.DeductiveReasoning \n", - "[INFO] [1712690292.028838]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712690292.029129]: Ancestors: {SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.DeductiveReasoning, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.029392]: Subclasses: []\n", - "[INFO] [1712690292.029685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.030193]: Instances: []\n", - "[INFO] [1712690292.030493]: Direct Instances: []\n", - "[INFO] [1712690292.030761]: Inverse Restrictions: []\n", - "[INFO] [1712690292.031012]: -------------------\n", - "[INFO] [1712690292.031248]: SOMA.Deformation \n", - "[INFO] [1712690292.031506]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712690292.031773]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Deformation, owl.Thing, SOMA.Alteration}\n", - "[INFO] [1712690292.032032]: Subclasses: []\n", - "[INFO] [1712690292.032358]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.032875]: Instances: []\n", - "[INFO] [1712690292.033146]: Direct Instances: []\n", - "[INFO] [1712690292.033406]: Inverse Restrictions: []\n", - "[INFO] [1712690292.033646]: -------------------\n", - "[INFO] [1712690292.033887]: SOMA.ShapedObject \n", - "[INFO] [1712690292.034155]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712690292.034435]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.ShapedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", - "[INFO] [1712690292.034694]: Subclasses: []\n", - "[INFO] [1712690292.034997]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTriggerDefinedIn]\n", - "[INFO] [1712690292.035486]: Instances: []\n", - "[INFO] [1712690292.035760]: Direct Instances: []\n", - "[INFO] [1712690292.036080]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712690292.036329]: -------------------\n", - "[INFO] [1712690292.036570]: SOMA.FluidFlow \n", - "[INFO] [1712690292.036844]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712690292.037148]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.FluidFlow, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.037402]: Subclasses: []\n", - "[INFO] [1712690292.037695]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.038184]: Instances: []\n", - "[INFO] [1712690292.038453]: Direct Instances: []\n", - "[INFO] [1712690292.038708]: Inverse Restrictions: []\n", - "[INFO] [1712690292.038951]: -------------------\n", - "[INFO] [1712690292.039186]: SOMA.Shifting \n", - "[INFO] [1712690292.039454]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712690292.039742]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Shifting, owl.Thing}\n", - "[INFO] [1712690292.039998]: Subclasses: []\n", - "[INFO] [1712690292.040291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.040791]: Instances: []\n", - "[INFO] [1712690292.041072]: Direct Instances: []\n", - "[INFO] [1712690292.041407]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712690292.041659]: -------------------\n", - "[INFO] [1712690292.041901]: SOMA.DependentPlace \n", - "[INFO] [1712690292.042140]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712690292.042403]: Ancestors: {DUL.Entity, SOMA.DependentPlace, SOMA.Feature, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.042662]: Subclasses: []\n", - "[INFO] [1712690292.042958]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.043451]: Instances: []\n", - "[INFO] [1712690292.043709]: Direct Instances: []\n", - "[INFO] [1712690292.043951]: Inverse Restrictions: []\n", - "[INFO] [1712690292.044188]: -------------------\n", - "[INFO] [1712690292.044425]: SOMA.Deposit \n", - "[INFO] [1712690292.044666]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712690292.044939]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, SOMA.Deposit, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.045196]: Subclasses: []\n", - "[INFO] [1712690292.045488]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.045984]: Instances: []\n", - "[INFO] [1712690292.046250]: Direct Instances: []\n", - "[INFO] [1712690292.046546]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712690292.046800]: -------------------\n", - "[INFO] [1712690292.047041]: SOMA.DepositedObject \n", - "[INFO] [1712690292.047273]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690292.047551]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.DepositedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.047811]: Subclasses: []\n", - "[INFO] [1712690292.048108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.048603]: Instances: []\n", - "[INFO] [1712690292.048868]: Direct Instances: []\n", - "[INFO] [1712690292.049172]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712690292.049425]: -------------------\n", - "[INFO] [1712690292.049667]: SOMA.InformationAcquisition \n", - "[INFO] [1712690292.049904]: Super classes: [owl.Thing]\n", - "[INFO] [1712690292.050143]: Ancestors: {owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.050414]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712690292.050720]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.051252]: Instances: []\n", - "[INFO] [1712690292.051521]: Direct Instances: []\n", - "[INFO] [1712690292.051814]: Inverse Restrictions: []\n", - "[INFO] [1712690292.052060]: -------------------\n", - "[INFO] [1712690292.052297]: SOMA.Premise \n", - "[INFO] [1712690292.052532]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712690292.052800]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Premise, DUL.Role}\n", - "[INFO] [1712690292.053089]: Subclasses: []\n", - "[INFO] [1712690292.053406]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.053900]: Instances: []\n", - "[INFO] [1712690292.054161]: Direct Instances: []\n", - "[INFO] [1712690292.054457]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690292.054715]: -------------------\n", - "[INFO] [1712690292.054962]: SOMA.FunctionalPart \n", - "[INFO] [1712690292.055608]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712690292.055888]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690292.056154]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712690292.056451]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.056998]: Instances: []\n", - "[INFO] [1712690292.057278]: Direct Instances: []\n", - "[INFO] [1712690292.057549]: Inverse Restrictions: []\n", - "[INFO] [1712690292.057797]: -------------------\n", - "[INFO] [1712690292.058040]: SOMA.Graspability \n", - "[INFO] [1712690292.058275]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712690292.058555]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Graspability}\n", - "[INFO] [1712690292.058810]: Subclasses: []\n", - "[INFO] [1712690292.059103]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.059591]: Instances: []\n", - "[INFO] [1712690292.059860]: Direct Instances: []\n", - "[INFO] [1712690292.060141]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712690292.060389]: -------------------\n", - "[INFO] [1712690292.060630]: SOMA.DesignedSpade \n", - "[INFO] [1712690292.060872]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690292.061147]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.DesignedSpade, DUL.PhysicalObject}\n", - "[INFO] [1712690292.061418]: Subclasses: []\n", - "[INFO] [1712690292.061718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.062210]: Instances: []\n", - "[INFO] [1712690292.062464]: Direct Instances: []\n", - "[INFO] [1712690292.062738]: Inverse Restrictions: [SOMA.Spatula]\n", - "[INFO] [1712690292.062994]: -------------------\n", - "[INFO] [1712690292.063243]: SOMA.DessertFork \n", - "[INFO] [1712690292.063485]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712690292.063761]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cutlery, SOMA.DessertFork, owl.Thing, DUL.Object, SOMA.Fork, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.064010]: Subclasses: []\n", - "[INFO] [1712690292.064297]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.064916]: Instances: []\n", - "[INFO] [1712690292.065326]: Direct Instances: []\n", - "[INFO] [1712690292.065699]: Inverse Restrictions: []\n", - "[INFO] [1712690292.066057]: -------------------\n", - "[INFO] [1712690292.066338]: SOMA.Fork \n", - "[INFO] [1712690292.066597]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712690292.066873]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Fork, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.067159]: Subclasses: [SOMA.DessertFork, SOMA.TableFork]\n", - "[INFO] [1712690292.067465]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712690292.067982]: Instances: []\n", - "[INFO] [1712690292.068255]: Direct Instances: []\n", - "[INFO] [1712690292.068511]: Inverse Restrictions: []\n", - "[INFO] [1712690292.068755]: -------------------\n", - "[INFO] [1712690292.069002]: SOMA.Destination \n", - "[INFO] [1712690292.069418]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712690292.069720]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Destination, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690292.069987]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712690292.070293]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.070801]: Instances: []\n", - "[INFO] [1712690292.071085]: Direct Instances: []\n", - "[INFO] [1712690292.071421]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712690292.071673]: -------------------\n", - "[INFO] [1712690292.071913]: SOMA.Location \n", - "[INFO] [1712690292.072154]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712690292.072408]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690292.072674]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712690292.072982]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.073481]: Instances: []\n", - "[INFO] [1712690292.073755]: Direct Instances: []\n", - "[INFO] [1712690292.074018]: Inverse Restrictions: []\n", - "[INFO] [1712690292.074259]: -------------------\n", - "[INFO] [1712690292.074497]: SOMA.DestroyedObject \n", - "[INFO] [1712690292.074733]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690292.074997]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.DestroyedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.075259]: Subclasses: []\n", - "[INFO] [1712690292.075558]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.076051]: Instances: []\n", - "[INFO] [1712690292.076323]: Direct Instances: []\n", - "[INFO] [1712690292.076632]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712690292.076888]: -------------------\n", - "[INFO] [1712690292.077142]: SOMA.Destruction \n", - "[INFO] [1712690292.077409]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712690292.077712]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Destruction, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.078005]: Subclasses: []\n", - "[INFO] [1712690292.078362]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.078957]: Instances: []\n", - "[INFO] [1712690292.079292]: Direct Instances: []\n", - "[INFO] [1712690292.079632]: Inverse Restrictions: []\n", - "[INFO] [1712690292.079954]: -------------------\n", - "[INFO] [1712690292.080274]: SOMA.DetectedObject \n", - "[INFO] [1712690292.080596]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690292.080966]: Ancestors: {SOMA.DetectedObject, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.081296]: Subclasses: []\n", - "[INFO] [1712690292.081658]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.082252]: Instances: []\n", - "[INFO] [1712690292.082570]: Direct Instances: []\n", - "[INFO] [1712690292.082874]: Inverse Restrictions: []\n", - "[INFO] [1712690292.083150]: -------------------\n", - "[INFO] [1712690292.083449]: SOMA.DeviceState \n", - "[INFO] [1712690292.083709]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690292.084011]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic, SOMA.DeviceState}\n", - "[INFO] [1712690292.084289]: Subclasses: []\n", - "[INFO] [1712690292.084579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.085066]: Instances: []\n", - "[INFO] [1712690292.085353]: Direct Instances: []\n", - "[INFO] [1712690292.085617]: Inverse Restrictions: []\n", - "[INFO] [1712690292.085858]: -------------------\n", - "[INFO] [1712690292.086093]: SOMA.DeviceStateRange \n", - "[INFO] [1712690292.086330]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690292.087199]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", - "[INFO] [1712690292.087477]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712690292.087795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.088304]: Instances: []\n", - "[INFO] [1712690292.088573]: Direct Instances: []\n", - "[INFO] [1712690292.088839]: Inverse Restrictions: []\n", - "[INFO] [1712690292.089086]: -------------------\n", - "[INFO] [1712690292.089328]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712690292.089574]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712690292.089844]: Ancestors: {DUL.Entity, SOMA.DeviceTurnedOff, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", - "[INFO] [1712690292.090092]: Subclasses: []\n", - "[INFO] [1712690292.090384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.090889]: Instances: []\n", - "[INFO] [1712690292.091157]: Direct Instances: []\n", - "[INFO] [1712690292.091446]: Inverse Restrictions: []\n", - "[INFO] [1712690292.091694]: -------------------\n", - "[INFO] [1712690292.091937]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712690292.092187]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712690292.092455]: Ancestors: {DUL.Entity, SOMA.DeviceTurnedOn, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", - "[INFO] [1712690292.092705]: Subclasses: []\n", - "[INFO] [1712690292.093019]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.093511]: Instances: []\n", - "[INFO] [1712690292.093768]: Direct Instances: []\n", - "[INFO] [1712690292.094059]: Inverse Restrictions: []\n", - "[INFO] [1712690292.094302]: -------------------\n", - "[INFO] [1712690292.094551]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712690292.094795]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712690292.095043]: Ancestors: {DUL.Entity, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.095289]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712690292.095572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.096084]: Instances: []\n", - "[INFO] [1712690292.096348]: Direct Instances: []\n", - "[INFO] [1712690292.096603]: Inverse Restrictions: []\n", - "[INFO] [1712690292.096852]: -------------------\n", - "[INFO] [1712690292.097122]: SOMA.Dicing \n", - "[INFO] [1712690292.097378]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712690292.097654]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Dicing, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting}\n", - "[INFO] [1712690292.097902]: Subclasses: []\n", - "[INFO] [1712690292.098189]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.098697]: Instances: []\n", - "[INFO] [1712690292.098967]: Direct Instances: []\n", - "[INFO] [1712690292.099218]: Inverse Restrictions: []\n", - "[INFO] [1712690292.099458]: -------------------\n", - "[INFO] [1712690292.099695]: SOMA.DinnerPlate \n", - "[INFO] [1712690292.099941]: Super classes: [SOMA.Plate]\n", - "[INFO] [1712690292.100234]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DinnerPlate, SOMA.Tableware, SOMA.Crockery, owl.Thing, SOMA.Plate, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.100495]: Subclasses: []\n", - "[INFO] [1712690292.100791]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.101300]: Instances: []\n", - "[INFO] [1712690292.101563]: Direct Instances: []\n", - "[INFO] [1712690292.101818]: Inverse Restrictions: []\n", - "[INFO] [1712690292.102058]: -------------------\n", - "[INFO] [1712690292.102296]: SOMA.DirectedMotion \n", - "[INFO] [1712690292.102530]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712690292.102786]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690292.103048]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712690292.103351]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.103866]: Instances: []\n", - "[INFO] [1712690292.104146]: Direct Instances: []\n", - "[INFO] [1712690292.104412]: Inverse Restrictions: []\n", - "[INFO] [1712690292.104657]: -------------------\n", - "[INFO] [1712690292.104898]: SOMA.UndirectedMotion \n", - "[INFO] [1712690292.105136]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712690292.105400]: Ancestors: {DUL.Entity, SOMA.UndirectedMotion, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.105660]: Subclasses: []\n", - "[INFO] [1712690292.105954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.106441]: Instances: []\n", - "[INFO] [1712690292.106712]: Direct Instances: []\n", - "[INFO] [1712690292.106977]: Inverse Restrictions: []\n", - "[INFO] [1712690292.107219]: -------------------\n", - "[INFO] [1712690292.107453]: SOMA.Dirty \n", - "[INFO] [1712690292.107687]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712690292.107955]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion, SOMA.Dirty}\n", - "[INFO] [1712690292.108206]: Subclasses: []\n", - "[INFO] [1712690292.108493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.108980]: Instances: []\n", - "[INFO] [1712690292.109252]: Direct Instances: []\n", - "[INFO] [1712690292.109514]: Inverse Restrictions: []\n", - "[INFO] [1712690292.109767]: -------------------\n", - "[INFO] [1712690292.110012]: SOMA.Discourse \n", - "[INFO] [1712690292.110251]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690292.110511]: Ancestors: {DUL.Entity, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Discourse}\n", - "[INFO] [1712690292.110772]: Subclasses: []\n", - "[INFO] [1712690292.111069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.111551]: Instances: []\n", - "[INFO] [1712690292.111818]: Direct Instances: []\n", - "[INFO] [1712690292.112074]: Inverse Restrictions: []\n", - "[INFO] [1712690292.112313]: -------------------\n", - "[INFO] [1712690292.112545]: SOMA.Dishwasher \n", - "[INFO] [1712690292.112781]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer]\n", - "[INFO] [1712690292.113049]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, SOMA.Dishwasher, DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.113315]: Subclasses: []\n", - "[INFO] [1712690292.113631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.114129]: Instances: []\n", - "[INFO] [1712690292.114389]: Direct Instances: []\n", - "[INFO] [1712690292.114637]: Inverse Restrictions: []\n", - "[INFO] [1712690292.114872]: -------------------\n", - "[INFO] [1712690292.115121]: SOMA.DishwasherTab \n", - "[INFO] [1712690292.115362]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712690292.115652]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.Substance, SOMA.DishwasherTab, DUL.DesignedSubstance, DUL.PhysicalBody, DUL.FunctionalSubstance, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.115905]: Subclasses: []\n", - "[INFO] [1712690292.116201]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.116708]: Instances: []\n", - "[INFO] [1712690292.116987]: Direct Instances: []\n", - "[INFO] [1712690292.117245]: Inverse Restrictions: []\n", - "[INFO] [1712690292.117488]: -------------------\n", - "[INFO] [1712690292.117725]: SOMA.Dispenser \n", - "[INFO] [1712690292.117976]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712690292.118242]: Ancestors: {SOMA.Dispenser, DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.118493]: Subclasses: [SOMA.SugarDispenser]\n", - "[INFO] [1712690292.118776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.119280]: Instances: []\n", - "[INFO] [1712690292.119542]: Direct Instances: []\n", - "[INFO] [1712690292.119791]: Inverse Restrictions: []\n", - "[INFO] [1712690292.120035]: -------------------\n", - "[INFO] [1712690292.120268]: SOMA.Distancing \n", - "[INFO] [1712690292.120518]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712690292.120791]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Distancing}\n", - "[INFO] [1712690292.121049]: Subclasses: []\n", - "[INFO] [1712690292.121343]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.121834]: Instances: []\n", - "[INFO] [1712690292.122102]: Direct Instances: []\n", - "[INFO] [1712690292.122355]: Inverse Restrictions: []\n", - "[INFO] [1712690292.122596]: -------------------\n", - "[INFO] [1712690292.122833]: SOMA.Door \n", - "[INFO] [1712690292.123068]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690292.123338]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Door, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690292.123587]: Subclasses: []\n", - "[INFO] [1712690292.123870]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.124355]: Instances: []\n", - "[INFO] [1712690292.124624]: Direct Instances: []\n", - "[INFO] [1712690292.124918]: Inverse Restrictions: [SOMA.Refrigerator]\n", - "[INFO] [1712690292.125172]: -------------------\n", - "[INFO] [1712690292.125411]: SOMA.Drawer \n", - "[INFO] [1712690292.125645]: Super classes: [SOMA.DesignedComponent, SOMA.DesignedContainer]\n", - "[INFO] [1712690292.125909]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.Drawer, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690292.126171]: Subclasses: []\n", - "[INFO] [1712690292.126467]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.126956]: Instances: []\n", - "[INFO] [1712690292.127211]: Direct Instances: []\n", - "[INFO] [1712690292.127453]: Inverse Restrictions: []\n", - "[INFO] [1712690292.127705]: -------------------\n", - "[INFO] [1712690292.127945]: SOMA.Dreaming \n", - "[INFO] [1712690292.128181]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690292.128436]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.Dreaming, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.128692]: Subclasses: []\n", - "[INFO] [1712690292.128989]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.129478]: Instances: []\n", - "[INFO] [1712690292.129729]: Direct Instances: []\n", - "[INFO] [1712690292.129998]: Inverse Restrictions: []\n", - "[INFO] [1712690292.130257]: -------------------\n", - "[INFO] [1712690292.130512]: SOMA.Driving \n", - "[INFO] [1712690292.130756]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690292.131018]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Driving, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", - "[INFO] [1712690292.131257]: Subclasses: []\n", - "[INFO] [1712690292.131557]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.132049]: Instances: []\n", - "[INFO] [1712690292.132306]: Direct Instances: []\n", - "[INFO] [1712690292.132550]: Inverse Restrictions: []\n", - "[INFO] [1712690292.132790]: -------------------\n", - "[INFO] [1712690292.133049]: SOMA.Flying \n", - "[INFO] [1712690292.133307]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690292.133609]: Ancestors: {DUL.Entity, SOMA.Flying, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", - "[INFO] [1712690292.133860]: Subclasses: []\n", - "[INFO] [1712690292.134178]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.134676]: Instances: []\n", - "[INFO] [1712690292.134937]: Direct Instances: []\n", - "[INFO] [1712690292.135187]: Inverse Restrictions: []\n", - "[INFO] [1712690292.135420]: -------------------\n", - "[INFO] [1712690292.135658]: SOMA.Swimming \n", - "[INFO] [1712690292.135908]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690292.136182]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Swimming, SOMA.Locomotion}\n", - "[INFO] [1712690292.136433]: Subclasses: []\n", - "[INFO] [1712690292.136730]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.137237]: Instances: []\n", - "[INFO] [1712690292.137501]: Direct Instances: []\n", - "[INFO] [1712690292.137753]: Inverse Restrictions: []\n", - "[INFO] [1712690292.137992]: -------------------\n", - "[INFO] [1712690292.138229]: SOMA.Walking \n", - "[INFO] [1712690292.138478]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690292.138749]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Walking, SOMA.Locomotion}\n", - "[INFO] [1712690292.138996]: Subclasses: []\n", - "[INFO] [1712690292.139283]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.139783]: Instances: []\n", - "[INFO] [1712690292.140053]: Direct Instances: []\n", - "[INFO] [1712690292.140308]: Inverse Restrictions: []\n", - "[INFO] [1712690292.140550]: -------------------\n", - "[INFO] [1712690292.140802]: SOMA.Dropping \n", - "[INFO] [1712690292.141052]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690292.141322]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, SOMA.Dropping, SOMA.PhysicalTask, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.141568]: Subclasses: []\n", - "[INFO] [1712690292.141863]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.142363]: Instances: []\n", - "[INFO] [1712690292.142623]: Direct Instances: []\n", - "[INFO] [1712690292.142870]: Inverse Restrictions: []\n", - "[INFO] [1712690292.143104]: -------------------\n", - "[INFO] [1712690292.143339]: SOMA.Placing \n", - "[INFO] [1712690292.143575]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690292.143844]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Placing, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690292.144092]: Subclasses: []\n", - "[INFO] [1712690292.144460]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.145021]: Instances: [SOMA.placing]\n", - "[INFO] [1712690292.145327]: Direct Instances: [SOMA.placing]\n", - "[INFO] [1712690292.145602]: Inverse Restrictions: []\n", - "[INFO] [1712690292.145853]: -------------------\n", - "[INFO] [1712690292.146098]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712690292.146375]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712690292.146672]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ESTSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690292.146935]: Subclasses: []\n", - "[INFO] [1712690292.147250]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.147746]: Instances: []\n", - "[INFO] [1712690292.148028]: Direct Instances: []\n", - "[INFO] [1712690292.148290]: Inverse Restrictions: []\n", - "[INFO] [1712690292.148537]: -------------------\n", - "[INFO] [1712690292.148783]: SOMA.ExistingObjectRole \n", - "[INFO] [1712690292.149038]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690292.149332]: Ancestors: {SOMA.ExistingObjectRole, DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", - "[INFO] [1712690292.149590]: Subclasses: []\n", - "[INFO] [1712690292.149886]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.150391]: Instances: []\n", - "[INFO] [1712690292.150661]: Direct Instances: []\n", - "[INFO] [1712690292.150953]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712690292.151197]: -------------------\n", - "[INFO] [1712690292.151437]: SOMA.Effort \n", - "[INFO] [1712690292.151672]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712690292.151946]: Ancestors: {DUL.Entity, SOMA.Effort, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, DUL.Parameter}\n", - "[INFO] [1712690292.152199]: Subclasses: []\n", - "[INFO] [1712690292.152487]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.152968]: Instances: []\n", - "[INFO] [1712690292.153229]: Direct Instances: []\n", - "[INFO] [1712690292.153489]: Inverse Restrictions: []\n", - "[INFO] [1712690292.153730]: -------------------\n", - "[INFO] [1712690292.153963]: SOMA.EnclosedObject \n", - "[INFO] [1712690292.154191]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712690292.154454]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.154725]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712690292.155022]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.155514]: Instances: []\n", - "[INFO] [1712690292.155769]: Direct Instances: []\n", - "[INFO] [1712690292.156064]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712690292.156324]: -------------------\n", - "[INFO] [1712690292.156578]: SOMA.Enclosing \n", - "[INFO] [1712690292.156843]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712690292.157585]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690292.158427]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712690292.159064]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.159857]: Instances: []\n", - "[INFO] [1712690292.160389]: Direct Instances: []\n", - "[INFO] [1712690292.160900]: Inverse Restrictions: []\n", - "[INFO] [1712690292.161421]: -------------------\n", - "[INFO] [1712690292.161859]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712690292.162248]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690292.162668]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690292.163059]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712690292.163533]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.164190]: Instances: []\n", - "[INFO] [1712690292.164609]: Direct Instances: []\n", - "[INFO] [1712690292.164990]: Inverse Restrictions: []\n", - "[INFO] [1712690292.165358]: -------------------\n", - "[INFO] [1712690292.165705]: SOMA.Manipulating \n", - "[INFO] [1712690292.166075]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712690292.166435]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690292.166810]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712690292.167263]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.167895]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712690292.168254]: Direct Instances: []\n", - "[INFO] [1712690292.168600]: Inverse Restrictions: []\n", - "[INFO] [1712690292.169030]: -------------------\n", - "[INFO] [1712690292.169412]: SOMA.Episode \n", - "[INFO] [1712690292.169764]: Super classes: [DUL.Situation]\n", - "[INFO] [1712690292.170130]: Ancestors: {SOMA.Episode, owl.Thing, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712690292.170483]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712690292.170871]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.171458]: Instances: []\n", - "[INFO] [1712690292.171827]: Direct Instances: []\n", - "[INFO] [1712690292.172174]: Inverse Restrictions: []\n", - "[INFO] [1712690292.172503]: -------------------\n", - "[INFO] [1712690292.172832]: SOMA.ExcludedObject \n", - "[INFO] [1712690292.173172]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690292.173544]: Ancestors: {DUL.Entity, SOMA.ExcludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.173884]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712690292.174263]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.174838]: Instances: []\n", - "[INFO] [1712690292.175198]: Direct Instances: []\n", - "[INFO] [1712690292.175590]: Inverse Restrictions: []\n", - "[INFO] [1712690292.176002]: -------------------\n", - "[INFO] [1712690292.176332]: SOMA.ExecutableFile \n", - "[INFO] [1712690292.176651]: Super classes: [owl.Thing]\n", - "[INFO] [1712690292.177978]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", - "[INFO] [1712690292.178336]: Subclasses: []\n", - "[INFO] [1712690292.178717]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.realizes, rdf-schema.comment]\n", - "[INFO] [1712690292.179298]: Instances: []\n", - "[INFO] [1712690292.179663]: Direct Instances: []\n", - "[INFO] [1712690292.180802]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712690292.181157]: -------------------\n", - "[INFO] [1712690292.181485]: SOMA.Executable_Code \n", - "[INFO] [1712690292.181808]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712690292.183113]: Ancestors: {owl.Thing, SOMA.Executable_Code, SOMA.Computer_Program}\n", - "[INFO] [1712690292.183489]: Subclasses: []\n", - "[INFO] [1712690292.183891]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.184510]: Instances: []\n", - "[INFO] [1712690292.184871]: Direct Instances: []\n", - "[INFO] [1712690292.185307]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712690292.185647]: -------------------\n", - "[INFO] [1712690292.185973]: SOMA.ExecutableFormat \n", - "[INFO] [1712690292.186314]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712690292.186670]: Ancestors: {SOMA.ExecutableFormat, SOMA.Computer_Language, SOMA.System, DUL.Entity, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.File_format}\n", - "[INFO] [1712690292.187001]: Subclasses: []\n", - "[INFO] [1712690292.187383]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.187973]: Instances: []\n", - "[INFO] [1712690292.188321]: Direct Instances: []\n", - "[INFO] [1712690292.188730]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712690292.189089]: -------------------\n", - "[INFO] [1712690292.189391]: SOMA.SchematicTheory \n", - "[INFO] [1712690292.189651]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712690292.189917]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690292.190181]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712690292.190478]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.191016]: Instances: []\n", - "[INFO] [1712690292.191283]: Direct Instances: []\n", - "[INFO] [1712690292.191537]: Inverse Restrictions: []\n", - "[INFO] [1712690292.191780]: -------------------\n", - "[INFO] [1712690292.192016]: SOMA.ExecutableSoftware \n", - "[INFO] [1712690292.192246]: Super classes: [owl.Thing]\n", - "[INFO] [1712690292.193088]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", - "[INFO] [1712690292.193687]: Subclasses: []\n", - "[INFO] [1712690292.194241]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasMember, rdf-schema.comment]\n", - "[INFO] [1712690292.195112]: Instances: []\n", - "[INFO] [1712690292.195566]: Direct Instances: []\n", - "[INFO] [1712690292.195965]: Inverse Restrictions: []\n", - "[INFO] [1712690292.196353]: -------------------\n", - "[INFO] [1712690292.196728]: SOMA.Software \n", - "[INFO] [1712690292.197165]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712690292.197587]: Ancestors: {DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Software, DUL.Description, DUL.Design}\n", - "[INFO] [1712690292.197972]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712690292.198451]: Properties: [DUL.describes, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712690292.199245]: Instances: []\n", - "[INFO] [1712690292.199624]: Direct Instances: []\n", - "[INFO] [1712690292.200367]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690292.200734]: -------------------\n", - "[INFO] [1712690292.201115]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712690292.201479]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712690292.201857]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", - "[INFO] [1712690292.202248]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712690292.202712]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.203511]: Instances: []\n", - "[INFO] [1712690292.203889]: Direct Instances: []\n", - "[INFO] [1712690292.204282]: Inverse Restrictions: []\n", - "[INFO] [1712690292.204665]: -------------------\n", - "[INFO] [1712690292.205083]: SOMA.ExperiencerRole \n", - "[INFO] [1712690292.205506]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712690292.205959]: Ancestors: {SOMA.ExperiencerRole, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", - "[INFO] [1712690292.206444]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712690292.207031]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.207997]: Instances: []\n", - "[INFO] [1712690292.208437]: Direct Instances: []\n", - "[INFO] [1712690292.208879]: Inverse Restrictions: []\n", - "[INFO] [1712690292.209225]: -------------------\n", - "[INFO] [1712690292.209520]: SOMA.ExtractedObject \n", - "[INFO] [1712690292.209792]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690292.210086]: Ancestors: {DUL.Entity, SOMA.ExtractedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.210351]: Subclasses: []\n", - "[INFO] [1712690292.210664]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.211217]: Instances: []\n", - "[INFO] [1712690292.211519]: Direct Instances: []\n", - "[INFO] [1712690292.211807]: Inverse Restrictions: []\n", - "[INFO] [1712690292.212097]: -------------------\n", - "[INFO] [1712690292.212402]: SOMA.PhysicalQuality \n", - "[INFO] [1712690292.212712]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712690292.213050]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", - "[INFO] [1712690292.213396]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712690292.213824]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf, rdf-schema.label]\n", - "[INFO] [1712690292.214687]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712690292.215119]: Direct Instances: []\n", - "[INFO] [1712690292.215551]: Inverse Restrictions: []\n", - "[INFO] [1712690292.215966]: -------------------\n", - "[INFO] [1712690292.216393]: SOMA.FailedAttempt \n", - "[INFO] [1712690292.216821]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712690292.217368]: Ancestors: {DUL.Entity, SOMA.FailedAttempt, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690292.217900]: Subclasses: []\n", - "[INFO] [1712690292.218512]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.219538]: Instances: []\n", - "[INFO] [1712690292.220123]: Direct Instances: []\n", - "[INFO] [1712690292.220745]: Inverse Restrictions: []\n", - "[INFO] [1712690292.221341]: -------------------\n", - "[INFO] [1712690292.221911]: SOMA.FaultySoftware \n", - "[INFO] [1712690292.222438]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712690292.223062]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.223628]: Subclasses: []\n", - "[INFO] [1712690292.224256]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.225222]: Instances: []\n", - "[INFO] [1712690292.225729]: Direct Instances: []\n", - "[INFO] [1712690292.226207]: Inverse Restrictions: []\n", - "[INFO] [1712690292.226640]: -------------------\n", - "[INFO] [1712690292.227057]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712690292.227457]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712690292.227868]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.228309]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712690292.228793]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.229564]: Instances: []\n", - "[INFO] [1712690292.229956]: Direct Instances: []\n", - "[INFO] [1712690292.230340]: Inverse Restrictions: []\n", - "[INFO] [1712690292.230715]: -------------------\n", - "[INFO] [1712690292.231057]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712690292.231393]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712690292.231714]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.PhysicalAcquiring, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690292.232029]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712690292.232397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.232984]: Instances: []\n", - "[INFO] [1712690292.233300]: Direct Instances: []\n", - "[INFO] [1712690292.233591]: Inverse Restrictions: []\n", - "[INFO] [1712690292.233865]: -------------------\n", - "[INFO] [1712690292.234131]: SOMA.Finger \n", - "[INFO] [1712690292.234408]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712690292.234691]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Finger, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712690292.234962]: Subclasses: []\n", - "[INFO] [1712690292.235266]: Properties: [DUL.isPartOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.235758]: Instances: []\n", - "[INFO] [1712690292.236013]: Direct Instances: []\n", - "[INFO] [1712690292.236262]: Inverse Restrictions: []\n", - "[INFO] [1712690292.236517]: -------------------\n", - "[INFO] [1712690292.236756]: SOMA.Hand \n", - "[INFO] [1712690292.237100]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712690292.237423]: Ancestors: {DUL.Entity, SOMA.Hand, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690292.237698]: Subclasses: []\n", - "[INFO] [1712690292.238007]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.238510]: Instances: []\n", - "[INFO] [1712690292.238774]: Direct Instances: []\n", - "[INFO] [1712690292.239075]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712690292.239330]: -------------------\n", - "[INFO] [1712690292.239572]: SOMA.FixedJoint \n", - "[INFO] [1712690292.239827]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712690292.240093]: Ancestors: {DUL.Entity, SOMA.FixedJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690292.240355]: Subclasses: []\n", - "[INFO] [1712690292.240666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.241175]: Instances: []\n", - "[INFO] [1712690292.241463]: Direct Instances: []\n", - "[INFO] [1712690292.241796]: Inverse Restrictions: []\n", - "[INFO] [1712690292.242079]: -------------------\n", - "[INFO] [1712690292.242367]: SOMA.MovableJoint \n", - "[INFO] [1712690292.242652]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712690292.242954]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690292.243303]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712690292.243699]: Properties: [SOMA.hasJointState, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.244412]: Instances: []\n", - "[INFO] [1712690292.244808]: Direct Instances: []\n", - "[INFO] [1712690292.245336]: Inverse Restrictions: []\n", - "[INFO] [1712690292.245748]: -------------------\n", - "[INFO] [1712690292.246145]: SOMA.Flipping \n", - "[INFO] [1712690292.246562]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712690292.247069]: Ancestors: {DUL.Entity, SOMA.Flipping, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690292.247772]: Subclasses: []\n", - "[INFO] [1712690292.248588]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690292.249924]: Instances: []\n", - "[INFO] [1712690292.250814]: Direct Instances: []\n", - "[INFO] [1712690292.251619]: Inverse Restrictions: []\n", - "[INFO] [1712690292.252377]: -------------------\n", - "[INFO] [1712690292.253232]: SOMA.FloatingJoint \n", - "[INFO] [1712690292.254111]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712690292.255044]: Ancestors: {SOMA.FloatingJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690292.255921]: Subclasses: []\n", - "[INFO] [1712690292.256924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.258469]: Instances: []\n", - "[INFO] [1712690292.259210]: Direct Instances: []\n", - "[INFO] [1712690292.259826]: Inverse Restrictions: []\n", - "[INFO] [1712690292.260363]: -------------------\n", - "[INFO] [1712690292.260898]: SOMA.Fluid \n", - "[INFO] [1712690292.261435]: Super classes: [DUL.Substance]\n", - "[INFO] [1712690292.262024]: Ancestors: {DUL.Substance, DUL.Entity, SOMA.Fluid, DUL.PhysicalBody, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690292.262547]: Subclasses: []\n", - "[INFO] [1712690292.263105]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.263997]: Instances: []\n", - "[INFO] [1712690292.264506]: Direct Instances: []\n", - "[INFO] [1712690292.265024]: Inverse Restrictions: []\n", - "[INFO] [1712690292.265455]: -------------------\n", - "[INFO] [1712690292.265866]: SOMA.MovedObject \n", - "[INFO] [1712690292.266333]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712690292.266804]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, SOMA.MovedObject, DUL.Role}\n", - "[INFO] [1712690292.267271]: Subclasses: []\n", - "[INFO] [1712690292.267804]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTriggerDefinedIn]\n", - "[INFO] [1712690292.268787]: Instances: []\n", - "[INFO] [1712690292.269350]: Direct Instances: []\n", - "[INFO] [1712690292.271528]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712690292.272407]: -------------------\n", - "[INFO] [1712690292.273277]: SOMA.Focusing \n", - "[INFO] [1712690292.274152]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712690292.274963]: Ancestors: {DUL.Entity, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Focusing}\n", - "[INFO] [1712690292.275677]: Subclasses: []\n", - "[INFO] [1712690292.276469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.277734]: Instances: []\n", - "[INFO] [1712690292.278389]: Direct Instances: []\n", - "[INFO] [1712690292.278948]: Inverse Restrictions: []\n", - "[INFO] [1712690292.279470]: -------------------\n", - "[INFO] [1712690292.279973]: SOMA.Foolishness \n", - "[INFO] [1712690292.280472]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712690292.281027]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, SOMA.Foolishness, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.281520]: Subclasses: []\n", - "[INFO] [1712690292.282100]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.283012]: Instances: []\n", - "[INFO] [1712690292.283481]: Direct Instances: []\n", - "[INFO] [1712690292.283944]: Inverse Restrictions: []\n", - "[INFO] [1712690292.284332]: -------------------\n", - "[INFO] [1712690292.284705]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712690292.285187]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712690292.285787]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.ForgettingIncorrectInformation, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.286306]: Subclasses: []\n", - "[INFO] [1712690292.286845]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.287608]: Instances: []\n", - "[INFO] [1712690292.287989]: Direct Instances: []\n", - "[INFO] [1712690292.288336]: Inverse Restrictions: []\n", - "[INFO] [1712690292.288647]: -------------------\n", - "[INFO] [1712690292.289052]: SOMA.InformationDismissal \n", - "[INFO] [1712690292.289482]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712690292.289838]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.290164]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712690292.290508]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.comment]\n", - "[INFO] [1712690292.291067]: Instances: []\n", - "[INFO] [1712690292.291383]: Direct Instances: []\n", - "[INFO] [1712690292.291688]: Inverse Restrictions: []\n", - "[INFO] [1712690292.291972]: -------------------\n", - "[INFO] [1712690292.292258]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712690292.292541]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712690292.292866]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForgettingIrrelevantInformation}\n", - "[INFO] [1712690292.293199]: Subclasses: []\n", - "[INFO] [1712690292.293573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.294198]: Instances: []\n", - "[INFO] [1712690292.294518]: Direct Instances: []\n", - "[INFO] [1712690292.294836]: Inverse Restrictions: []\n", - "[INFO] [1712690292.295156]: -------------------\n", - "[INFO] [1712690292.295472]: SOMA.Language \n", - "[INFO] [1712690292.295813]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712690292.296162]: Ancestors: {DUL.Entity, SOMA.System, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.296512]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712690292.296924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.297673]: Instances: []\n", - "[INFO] [1712690292.298095]: Direct Instances: []\n", - "[INFO] [1712690292.299673]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712690292.300094]: -------------------\n", - "[INFO] [1712690292.300485]: SOMA.FreezerCompartment \n", - "[INFO] [1712690292.300845]: Super classes: [SOMA.Compartment]\n", - "[INFO] [1712690292.301239]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.FreezerCompartment, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, SOMA.Compartment, DUL.PhysicalObject}\n", - "[INFO] [1712690292.301574]: Subclasses: []\n", - "[INFO] [1712690292.301939]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.302565]: Instances: []\n", - "[INFO] [1712690292.302896]: Direct Instances: []\n", - "[INFO] [1712690292.303190]: Inverse Restrictions: []\n", - "[INFO] [1712690292.303470]: -------------------\n", - "[INFO] [1712690292.303742]: SOMA.Item \n", - "[INFO] [1712690292.304026]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690292.304332]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.304634]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712690292.304956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.305491]: Instances: []\n", - "[INFO] [1712690292.305819]: Direct Instances: []\n", - "[INFO] [1712690292.306206]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712690292.306480]: -------------------\n", - "[INFO] [1712690292.306738]: SOMA.FunctionalDesign \n", - "[INFO] [1712690292.306980]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712690292.307257]: Ancestors: {SOMA.FunctionalDesign, DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690292.307513]: Subclasses: []\n", - "[INFO] [1712690292.307807]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.308291]: Instances: []\n", - "[INFO] [1712690292.308544]: Direct Instances: []\n", - "[INFO] [1712690292.308793]: Inverse Restrictions: []\n", - "[INFO] [1712690292.309056]: -------------------\n", - "[INFO] [1712690292.309296]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712690292.309531]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712690292.309771]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.310014]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712690292.310313]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.310827]: Instances: []\n", - "[INFO] [1712690292.311087]: Direct Instances: []\n", - "[INFO] [1712690292.311336]: Inverse Restrictions: []\n", - "[INFO] [1712690292.311571]: -------------------\n", - "[INFO] [1712690292.311813]: SOMA.LocatumRole \n", - "[INFO] [1712690292.312053]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690292.312324]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.LocatumRole, SOMA.SpatialRelationRole, DUL.Role}\n", - "[INFO] [1712690292.312585]: Subclasses: []\n", - "[INFO] [1712690292.312891]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.313389]: Instances: []\n", - "[INFO] [1712690292.313644]: Direct Instances: []\n", - "[INFO] [1712690292.313987]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712690292.314258]: -------------------\n", - "[INFO] [1712690292.314515]: SOMA.RelatumRole \n", - "[INFO] [1712690292.314767]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690292.315033]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, SOMA.RelatumRole, owl.Thing, DUL.Object, SOMA.SpatialRelationRole, DUL.Role}\n", - "[INFO] [1712690292.315298]: Subclasses: []\n", - "[INFO] [1712690292.315598]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.316092]: Instances: []\n", - "[INFO] [1712690292.316347]: Direct Instances: []\n", - "[INFO] [1712690292.316710]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712690292.317010]: -------------------\n", - "[INFO] [1712690292.317270]: SOMA.GasCooktop \n", - "[INFO] [1712690292.317509]: Super classes: [SOMA.Cooktop]\n", - "[INFO] [1712690292.317780]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.GasCooktop, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690292.318047]: Subclasses: []\n", - "[INFO] [1712690292.318344]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.318836]: Instances: []\n", - "[INFO] [1712690292.319096]: Direct Instances: []\n", - "[INFO] [1712690292.319346]: Inverse Restrictions: []\n", - "[INFO] [1712690292.319587]: -------------------\n", - "[INFO] [1712690292.319833]: SOMA.GetTaskParameter \n", - "[INFO] [1712690292.320076]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712690292.320362]: Ancestors: {SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.320616]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712690292.320915]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.321420]: Instances: []\n", - "[INFO] [1712690292.321686]: Direct Instances: []\n", - "[INFO] [1712690292.321937]: Inverse Restrictions: []\n", - "[INFO] [1712690292.322174]: -------------------\n", - "[INFO] [1712690292.322406]: SOMA.Planning \n", - "[INFO] [1712690292.323051]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712690292.323319]: Ancestors: {SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.323578]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712690292.323867]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.324370]: Instances: []\n", - "[INFO] [1712690292.324641]: Direct Instances: []\n", - "[INFO] [1712690292.324901]: Inverse Restrictions: []\n", - "[INFO] [1712690292.325148]: -------------------\n", - "[INFO] [1712690292.325384]: SOMA.Glass \n", - "[INFO] [1712690292.325634]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712690292.325902]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, SOMA.Glass, DUL.PhysicalObject}\n", - "[INFO] [1712690292.326155]: Subclasses: [SOMA.WaterGlass, SOMA.WineGlass]\n", - "[INFO] [1712690292.326434]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.326928]: Instances: []\n", - "[INFO] [1712690292.327199]: Direct Instances: []\n", - "[INFO] [1712690292.327459]: Inverse Restrictions: []\n", - "[INFO] [1712690292.327700]: -------------------\n", - "[INFO] [1712690292.327937]: SOMA.GraphDatabase \n", - "[INFO] [1712690292.328176]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712690292.328448]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.Database, DUL.Object, SOMA.GraphDatabase, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.328703]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712690292.329000]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.329500]: Instances: []\n", - "[INFO] [1712690292.329782]: Direct Instances: []\n", - "[INFO] [1712690292.330055]: Inverse Restrictions: []\n", - "[INFO] [1712690292.330307]: -------------------\n", - "[INFO] [1712690292.330541]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712690292.330780]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712690292.331048]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.GraphQueryLanguage, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.331313]: Subclasses: []\n", - "[INFO] [1712690292.331609]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.332096]: Instances: []\n", - "[INFO] [1712690292.332361]: Direct Instances: []\n", - "[INFO] [1712690292.332615]: Inverse Restrictions: []\n", - "[INFO] [1712690292.332869]: -------------------\n", - "[INFO] [1712690292.333125]: SOMA.QueryLanguage \n", - "[INFO] [1712690292.333401]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690292.333664]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.333915]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712690292.334203]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.334706]: Instances: []\n", - "[INFO] [1712690292.334973]: Direct Instances: []\n", - "[INFO] [1712690292.335230]: Inverse Restrictions: []\n", - "[INFO] [1712690292.335473]: -------------------\n", - "[INFO] [1712690292.335712]: SOMA.GraspTransfer \n", - "[INFO] [1712690292.335948]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712690292.336233]: Ancestors: {DUL.Entity, SOMA.GraspTransfer, SOMA.Grasping, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690292.336488]: Subclasses: []\n", - "[INFO] [1712690292.336787]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.337282]: Instances: []\n", - "[INFO] [1712690292.337556]: Direct Instances: []\n", - "[INFO] [1712690292.337816]: Inverse Restrictions: []\n", - "[INFO] [1712690292.338060]: -------------------\n", - "[INFO] [1712690292.338295]: SOMA.Grasping \n", - "[INFO] [1712690292.338530]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690292.338773]: Ancestors: {DUL.Entity, SOMA.Grasping, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690292.339033]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712690292.339337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.339823]: Instances: []\n", - "[INFO] [1712690292.340078]: Direct Instances: []\n", - "[INFO] [1712690292.340338]: Inverse Restrictions: []\n", - "[INFO] [1712690292.340576]: -------------------\n", - "[INFO] [1712690292.340823]: SOMA.Releasing \n", - "[INFO] [1712690292.341064]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690292.341326]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Releasing, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690292.341588]: Subclasses: []\n", - "[INFO] [1712690292.341887]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.342378]: Instances: []\n", - "[INFO] [1712690292.342636]: Direct Instances: []\n", - "[INFO] [1712690292.342883]: Inverse Restrictions: []\n", - "[INFO] [1712690292.343127]: -------------------\n", - "[INFO] [1712690292.343371]: SOMA.GraspingMotion \n", - "[INFO] [1712690292.343603]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712690292.345034]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690292.345333]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712690292.345661]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.346171]: Instances: []\n", - "[INFO] [1712690292.346434]: Direct Instances: []\n", - "[INFO] [1712690292.346737]: Inverse Restrictions: []\n", - "[INFO] [1712690292.347008]: -------------------\n", - "[INFO] [1712690292.347260]: SOMA.IntermediateGrasp \n", - "[INFO] [1712690292.347507]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712690292.347782]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing, SOMA.IntermediateGrasp}\n", - "[INFO] [1712690292.348042]: Subclasses: []\n", - "[INFO] [1712690292.348354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.348852]: Instances: []\n", - "[INFO] [1712690292.349114]: Direct Instances: []\n", - "[INFO] [1712690292.349414]: Inverse Restrictions: []\n", - "[INFO] [1712690292.349668]: -------------------\n", - "[INFO] [1712690292.349909]: SOMA.PowerGrasp \n", - "[INFO] [1712690292.350167]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712690292.350459]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, SOMA.PowerGrasp, SOMA.DirectedMotion, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.350714]: Subclasses: []\n", - "[INFO] [1712690292.351017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.351515]: Instances: []\n", - "[INFO] [1712690292.351780]: Direct Instances: []\n", - "[INFO] [1712690292.352071]: Inverse Restrictions: []\n", - "[INFO] [1712690292.352311]: -------------------\n", - "[INFO] [1712690292.352543]: SOMA.PrecisionGrasp \n", - "[INFO] [1712690292.352798]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712690292.353071]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.PrecisionGrasp, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690292.353319]: Subclasses: []\n", - "[INFO] [1712690292.353605]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.354106]: Instances: []\n", - "[INFO] [1712690292.354370]: Direct Instances: []\n", - "[INFO] [1712690292.354666]: Inverse Restrictions: []\n", - "[INFO] [1712690292.354909]: -------------------\n", - "[INFO] [1712690292.355146]: SOMA.PrehensileMotion \n", - "[INFO] [1712690292.355791]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712690292.356073]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690292.356338]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712690292.356647]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.357166]: Instances: []\n", - "[INFO] [1712690292.357442]: Direct Instances: []\n", - "[INFO] [1712690292.357708]: Inverse Restrictions: []\n", - "[INFO] [1712690292.357949]: -------------------\n", - "[INFO] [1712690292.358187]: SOMA.ReleasingMotion \n", - "[INFO] [1712690292.358422]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712690292.358695]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, SOMA.ReleasingMotion, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690292.358957]: Subclasses: []\n", - "[INFO] [1712690292.359253]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.359743]: Instances: []\n", - "[INFO] [1712690292.359993]: Direct Instances: []\n", - "[INFO] [1712690292.360280]: Inverse Restrictions: []\n", - "[INFO] [1712690292.360531]: -------------------\n", - "[INFO] [1712690292.360777]: SOMA.GreenColor \n", - "[INFO] [1712690292.361013]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712690292.361277]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, SOMA.GreenColor, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690292.361527]: Subclasses: []\n", - "[INFO] [1712690292.361822]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.362309]: Instances: []\n", - "[INFO] [1712690292.362559]: Direct Instances: []\n", - "[INFO] [1712690292.362798]: Inverse Restrictions: []\n", - "[INFO] [1712690292.363035]: -------------------\n", - "[INFO] [1712690292.363272]: SOMA.Gripper \n", - "[INFO] [1712690292.363507]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712690292.363768]: Ancestors: {SOMA.Gripper, DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690292.364028]: Subclasses: []\n", - "[INFO] [1712690292.364322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.364811]: Instances: []\n", - "[INFO] [1712690292.365093]: Direct Instances: []\n", - "[INFO] [1712690292.365353]: Inverse Restrictions: []\n", - "[INFO] [1712690292.365594]: -------------------\n", - "[INFO] [1712690292.365830]: SOMA.PrehensileEffector \n", - "[INFO] [1712690292.366065]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712690292.366313]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690292.366572]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712690292.366878]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.367385]: Instances: []\n", - "[INFO] [1712690292.367661]: Direct Instances: []\n", - "[INFO] [1712690292.367978]: Inverse Restrictions: []\n", - "[INFO] [1712690292.368225]: -------------------\n", - "[INFO] [1712690292.368465]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712690292.368698]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712690292.368977]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.HardwareDiagnosis}\n", - "[INFO] [1712690292.369231]: Subclasses: []\n", - "[INFO] [1712690292.369519]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.370004]: Instances: []\n", - "[INFO] [1712690292.370271]: Direct Instances: []\n", - "[INFO] [1712690292.370521]: Inverse Restrictions: []\n", - "[INFO] [1712690292.370763]: -------------------\n", - "[INFO] [1712690292.370994]: SOMA.HasQualityRegion \n", - "[INFO] [1712690292.371258]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712690292.371538]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, SOMA.HasQualityRegion, DUL.Description}\n", - "[INFO] [1712690292.371792]: Subclasses: []\n", - "[INFO] [1712690292.372087]: Properties: [DUL.hasQuality, DUL.hasRegion, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.372582]: Instances: []\n", - "[INFO] [1712690292.372849]: Direct Instances: []\n", - "[INFO] [1712690292.373103]: Inverse Restrictions: []\n", - "[INFO] [1712690292.373338]: -------------------\n", - "[INFO] [1712690292.373573]: SOMA.Head \n", - "[INFO] [1712690292.373807]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712690292.374066]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Head, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690292.374330]: Subclasses: []\n", - "[INFO] [1712690292.374627]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.375114]: Instances: []\n", - "[INFO] [1712690292.375379]: Direct Instances: []\n", - "[INFO] [1712690292.375642]: Inverse Restrictions: []\n", - "[INFO] [1712690292.375885]: -------------------\n", - "[INFO] [1712690292.376121]: SOMA.HeadMovement \n", - "[INFO] [1712690292.376354]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712690292.376620]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.HeadMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.376882]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712690292.377175]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.377667]: Instances: []\n", - "[INFO] [1712690292.377937]: Direct Instances: []\n", - "[INFO] [1712690292.378193]: Inverse Restrictions: []\n", - "[INFO] [1712690292.378437]: -------------------\n", - "[INFO] [1712690292.378672]: SOMA.HeadTurning \n", - "[INFO] [1712690292.378908]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712690292.379174]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.HeadTurning, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.HeadMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.379438]: Subclasses: []\n", - "[INFO] [1712690292.379740]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.380232]: Instances: []\n", - "[INFO] [1712690292.380489]: Direct Instances: []\n", - "[INFO] [1712690292.380735]: Inverse Restrictions: []\n", - "[INFO] [1712690292.380980]: -------------------\n", - "[INFO] [1712690292.381225]: SOMA.Holding \n", - "[INFO] [1712690292.381466]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690292.381730]: Ancestors: {DUL.Entity, SOMA.Holding, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690292.381973]: Subclasses: []\n", - "[INFO] [1712690292.382257]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.382772]: Instances: []\n", - "[INFO] [1712690292.383048]: Direct Instances: []\n", - "[INFO] [1712690292.383304]: Inverse Restrictions: []\n", - "[INFO] [1712690292.383566]: -------------------\n", - "[INFO] [1712690292.383806]: SOMA.HostRole \n", - "[INFO] [1712690292.384077]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712690292.384351]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.HostRole, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.384598]: Subclasses: []\n", - "[INFO] [1712690292.384892]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.385388]: Instances: []\n", - "[INFO] [1712690292.385665]: Direct Instances: []\n", - "[INFO] [1712690292.386713]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712690292.386966]: -------------------\n", - "[INFO] [1712690292.387221]: SOMA.PluginSpecification \n", - "[INFO] [1712690292.387470]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712690292.387738]: Ancestors: {DUL.Entity, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.PluginSpecification, DUL.Design}\n", - "[INFO] [1712690292.387984]: Subclasses: []\n", - "[INFO] [1712690292.388274]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesRole, rdf-schema.label]\n", - "[INFO] [1712690292.388782]: Instances: []\n", - "[INFO] [1712690292.389049]: Direct Instances: []\n", - "[INFO] [1712690292.389378]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712690292.389625]: -------------------\n", - "[INFO] [1712690292.389863]: SOMA.Hotplate \n", - "[INFO] [1712690292.390111]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690292.390381]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.Hotplate, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690292.390632]: Subclasses: []\n", - "[INFO] [1712690292.390916]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.391400]: Instances: []\n", - "[INFO] [1712690292.391655]: Direct Instances: []\n", - "[INFO] [1712690292.391944]: Inverse Restrictions: [SOMA.Stove]\n", - "[INFO] [1712690292.392200]: -------------------\n", - "[INFO] [1712690292.392442]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712690292.392699]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712690292.393001]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.Human-readable_Programming_Language, SOMA.Programming_Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.393266]: Subclasses: []\n", - "[INFO] [1712690292.393562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.394058]: Instances: []\n", - "[INFO] [1712690292.394443]: Direct Instances: []\n", - "[INFO] [1712690292.395519]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712690292.395809]: -------------------\n", - "[INFO] [1712690292.396062]: SOMA.Source_Code \n", - "[INFO] [1712690292.396307]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712690292.396803]: Ancestors: {SOMA.Source_Code, owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712690292.397072]: Subclasses: []\n", - "[INFO] [1712690292.397388]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.397887]: Instances: []\n", - "[INFO] [1712690292.398179]: Direct Instances: []\n", - "[INFO] [1712690292.398488]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712690292.398742]: -------------------\n", - "[INFO] [1712690292.398986]: SOMA.HumanActivityRecording \n", - "[INFO] [1712690292.399225]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712690292.399498]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712690292.399760]: Subclasses: []\n", - "[INFO] [1712690292.400075]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.400589]: Instances: []\n", - "[INFO] [1712690292.400861]: Direct Instances: []\n", - "[INFO] [1712690292.401137]: Inverse Restrictions: []\n", - "[INFO] [1712690292.401384]: -------------------\n", - "[INFO] [1712690292.401628]: SOMA.Imagining \n", - "[INFO] [1712690292.401863]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712690292.402124]: Ancestors: {SOMA.Imagining, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.402387]: Subclasses: []\n", - "[INFO] [1712690292.402684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.403177]: Instances: []\n", - "[INFO] [1712690292.403431]: Direct Instances: []\n", - "[INFO] [1712690292.403677]: Inverse Restrictions: []\n", - "[INFO] [1712690292.403928]: -------------------\n", - "[INFO] [1712690292.404167]: SOMA.Impediment \n", - "[INFO] [1712690292.404431]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712690292.404698]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Impediment, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690292.404953]: Subclasses: []\n", - "[INFO] [1712690292.405261]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.405757]: Instances: []\n", - "[INFO] [1712690292.406019]: Direct Instances: []\n", - "[INFO] [1712690292.406276]: Inverse Restrictions: []\n", - "[INFO] [1712690292.406519]: -------------------\n", - "[INFO] [1712690292.406757]: SOMA.Obstacle \n", - "[INFO] [1712690292.406989]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712690292.407254]: Ancestors: {SOMA.Obstacle, DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.407510]: Subclasses: []\n", - "[INFO] [1712690292.407801]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.408291]: Instances: []\n", - "[INFO] [1712690292.408562]: Direct Instances: []\n", - "[INFO] [1712690292.408864]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712690292.409113]: -------------------\n", - "[INFO] [1712690292.409351]: SOMA.RestrictedObject \n", - "[INFO] [1712690292.409587]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712690292.409850]: Ancestors: {DUL.Entity, SOMA.RestrictedObject, DUL.Concept, DUL.SocialObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.410111]: Subclasses: []\n", - "[INFO] [1712690292.410407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.410899]: Instances: []\n", - "[INFO] [1712690292.411153]: Direct Instances: []\n", - "[INFO] [1712690292.411437]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712690292.411697]: -------------------\n", - "[INFO] [1712690292.411950]: SOMA.StateTransition \n", - "[INFO] [1712690292.412224]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712690292.412493]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.StateTransition, owl.Thing, DUL.Transition}\n", - "[INFO] [1712690292.412754]: Subclasses: []\n", - "[INFO] [1712690292.413076]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.includesEvent, SOMA.hasTerminalScene, DUL.satisfies, SOMA.hasInitialScene]\n", - "[INFO] [1712690292.413576]: Instances: []\n", - "[INFO] [1712690292.413857]: Direct Instances: []\n", - "[INFO] [1712690292.414182]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712690292.414430]: -------------------\n", - "[INFO] [1712690292.414671]: SOMA.Inability \n", - "[INFO] [1712690292.414903]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712690292.415171]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.Inability, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690292.415437]: Subclasses: []\n", - "[INFO] [1712690292.415739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.416230]: Instances: []\n", - "[INFO] [1712690292.416486]: Direct Instances: []\n", - "[INFO] [1712690292.416759]: Inverse Restrictions: []\n", - "[INFO] [1712690292.417032]: -------------------\n", - "[INFO] [1712690292.417286]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712690292.417527]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712690292.417794]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, SOMA.IncompatibleSoftware, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.418062]: Subclasses: []\n", - "[INFO] [1712690292.418362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.418856]: Instances: []\n", - "[INFO] [1712690292.419124]: Direct Instances: []\n", - "[INFO] [1712690292.419370]: Inverse Restrictions: []\n", - "[INFO] [1712690292.419618]: -------------------\n", - "[INFO] [1712690292.419863]: SOMA.InductionCooktop \n", - "[INFO] [1712690292.420100]: Super classes: [SOMA.ElectricCooktop]\n", - "[INFO] [1712690292.420367]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.InductionCooktop, DUL.PhysicalBody, SOMA.ElectricCooktop, SOMA.FunctionalPart, DUL.Object, SOMA.Cooktop, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690292.420609]: Subclasses: []\n", - "[INFO] [1712690292.420910]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.421420]: Instances: []\n", - "[INFO] [1712690292.421705]: Direct Instances: []\n", - "[INFO] [1712690292.421965]: Inverse Restrictions: []\n", - "[INFO] [1712690292.422207]: -------------------\n", - "[INFO] [1712690292.422449]: SOMA.InductiveReasoning \n", - "[INFO] [1712690292.422703]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712690292.422983]: Ancestors: {SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.InductiveReasoning}\n", - "[INFO] [1712690292.423246]: Subclasses: []\n", - "[INFO] [1712690292.423534]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.424013]: Instances: []\n", - "[INFO] [1712690292.424285]: Direct Instances: []\n", - "[INFO] [1712690292.424546]: Inverse Restrictions: []\n", - "[INFO] [1712690292.424792]: -------------------\n", - "[INFO] [1712690292.425039]: SOMA.Infeasibility \n", - "[INFO] [1712690292.425278]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712690292.425551]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Infeasibility, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690292.425818]: Subclasses: []\n", - "[INFO] [1712690292.426114]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.426612]: Instances: []\n", - "[INFO] [1712690292.426875]: Direct Instances: []\n", - "[INFO] [1712690292.427137]: Inverse Restrictions: []\n", - "[INFO] [1712690292.427389]: -------------------\n", - "[INFO] [1712690292.427633]: SOMA.InferenceRules \n", - "[INFO] [1712690292.427873]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712690292.428140]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.InferenceRules, DUL.Role}\n", - "[INFO] [1712690292.428385]: Subclasses: []\n", - "[INFO] [1712690292.428687]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.429181]: Instances: []\n", - "[INFO] [1712690292.429463]: Direct Instances: []\n", - "[INFO] [1712690292.429726]: Inverse Restrictions: []\n", - "[INFO] [1712690292.429982]: -------------------\n", - "[INFO] [1712690292.430267]: SOMA.InformationRetrieval \n", - "[INFO] [1712690292.430554]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712690292.430833]: Ancestors: {SOMA.InformationRetrieval, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.431104]: Subclasses: []\n", - "[INFO] [1712690292.431419]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.431916]: Instances: []\n", - "[INFO] [1712690292.432178]: Direct Instances: []\n", - "[INFO] [1712690292.432494]: Inverse Restrictions: []\n", - "[INFO] [1712690292.432762]: -------------------\n", - "[INFO] [1712690292.433029]: SOMA.InformationStorage \n", - "[INFO] [1712690292.433318]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712690292.433728]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.434016]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712690292.434332]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.comment]\n", - "[INFO] [1712690292.434834]: Instances: []\n", - "[INFO] [1712690292.435104]: Direct Instances: []\n", - "[INFO] [1712690292.435372]: Inverse Restrictions: []\n", - "[INFO] [1712690292.435618]: -------------------\n", - "[INFO] [1712690292.435864]: SOMA.StoredObject \n", - "[INFO] [1712690292.436103]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712690292.436371]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.StoredObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.436636]: Subclasses: []\n", - "[INFO] [1712690292.436947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.437446]: Instances: []\n", - "[INFO] [1712690292.437702]: Direct Instances: []\n", - "[INFO] [1712690292.438053]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712690292.438318]: -------------------\n", - "[INFO] [1712690292.438574]: SOMA.InsertedObject \n", - "[INFO] [1712690292.438817]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712690292.439095]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, SOMA.InsertedObject, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.439348]: Subclasses: []\n", - "[INFO] [1712690292.439653]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.440160]: Instances: []\n", - "[INFO] [1712690292.440425]: Direct Instances: []\n", - "[INFO] [1712690292.440716]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712690292.440966]: -------------------\n", - "[INFO] [1712690292.441225]: SOMA.Instructions \n", - "[INFO] [1712690292.441472]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712690292.441742]: Ancestors: {DUL.Entity, SOMA.Instructions, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.441996]: Subclasses: []\n", - "[INFO] [1712690292.442299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.442805]: Instances: []\n", - "[INFO] [1712690292.443088]: Direct Instances: []\n", - "[INFO] [1712690292.443351]: Inverse Restrictions: []\n", - "[INFO] [1712690292.443598]: -------------------\n", - "[INFO] [1712690292.443836]: SOMA.Interpreting \n", - "[INFO] [1712690292.444077]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690292.444426]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.444742]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712690292.445095]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.445621]: Instances: []\n", - "[INFO] [1712690292.445901]: Direct Instances: []\n", - "[INFO] [1712690292.446177]: Inverse Restrictions: []\n", - "[INFO] [1712690292.446440]: -------------------\n", - "[INFO] [1712690292.446695]: SOMA.InterrogativeClause \n", - "[INFO] [1712690292.446941]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712690292.447229]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.ClausalObject, SOMA.InterrogativeClause}\n", - "[INFO] [1712690292.447503]: Subclasses: []\n", - "[INFO] [1712690292.447811]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.448306]: Instances: []\n", - "[INFO] [1712690292.448570]: Direct Instances: []\n", - "[INFO] [1712690292.448874]: Inverse Restrictions: []\n", - "[INFO] [1712690292.449140]: -------------------\n", - "[INFO] [1712690292.449397]: SOMA.Introspecting \n", - "[INFO] [1712690292.449646]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712690292.449908]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.450162]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712690292.450466]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.450964]: Instances: []\n", - "[INFO] [1712690292.451226]: Direct Instances: []\n", - "[INFO] [1712690292.451490]: Inverse Restrictions: []\n", - "[INFO] [1712690292.451735]: -------------------\n", - "[INFO] [1712690292.451975]: SOMA.JamJar \n", - "[INFO] [1712690292.452209]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712690292.452476]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.JamJar, owl.Thing, DUL.Object, SOMA.Jar, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.452744]: Subclasses: [SOMA.RaspberryJamJar]\n", - "[INFO] [1712690292.453058]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.453557]: Instances: []\n", - "[INFO] [1712690292.453815]: Direct Instances: []\n", - "[INFO] [1712690292.454067]: Inverse Restrictions: []\n", - "[INFO] [1712690292.454324]: -------------------\n", - "[INFO] [1712690292.454571]: SOMA.Jar \n", - "[INFO] [1712690292.454817]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712690292.455078]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Jar, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.455355]: Subclasses: [SOMA.JamJar, SOMA.NutellaJar]\n", - "[INFO] [1712690292.455649]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.456141]: Instances: []\n", - "[INFO] [1712690292.456413]: Direct Instances: []\n", - "[INFO] [1712690292.456672]: Inverse Restrictions: []\n", - "[INFO] [1712690292.456929]: -------------------\n", - "[INFO] [1712690292.457167]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712690292.457402]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712690292.457668]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.KineticFrictionAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", - "[INFO] [1712690292.457938]: Subclasses: []\n", - "[INFO] [1712690292.458243]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.458749]: Instances: []\n", - "[INFO] [1712690292.459019]: Direct Instances: []\n", - "[INFO] [1712690292.459269]: Inverse Restrictions: []\n", - "[INFO] [1712690292.459519]: -------------------\n", - "[INFO] [1712690292.459767]: SOMA.KinoDynamicData \n", - "[INFO] [1712690292.460014]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690292.460279]: Ancestors: {DUL.Entity, DUL.InformationObject, SOMA.KinoDynamicData, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.460540]: Subclasses: []\n", - "[INFO] [1712690292.460847]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.461354]: Instances: []\n", - "[INFO] [1712690292.461622]: Direct Instances: []\n", - "[INFO] [1712690292.461886]: Inverse Restrictions: []\n", - "[INFO] [1712690292.462135]: -------------------\n", - "[INFO] [1712690292.462374]: SOMA.Kitchen \n", - "[INFO] [1712690292.462619]: Super classes: [SOMA.Room, SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712690292.462891]: Ancestors: {DUL.Entity, SOMA.Room, DUL.PhysicalPlace, DUL.Object, owl.Thing, SOMA.Kitchen, DUL.PhysicalObject}\n", - "[INFO] [1712690292.463157]: Subclasses: []\n", - "[INFO] [1712690292.463459]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690292.463953]: Instances: []\n", - "[INFO] [1712690292.464211]: Direct Instances: []\n", - "[INFO] [1712690292.464455]: Inverse Restrictions: []\n", - "[INFO] [1712690292.464700]: -------------------\n", - "[INFO] [1712690292.464961]: SOMA.Room \n", - "[INFO] [1712690292.465208]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712690292.465456]: Ancestors: {DUL.Entity, SOMA.Room, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690292.465702]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712690292.465991]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.466508]: Instances: []\n", - "[INFO] [1712690292.466777]: Direct Instances: []\n", - "[INFO] [1712690292.467040]: Inverse Restrictions: []\n", - "[INFO] [1712690292.467282]: -------------------\n", - "[INFO] [1712690292.467522]: SOMA.KitchenCabinet \n", - "[INFO] [1712690292.467772]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712690292.468044]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cupboard, owl.Thing, DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, SOMA.KitchenCabinet, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.468295]: Subclasses: []\n", - "[INFO] [1712690292.468585]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.469127]: Instances: []\n", - "[INFO] [1712690292.469656]: Direct Instances: []\n", - "[INFO] [1712690292.470071]: Inverse Restrictions: []\n", - "[INFO] [1712690292.470461]: -------------------\n", - "[INFO] [1712690292.470759]: SOMA.Knife \n", - "[INFO] [1712690292.471029]: Super classes: [SOMA.CuttingTool, SOMA.hasPhysicalComponent.some(SOMA.Blade), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712690292.471293]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Knife, SOMA.CuttingTool, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.471569]: Subclasses: [SOMA.KitchenKnife]\n", - "[INFO] [1712690292.471879]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712690292.472547]: Instances: []\n", - "[INFO] [1712690292.472948]: Direct Instances: []\n", - "[INFO] [1712690292.473216]: Inverse Restrictions: []\n", - "[INFO] [1712690292.473475]: -------------------\n", - "[INFO] [1712690292.473726]: SOMA.KitchenUnit \n", - "[INFO] [1712690292.473972]: Super classes: [SOMA.DesignedFurniture]\n", - "[INFO] [1712690292.474241]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedFurniture, SOMA.KitchenUnit, DUL.Object, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.474499]: Subclasses: []\n", - "[INFO] [1712690292.474798]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.475286]: Instances: []\n", - "[INFO] [1712690292.475552]: Direct Instances: []\n", - "[INFO] [1712690292.475803]: Inverse Restrictions: []\n", - "[INFO] [1712690292.476044]: -------------------\n", - "[INFO] [1712690292.476295]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712690292.476538]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690292.476807]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.KnowledgeRepresentationLanguage, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.477063]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712690292.477368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.477865]: Instances: []\n", - "[INFO] [1712690292.478124]: Direct Instances: []\n", - "[INFO] [1712690292.478371]: Inverse Restrictions: []\n", - "[INFO] [1712690292.478610]: -------------------\n", - "[INFO] [1712690292.478858]: SOMA.Labeling \n", - "[INFO] [1712690292.479098]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712690292.479360]: Ancestors: {SOMA.Interpreting, SOMA.Labeling, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.479616]: Subclasses: []\n", - "[INFO] [1712690292.479903]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690292.480407]: Instances: []\n", - "[INFO] [1712690292.480683]: Direct Instances: []\n", - "[INFO] [1712690292.480947]: Inverse Restrictions: []\n", - "[INFO] [1712690292.481190]: -------------------\n", - "[INFO] [1712690292.481425]: SOMA.Text \n", - "[INFO] [1712690292.481663]: Super classes: [owl.Thing]\n", - "[INFO] [1712690292.482902]: Ancestors: {owl.Thing, SOMA.Text}\n", - "[INFO] [1712690292.483187]: Subclasses: []\n", - "[INFO] [1712690292.483491]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.483990]: Instances: []\n", - "[INFO] [1712690292.484255]: Direct Instances: []\n", - "[INFO] [1712690292.485358]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712690292.485626]: -------------------\n", - "[INFO] [1712690292.485885]: SOMA.Leaning \n", - "[INFO] [1712690292.486124]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712690292.486406]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.Leaning, SOMA.PosturalMoving}\n", - "[INFO] [1712690292.486672]: Subclasses: []\n", - "[INFO] [1712690292.486971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.487473]: Instances: []\n", - "[INFO] [1712690292.487743]: Direct Instances: []\n", - "[INFO] [1712690292.487998]: Inverse Restrictions: []\n", - "[INFO] [1712690292.488242]: -------------------\n", - "[INFO] [1712690292.488478]: SOMA.PosturalMoving \n", - "[INFO] [1712690292.488714]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712690292.488982]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.PosturalMoving}\n", - "[INFO] [1712690292.489252]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712690292.489545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.490042]: Instances: []\n", - "[INFO] [1712690292.490314]: Direct Instances: []\n", - "[INFO] [1712690292.490580]: Inverse Restrictions: []\n", - "[INFO] [1712690292.490820]: -------------------\n", - "[INFO] [1712690292.491058]: SOMA.Learning \n", - "[INFO] [1712690292.491301]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712690292.491582]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing, SOMA.Learning}\n", - "[INFO] [1712690292.491842]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712690292.492136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.492629]: Instances: []\n", - "[INFO] [1712690292.492898]: Direct Instances: []\n", - "[INFO] [1712690292.493151]: Inverse Restrictions: []\n", - "[INFO] [1712690292.493391]: -------------------\n", - "[INFO] [1712690292.493625]: SOMA.Leg \n", - "[INFO] [1712690292.493859]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712690292.494133]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Leg, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712690292.494383]: Subclasses: []\n", - "[INFO] [1712690292.494668]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.495142]: Instances: []\n", - "[INFO] [1712690292.495408]: Direct Instances: []\n", - "[INFO] [1712690292.495699]: Inverse Restrictions: []\n", - "[INFO] [1712690292.495938]: -------------------\n", - "[INFO] [1712690292.496175]: SOMA.Lid \n", - "[INFO] [1712690292.496406]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690292.496668]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, SOMA.Lid, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690292.497001]: Subclasses: []\n", - "[INFO] [1712690292.497338]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.497849]: Instances: []\n", - "[INFO] [1712690292.498121]: Direct Instances: []\n", - "[INFO] [1712690292.498379]: Inverse Restrictions: []\n", - "[INFO] [1712690292.498627]: -------------------\n", - "[INFO] [1712690292.498899]: SOMA.LimbMotion \n", - "[INFO] [1712690292.499566]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712690292.499862]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.LimbMotion, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690292.500150]: Subclasses: []\n", - "[INFO] [1712690292.500469]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.500971]: Instances: []\n", - "[INFO] [1712690292.501251]: Direct Instances: []\n", - "[INFO] [1712690292.501520]: Inverse Restrictions: []\n", - "[INFO] [1712690292.501770]: -------------------\n", - "[INFO] [1712690292.502035]: SOMA.LinkedObject \n", - "[INFO] [1712690292.502278]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712690292.502550]: Ancestors: {DUL.Entity, SOMA.LinkedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.502819]: Subclasses: []\n", - "[INFO] [1712690292.503120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.503614]: Instances: []\n", - "[INFO] [1712690292.503871]: Direct Instances: []\n", - "[INFO] [1712690292.504218]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712690292.504483]: -------------------\n", - "[INFO] [1712690292.504731]: SOMA.LinkageState \n", - "[INFO] [1712690292.504981]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712690292.505249]: Ancestors: {DUL.Entity, SOMA.LinkageState, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.505497]: Subclasses: []\n", - "[INFO] [1712690292.505786]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.506290]: Instances: []\n", - "[INFO] [1712690292.506578]: Direct Instances: []\n", - "[INFO] [1712690292.506837]: Inverse Restrictions: []\n", - "[INFO] [1712690292.507075]: -------------------\n", - "[INFO] [1712690292.507312]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712690292.507553]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690292.507815]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690292.508086]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712690292.508406]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.508984]: Instances: []\n", - "[INFO] [1712690292.509310]: Direct Instances: []\n", - "[INFO] [1712690292.509606]: Inverse Restrictions: []\n", - "[INFO] [1712690292.509884]: -------------------\n", - "[INFO] [1712690292.510148]: SOMA.SpatialRelationRole \n", - "[INFO] [1712690292.510401]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712690292.510674]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SpatialRelationRole, DUL.Role}\n", - "[INFO] [1712690292.510944]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712690292.511242]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.511734]: Instances: []\n", - "[INFO] [1712690292.512006]: Direct Instances: []\n", - "[INFO] [1712690292.512264]: Inverse Restrictions: []\n", - "[INFO] [1712690292.512505]: -------------------\n", - "[INFO] [1712690292.512741]: SOMA.LocutionaryAction \n", - "[INFO] [1712690292.512979]: Super classes: [owl.Thing]\n", - "[INFO] [1712690292.514205]: Ancestors: {owl.Thing, SOMA.LocutionaryAction}\n", - "[INFO] [1712690292.514481]: Subclasses: []\n", - "[INFO] [1712690292.514782]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690292.515279]: Instances: []\n", - "[INFO] [1712690292.515553]: Direct Instances: []\n", - "[INFO] [1712690292.515808]: Inverse Restrictions: []\n", - "[INFO] [1712690292.516053]: -------------------\n", - "[INFO] [1712690292.516289]: SOMA.LookingAt \n", - "[INFO] [1712690292.516521]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690292.516840]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.LookingAt}\n", - "[INFO] [1712690292.517104]: Subclasses: []\n", - "[INFO] [1712690292.517397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.517886]: Instances: []\n", - "[INFO] [1712690292.518171]: Direct Instances: []\n", - "[INFO] [1712690292.518434]: Inverse Restrictions: []\n", - "[INFO] [1712690292.518679]: -------------------\n", - "[INFO] [1712690292.518919]: SOMA.LookingFor \n", - "[INFO] [1712690292.519156]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712690292.519410]: Ancestors: {owl.Thing, SOMA.LookingFor, SOMA.Perceiving}\n", - "[INFO] [1712690292.519672]: Subclasses: []\n", - "[INFO] [1712690292.519965]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.520452]: Instances: []\n", - "[INFO] [1712690292.520706]: Direct Instances: []\n", - "[INFO] [1712690292.520957]: Inverse Restrictions: []\n", - "[INFO] [1712690292.521195]: -------------------\n", - "[INFO] [1712690292.521441]: SOMA.Lowering \n", - "[INFO] [1712690292.521686]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690292.521948]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Lowering, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690292.522195]: Subclasses: []\n", - "[INFO] [1712690292.522476]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.522978]: Instances: []\n", - "[INFO] [1712690292.523243]: Direct Instances: []\n", - "[INFO] [1712690292.523491]: Inverse Restrictions: []\n", - "[INFO] [1712690292.523731]: -------------------\n", - "[INFO] [1712690292.523965]: SOMA.PhysicalAction \n", - "[INFO] [1712690292.524201]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712690292.524474]: Ancestors: {DUL.Entity, DUL.Event, SOMA.PhysicalAction, owl.Thing, DUL.Action}\n", - "[INFO] [1712690292.524724]: Subclasses: []\n", - "[INFO] [1712690292.525017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.525502]: Instances: []\n", - "[INFO] [1712690292.525750]: Direct Instances: []\n", - "[INFO] [1712690292.526044]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690292.526286]: -------------------\n", - "[INFO] [1712690292.526525]: SOMA.Markup_Language \n", - "[INFO] [1712690292.526759]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690292.527019]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, SOMA.Markup_Language, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.527276]: Subclasses: []\n", - "[INFO] [1712690292.527570]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.528054]: Instances: []\n", - "[INFO] [1712690292.528305]: Direct Instances: []\n", - "[INFO] [1712690292.528546]: Inverse Restrictions: []\n", - "[INFO] [1712690292.528795]: -------------------\n", - "[INFO] [1712690292.529038]: SOMA.Masterful \n", - "[INFO] [1712690292.529270]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712690292.529532]: Ancestors: {SOMA.Masterful, DUL.Entity, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.529775]: Subclasses: []\n", - "[INFO] [1712690292.530070]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.530562]: Instances: []\n", - "[INFO] [1712690292.530822]: Direct Instances: []\n", - "[INFO] [1712690292.531071]: Inverse Restrictions: []\n", - "[INFO] [1712690292.531306]: -------------------\n", - "[INFO] [1712690292.531552]: SOMA.Material \n", - "[INFO] [1712690292.531791]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690292.532056]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Material, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690292.532298]: Subclasses: []\n", - "[INFO] [1712690292.532574]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.533075]: Instances: []\n", - "[INFO] [1712690292.533359]: Direct Instances: []\n", - "[INFO] [1712690292.533629]: Inverse Restrictions: []\n", - "[INFO] [1712690292.533872]: -------------------\n", - "[INFO] [1712690292.534111]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712690292.534372]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712690292.534648]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, DUL.Object, owl.Thing, SOMA.MedicalDiagnosis, DUL.Description}\n", - "[INFO] [1712690292.534899]: Subclasses: []\n", - "[INFO] [1712690292.535195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712690292.535691]: Instances: []\n", - "[INFO] [1712690292.535977]: Direct Instances: []\n", - "[INFO] [1712690292.536240]: Inverse Restrictions: []\n", - "[INFO] [1712690292.536486]: -------------------\n", - "[INFO] [1712690292.536729]: SOMA.Memorizing \n", - "[INFO] [1712690292.537028]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712690292.537450]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.Memorizing, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing, SOMA.Learning}\n", - "[INFO] [1712690292.537850]: Subclasses: []\n", - "[INFO] [1712690292.538270]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.538796]: Instances: []\n", - "[INFO] [1712690292.539065]: Direct Instances: []\n", - "[INFO] [1712690292.539316]: Inverse Restrictions: []\n", - "[INFO] [1712690292.539562]: -------------------\n", - "[INFO] [1712690292.539808]: SOMA.MentalAction \n", - "[INFO] [1712690292.540450]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712690292.540729]: Ancestors: {DUL.Entity, DUL.Event, SOMA.MentalAction, owl.Thing, DUL.Action}\n", - "[INFO] [1712690292.541019]: Subclasses: []\n", - "[INFO] [1712690292.541343]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.541845]: Instances: []\n", - "[INFO] [1712690292.542114]: Direct Instances: []\n", - "[INFO] [1712690292.542411]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712690292.542664]: -------------------\n", - "[INFO] [1712690292.542902]: SOMA.MeshShape \n", - "[INFO] [1712690292.543175]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712690292.543445]: Ancestors: {DUL.Entity, SOMA.MeshShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690292.543711]: Subclasses: []\n", - "[INFO] [1712690292.544018]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasFilePath, rdf-schema.comment]\n", - "[INFO] [1712690292.544512]: Instances: []\n", - "[INFO] [1712690292.544766]: Direct Instances: []\n", - "[INFO] [1712690292.545015]: Inverse Restrictions: []\n", - "[INFO] [1712690292.545265]: -------------------\n", - "[INFO] [1712690292.545507]: SOMA.MeshShapeData \n", - "[INFO] [1712690292.545748]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690292.546006]: Ancestors: {DUL.Entity, SOMA.MeshShapeData, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.546245]: Subclasses: []\n", - "[INFO] [1712690292.546530]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.547028]: Instances: []\n", - "[INFO] [1712690292.547318]: Direct Instances: []\n", - "[INFO] [1712690292.547574]: Inverse Restrictions: []\n", - "[INFO] [1712690292.547816]: -------------------\n", - "[INFO] [1712690292.548064]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712690292.548301]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712690292.548581]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.548833]: Subclasses: []\n", - "[INFO] [1712690292.549127]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.549634]: Instances: []\n", - "[INFO] [1712690292.549898]: Direct Instances: []\n", - "[INFO] [1712690292.550170]: Inverse Restrictions: []\n", - "[INFO] [1712690292.550410]: -------------------\n", - "[INFO] [1712690292.550648]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712690292.550882]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690292.551142]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.551424]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712690292.551718]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.552210]: Instances: []\n", - "[INFO] [1712690292.552479]: Direct Instances: []\n", - "[INFO] [1712690292.552738]: Inverse Restrictions: []\n", - "[INFO] [1712690292.552984]: -------------------\n", - "[INFO] [1712690292.553222]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712690292.553455]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712690292.553716]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.MetaCognitionMemoryTopic, DUL.Role}\n", - "[INFO] [1712690292.553977]: Subclasses: []\n", - "[INFO] [1712690292.554274]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.554762]: Instances: []\n", - "[INFO] [1712690292.555017]: Direct Instances: []\n", - "[INFO] [1712690292.555266]: Inverse Restrictions: []\n", - "[INFO] [1712690292.555511]: -------------------\n", - "[INFO] [1712690292.555760]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712690292.556000]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712690292.556266]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.556510]: Subclasses: []\n", - "[INFO] [1712690292.556800]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.557304]: Instances: []\n", - "[INFO] [1712690292.557575]: Direct Instances: []\n", - "[INFO] [1712690292.557834]: Inverse Restrictions: []\n", - "[INFO] [1712690292.558071]: -------------------\n", - "[INFO] [1712690292.558305]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712690292.558535]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712690292.558794]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.559065]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712690292.559362]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.559873]: Instances: []\n", - "[INFO] [1712690292.560146]: Direct Instances: []\n", - "[INFO] [1712690292.560414]: Inverse Restrictions: []\n", - "[INFO] [1712690292.560655]: -------------------\n", - "[INFO] [1712690292.560897]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712690292.561130]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712690292.561391]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.MetacognitiveControlling, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.561656]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712690292.561956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.562449]: Instances: []\n", - "[INFO] [1712690292.562702]: Direct Instances: []\n", - "[INFO] [1712690292.562946]: Inverse Restrictions: []\n", - "[INFO] [1712690292.563183]: -------------------\n", - "[INFO] [1712690292.563428]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712690292.563664]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712690292.563919]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring}\n", - "[INFO] [1712690292.564158]: Subclasses: []\n", - "[INFO] [1712690292.564435]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.564938]: Instances: []\n", - "[INFO] [1712690292.565206]: Direct Instances: []\n", - "[INFO] [1712690292.565465]: Inverse Restrictions: []\n", - "[INFO] [1712690292.565704]: -------------------\n", - "[INFO] [1712690292.565945]: SOMA.MilkBottle \n", - "[INFO] [1712690292.566188]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712690292.566454]: Ancestors: {DUL.PhysicalArtifact, SOMA.Bottle, DUL.Entity, SOMA.MilkBottle, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.566729]: Subclasses: []\n", - "[INFO] [1712690292.567022]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.567520]: Instances: []\n", - "[INFO] [1712690292.567793]: Direct Instances: []\n", - "[INFO] [1712690292.568046]: Inverse Restrictions: []\n", - "[INFO] [1712690292.568285]: -------------------\n", - "[INFO] [1712690292.568530]: SOMA.MilkPack \n", - "[INFO] [1712690292.568773]: Super classes: [SOMA.Pack]\n", - "[INFO] [1712690292.569047]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pack, owl.Thing, DUL.Object, SOMA.DesignedContainer, SOMA.MilkPack, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.569288]: Subclasses: []\n", - "[INFO] [1712690292.569573]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.570078]: Instances: []\n", - "[INFO] [1712690292.570340]: Direct Instances: []\n", - "[INFO] [1712690292.570590]: Inverse Restrictions: []\n", - "[INFO] [1712690292.570826]: -------------------\n", - "[INFO] [1712690292.571055]: SOMA.Pack \n", - "[INFO] [1712690292.571282]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712690292.571538]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pack, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.571791]: Subclasses: [SOMA.MilkPack]\n", - "[INFO] [1712690292.572079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.572567]: Instances: []\n", - "[INFO] [1712690292.572828]: Direct Instances: []\n", - "[INFO] [1712690292.573086]: Inverse Restrictions: []\n", - "[INFO] [1712690292.573327]: -------------------\n", - "[INFO] [1712690292.573565]: SOMA.Mixing \n", - "[INFO] [1712690292.573797]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712690292.574056]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Mixing}\n", - "[INFO] [1712690292.574321]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712690292.574618]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.575111]: Instances: []\n", - "[INFO] [1712690292.575363]: Direct Instances: []\n", - "[INFO] [1712690292.575611]: Inverse Restrictions: []\n", - "[INFO] [1712690292.575862]: -------------------\n", - "[INFO] [1712690292.576112]: SOMA.MixingTheory \n", - "[INFO] [1712690292.576353]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712690292.576620]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.MixingTheory, owl.Thing, DUL.Object, DUL.Description, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690292.576869]: Subclasses: []\n", - "[INFO] [1712690292.577175]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.577666]: Instances: []\n", - "[INFO] [1712690292.577919]: Direct Instances: []\n", - "[INFO] [1712690292.578167]: Inverse Restrictions: []\n", - "[INFO] [1712690292.578398]: -------------------\n", - "[INFO] [1712690292.578638]: SOMA.MonitoringJointState \n", - "[INFO] [1712690292.578873]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712690292.579146]: Ancestors: {DUL.Entity, SOMA.MonitoringJointState, DUL.Concept, DUL.SocialObject, SOMA.Proprioceiving, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690292.579406]: Subclasses: []\n", - "[INFO] [1712690292.579702]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.580194]: Instances: []\n", - "[INFO] [1712690292.580461]: Direct Instances: []\n", - "[INFO] [1712690292.580711]: Inverse Restrictions: []\n", - "[INFO] [1712690292.580958]: -------------------\n", - "[INFO] [1712690292.581196]: SOMA.Proprioceiving \n", - "[INFO] [1712690292.581424]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690292.581668]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Proprioceiving, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690292.581922]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712690292.582207]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.582692]: Instances: []\n", - "[INFO] [1712690292.582993]: Direct Instances: []\n", - "[INFO] [1712690292.583262]: Inverse Restrictions: []\n", - "[INFO] [1712690292.583515]: -------------------\n", - "[INFO] [1712690292.583766]: SOMA.MovingAway \n", - "[INFO] [1712690292.584001]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690292.584276]: Ancestors: {DUL.Entity, SOMA.MovingAway, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", - "[INFO] [1712690292.584527]: Subclasses: []\n", - "[INFO] [1712690292.584816]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.585317]: Instances: []\n", - "[INFO] [1712690292.585602]: Direct Instances: []\n", - "[INFO] [1712690292.585863]: Inverse Restrictions: []\n", - "[INFO] [1712690292.586107]: -------------------\n", - "[INFO] [1712690292.586356]: SOMA.MovingTo \n", - "[INFO] [1712690292.586594]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712690292.586857]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.MovingTo}\n", - "[INFO] [1712690292.587119]: Subclasses: []\n", - "[INFO] [1712690292.587414]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.587901]: Instances: []\n", - "[INFO] [1712690292.588159]: Direct Instances: []\n", - "[INFO] [1712690292.588419]: Inverse Restrictions: []\n", - "[INFO] [1712690292.588658]: -------------------\n", - "[INFO] [1712690292.588896]: SOMA.Natural_Language \n", - "[INFO] [1712690292.589164]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712690292.589447]: Ancestors: {SOMA.Natural_Language, DUL.Entity, SOMA.System, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.589701]: Subclasses: []\n", - "[INFO] [1712690292.589991]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.590478]: Instances: []\n", - "[INFO] [1712690292.590748]: Direct Instances: []\n", - "[INFO] [1712690292.591063]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712690292.591313]: -------------------\n", - "[INFO] [1712690292.591547]: SOMA.Natural_Language_Text \n", - "[INFO] [1712690292.591780]: Super classes: [owl.Thing]\n", - "[INFO] [1712690292.592266]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", - "[INFO] [1712690292.592532]: Subclasses: []\n", - "[INFO] [1712690292.592830]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.593312]: Instances: []\n", - "[INFO] [1712690292.593588]: Direct Instances: []\n", - "[INFO] [1712690292.593880]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712690292.594127]: -------------------\n", - "[INFO] [1712690292.594366]: SOMA.NutellaJar \n", - "[INFO] [1712690292.594599]: Super classes: [SOMA.Jar]\n", - "[INFO] [1712690292.594858]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Jar, SOMA.DesignedContainer, SOMA.NutellaJar, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.595354]: Subclasses: []\n", - "[INFO] [1712690292.595698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.596198]: Instances: []\n", - "[INFO] [1712690292.596471]: Direct Instances: []\n", - "[INFO] [1712690292.596747]: Inverse Restrictions: []\n", - "[INFO] [1712690292.597037]: -------------------\n", - "[INFO] [1712690292.597298]: SOMA.Ontology \n", - "[INFO] [1712690292.597547]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712690292.598767]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", - "[INFO] [1712690292.599065]: Subclasses: []\n", - "[INFO] [1712690292.599384]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.599890]: Instances: []\n", - "[INFO] [1712690292.600245]: Direct Instances: []\n", - "[INFO] [1712690292.600581]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712690292.600850]: -------------------\n", - "[INFO] [1712690292.601102]: SOMA.Ontology_Language \n", - "[INFO] [1712690292.601351]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712690292.601619]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.601876]: Subclasses: []\n", - "[INFO] [1712690292.602186]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.602678]: Instances: []\n", - "[INFO] [1712690292.602945]: Direct Instances: []\n", - "[INFO] [1712690292.603252]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712690292.603512]: -------------------\n", - "[INFO] [1712690292.603761]: SOMA.Option \n", - "[INFO] [1712690292.604002]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712690292.604270]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, SOMA.Option, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.604516]: Subclasses: []\n", - "[INFO] [1712690292.604826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.605365]: Instances: []\n", - "[INFO] [1712690292.605628]: Direct Instances: []\n", - "[INFO] [1712690292.605882]: Inverse Restrictions: []\n", - "[INFO] [1712690292.606129]: -------------------\n", - "[INFO] [1712690292.606367]: SOMA.Singleton \n", - "[INFO] [1712690292.606601]: Super classes: [owl.Thing]\n", - "[INFO] [1712690292.606841]: Ancestors: {owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712690292.607104]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712690292.607398]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", - "[INFO] [1712690292.607895]: Instances: []\n", - "[INFO] [1712690292.608153]: Direct Instances: []\n", - "[INFO] [1712690292.608418]: Inverse Restrictions: []\n", - "[INFO] [1712690292.608661]: -------------------\n", - "[INFO] [1712690292.608899]: SOMA.Orienting \n", - "[INFO] [1712690292.609132]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712690292.609404]: Ancestors: {SOMA.Orienting, DUL.Entity, SOMA.Positioning, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690292.609664]: Subclasses: []\n", - "[INFO] [1712690292.609959]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.610445]: Instances: []\n", - "[INFO] [1712690292.610715]: Direct Instances: []\n", - "[INFO] [1712690292.610970]: Inverse Restrictions: []\n", - "[INFO] [1712690292.611207]: -------------------\n", - "[INFO] [1712690292.611440]: SOMA.Positioning \n", - "[INFO] [1712690292.611672]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690292.611930]: Ancestors: {DUL.Entity, SOMA.Positioning, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690292.612185]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712690292.612469]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.612981]: Instances: []\n", - "[INFO] [1712690292.613273]: Direct Instances: []\n", - "[INFO] [1712690292.613546]: Inverse Restrictions: []\n", - "[INFO] [1712690292.613790]: -------------------\n", - "[INFO] [1712690292.614037]: SOMA.Origin \n", - "[INFO] [1712690292.614281]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712690292.614559]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, SOMA.Origin, DUL.Role}\n", - "[INFO] [1712690292.614814]: Subclasses: []\n", - "[INFO] [1712690292.615100]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.615586]: Instances: []\n", - "[INFO] [1712690292.615851]: Direct Instances: []\n", - "[INFO] [1712690292.616147]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712690292.616391]: -------------------\n", - "[INFO] [1712690292.616631]: SOMA.Oven \n", - "[INFO] [1712690292.616912]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasDisposition.some(SOMA.TemperingByHeating)]\n", - "[INFO] [1712690292.617193]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Oven, owl.Thing, DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.617456]: Subclasses: []\n", - "[INFO] [1712690292.617766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690292.618267]: Instances: []\n", - "[INFO] [1712690292.618522]: Direct Instances: []\n", - "[INFO] [1712690292.618764]: Inverse Restrictions: []\n", - "[INFO] [1712690292.619008]: -------------------\n", - "[INFO] [1712690292.619246]: SOMA.TemperingByHeating \n", - "[INFO] [1712690292.619477]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712690292.619748]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.TemperingByHeating, DUL.Quality, owl.Thing, SOMA.Tempering}\n", - "[INFO] [1712690292.620014]: Subclasses: []\n", - "[INFO] [1712690292.620310]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.620798]: Instances: []\n", - "[INFO] [1712690292.621055]: Direct Instances: []\n", - "[INFO] [1712690292.621321]: Inverse Restrictions: [SOMA.Oven]\n", - "[INFO] [1712690292.621573]: -------------------\n", - "[INFO] [1712690292.621816]: SOMA.Pan \n", - "[INFO] [1712690292.622049]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712690292.622310]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pan, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.622559]: Subclasses: []\n", - "[INFO] [1712690292.622848]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.623327]: Instances: []\n", - "[INFO] [1712690292.623584]: Direct Instances: []\n", - "[INFO] [1712690292.623825]: Inverse Restrictions: []\n", - "[INFO] [1712690292.624057]: -------------------\n", - "[INFO] [1712690292.624285]: SOMA.Pancake \n", - "[INFO] [1712690292.624530]: Super classes: [SOMA.BakedGood]\n", - "[INFO] [1712690292.624799]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pancake, SOMA.BakedGood, DUL.Object, owl.Thing, SOMA.Dish, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.625044]: Subclasses: []\n", - "[INFO] [1712690292.625335]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690292.625822]: Instances: []\n", - "[INFO] [1712690292.626076]: Direct Instances: []\n", - "[INFO] [1712690292.626315]: Inverse Restrictions: []\n", - "[INFO] [1712690292.626552]: -------------------\n", - "[INFO] [1712690292.626795]: SOMA.PancakeMix \n", - "[INFO] [1712690292.627032]: Super classes: [DUL.DesignedSubstance]\n", - "[INFO] [1712690292.627295]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.PancakeMix, DUL.Substance, DUL.DesignedSubstance, DUL.PhysicalBody, DUL.FunctionalSubstance, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.627536]: Subclasses: []\n", - "[INFO] [1712690292.627828]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690292.628315]: Instances: []\n", - "[INFO] [1712690292.628573]: Direct Instances: []\n", - "[INFO] [1712690292.628820]: Inverse Restrictions: []\n", - "[INFO] [1712690292.629049]: -------------------\n", - "[INFO] [1712690292.629285]: SOMA.ParkingArms \n", - "[INFO] [1712690292.629524]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712690292.629795]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.AssumingArmPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ParkingArms}\n", - "[INFO] [1712690292.630055]: Subclasses: []\n", - "[INFO] [1712690292.630366]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.630898]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712690292.631173]: Direct Instances: [SOMA.parking_arms]\n", - "[INFO] [1712690292.631427]: Inverse Restrictions: []\n", - "[INFO] [1712690292.631666]: -------------------\n", - "[INFO] [1712690292.631901]: SOMA.PastaBowl \n", - "[INFO] [1712690292.632146]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712690292.632416]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Bowl, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, SOMA.PastaBowl, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.632663]: Subclasses: []\n", - "[INFO] [1712690292.632957]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.633476]: Instances: []\n", - "[INFO] [1712690292.633747]: Direct Instances: []\n", - "[INFO] [1712690292.634001]: Inverse Restrictions: []\n", - "[INFO] [1712690292.634238]: -------------------\n", - "[INFO] [1712690292.634484]: SOMA.PepperShaker \n", - "[INFO] [1712690292.634725]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712690292.634993]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.PepperShaker, SOMA.Shaker, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.635236]: Subclasses: []\n", - "[INFO] [1712690292.635517]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.636036]: Instances: []\n", - "[INFO] [1712690292.636321]: Direct Instances: []\n", - "[INFO] [1712690292.636575]: Inverse Restrictions: []\n", - "[INFO] [1712690292.636820]: -------------------\n", - "[INFO] [1712690292.637059]: SOMA.Shaker \n", - "[INFO] [1712690292.637310]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712690292.637560]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Shaker, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.637813]: Subclasses: [SOMA.PepperShaker, SOMA.SaltShaker]\n", - "[INFO] [1712690292.638099]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.638604]: Instances: []\n", - "[INFO] [1712690292.638872]: Direct Instances: []\n", - "[INFO] [1712690292.639125]: Inverse Restrictions: []\n", - "[INFO] [1712690292.639358]: -------------------\n", - "[INFO] [1712690292.639589]: SOMA.PhaseTransition \n", - "[INFO] [1712690292.639832]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712690292.640079]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", - "[INFO] [1712690292.640326]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712690292.640613]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.641130]: Instances: []\n", - "[INFO] [1712690292.641401]: Direct Instances: []\n", - "[INFO] [1712690292.641653]: Inverse Restrictions: []\n", - "[INFO] [1712690292.641892]: -------------------\n", - "[INFO] [1712690292.642128]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712690292.642381]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712690292.642648]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.PhysicalAccessibility, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.642894]: Subclasses: []\n", - "[INFO] [1712690292.643184]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.643686]: Instances: []\n", - "[INFO] [1712690292.643948]: Direct Instances: []\n", - "[INFO] [1712690292.644197]: Inverse Restrictions: []\n", - "[INFO] [1712690292.644431]: -------------------\n", - "[INFO] [1712690292.644668]: SOMA.PhysicalBlockage \n", - "[INFO] [1712690292.644922]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712690292.645197]: Ancestors: {DUL.Entity, SOMA.PhysicalBlockage, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.645448]: Subclasses: []\n", - "[INFO] [1712690292.645743]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.646246]: Instances: []\n", - "[INFO] [1712690292.646511]: Direct Instances: []\n", - "[INFO] [1712690292.646764]: Inverse Restrictions: []\n", - "[INFO] [1712690292.647012]: -------------------\n", - "[INFO] [1712690292.647270]: SOMA.PhysicalExistence \n", - "[INFO] [1712690292.647515]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712690292.647788]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, SOMA.PhysicalExistence, owl.Thing, SOMA.PhysicalState}\n", - "[INFO] [1712690292.648046]: Subclasses: []\n", - "[INFO] [1712690292.648337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.648827]: Instances: []\n", - "[INFO] [1712690292.649094]: Direct Instances: []\n", - "[INFO] [1712690292.649348]: Inverse Restrictions: []\n", - "[INFO] [1712690292.649590]: -------------------\n", - "[INFO] [1712690292.649823]: SOMA.PhysicalState \n", - "[INFO] [1712690292.650199]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712690292.650575]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing, SOMA.PhysicalState}\n", - "[INFO] [1712690292.650947]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712690292.651372]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690292.651902]: Instances: []\n", - "[INFO] [1712690292.652179]: Direct Instances: []\n", - "[INFO] [1712690292.652445]: Inverse Restrictions: []\n", - "[INFO] [1712690292.652689]: -------------------\n", - "[INFO] [1712690292.652934]: SOMA.PhysicsProcess \n", - "[INFO] [1712690292.653180]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712690292.653456]: Ancestors: {DUL.Entity, DUL.Event, DUL.Process, SOMA.PhysicsProcess, owl.Thing}\n", - "[INFO] [1712690292.653708]: Subclasses: []\n", - "[INFO] [1712690292.654005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690292.654486]: Instances: []\n", - "[INFO] [1712690292.654752]: Direct Instances: []\n", - "[INFO] [1712690292.655008]: Inverse Restrictions: []\n", - "[INFO] [1712690292.655246]: -------------------\n", - "[INFO] [1712690292.655478]: SOMA.PlacingTheory \n", - "[INFO] [1712690292.655719]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712690292.655995]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.PlacingTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690292.656242]: Subclasses: []\n", - "[INFO] [1712690292.656537]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.657041]: Instances: []\n", - "[INFO] [1712690292.657302]: Direct Instances: []\n", - "[INFO] [1712690292.657555]: Inverse Restrictions: []\n", - "[INFO] [1712690292.657788]: -------------------\n", - "[INFO] [1712690292.658020]: SOMA.PlanarJoint \n", - "[INFO] [1712690292.658262]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712690292.658527]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, SOMA.PlanarJoint, DUL.PhysicalObject}\n", - "[INFO] [1712690292.658769]: Subclasses: []\n", - "[INFO] [1712690292.659050]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.659545]: Instances: []\n", - "[INFO] [1712690292.659801]: Direct Instances: []\n", - "[INFO] [1712690292.660047]: Inverse Restrictions: []\n", - "[INFO] [1712690292.660275]: -------------------\n", - "[INFO] [1712690292.660506]: SOMA.PluginRole \n", - "[INFO] [1712690292.660753]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712690292.661176]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, SOMA.PluginRole, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.661487]: Subclasses: []\n", - "[INFO] [1712690292.661820]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.662330]: Instances: []\n", - "[INFO] [1712690292.662597]: Direct Instances: []\n", - "[INFO] [1712690292.662913]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712690292.663181]: -------------------\n", - "[INFO] [1712690292.663444]: SOMA.Pot \n", - "[INFO] [1712690292.663700]: Super classes: [SOMA.Crockery]\n", - "[INFO] [1712690292.663985]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pot, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.664267]: Subclasses: [SOMA.SoupPot]\n", - "[INFO] [1712690292.664578]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.665108]: Instances: []\n", - "[INFO] [1712690292.665382]: Direct Instances: []\n", - "[INFO] [1712690292.665648]: Inverse Restrictions: []\n", - "[INFO] [1712690292.665915]: -------------------\n", - "[INFO] [1712690292.666179]: SOMA.Pourable \n", - "[INFO] [1712690292.666461]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712690292.666759]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Pourable, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690292.667055]: Subclasses: []\n", - "[INFO] [1712690292.667397]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.667962]: Instances: []\n", - "[INFO] [1712690292.668268]: Direct Instances: []\n", - "[INFO] [1712690292.668612]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712690292.668913]: -------------------\n", - "[INFO] [1712690292.669193]: SOMA.PouredObject \n", - "[INFO] [1712690292.669459]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690292.669742]: Ancestors: {SOMA.PouredObject, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.670096]: Subclasses: []\n", - "[INFO] [1712690292.670415]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.670933]: Instances: []\n", - "[INFO] [1712690292.671210]: Direct Instances: []\n", - "[INFO] [1712690292.671504]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712690292.671746]: -------------------\n", - "[INFO] [1712690292.671985]: SOMA.Pouring \n", - "[INFO] [1712690292.672226]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712690292.672505]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712690292.672764]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712690292.673062]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690292.673566]: Instances: []\n", - "[INFO] [1712690292.674016]: Direct Instances: []\n", - "[INFO] [1712690292.674345]: Inverse Restrictions: []\n", - "[INFO] [1712690292.674600]: -------------------\n", - "[INFO] [1712690292.674847]: SOMA.PouringInto \n", - "[INFO] [1712690292.675084]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712690292.675356]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.PouringInto, SOMA.Pouring}\n", - "[INFO] [1712690292.675631]: Subclasses: []\n", - "[INFO] [1712690292.675940]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.676430]: Instances: []\n", - "[INFO] [1712690292.676697]: Direct Instances: []\n", - "[INFO] [1712690292.677047]: Inverse Restrictions: []\n", - "[INFO] [1712690292.677328]: -------------------\n", - "[INFO] [1712690292.677583]: SOMA.PouringOnto \n", - "[INFO] [1712690292.677838]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712690292.678117]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.PouringOnto, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712690292.678381]: Subclasses: []\n", - "[INFO] [1712690292.678678]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.679163]: Instances: []\n", - "[INFO] [1712690292.679431]: Direct Instances: []\n", - "[INFO] [1712690292.679683]: Inverse Restrictions: []\n", - "[INFO] [1712690292.679926]: -------------------\n", - "[INFO] [1712690292.680164]: SOMA.Prediction \n", - "[INFO] [1712690292.680397]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712690292.680664]: Ancestors: {SOMA.Prediction, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.680929]: Subclasses: []\n", - "[INFO] [1712690292.681233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.681721]: Instances: []\n", - "[INFO] [1712690292.681982]: Direct Instances: []\n", - "[INFO] [1712690292.682248]: Inverse Restrictions: []\n", - "[INFO] [1712690292.682491]: -------------------\n", - "[INFO] [1712690292.682730]: SOMA.Prospecting \n", - "[INFO] [1712690292.682961]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690292.683196]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.Prospecting, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.683462]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712690292.683758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.684250]: Instances: []\n", - "[INFO] [1712690292.684519]: Direct Instances: []\n", - "[INFO] [1712690292.684780]: Inverse Restrictions: []\n", - "[INFO] [1712690292.685025]: -------------------\n", - "[INFO] [1712690292.685265]: SOMA.Predilection \n", - "[INFO] [1712690292.686296]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712690292.686616]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Predilection}\n", - "[INFO] [1712690292.686878]: Subclasses: []\n", - "[INFO] [1712690292.687171]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690292.687663]: Instances: []\n", - "[INFO] [1712690292.687935]: Direct Instances: []\n", - "[INFO] [1712690292.688189]: Inverse Restrictions: []\n", - "[INFO] [1712690292.688427]: -------------------\n", - "[INFO] [1712690292.688659]: SOMA.PreferenceOrder \n", - "[INFO] [1712690292.689380]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712690292.689757]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.PreferenceOrder}\n", - "[INFO] [1712690292.690055]: Subclasses: []\n", - "[INFO] [1712690292.690381]: Properties: [SOMA.orders, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690292.690888]: Instances: []\n", - "[INFO] [1712690292.691170]: Direct Instances: []\n", - "[INFO] [1712690292.691441]: Inverse Restrictions: []\n", - "[INFO] [1712690292.691688]: -------------------\n", - "[INFO] [1712690292.691932]: SOMA.PreferenceRegion \n", - "[INFO] [1712690292.692171]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712690292.692439]: Ancestors: {DUL.Entity, SOMA.PreferenceRegion, DUL.Region, DUL.SocialObjectAttribute, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690292.692705]: Subclasses: []\n", - "[INFO] [1712690292.693018]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isRegionFor, rdf-schema.label]\n", - "[INFO] [1712690292.693515]: Instances: []\n", - "[INFO] [1712690292.693788]: Direct Instances: []\n", - "[INFO] [1712690292.694043]: Inverse Restrictions: []\n", - "[INFO] [1712690292.694285]: -------------------\n", - "[INFO] [1712690292.694523]: SOMA.PrismaticJoint \n", - "[INFO] [1712690292.694759]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712690292.695031]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, SOMA.PrismaticJoint, DUL.PhysicalObject}\n", - "[INFO] [1712690292.695284]: Subclasses: []\n", - "[INFO] [1712690292.695578]: Properties: [SOMA.hasJointLimit, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.696067]: Instances: []\n", - "[INFO] [1712690292.696340]: Direct Instances: []\n", - "[INFO] [1712690292.696593]: Inverse Restrictions: []\n", - "[INFO] [1712690292.696843]: -------------------\n", - "[INFO] [1712690292.697098]: SOMA.ProcessFlow \n", - "[INFO] [1712690292.697350]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712690292.697626]: Ancestors: {DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.ProcessFlow, DUL.Description}\n", - "[INFO] [1712690292.697888]: Subclasses: []\n", - "[INFO] [1712690292.698189]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.definesProcess, rdf-schema.comment]\n", - "[INFO] [1712690292.698672]: Instances: []\n", - "[INFO] [1712690292.698948]: Direct Instances: []\n", - "[INFO] [1712690292.699609]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712690292.699863]: -------------------\n", - "[INFO] [1712690292.700160]: SOMA.Progression \n", - "[INFO] [1712690292.700434]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712690292.701300]: Ancestors: {SOMA.Progression, DUL.Entity, owl.Thing, DUL.Situation}\n", - "[INFO] [1712690292.701583]: Subclasses: []\n", - "[INFO] [1712690292.701897]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies]\n", - "[INFO] [1712690292.702396]: Instances: []\n", - "[INFO] [1712690292.702671]: Direct Instances: []\n", - "[INFO] [1712690292.702931]: Inverse Restrictions: []\n", - "[INFO] [1712690292.703169]: -------------------\n", - "[INFO] [1712690292.703407]: SOMA.Protector \n", - "[INFO] [1712690292.703639]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712690292.703916]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, SOMA.Protector, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.704178]: Subclasses: []\n", - "[INFO] [1712690292.704473]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.704964]: Instances: []\n", - "[INFO] [1712690292.705220]: Direct Instances: []\n", - "[INFO] [1712690292.705478]: Inverse Restrictions: []\n", - "[INFO] [1712690292.705714]: -------------------\n", - "[INFO] [1712690292.706009]: SOMA.ProximalTheory \n", - "[INFO] [1712690292.706301]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712690292.706595]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, SOMA.ProximalTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690292.706870]: Subclasses: []\n", - "[INFO] [1712690292.707202]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.707761]: Instances: []\n", - "[INFO] [1712690292.708055]: Direct Instances: []\n", - "[INFO] [1712690292.708346]: Inverse Restrictions: []\n", - "[INFO] [1712690292.708617]: -------------------\n", - "[INFO] [1712690292.708889]: SOMA.PushingAway \n", - "[INFO] [1712690292.709158]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712690292.709484]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Pushing, DUL.EventType, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.PushingAway}\n", - "[INFO] [1712690292.709781]: Subclasses: []\n", - "[INFO] [1712690292.710134]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.710725]: Instances: []\n", - "[INFO] [1712690292.711049]: Direct Instances: []\n", - "[INFO] [1712690292.711347]: Inverse Restrictions: []\n", - "[INFO] [1712690292.711633]: -------------------\n", - "[INFO] [1712690292.711909]: SOMA.PushingDown \n", - "[INFO] [1712690292.712191]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712690292.712492]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Pushing, DUL.EventType, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.PushingDown}\n", - "[INFO] [1712690292.712758]: Subclasses: []\n", - "[INFO] [1712690292.713129]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.713656]: Instances: []\n", - "[INFO] [1712690292.713936]: Direct Instances: []\n", - "[INFO] [1712690292.714194]: Inverse Restrictions: []\n", - "[INFO] [1712690292.714436]: -------------------\n", - "[INFO] [1712690292.714688]: SOMA.PuttingDown \n", - "[INFO] [1712690292.714922]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690292.715196]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, SOMA.PuttingDown, SOMA.PhysicalTask, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712690292.715444]: Subclasses: []\n", - "[INFO] [1712690292.715734]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.716221]: Instances: []\n", - "[INFO] [1712690292.716486]: Direct Instances: []\n", - "[INFO] [1712690292.716793]: Inverse Restrictions: []\n", - "[INFO] [1712690292.717046]: -------------------\n", - "[INFO] [1712690292.717287]: SOMA.QualityTransition \n", - "[INFO] [1712690292.717523]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712690292.717782]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.QualityTransition, owl.Thing, DUL.Transition}\n", - "[INFO] [1712690292.718057]: Subclasses: []\n", - "[INFO] [1712690292.718359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.718848]: Instances: []\n", - "[INFO] [1712690292.719102]: Direct Instances: []\n", - "[INFO] [1712690292.719342]: Inverse Restrictions: []\n", - "[INFO] [1712690292.719579]: -------------------\n", - "[INFO] [1712690292.719824]: SOMA.Query \n", - "[INFO] [1712690292.720061]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712690292.720328]: Ancestors: {DUL.Entity, SOMA.Message, SOMA.Query, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.720572]: Subclasses: []\n", - "[INFO] [1712690292.720859]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.721366]: Instances: []\n", - "[INFO] [1712690292.721635]: Direct Instances: []\n", - "[INFO] [1712690292.721924]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712690292.722173]: -------------------\n", - "[INFO] [1712690292.722414]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712690292.722649]: Super classes: [owl.Thing]\n", - "[INFO] [1712690292.724571]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", - "[INFO] [1712690292.724839]: Subclasses: []\n", - "[INFO] [1712690292.725137]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.725644]: Instances: []\n", - "[INFO] [1712690292.725908]: Direct Instances: []\n", - "[INFO] [1712690292.726159]: Inverse Restrictions: []\n", - "[INFO] [1712690292.726397]: -------------------\n", - "[INFO] [1712690292.726632]: SOMA.QueryEngine \n", - "[INFO] [1712690292.726874]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690292.727142]: Ancestors: {DUL.Entity, SOMA.QueryEngine, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.727389]: Subclasses: []\n", - "[INFO] [1712690292.727673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.728159]: Instances: []\n", - "[INFO] [1712690292.728432]: Direct Instances: []\n", - "[INFO] [1712690292.728689]: Inverse Restrictions: []\n", - "[INFO] [1712690292.728936]: -------------------\n", - "[INFO] [1712690292.729173]: SOMA.RaspberryJamJar \n", - "[INFO] [1712690292.729406]: Super classes: [SOMA.JamJar]\n", - "[INFO] [1712690292.729686]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.RaspberryJamJar, SOMA.JamJar, owl.Thing, DUL.Object, SOMA.Jar, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.729939]: Subclasses: []\n", - "[INFO] [1712690292.730223]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.730710]: Instances: []\n", - "[INFO] [1712690292.730977]: Direct Instances: []\n", - "[INFO] [1712690292.731240]: Inverse Restrictions: []\n", - "[INFO] [1712690292.731484]: -------------------\n", - "[INFO] [1712690292.731729]: SOMA.Reaching \n", - "[INFO] [1712690292.731960]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712690292.732230]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.Reaching}\n", - "[INFO] [1712690292.732492]: Subclasses: []\n", - "[INFO] [1712690292.732801]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.733286]: Instances: []\n", - "[INFO] [1712690292.733580]: Direct Instances: []\n", - "[INFO] [1712690292.733848]: Inverse Restrictions: []\n", - "[INFO] [1712690292.734089]: -------------------\n", - "[INFO] [1712690292.734329]: SOMA.Retracting \n", - "[INFO] [1712690292.734560]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712690292.734823]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.Retracting}\n", - "[INFO] [1712690292.735109]: Subclasses: []\n", - "[INFO] [1712690292.735409]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.735900]: Instances: []\n", - "[INFO] [1712690292.736159]: Direct Instances: []\n", - "[INFO] [1712690292.736406]: Inverse Restrictions: []\n", - "[INFO] [1712690292.736656]: -------------------\n", - "[INFO] [1712690292.736898]: SOMA.Reasoner \n", - "[INFO] [1712690292.737135]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690292.737378]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.737632]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712690292.737924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.738423]: Instances: []\n", - "[INFO] [1712690292.738674]: Direct Instances: []\n", - "[INFO] [1712690292.738918]: Inverse Restrictions: []\n", - "[INFO] [1712690292.739165]: -------------------\n", - "[INFO] [1712690292.739403]: SOMA.RecipientRole \n", - "[INFO] [1712690292.739633]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712690292.739892]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.BeneficiaryRole, SOMA.RecipientRole, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690292.740149]: Subclasses: []\n", - "[INFO] [1712690292.740443]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.740936]: Instances: []\n", - "[INFO] [1712690292.741211]: Direct Instances: []\n", - "[INFO] [1712690292.741476]: Inverse Restrictions: []\n", - "[INFO] [1712690292.741712]: -------------------\n", - "[INFO] [1712690292.741947]: SOMA.RecordedEpisode \n", - "[INFO] [1712690292.742191]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712690292.742428]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712690292.742685]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712690292.742978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", - "[INFO] [1712690292.743465]: Instances: []\n", - "[INFO] [1712690292.743720]: Direct Instances: []\n", - "[INFO] [1712690292.743973]: Inverse Restrictions: []\n", - "[INFO] [1712690292.744215]: -------------------\n", - "[INFO] [1712690292.744455]: SOMA.RedColor \n", - "[INFO] [1712690292.744698]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712690292.744990]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, SOMA.RedColor, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690292.745263]: Subclasses: []\n", - "[INFO] [1712690292.745559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.746054]: Instances: []\n", - "[INFO] [1712690292.746333]: Direct Instances: []\n", - "[INFO] [1712690292.746589]: Inverse Restrictions: []\n", - "[INFO] [1712690292.746834]: -------------------\n", - "[INFO] [1712690292.747074]: SOMA.Refrigerator \n", - "[INFO] [1712690292.747315]: Super classes: [SOMA.Appliance, SOMA.DesignedContainer, SOMA.hasPhysicalComponent.some(SOMA.Door)]\n", - "[INFO] [1712690292.747603]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Refrigerator, owl.Thing, DUL.Object, SOMA.Appliance, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.747867]: Subclasses: []\n", - "[INFO] [1712690292.748165]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712690292.748648]: Instances: []\n", - "[INFO] [1712690292.748932]: Direct Instances: []\n", - "[INFO] [1712690292.749197]: Inverse Restrictions: []\n", - "[INFO] [1712690292.749440]: -------------------\n", - "[INFO] [1712690292.749678]: SOMA.Reification \n", - "[INFO] [1712690292.749925]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712690292.750230]: Ancestors: {DUL.Entity, SOMA.Reification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690292.750490]: Subclasses: []\n", - "[INFO] [1712690292.750781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", - "[INFO] [1712690292.751311]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712690292.751613]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712690292.751881]: Inverse Restrictions: []\n", - "[INFO] [1712690292.752128]: -------------------\n", - "[INFO] [1712690292.752369]: SOMA.RelationalDatabase \n", - "[INFO] [1712690292.752606]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712690292.752878]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.Database, DUL.Object, SOMA.RelationalDatabase, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.753142]: Subclasses: []\n", - "[INFO] [1712690292.753448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.753936]: Instances: []\n", - "[INFO] [1712690292.754192]: Direct Instances: []\n", - "[INFO] [1712690292.754441]: Inverse Restrictions: []\n", - "[INFO] [1712690292.754699]: -------------------\n", - "[INFO] [1712690292.754969]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712690292.755224]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712690292.755496]: Ancestors: {SOMA.Computer_Language, SOMA.RelationalQueryLanguage, SOMA.System, DUL.Entity, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.755740]: Subclasses: []\n", - "[INFO] [1712690292.756040]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.756531]: Instances: []\n", - "[INFO] [1712690292.756793]: Direct Instances: []\n", - "[INFO] [1712690292.757037]: Inverse Restrictions: []\n", - "[INFO] [1712690292.757271]: -------------------\n", - "[INFO] [1712690292.757516]: SOMA.RelevantPart \n", - "[INFO] [1712690292.757757]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712690292.758016]: Ancestors: {DUL.Entity, SOMA.Feature, owl.Thing, DUL.Object, SOMA.RelevantPart}\n", - "[INFO] [1712690292.758261]: Subclasses: []\n", - "[INFO] [1712690292.758542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.759045]: Instances: []\n", - "[INFO] [1712690292.759314]: Direct Instances: []\n", - "[INFO] [1712690292.759574]: Inverse Restrictions: []\n", - "[INFO] [1712690292.759826]: -------------------\n", - "[INFO] [1712690292.760069]: SOMA.Remembering \n", - "[INFO] [1712690292.760312]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712690292.760567]: Ancestors: {owl.Thing, SOMA.Remembering}\n", - "[INFO] [1712690292.760813]: Subclasses: []\n", - "[INFO] [1712690292.761116]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.761607]: Instances: []\n", - "[INFO] [1712690292.761861]: Direct Instances: []\n", - "[INFO] [1712690292.762105]: Inverse Restrictions: []\n", - "[INFO] [1712690292.762344]: -------------------\n", - "[INFO] [1712690292.762589]: SOMA.Retrospecting \n", - "[INFO] [1712690292.762822]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712690292.763079]: Ancestors: {SOMA.Retrospecting, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.763338]: Subclasses: []\n", - "[INFO] [1712690292.763629]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.764116]: Instances: []\n", - "[INFO] [1712690292.764383]: Direct Instances: []\n", - "[INFO] [1712690292.764690]: Inverse Restrictions: []\n", - "[INFO] [1712690292.764939]: -------------------\n", - "[INFO] [1712690292.765188]: SOMA.RemovedObject \n", - "[INFO] [1712690292.765419]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712690292.765685]: Ancestors: {DUL.Entity, SOMA.ExcludedObject, DUL.Concept, DUL.SocialObject, SOMA.RemovedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.765949]: Subclasses: []\n", - "[INFO] [1712690292.766244]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.766767]: Instances: []\n", - "[INFO] [1712690292.767060]: Direct Instances: []\n", - "[INFO] [1712690292.767326]: Inverse Restrictions: []\n", - "[INFO] [1712690292.767579]: -------------------\n", - "[INFO] [1712690292.767821]: SOMA.Replanning \n", - "[INFO] [1712690292.768069]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712690292.768352]: Ancestors: {SOMA.Deciding, SOMA.Planning, SOMA.Replanning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.768608]: Subclasses: []\n", - "[INFO] [1712690292.768904]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.769402]: Instances: []\n", - "[INFO] [1712690292.769657]: Direct Instances: []\n", - "[INFO] [1712690292.769918]: Inverse Restrictions: []\n", - "[INFO] [1712690292.770168]: -------------------\n", - "[INFO] [1712690292.770410]: SOMA.RevoluteJoint \n", - "[INFO] [1712690292.770654]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712690292.770928]: Ancestors: {DUL.Entity, SOMA.RevoluteJoint, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690292.771180]: Subclasses: []\n", - "[INFO] [1712690292.771480]: Properties: [SOMA.hasJointLimit, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.771966]: Instances: []\n", - "[INFO] [1712690292.772243]: Direct Instances: []\n", - "[INFO] [1712690292.772501]: Inverse Restrictions: []\n", - "[INFO] [1712690292.772743]: -------------------\n", - "[INFO] [1712690292.772985]: SOMA.Surface \n", - "[INFO] [1712690292.773221]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712690292.773462]: Ancestors: {DUL.Entity, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690292.773722]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712690292.774016]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.774520]: Instances: []\n", - "[INFO] [1712690292.774792]: Direct Instances: []\n", - "[INFO] [1712690292.775052]: Inverse Restrictions: []\n", - "[INFO] [1712690292.775294]: -------------------\n", - "[INFO] [1712690292.775533]: SOMA.Rubbing \n", - "[INFO] [1712690292.775763]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712690292.776027]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing, SOMA.Rubbing}\n", - "[INFO] [1712690292.776292]: Subclasses: []\n", - "[INFO] [1712690292.776583]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.777076]: Instances: []\n", - "[INFO] [1712690292.777350]: Direct Instances: []\n", - "[INFO] [1712690292.777607]: Inverse Restrictions: []\n", - "[INFO] [1712690292.777850]: -------------------\n", - "[INFO] [1712690292.778087]: SOMA.SaladBowl \n", - "[INFO] [1712690292.778324]: Super classes: [SOMA.Bowl]\n", - "[INFO] [1712690292.778606]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Bowl, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, SOMA.SaladBowl, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.778860]: Subclasses: []\n", - "[INFO] [1712690292.779145]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.779632]: Instances: []\n", - "[INFO] [1712690292.779905]: Direct Instances: []\n", - "[INFO] [1712690292.780174]: Inverse Restrictions: []\n", - "[INFO] [1712690292.780421]: -------------------\n", - "[INFO] [1712690292.780662]: SOMA.SaltShaker \n", - "[INFO] [1712690292.780912]: Super classes: [SOMA.Shaker]\n", - "[INFO] [1712690292.781187]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Shaker, SOMA.SaltShaker, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.781441]: Subclasses: []\n", - "[INFO] [1712690292.781730]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.782217]: Instances: []\n", - "[INFO] [1712690292.782487]: Direct Instances: []\n", - "[INFO] [1712690292.782755]: Inverse Restrictions: []\n", - "[INFO] [1712690292.783000]: -------------------\n", - "[INFO] [1712690292.783237]: SOMA.Scene \n", - "[INFO] [1712690292.783535]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712690292.783829]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.Scene}\n", - "[INFO] [1712690292.784090]: Subclasses: []\n", - "[INFO] [1712690292.784390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies, DUL.includesEvent]\n", - "[INFO] [1712690292.784882]: Instances: []\n", - "[INFO] [1712690292.785180]: Direct Instances: []\n", - "[INFO] [1712690292.785485]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712690292.785738]: -------------------\n", - "[INFO] [1712690292.785991]: SOMA.SelectedObject \n", - "[INFO] [1712690292.786237]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712690292.786504]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.SelectedObject, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", - "[INFO] [1712690292.786768]: Subclasses: []\n", - "[INFO] [1712690292.787069]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.787566]: Instances: []\n", - "[INFO] [1712690292.787839]: Direct Instances: []\n", - "[INFO] [1712690292.788146]: Inverse Restrictions: []\n", - "[INFO] [1712690292.788394]: -------------------\n", - "[INFO] [1712690292.788634]: SOMA.Selecting \n", - "[INFO] [1712690292.788872]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712690292.789142]: Ancestors: {SOMA.Deciding, SOMA.Selecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.789403]: Subclasses: []\n", - "[INFO] [1712690292.789698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.790186]: Instances: []\n", - "[INFO] [1712690292.790439]: Direct Instances: []\n", - "[INFO] [1712690292.790681]: Inverse Restrictions: []\n", - "[INFO] [1712690292.790930]: -------------------\n", - "[INFO] [1712690292.791175]: SOMA.SelectingItem \n", - "[INFO] [1712690292.791830]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712690292.792118]: Ancestors: {SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.792385]: Subclasses: []\n", - "[INFO] [1712690292.792689]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.793188]: Instances: []\n", - "[INFO] [1712690292.793444]: Direct Instances: []\n", - "[INFO] [1712690292.793693]: Inverse Restrictions: []\n", - "[INFO] [1712690292.793944]: -------------------\n", - "[INFO] [1712690292.794189]: SOMA.SelfReflection \n", - "[INFO] [1712690292.794430]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712690292.794692]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.MetacognitiveControlling, DUL.Object, owl.Thing, SOMA.SelfReflection}\n", - "[INFO] [1712690292.794941]: Subclasses: []\n", - "[INFO] [1712690292.795242]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690292.795729]: Instances: []\n", - "[INFO] [1712690292.795986]: Direct Instances: []\n", - "[INFO] [1712690292.796234]: Inverse Restrictions: []\n", - "[INFO] [1712690292.796725]: -------------------\n", - "[INFO] [1712690292.797079]: SOMA.Serving \n", - "[INFO] [1712690292.798468]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712690292.798805]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Delivering, DUL.EventType, DUL.Object, SOMA.PhysicalTask, SOMA.Serving, owl.Thing}\n", - "[INFO] [1712690292.799081]: Subclasses: []\n", - "[INFO] [1712690292.799395]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.799896]: Instances: []\n", - "[INFO] [1712690292.800195]: Direct Instances: []\n", - "[INFO] [1712690292.800452]: Inverse Restrictions: []\n", - "[INFO] [1712690292.800704]: -------------------\n", - "[INFO] [1712690292.800960]: SOMA.SettingGripper \n", - "[INFO] [1712690292.801200]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712690292.801467]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.SettingGripper, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690292.801708]: Subclasses: []\n", - "[INFO] [1712690292.802008]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.802493]: Instances: []\n", - "[INFO] [1712690292.802749]: Direct Instances: []\n", - "[INFO] [1712690292.803014]: Inverse Restrictions: []\n", - "[INFO] [1712690292.803262]: -------------------\n", - "[INFO] [1712690292.803506]: SOMA.6DPose \n", - "[INFO] [1712690292.803776]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712690292.804055]: Ancestors: {DUL.Entity, SOMA.6DPose, DUL.SpaceRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690292.804310]: Subclasses: []\n", - "[INFO] [1712690292.804613]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", - "[INFO] [1712690292.805140]: Instances: []\n", - "[INFO] [1712690292.805449]: Direct Instances: []\n", - "[INFO] [1712690292.805775]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712690292.806050]: -------------------\n", - "[INFO] [1712690292.806306]: SOMA.Sharpness \n", - "[INFO] [1712690292.806551]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690292.806822]: Ancestors: {DUL.Entity, SOMA.Sharpness, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690292.807074]: Subclasses: []\n", - "[INFO] [1712690292.807363]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.807867]: Instances: []\n", - "[INFO] [1712690292.808150]: Direct Instances: []\n", - "[INFO] [1712690292.808416]: Inverse Restrictions: []\n", - "[INFO] [1712690292.808661]: -------------------\n", - "[INFO] [1712690292.808900]: SOMA.Simulating \n", - "[INFO] [1712690292.809161]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712690292.809432]: Ancestors: {SOMA.Simulating, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690292.809682]: Subclasses: []\n", - "[INFO] [1712690292.809968]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.810463]: Instances: []\n", - "[INFO] [1712690292.810724]: Direct Instances: []\n", - "[INFO] [1712690292.810974]: Inverse Restrictions: []\n", - "[INFO] [1712690292.811209]: -------------------\n", - "[INFO] [1712690292.811445]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712690292.811690]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712690292.811962]: Ancestors: {SOMA.Reasoner, DUL.Entity, SOMA.Simulation_Reasoner, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.812210]: Subclasses: []\n", - "[INFO] [1712690292.812501]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.813015]: Instances: []\n", - "[INFO] [1712690292.813298]: Direct Instances: []\n", - "[INFO] [1712690292.813563]: Inverse Restrictions: []\n", - "[INFO] [1712690292.813809]: -------------------\n", - "[INFO] [1712690292.814057]: SOMA.Sink \n", - "[INFO] [1712690292.814306]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690292.814576]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.Sink, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690292.814829]: Subclasses: []\n", - "[INFO] [1712690292.815115]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.815612]: Instances: []\n", - "[INFO] [1712690292.815877]: Direct Instances: []\n", - "[INFO] [1712690292.816128]: Inverse Restrictions: []\n", - "[INFO] [1712690292.816366]: -------------------\n", - "[INFO] [1712690292.816598]: SOMA.Size \n", - "[INFO] [1712690292.816860]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690292.817134]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Size, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690292.817387]: Subclasses: []\n", - "[INFO] [1712690292.817674]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.818202]: Instances: []\n", - "[INFO] [1712690292.818480]: Direct Instances: []\n", - "[INFO] [1712690292.818747]: Inverse Restrictions: []\n", - "[INFO] [1712690292.818986]: -------------------\n", - "[INFO] [1712690292.819223]: SOMA.Slicing \n", - "[INFO] [1712690292.819482]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712690292.819755]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting, SOMA.Slicing}\n", - "[INFO] [1712690292.820014]: Subclasses: []\n", - "[INFO] [1712690292.820302]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.820790]: Instances: []\n", - "[INFO] [1712690292.821072]: Direct Instances: []\n", - "[INFO] [1712690292.821329]: Inverse Restrictions: []\n", - "[INFO] [1712690292.821573]: -------------------\n", - "[INFO] [1712690292.821815]: SOMA.Sluggishness \n", - "[INFO] [1712690292.822051]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712690292.822315]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Sluggishness}\n", - "[INFO] [1712690292.822577]: Subclasses: []\n", - "[INFO] [1712690292.822874]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.823361]: Instances: []\n", - "[INFO] [1712690292.823614]: Direct Instances: []\n", - "[INFO] [1712690292.823855]: Inverse Restrictions: []\n", - "[INFO] [1712690292.824099]: -------------------\n", - "[INFO] [1712690292.824342]: SOMA.SocialState \n", - "[INFO] [1712690292.824597]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712690292.824863]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing, SOMA.SocialState}\n", - "[INFO] [1712690292.825120]: Subclasses: []\n", - "[INFO] [1712690292.825419]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690292.825915]: Instances: []\n", - "[INFO] [1712690292.826190]: Direct Instances: []\n", - "[INFO] [1712690292.826446]: Inverse Restrictions: []\n", - "[INFO] [1712690292.826682]: -------------------\n", - "[INFO] [1712690292.826917]: SOMA.Sofa \n", - "[INFO] [1712690292.827151]: Super classes: [SOMA.DesignedFurniture, SOMA.hasDisposition.exactly(1, SOMA.CanBeSatOn)]\n", - "[INFO] [1712690292.827414]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Sofa, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.827678]: Subclasses: []\n", - "[INFO] [1712690292.827976]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690292.828465]: Instances: []\n", - "[INFO] [1712690292.828727]: Direct Instances: []\n", - "[INFO] [1712690292.828980]: Inverse Restrictions: []\n", - "[INFO] [1712690292.829231]: -------------------\n", - "[INFO] [1712690292.829477]: SOMA.Software_Configuration \n", - "[INFO] [1712690292.829723]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712690292.830018]: Ancestors: {DUL.Configuration, DUL.Entity, DUL.Collection, DUL.SocialObject, SOMA.Software_Configuration, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.830296]: Subclasses: []\n", - "[INFO] [1712690292.830614]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.isDescribedBy]\n", - "[INFO] [1712690292.831112]: Instances: []\n", - "[INFO] [1712690292.831393]: Direct Instances: []\n", - "[INFO] [1712690292.831748]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712690292.832002]: -------------------\n", - "[INFO] [1712690292.832246]: SOMA.SoftwareLibrary \n", - "[INFO] [1712690292.832484]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712690292.832760]: Ancestors: {SOMA.SoftwareLibrary, DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Software, DUL.Description, DUL.Design}\n", - "[INFO] [1712690292.833026]: Subclasses: []\n", - "[INFO] [1712690292.833324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690292.833837]: Instances: []\n", - "[INFO] [1712690292.834110]: Direct Instances: []\n", - "[INFO] [1712690292.834366]: Inverse Restrictions: []\n", - "[INFO] [1712690292.834608]: -------------------\n", - "[INFO] [1712690292.834843]: SOMA.SoupPot \n", - "[INFO] [1712690292.835076]: Super classes: [SOMA.Pot]\n", - "[INFO] [1712690292.835346]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Pot, SOMA.SoupPot, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.Tableware, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.835616]: Subclasses: []\n", - "[INFO] [1712690292.835914]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.836417]: Instances: []\n", - "[INFO] [1712690292.836690]: Direct Instances: []\n", - "[INFO] [1712690292.836966]: Inverse Restrictions: []\n", - "[INFO] [1712690292.837214]: -------------------\n", - "[INFO] [1712690292.837455]: SOMA.SourceMaterialRole \n", - "[INFO] [1712690292.837694]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712690292.837965]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, SOMA.SourceMaterialRole, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.838223]: Subclasses: []\n", - "[INFO] [1712690292.838516]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.839006]: Instances: []\n", - "[INFO] [1712690292.839278]: Direct Instances: []\n", - "[INFO] [1712690292.839538]: Inverse Restrictions: []\n", - "[INFO] [1712690292.839783]: -------------------\n", - "[INFO] [1712690292.840020]: SOMA.Spatula \n", - "[INFO] [1712690292.840258]: Super classes: [SOMA.Cutlery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasPhysicalComponent.some(SOMA.DesignedSpade)]\n", - "[INFO] [1712690292.840528]: Ancestors: {DUL.PhysicalArtifact, SOMA.Spatula, DUL.Entity, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.840798]: Subclasses: []\n", - "[INFO] [1712690292.841094]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent]\n", - "[INFO] [1712690292.841594]: Instances: []\n", - "[INFO] [1712690292.841854]: Direct Instances: []\n", - "[INFO] [1712690292.842104]: Inverse Restrictions: []\n", - "[INFO] [1712690292.842351]: -------------------\n", - "[INFO] [1712690292.842595]: SOMA.SphereShape \n", - "[INFO] [1712690292.842856]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712690292.843122]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion, SOMA.SphereShape}\n", - "[INFO] [1712690292.843363]: Subclasses: []\n", - "[INFO] [1712690292.843654]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", - "[INFO] [1712690292.844157]: Instances: []\n", - "[INFO] [1712690292.844422]: Direct Instances: []\n", - "[INFO] [1712690292.844676]: Inverse Restrictions: []\n", - "[INFO] [1712690292.844920]: -------------------\n", - "[INFO] [1712690292.845164]: SOMA.Spoon \n", - "[INFO] [1712690292.845853]: Super classes: [SOMA.Cutlery, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasPhysicalComponent.some(SOMA.Bowl), SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle), SOMA.hasDisposition.exactly(1, SOMA.Insertion), SOMA.hasDisposition.exactly(1, SOMA.Insertion & SOMA.affordsTrigger.only(DUL.classifies.only(DUL.Substance)))]\n", - "[INFO] [1712690292.846142]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Spoon, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.846426]: Subclasses: [SOMA.TableSpoon, SOMA.TeaSpoon]\n", - "[INFO] [1712690292.846728]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690292.847230]: Instances: []\n", - "[INFO] [1712690292.847518]: Direct Instances: []\n", - "[INFO] [1712690292.847785]: Inverse Restrictions: []\n", - "[INFO] [1712690292.848031]: -------------------\n", - "[INFO] [1712690292.848271]: SOMA.Standing \n", - "[INFO] [1712690292.848506]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712690292.848778]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.Standing, SOMA.PosturalMoving}\n", - "[INFO] [1712690292.849049]: Subclasses: []\n", - "[INFO] [1712690292.849348]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.849845]: Instances: []\n", - "[INFO] [1712690292.850142]: Direct Instances: []\n", - "[INFO] [1712690292.850391]: Inverse Restrictions: []\n", - "[INFO] [1712690292.850631]: -------------------\n", - "[INFO] [1712690292.850881]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712690292.851121]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712690292.851386]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.StaticFrictionAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", - "[INFO] [1712690292.851667]: Subclasses: []\n", - "[INFO] [1712690292.851978]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.852471]: Instances: []\n", - "[INFO] [1712690292.852726]: Direct Instances: []\n", - "[INFO] [1712690292.852982]: Inverse Restrictions: []\n", - "[INFO] [1712690292.853222]: -------------------\n", - "[INFO] [1712690292.853472]: SOMA.Status \n", - "[INFO] [1712690292.853713]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712690292.853975]: Ancestors: {DUL.Entity, SOMA.Status, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Parameter}\n", - "[INFO] [1712690292.854218]: Subclasses: []\n", - "[INFO] [1712690292.854498]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.855001]: Instances: []\n", - "[INFO] [1712690292.855266]: Direct Instances: []\n", - "[INFO] [1712690292.855544]: Inverse Restrictions: []\n", - "[INFO] [1712690292.855787]: -------------------\n", - "[INFO] [1712690292.856026]: SOMA.StatusFailure \n", - "[INFO] [1712690292.856269]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690292.856537]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.StatusFailure}\n", - "[INFO] [1712690292.856786]: Subclasses: []\n", - "[INFO] [1712690292.857075]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.857655]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712690292.857954]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712690292.858233]: Inverse Restrictions: []\n", - "[INFO] [1712690292.858484]: -------------------\n", - "[INFO] [1712690292.858730]: SOMA.StimulusRole \n", - "[INFO] [1712690292.858974]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712690292.859247]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.StimulusRole, DUL.Role}\n", - "[INFO] [1712690292.859510]: Subclasses: []\n", - "[INFO] [1712690292.859807]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.860293]: Instances: []\n", - "[INFO] [1712690292.860552]: Direct Instances: []\n", - "[INFO] [1712690292.860816]: Inverse Restrictions: []\n", - "[INFO] [1712690292.861069]: -------------------\n", - "[INFO] [1712690292.861311]: SOMA.Stirring \n", - "[INFO] [1712690292.861547]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712690292.861813]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.Stirring, SOMA.PhysicalTask, SOMA.Mixing, owl.Thing}\n", - "[INFO] [1712690292.862064]: Subclasses: []\n", - "[INFO] [1712690292.862357]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690292.862846]: Instances: []\n", - "[INFO] [1712690292.863097]: Direct Instances: []\n", - "[INFO] [1712690292.863335]: Inverse Restrictions: []\n", - "[INFO] [1712690292.863575]: -------------------\n", - "[INFO] [1712690292.863814]: SOMA.Storage \n", - "[INFO] [1712690292.864058]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712690292.864323]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, SOMA.Storage, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690292.864564]: Subclasses: []\n", - "[INFO] [1712690292.864861]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.865387]: Instances: []\n", - "[INFO] [1712690292.865664]: Direct Instances: []\n", - "[INFO] [1712690292.865924]: Inverse Restrictions: []\n", - "[INFO] [1712690292.866166]: -------------------\n", - "[INFO] [1712690292.866398]: SOMA.Stove \n", - "[INFO] [1712690292.866635]: Super classes: [SOMA.Appliance, SOMA.hasPhysicalComponent.some(SOMA.Hotplate)]\n", - "[INFO] [1712690292.866946]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Stove, owl.Thing, DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.867203]: Subclasses: []\n", - "[INFO] [1712690292.867501]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712690292.867990]: Instances: []\n", - "[INFO] [1712690292.868278]: Direct Instances: []\n", - "[INFO] [1712690292.868541]: Inverse Restrictions: []\n", - "[INFO] [1712690292.868785]: -------------------\n", - "[INFO] [1712690292.869029]: SOMA.StructuralDesign \n", - "[INFO] [1712690292.869265]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712690292.869528]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.StructuralDesign, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690292.869787]: Subclasses: []\n", - "[INFO] [1712690292.870081]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.870569]: Instances: []\n", - "[INFO] [1712690292.870829]: Direct Instances: []\n", - "[INFO] [1712690292.871084]: Inverse Restrictions: []\n", - "[INFO] [1712690292.871324]: -------------------\n", - "[INFO] [1712690292.871557]: SOMA.TaskInvocation \n", - "[INFO] [1712690292.871814]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712690292.872104]: Ancestors: {DUL.Entity, DUL.Workflow, DUL.SocialObject, SOMA.TaskInvocation, DUL.Plan, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690292.872358]: Subclasses: []\n", - "[INFO] [1712690292.872653]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesTask, rdf-schema.label]\n", - "[INFO] [1712690292.873140]: Instances: []\n", - "[INFO] [1712690292.873412]: Direct Instances: []\n", - "[INFO] [1712690292.873729]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712690292.873978]: -------------------\n", - "[INFO] [1712690292.874214]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712690292.874463]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712690292.874710]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690292.875071]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712690292.875728]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.876279]: Instances: []\n", - "[INFO] [1712690292.876554]: Direct Instances: []\n", - "[INFO] [1712690292.876818]: Inverse Restrictions: []\n", - "[INFO] [1712690292.877068]: -------------------\n", - "[INFO] [1712690292.877309]: SOMA.Successfulness \n", - "[INFO] [1712690292.877552]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712690292.877825]: Ancestors: {DUL.Entity, SOMA.Successfulness, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690292.878076]: Subclasses: []\n", - "[INFO] [1712690292.878376]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.878868]: Instances: []\n", - "[INFO] [1712690292.879151]: Direct Instances: []\n", - "[INFO] [1712690292.879421]: Inverse Restrictions: []\n", - "[INFO] [1712690292.879670]: -------------------\n", - "[INFO] [1712690292.879920]: SOMA.SugarDispenser \n", - "[INFO] [1712690292.880165]: Super classes: [SOMA.Dispenser]\n", - "[INFO] [1712690292.880438]: Ancestors: {SOMA.Dispenser, SOMA.SugarDispenser, DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.880710]: Subclasses: []\n", - "[INFO] [1712690292.881017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.881577]: Instances: []\n", - "[INFO] [1712690292.881850]: Direct Instances: []\n", - "[INFO] [1712690292.882107]: Inverse Restrictions: []\n", - "[INFO] [1712690292.882366]: -------------------\n", - "[INFO] [1712690292.882617]: SOMA.SupportState \n", - "[INFO] [1712690292.883667]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712690292.884000]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing, SOMA.SupportState}\n", - "[INFO] [1712690292.884274]: Subclasses: []\n", - "[INFO] [1712690292.884581]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690292.885077]: Instances: []\n", - "[INFO] [1712690292.885344]: Direct Instances: []\n", - "[INFO] [1712690292.885601]: Inverse Restrictions: []\n", - "[INFO] [1712690292.885861]: -------------------\n", - "[INFO] [1712690292.886119]: SOMA.Supporter \n", - "[INFO] [1712690292.886389]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712690292.886678]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, SOMA.Supporter, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.886939]: Subclasses: []\n", - "[INFO] [1712690292.887247]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.887754]: Instances: []\n", - "[INFO] [1712690292.888023]: Direct Instances: []\n", - "[INFO] [1712690292.888330]: Inverse Restrictions: []\n", - "[INFO] [1712690292.888571]: -------------------\n", - "[INFO] [1712690292.888982]: SOMA.SupportTheory \n", - "[INFO] [1712690292.889362]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712690292.889762]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.SupportTheory, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690292.890139]: Subclasses: []\n", - "[INFO] [1712690292.890556]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.891186]: Instances: []\n", - "[INFO] [1712690292.891578]: Direct Instances: []\n", - "[INFO] [1712690292.891954]: Inverse Restrictions: []\n", - "[INFO] [1712690292.892226]: -------------------\n", - "[INFO] [1712690292.892479]: SOMA.SupportedObject \n", - "[INFO] [1712690292.892720]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712690292.893007]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, SOMA.SupportedObject, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690292.893265]: Subclasses: []\n", - "[INFO] [1712690292.893557]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.894044]: Instances: []\n", - "[INFO] [1712690292.894296]: Direct Instances: []\n", - "[INFO] [1712690292.894547]: Inverse Restrictions: []\n", - "[INFO] [1712690292.894789]: -------------------\n", - "[INFO] [1712690292.895027]: SOMA.SymbolicReasoner \n", - "[INFO] [1712690292.895265]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712690292.895525]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.SymbolicReasoner, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.895770]: Subclasses: []\n", - "[INFO] [1712690292.896070]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.896553]: Instances: []\n", - "[INFO] [1712690292.896834]: Direct Instances: []\n", - "[INFO] [1712690292.897085]: Inverse Restrictions: []\n", - "[INFO] [1712690292.897325]: -------------------\n", - "[INFO] [1712690292.897570]: SOMA.TableFork \n", - "[INFO] [1712690292.897805]: Super classes: [SOMA.Fork]\n", - "[INFO] [1712690292.898069]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.TableFork, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Fork, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.898309]: Subclasses: []\n", - "[INFO] [1712690292.898602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.899096]: Instances: []\n", - "[INFO] [1712690292.899352]: Direct Instances: []\n", - "[INFO] [1712690292.899596]: Inverse Restrictions: []\n", - "[INFO] [1712690292.899834]: -------------------\n", - "[INFO] [1712690292.900123]: SOMA.TableKnife \n", - "[INFO] [1712690292.900368]: Super classes: [SOMA.KitchenKnife]\n", - "[INFO] [1712690292.900639]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Knife, SOMA.TableKnife, SOMA.CuttingTool, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.KitchenKnife}\n", - "[INFO] [1712690292.900886]: Subclasses: []\n", - "[INFO] [1712690292.901170]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.901672]: Instances: []\n", - "[INFO] [1712690292.901938]: Direct Instances: []\n", - "[INFO] [1712690292.902185]: Inverse Restrictions: []\n", - "[INFO] [1712690292.902422]: -------------------\n", - "[INFO] [1712690292.902651]: SOMA.TableSpoon \n", - "[INFO] [1712690292.902919]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712690292.903205]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Spoon, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.TableSpoon}\n", - "[INFO] [1712690292.903460]: Subclasses: []\n", - "[INFO] [1712690292.903761]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.904242]: Instances: []\n", - "[INFO] [1712690292.904521]: Direct Instances: []\n", - "[INFO] [1712690292.904783]: Inverse Restrictions: []\n", - "[INFO] [1712690292.905027]: -------------------\n", - "[INFO] [1712690292.905264]: SOMA.TeaSpoon \n", - "[INFO] [1712690292.905499]: Super classes: [SOMA.Spoon]\n", - "[INFO] [1712690292.905769]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Spoon, SOMA.Cutlery, owl.Thing, DUL.Object, SOMA.Tableware, SOMA.TeaSpoon, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690292.906022]: Subclasses: []\n", - "[INFO] [1712690292.906317]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.906809]: Instances: []\n", - "[INFO] [1712690292.907065]: Direct Instances: []\n", - "[INFO] [1712690292.907328]: Inverse Restrictions: []\n", - "[INFO] [1712690292.907577]: -------------------\n", - "[INFO] [1712690292.907814]: SOMA.Tap \n", - "[INFO] [1712690292.908048]: Super classes: [SOMA.DesignedComponent]\n", - "[INFO] [1712690292.908310]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, SOMA.Tap, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690292.908571]: Subclasses: []\n", - "[INFO] [1712690292.908872]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.909364]: Instances: []\n", - "[INFO] [1712690292.909615]: Direct Instances: []\n", - "[INFO] [1712690292.909862]: Inverse Restrictions: []\n", - "[INFO] [1712690292.910097]: -------------------\n", - "[INFO] [1712690292.910348]: SOMA.Tapping \n", - "[INFO] [1712690292.910587]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712690292.910852]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Tapping, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690292.911094]: Subclasses: []\n", - "[INFO] [1712690292.911379]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.911882]: Instances: []\n", - "[INFO] [1712690292.912146]: Direct Instances: []\n", - "[INFO] [1712690292.912401]: Inverse Restrictions: []\n", - "[INFO] [1712690292.912640]: -------------------\n", - "[INFO] [1712690292.912880]: SOMA.Taxis \n", - "[INFO] [1712690292.913122]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712690292.913398]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Taxis, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690292.913650]: Subclasses: []\n", - "[INFO] [1712690292.913956]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.914476]: Instances: []\n", - "[INFO] [1712690292.914752]: Direct Instances: []\n", - "[INFO] [1712690292.915010]: Inverse Restrictions: []\n", - "[INFO] [1712690292.915256]: -------------------\n", - "[INFO] [1712690292.915495]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712690292.915750]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712690292.916020]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.916276]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712690292.916564]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712690292.917086]: Instances: []\n", - "[INFO] [1712690292.917361]: Direct Instances: []\n", - "[INFO] [1712690292.917627]: Inverse Restrictions: []\n", - "[INFO] [1712690292.917875]: -------------------\n", - "[INFO] [1712690292.918142]: SOMA.Temperature \n", - "[INFO] [1712690292.918413]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712690292.918683]: Ancestors: {DUL.Entity, SOMA.Temperature, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690292.918947]: Subclasses: []\n", - "[INFO] [1712690292.919246]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712690292.919734]: Instances: []\n", - "[INFO] [1712690292.919988]: Direct Instances: []\n", - "[INFO] [1712690292.920647]: Inverse Restrictions: []\n", - "[INFO] [1712690292.920923]: -------------------\n", - "[INFO] [1712690292.921183]: SOMA.TemperatureRegion \n", - "[INFO] [1712690292.921431]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690292.921698]: Ancestors: {SOMA.TemperatureRegion, DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690292.921942]: Subclasses: []\n", - "[INFO] [1712690292.922230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.922736]: Instances: []\n", - "[INFO] [1712690292.923004]: Direct Instances: []\n", - "[INFO] [1712690292.923319]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712690292.923567]: -------------------\n", - "[INFO] [1712690292.923809]: SOMA.Tempering \n", - "[INFO] [1712690292.924080]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712690292.924344]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Tempering}\n", - "[INFO] [1712690292.924598]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712690292.924892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.925390]: Instances: []\n", - "[INFO] [1712690292.925661]: Direct Instances: []\n", - "[INFO] [1712690292.925920]: Inverse Restrictions: []\n", - "[INFO] [1712690292.926164]: -------------------\n", - "[INFO] [1712690292.926401]: SOMA.TemperingByCooling \n", - "[INFO] [1712690292.926639]: Super classes: [SOMA.Tempering]\n", - "[INFO] [1712690292.926901]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Tempering, SOMA.TemperingByCooling}\n", - "[INFO] [1712690292.927164]: Subclasses: []\n", - "[INFO] [1712690292.927457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.927947]: Instances: []\n", - "[INFO] [1712690292.928204]: Direct Instances: []\n", - "[INFO] [1712690292.928469]: Inverse Restrictions: []\n", - "[INFO] [1712690292.928715]: -------------------\n", - "[INFO] [1712690292.928958]: SOMA.ThinkAloud \n", - "[INFO] [1712690292.929190]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712690292.929452]: Ancestors: {DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.ThinkAloud}\n", - "[INFO] [1712690292.929711]: Subclasses: []\n", - "[INFO] [1712690292.930006]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.930499]: Instances: []\n", - "[INFO] [1712690292.930755]: Direct Instances: []\n", - "[INFO] [1712690292.931012]: Inverse Restrictions: []\n", - "[INFO] [1712690292.931262]: -------------------\n", - "[INFO] [1712690292.931504]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712690292.931738]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690292.932003]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudActionTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.932262]: Subclasses: []\n", - "[INFO] [1712690292.932552]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.933034]: Instances: []\n", - "[INFO] [1712690292.933327]: Direct Instances: []\n", - "[INFO] [1712690292.933613]: Inverse Restrictions: []\n", - "[INFO] [1712690292.933860]: -------------------\n", - "[INFO] [1712690292.934095]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712690292.934340]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712690292.934623]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudGeneralKnowledgeTopic, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.934871]: Subclasses: []\n", - "[INFO] [1712690292.935160]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.935652]: Instances: []\n", - "[INFO] [1712690292.935943]: Direct Instances: []\n", - "[INFO] [1712690292.936199]: Inverse Restrictions: []\n", - "[INFO] [1712690292.936438]: -------------------\n", - "[INFO] [1712690292.936673]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712690292.936922]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690292.937181]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.937433]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712690292.937720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.938212]: Instances: []\n", - "[INFO] [1712690292.938483]: Direct Instances: []\n", - "[INFO] [1712690292.938740]: Inverse Restrictions: []\n", - "[INFO] [1712690292.938978]: -------------------\n", - "[INFO] [1712690292.939211]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712690292.939442]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690292.939713]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.939973]: Subclasses: []\n", - "[INFO] [1712690292.940267]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.940756]: Instances: []\n", - "[INFO] [1712690292.941018]: Direct Instances: []\n", - "[INFO] [1712690292.941275]: Inverse Restrictions: []\n", - "[INFO] [1712690292.941517]: -------------------\n", - "[INFO] [1712690292.941754]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712690292.941984]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690292.942256]: Ancestors: {SOMA.ThinkAloudOpinionTopic, DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.942508]: Subclasses: []\n", - "[INFO] [1712690292.942795]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.943273]: Instances: []\n", - "[INFO] [1712690292.943544]: Direct Instances: []\n", - "[INFO] [1712690292.943799]: Inverse Restrictions: []\n", - "[INFO] [1712690292.944038]: -------------------\n", - "[INFO] [1712690292.944273]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712690292.944503]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690292.944777]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.945030]: Subclasses: []\n", - "[INFO] [1712690292.945322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.945806]: Instances: []\n", - "[INFO] [1712690292.946083]: Direct Instances: []\n", - "[INFO] [1712690292.946337]: Inverse Restrictions: []\n", - "[INFO] [1712690292.946584]: -------------------\n", - "[INFO] [1712690292.946820]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712690292.947049]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690292.947325]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudPlanTopic, DUL.Object, owl.Thing, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.947575]: Subclasses: []\n", - "[INFO] [1712690292.947864]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.948349]: Instances: []\n", - "[INFO] [1712690292.948609]: Direct Instances: []\n", - "[INFO] [1712690292.948867]: Inverse Restrictions: []\n", - "[INFO] [1712690292.949108]: -------------------\n", - "[INFO] [1712690292.949342]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712690292.949567]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712690292.949827]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690292.950130]: Subclasses: []\n", - "[INFO] [1712690292.950428]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.950909]: Instances: []\n", - "[INFO] [1712690292.951164]: Direct Instances: []\n", - "[INFO] [1712690292.951429]: Inverse Restrictions: []\n", - "[INFO] [1712690292.951685]: -------------------\n", - "[INFO] [1712690292.951925]: SOMA.Threshold \n", - "[INFO] [1712690292.952158]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712690292.952418]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Threshold, DUL.Concept, owl.Thing, DUL.Object, DUL.Parameter}\n", - "[INFO] [1712690292.952674]: Subclasses: []\n", - "[INFO] [1712690292.952967]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.953461]: Instances: []\n", - "[INFO] [1712690292.953715]: Direct Instances: []\n", - "[INFO] [1712690292.953969]: Inverse Restrictions: []\n", - "[INFO] [1712690292.954209]: -------------------\n", - "[INFO] [1712690292.954441]: SOMA.Throwing \n", - "[INFO] [1712690292.954677]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712690292.954940]: Ancestors: {DUL.Entity, SOMA.Throwing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690292.955200]: Subclasses: []\n", - "[INFO] [1712690292.955493]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.955974]: Instances: []\n", - "[INFO] [1712690292.956227]: Direct Instances: []\n", - "[INFO] [1712690292.956465]: Inverse Restrictions: []\n", - "[INFO] [1712690292.956705]: -------------------\n", - "[INFO] [1712690292.956951]: SOMA.TimeRole \n", - "[INFO] [1712690292.957189]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712690292.957453]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.TimeRole, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690292.957695]: Subclasses: []\n", - "[INFO] [1712690292.957979]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.958471]: Instances: []\n", - "[INFO] [1712690292.958730]: Direct Instances: []\n", - "[INFO] [1712690292.958980]: Inverse Restrictions: []\n", - "[INFO] [1712690292.959212]: -------------------\n", - "[INFO] [1712690292.959450]: SOMA.Transporting \n", - "[INFO] [1712690292.959699]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712690292.959970]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", - "[INFO] [1712690292.960219]: Subclasses: []\n", - "[INFO] [1712690292.960504]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.960991]: Instances: []\n", - "[INFO] [1712690292.961271]: Direct Instances: []\n", - "[INFO] [1712690292.961526]: Inverse Restrictions: []\n", - "[INFO] [1712690292.961768]: -------------------\n", - "[INFO] [1712690292.962001]: SOMA.TrashContainer \n", - "[INFO] [1712690292.962232]: Super classes: [SOMA.DesignedContainer]\n", - "[INFO] [1712690292.962499]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.TrashContainer, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.962754]: Subclasses: []\n", - "[INFO] [1712690292.963063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.963577]: Instances: []\n", - "[INFO] [1712690292.963867]: Direct Instances: []\n", - "[INFO] [1712690292.964124]: Inverse Restrictions: []\n", - "[INFO] [1712690292.964365]: -------------------\n", - "[INFO] [1712690292.964605]: SOMA.Triplestore \n", - "[INFO] [1712690292.964872]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712690292.965167]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Triplestore, owl.Thing, SOMA.Database, DUL.Object, SOMA.GraphDatabase, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690292.965421]: Subclasses: []\n", - "[INFO] [1712690292.965729]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.966227]: Instances: []\n", - "[INFO] [1712690292.966492]: Direct Instances: []\n", - "[INFO] [1712690292.966790]: Inverse Restrictions: []\n", - "[INFO] [1712690292.967052]: -------------------\n", - "[INFO] [1712690292.967302]: SOMA.Turning \n", - "[INFO] [1712690292.967544]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712690292.967811]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Turning, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.PosturalMoving}\n", - "[INFO] [1712690292.968072]: Subclasses: []\n", - "[INFO] [1712690292.968365]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.968874]: Instances: []\n", - "[INFO] [1712690292.969145]: Direct Instances: []\n", - "[INFO] [1712690292.969401]: Inverse Restrictions: []\n", - "[INFO] [1712690292.969641]: -------------------\n", - "[INFO] [1712690292.969878]: SOMA.UnavailableSoftware \n", - "[INFO] [1712690292.970112]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712690292.970377]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, SOMA.UnavailableSoftware, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.970636]: Subclasses: []\n", - "[INFO] [1712690292.970932]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.971411]: Instances: []\n", - "[INFO] [1712690292.971662]: Direct Instances: []\n", - "[INFO] [1712690292.971914]: Inverse Restrictions: []\n", - "[INFO] [1712690292.972163]: -------------------\n", - "[INFO] [1712690292.972407]: SOMA.Unsuccessfulness \n", - "[INFO] [1712690292.972641]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712690292.972894]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690292.973159]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712690292.973452]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.973945]: Instances: []\n", - "[INFO] [1712690292.974197]: Direct Instances: []\n", - "[INFO] [1712690292.974456]: Inverse Restrictions: []\n", - "[INFO] [1712690292.974700]: -------------------\n", - "[INFO] [1712690292.974938]: SOMA.VideoData \n", - "[INFO] [1712690292.975175]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712690292.975438]: Ancestors: {DUL.Entity, SOMA.VideoData, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690292.975693]: Subclasses: []\n", - "[INFO] [1712690292.975987]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690292.976476]: Instances: []\n", - "[INFO] [1712690292.976734]: Direct Instances: []\n", - "[INFO] [1712690292.976996]: Inverse Restrictions: []\n", - "[INFO] [1712690292.977246]: -------------------\n", - "[INFO] [1712690292.977491]: SOMA.Wardrobe \n", - "[INFO] [1712690292.977729]: Super classes: [SOMA.Cupboard]\n", - "[INFO] [1712690292.977990]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Cupboard, owl.Thing, DUL.Object, SOMA.DesignedFurniture, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Wardrobe, DUL.PhysicalObject}\n", - "[INFO] [1712690292.978248]: Subclasses: []\n", - "[INFO] [1712690292.978542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.979032]: Instances: []\n", - "[INFO] [1712690292.979286]: Direct Instances: []\n", - "[INFO] [1712690292.979531]: Inverse Restrictions: []\n", - "[INFO] [1712690292.979893]: -------------------\n", - "[INFO] [1712690292.980134]: SOMA.WaterBottle \n", - "[INFO] [1712690292.980370]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712690292.980634]: Ancestors: {DUL.PhysicalArtifact, SOMA.Bottle, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, SOMA.WaterBottle}\n", - "[INFO] [1712690292.980879]: Subclasses: []\n", - "[INFO] [1712690292.981167]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.981668]: Instances: []\n", - "[INFO] [1712690292.981934]: Direct Instances: []\n", - "[INFO] [1712690292.982189]: Inverse Restrictions: []\n", - "[INFO] [1712690292.982421]: -------------------\n", - "[INFO] [1712690292.982653]: SOMA.WaterGlass \n", - "[INFO] [1712690292.982892]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712690292.983171]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.Tableware, SOMA.Crockery, SOMA.WaterGlass, DUL.Object, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, SOMA.Glass, DUL.PhysicalObject}\n", - "[INFO] [1712690292.983485]: Subclasses: []\n", - "[INFO] [1712690292.983783]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.984277]: Instances: []\n", - "[INFO] [1712690292.984556]: Direct Instances: []\n", - "[INFO] [1712690292.984815]: Inverse Restrictions: []\n", - "[INFO] [1712690292.985063]: -------------------\n", - "[INFO] [1712690292.985301]: SOMA.WineBottle \n", - "[INFO] [1712690292.985548]: Super classes: [SOMA.Bottle]\n", - "[INFO] [1712690292.985829]: Ancestors: {DUL.PhysicalArtifact, SOMA.Bottle, DUL.Entity, SOMA.WineBottle, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690292.986091]: Subclasses: []\n", - "[INFO] [1712690292.986386]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.986871]: Instances: []\n", - "[INFO] [1712690292.987139]: Direct Instances: []\n", - "[INFO] [1712690292.987395]: Inverse Restrictions: []\n", - "[INFO] [1712690292.987634]: -------------------\n", - "[INFO] [1712690292.987870]: SOMA.WineGlass \n", - "[INFO] [1712690292.988104]: Super classes: [SOMA.Glass]\n", - "[INFO] [1712690292.988370]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.WineGlass, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.DesignedTool, SOMA.Glass, DUL.PhysicalObject}\n", - "[INFO] [1712690292.988635]: Subclasses: []\n", - "[INFO] [1712690292.988938]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690292.989430]: Instances: []\n", - "[INFO] [1712690292.989686]: Direct Instances: []\n", - "[INFO] [1712690292.989936]: Inverse Restrictions: []\n", - "[INFO] [1712690292.990185]: -------------------\n", - "[INFO] [1712690292.990428]: SOMA.3DPosition \n", - "[INFO] [1712690292.990690]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712690292.990956]: Ancestors: {DUL.Entity, SOMA.3DPosition, DUL.SpaceRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690292.991200]: Subclasses: []\n", - "[INFO] [1712690292.991494]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", - "[INFO] [1712690292.991998]: Instances: []\n", - "[INFO] [1712690292.992261]: Direct Instances: []\n", - "[INFO] [1712690292.992510]: Inverse Restrictions: []\n", - "[INFO] [1712690292.992745]: -------------------\n", - "[INFO] [1712690292.992983]: SOMA.Affordance \n", - "[INFO] [1712690292.993253]: Super classes: [DUL.Relation, DUL.Relation, DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task), DUL.describes.only(SOMA.Disposition), SOMA.definesBearer.exactly(1, DUL.Role), SOMA.definesTrigger.exactly(1, DUL.Role), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712690292.993507]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Affordance, DUL.Relation, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690292.993760]: Subclasses: [SOMA.AffordsBeingSitOn]\n", - "[INFO] [1712690292.994055]: Properties: [rdf-schema.isDefinedBy, SOMA.definesBearer, SOMA.definesTrigger, rdf-schema.comment, DUL.definesTask]\n", - "[INFO] [1712690292.994546]: Instances: []\n", - "[INFO] [1712690292.994813]: Direct Instances: []\n", - "[INFO] [1712690292.995193]: Inverse Restrictions: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712690292.995439]: -------------------\n", - "[INFO] [1712690292.995679]: SOMA.Disposition \n", - "[INFO] [1712690292.995935]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role)), DUL.isDescribedBy.exactly(1, SOMA.Affordance), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesEventType.exactly(1, DUL.EventType) & SOMA.definesTrigger.exactly(1, DUL.Role))]\n", - "[INFO] [1712690292.996185]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690292.996468]: Subclasses: [SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable, SOMA.Blockage, SOMA.Deposition, SOMA.Variability, SOMA.Capability, SOMA.Connectivity, SOMA.Containment, SOMA.Cuttability, SOMA.Graspability, SOMA.Pourable]\n", - "[INFO] [1712690292.996775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712690292.997378]: Instances: []\n", - "[INFO] [1712690292.997809]: Direct Instances: []\n", - "[INFO] [1712690292.998146]: Inverse Restrictions: [SOMA.Affordance, SOMA.Affordance]\n", - "[INFO] [1712690292.998404]: -------------------\n", - "[INFO] [1712690292.998649]: SOMA.Setpoint \n", - "[INFO] [1712690292.998893]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712690292.999164]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Parameter, SOMA.Setpoint}\n", - "[INFO] [1712690292.999445]: Subclasses: []\n", - "[INFO] [1712690292.999743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.000282]: Instances: []\n", - "[INFO] [1712690293.000574]: Direct Instances: []\n", - "[INFO] [1712690293.000844]: Inverse Restrictions: []\n", - "[INFO] [1712690293.001097]: -------------------\n", - "[INFO] [1712690293.001358]: SOMA.Answer \n", - "[INFO] [1712690293.001613]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712690293.001868]: Ancestors: {DUL.Entity, SOMA.Answer, SOMA.Message, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.002131]: Subclasses: []\n", - "[INFO] [1712690293.002431]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.002924]: Instances: []\n", - "[INFO] [1712690293.003187]: Direct Instances: []\n", - "[INFO] [1712690293.003474]: Inverse Restrictions: [SOMA.AnsweringTask, SOMA.AnsweringTask]\n", - "[INFO] [1712690293.003757]: -------------------\n", - "[INFO] [1712690293.004017]: SOMA.Message \n", - "[INFO] [1712690293.004268]: Super classes: [SOMA.Item, SOMA.Item, DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization), DUL.hasTask.some(SOMA.CommunicationTask), DUL.classifies.only(DUL.InformationRealization)]\n", - "[INFO] [1712690293.004521]: Ancestors: {DUL.Entity, SOMA.Message, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.004785]: Subclasses: [SOMA.Answer, SOMA.Query, SOMA.Answer, SOMA.Query]\n", - "[INFO] [1712690293.005097]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", - "[INFO] [1712690293.005608]: Instances: []\n", - "[INFO] [1712690293.005874]: Direct Instances: []\n", - "[INFO] [1712690293.006192]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690293.006453]: -------------------\n", - "[INFO] [1712690293.006704]: SOMA.ProcessType \n", - "[INFO] [1712690293.006955]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description), DUL.classifies.only(DUL.Process), DUL.hasPart.only(SOMA.ProcessType), DUL.isDefinedIn.only(DUL.Description)]\n", - "[INFO] [1712690293.007204]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.007463]: Subclasses: [SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction, SOMA.Alteration, SOMA.ForceInteraction, SOMA.Motion, SOMA.Collision, SOMA.Creation, SOMA.Destruction]\n", - "[INFO] [1712690293.007760]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.008341]: Instances: []\n", - "[INFO] [1712690293.008614]: Direct Instances: []\n", - "[INFO] [1712690293.008945]: Inverse Restrictions: [SOMA.ProcessFlow, SOMA.ProcessFlow, SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712690293.009212]: -------------------\n", - "[INFO] [1712690293.009462]: SOMA.OrderedElement \n", - "[INFO] [1712690293.009716]: Super classes: [SOMA.Singleton, SOMA.Singleton, DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order), DUL.follows.only(SOMA.OrderedElement), DUL.precedes.only(SOMA.OrderedElement), SOMA.isOrderedBy.exactly(1, SOMA.Order)]\n", - "[INFO] [1712690293.009963]: Ancestors: {SOMA.OrderedElement, owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712690293.010206]: Subclasses: []\n", - "[INFO] [1712690293.010511]: Properties: [SOMA.isOrderedBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.011006]: Instances: []\n", - "[INFO] [1712690293.011267]: Direct Instances: []\n", - "[INFO] [1712690293.011634]: Inverse Restrictions: [SOMA.PreferenceOrder, SOMA.Order, SOMA.PreferenceOrder, SOMA.Order, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712690293.011885]: -------------------\n", - "[INFO] [1712690293.012131]: SOMA.System \n", - "[INFO] [1712690293.012370]: Super classes: [DUL.SocialObject, DUL.SocialObject]\n", - "[INFO] [1712690293.012610]: Ancestors: {DUL.Entity, SOMA.System, DUL.SocialObject, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.012876]: Subclasses: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712690293.013174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.013694]: Instances: []\n", - "[INFO] [1712690293.013953]: Direct Instances: []\n", - "[INFO] [1712690293.014199]: Inverse Restrictions: []\n", - "[INFO] [1712690293.014448]: -------------------\n", - "[INFO] [1712690293.014685]: SOMA.Binding \n", - "[INFO] [1712690293.014945]: Super classes: [DUL.Relation, DUL.Relation, SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role), SOMA.CounterfactualBinding | SOMA.FactualBinding, SOMA.RoleFillerBinding | SOMA.RoleRoleBinding, Inverse(SOMA.hasBinding).some(DUL.Description), SOMA.hasBindingFiller.exactly(1, DUL.Entity), SOMA.hasBindingRole.exactly(1, DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712690293.015194]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690293.015455]: Subclasses: [SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding, SOMA.CounterfactualBinding, SOMA.FactualBinding, SOMA.RoleFillerBinding, SOMA.RoleRoleBinding]\n", - "[INFO] [1712690293.015760]: Properties: [SOMA.hasBindingRole, rdf-schema.isDefinedBy, SOMA.hasBindingFiller, rdf-schema.comment, Inverse(SOMA.hasBinding)]\n", - "[INFO] [1712690293.016259]: Instances: []\n", - "[INFO] [1712690293.016516]: Direct Instances: []\n", - "[INFO] [1712690293.016848]: Inverse Restrictions: []\n", - "[INFO] [1712690293.017108]: -------------------\n", - "[INFO] [1712690293.017350]: SOMA.Joint \n", - "[INFO] [1712690293.017608]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState), SOMA.hasChildLink.exactly(1, DUL.PhysicalObject), SOMA.hasParentLink.exactly(1, DUL.PhysicalObject), SOMA.hasJointState.max(1, SOMA.JointState)]\n", - "[INFO] [1712690293.017864]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690293.018133]: Subclasses: [SOMA.FixedJoint, SOMA.MovableJoint, SOMA.FixedJoint, SOMA.MovableJoint]\n", - "[INFO] [1712690293.018449]: Properties: [SOMA.hasChildLink, rdf-schema.comment, rdf-schema.isDefinedBy, SOMA.hasParentLink]\n", - "[INFO] [1712690293.018959]: Instances: []\n", - "[INFO] [1712690293.019220]: Direct Instances: []\n", - "[INFO] [1712690293.019495]: Inverse Restrictions: []\n", - "[INFO] [1712690293.019748]: -------------------\n", - "[INFO] [1712690293.019995]: SOMA.Color \n", - "[INFO] [1712690293.020240]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion), DUL.hasRegion.some(SOMA.ColorRegion), DUL.hasRegion.only(SOMA.ColorRegion)]\n", - "[INFO] [1712690293.020493]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Color, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.020753]: Subclasses: []\n", - "[INFO] [1712690293.021065]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion, rdf-schema.label]\n", - "[INFO] [1712690293.021567]: Instances: []\n", - "[INFO] [1712690293.021826]: Direct Instances: []\n", - "[INFO] [1712690293.022111]: Inverse Restrictions: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712690293.022368]: -------------------\n", - "[INFO] [1712690293.022618]: SOMA.ExecutionStateRegion \n", - "[INFO] [1712690293.022857]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690293.023099]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ExecutionStateRegion}\n", - "[INFO] [1712690293.023335]: Subclasses: []\n", - "[INFO] [1712690293.023646]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.024156]: Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712690293.024431]: Direct Instances: [SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded, SOMA.ExecutionState_Active, SOMA.ExecutionState_Cancelled, SOMA.ExecutionState_Failed, SOMA.ExecutionState_Paused, SOMA.ExecutionState_Pending, SOMA.ExecutionState_Succeeded]\n", - "[INFO] [1712690293.024687]: Inverse Restrictions: []\n", - "[INFO] [1712690293.025037]: -------------------\n", - "[INFO] [1712690293.025366]: SOMA.Feature \n", - "[INFO] [1712690293.025649]: Super classes: [DUL.Object, DUL.Object, DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject), DUL.hasPart.only(SOMA.Feature), SOMA.isFeatureOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712690293.025914]: Ancestors: {DUL.Entity, SOMA.Feature, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.026180]: Subclasses: [SOMA.DependentPlace, SOMA.RelevantPart, SOMA.DependentPlace, SOMA.RelevantPart]\n", - "[INFO] [1712690293.026498]: Properties: [SOMA.isFeatureOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.027015]: Instances: []\n", - "[INFO] [1712690293.027288]: Direct Instances: []\n", - "[INFO] [1712690293.027589]: Inverse Restrictions: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712690293.027837]: -------------------\n", - "[INFO] [1712690293.028082]: SOMA.FrictionAttribute \n", - "[INFO] [1712690293.028334]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasFrictionValue.exactly(1, ), SOMA.hasFrictionValue.exactly(1, )]\n", - "[INFO] [1712690293.028589]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", - "[INFO] [1712690293.028852]: Subclasses: [SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute, SOMA.KineticFrictionAttribute, SOMA.StaticFrictionAttribute]\n", - "[INFO] [1712690293.029154]: Properties: [SOMA.hasFrictionValue, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.029669]: Instances: []\n", - "[INFO] [1712690293.029933]: Direct Instances: []\n", - "[INFO] [1712690293.030193]: Inverse Restrictions: []\n", - "[INFO] [1712690293.030432]: -------------------\n", - "[INFO] [1712690293.030669]: SOMA.SituationTransition \n", - "[INFO] [1712690293.030910]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712690293.031157]: Ancestors: {DUL.Entity, DUL.Situation, owl.Thing, SOMA.SituationTransition, DUL.Transition}\n", - "[INFO] [1712690293.031410]: Subclasses: []\n", - "[INFO] [1712690293.031727]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.032211]: Instances: []\n", - "[INFO] [1712690293.032469]: Direct Instances: []\n", - "[INFO] [1712690293.034293]: Inverse Restrictions: []\n", - "[INFO] [1712690293.034618]: -------------------\n", - "[INFO] [1712690293.034891]: SOMA.NonmanifestedSituation \n", - "[INFO] [1712690293.035148]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712690293.035425]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.NonmanifestedSituation}\n", - "[INFO] [1712690293.035676]: Subclasses: []\n", - "[INFO] [1712690293.035990]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.036501]: Instances: []\n", - "[INFO] [1712690293.036778]: Direct Instances: []\n", - "[INFO] [1712690293.038170]: Inverse Restrictions: []\n", - "[INFO] [1712690293.038433]: -------------------\n", - "[INFO] [1712690293.038684]: SOMA.JointLimit \n", - "[INFO] [1712690293.038929]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute]\n", - "[INFO] [1712690293.039176]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.JointLimit}\n", - "[INFO] [1712690293.039415]: Subclasses: []\n", - "[INFO] [1712690293.039699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.040197]: Instances: []\n", - "[INFO] [1712690293.040468]: Direct Instances: []\n", - "[INFO] [1712690293.040790]: Inverse Restrictions: [SOMA.RevoluteJoint, SOMA.PrismaticJoint, SOMA.RevoluteJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712690293.041034]: -------------------\n", - "[INFO] [1712690293.041273]: SOMA.JointState \n", - "[INFO] [1712690293.041532]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, ), SOMA.hasJointPosition.exactly(1, ), SOMA.hasJointVelocity.exactly(1, ), SOMA.hasJointEffort.max(1, )]\n", - "[INFO] [1712690293.041788]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, DUL.Region, owl.Thing, SOMA.JointState, DUL.Abstract}\n", - "[INFO] [1712690293.042037]: Subclasses: []\n", - "[INFO] [1712690293.042333]: Properties: [SOMA.hasJointVelocity, SOMA.hasJointPosition, rdf-schema.isDefinedBy, rdf-schema.label, rdf-schema.comment]\n", - "[INFO] [1712690293.042832]: Instances: []\n", - "[INFO] [1712690293.043104]: Direct Instances: []\n", - "[INFO] [1712690293.043423]: Inverse Restrictions: [SOMA.MovableJoint, SOMA.Joint, SOMA.MovableJoint, SOMA.Joint]\n", - "[INFO] [1712690293.043665]: -------------------\n", - "[INFO] [1712690293.043899]: SOMA.Localization \n", - "[INFO] [1712690293.044139]: Super classes: [SOMA.Extrinsic, SOMA.Extrinsic, DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion), DUL.hasRegion.some(DUL.SpaceRegion), DUL.hasRegion.only(DUL.SpaceRegion)]\n", - "[INFO] [1712690293.044399]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Localization, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.044661]: Subclasses: []\n", - "[INFO] [1712690293.044971]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712690293.045478]: Instances: []\n", - "[INFO] [1712690293.045746]: Direct Instances: []\n", - "[INFO] [1712690293.046859]: Inverse Restrictions: []\n", - "[INFO] [1712690293.047158]: -------------------\n", - "[INFO] [1712690293.047454]: SOMA.MassAttribute \n", - "[INFO] [1712690293.047747]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasMassValue.exactly(1, ), SOMA.hasMassValue.exactly(1, )]\n", - "[INFO] [1712690293.048025]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.MassAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690293.048294]: Subclasses: []\n", - "[INFO] [1712690293.048620]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasMassValue, rdf-schema.label]\n", - "[INFO] [1712690293.049204]: Instances: []\n", - "[INFO] [1712690293.049612]: Direct Instances: []\n", - "[INFO] [1712690293.049932]: Inverse Restrictions: []\n", - "[INFO] [1712690293.050210]: -------------------\n", - "[INFO] [1712690293.050468]: SOMA.NetForce \n", - "[INFO] [1712690293.050725]: Super classes: [SOMA.ForceAttribute, SOMA.ForceAttribute]\n", - "[INFO] [1712690293.050994]: Ancestors: {SOMA.NetForce, DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690293.051250]: Subclasses: []\n", - "[INFO] [1712690293.051542]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.052029]: Instances: []\n", - "[INFO] [1712690293.052302]: Direct Instances: []\n", - "[INFO] [1712690293.052564]: Inverse Restrictions: []\n", - "[INFO] [1712690293.052813]: -------------------\n", - "[INFO] [1712690293.053056]: SOMA.Succedence \n", - "[INFO] [1712690293.053309]: Super classes: [DUL.Relation, DUL.Relation, Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation), Inverse(SOMA.hasSuccedence).some(DUL.Description), SOMA.hasPredecessor.exactly(1, SOMA.TaskInvocation), SOMA.hasSuccessor.exactly(1, SOMA.TaskInvocation)]\n", - "[INFO] [1712690293.053563]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Succedence}\n", - "[INFO] [1712690293.053826]: Subclasses: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712690293.054135]: Properties: [SOMA.hasSuccessor, Inverse(SOMA.hasSuccedence), rdf-schema.isDefinedBy, SOMA.hasPredecessor, rdf-schema.comment]\n", - "[INFO] [1712690293.054626]: Instances: []\n", - "[INFO] [1712690293.054884]: Direct Instances: []\n", - "[INFO] [1712690293.055142]: Inverse Restrictions: []\n", - "[INFO] [1712690293.055398]: -------------------\n", - "[INFO] [1712690293.055645]: SOMA.Preference \n", - "[INFO] [1712690293.055890]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, SOMA.isPreferenceOf.only(DUL.Agent), SOMA.isPreferenceOf.only(DUL.Agent)]\n", - "[INFO] [1712690293.056132]: Ancestors: {SOMA.Preference, DUL.Entity, SOMA.SocialQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.056376]: Subclasses: []\n", - "[INFO] [1712690293.056673]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.057276]: Instances: []\n", - "[INFO] [1712690293.057630]: Direct Instances: []\n", - "[INFO] [1712690293.058048]: Inverse Restrictions: [SOMA.Predilection, SOMA.Predilection, SOMA.PreferenceRegion, SOMA.PreferenceRegion, SOMA.PreferenceOrder, SOMA.PreferenceOrder]\n", - "[INFO] [1712690293.058336]: -------------------\n", - "[INFO] [1712690293.058608]: SOMA.Shape \n", - "[INFO] [1712690293.058875]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion), DUL.hasRegion.some(SOMA.ShapeRegion), DUL.hasRegion.only(SOMA.ShapeRegion)]\n", - "[INFO] [1712690293.059135]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Shape, SOMA.Intrinsic}\n", - "[INFO] [1712690293.059412]: Subclasses: [SOMA-HOME.OntologyHandheldObject, SOMA-HOME.OntologyPourableObject]\n", - "[INFO] [1712690293.059723]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712690293.060243]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712690293.060515]: Direct Instances: []\n", - "[INFO] [1712690293.061661]: Inverse Restrictions: []\n", - "[INFO] [1712690293.061920]: -------------------\n", - "[INFO] [1712690293.062167]: SOMA.ShapeRegion \n", - "[INFO] [1712690293.062412]: Super classes: [DUL.Region, DUL.Region, SOMA.hasSpaceRegion.max(1, SOMA.6DPose), SOMA.hasSpaceRegion.max(1, SOMA.6DPose)]\n", - "[INFO] [1712690293.062657]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690293.062913]: Subclasses: [SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape, SOMA.BoxShape, SOMA.CylinderShape, SOMA.MeshShape, SOMA.SphereShape]\n", - "[INFO] [1712690293.063221]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.063730]: Instances: []\n", - "[INFO] [1712690293.063991]: Direct Instances: []\n", - "[INFO] [1712690293.064716]: Inverse Restrictions: [SOMA.Shape, SOMA.Shape, SOMA.Shape, SOMA.Shape]\n", - "[INFO] [1712690293.064986]: -------------------\n", - "[INFO] [1712690293.065237]: SOMA.SoftwareInstance \n", - "[INFO] [1712690293.065493]: Super classes: [owl.Thing, DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software), DUL.SocialAgent & DUL.actsFor.some(DUL.Agent), SOMA.isDesignedBy.some(SOMA.Software)]\n", - "[INFO] [1712690293.065739]: Ancestors: {owl.Thing, SOMA.SoftwareInstance}\n", - "[INFO] [1712690293.065984]: Subclasses: []\n", - "[INFO] [1712690293.066296]: Properties: [rdf-schema.isDefinedBy, DUL.actsFor, rdf-schema.label, rdf-schema.comment, SOMA.isDesignedBy]\n", - "[INFO] [1712690293.066818]: Instances: []\n", - "[INFO] [1712690293.067100]: Direct Instances: []\n", - "[INFO] [1712690293.067423]: Inverse Restrictions: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712690293.067685]: -------------------\n", - "[INFO] [1712690293.067935]: SOMA.StateType \n", - "[INFO] [1712690293.068188]: Super classes: [DUL.EventType, DUL.EventType, DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType), DUL.classifies.only(SOMA.State), DUL.hasPart.only(SOMA.StateType)]\n", - "[INFO] [1712690293.068434]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.068691]: Subclasses: [SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage, SOMA.ContactState, SOMA.FunctionalControl, SOMA.LinkageState, SOMA.PhysicalAccessibility, SOMA.PhysicalBlockage]\n", - "[INFO] [1712690293.069008]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.069520]: Instances: []\n", - "[INFO] [1712690293.069780]: Direct Instances: []\n", - "[INFO] [1712690293.070097]: Inverse Restrictions: [SOMA.Configuration, SOMA.Configuration, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712690293.070360]: -------------------\n", - "[INFO] [1712690293.070609]: SOMA.PhysicalEffector \n", - "[INFO] [1712690293.070858]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart, Inverse(DUL.hasPart).some(DUL.PhysicalAgent), Inverse(DUL.hasPart).some(DUL.PhysicalAgent)]\n", - "[INFO] [1712690293.071105]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690293.071357]: Subclasses: [SOMA.Limb, SOMA.PrehensileEffector, SOMA.Limb, SOMA.PrehensileEffector]\n", - "[INFO] [1712690293.071663]: Properties: [Inverse(DUL.hasPart), rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.072174]: Instances: []\n", - "[INFO] [1712690293.072431]: Direct Instances: []\n", - "[INFO] [1712690293.072684]: Inverse Restrictions: []\n", - "[INFO] [1712690293.073001]: -------------------\n", - "[INFO] [1712690293.073315]: SOMA.QueryingTask \n", - "[INFO] [1712690293.073599]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause)), DUL.isTaskOf.some(SOMA.Query), DUL.classifies.only(DUL.hasParticipant.some(SOMA.InterrogativeClause))]\n", - "[INFO] [1712690293.073867]: Ancestors: {SOMA.QueryingTask, SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712690293.074128]: Subclasses: []\n", - "[INFO] [1712690293.074450]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.074953]: Instances: []\n", - "[INFO] [1712690293.075225]: Direct Instances: []\n", - "[INFO] [1712690293.075557]: Inverse Restrictions: []\n", - "[INFO] [1712690293.075802]: -------------------\n", - "[INFO] [1712690293.076220]: SOMA.Order \n", - "[INFO] [1712690293.076574]: Super classes: [DUL.FormalEntity, DUL.FormalEntity, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.some(SOMA.OrderedElement)]\n", - "[INFO] [1712690293.076914]: Ancestors: {DUL.Entity, SOMA.Order, owl.Thing, DUL.FormalEntity, DUL.Abstract}\n", - "[INFO] [1712690293.077169]: Subclasses: []\n", - "[INFO] [1712690293.077467]: Properties: [SOMA.orders, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.077976]: Instances: []\n", - "[INFO] [1712690293.078252]: Direct Instances: []\n", - "[INFO] [1712690293.078623]: Inverse Restrictions: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712690293.078876]: -------------------\n", - "[INFO] [1712690293.079125]: SOMA.State \n", - "[INFO] [1712690293.079363]: Super classes: [DUL.Event]\n", - "[INFO] [1712690293.079610]: Ancestors: {DUL.Entity, owl.Thing, SOMA.State, DUL.Event}\n", - "[INFO] [1712690293.079880]: Subclasses: [SOMA.PhysicalState, SOMA.SocialState, SOMA.PhysicalState, SOMA.SocialState]\n", - "[INFO] [1712690293.080183]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.080691]: Instances: []\n", - "[INFO] [1712690293.081013]: Direct Instances: []\n", - "[INFO] [1712690293.081558]: Inverse Restrictions: [SOMA.Scene, SOMA.Scene, SOMA.StateType, SOMA.StateType]\n", - "[INFO] [1712690293.081824]: -------------------\n", - "[INFO] [1712690293.082092]: SOMA.Transient \n", - "[INFO] [1712690293.082349]: Super classes: [DUL.Object, DUL.Object, SOMA.transitionsFrom.some(DUL.Object), SOMA.transitionsFrom.some(DUL.Object)]\n", - "[INFO] [1712690293.082606]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, SOMA.Transient}\n", - "[INFO] [1712690293.082854]: Subclasses: []\n", - "[INFO] [1712690293.083170]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.transitionsFrom]\n", - "[INFO] [1712690293.083674]: Instances: []\n", - "[INFO] [1712690293.083947]: Direct Instances: []\n", - "[INFO] [1712690293.084201]: Inverse Restrictions: []\n", - "[INFO] [1712690293.084449]: -------------------\n", - "[INFO] [1712690293.084704]: SOMA.ColorRegion \n", - "[INFO] [1712690293.084958]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, DUL.isRegionFor.only(SOMA.Color), DUL.isRegionFor.only(SOMA.Color)]\n", - "[INFO] [1712690293.085209]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690293.085464]: Subclasses: [SOMA.GreenColor, SOMA.RedColor, SOMA.GreenColor, SOMA.RedColor]\n", - "[INFO] [1712690293.085758]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.086284]: Instances: []\n", - "[INFO] [1712690293.086588]: Direct Instances: []\n", - "[INFO] [1712690293.086922]: Inverse Restrictions: [SOMA.Color, SOMA.Color, SOMA.Color, SOMA.Color]\n", - "[INFO] [1712690293.087179]: -------------------\n", - "[INFO] [1712690293.087438]: SOMA.ForceAttribute \n", - "[INFO] [1712690293.087693]: Super classes: [DUL.PhysicalAttribute, DUL.PhysicalAttribute, SOMA.hasForceValue.exactly(1, SOMA.array_double), SOMA.hasForceValue.exactly(1, SOMA.array_double)]\n", - "[INFO] [1712690293.087950]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ForceAttribute, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690293.088203]: Subclasses: [SOMA.NetForce, SOMA.NetForce]\n", - "[INFO] [1712690293.088500]: Properties: [SOMA.hasForceValue, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.089014]: Instances: []\n", - "[INFO] [1712690293.089293]: Direct Instances: []\n", - "[INFO] [1712690293.089557]: Inverse Restrictions: []\n", - "[INFO] [1712690293.089804]: -------------------\n", - "[INFO] [1712690293.090055]: SOMA.API_Specification \n", - "[INFO] [1712690293.090304]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification]\n", - "[INFO] [1712690293.090559]: Ancestors: {DUL.Entity, SOMA.API_Specification, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690293.090815]: Subclasses: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712690293.091104]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.091612]: Instances: []\n", - "[INFO] [1712690293.091890]: Direct Instances: []\n", - "[INFO] [1712690293.092153]: Inverse Restrictions: []\n", - "[INFO] [1712690293.092400]: -------------------\n", - "[INFO] [1712690293.092645]: SOMA.InterfaceSpecification \n", - "[INFO] [1712690293.092905]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712690293.093165]: Ancestors: {DUL.Entity, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690293.093425]: Subclasses: [SOMA.API_Specification, SOMA.Client-Server_Specification, SOMA.API_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712690293.093720]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.094223]: Instances: []\n", - "[INFO] [1712690293.094493]: Direct Instances: []\n", - "[INFO] [1712690293.094811]: Inverse Restrictions: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole]\n", - "[INFO] [1712690293.095059]: -------------------\n", - "[INFO] [1712690293.095298]: SOMA.AbductiveReasoning \n", - "[INFO] [1712690293.095539]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712690293.095799]: Ancestors: {SOMA.AbductiveReasoning, SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.096048]: Subclasses: []\n", - "[INFO] [1712690293.096341]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.096858]: Instances: []\n", - "[INFO] [1712690293.097259]: Direct Instances: []\n", - "[INFO] [1712690293.097568]: Inverse Restrictions: []\n", - "[INFO] [1712690293.097839]: -------------------\n", - "[INFO] [1712690293.098102]: SOMA.Reasoning \n", - "[INFO] [1712690293.098352]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690293.098606]: Ancestors: {SOMA.DerivingInformation, SOMA.Reasoning, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712690293.098880]: Subclasses: [SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning, SOMA.AbductiveReasoning, SOMA.DeductiveReasoning, SOMA.InductiveReasoning]\n", - "[INFO] [1712690293.099190]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.099691]: Instances: []\n", - "[INFO] [1712690293.099974]: Direct Instances: []\n", - "[INFO] [1712690293.100277]: Inverse Restrictions: []\n", - "[INFO] [1712690293.100530]: -------------------\n", - "[INFO] [1712690293.100781]: SOMA.Accessor \n", - "[INFO] [1712690293.101028]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712690293.101281]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Accessor, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.101558]: Subclasses: []\n", - "[INFO] [1712690293.101865]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.102357]: Instances: []\n", - "[INFO] [1712690293.102615]: Direct Instances: []\n", - "[INFO] [1712690293.102870]: Inverse Restrictions: []\n", - "[INFO] [1712690293.103123]: -------------------\n", - "[INFO] [1712690293.103365]: SOMA.Instrument \n", - "[INFO] [1712690293.103601]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712690293.103846]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.104097]: Subclasses: [SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit, SOMA.Accessor, SOMA.Restrictor, SOMA.Tool, SOMA.Deposit]\n", - "[INFO] [1712690293.104391]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.104932]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690293.105199]: Direct Instances: []\n", - "[INFO] [1712690293.105575]: Inverse Restrictions: [SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CoveringTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690293.105837]: -------------------\n", - "[INFO] [1712690293.106083]: SOMA.Accident \n", - "[INFO] [1712690293.106328]: Super classes: [DUL.Event]\n", - "[INFO] [1712690293.106568]: Ancestors: {DUL.Entity, owl.Thing, DUL.Event, SOMA.Accident}\n", - "[INFO] [1712690293.106810]: Subclasses: []\n", - "[INFO] [1712690293.107123]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.107621]: Instances: []\n", - "[INFO] [1712690293.107878]: Direct Instances: []\n", - "[INFO] [1712690293.108126]: Inverse Restrictions: []\n", - "[INFO] [1712690293.108359]: -------------------\n", - "[INFO] [1712690293.108608]: SOMA.ActionExecutionPlan \n", - "[INFO] [1712690293.108860]: Super classes: [DUL.Plan, DUL.definesTask.only(DUL.hasParameter.some(SOMA.Status))]\n", - "[INFO] [1712690293.109112]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Plan, owl.Thing, DUL.Object, DUL.Description, SOMA.ActionExecutionPlan}\n", - "[INFO] [1712690293.109356]: Subclasses: []\n", - "[INFO] [1712690293.109645]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.110151]: Instances: []\n", - "[INFO] [1712690293.110417]: Direct Instances: []\n", - "[INFO] [1712690293.110672]: Inverse Restrictions: []\n", - "[INFO] [1712690293.110909]: -------------------\n", - "[INFO] [1712690293.111150]: SOMA.Actuating \n", - "[INFO] [1712690293.111389]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690293.111649]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.111932]: Subclasses: [SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing, SOMA.Catching, SOMA.Closing, SOMA.Delivering, SOMA.Lifting, SOMA.Opening, SOMA.Pulling, SOMA.Pushing, SOMA.Squeezing, SOMA.Dropping, SOMA.Flipping, SOMA.Lowering, SOMA.Positioning, SOMA.Pouring, SOMA.Throwing]\n", - "[INFO] [1712690293.112233]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.112760]: Instances: []\n", - "[INFO] [1712690293.113046]: Direct Instances: []\n", - "[INFO] [1712690293.113334]: Inverse Restrictions: []\n", - "[INFO] [1712690293.113590]: -------------------\n", - "[INFO] [1712690293.113845]: SOMA.PhysicalTask \n", - "[INFO] [1712690293.114120]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712690293.114378]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.114649]: Subclasses: [SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving, SOMA.Actuating, SOMA.Constructing, SOMA.AssumingPose, SOMA.Navigating, SOMA.ModifyingPhysicalObject, SOMA.Placing, SOMA.Manipulating, SOMA.LookingAt, SOMA.Proprioceiving]\n", - "[INFO] [1712690293.114948]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.115572]: Instances: [SOMA.navigating, SOMA.picking_up, SOMA.placing, SOMA.parking_arms]\n", - "[INFO] [1712690293.115852]: Direct Instances: []\n", - "[INFO] [1712690293.116167]: Inverse Restrictions: []\n", - "[INFO] [1712690293.116418]: -------------------\n", - "[INFO] [1712690293.116670]: SOMA.AestheticDesign \n", - "[INFO] [1712690293.116947]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712690293.117201]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.AestheticDesign, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690293.117450]: Subclasses: []\n", - "[INFO] [1712690293.117760]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.118270]: Instances: []\n", - "[INFO] [1712690293.118537]: Direct Instances: []\n", - "[INFO] [1712690293.118786]: Inverse Restrictions: []\n", - "[INFO] [1712690293.119037]: -------------------\n", - "[INFO] [1712690293.119280]: SOMA.AgentRole \n", - "[INFO] [1712690293.119522]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712690293.119768]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.AgentRole, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, DUL.Role}\n", - "[INFO] [1712690293.120007]: Subclasses: []\n", - "[INFO] [1712690293.120307]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.120805]: Instances: []\n", - "[INFO] [1712690293.121063]: Direct Instances: []\n", - "[INFO] [1712690293.121343]: Inverse Restrictions: []\n", - "[INFO] [1712690293.121586]: -------------------\n", - "[INFO] [1712690293.121837]: SOMA.CausativeRole \n", - "[INFO] [1712690293.122081]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690293.122331]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, DUL.Role}\n", - "[INFO] [1712690293.122590]: Subclasses: [SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole, SOMA.AgentRole, SOMA.CausalEventRole, SOMA.PerformerRole, SOMA.StimulusRole]\n", - "[INFO] [1712690293.122880]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.123398]: Instances: []\n", - "[INFO] [1712690293.123671]: Direct Instances: []\n", - "[INFO] [1712690293.123939]: Inverse Restrictions: []\n", - "[INFO] [1712690293.124191]: -------------------\n", - "[INFO] [1712690293.124435]: SOMA.Agonist \n", - "[INFO] [1712690293.124676]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.124928]: Ancestors: {DUL.Entity, SOMA.Agonist, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.125187]: Subclasses: []\n", - "[INFO] [1712690293.125481]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.125977]: Instances: []\n", - "[INFO] [1712690293.126230]: Direct Instances: []\n", - "[INFO] [1712690293.126518]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712690293.126778]: -------------------\n", - "[INFO] [1712690293.127024]: SOMA.Patient \n", - "[INFO] [1712690293.127267]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690293.127513]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.127796]: Subclasses: [SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject, SOMA.Agonist, SOMA.AlteredObject, SOMA.Antagonist, SOMA.AvoidedObject, SOMA.BlockedObject, SOMA.ConnectedObject, SOMA.CreatedObject, SOMA.IncludedObject, SOMA.DepositedObject, SOMA.DestroyedObject, SOMA.DetectedObject, SOMA.ExcludedObject, SOMA.ExtractedObject, SOMA.Item, SOMA.PouredObject]\n", - "[INFO] [1712690293.128106]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.128670]: Instances: []\n", - "[INFO] [1712690293.128942]: Direct Instances: []\n", - "[INFO] [1712690293.129355]: Inverse Restrictions: [SOMA.CoveringTheory, SOMA.CoveringTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory, SOMA.PlacingTheory, SOMA.MixingTheory, SOMA.CrackingTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690293.129613]: -------------------\n", - "[INFO] [1712690293.129857]: SOMA.Algorithm \n", - "[INFO] [1712690293.130094]: Super classes: [DUL.Plan, DUL.Plan]\n", - "[INFO] [1712690293.130339]: Ancestors: {SOMA.Algorithm, DUL.Entity, DUL.SocialObject, DUL.Plan, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690293.130594]: Subclasses: []\n", - "[INFO] [1712690293.130892]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.131391]: Instances: []\n", - "[INFO] [1712690293.131659]: Direct Instances: []\n", - "[INFO] [1712690293.131976]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712690293.132226]: -------------------\n", - "[INFO] [1712690293.132469]: SOMA.Alteration \n", - "[INFO] [1712690293.132708]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712690293.132963]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration}\n", - "[INFO] [1712690293.133215]: Subclasses: [SOMA.Deformation, SOMA.PhaseTransition, SOMA.Deformation, SOMA.PhaseTransition]\n", - "[INFO] [1712690293.133576]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.134095]: Instances: []\n", - "[INFO] [1712690293.134366]: Direct Instances: []\n", - "[INFO] [1712690293.134617]: Inverse Restrictions: []\n", - "[INFO] [1712690293.134868]: -------------------\n", - "[INFO] [1712690293.135116]: SOMA.AlterativeInteraction \n", - "[INFO] [1712690293.135375]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712690293.135627]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.AlterativeInteraction, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction}\n", - "[INFO] [1712690293.135870]: Subclasses: []\n", - "[INFO] [1712690293.136169]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.136680]: Instances: []\n", - "[INFO] [1712690293.136952]: Direct Instances: []\n", - "[INFO] [1712690293.137246]: Inverse Restrictions: []\n", - "[INFO] [1712690293.137492]: -------------------\n", - "[INFO] [1712690293.137733]: SOMA.ForceInteraction \n", - "[INFO] [1712690293.137995]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist), SOMA.isProcessTypeOf.some(SOMA.Agonist), SOMA.isProcessTypeOf.some(SOMA.Antagonist)]\n", - "[INFO] [1712690293.138252]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction}\n", - "[INFO] [1712690293.138511]: Subclasses: [SOMA.AlterativeInteraction, SOMA.PreservativeInteraction, SOMA.AlterativeInteraction, SOMA.PreservativeInteraction]\n", - "[INFO] [1712690293.138824]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.label, rdf-schema.comment]\n", - "[INFO] [1712690293.139342]: Instances: []\n", - "[INFO] [1712690293.139610]: Direct Instances: []\n", - "[INFO] [1712690293.139870]: Inverse Restrictions: []\n", - "[INFO] [1712690293.140113]: -------------------\n", - "[INFO] [1712690293.140351]: SOMA.PreservativeInteraction \n", - "[INFO] [1712690293.140598]: Super classes: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712690293.140865]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForceInteraction, SOMA.PreservativeInteraction}\n", - "[INFO] [1712690293.141116]: Subclasses: []\n", - "[INFO] [1712690293.141407]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.141900]: Instances: []\n", - "[INFO] [1712690293.142168]: Direct Instances: []\n", - "[INFO] [1712690293.142469]: Inverse Restrictions: []\n", - "[INFO] [1712690293.142716]: -------------------\n", - "[INFO] [1712690293.142955]: SOMA.AlteredObject \n", - "[INFO] [1712690293.143193]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.143439]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", - "[INFO] [1712690293.143706]: Subclasses: [SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject, SOMA.CutObject, SOMA.ShapedObject, SOMA.MovedObject]\n", - "[INFO] [1712690293.144004]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.144506]: Instances: []\n", - "[INFO] [1712690293.144783]: Direct Instances: []\n", - "[INFO] [1712690293.145128]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712690293.145383]: -------------------\n", - "[INFO] [1712690293.145629]: SOMA.Amateurish \n", - "[INFO] [1712690293.145869]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712690293.146114]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.146379]: Subclasses: [SOMA.Clumsiness, SOMA.Foolishness, SOMA.Sluggishness]\n", - "[INFO] [1712690293.146685]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.147178]: Instances: []\n", - "[INFO] [1712690293.147455]: Direct Instances: []\n", - "[INFO] [1712690293.147717]: Inverse Restrictions: []\n", - "[INFO] [1712690293.147959]: -------------------\n", - "[INFO] [1712690293.148196]: SOMA.AnsweringTask \n", - "[INFO] [1712690293.148429]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.148678]: Ancestors: {owl.Thing, SOMA.AnsweringTask}\n", - "[INFO] [1712690293.148931]: Subclasses: []\n", - "[INFO] [1712690293.149231]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.149722]: Instances: []\n", - "[INFO] [1712690293.150009]: Direct Instances: []\n", - "[INFO] [1712690293.150326]: Inverse Restrictions: []\n", - "[INFO] [1712690293.150572]: -------------------\n", - "[INFO] [1712690293.150812]: SOMA.CommandingTask \n", - "[INFO] [1712690293.151055]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.ImperativeClause))]\n", - "[INFO] [1712690293.151292]: Ancestors: {SOMA.IllocutionaryTask, SOMA.CommandingTask, owl.Thing}\n", - "[INFO] [1712690293.151562]: Subclasses: []\n", - "[INFO] [1712690293.151868]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.152358]: Instances: []\n", - "[INFO] [1712690293.152612]: Direct Instances: []\n", - "[INFO] [1712690293.152944]: Inverse Restrictions: []\n", - "[INFO] [1712690293.153202]: -------------------\n", - "[INFO] [1712690293.153447]: SOMA.IllocutionaryTask \n", - "[INFO] [1712690293.153699]: Super classes: [owl.Thing, SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), SOMA.CommunicationTask & DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712690293.153943]: Ancestors: {SOMA.IllocutionaryTask, owl.Thing}\n", - "[INFO] [1712690293.154207]: Subclasses: [SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask, SOMA.QueryingTask, SOMA.CommandingTask, SOMA.AssertionTask]\n", - "[INFO] [1712690293.154506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.155003]: Instances: []\n", - "[INFO] [1712690293.155272]: Direct Instances: []\n", - "[INFO] [1712690293.155571]: Inverse Restrictions: []\n", - "[INFO] [1712690293.155817]: -------------------\n", - "[INFO] [1712690293.156059]: SOMA.Antagonist \n", - "[INFO] [1712690293.156296]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.156540]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, SOMA.Antagonist, DUL.Object, owl.Thing, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.156798]: Subclasses: []\n", - "[INFO] [1712690293.157091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.157572]: Instances: []\n", - "[INFO] [1712690293.157842]: Direct Instances: []\n", - "[INFO] [1712690293.158134]: Inverse Restrictions: [SOMA.ForceInteraction, SOMA.ForceInteraction]\n", - "[INFO] [1712690293.158389]: -------------------\n", - "[INFO] [1712690293.158638]: SOMA.Appliance \n", - "[INFO] [1712690293.158880]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712690293.159131]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.Appliance, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690293.159400]: Subclasses: [SOMA.Dishwasher, SOMA.Oven, SOMA.Refrigerator, SOMA.Stove]\n", - "[INFO] [1712690293.159699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.160192]: Instances: []\n", - "[INFO] [1712690293.160453]: Direct Instances: []\n", - "[INFO] [1712690293.160705]: Inverse Restrictions: []\n", - "[INFO] [1712690293.160952]: -------------------\n", - "[INFO] [1712690293.161196]: SOMA.Approaching \n", - "[INFO] [1712690293.161438]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690293.161688]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Approaching, SOMA.Locomotion}\n", - "[INFO] [1712690293.161933]: Subclasses: []\n", - "[INFO] [1712690293.162234]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.162728]: Instances: []\n", - "[INFO] [1712690293.162986]: Direct Instances: []\n", - "[INFO] [1712690293.163232]: Inverse Restrictions: []\n", - "[INFO] [1712690293.163469]: -------------------\n", - "[INFO] [1712690293.163705]: SOMA.Locomotion \n", - "[INFO] [1712690293.163949]: Super classes: [SOMA.BodyMovement, SOMA.DirectedMotion, SOMA.BodyMovement, SOMA.DirectedMotion]\n", - "[INFO] [1712690293.164203]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", - "[INFO] [1712690293.164463]: Subclasses: [SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway, SOMA.Approaching, SOMA.Driving, SOMA.Flying, SOMA.Swimming, SOMA.Walking, SOMA.MovingAway]\n", - "[INFO] [1712690293.164799]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.165312]: Instances: []\n", - "[INFO] [1712690293.165577]: Direct Instances: []\n", - "[INFO] [1712690293.165836]: Inverse Restrictions: []\n", - "[INFO] [1712690293.166089]: -------------------\n", - "[INFO] [1712690293.166336]: SOMA.ArchiveFile \n", - "[INFO] [1712690293.166578]: Super classes: [SOMA.Digital_File, SOMA.Digital_File]\n", - "[INFO] [1712690293.166838]: Ancestors: {DUL.Entity, SOMA.ArchiveFile, DUL.InformationEntity, SOMA.Digital_File, owl.Thing, DUL.InformationRealization}\n", - "[INFO] [1712690293.167084]: Subclasses: []\n", - "[INFO] [1712690293.167388]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.realizes, rdf-schema.comment]\n", - "[INFO] [1712690293.167897]: Instances: []\n", - "[INFO] [1712690293.168166]: Direct Instances: []\n", - "[INFO] [1712690293.168429]: Inverse Restrictions: []\n", - "[INFO] [1712690293.168670]: -------------------\n", - "[INFO] [1712690293.168915]: SOMA.ArchiveText \n", - "[INFO] [1712690293.169164]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.169410]: Ancestors: {owl.Thing, SOMA.ArchiveText}\n", - "[INFO] [1712690293.169654]: Subclasses: []\n", - "[INFO] [1712690293.169948]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", - "[INFO] [1712690293.170455]: Instances: []\n", - "[INFO] [1712690293.170723]: Direct Instances: []\n", - "[INFO] [1712690293.171060]: Inverse Restrictions: [SOMA.ArchiveFile, SOMA.ArchiveFile, SOMA.ArchiveFormat, SOMA.ArchiveFormat]\n", - "[INFO] [1712690293.171314]: -------------------\n", - "[INFO] [1712690293.171567]: SOMA.Digital_File \n", - "[INFO] [1712690293.171819]: Super classes: [DUL.InformationRealization, DUL.InformationRealization, DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some(), DUL.realizes.some(SOMA.Structured_Text), SOMA.hasNameString.some()]\n", - "[INFO] [1712690293.172067]: Ancestors: {DUL.Entity, DUL.InformationEntity, SOMA.Digital_File, owl.Thing, DUL.InformationRealization}\n", - "[INFO] [1712690293.172318]: Subclasses: [SOMA.ArchiveFile, SOMA.ArchiveFile]\n", - "[INFO] [1712690293.172626]: Properties: [rdf-schema.isDefinedBy, SOMA.hasNameString, rdf-schema.label, rdf-schema.comment, DUL.realizes]\n", - "[INFO] [1712690293.173126]: Instances: []\n", - "[INFO] [1712690293.173392]: Direct Instances: []\n", - "[INFO] [1712690293.174498]: Inverse Restrictions: [SOMA.FileConfiguration, SOMA.FileConfiguration]\n", - "[INFO] [1712690293.174764]: -------------------\n", - "[INFO] [1712690293.175013]: SOMA.ArchiveFormat \n", - "[INFO] [1712690293.175260]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.ArchiveText), SOMA.givesMeaningTo.only(SOMA.ArchiveText)]\n", - "[INFO] [1712690293.175509]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.ArchiveFormat, SOMA.File_format}\n", - "[INFO] [1712690293.175751]: Subclasses: []\n", - "[INFO] [1712690293.176045]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.176544]: Instances: []\n", - "[INFO] [1712690293.176806]: Direct Instances: []\n", - "[INFO] [1712690293.177095]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712690293.177348]: -------------------\n", - "[INFO] [1712690293.177598]: SOMA.File_format \n", - "[INFO] [1712690293.177837]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690293.178085]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.File_format}\n", - "[INFO] [1712690293.178335]: Subclasses: [SOMA.ArchiveFormat, SOMA.ExecutableFormat, SOMA.ArchiveFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712690293.178623]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.179140]: Instances: []\n", - "[INFO] [1712690293.179405]: Direct Instances: []\n", - "[INFO] [1712690293.179660]: Inverse Restrictions: []\n", - "[INFO] [1712690293.179902]: -------------------\n", - "[INFO] [1712690293.180140]: SOMA.FileConfiguration \n", - "[INFO] [1712690293.180375]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.180636]: Ancestors: {SOMA.FileConfiguration, owl.Thing}\n", - "[INFO] [1712690293.180889]: Subclasses: []\n", - "[INFO] [1712690293.181182]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.181671]: Instances: []\n", - "[INFO] [1712690293.181946]: Direct Instances: []\n", - "[INFO] [1712690293.182258]: Inverse Restrictions: [SOMA.ArchiveText, SOMA.ArchiveText]\n", - "[INFO] [1712690293.182504]: -------------------\n", - "[INFO] [1712690293.182744]: SOMA.Structured_Text \n", - "[INFO] [1712690293.182997]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.183252]: Ancestors: {SOMA.Structured_Text, owl.Thing}\n", - "[INFO] [1712690293.183537]: Subclasses: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712690293.183837]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.184341]: Instances: []\n", - "[INFO] [1712690293.184615]: Direct Instances: []\n", - "[INFO] [1712690293.185049]: Inverse Restrictions: [SOMA.Digital_File, SOMA.Digital_File, SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712690293.185310]: -------------------\n", - "[INFO] [1712690293.185554]: SOMA.AreaSurveying \n", - "[INFO] [1712690293.185792]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712690293.186038]: Ancestors: {SOMA.AreaSurveying, owl.Thing, SOMA.Perceiving}\n", - "[INFO] [1712690293.186296]: Subclasses: []\n", - "[INFO] [1712690293.186593]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.187085]: Instances: []\n", - "[INFO] [1712690293.187356]: Direct Instances: []\n", - "[INFO] [1712690293.187611]: Inverse Restrictions: []\n", - "[INFO] [1712690293.187855]: -------------------\n", - "[INFO] [1712690293.188093]: SOMA.Perceiving \n", - "[INFO] [1712690293.188329]: Super classes: [owl.Thing, SOMA.InformationAcquisition & SOMA.PhysicalTask, SOMA.InformationAcquisition & SOMA.PhysicalTask]\n", - "[INFO] [1712690293.188587]: Ancestors: {owl.Thing, SOMA.Perceiving}\n", - "[INFO] [1712690293.188857]: Subclasses: [SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor, SOMA.AreaSurveying, SOMA.CheckingObjectPresence, SOMA.LookingFor]\n", - "[INFO] [1712690293.189163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.189660]: Instances: []\n", - "[INFO] [1712690293.189936]: Direct Instances: []\n", - "[INFO] [1712690293.190203]: Inverse Restrictions: []\n", - "[INFO] [1712690293.190443]: -------------------\n", - "[INFO] [1712690293.190681]: SOMA.Arm \n", - "[INFO] [1712690293.190918]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712690293.191161]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Arm, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712690293.191417]: Subclasses: []\n", - "[INFO] [1712690293.191714]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.192241]: Instances: []\n", - "[INFO] [1712690293.192502]: Direct Instances: []\n", - "[INFO] [1712690293.192798]: Inverse Restrictions: []\n", - "[INFO] [1712690293.193054]: -------------------\n", - "[INFO] [1712690293.193297]: SOMA.Limb \n", - "[INFO] [1712690293.193530]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712690293.193774]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712690293.194040]: Subclasses: [SOMA.Arm, SOMA.Finger, SOMA.Leg, SOMA.Arm, SOMA.Finger, SOMA.Leg]\n", - "[INFO] [1712690293.194345]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.194845]: Instances: []\n", - "[INFO] [1712690293.195117]: Direct Instances: []\n", - "[INFO] [1712690293.195438]: Inverse Restrictions: []\n", - "[INFO] [1712690293.195683]: -------------------\n", - "[INFO] [1712690293.195922]: SOMA.Arranging \n", - "[INFO] [1712690293.196159]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712690293.196414]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Arranging}\n", - "[INFO] [1712690293.196669]: Subclasses: []\n", - "[INFO] [1712690293.196970]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.197479]: Instances: []\n", - "[INFO] [1712690293.197758]: Direct Instances: []\n", - "[INFO] [1712690293.198150]: Inverse Restrictions: []\n", - "[INFO] [1712690293.198658]: -------------------\n", - "[INFO] [1712690293.199007]: SOMA.Constructing \n", - "[INFO] [1712690293.199255]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690293.199500]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.199769]: Subclasses: [SOMA.Arranging, SOMA.Assembling, SOMA.Mixing, SOMA.Arranging, SOMA.Assembling, SOMA.Mixing]\n", - "[INFO] [1712690293.200122]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.200651]: Instances: []\n", - "[INFO] [1712690293.200934]: Direct Instances: []\n", - "[INFO] [1712690293.201197]: Inverse Restrictions: []\n", - "[INFO] [1712690293.201467]: -------------------\n", - "[INFO] [1712690293.201737]: SOMA.ArtificialAgent \n", - "[INFO] [1712690293.201995]: Super classes: [DUL.PhysicalAgent, DUL.PhysicalAgent]\n", - "[INFO] [1712690293.202251]: Ancestors: {DUL.Entity, owl.Thing, DUL.Object, DUL.Agent, SOMA.ArtificialAgent, DUL.PhysicalAgent, DUL.PhysicalObject}\n", - "[INFO] [1712690293.202504]: Subclasses: []\n", - "[INFO] [1712690293.202797]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.203305]: Instances: []\n", - "[INFO] [1712690293.203578]: Direct Instances: []\n", - "[INFO] [1712690293.203841]: Inverse Restrictions: []\n", - "[INFO] [1712690293.204086]: -------------------\n", - "[INFO] [1712690293.204326]: SOMA.Assembling \n", - "[INFO] [1712690293.204584]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712690293.204851]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Assembling, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.205115]: Subclasses: []\n", - "[INFO] [1712690293.205420]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.205915]: Instances: []\n", - "[INFO] [1712690293.206189]: Direct Instances: []\n", - "[INFO] [1712690293.206451]: Inverse Restrictions: []\n", - "[INFO] [1712690293.206697]: -------------------\n", - "[INFO] [1712690293.206941]: SOMA.AssertionTask \n", - "[INFO] [1712690293.207198]: Super classes: [SOMA.IllocutionaryTask, SOMA.IllocutionaryTask, DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause)), DUL.classifies.only(DUL.hasParticipant.some(SOMA.DeclarativeClause))]\n", - "[INFO] [1712690293.207455]: Ancestors: {SOMA.IllocutionaryTask, SOMA.AssertionTask, owl.Thing}\n", - "[INFO] [1712690293.207709]: Subclasses: []\n", - "[INFO] [1712690293.208010]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.208499]: Instances: []\n", - "[INFO] [1712690293.208779]: Direct Instances: []\n", - "[INFO] [1712690293.209047]: Inverse Restrictions: []\n", - "[INFO] [1712690293.209297]: -------------------\n", - "[INFO] [1712690293.209540]: SOMA.DeclarativeClause \n", - "[INFO] [1712690293.209784]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712690293.210037]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.DeclarativeClause, SOMA.ClausalObject}\n", - "[INFO] [1712690293.210301]: Subclasses: []\n", - "[INFO] [1712690293.210602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.211097]: Instances: []\n", - "[INFO] [1712690293.211361]: Direct Instances: []\n", - "[INFO] [1712690293.211658]: Inverse Restrictions: []\n", - "[INFO] [1712690293.211919]: -------------------\n", - "[INFO] [1712690293.212172]: SOMA.AssumingArmPose \n", - "[INFO] [1712690293.212416]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712690293.212668]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.AssumingArmPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.212923]: Subclasses: [SOMA.ParkingArms, SOMA.ParkingArms]\n", - "[INFO] [1712690293.213249]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.213778]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712690293.214057]: Direct Instances: []\n", - "[INFO] [1712690293.214331]: Inverse Restrictions: []\n", - "[INFO] [1712690293.214583]: -------------------\n", - "[INFO] [1712690293.214829]: SOMA.AssumingPose \n", - "[INFO] [1712690293.215068]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690293.215320]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.215589]: Subclasses: [SOMA.Sitting, SOMA.AssumingArmPose, SOMA.SettingGripper, SOMA.AssumingArmPose, SOMA.SettingGripper]\n", - "[INFO] [1712690293.215890]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.216400]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712690293.216680]: Direct Instances: []\n", - "[INFO] [1712690293.216992]: Inverse Restrictions: []\n", - "[INFO] [1712690293.217252]: -------------------\n", - "[INFO] [1712690293.217501]: SOMA.AttentionShift \n", - "[INFO] [1712690293.217751]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712690293.218018]: Ancestors: {DUL.Entity, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.218299]: Subclasses: [SOMA.Focusing, SOMA.Focusing]\n", - "[INFO] [1712690293.218608]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.219107]: Instances: []\n", - "[INFO] [1712690293.219368]: Direct Instances: []\n", - "[INFO] [1712690293.219627]: Inverse Restrictions: []\n", - "[INFO] [1712690293.219885]: -------------------\n", - "[INFO] [1712690293.220140]: SOMA.MentalTask \n", - "[INFO] [1712690293.220406]: Super classes: [DUL.Task, DUL.Task, DUL.classifies.only(SOMA.MentalAction), DUL.classifies.only(SOMA.MentalAction)]\n", - "[INFO] [1712690293.220685]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.220966]: Subclasses: [SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling, SOMA.AttentionShift, SOMA.InformationDismissal, SOMA.InformationStorage, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712690293.221276]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.221798]: Instances: []\n", - "[INFO] [1712690293.222079]: Direct Instances: []\n", - "[INFO] [1712690293.222383]: Inverse Restrictions: []\n", - "[INFO] [1712690293.222633]: -------------------\n", - "[INFO] [1712690293.222879]: SOMA.AvoidedObject \n", - "[INFO] [1712690293.223119]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.223375]: Ancestors: {DUL.Entity, SOMA.AvoidedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.223643]: Subclasses: []\n", - "[INFO] [1712690293.223945]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.224433]: Instances: []\n", - "[INFO] [1712690293.224693]: Direct Instances: []\n", - "[INFO] [1712690293.224956]: Inverse Restrictions: []\n", - "[INFO] [1712690293.225211]: -------------------\n", - "[INFO] [1712690293.225456]: SOMA.Avoiding \n", - "[INFO] [1712690293.225702]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712690293.225954]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Avoiding}\n", - "[INFO] [1712690293.226196]: Subclasses: []\n", - "[INFO] [1712690293.226483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.226988]: Instances: []\n", - "[INFO] [1712690293.227263]: Direct Instances: []\n", - "[INFO] [1712690293.227523]: Inverse Restrictions: []\n", - "[INFO] [1712690293.227768]: -------------------\n", - "[INFO] [1712690293.228010]: SOMA.Navigating \n", - "[INFO] [1712690293.228255]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690293.228520]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.228791]: Subclasses: [SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo, SOMA.Avoiding, SOMA.Distancing, SOMA.MovingTo]\n", - "[INFO] [1712690293.229091]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.229594]: Instances: [SOMA.navigating]\n", - "[INFO] [1712690293.230233]: Direct Instances: [SOMA.navigating]\n", - "[INFO] [1712690293.230533]: Inverse Restrictions: []\n", - "[INFO] [1712690293.230787]: -------------------\n", - "[INFO] [1712690293.231046]: SOMA.Barrier \n", - "[INFO] [1712690293.231321]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712690293.231602]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.231868]: Subclasses: [SOMA.Cover, SOMA.Obstacle, SOMA.Cover, SOMA.Obstacle]\n", - "[INFO] [1712690293.232165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.232661]: Instances: []\n", - "[INFO] [1712690293.233002]: Direct Instances: []\n", - "[INFO] [1712690293.233363]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712690293.233713]: -------------------\n", - "[INFO] [1712690293.234006]: SOMA.Restrictor \n", - "[INFO] [1712690293.234283]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712690293.234554]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.234839]: Subclasses: [SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter, SOMA.Barrier, SOMA.Container, SOMA.Protector, SOMA.Supporter]\n", - "[INFO] [1712690293.235154]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.235684]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690293.235969]: Direct Instances: []\n", - "[INFO] [1712690293.236334]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712690293.236606]: -------------------\n", - "[INFO] [1712690293.236860]: SOMA.BehavioralDiagnosis \n", - "[INFO] [1712690293.237104]: Super classes: [DUL.Diagnosis, DUL.hasConstituent.some(DUL.Goal)]\n", - "[INFO] [1712690293.237352]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.237619]: Subclasses: [SOMA.DexterityDiagnosis, SOMA.SuccessDiagnosis]\n", - "[INFO] [1712690293.237921]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712690293.238443]: Instances: []\n", - "[INFO] [1712690293.238718]: Direct Instances: []\n", - "[INFO] [1712690293.238975]: Inverse Restrictions: []\n", - "[INFO] [1712690293.239222]: -------------------\n", - "[INFO] [1712690293.239460]: SOMA.BeneficiaryRole \n", - "[INFO] [1712690293.239696]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712690293.239949]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.BeneficiaryRole, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690293.240211]: Subclasses: [SOMA.RecipientRole, SOMA.RecipientRole]\n", - "[INFO] [1712690293.240506]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.241002]: Instances: []\n", - "[INFO] [1712690293.241280]: Direct Instances: []\n", - "[INFO] [1712690293.241541]: Inverse Restrictions: []\n", - "[INFO] [1712690293.241788]: -------------------\n", - "[INFO] [1712690293.242030]: SOMA.GoalRole \n", - "[INFO] [1712690293.242281]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690293.242536]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690293.242787]: Subclasses: [SOMA.BeneficiaryRole, SOMA.ResultRole, SOMA.BeneficiaryRole, SOMA.ResultRole]\n", - "[INFO] [1712690293.243078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.243585]: Instances: []\n", - "[INFO] [1712690293.243853]: Direct Instances: []\n", - "[INFO] [1712690293.244110]: Inverse Restrictions: []\n", - "[INFO] [1712690293.244350]: -------------------\n", - "[INFO] [1712690293.244584]: SOMA.CounterfactualBinding \n", - "[INFO] [1712690293.244864]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712690293.245277]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.CounterfactualBinding, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690293.245578]: Subclasses: []\n", - "[INFO] [1712690293.245913]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.246419]: Instances: []\n", - "[INFO] [1712690293.246701]: Direct Instances: []\n", - "[INFO] [1712690293.247114]: Inverse Restrictions: [SOMA.ConditionalSuccedence, SOMA.ConditionalSuccedence]\n", - "[INFO] [1712690293.247403]: -------------------\n", - "[INFO] [1712690293.247662]: SOMA.FactualBinding \n", - "[INFO] [1712690293.247917]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712690293.248174]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.FactualBinding, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690293.248436]: Subclasses: []\n", - "[INFO] [1712690293.248737]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.249244]: Instances: []\n", - "[INFO] [1712690293.249507]: Direct Instances: []\n", - "[INFO] [1712690293.249835]: Inverse Restrictions: [SOMA.TaskInvocation, SOMA.TaskInvocation]\n", - "[INFO] [1712690293.250145]: -------------------\n", - "[INFO] [1712690293.250405]: SOMA.RoleFillerBinding \n", - "[INFO] [1712690293.250654]: Super classes: [SOMA.Binding, SOMA.Binding]\n", - "[INFO] [1712690293.250908]: Ancestors: {DUL.Entity, SOMA.RoleFillerBinding, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690293.251171]: Subclasses: []\n", - "[INFO] [1712690293.251499]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.251995]: Instances: []\n", - "[INFO] [1712690293.252263]: Direct Instances: []\n", - "[INFO] [1712690293.252551]: Inverse Restrictions: []\n", - "[INFO] [1712690293.252813]: -------------------\n", - "[INFO] [1712690293.253070]: SOMA.RoleRoleBinding \n", - "[INFO] [1712690293.253314]: Super classes: [SOMA.Binding, SOMA.Binding, SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role), SOMA.hasBindingFiller.only(DUL.Parameter | DUL.Role)]\n", - "[INFO] [1712690293.253569]: Ancestors: {SOMA.RoleRoleBinding, DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Binding}\n", - "[INFO] [1712690293.253814]: Subclasses: []\n", - "[INFO] [1712690293.254112]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.254610]: Instances: []\n", - "[INFO] [1712690293.254874]: Direct Instances: []\n", - "[INFO] [1712690293.255166]: Inverse Restrictions: []\n", - "[INFO] [1712690293.255410]: -------------------\n", - "[INFO] [1712690293.255663]: SOMA.DesignedComponent \n", - "[INFO] [1712690293.255916]: Super classes: [SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.FunctionalPart, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Connectivity), SOMA.hasDisposition.some(SOMA.Connectivity)]\n", - "[INFO] [1712690293.256175]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.DesignedArtifact, SOMA.DesignedComponent, DUL.PhysicalObject}\n", - "[INFO] [1712690293.256446]: Subclasses: [SOMA.Blade, SOMA.Compartment, SOMA.Cooktop, SOMA.Countertop, SOMA.DesignedHandle, SOMA.Rack, SOMA.DesignedSpade, SOMA.Door, SOMA.Drawer, SOMA.Hotplate, SOMA.Lid, SOMA.Sink, SOMA.Tap]\n", - "[INFO] [1712690293.256744]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690293.257291]: Instances: []\n", - "[INFO] [1712690293.257561]: Direct Instances: []\n", - "[INFO] [1712690293.257827]: Inverse Restrictions: []\n", - "[INFO] [1712690293.258074]: -------------------\n", - "[INFO] [1712690293.258316]: SOMA.Blockage \n", - "[INFO] [1712690293.258564]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject), SOMA.affordsBearer.only(SOMA.Barrier), SOMA.affordsTrigger.only(SOMA.BlockedObject)]\n", - "[INFO] [1712690293.258829]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.259093]: Subclasses: [SOMA.Coverage, SOMA.Impediment, SOMA.Coverage, SOMA.Impediment]\n", - "[INFO] [1712690293.259395]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.259888]: Instances: []\n", - "[INFO] [1712690293.260154]: Direct Instances: []\n", - "[INFO] [1712690293.260425]: Inverse Restrictions: []\n", - "[INFO] [1712690293.260671]: -------------------\n", - "[INFO] [1712690293.260912]: SOMA.BlockedObject \n", - "[INFO] [1712690293.261152]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.261402]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.261669]: Subclasses: [SOMA.CoveredObject, SOMA.RestrictedObject, SOMA.CoveredObject, SOMA.RestrictedObject]\n", - "[INFO] [1712690293.261966]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.262464]: Instances: []\n", - "[INFO] [1712690293.262734]: Direct Instances: []\n", - "[INFO] [1712690293.263031]: Inverse Restrictions: [SOMA.Blockage, SOMA.Blockage]\n", - "[INFO] [1712690293.263277]: -------------------\n", - "[INFO] [1712690293.263514]: SOMA.BodyMovement \n", - "[INFO] [1712690293.263770]: Super classes: [SOMA.Motion, SOMA.Motion, DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent))), DUL.classifies.only(DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject & DUL.isPartOf.some(DUL.PhysicalAgent)))]\n", - "[INFO] [1712690293.264037]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.264322]: Subclasses: [SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis, SOMA.Locomotion, SOMA.HeadMovement, SOMA.PosturalMoving, SOMA.Taxis]\n", - "[INFO] [1712690293.264626]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.265152]: Instances: []\n", - "[INFO] [1712690293.265429]: Direct Instances: []\n", - "[INFO] [1712690293.265697]: Inverse Restrictions: []\n", - "[INFO] [1712690293.265944]: -------------------\n", - "[INFO] [1712690293.266186]: SOMA.Motion \n", - "[INFO] [1712690293.266423]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712690293.266702]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.267010]: Subclasses: [SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion, SOMA.BodyMovement, SOMA.FluidFlow, SOMA.DirectedMotion, SOMA.UndirectedMotion]\n", - "[INFO] [1712690293.267314]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.267862]: Instances: []\n", - "[INFO] [1712690293.268150]: Direct Instances: []\n", - "[INFO] [1712690293.268418]: Inverse Restrictions: []\n", - "[INFO] [1712690293.268667]: -------------------\n", - "[INFO] [1712690293.268986]: SOMA.Boiling \n", - "[INFO] [1712690293.269306]: Super classes: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712690293.269597]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Boiling, DUL.Concept, DUL.SocialObject, SOMA.Vaporizing, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", - "[INFO] [1712690293.269878]: Subclasses: []\n", - "[INFO] [1712690293.270189]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.270690]: Instances: []\n", - "[INFO] [1712690293.270971]: Direct Instances: []\n", - "[INFO] [1712690293.271238]: Inverse Restrictions: []\n", - "[INFO] [1712690293.271484]: -------------------\n", - "[INFO] [1712690293.271727]: SOMA.Vaporizing \n", - "[INFO] [1712690293.271977]: Super classes: [SOMA.PhaseTransition, SOMA.PhaseTransition, SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance)), SOMA.isProcessTypeOf.some(SOMA.AlteredObject & DUL.classifies.only(DUL.Substance))]\n", - "[INFO] [1712690293.272224]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Vaporizing, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", - "[INFO] [1712690293.272489]: Subclasses: [SOMA.Boiling, SOMA.Boiling]\n", - "[INFO] [1712690293.272799]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.273312]: Instances: []\n", - "[INFO] [1712690293.273574]: Direct Instances: []\n", - "[INFO] [1712690293.273828]: Inverse Restrictions: []\n", - "[INFO] [1712690293.274067]: -------------------\n", - "[INFO] [1712690293.274318]: SOMA.DesignedContainer \n", - "[INFO] [1712690293.274561]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712690293.274809]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690293.275084]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712690293.275382]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712690293.275996]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712690293.276269]: Direct Instances: []\n", - "[INFO] [1712690293.276535]: Inverse Restrictions: []\n", - "[INFO] [1712690293.276784]: -------------------\n", - "[INFO] [1712690293.277029]: SOMA.BoxShape \n", - "[INFO] [1712690293.277528]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, ), SOMA.hasHeight.exactly(1, ), SOMA.hasLength.exactly(1, ), SOMA.hasWidth.exactly(1, )]\n", - "[INFO] [1712690293.277946]: Ancestors: {DUL.Entity, SOMA.BoxShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690293.278227]: Subclasses: []\n", - "[INFO] [1712690293.278530]: Properties: [SOMA.hasHeight, SOMA.hasLength, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasWidth]\n", - "[INFO] [1712690293.279025]: Instances: []\n", - "[INFO] [1712690293.279300]: Direct Instances: []\n", - "[INFO] [1712690293.279587]: Inverse Restrictions: [SOMA.Box]\n", - "[INFO] [1712690293.279837]: -------------------\n", - "[INFO] [1712690293.280076]: SOMA.Deposition \n", - "[INFO] [1712690293.280505]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject), SOMA.affordsBearer.only(SOMA.Deposit), SOMA.affordsTrigger.only(SOMA.DepositedObject)]\n", - "[INFO] [1712690293.280904]: Ancestors: {SOMA.Deposition, DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.281312]: Subclasses: [SOMA.CanBeSatOn]\n", - "[INFO] [1712690293.281760]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.282389]: Instances: []\n", - "[INFO] [1712690293.282690]: Direct Instances: []\n", - "[INFO] [1712690293.283041]: Inverse Restrictions: []\n", - "[INFO] [1712690293.283296]: -------------------\n", - "[INFO] [1712690293.283544]: SOMA.CanCut \n", - "[INFO] [1712690293.283794]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject), SOMA.affordsBearer.only(SOMA.Cutter), SOMA.affordsTrigger.only(SOMA.CutObject)]\n", - "[INFO] [1712690293.284047]: Ancestors: {SOMA.CanCut, DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.284307]: Subclasses: []\n", - "[INFO] [1712690293.284610]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.285104]: Instances: []\n", - "[INFO] [1712690293.285372]: Direct Instances: []\n", - "[INFO] [1712690293.285629]: Inverse Restrictions: []\n", - "[INFO] [1712690293.285884]: -------------------\n", - "[INFO] [1712690293.286130]: SOMA.Variability \n", - "[INFO] [1712690293.286392]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject), SOMA.affordsBearer.only(SOMA.Tool), SOMA.affordsTrigger.only(SOMA.AlteredObject)]\n", - "[INFO] [1712690293.286645]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.286907]: Subclasses: [SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering, SOMA.CanCut, SOMA.Purification, SOMA.Composing, SOMA.Shaping, SOMA.Shifting, SOMA.Tempering]\n", - "[INFO] [1712690293.287200]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.287731]: Instances: []\n", - "[INFO] [1712690293.288006]: Direct Instances: []\n", - "[INFO] [1712690293.288269]: Inverse Restrictions: []\n", - "[INFO] [1712690293.288516]: -------------------\n", - "[INFO] [1712690293.288763]: SOMA.Cutter \n", - "[INFO] [1712690293.289018]: Super classes: [SOMA.Tool, SOMA.Tool]\n", - "[INFO] [1712690293.289284]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Cutter, SOMA.Tool, DUL.Role}\n", - "[INFO] [1712690293.289536]: Subclasses: []\n", - "[INFO] [1712690293.289830]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.290337]: Instances: []\n", - "[INFO] [1712690293.290608]: Direct Instances: []\n", - "[INFO] [1712690293.290932]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712690293.291181]: -------------------\n", - "[INFO] [1712690293.291441]: SOMA.CutObject \n", - "[INFO] [1712690293.291683]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject]\n", - "[INFO] [1712690293.291939]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CutObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", - "[INFO] [1712690293.292185]: Subclasses: []\n", - "[INFO] [1712690293.292478]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.292994]: Instances: []\n", - "[INFO] [1712690293.293267]: Direct Instances: []\n", - "[INFO] [1712690293.293585]: Inverse Restrictions: [SOMA.Cuttability, SOMA.CanCut, SOMA.Cuttability, SOMA.CanCut]\n", - "[INFO] [1712690293.293839]: -------------------\n", - "[INFO] [1712690293.294103]: SOMA.Capability \n", - "[INFO] [1712690293.294361]: Super classes: [SOMA.Disposition, SOMA.Disposition, DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task)), DUL.isDescribedBy.exactly(1, SOMA.Affordance & SOMA.definesBearer.exactly(1, DUL.Role) & SOMA.definesTrigger.exactly(1, DUL.Role) & DUL.definesTask.exactly(1, DUL.Task))]\n", - "[INFO] [1712690293.294633]: Ancestors: {DUL.Entity, SOMA.Capability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.294896]: Subclasses: [SOMA.CanSit]\n", - "[INFO] [1712690293.295193]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isDescribedBy]\n", - "[INFO] [1712690293.295688]: Instances: []\n", - "[INFO] [1712690293.295962]: Direct Instances: []\n", - "[INFO] [1712690293.296219]: Inverse Restrictions: []\n", - "[INFO] [1712690293.296472]: -------------------\n", - "[INFO] [1712690293.296710]: SOMA.Capacity \n", - "[INFO] [1712690293.297008]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690293.297279]: Ancestors: {DUL.Entity, SOMA.Capacity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690293.297544]: Subclasses: []\n", - "[INFO] [1712690293.297844]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.298343]: Instances: []\n", - "[INFO] [1712690293.298621]: Direct Instances: []\n", - "[INFO] [1712690293.298929]: Inverse Restrictions: []\n", - "[INFO] [1712690293.299180]: -------------------\n", - "[INFO] [1712690293.299422]: SOMA.Intrinsic \n", - "[INFO] [1712690293.299669]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712690293.299932]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690293.300217]: Subclasses: [SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature, SOMA.Shape, SOMA.Capacity, SOMA.DeviceState, SOMA.Material, SOMA.Sharpness, SOMA.Size, SOMA.Temperature]\n", - "[INFO] [1712690293.300526]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.301051]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712690293.301343]: Direct Instances: []\n", - "[INFO] [1712690293.301616]: Inverse Restrictions: []\n", - "[INFO] [1712690293.301862]: -------------------\n", - "[INFO] [1712690293.302109]: SOMA.Catching \n", - "[INFO] [1712690293.302349]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.302599]: Ancestors: {DUL.Entity, SOMA.Catching, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.302857]: Subclasses: []\n", - "[INFO] [1712690293.303165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.303651]: Instances: []\n", - "[INFO] [1712690293.303905]: Direct Instances: []\n", - "[INFO] [1712690293.304148]: Inverse Restrictions: []\n", - "[INFO] [1712690293.304401]: -------------------\n", - "[INFO] [1712690293.304645]: SOMA.PickingUp \n", - "[INFO] [1712690293.304893]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690293.305148]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.PickingUp}\n", - "[INFO] [1712690293.305460]: Subclasses: []\n", - "[INFO] [1712690293.305776]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.306313]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712690293.306610]: Direct Instances: [SOMA.picking_up]\n", - "[INFO] [1712690293.306888]: Inverse Restrictions: []\n", - "[INFO] [1712690293.307137]: -------------------\n", - "[INFO] [1712690293.307377]: SOMA.CausalEventRole \n", - "[INFO] [1712690293.307613]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712690293.307872]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausalEventRole, SOMA.CausativeRole, DUL.Role}\n", - "[INFO] [1712690293.308119]: Subclasses: []\n", - "[INFO] [1712690293.308408]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.308889]: Instances: []\n", - "[INFO] [1712690293.309187]: Direct Instances: []\n", - "[INFO] [1712690293.309498]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690293.309736]: -------------------\n", - "[INFO] [1712690293.309968]: SOMA.EventAdjacentRole \n", - "[INFO] [1712690293.310194]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712690293.310444]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.310709]: Subclasses: [SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole, SOMA.CausativeRole, SOMA.Patient, SOMA.GoalRole, SOMA.ResourceRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712690293.311003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.311660]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690293.311953]: Direct Instances: []\n", - "[INFO] [1712690293.312230]: Inverse Restrictions: []\n", - "[INFO] [1712690293.312480]: -------------------\n", - "[INFO] [1712690293.312720]: SOMA.CausedMotionTheory \n", - "[INFO] [1712690293.313008]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory), DUL.defines.some(SOMA.CausalEventRole), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.PerformerRole), DUL.hasPart.some(SOMA.SourcePathGoalTheory)]\n", - "[INFO] [1712690293.313275]: Ancestors: {DUL.Entity, SOMA.CausedMotionTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690293.313527]: Subclasses: []\n", - "[INFO] [1712690293.313864]: Properties: [DUL.defines, DUL.hasPart, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.314384]: Instances: []\n", - "[INFO] [1712690293.314678]: Direct Instances: []\n", - "[INFO] [1712690293.314943]: Inverse Restrictions: []\n", - "[INFO] [1712690293.315189]: -------------------\n", - "[INFO] [1712690293.315438]: SOMA.ImageSchemaTheory \n", - "[INFO] [1712690293.315673]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory]\n", - "[INFO] [1712690293.315919]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690293.316185]: Subclasses: [SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory, SOMA.CausedMotionTheory, SOMA.SourcePathGoalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ESTSchemaTheory, SOMA.ProximalTheory]\n", - "[INFO] [1712690293.316484]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.316997]: Instances: []\n", - "[INFO] [1712690293.317274]: Direct Instances: []\n", - "[INFO] [1712690293.317603]: Inverse Restrictions: [SOMA.StateTransition, SOMA.Scene, SOMA.Scene, SOMA.StateTransition]\n", - "[INFO] [1712690293.317857]: -------------------\n", - "[INFO] [1712690293.318096]: SOMA.PerformerRole \n", - "[INFO] [1712690293.318343]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole, DUL.classifies.only(DUL.Agent), DUL.classifies.only(DUL.Agent)]\n", - "[INFO] [1712690293.318592]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", - "[INFO] [1712690293.318864]: Subclasses: [SOMA.Sender, SOMA.ExperiencerRole, SOMA.Sender, SOMA.ExperiencerRole]\n", - "[INFO] [1712690293.319164]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.319664]: Instances: []\n", - "[INFO] [1712690293.319919]: Direct Instances: []\n", - "[INFO] [1712690293.320233]: Inverse Restrictions: [SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory, SOMA.ExecutableSchematicTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690293.320487]: -------------------\n", - "[INFO] [1712690293.320732]: SOMA.SourcePathGoalTheory \n", - "[INFO] [1712690293.320981]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Origin), DUL.defines.some(SOMA.PathRole)]\n", - "[INFO] [1712690293.321234]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.SourcePathGoalTheory}\n", - "[INFO] [1712690293.321497]: Subclasses: []\n", - "[INFO] [1712690293.321796]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.322286]: Instances: []\n", - "[INFO] [1712690293.322539]: Direct Instances: []\n", - "[INFO] [1712690293.322821]: Inverse Restrictions: [SOMA.CausedMotionTheory, SOMA.CausedMotionTheory]\n", - "[INFO] [1712690293.323081]: -------------------\n", - "[INFO] [1712690293.323327]: SOMA.RoomSurface \n", - "[INFO] [1712690293.323572]: Super classes: [SOMA.Surface, SOMA.Surface]\n", - "[INFO] [1712690293.323817]: Ancestors: {DUL.Entity, SOMA.RoomSurface, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690293.324086]: Subclasses: [SOMA.Ceiling, SOMA.Floor, SOMA.Wall]\n", - "[INFO] [1712690293.324384]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.324916]: Instances: []\n", - "[INFO] [1712690293.325342]: Direct Instances: []\n", - "[INFO] [1712690293.325654]: Inverse Restrictions: []\n", - "[INFO] [1712690293.325931]: -------------------\n", - "[INFO] [1712690293.326190]: SOMA.Channel \n", - "[INFO] [1712690293.326447]: Super classes: [SOMA.PathRole, SOMA.PathRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712690293.326725]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Channel, SOMA.PathRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690293.326985]: Subclasses: []\n", - "[INFO] [1712690293.327291]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", - "[INFO] [1712690293.327789]: Instances: []\n", - "[INFO] [1712690293.328066]: Direct Instances: []\n", - "[INFO] [1712690293.328382]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690293.328633]: -------------------\n", - "[INFO] [1712690293.328882]: SOMA.PathRole \n", - "[INFO] [1712690293.329126]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712690293.329389]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.PathRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690293.329647]: Subclasses: [SOMA.Channel, SOMA.Channel]\n", - "[INFO] [1712690293.329949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.330444]: Instances: []\n", - "[INFO] [1712690293.330717]: Direct Instances: []\n", - "[INFO] [1712690293.331021]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712690293.331279]: -------------------\n", - "[INFO] [1712690293.331527]: SOMA.CommunicationTask \n", - "[INFO] [1712690293.331792]: Super classes: [DUL.Task, DUL.Task, DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)), DUL.isTaskOf.some(SOMA.Channel) & DUL.isTaskOf.some(SOMA.Message) & DUL.isTaskOf.some(SOMA.Receiver) & DUL.isTaskOf.some(SOMA.Sender), DUL.classifies.only(DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject))]\n", - "[INFO] [1712690293.332069]: Ancestors: {DUL.Entity, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.332336]: Subclasses: [SOMA.CommunicationReport, SOMA.Discourse, SOMA.CommunicationReport, SOMA.Discourse]\n", - "[INFO] [1712690293.332644]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.333150]: Instances: []\n", - "[INFO] [1712690293.333660]: Direct Instances: []\n", - "[INFO] [1712690293.334193]: Inverse Restrictions: [SOMA.Sender, SOMA.Receiver, SOMA.Message, SOMA.Channel, SOMA.Sender, SOMA.Receiver, SOMA.Channel, SOMA.Message]\n", - "[INFO] [1712690293.334471]: -------------------\n", - "[INFO] [1712690293.334733]: SOMA.CheckingObjectPresence \n", - "[INFO] [1712690293.334984]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712690293.335245]: Ancestors: {SOMA.CheckingObjectPresence, owl.Thing, SOMA.Perceiving}\n", - "[INFO] [1712690293.335510]: Subclasses: []\n", - "[INFO] [1712690293.335826]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.336325]: Instances: []\n", - "[INFO] [1712690293.336584]: Direct Instances: []\n", - "[INFO] [1712690293.336842]: Inverse Restrictions: []\n", - "[INFO] [1712690293.337104]: -------------------\n", - "[INFO] [1712690293.337350]: SOMA.ChemicalProcess \n", - "[INFO] [1712690293.337585]: Super classes: [DUL.Process, DUL.Process]\n", - "[INFO] [1712690293.337829]: Ancestors: {DUL.Entity, DUL.Event, DUL.Process, owl.Thing, SOMA.ChemicalProcess}\n", - "[INFO] [1712690293.338070]: Subclasses: []\n", - "[INFO] [1712690293.338354]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.338860]: Instances: []\n", - "[INFO] [1712690293.339125]: Direct Instances: []\n", - "[INFO] [1712690293.339380]: Inverse Restrictions: []\n", - "[INFO] [1712690293.339624]: -------------------\n", - "[INFO] [1712690293.339874]: SOMA.Choice \n", - "[INFO] [1712690293.340122]: Super classes: [SOMA.ResultRole, SOMA.ResultRole]\n", - "[INFO] [1712690293.340369]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.Choice, DUL.SocialObject, SOMA.ResultRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690293.340611]: Subclasses: []\n", - "[INFO] [1712690293.340904]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.341411]: Instances: []\n", - "[INFO] [1712690293.341676]: Direct Instances: []\n", - "[INFO] [1712690293.341938]: Inverse Restrictions: []\n", - "[INFO] [1712690293.342181]: -------------------\n", - "[INFO] [1712690293.342418]: SOMA.ResultRole \n", - "[INFO] [1712690293.342664]: Super classes: [SOMA.GoalRole, SOMA.GoalRole]\n", - "[INFO] [1712690293.342918]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.ResultRole, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690293.343167]: Subclasses: [SOMA.Choice, SOMA.Choice]\n", - "[INFO] [1712690293.343452]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.343954]: Instances: []\n", - "[INFO] [1712690293.344222]: Direct Instances: []\n", - "[INFO] [1712690293.344481]: Inverse Restrictions: []\n", - "[INFO] [1712690293.344827]: -------------------\n", - "[INFO] [1712690293.345101]: SOMA.CircularCylinder \n", - "[INFO] [1712690293.345370]: Super classes: [SOMA.CylinderShape, SOMA.CylinderShape, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712690293.345646]: Ancestors: {SOMA.CircularCylinder, DUL.Entity, SOMA.CylinderShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690293.345913]: Subclasses: []\n", - "[INFO] [1712690293.346230]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", - "[INFO] [1712690293.346748]: Instances: []\n", - "[INFO] [1712690293.347056]: Direct Instances: []\n", - "[INFO] [1712690293.347320]: Inverse Restrictions: []\n", - "[INFO] [1712690293.347567]: -------------------\n", - "[INFO] [1712690293.347807]: SOMA.CylinderShape \n", - "[INFO] [1712690293.348052]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, ), SOMA.hasRadius.some(), SOMA.hasLength.exactly(1, )]\n", - "[INFO] [1712690293.348299]: Ancestors: {DUL.Entity, SOMA.CylinderShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690293.348562]: Subclasses: [SOMA.CircularCylinder, SOMA.CircularCylinder]\n", - "[INFO] [1712690293.348875]: Properties: [SOMA.hasLength, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, SOMA.hasRadius]\n", - "[INFO] [1712690293.349370]: Instances: []\n", - "[INFO] [1712690293.349643]: Direct Instances: []\n", - "[INFO] [1712690293.349899]: Inverse Restrictions: []\n", - "[INFO] [1712690293.350175]: -------------------\n", - "[INFO] [1712690293.350421]: SOMA.Classifier \n", - "[INFO] [1712690293.350657]: Super classes: [SOMA.StatisticalReasoner, SOMA.StatisticalReasoner]\n", - "[INFO] [1712690293.350904]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Classifier, SOMA.StatisticalReasoner, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.351160]: Subclasses: []\n", - "[INFO] [1712690293.351456]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690293.351955]: Instances: []\n", - "[INFO] [1712690293.352212]: Direct Instances: []\n", - "[INFO] [1712690293.352458]: Inverse Restrictions: []\n", - "[INFO] [1712690293.352708]: -------------------\n", - "[INFO] [1712690293.353079]: SOMA.StatisticalReasoner \n", - "[INFO] [1712690293.353398]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712690293.353695]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.StatisticalReasoner, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.353978]: Subclasses: [SOMA.Classifier, SOMA.Classifier]\n", - "[INFO] [1712690293.354289]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690293.354793]: Instances: []\n", - "[INFO] [1712690293.355078]: Direct Instances: []\n", - "[INFO] [1712690293.355352]: Inverse Restrictions: []\n", - "[INFO] [1712690293.355608]: -------------------\n", - "[INFO] [1712690293.355854]: SOMA.ClausalObject \n", - "[INFO] [1712690293.356096]: Super classes: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712690293.356356]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.ClausalObject}\n", - "[INFO] [1712690293.356623]: Subclasses: [SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause, SOMA.DeclarativeClause, SOMA.ImperativeClause, SOMA.InterrogativeClause]\n", - "[INFO] [1712690293.356929]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.357428]: Instances: []\n", - "[INFO] [1712690293.357687]: Direct Instances: []\n", - "[INFO] [1712690293.357949]: Inverse Restrictions: []\n", - "[INFO] [1712690293.358197]: -------------------\n", - "[INFO] [1712690293.358442]: SOMA.Phrase \n", - "[INFO] [1712690293.358681]: Super classes: [SOMA.LinguisticObject, SOMA.LinguisticObject]\n", - "[INFO] [1712690293.358927]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.359172]: Subclasses: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712690293.359476]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690293.359986]: Instances: []\n", - "[INFO] [1712690293.360250]: Direct Instances: []\n", - "[INFO] [1712690293.360499]: Inverse Restrictions: []\n", - "[INFO] [1712690293.360749]: -------------------\n", - "[INFO] [1712690293.361004]: SOMA.Clean \n", - "[INFO] [1712690293.361247]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712690293.361489]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion, SOMA.Clean}\n", - "[INFO] [1712690293.361728]: Subclasses: []\n", - "[INFO] [1712690293.362011]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.362515]: Instances: []\n", - "[INFO] [1712690293.362786]: Direct Instances: []\n", - "[INFO] [1712690293.363112]: Inverse Restrictions: []\n", - "[INFO] [1712690293.363359]: -------------------\n", - "[INFO] [1712690293.363598]: SOMA.CleanlinessRegion \n", - "[INFO] [1712690293.363838]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690293.364089]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion}\n", - "[INFO] [1712690293.364344]: Subclasses: [SOMA.Clean, SOMA.Dirty, SOMA.Clean, SOMA.Dirty]\n", - "[INFO] [1712690293.364636]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.365127]: Instances: []\n", - "[INFO] [1712690293.365408]: Direct Instances: []\n", - "[INFO] [1712690293.365735]: Inverse Restrictions: [SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness, SOMA.Cleanliness]\n", - "[INFO] [1712690293.365982]: -------------------\n", - "[INFO] [1712690293.366221]: SOMA.Cleaning \n", - "[INFO] [1712690293.366462]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject, SOMA.isTaskAffordedBy.some(SOMA.Purification), SOMA.isTaskAffordedBy.some(SOMA.Purification)]\n", - "[INFO] [1712690293.366727]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, SOMA.Cleaning, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690293.367014]: Subclasses: []\n", - "[INFO] [1712690293.367322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690293.367831]: Instances: []\n", - "[INFO] [1712690293.368104]: Direct Instances: []\n", - "[INFO] [1712690293.368368]: Inverse Restrictions: []\n", - "[INFO] [1712690293.368609]: -------------------\n", - "[INFO] [1712690293.368849]: SOMA.ModifyingPhysicalObject \n", - "[INFO] [1712690293.369102]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690293.369359]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690293.369623]: Subclasses: [SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting, SOMA.Cleaning, SOMA.Cutting, SOMA.PhysicalAcquiring, SOMA.Transporting]\n", - "[INFO] [1712690293.369917]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.370433]: Instances: []\n", - "[INFO] [1712690293.370703]: Direct Instances: []\n", - "[INFO] [1712690293.370966]: Inverse Restrictions: []\n", - "[INFO] [1712690293.371209]: -------------------\n", - "[INFO] [1712690293.371450]: SOMA.Purification \n", - "[INFO] [1712690293.371861]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Clean & DUL.isRegionFor.only(SOMA.Cleanliness))), SOMA.affordsTrigger.only(DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712690293.372246]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Purification}\n", - "[INFO] [1712690293.372616]: Subclasses: []\n", - "[INFO] [1712690293.373039]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.373695]: Instances: []\n", - "[INFO] [1712690293.374087]: Direct Instances: []\n", - "[INFO] [1712690293.374500]: Inverse Restrictions: [SOMA.Cleaning, SOMA.Cleaning]\n", - "[INFO] [1712690293.374864]: -------------------\n", - "[INFO] [1712690293.375130]: SOMA.Cleanliness \n", - "[INFO] [1712690293.375401]: Super classes: [SOMA.SocialQuality, SOMA.SocialQuality, DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion), DUL.hasRegion.some(SOMA.CleanlinessRegion), DUL.hasRegion.only(SOMA.CleanlinessRegion)]\n", - "[INFO] [1712690293.375664]: Ancestors: {DUL.Entity, SOMA.SocialQuality, SOMA.Cleanliness, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.375914]: Subclasses: []\n", - "[INFO] [1712690293.376209]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712690293.376702]: Instances: []\n", - "[INFO] [1712690293.376998]: Direct Instances: []\n", - "[INFO] [1712690293.377339]: Inverse Restrictions: []\n", - "[INFO] [1712690293.377594]: -------------------\n", - "[INFO] [1712690293.377842]: SOMA.SocialQuality \n", - "[INFO] [1712690293.378101]: Super classes: [DUL.Quality, DUL.Quality]\n", - "[INFO] [1712690293.378348]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.SocialQuality, owl.Thing}\n", - "[INFO] [1712690293.378609]: Subclasses: [SOMA.Preference, SOMA.Cleanliness, SOMA.Preference, SOMA.Cleanliness]\n", - "[INFO] [1712690293.378900]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.379414]: Instances: []\n", - "[INFO] [1712690293.379682]: Direct Instances: []\n", - "[INFO] [1712690293.379945]: Inverse Restrictions: []\n", - "[INFO] [1712690293.380187]: -------------------\n", - "[INFO] [1712690293.380425]: SOMA.Client-Server_Specification \n", - "[INFO] [1712690293.380687]: Super classes: [SOMA.InterfaceSpecification, SOMA.InterfaceSpecification, DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole), DUL.definesRole.some(SOMA.ClientRole) & DUL.definesRole.some(SOMA.ServerRole)]\n", - "[INFO] [1712690293.380958]: Ancestors: {DUL.Entity, SOMA.InterfaceSpecification, DUL.SocialObject, SOMA.Client-Server_Specification, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690293.381208]: Subclasses: []\n", - "[INFO] [1712690293.381504]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesRole, rdf-schema.label]\n", - "[INFO] [1712690293.381998]: Instances: []\n", - "[INFO] [1712690293.382278]: Direct Instances: []\n", - "[INFO] [1712690293.382609]: Inverse Restrictions: [SOMA.ServerRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.ClientRole]\n", - "[INFO] [1712690293.382864]: -------------------\n", - "[INFO] [1712690293.383111]: SOMA.ClientRole \n", - "[INFO] [1712690293.383360]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712690293.383613]: Ancestors: {SOMA.ClientRole, DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.383870]: Subclasses: []\n", - "[INFO] [1712690293.384171]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.384661]: Instances: []\n", - "[INFO] [1712690293.384936]: Direct Instances: []\n", - "[INFO] [1712690293.385245]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712690293.385492]: -------------------\n", - "[INFO] [1712690293.385743]: SOMA.ServerRole \n", - "[INFO] [1712690293.385987]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.Client-Server_Specification), DUL.isDefinedIn.some(SOMA.Client-Server_Specification)]\n", - "[INFO] [1712690293.386240]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.ServerRole, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.386512]: Subclasses: []\n", - "[INFO] [1712690293.386817]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.387317]: Instances: []\n", - "[INFO] [1712690293.387572]: Direct Instances: []\n", - "[INFO] [1712690293.387880]: Inverse Restrictions: [SOMA.Client-Server_Specification, SOMA.Client-Server_Specification]\n", - "[INFO] [1712690293.388140]: -------------------\n", - "[INFO] [1712690293.388386]: SOMA.InterfaceComponentRole \n", - "[INFO] [1712690293.388628]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690293.388882]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.389160]: Subclasses: [SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole, SOMA.ClientRole, SOMA.ServerRole, SOMA.HostRole, SOMA.PluginRole]\n", - "[INFO] [1712690293.389472]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690293.389982]: Instances: []\n", - "[INFO] [1712690293.390257]: Direct Instances: []\n", - "[INFO] [1712690293.390523]: Inverse Restrictions: []\n", - "[INFO] [1712690293.390771]: -------------------\n", - "[INFO] [1712690293.391011]: SOMA.Closing \n", - "[INFO] [1712690293.391244]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.391494]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, SOMA.Closing, owl.Thing}\n", - "[INFO] [1712690293.391754]: Subclasses: []\n", - "[INFO] [1712690293.392065]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.392559]: Instances: []\n", - "[INFO] [1712690293.392817]: Direct Instances: []\n", - "[INFO] [1712690293.393063]: Inverse Restrictions: []\n", - "[INFO] [1712690293.393315]: -------------------\n", - "[INFO] [1712690293.393558]: SOMA.Delivering \n", - "[INFO] [1712690293.393803]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712690293.394049]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Delivering, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.394297]: Subclasses: [SOMA.Serving, SOMA.Serving]\n", - "[INFO] [1712690293.394615]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690293.395116]: Instances: []\n", - "[INFO] [1712690293.395374]: Direct Instances: []\n", - "[INFO] [1712690293.395630]: Inverse Restrictions: []\n", - "[INFO] [1712690293.395872]: -------------------\n", - "[INFO] [1712690293.396120]: SOMA.Fetching \n", - "[INFO] [1712690293.396360]: Super classes: [SOMA.PhysicalAcquiring, SOMA.PhysicalAcquiring]\n", - "[INFO] [1712690293.396609]: Ancestors: {DUL.Entity, SOMA.Fetching, DUL.Concept, DUL.SocialObject, SOMA.PhysicalAcquiring, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690293.396881]: Subclasses: []\n", - "[INFO] [1712690293.397196]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.397690]: Instances: []\n", - "[INFO] [1712690293.397960]: Direct Instances: []\n", - "[INFO] [1712690293.398219]: Inverse Restrictions: []\n", - "[INFO] [1712690293.398459]: -------------------\n", - "[INFO] [1712690293.398692]: SOMA.Lifting \n", - "[INFO] [1712690293.398925]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.399182]: Ancestors: {DUL.Entity, SOMA.Lifting, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.399724]: Subclasses: []\n", - "[INFO] [1712690293.400287]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.400800]: Instances: []\n", - "[INFO] [1712690293.401082]: Direct Instances: []\n", - "[INFO] [1712690293.401354]: Inverse Restrictions: []\n", - "[INFO] [1712690293.401609]: -------------------\n", - "[INFO] [1712690293.401865]: SOMA.Opening \n", - "[INFO] [1712690293.402107]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.402366]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Opening}\n", - "[INFO] [1712690293.402626]: Subclasses: []\n", - "[INFO] [1712690293.402936]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.403433]: Instances: []\n", - "[INFO] [1712690293.403693]: Direct Instances: []\n", - "[INFO] [1712690293.403955]: Inverse Restrictions: []\n", - "[INFO] [1712690293.404211]: -------------------\n", - "[INFO] [1712690293.404455]: SOMA.Pulling \n", - "[INFO] [1712690293.404690]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.404989]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pulling}\n", - "[INFO] [1712690293.405288]: Subclasses: []\n", - "[INFO] [1712690293.405612]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.406108]: Instances: []\n", - "[INFO] [1712690293.406383]: Direct Instances: []\n", - "[INFO] [1712690293.406654]: Inverse Restrictions: []\n", - "[INFO] [1712690293.406909]: -------------------\n", - "[INFO] [1712690293.407145]: SOMA.Pushing \n", - "[INFO] [1712690293.407396]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.407654]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, SOMA.Pushing, SOMA.PhysicalTask, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.407912]: Subclasses: [SOMA.PushingAway, SOMA.PushingDown, SOMA.PushingAway, SOMA.PushingDown]\n", - "[INFO] [1712690293.408216]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.408729]: Instances: []\n", - "[INFO] [1712690293.409003]: Direct Instances: []\n", - "[INFO] [1712690293.409266]: Inverse Restrictions: []\n", - "[INFO] [1712690293.409508]: -------------------\n", - "[INFO] [1712690293.409745]: SOMA.Squeezing \n", - "[INFO] [1712690293.409996]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.410251]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Squeezing, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.410496]: Subclasses: []\n", - "[INFO] [1712690293.410783]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.411288]: Instances: []\n", - "[INFO] [1712690293.411552]: Direct Instances: []\n", - "[INFO] [1712690293.411844]: Inverse Restrictions: []\n", - "[INFO] [1712690293.412097]: -------------------\n", - "[INFO] [1712690293.412343]: SOMA.Linkage \n", - "[INFO] [1712690293.412594]: Super classes: [SOMA.Connectivity, SOMA.Connectivity, SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject), SOMA.affordsBearer.only(SOMA.LinkedObject), SOMA.affordsTrigger.only(SOMA.LinkedObject)]\n", - "[INFO] [1712690293.412866]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Linkage, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.413125]: Subclasses: [SOMA.ClosingDisposition]\n", - "[INFO] [1712690293.413430]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.413944]: Instances: []\n", - "[INFO] [1712690293.414230]: Direct Instances: []\n", - "[INFO] [1712690293.414495]: Inverse Restrictions: []\n", - "[INFO] [1712690293.414745]: -------------------\n", - "[INFO] [1712690293.414987]: SOMA.Clumsiness \n", - "[INFO] [1712690293.415231]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712690293.415501]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Clumsiness}\n", - "[INFO] [1712690293.415774]: Subclasses: []\n", - "[INFO] [1712690293.416080]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.416574]: Instances: []\n", - "[INFO] [1712690293.416894]: Direct Instances: []\n", - "[INFO] [1712690293.417183]: Inverse Restrictions: []\n", - "[INFO] [1712690293.417443]: -------------------\n", - "[INFO] [1712690293.417692]: SOMA.CognitiveAgent \n", - "[INFO] [1712690293.417935]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712690293.418192]: Ancestors: {DUL.Entity, SOMA.CognitiveAgent, owl.Thing, DUL.Object, DUL.Agent}\n", - "[INFO] [1712690293.418463]: Subclasses: []\n", - "[INFO] [1712690293.418778]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.419279]: Instances: []\n", - "[INFO] [1712690293.419557]: Direct Instances: []\n", - "[INFO] [1712690293.419818]: Inverse Restrictions: []\n", - "[INFO] [1712690293.420071]: -------------------\n", - "[INFO] [1712690293.420315]: SOMA.SubCognitiveAgent \n", - "[INFO] [1712690293.420557]: Super classes: [DUL.Agent, DUL.Agent]\n", - "[INFO] [1712690293.420807]: Ancestors: {DUL.Entity, SOMA.SubCognitiveAgent, owl.Thing, DUL.Object, DUL.Agent}\n", - "[INFO] [1712690293.421072]: Subclasses: []\n", - "[INFO] [1712690293.421376]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.421871]: Instances: []\n", - "[INFO] [1712690293.422138]: Direct Instances: []\n", - "[INFO] [1712690293.422400]: Inverse Restrictions: []\n", - "[INFO] [1712690293.422657]: -------------------\n", - "[INFO] [1712690293.422907]: SOMA.Collision \n", - "[INFO] [1712690293.423156]: Super classes: [SOMA.ProcessType, SOMA.ProcessType]\n", - "[INFO] [1712690293.423406]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing, SOMA.Collision}\n", - "[INFO] [1712690293.423666]: Subclasses: []\n", - "[INFO] [1712690293.423965]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.424463]: Instances: []\n", - "[INFO] [1712690293.424746]: Direct Instances: []\n", - "[INFO] [1712690293.425017]: Inverse Restrictions: []\n", - "[INFO] [1712690293.425270]: -------------------\n", - "[INFO] [1712690293.425520]: SOMA.Extrinsic \n", - "[INFO] [1712690293.425758]: Super classes: [SOMA.PhysicalQuality, SOMA.PhysicalQuality]\n", - "[INFO] [1712690293.426007]: Ancestors: {DUL.Entity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.426276]: Subclasses: [SOMA.Disposition, SOMA.Color, SOMA.Localization, SOMA.Disposition, SOMA.Color, SOMA.Localization]\n", - "[INFO] [1712690293.426584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.427130]: Instances: []\n", - "[INFO] [1712690293.427409]: Direct Instances: []\n", - "[INFO] [1712690293.427674]: Inverse Restrictions: []\n", - "[INFO] [1712690293.427923]: -------------------\n", - "[INFO] [1712690293.428170]: SOMA.ImperativeClause \n", - "[INFO] [1712690293.428431]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject, DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition), DUL.expresses.some(SOMA.StateTransition), DUL.expresses.only(SOMA.StateTransition)]\n", - "[INFO] [1712690293.428703]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, SOMA.ImperativeClause, owl.Thing, DUL.Object, SOMA.ClausalObject}\n", - "[INFO] [1712690293.428963]: Subclasses: []\n", - "[INFO] [1712690293.429266]: Properties: [DUL.expresses, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.429765]: Instances: []\n", - "[INFO] [1712690293.430053]: Direct Instances: []\n", - "[INFO] [1712690293.430360]: Inverse Restrictions: []\n", - "[INFO] [1712690293.430613]: -------------------\n", - "[INFO] [1712690293.430859]: SOMA.CommitedObject \n", - "[INFO] [1712690293.431103]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712690293.431365]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CommitedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.431639]: Subclasses: []\n", - "[INFO] [1712690293.431949]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.432449]: Instances: []\n", - "[INFO] [1712690293.432754]: Direct Instances: []\n", - "[INFO] [1712690293.433041]: Inverse Restrictions: []\n", - "[INFO] [1712690293.433299]: -------------------\n", - "[INFO] [1712690293.433546]: SOMA.ConnectedObject \n", - "[INFO] [1712690293.433788]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.434038]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.434297]: Subclasses: [SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject, SOMA.CommitedObject, SOMA.LinkedObject, SOMA.SupportedObject]\n", - "[INFO] [1712690293.434602]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.435100]: Instances: []\n", - "[INFO] [1712690293.435360]: Direct Instances: []\n", - "[INFO] [1712690293.435704]: Inverse Restrictions: [SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing, SOMA.Connectivity, SOMA.Connectivity, SOMA.Composing]\n", - "[INFO] [1712690293.435964]: -------------------\n", - "[INFO] [1712690293.436216]: SOMA.CommunicationAction \n", - "[INFO] [1712690293.436464]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.some(SOMA.LinguisticObject), DUL.hasParticipant.some(SOMA.LinguisticObject)]\n", - "[INFO] [1712690293.436711]: Ancestors: {DUL.Entity, DUL.Event, SOMA.CommunicationAction, owl.Thing, DUL.Action}\n", - "[INFO] [1712690293.436960]: Subclasses: []\n", - "[INFO] [1712690293.437254]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690293.437769]: Instances: []\n", - "[INFO] [1712690293.438040]: Direct Instances: []\n", - "[INFO] [1712690293.438330]: Inverse Restrictions: []\n", - "[INFO] [1712690293.438575]: -------------------\n", - "[INFO] [1712690293.438817]: SOMA.LinguisticObject \n", - "[INFO] [1712690293.439068]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712690293.439316]: Ancestors: {DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.439567]: Subclasses: [SOMA.Phrase, SOMA.Phrase]\n", - "[INFO] [1712690293.439852]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690293.440359]: Instances: []\n", - "[INFO] [1712690293.440629]: Direct Instances: []\n", - "[INFO] [1712690293.440927]: Inverse Restrictions: [SOMA.CommunicationAction, SOMA.CommunicationAction]\n", - "[INFO] [1712690293.441176]: -------------------\n", - "[INFO] [1712690293.441413]: SOMA.CommunicationReport \n", - "[INFO] [1712690293.441649]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690293.441913]: Ancestors: {DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.442168]: Subclasses: [SOMA.ThinkAloud, SOMA.ThinkAloud]\n", - "[INFO] [1712690293.442457]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.442942]: Instances: []\n", - "[INFO] [1712690293.443218]: Direct Instances: []\n", - "[INFO] [1712690293.443477]: Inverse Restrictions: []\n", - "[INFO] [1712690293.443718]: -------------------\n", - "[INFO] [1712690293.443952]: SOMA.Receiver \n", - "[INFO] [1712690293.444188]: Super classes: [SOMA.ExperiencerRole, SOMA.ExperiencerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712690293.444443]: Ancestors: {SOMA.ExperiencerRole, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.Receiver, SOMA.PerformerRole, DUL.Role}\n", - "[INFO] [1712690293.444704]: Subclasses: []\n", - "[INFO] [1712690293.445008]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", - "[INFO] [1712690293.445507]: Instances: []\n", - "[INFO] [1712690293.445763]: Direct Instances: []\n", - "[INFO] [1712690293.446074]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690293.446332]: -------------------\n", - "[INFO] [1712690293.446579]: SOMA.Sender \n", - "[INFO] [1712690293.446823]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole, DUL.hasTask.some(SOMA.CommunicationTask), DUL.hasTask.some(SOMA.CommunicationTask)]\n", - "[INFO] [1712690293.447073]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Sender, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", - "[INFO] [1712690293.447333]: Subclasses: []\n", - "[INFO] [1712690293.447644]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasTask, rdf-schema.comment]\n", - "[INFO] [1712690293.448142]: Instances: []\n", - "[INFO] [1712690293.448402]: Direct Instances: []\n", - "[INFO] [1712690293.448723]: Inverse Restrictions: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690293.449046]: -------------------\n", - "[INFO] [1712690293.449339]: SOMA.CommunicationTopic \n", - "[INFO] [1712690293.449625]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole, DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask))), DUL.classifies.only(DUL.SocialObject & DUL.isParticipantIn.some(DUL.isClassifiedBy.some(SOMA.CommunicationTask)))]\n", - "[INFO] [1712690293.449915]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.450188]: Subclasses: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690293.450500]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.451025]: Instances: []\n", - "[INFO] [1712690293.451293]: Direct Instances: []\n", - "[INFO] [1712690293.451561]: Inverse Restrictions: []\n", - "[INFO] [1712690293.451809]: -------------------\n", - "[INFO] [1712690293.452053]: SOMA.ResourceRole \n", - "[INFO] [1712690293.452291]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690293.452532]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.452804]: Subclasses: [SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole, SOMA.Instrument, SOMA.CommunicationTopic, SOMA.Option, SOMA.SourceMaterialRole]\n", - "[INFO] [1712690293.453120]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.453746]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690293.454055]: Direct Instances: []\n", - "[INFO] [1712690293.454331]: Inverse Restrictions: []\n", - "[INFO] [1712690293.454590]: -------------------\n", - "[INFO] [1712690293.454850]: SOMA.Composing \n", - "[INFO] [1712690293.455107]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712690293.455365]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Composing}\n", - "[INFO] [1712690293.455614]: Subclasses: []\n", - "[INFO] [1712690293.455909]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.456400]: Instances: []\n", - "[INFO] [1712690293.456683]: Direct Instances: []\n", - "[INFO] [1712690293.457050]: Inverse Restrictions: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712690293.457365]: -------------------\n", - "[INFO] [1712690293.457640]: SOMA.Computer_Language \n", - "[INFO] [1712690293.457897]: Super classes: [SOMA.FormalLanguage, SOMA.FormalLanguage]\n", - "[INFO] [1712690293.458161]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.458454]: Subclasses: [SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language, SOMA.File_format, SOMA.Programming_Language, SOMA.QueryLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.Markup_Language]\n", - "[INFO] [1712690293.458768]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.459297]: Instances: []\n", - "[INFO] [1712690293.459584]: Direct Instances: []\n", - "[INFO] [1712690293.459852]: Inverse Restrictions: []\n", - "[INFO] [1712690293.460102]: -------------------\n", - "[INFO] [1712690293.460341]: SOMA.FormalLanguage \n", - "[INFO] [1712690293.460585]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Structured_Text), SOMA.givesMeaningTo.only(SOMA.Structured_Text)]\n", - "[INFO] [1712690293.460850]: Ancestors: {DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.461127]: Subclasses: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690293.461439]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.462000]: Instances: []\n", - "[INFO] [1712690293.462315]: Direct Instances: []\n", - "[INFO] [1712690293.462690]: Inverse Restrictions: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712690293.462993]: -------------------\n", - "[INFO] [1712690293.463302]: SOMA.Computer_Program \n", - "[INFO] [1712690293.463609]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.463939]: Ancestors: {owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712690293.464283]: Subclasses: [SOMA.Executable_Code, SOMA.Source_Code, SOMA.Executable_Code, SOMA.Source_Code]\n", - "[INFO] [1712690293.464694]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.expresses]\n", - "[INFO] [1712690293.465509]: Instances: []\n", - "[INFO] [1712690293.465973]: Direct Instances: []\n", - "[INFO] [1712690293.466561]: Inverse Restrictions: [SOMA.Programming_Language, SOMA.Programming_Language]\n", - "[INFO] [1712690293.467054]: -------------------\n", - "[INFO] [1712690293.467511]: SOMA.Programming_Language \n", - "[INFO] [1712690293.467957]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language, SOMA.givesMeaningTo.only(SOMA.Computer_Program), SOMA.givesMeaningTo.only(SOMA.Computer_Program)]\n", - "[INFO] [1712690293.468443]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.Programming_Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.468973]: Subclasses: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712690293.469599]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.470660]: Instances: []\n", - "[INFO] [1712690293.471279]: Direct Instances: []\n", - "[INFO] [1712690293.472049]: Inverse Restrictions: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712690293.472693]: -------------------\n", - "[INFO] [1712690293.473499]: SOMA.Conclusion \n", - "[INFO] [1712690293.474225]: Super classes: [SOMA.CreatedObject, SOMA.Knowledge, SOMA.CreatedObject, SOMA.Knowledge]\n", - "[INFO] [1712690293.474929]: Ancestors: {SOMA.Conclusion, DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.CreatedObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.475596]: Subclasses: []\n", - "[INFO] [1712690293.476390]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.477711]: Instances: []\n", - "[INFO] [1712690293.478828]: Direct Instances: []\n", - "[INFO] [1712690293.479762]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690293.480356]: -------------------\n", - "[INFO] [1712690293.481483]: SOMA.CreatedObject \n", - "[INFO] [1712690293.482480]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.483552]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CreatedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.484733]: Subclasses: [SOMA.Conclusion, SOMA.Conclusion]\n", - "[INFO] [1712690293.486163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.488374]: Instances: []\n", - "[INFO] [1712690293.489790]: Direct Instances: []\n", - "[INFO] [1712690293.490938]: Inverse Restrictions: [SOMA.Creation, SOMA.Creation]\n", - "[INFO] [1712690293.491856]: -------------------\n", - "[INFO] [1712690293.492725]: SOMA.Knowledge \n", - "[INFO] [1712690293.493643]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712690293.494572]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.495437]: Subclasses: [SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules, SOMA.Conclusion, SOMA.Premise, SOMA.InferenceRules]\n", - "[INFO] [1712690293.496358]: Properties: [rdf-schema.isDefinedBy]\n", - "[INFO] [1712690293.497837]: Instances: []\n", - "[INFO] [1712690293.498549]: Direct Instances: []\n", - "[INFO] [1712690293.499602]: Inverse Restrictions: [SOMA.InformationRetrieval, SOMA.InformationAcquisition, SOMA.InformationRetrieval, SOMA.InformationAcquisition]\n", - "[INFO] [1712690293.500208]: -------------------\n", - "[INFO] [1712690293.500786]: SOMA.ConditionalSuccedence \n", - "[INFO] [1712690293.501341]: Super classes: [SOMA.Succedence, SOMA.Succedence, SOMA.hasBinding.only(SOMA.CounterfactualBinding), SOMA.hasBinding.only(SOMA.CounterfactualBinding)]\n", - "[INFO] [1712690293.501910]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, SOMA.ConditionalSuccedence, DUL.Description, SOMA.Succedence}\n", - "[INFO] [1712690293.502437]: Subclasses: []\n", - "[INFO] [1712690293.503079]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.504038]: Instances: []\n", - "[INFO] [1712690293.504533]: Direct Instances: []\n", - "[INFO] [1712690293.505003]: Inverse Restrictions: []\n", - "[INFO] [1712690293.505435]: -------------------\n", - "[INFO] [1712690293.506076]: SOMA.Configuration \n", - "[INFO] [1712690293.506670]: Super classes: [DUL.Description, DUL.Description, DUL.describes.some(SOMA.StateType), DUL.describes.some(SOMA.StateType)]\n", - "[INFO] [1712690293.507288]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Configuration, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690293.507941]: Subclasses: []\n", - "[INFO] [1712690293.508713]: Properties: [DUL.describes, rdf-schema.comment, rdf-schema.isDefinedBy]\n", - "[INFO] [1712690293.509800]: Instances: []\n", - "[INFO] [1712690293.510398]: Direct Instances: []\n", - "[INFO] [1712690293.510962]: Inverse Restrictions: []\n", - "[INFO] [1712690293.511471]: -------------------\n", - "[INFO] [1712690293.511957]: SOMA.Connectivity \n", - "[INFO] [1712690293.512448]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject), SOMA.affordsBearer.only(SOMA.ConnectedObject), SOMA.affordsTrigger.only(SOMA.ConnectedObject)]\n", - "[INFO] [1712690293.512969]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Connectivity, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.513453]: Subclasses: [SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712690293.514004]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.514853]: Instances: []\n", - "[INFO] [1712690293.515306]: Direct Instances: []\n", - "[INFO] [1712690293.515808]: Inverse Restrictions: [SOMA.DesignedComponent, SOMA.DesignedComponent]\n", - "[INFO] [1712690293.516190]: -------------------\n", - "[INFO] [1712690293.516551]: SOMA.ContactState \n", - "[INFO] [1712690293.516927]: Super classes: [SOMA.StateType, SOMA.StateType, DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject)), DUL.classifies.only(DUL.hasParticipant.min(2, DUL.PhysicalObject))]\n", - "[INFO] [1712690293.517325]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, SOMA.StateType, SOMA.ContactState, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.517688]: Subclasses: []\n", - "[INFO] [1712690293.518108]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.518792]: Instances: []\n", - "[INFO] [1712690293.519159]: Direct Instances: []\n", - "[INFO] [1712690293.519489]: Inverse Restrictions: []\n", - "[INFO] [1712690293.519792]: -------------------\n", - "[INFO] [1712690293.520093]: SOMA.Container \n", - "[INFO] [1712690293.520367]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712690293.520658]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, SOMA.Container, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.520952]: Subclasses: [SOMA.OntologyPlaceHolderObject]\n", - "[INFO] [1712690293.521278]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.521821]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690293.522115]: Direct Instances: []\n", - "[INFO] [1712690293.522465]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712690293.522723]: -------------------\n", - "[INFO] [1712690293.522974]: SOMA.Containment \n", - "[INFO] [1712690293.523228]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity)), SOMA.affordsBearer.only(SOMA.Container), SOMA.affordsTrigger.only(SOMA.IncludedObject), SOMA.isDispositionOf.only(DUL.hasQuality.some(SOMA.Capacity))]\n", - "[INFO] [1712690293.523493]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.523756]: Subclasses: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712690293.524056]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.524557]: Instances: []\n", - "[INFO] [1712690293.524831]: Direct Instances: []\n", - "[INFO] [1712690293.525219]: Inverse Restrictions: [SOMA.Spoon, SOMA.Kitchen, SOMA.DesignedContainer, SOMA.DesignedContainer]\n", - "[INFO] [1712690293.525465]: -------------------\n", - "[INFO] [1712690293.525702]: SOMA.IncludedObject \n", - "[INFO] [1712690293.525935]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.526181]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.526441]: Subclasses: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712690293.526736]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.527232]: Instances: []\n", - "[INFO] [1712690293.527490]: Direct Instances: []\n", - "[INFO] [1712690293.527787]: Inverse Restrictions: [SOMA.Containment, SOMA.Containment]\n", - "[INFO] [1712690293.528033]: -------------------\n", - "[INFO] [1712690293.528272]: SOMA.ContainmentState \n", - "[INFO] [1712690293.528515]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment))), SOMA.isStateTypeOf.some(SOMA.Container & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Containment)))]\n", - "[INFO] [1712690293.528761]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing, SOMA.ContainmentState}\n", - "[INFO] [1712690293.529026]: Subclasses: []\n", - "[INFO] [1712690293.529326]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.529815]: Instances: []\n", - "[INFO] [1712690293.530067]: Direct Instances: []\n", - "[INFO] [1712690293.530334]: Inverse Restrictions: []\n", - "[INFO] [1712690293.530575]: -------------------\n", - "[INFO] [1712690293.530808]: SOMA.FunctionalControl \n", - "[INFO] [1712690293.531046]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712690293.531301]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.531571]: Subclasses: [SOMA.ContainmentState, SOMA.SupportState, SOMA.ContainmentState, SOMA.SupportState]\n", - "[INFO] [1712690293.531872]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.532372]: Instances: []\n", - "[INFO] [1712690293.532645]: Direct Instances: []\n", - "[INFO] [1712690293.532914]: Inverse Restrictions: []\n", - "[INFO] [1712690293.533160]: -------------------\n", - "[INFO] [1712690293.533400]: SOMA.ContainmentTheory \n", - "[INFO] [1712690293.533634]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712690293.533880]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, SOMA.ContainmentTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690293.534136]: Subclasses: []\n", - "[INFO] [1712690293.534436]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.534921]: Instances: []\n", - "[INFO] [1712690293.535192]: Direct Instances: []\n", - "[INFO] [1712690293.535448]: Inverse Restrictions: []\n", - "[INFO] [1712690293.535686]: -------------------\n", - "[INFO] [1712690293.535925]: SOMA.ControlTheory \n", - "[INFO] [1712690293.536157]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712690293.536402]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690293.536663]: Subclasses: [SOMA.ContainmentTheory, SOMA.SupportTheory, SOMA.ContainmentTheory, SOMA.SupportTheory]\n", - "[INFO] [1712690293.536960]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.537453]: Instances: []\n", - "[INFO] [1712690293.537709]: Direct Instances: []\n", - "[INFO] [1712690293.537958]: Inverse Restrictions: []\n", - "[INFO] [1712690293.538206]: -------------------\n", - "[INFO] [1712690293.538446]: SOMA.ContinuousJoint \n", - "[INFO] [1712690293.538684]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint]\n", - "[INFO] [1712690293.538930]: Ancestors: {DUL.Entity, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject, SOMA.ContinuousJoint}\n", - "[INFO] [1712690293.539187]: Subclasses: []\n", - "[INFO] [1712690293.539481]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.539968]: Instances: []\n", - "[INFO] [1712690293.540221]: Direct Instances: []\n", - "[INFO] [1712690293.540482]: Inverse Restrictions: []\n", - "[INFO] [1712690293.540726]: -------------------\n", - "[INFO] [1712690293.540966]: SOMA.HingeJoint \n", - "[INFO] [1712690293.541200]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712690293.541440]: Ancestors: {DUL.Entity, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690293.541684]: Subclasses: [SOMA.ContinuousJoint, SOMA.RevoluteJoint, SOMA.ContinuousJoint, SOMA.RevoluteJoint]\n", - "[INFO] [1712690293.541985]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.542480]: Instances: []\n", - "[INFO] [1712690293.542738]: Direct Instances: []\n", - "[INFO] [1712690293.542988]: Inverse Restrictions: []\n", - "[INFO] [1712690293.543238]: -------------------\n", - "[INFO] [1712690293.543482]: SOMA.FunctionalSpatialSchemaTheory \n", - "[INFO] [1712690293.543727]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712690293.543970]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690293.544232]: Subclasses: [SOMA.ControlTheory, SOMA.CoverageTheory, SOMA.ControlTheory, SOMA.CoverageTheory]\n", - "[INFO] [1712690293.544531]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.545027]: Instances: []\n", - "[INFO] [1712690293.545301]: Direct Instances: []\n", - "[INFO] [1712690293.545561]: Inverse Restrictions: []\n", - "[INFO] [1712690293.545797]: -------------------\n", - "[INFO] [1712690293.546035]: SOMA.Cover \n", - "[INFO] [1712690293.546269]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712690293.546510]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Cover, DUL.Role}\n", - "[INFO] [1712690293.546769]: Subclasses: []\n", - "[INFO] [1712690293.547068]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.547568]: Instances: []\n", - "[INFO] [1712690293.547843]: Direct Instances: []\n", - "[INFO] [1712690293.548141]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712690293.548393]: -------------------\n", - "[INFO] [1712690293.548634]: SOMA.Coverage \n", - "[INFO] [1712690293.548885]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject), SOMA.affordsBearer.only(SOMA.Cover), SOMA.affordsTrigger.only(SOMA.CoveredObject)]\n", - "[INFO] [1712690293.549140]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, SOMA.Coverage, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.549399]: Subclasses: []\n", - "[INFO] [1712690293.549699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.550195]: Instances: []\n", - "[INFO] [1712690293.550456]: Direct Instances: []\n", - "[INFO] [1712690293.550715]: Inverse Restrictions: []\n", - "[INFO] [1712690293.550960]: -------------------\n", - "[INFO] [1712690293.551195]: SOMA.CoveredObject \n", - "[INFO] [1712690293.551427]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712690293.551668]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.CoveredObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.551922]: Subclasses: []\n", - "[INFO] [1712690293.552215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.552697]: Instances: []\n", - "[INFO] [1712690293.552972]: Direct Instances: []\n", - "[INFO] [1712690293.553267]: Inverse Restrictions: [SOMA.Coverage, SOMA.Coverage]\n", - "[INFO] [1712690293.553515]: -------------------\n", - "[INFO] [1712690293.553751]: SOMA.CoverageTheory \n", - "[INFO] [1712690293.553986]: Super classes: [SOMA.FunctionalSpatialSchemaTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712690293.554232]: Ancestors: {DUL.Entity, DUL.Description, SOMA.CoverageTheory, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690293.554484]: Subclasses: []\n", - "[INFO] [1712690293.554775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.555265]: Instances: []\n", - "[INFO] [1712690293.555525]: Direct Instances: []\n", - "[INFO] [1712690293.555781]: Inverse Restrictions: []\n", - "[INFO] [1712690293.556024]: -------------------\n", - "[INFO] [1712690293.556260]: SOMA.CoveringTheory \n", - "[INFO] [1712690293.556503]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.exactly(1, SOMA.Patient)]\n", - "[INFO] [1712690293.556742]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.CoveringTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690293.556988]: Subclasses: []\n", - "[INFO] [1712690293.557295]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.557792]: Instances: []\n", - "[INFO] [1712690293.558048]: Direct Instances: []\n", - "[INFO] [1712690293.558296]: Inverse Restrictions: []\n", - "[INFO] [1712690293.558541]: -------------------\n", - "[INFO] [1712690293.558784]: SOMA.ExecutableSchematicTheory \n", - "[INFO] [1712690293.559021]: Super classes: [SOMA.SchematicTheory, SOMA.SchematicTheory, DUL.defines.some(SOMA.PerformerRole), DUL.defines.some(SOMA.PerformerRole)]\n", - "[INFO] [1712690293.559261]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690293.559510]: Subclasses: [SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory, SOMA.CoveringTheory, SOMA.CrackingTheory, SOMA.MixingTheory, SOMA.PlacingTheory]\n", - "[INFO] [1712690293.559814]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.560316]: Instances: []\n", - "[INFO] [1712690293.560572]: Direct Instances: []\n", - "[INFO] [1712690293.560840]: Inverse Restrictions: []\n", - "[INFO] [1712690293.561083]: -------------------\n", - "[INFO] [1712690293.561317]: SOMA.CrackingTheory \n", - "[INFO] [1712690293.561555]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712690293.561798]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, SOMA.CrackingTheory, DUL.Description, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690293.562033]: Subclasses: []\n", - "[INFO] [1712690293.562330]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.562818]: Instances: []\n", - "[INFO] [1712690293.563073]: Direct Instances: []\n", - "[INFO] [1712690293.563319]: Inverse Restrictions: []\n", - "[INFO] [1712690293.563559]: -------------------\n", - "[INFO] [1712690293.563801]: SOMA.Creation \n", - "[INFO] [1712690293.564039]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.CreatedObject), SOMA.isProcessTypeOf.some(SOMA.CreatedObject)]\n", - "[INFO] [1712690293.564284]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Creation, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.564522]: Subclasses: []\n", - "[INFO] [1712690293.564818]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.565318]: Instances: []\n", - "[INFO] [1712690293.565576]: Direct Instances: []\n", - "[INFO] [1712690293.565818]: Inverse Restrictions: []\n", - "[INFO] [1712690293.566043]: -------------------\n", - "[INFO] [1712690293.566275]: SOMA.Insertion \n", - "[INFO] [1712690293.566513]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.InsertedObject), SOMA.affordsTrigger.only(SOMA.InsertedObject)]\n", - "[INFO] [1712690293.566753]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Insertion, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.567002]: Subclasses: []\n", - "[INFO] [1712690293.567290]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.567795]: Instances: []\n", - "[INFO] [1712690293.568058]: Direct Instances: []\n", - "[INFO] [1712690293.568392]: Inverse Restrictions: [SOMA.Spoon, SOMA.Crockery]\n", - "[INFO] [1712690293.568636]: -------------------\n", - "[INFO] [1712690293.568890]: SOMA.DesignedFurniture \n", - "[INFO] [1712690293.569135]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712690293.569380]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedFurniture, owl.Thing, DUL.Object, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690293.569632]: Subclasses: [SOMA.DesignedChair, SOMA.Table, SOMA.Cupboard, SOMA.KitchenUnit, SOMA.Sofa]\n", - "[INFO] [1712690293.569919]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.570441]: Instances: []\n", - "[INFO] [1712690293.570707]: Direct Instances: []\n", - "[INFO] [1712690293.570967]: Inverse Restrictions: []\n", - "[INFO] [1712690293.571208]: -------------------\n", - "[INFO] [1712690293.571446]: SOMA.Cuttability \n", - "[INFO] [1712690293.571684]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter), SOMA.affordsBearer.only(SOMA.CutObject), SOMA.affordsTrigger.only(SOMA.Cutter)]\n", - "[INFO] [1712690293.571939]: Ancestors: {DUL.Entity, SOMA.Cuttability, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.572191]: Subclasses: []\n", - "[INFO] [1712690293.572484]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.572977]: Instances: []\n", - "[INFO] [1712690293.573250]: Direct Instances: []\n", - "[INFO] [1712690293.573505]: Inverse Restrictions: []\n", - "[INFO] [1712690293.573747]: -------------------\n", - "[INFO] [1712690293.573982]: SOMA.Tool \n", - "[INFO] [1712690293.574211]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712690293.574451]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Tool, DUL.Role}\n", - "[INFO] [1712690293.574710]: Subclasses: [SOMA.Cutter, SOMA.Cutter]\n", - "[INFO] [1712690293.575002]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.575504]: Instances: []\n", - "[INFO] [1712690293.575760]: Direct Instances: []\n", - "[INFO] [1712690293.576057]: Inverse Restrictions: [SOMA.Variability, SOMA.Variability]\n", - "[INFO] [1712690293.576306]: -------------------\n", - "[INFO] [1712690293.576545]: SOMA.Cutting \n", - "[INFO] [1712690293.576780]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712690293.577027]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting}\n", - "[INFO] [1712690293.577280]: Subclasses: [SOMA.Dicing, SOMA.Slicing, SOMA.Dicing, SOMA.Slicing]\n", - "[INFO] [1712690293.577579]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.578072]: Instances: []\n", - "[INFO] [1712690293.578324]: Direct Instances: []\n", - "[INFO] [1712690293.578569]: Inverse Restrictions: []\n", - "[INFO] [1712690293.578815]: -------------------\n", - "[INFO] [1712690293.579056]: SOMA.DesignedTool \n", - "[INFO] [1712690293.579291]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact]\n", - "[INFO] [1712690293.579527]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, owl.Thing, DUL.Object, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject}\n", - "[INFO] [1712690293.579780]: Subclasses: [SOMA.Tableware, SOMA.CuttingTool]\n", - "[INFO] [1712690293.580072]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.580601]: Instances: []\n", - "[INFO] [1712690293.580880]: Direct Instances: []\n", - "[INFO] [1712690293.581150]: Inverse Restrictions: []\n", - "[INFO] [1712690293.581404]: -------------------\n", - "[INFO] [1712690293.581646]: SOMA.Shaping \n", - "[INFO] [1712690293.581894]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Shape)), SOMA.affordsTrigger.only(SOMA.ShapedObject)]\n", - "[INFO] [1712690293.582157]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Shaping}\n", - "[INFO] [1712690293.582408]: Subclasses: []\n", - "[INFO] [1712690293.582701]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.583240]: Instances: []\n", - "[INFO] [1712690293.583510]: Direct Instances: []\n", - "[INFO] [1712690293.583798]: Inverse Restrictions: [SOMA.CuttingTool]\n", - "[INFO] [1712690293.584051]: -------------------\n", - "[INFO] [1712690293.584293]: SOMA.Database \n", - "[INFO] [1712690293.584524]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690293.584762]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, SOMA.Database, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.585025]: Subclasses: [SOMA.GraphDatabase, SOMA.RelationalDatabase, SOMA.GraphDatabase, SOMA.RelationalDatabase]\n", - "[INFO] [1712690293.585312]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.585811]: Instances: []\n", - "[INFO] [1712690293.586062]: Direct Instances: []\n", - "[INFO] [1712690293.586322]: Inverse Restrictions: []\n", - "[INFO] [1712690293.586565]: -------------------\n", - "[INFO] [1712690293.586807]: SOMA.SoftwareRole \n", - "[INFO] [1712690293.587044]: Super classes: [DUL.Role, DUL.Role, DUL.classifies.only(SOMA.Software), DUL.classifies.only(SOMA.Software)]\n", - "[INFO] [1712690293.587296]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.587564]: Subclasses: [SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner, SOMA.InterfaceComponentRole, SOMA.Database, SOMA.QueryEngine, SOMA.Reasoner]\n", - "[INFO] [1712690293.587862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.588381]: Instances: []\n", - "[INFO] [1712690293.588649]: Direct Instances: []\n", - "[INFO] [1712690293.588950]: Inverse Restrictions: []\n", - "[INFO] [1712690293.589194]: -------------------\n", - "[INFO] [1712690293.589429]: SOMA.Deciding \n", - "[INFO] [1712690293.589664]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690293.589903]: Ancestors: {SOMA.DerivingInformation, SOMA.Deciding, SOMA.InformationAcquisition, owl.Thing}\n", - "[INFO] [1712690293.590163]: Subclasses: [SOMA.Planning, SOMA.Selecting, SOMA.Planning, SOMA.Selecting]\n", - "[INFO] [1712690293.590455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690293.590955]: Instances: []\n", - "[INFO] [1712690293.591225]: Direct Instances: []\n", - "[INFO] [1712690293.591487]: Inverse Restrictions: []\n", - "[INFO] [1712690293.591726]: -------------------\n", - "[INFO] [1712690293.591959]: SOMA.DerivingInformation \n", - "[INFO] [1712690293.592199]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion), SOMA.isTaskOfInputRole.some(SOMA.Premise) & SOMA.isTaskOfOutputRole.some(SOMA.Conclusion)]\n", - "[INFO] [1712690293.592448]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.592709]: Subclasses: [SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting, SOMA.Reasoning, SOMA.Deciding, SOMA.Dreaming, SOMA.Interpreting, SOMA.Prospecting]\n", - "[INFO] [1712690293.593150]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.label]\n", - "[INFO] [1712690293.593750]: Instances: []\n", - "[INFO] [1712690293.594076]: Direct Instances: []\n", - "[INFO] [1712690293.594370]: Inverse Restrictions: []\n", - "[INFO] [1712690293.594631]: -------------------\n", - "[INFO] [1712690293.594883]: SOMA.DeductiveReasoning \n", - "[INFO] [1712690293.595136]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712690293.595395]: Ancestors: {SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.DeductiveReasoning, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.595648]: Subclasses: []\n", - "[INFO] [1712690293.595945]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.596437]: Instances: []\n", - "[INFO] [1712690293.596712]: Direct Instances: []\n", - "[INFO] [1712690293.596980]: Inverse Restrictions: []\n", - "[INFO] [1712690293.597228]: -------------------\n", - "[INFO] [1712690293.597467]: SOMA.Deformation \n", - "[INFO] [1712690293.597716]: Super classes: [SOMA.Alteration, SOMA.Alteration, SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject), SOMA.isProcessTypeOf.exactly(1, SOMA.ShapedObject)]\n", - "[INFO] [1712690293.597965]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, SOMA.Deformation, owl.Thing, SOMA.Alteration}\n", - "[INFO] [1712690293.598226]: Subclasses: []\n", - "[INFO] [1712690293.598551]: Properties: [rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.599045]: Instances: []\n", - "[INFO] [1712690293.599307]: Direct Instances: []\n", - "[INFO] [1712690293.599559]: Inverse Restrictions: []\n", - "[INFO] [1712690293.599809]: -------------------\n", - "[INFO] [1712690293.600096]: SOMA.ShapedObject \n", - "[INFO] [1712690293.600349]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Shape)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Shape))]\n", - "[INFO] [1712690293.600812]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.ShapedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, DUL.Role}\n", - "[INFO] [1712690293.601176]: Subclasses: []\n", - "[INFO] [1712690293.601507]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTriggerDefinedIn]\n", - "[INFO] [1712690293.602026]: Instances: []\n", - "[INFO] [1712690293.602301]: Direct Instances: []\n", - "[INFO] [1712690293.602623]: Inverse Restrictions: [SOMA.Deformation, SOMA.Deformation, SOMA.Shaping, SOMA.Shaping]\n", - "[INFO] [1712690293.602880]: -------------------\n", - "[INFO] [1712690293.603140]: SOMA.FluidFlow \n", - "[INFO] [1712690293.603409]: Super classes: [SOMA.Motion, SOMA.Motion, SOMA.isProcessTypeOf.some(SOMA.MovedObject), SOMA.isProcessTypeOf.some(SOMA.MovedObject)]\n", - "[INFO] [1712690293.603676]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.FluidFlow, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.603926]: Subclasses: []\n", - "[INFO] [1712690293.604224]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.604727]: Instances: []\n", - "[INFO] [1712690293.605000]: Direct Instances: []\n", - "[INFO] [1712690293.605258]: Inverse Restrictions: []\n", - "[INFO] [1712690293.605501]: -------------------\n", - "[INFO] [1712690293.605740]: SOMA.Shifting \n", - "[INFO] [1712690293.605984]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Localization)), SOMA.affordsTrigger.only(SOMA.MovedObject)]\n", - "[INFO] [1712690293.606233]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, SOMA.Shifting, owl.Thing}\n", - "[INFO] [1712690293.606490]: Subclasses: []\n", - "[INFO] [1712690293.606792]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.607281]: Instances: []\n", - "[INFO] [1712690293.607546]: Direct Instances: []\n", - "[INFO] [1712690293.607873]: Inverse Restrictions: [SOMA.Flipping, SOMA.Delivering, SOMA.Flipping, SOMA.Delivering]\n", - "[INFO] [1712690293.608121]: -------------------\n", - "[INFO] [1712690293.608357]: SOMA.DependentPlace \n", - "[INFO] [1712690293.608594]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712690293.608846]: Ancestors: {DUL.Entity, SOMA.DependentPlace, SOMA.Feature, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.609103]: Subclasses: []\n", - "[INFO] [1712690293.609396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.609884]: Instances: []\n", - "[INFO] [1712690293.610162]: Direct Instances: []\n", - "[INFO] [1712690293.610424]: Inverse Restrictions: []\n", - "[INFO] [1712690293.610669]: -------------------\n", - "[INFO] [1712690293.610907]: SOMA.Deposit \n", - "[INFO] [1712690293.611141]: Super classes: [SOMA.Instrument, SOMA.Instrument]\n", - "[INFO] [1712690293.611387]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, SOMA.Deposit, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.611645]: Subclasses: []\n", - "[INFO] [1712690293.611941]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.612431]: Instances: []\n", - "[INFO] [1712690293.612684]: Direct Instances: []\n", - "[INFO] [1712690293.613096]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712690293.613431]: -------------------\n", - "[INFO] [1712690293.613740]: SOMA.DepositedObject \n", - "[INFO] [1712690293.614009]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.614275]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.DepositedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.614528]: Subclasses: []\n", - "[INFO] [1712690293.614828]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.615322]: Instances: []\n", - "[INFO] [1712690293.615604]: Direct Instances: []\n", - "[INFO] [1712690293.615901]: Inverse Restrictions: [SOMA.Deposition, SOMA.Deposition]\n", - "[INFO] [1712690293.616152]: -------------------\n", - "[INFO] [1712690293.616394]: SOMA.InformationAcquisition \n", - "[INFO] [1712690293.616632]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.616891]: Ancestors: {owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.617157]: Subclasses: [SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting, SOMA.DerivingInformation, SOMA.Imagining, SOMA.InformationRetrieval, SOMA.Introspecting, SOMA.Retrospecting]\n", - "[INFO] [1712690293.617456]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.617992]: Instances: []\n", - "[INFO] [1712690293.618269]: Direct Instances: []\n", - "[INFO] [1712690293.618571]: Inverse Restrictions: []\n", - "[INFO] [1712690293.618824]: -------------------\n", - "[INFO] [1712690293.619069]: SOMA.Premise \n", - "[INFO] [1712690293.619309]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712690293.619570]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.Premise, DUL.Role}\n", - "[INFO] [1712690293.619826]: Subclasses: []\n", - "[INFO] [1712690293.620121]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.620609]: Instances: []\n", - "[INFO] [1712690293.620886]: Direct Instances: []\n", - "[INFO] [1712690293.621197]: Inverse Restrictions: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690293.621449]: -------------------\n", - "[INFO] [1712690293.621696]: SOMA.FunctionalPart \n", - "[INFO] [1712690293.621943]: Super classes: [DUL.PhysicalBody, DUL.PhysicalBody, DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact), DUL.isComponentOf.only(DUL.Agent | DUL.DesignedArtifact)]\n", - "[INFO] [1712690293.622206]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690293.622476]: Subclasses: [SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head, SOMA.PhysicalEffector, SOMA.DesignedComponent, SOMA.Head]\n", - "[INFO] [1712690293.622780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.623318]: Instances: []\n", - "[INFO] [1712690293.623595]: Direct Instances: []\n", - "[INFO] [1712690293.623859]: Inverse Restrictions: []\n", - "[INFO] [1712690293.624103]: -------------------\n", - "[INFO] [1712690293.624342]: SOMA.Graspability \n", - "[INFO] [1712690293.624580]: Super classes: [SOMA.Disposition, SOMA.Disposition]\n", - "[INFO] [1712690293.624836]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Graspability}\n", - "[INFO] [1712690293.625098]: Subclasses: []\n", - "[INFO] [1712690293.625396]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.625889]: Instances: []\n", - "[INFO] [1712690293.626148]: Direct Instances: []\n", - "[INFO] [1712690293.626430]: Inverse Restrictions: [SOMA.DesignedHandle]\n", - "[INFO] [1712690293.626681]: -------------------\n", - "[INFO] [1712690293.626923]: SOMA.Destination \n", - "[INFO] [1712690293.627159]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712690293.627405]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Destination, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690293.627649]: Subclasses: [SOMA.SittingDestination]\n", - "[INFO] [1712690293.627951]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.628448]: Instances: []\n", - "[INFO] [1712690293.628706]: Direct Instances: []\n", - "[INFO] [1712690293.629029]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.PlacingTheory, SOMA.PlacingTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712690293.629276]: -------------------\n", - "[INFO] [1712690293.629528]: SOMA.Location \n", - "[INFO] [1712690293.629772]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712690293.630021]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690293.630269]: Subclasses: [SOMA.Destination, SOMA.Origin, SOMA.Destination, SOMA.Origin]\n", - "[INFO] [1712690293.630562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.631081]: Instances: []\n", - "[INFO] [1712690293.631373]: Direct Instances: []\n", - "[INFO] [1712690293.631659]: Inverse Restrictions: []\n", - "[INFO] [1712690293.631917]: -------------------\n", - "[INFO] [1712690293.632166]: SOMA.DestroyedObject \n", - "[INFO] [1712690293.632406]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.632762]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.DestroyedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.633027]: Subclasses: []\n", - "[INFO] [1712690293.633322]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.633807]: Instances: []\n", - "[INFO] [1712690293.634080]: Direct Instances: []\n", - "[INFO] [1712690293.634374]: Inverse Restrictions: [SOMA.Destruction, SOMA.Destruction]\n", - "[INFO] [1712690293.634622]: -------------------\n", - "[INFO] [1712690293.634863]: SOMA.Destruction \n", - "[INFO] [1712690293.635107]: Super classes: [SOMA.ProcessType, SOMA.ProcessType, SOMA.isProcessTypeOf.some(SOMA.DestroyedObject), SOMA.isProcessTypeOf.some(SOMA.DestroyedObject)]\n", - "[INFO] [1712690293.635355]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Destruction, DUL.SocialObject, DUL.Concept, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.635615]: Subclasses: []\n", - "[INFO] [1712690293.635919]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.636413]: Instances: []\n", - "[INFO] [1712690293.636679]: Direct Instances: []\n", - "[INFO] [1712690293.636995]: Inverse Restrictions: []\n", - "[INFO] [1712690293.637288]: -------------------\n", - "[INFO] [1712690293.637550]: SOMA.DetectedObject \n", - "[INFO] [1712690293.637796]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.638052]: Ancestors: {SOMA.DetectedObject, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.638324]: Subclasses: []\n", - "[INFO] [1712690293.638631]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.639119]: Instances: []\n", - "[INFO] [1712690293.639383]: Direct Instances: []\n", - "[INFO] [1712690293.639636]: Inverse Restrictions: []\n", - "[INFO] [1712690293.639888]: -------------------\n", - "[INFO] [1712690293.640131]: SOMA.DeviceState \n", - "[INFO] [1712690293.640366]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690293.640609]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic, SOMA.DeviceState}\n", - "[INFO] [1712690293.640850]: Subclasses: []\n", - "[INFO] [1712690293.641147]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.641638]: Instances: []\n", - "[INFO] [1712690293.641896]: Direct Instances: []\n", - "[INFO] [1712690293.642141]: Inverse Restrictions: []\n", - "[INFO] [1712690293.642383]: -------------------\n", - "[INFO] [1712690293.642629]: SOMA.DeviceStateRange \n", - "[INFO] [1712690293.642867]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690293.643107]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", - "[INFO] [1712690293.643351]: Subclasses: [SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn, SOMA.DeviceTurnedOff, SOMA.DeviceTurnedOn]\n", - "[INFO] [1712690293.643666]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.644166]: Instances: []\n", - "[INFO] [1712690293.644444]: Direct Instances: []\n", - "[INFO] [1712690293.644862]: Inverse Restrictions: []\n", - "[INFO] [1712690293.645252]: -------------------\n", - "[INFO] [1712690293.645623]: SOMA.DeviceTurnedOff \n", - "[INFO] [1712690293.646019]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712690293.646294]: Ancestors: {DUL.Entity, SOMA.DeviceTurnedOff, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", - "[INFO] [1712690293.646545]: Subclasses: []\n", - "[INFO] [1712690293.646837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.647342]: Instances: []\n", - "[INFO] [1712690293.647624]: Direct Instances: []\n", - "[INFO] [1712690293.647923]: Inverse Restrictions: []\n", - "[INFO] [1712690293.648170]: -------------------\n", - "[INFO] [1712690293.648408]: SOMA.DeviceTurnedOn \n", - "[INFO] [1712690293.648647]: Super classes: [SOMA.DeviceStateRange, SOMA.DeviceStateRange]\n", - "[INFO] [1712690293.648908]: Ancestors: {DUL.Entity, SOMA.DeviceTurnedOn, DUL.Region, owl.Thing, SOMA.DeviceStateRange, DUL.Abstract}\n", - "[INFO] [1712690293.649161]: Subclasses: []\n", - "[INFO] [1712690293.649455]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.649942]: Instances: []\n", - "[INFO] [1712690293.650200]: Direct Instances: []\n", - "[INFO] [1712690293.650497]: Inverse Restrictions: []\n", - "[INFO] [1712690293.650744]: -------------------\n", - "[INFO] [1712690293.650982]: SOMA.DexterityDiagnosis \n", - "[INFO] [1712690293.651213]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712690293.651449]: Ancestors: {DUL.Entity, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.651708]: Subclasses: [SOMA.Amateurish, SOMA.Masterful]\n", - "[INFO] [1712690293.652005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.652501]: Instances: []\n", - "[INFO] [1712690293.652757]: Direct Instances: []\n", - "[INFO] [1712690293.653018]: Inverse Restrictions: []\n", - "[INFO] [1712690293.653267]: -------------------\n", - "[INFO] [1712690293.653508]: SOMA.Dicing \n", - "[INFO] [1712690293.653741]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712690293.653988]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Dicing, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting}\n", - "[INFO] [1712690293.654239]: Subclasses: []\n", - "[INFO] [1712690293.654527]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.655006]: Instances: []\n", - "[INFO] [1712690293.655265]: Direct Instances: []\n", - "[INFO] [1712690293.655527]: Inverse Restrictions: []\n", - "[INFO] [1712690293.655770]: -------------------\n", - "[INFO] [1712690293.656008]: SOMA.DirectedMotion \n", - "[INFO] [1712690293.656239]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712690293.656481]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690293.656748]: Subclasses: [SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping, SOMA.Locomotion, SOMA.PrehensileMotion, SOMA.LimbMotion, SOMA.Rubbing, SOMA.Tapping]\n", - "[INFO] [1712690293.657057]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.657575]: Instances: []\n", - "[INFO] [1712690293.657850]: Direct Instances: []\n", - "[INFO] [1712690293.658113]: Inverse Restrictions: []\n", - "[INFO] [1712690293.658359]: -------------------\n", - "[INFO] [1712690293.658600]: SOMA.UndirectedMotion \n", - "[INFO] [1712690293.658836]: Super classes: [SOMA.Motion, SOMA.Motion]\n", - "[INFO] [1712690293.659083]: Ancestors: {DUL.Entity, SOMA.UndirectedMotion, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.659339]: Subclasses: []\n", - "[INFO] [1712690293.659633]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.660126]: Instances: []\n", - "[INFO] [1712690293.660378]: Direct Instances: []\n", - "[INFO] [1712690293.660621]: Inverse Restrictions: []\n", - "[INFO] [1712690293.660876]: -------------------\n", - "[INFO] [1712690293.661120]: SOMA.Dirty \n", - "[INFO] [1712690293.661357]: Super classes: [SOMA.CleanlinessRegion, SOMA.CleanlinessRegion]\n", - "[INFO] [1712690293.661595]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.CleanlinessRegion, SOMA.Dirty}\n", - "[INFO] [1712690293.661830]: Subclasses: []\n", - "[INFO] [1712690293.662118]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.662611]: Instances: []\n", - "[INFO] [1712690293.662877]: Direct Instances: []\n", - "[INFO] [1712690293.663130]: Inverse Restrictions: []\n", - "[INFO] [1712690293.663369]: -------------------\n", - "[INFO] [1712690293.663622]: SOMA.Discourse \n", - "[INFO] [1712690293.663866]: Super classes: [SOMA.CommunicationTask, SOMA.CommunicationTask]\n", - "[INFO] [1712690293.664113]: Ancestors: {DUL.Entity, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Discourse}\n", - "[INFO] [1712690293.664355]: Subclasses: []\n", - "[INFO] [1712690293.664640]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.665146]: Instances: []\n", - "[INFO] [1712690293.665412]: Direct Instances: []\n", - "[INFO] [1712690293.665663]: Inverse Restrictions: []\n", - "[INFO] [1712690293.665907]: -------------------\n", - "[INFO] [1712690293.666145]: SOMA.Distancing \n", - "[INFO] [1712690293.666388]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712690293.666641]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Distancing}\n", - "[INFO] [1712690293.666882]: Subclasses: []\n", - "[INFO] [1712690293.667166]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.667671]: Instances: []\n", - "[INFO] [1712690293.667933]: Direct Instances: []\n", - "[INFO] [1712690293.668185]: Inverse Restrictions: []\n", - "[INFO] [1712690293.668426]: -------------------\n", - "[INFO] [1712690293.668660]: SOMA.Dreaming \n", - "[INFO] [1712690293.668909]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690293.669163]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.Dreaming, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.669409]: Subclasses: []\n", - "[INFO] [1712690293.669698]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.670183]: Instances: []\n", - "[INFO] [1712690293.670454]: Direct Instances: []\n", - "[INFO] [1712690293.670710]: Inverse Restrictions: []\n", - "[INFO] [1712690293.670957]: -------------------\n", - "[INFO] [1712690293.671205]: SOMA.Driving \n", - "[INFO] [1712690293.671444]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690293.671704]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.Driving, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", - "[INFO] [1712690293.671954]: Subclasses: []\n", - "[INFO] [1712690293.672252]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.672740]: Instances: []\n", - "[INFO] [1712690293.673009]: Direct Instances: []\n", - "[INFO] [1712690293.673265]: Inverse Restrictions: []\n", - "[INFO] [1712690293.673504]: -------------------\n", - "[INFO] [1712690293.673737]: SOMA.Flying \n", - "[INFO] [1712690293.673968]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690293.674213]: Ancestors: {DUL.Entity, SOMA.Flying, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", - "[INFO] [1712690293.674473]: Subclasses: []\n", - "[INFO] [1712690293.674775]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.675267]: Instances: []\n", - "[INFO] [1712690293.675521]: Direct Instances: []\n", - "[INFO] [1712690293.675769]: Inverse Restrictions: []\n", - "[INFO] [1712690293.676015]: -------------------\n", - "[INFO] [1712690293.676252]: SOMA.Swimming \n", - "[INFO] [1712690293.676484]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690293.676733]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Swimming, SOMA.Locomotion}\n", - "[INFO] [1712690293.676991]: Subclasses: []\n", - "[INFO] [1712690293.677295]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.677784]: Instances: []\n", - "[INFO] [1712690293.678039]: Direct Instances: []\n", - "[INFO] [1712690293.678306]: Inverse Restrictions: []\n", - "[INFO] [1712690293.678555]: -------------------\n", - "[INFO] [1712690293.678797]: SOMA.Walking \n", - "[INFO] [1712690293.679039]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690293.679285]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Walking, SOMA.Locomotion}\n", - "[INFO] [1712690293.679521]: Subclasses: []\n", - "[INFO] [1712690293.679825]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.680469]: Instances: []\n", - "[INFO] [1712690293.680794]: Direct Instances: []\n", - "[INFO] [1712690293.681047]: Inverse Restrictions: []\n", - "[INFO] [1712690293.681477]: -------------------\n", - "[INFO] [1712690293.681885]: SOMA.Dropping \n", - "[INFO] [1712690293.682190]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.682477]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, SOMA.Dropping, SOMA.PhysicalTask, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.682745]: Subclasses: []\n", - "[INFO] [1712690293.683066]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.683567]: Instances: []\n", - "[INFO] [1712690293.683851]: Direct Instances: []\n", - "[INFO] [1712690293.684117]: Inverse Restrictions: []\n", - "[INFO] [1712690293.684368]: -------------------\n", - "[INFO] [1712690293.684611]: SOMA.Placing \n", - "[INFO] [1712690293.684856]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690293.685113]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Placing, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.685379]: Subclasses: []\n", - "[INFO] [1712690293.685680]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.686174]: Instances: [SOMA.placing]\n", - "[INFO] [1712690293.686437]: Direct Instances: [SOMA.placing]\n", - "[INFO] [1712690293.686693]: Inverse Restrictions: []\n", - "[INFO] [1712690293.686952]: -------------------\n", - "[INFO] [1712690293.687252]: SOMA.ESTSchemaTheory \n", - "[INFO] [1712690293.687517]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing), DUL.defines.some(SOMA.ExistingObjectRole), DUL.defines.exactly(1, owl.Thing)]\n", - "[INFO] [1712690293.687771]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, SOMA.ESTSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690293.688016]: Subclasses: []\n", - "[INFO] [1712690293.688321]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.688820]: Instances: []\n", - "[INFO] [1712690293.689096]: Direct Instances: []\n", - "[INFO] [1712690293.689345]: Inverse Restrictions: []\n", - "[INFO] [1712690293.689596]: -------------------\n", - "[INFO] [1712690293.689839]: SOMA.ExistingObjectRole \n", - "[INFO] [1712690293.690075]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690293.690318]: Ancestors: {SOMA.ExistingObjectRole, DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", - "[INFO] [1712690293.690553]: Subclasses: []\n", - "[INFO] [1712690293.690862]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.691360]: Instances: []\n", - "[INFO] [1712690293.691617]: Direct Instances: []\n", - "[INFO] [1712690293.691902]: Inverse Restrictions: [SOMA.ESTSchemaTheory, SOMA.ESTSchemaTheory]\n", - "[INFO] [1712690293.692153]: -------------------\n", - "[INFO] [1712690293.692397]: SOMA.Effort \n", - "[INFO] [1712690293.692632]: Super classes: [DUL.Parameter, DUL.Parameter]\n", - "[INFO] [1712690293.692971]: Ancestors: {DUL.Entity, SOMA.Effort, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, DUL.Parameter}\n", - "[INFO] [1712690293.693286]: Subclasses: []\n", - "[INFO] [1712690293.693619]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.694132]: Instances: []\n", - "[INFO] [1712690293.694407]: Direct Instances: []\n", - "[INFO] [1712690293.694667]: Inverse Restrictions: []\n", - "[INFO] [1712690293.694915]: -------------------\n", - "[INFO] [1712690293.695154]: SOMA.EnclosedObject \n", - "[INFO] [1712690293.695405]: Super classes: [SOMA.IncludedObject, SOMA.IncludedObject]\n", - "[INFO] [1712690293.695669]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.695933]: Subclasses: [SOMA.StoredObject, SOMA.InsertedObject, SOMA.StoredObject, SOMA.InsertedObject]\n", - "[INFO] [1712690293.696228]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.696724]: Instances: []\n", - "[INFO] [1712690293.697005]: Direct Instances: []\n", - "[INFO] [1712690293.697319]: Inverse Restrictions: [SOMA.Enclosing, SOMA.Enclosing]\n", - "[INFO] [1712690293.697577]: -------------------\n", - "[INFO] [1712690293.697819]: SOMA.Enclosing \n", - "[INFO] [1712690293.698056]: Super classes: [SOMA.Containment, SOMA.Containment, SOMA.affordsTrigger.only(SOMA.EnclosedObject), SOMA.affordsTrigger.only(SOMA.EnclosedObject)]\n", - "[INFO] [1712690293.698306]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.698570]: Subclasses: [SOMA.Insertion, SOMA.Storage, SOMA.Insertion, SOMA.Storage]\n", - "[INFO] [1712690293.698866]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.699363]: Instances: []\n", - "[INFO] [1712690293.699636]: Direct Instances: []\n", - "[INFO] [1712690293.699898]: Inverse Restrictions: []\n", - "[INFO] [1712690293.700137]: -------------------\n", - "[INFO] [1712690293.700378]: SOMA.EndEffectorPositioning \n", - "[INFO] [1712690293.700612]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690293.700861]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690293.701127]: Subclasses: [SOMA.Reaching, SOMA.Retracting, SOMA.Reaching, SOMA.Retracting]\n", - "[INFO] [1712690293.701424]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.701920]: Instances: []\n", - "[INFO] [1712690293.702187]: Direct Instances: []\n", - "[INFO] [1712690293.702457]: Inverse Restrictions: []\n", - "[INFO] [1712690293.702704]: -------------------\n", - "[INFO] [1712690293.702947]: SOMA.Manipulating \n", - "[INFO] [1712690293.703188]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask, DUL.classifies.only(SOMA.PhysicalAction), DUL.classifies.only(SOMA.PhysicalAction)]\n", - "[INFO] [1712690293.703428]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690293.703704]: Subclasses: [SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing, SOMA.PickingUp, SOMA.EndEffectorPositioning, SOMA.Grasping, SOMA.Releasing, SOMA.Holding, SOMA.PuttingDown, SOMA.Throwing]\n", - "[INFO] [1712690293.704003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.704511]: Instances: [SOMA.picking_up]\n", - "[INFO] [1712690293.704789]: Direct Instances: []\n", - "[INFO] [1712690293.705056]: Inverse Restrictions: []\n", - "[INFO] [1712690293.705300]: -------------------\n", - "[INFO] [1712690293.705536]: SOMA.Episode \n", - "[INFO] [1712690293.705767]: Super classes: [DUL.Situation]\n", - "[INFO] [1712690293.706003]: Ancestors: {SOMA.Episode, owl.Thing, DUL.Entity, DUL.Situation}\n", - "[INFO] [1712690293.706259]: Subclasses: [SOMA.RecordedEpisode]\n", - "[INFO] [1712690293.706552]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.707115]: Instances: []\n", - "[INFO] [1712690293.707376]: Direct Instances: []\n", - "[INFO] [1712690293.707623]: Inverse Restrictions: []\n", - "[INFO] [1712690293.707874]: -------------------\n", - "[INFO] [1712690293.708118]: SOMA.ExcludedObject \n", - "[INFO] [1712690293.708354]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.708602]: Ancestors: {DUL.Entity, SOMA.ExcludedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.708869]: Subclasses: [SOMA.RemovedObject, SOMA.RemovedObject]\n", - "[INFO] [1712690293.709169]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.709669]: Instances: []\n", - "[INFO] [1712690293.709922]: Direct Instances: []\n", - "[INFO] [1712690293.710220]: Inverse Restrictions: []\n", - "[INFO] [1712690293.710472]: -------------------\n", - "[INFO] [1712690293.710715]: SOMA.ExecutableFile \n", - "[INFO] [1712690293.710954]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.711193]: Ancestors: {SOMA.ExecutableFile, owl.Thing}\n", - "[INFO] [1712690293.711429]: Subclasses: []\n", - "[INFO] [1712690293.711734]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.realizes, rdf-schema.comment]\n", - "[INFO] [1712690293.712231]: Instances: []\n", - "[INFO] [1712690293.712490]: Direct Instances: []\n", - "[INFO] [1712690293.712795]: Inverse Restrictions: [SOMA.ExecutableSoftware, SOMA.ExecutableSoftware]\n", - "[INFO] [1712690293.713049]: -------------------\n", - "[INFO] [1712690293.713299]: SOMA.Executable_Code \n", - "[INFO] [1712690293.713546]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712690293.713789]: Ancestors: {owl.Thing, SOMA.Executable_Code, SOMA.Computer_Program}\n", - "[INFO] [1712690293.714032]: Subclasses: []\n", - "[INFO] [1712690293.714343]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.714844]: Instances: []\n", - "[INFO] [1712690293.715106]: Direct Instances: []\n", - "[INFO] [1712690293.715432]: Inverse Restrictions: [SOMA.ExecutableFile, SOMA.ExecutableFile, SOMA.ExecutableFormat, SOMA.ExecutableFormat]\n", - "[INFO] [1712690293.715692]: -------------------\n", - "[INFO] [1712690293.715937]: SOMA.ExecutableFormat \n", - "[INFO] [1712690293.716181]: Super classes: [SOMA.File_format, SOMA.File_format, SOMA.givesMeaningTo.only(SOMA.Executable_Code), SOMA.givesMeaningTo.only(SOMA.Executable_Code)]\n", - "[INFO] [1712690293.716427]: Ancestors: {SOMA.ExecutableFormat, SOMA.Computer_Language, SOMA.System, DUL.Entity, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object, SOMA.File_format}\n", - "[INFO] [1712690293.716670]: Subclasses: []\n", - "[INFO] [1712690293.716983]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.717484]: Instances: []\n", - "[INFO] [1712690293.717741]: Direct Instances: []\n", - "[INFO] [1712690293.718038]: Inverse Restrictions: [SOMA.Executable_Code, SOMA.Executable_Code]\n", - "[INFO] [1712690293.718291]: -------------------\n", - "[INFO] [1712690293.718536]: SOMA.SchematicTheory \n", - "[INFO] [1712690293.718774]: Super classes: [DUL.Theory, DUL.Theory]\n", - "[INFO] [1712690293.719012]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690293.719259]: Subclasses: [SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory, SOMA.ImageSchemaTheory, SOMA.ExecutableSchematicTheory]\n", - "[INFO] [1712690293.719558]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.720076]: Instances: []\n", - "[INFO] [1712690293.720346]: Direct Instances: []\n", - "[INFO] [1712690293.720601]: Inverse Restrictions: []\n", - "[INFO] [1712690293.720842]: -------------------\n", - "[INFO] [1712690293.721078]: SOMA.ExecutableSoftware \n", - "[INFO] [1712690293.721309]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.721543]: Ancestors: {SOMA.ExecutableSoftware, owl.Thing}\n", - "[INFO] [1712690293.721793]: Subclasses: []\n", - "[INFO] [1712690293.722092]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, DUL.hasMember, rdf-schema.comment]\n", - "[INFO] [1712690293.722582]: Instances: []\n", - "[INFO] [1712690293.722852]: Direct Instances: []\n", - "[INFO] [1712690293.723108]: Inverse Restrictions: []\n", - "[INFO] [1712690293.723346]: -------------------\n", - "[INFO] [1712690293.723580]: SOMA.Software \n", - "[INFO] [1712690293.723821]: Super classes: [DUL.Design, DUL.Design, DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration), DUL.describes.some(SOMA.Software_Configuration), DUL.describes.only(SOMA.SoftwareInstance | SOMA.Software_Configuration)]\n", - "[INFO] [1712690293.724082]: Ancestors: {DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Software, DUL.Description, DUL.Design}\n", - "[INFO] [1712690293.724336]: Subclasses: [SOMA.SoftwareLibrary, SOMA.SoftwareLibrary]\n", - "[INFO] [1712690293.724629]: Properties: [DUL.describes, rdf-schema.label, rdf-schema.isDefinedBy]\n", - "[INFO] [1712690293.725123]: Instances: []\n", - "[INFO] [1712690293.725395]: Direct Instances: []\n", - "[INFO] [1712690293.725772]: Inverse Restrictions: [SOMA.Software_Configuration, SOMA.Software_Configuration, SOMA.SoftwareInstance, SOMA.SoftwareInstance, SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690293.726021]: -------------------\n", - "[INFO] [1712690293.726263]: SOMA.RelationAdjacentRole \n", - "[INFO] [1712690293.726503]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712690293.726763]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", - "[INFO] [1712690293.727020]: Subclasses: [SOMA.ExistingObjectRole, SOMA.SpatialRelationRole, SOMA.ExistingObjectRole, SOMA.SpatialRelationRole]\n", - "[INFO] [1712690293.727313]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.727808]: Instances: []\n", - "[INFO] [1712690293.728083]: Direct Instances: []\n", - "[INFO] [1712690293.728341]: Inverse Restrictions: []\n", - "[INFO] [1712690293.728585]: -------------------\n", - "[INFO] [1712690293.728819]: SOMA.ExperiencerRole \n", - "[INFO] [1712690293.729061]: Super classes: [SOMA.PerformerRole, SOMA.PerformerRole]\n", - "[INFO] [1712690293.729318]: Ancestors: {SOMA.ExperiencerRole, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.PerformerRole, DUL.Role}\n", - "[INFO] [1712690293.729571]: Subclasses: [SOMA.Receiver, SOMA.Receiver]\n", - "[INFO] [1712690293.729860]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.730346]: Instances: []\n", - "[INFO] [1712690293.730618]: Direct Instances: []\n", - "[INFO] [1712690293.730882]: Inverse Restrictions: []\n", - "[INFO] [1712690293.731119]: -------------------\n", - "[INFO] [1712690293.731360]: SOMA.ExtractedObject \n", - "[INFO] [1712690293.731614]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.731884]: Ancestors: {DUL.Entity, SOMA.ExtractedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.732134]: Subclasses: []\n", - "[INFO] [1712690293.732426]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.732917]: Instances: []\n", - "[INFO] [1712690293.733199]: Direct Instances: []\n", - "[INFO] [1712690293.733461]: Inverse Restrictions: []\n", - "[INFO] [1712690293.733703]: -------------------\n", - "[INFO] [1712690293.733941]: SOMA.PhysicalQuality \n", - "[INFO] [1712690293.734183]: Super classes: [DUL.Quality, DUL.Quality, DUL.isQualityOf.exactly(1, DUL.PhysicalObject), DUL.isQualityOf.exactly(1, DUL.PhysicalObject)]\n", - "[INFO] [1712690293.734426]: Ancestors: {DUL.Entity, DUL.Quality, SOMA.PhysicalQuality, owl.Thing}\n", - "[INFO] [1712690293.734685]: Subclasses: [SOMA.Intrinsic, SOMA.Extrinsic, SOMA.Intrinsic, SOMA.Extrinsic]\n", - "[INFO] [1712690293.734986]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isQualityOf, rdf-schema.label]\n", - "[INFO] [1712690293.735575]: Instances: [SOMA-HOME.cookie_box_concept, SOMA-HOME.egg_concept, SOMA-HOME.milk_box_concept]\n", - "[INFO] [1712690293.735854]: Direct Instances: []\n", - "[INFO] [1712690293.736114]: Inverse Restrictions: []\n", - "[INFO] [1712690293.736356]: -------------------\n", - "[INFO] [1712690293.736594]: SOMA.FailedAttempt \n", - "[INFO] [1712690293.736834]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712690293.737078]: Ancestors: {DUL.Entity, SOMA.FailedAttempt, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690293.737333]: Subclasses: []\n", - "[INFO] [1712690293.737630]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.738121]: Instances: []\n", - "[INFO] [1712690293.738373]: Direct Instances: []\n", - "[INFO] [1712690293.738619]: Inverse Restrictions: []\n", - "[INFO] [1712690293.738862]: -------------------\n", - "[INFO] [1712690293.739104]: SOMA.FaultySoftware \n", - "[INFO] [1712690293.739336]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712690293.739579]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, SOMA.FaultySoftware, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.739835]: Subclasses: []\n", - "[INFO] [1712690293.740134]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.740622]: Instances: []\n", - "[INFO] [1712690293.740881]: Direct Instances: []\n", - "[INFO] [1712690293.741133]: Inverse Restrictions: []\n", - "[INFO] [1712690293.741378]: -------------------\n", - "[INFO] [1712690293.741621]: SOMA.SoftwareDiagnosis \n", - "[INFO] [1712690293.741856]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712690293.742098]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.742347]: Subclasses: [SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware, SOMA.FaultySoftware, SOMA.IncompatibleSoftware, SOMA.UnavailableSoftware]\n", - "[INFO] [1712690293.742647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.743146]: Instances: []\n", - "[INFO] [1712690293.743403]: Direct Instances: []\n", - "[INFO] [1712690293.743650]: Inverse Restrictions: []\n", - "[INFO] [1712690293.743892]: -------------------\n", - "[INFO] [1712690293.744139]: SOMA.PhysicalAcquiring \n", - "[INFO] [1712690293.744377]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712690293.744623]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.PhysicalAcquiring, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject}\n", - "[INFO] [1712690293.744873]: Subclasses: [SOMA.Fetching, SOMA.Fetching]\n", - "[INFO] [1712690293.745163]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.745676]: Instances: []\n", - "[INFO] [1712690293.745942]: Direct Instances: []\n", - "[INFO] [1712690293.746194]: Inverse Restrictions: []\n", - "[INFO] [1712690293.746432]: -------------------\n", - "[INFO] [1712690293.746665]: SOMA.Finger \n", - "[INFO] [1712690293.746913]: Super classes: [SOMA.Limb, SOMA.Limb, DUL.isPartOf.some(SOMA.Hand), DUL.isPartOf.some(SOMA.Hand)]\n", - "[INFO] [1712690293.747168]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.PhysicalEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Finger, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712690293.747423]: Subclasses: []\n", - "[INFO] [1712690293.747734]: Properties: [DUL.isPartOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.748237]: Instances: []\n", - "[INFO] [1712690293.748513]: Direct Instances: []\n", - "[INFO] [1712690293.748772]: Inverse Restrictions: []\n", - "[INFO] [1712690293.749016]: -------------------\n", - "[INFO] [1712690293.749257]: SOMA.Hand \n", - "[INFO] [1712690293.749485]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712690293.749745]: Ancestors: {DUL.Entity, SOMA.Hand, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690293.750002]: Subclasses: []\n", - "[INFO] [1712690293.750291]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.750775]: Instances: []\n", - "[INFO] [1712690293.751042]: Direct Instances: []\n", - "[INFO] [1712690293.751330]: Inverse Restrictions: [SOMA.Finger, SOMA.Finger]\n", - "[INFO] [1712690293.751578]: -------------------\n", - "[INFO] [1712690293.751818]: SOMA.FixedJoint \n", - "[INFO] [1712690293.752057]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(0, DUL.Entity), SOMA.hasJointState.exactly(0, DUL.Entity)]\n", - "[INFO] [1712690293.752314]: Ancestors: {DUL.Entity, SOMA.FixedJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690293.752565]: Subclasses: []\n", - "[INFO] [1712690293.752873]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.753370]: Instances: []\n", - "[INFO] [1712690293.753641]: Direct Instances: []\n", - "[INFO] [1712690293.753929]: Inverse Restrictions: []\n", - "[INFO] [1712690293.754174]: -------------------\n", - "[INFO] [1712690293.754408]: SOMA.MovableJoint \n", - "[INFO] [1712690293.754651]: Super classes: [SOMA.Joint, SOMA.Joint, SOMA.hasJointState.exactly(1, SOMA.JointState), SOMA.hasJointState.exactly(1, SOMA.JointState)]\n", - "[INFO] [1712690293.754906]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690293.755165]: Subclasses: [SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint, SOMA.HingeJoint, SOMA.FloatingJoint, SOMA.PlanarJoint, SOMA.PrismaticJoint]\n", - "[INFO] [1712690293.755459]: Properties: [SOMA.hasJointState, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.755959]: Instances: []\n", - "[INFO] [1712690293.756229]: Direct Instances: []\n", - "[INFO] [1712690293.756528]: Inverse Restrictions: []\n", - "[INFO] [1712690293.756778]: -------------------\n", - "[INFO] [1712690293.757018]: SOMA.Flipping \n", - "[INFO] [1712690293.757259]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Shifting), SOMA.isTaskAffordedBy.some(SOMA.Shifting)]\n", - "[INFO] [1712690293.757520]: Ancestors: {DUL.Entity, SOMA.Flipping, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.757770]: Subclasses: []\n", - "[INFO] [1712690293.758063]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690293.758558]: Instances: []\n", - "[INFO] [1712690293.758822]: Direct Instances: []\n", - "[INFO] [1712690293.759071]: Inverse Restrictions: []\n", - "[INFO] [1712690293.759305]: -------------------\n", - "[INFO] [1712690293.759533]: SOMA.FloatingJoint \n", - "[INFO] [1712690293.759781]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712690293.760030]: Ancestors: {SOMA.FloatingJoint, DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690293.760273]: Subclasses: []\n", - "[INFO] [1712690293.760560]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.761059]: Instances: []\n", - "[INFO] [1712690293.761320]: Direct Instances: []\n", - "[INFO] [1712690293.761570]: Inverse Restrictions: []\n", - "[INFO] [1712690293.761801]: -------------------\n", - "[INFO] [1712690293.762035]: SOMA.Fluid \n", - "[INFO] [1712690293.762277]: Super classes: [DUL.Substance]\n", - "[INFO] [1712690293.762527]: Ancestors: {DUL.Substance, DUL.Entity, SOMA.Fluid, DUL.PhysicalBody, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690293.762768]: Subclasses: []\n", - "[INFO] [1712690293.763051]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.763555]: Instances: []\n", - "[INFO] [1712690293.763819]: Direct Instances: []\n", - "[INFO] [1712690293.764078]: Inverse Restrictions: []\n", - "[INFO] [1712690293.764319]: -------------------\n", - "[INFO] [1712690293.764557]: SOMA.MovedObject \n", - "[INFO] [1712690293.764818]: Super classes: [SOMA.AlteredObject, SOMA.AlteredObject, SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization)), SOMA.isTriggerDefinedIn.some(SOMA.describesQuality.only(SOMA.Localization)), DUL.classifies.only(DUL.hasQuality.some(SOMA.Localization))]\n", - "[INFO] [1712690293.765076]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.AlteredObject, SOMA.MovedObject, DUL.Role}\n", - "[INFO] [1712690293.765319]: Subclasses: []\n", - "[INFO] [1712690293.765610]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTriggerDefinedIn]\n", - "[INFO] [1712690293.766115]: Instances: []\n", - "[INFO] [1712690293.766377]: Direct Instances: []\n", - "[INFO] [1712690293.766772]: Inverse Restrictions: [SOMA.FluidFlow, SOMA.FluidFlow, SOMA.Shifting, SOMA.Shifting]\n", - "[INFO] [1712690293.767013]: -------------------\n", - "[INFO] [1712690293.767256]: SOMA.Focusing \n", - "[INFO] [1712690293.767503]: Super classes: [SOMA.AttentionShift, SOMA.AttentionShift]\n", - "[INFO] [1712690293.767756]: Ancestors: {DUL.Entity, SOMA.AttentionShift, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.Focusing}\n", - "[INFO] [1712690293.767998]: Subclasses: []\n", - "[INFO] [1712690293.768281]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.768787]: Instances: []\n", - "[INFO] [1712690293.769053]: Direct Instances: []\n", - "[INFO] [1712690293.769301]: Inverse Restrictions: []\n", - "[INFO] [1712690293.769542]: -------------------\n", - "[INFO] [1712690293.769777]: SOMA.Foolishness \n", - "[INFO] [1712690293.770008]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712690293.770271]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, SOMA.Foolishness, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.770521]: Subclasses: []\n", - "[INFO] [1712690293.770809]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.771288]: Instances: []\n", - "[INFO] [1712690293.771551]: Direct Instances: []\n", - "[INFO] [1712690293.771811]: Inverse Restrictions: []\n", - "[INFO] [1712690293.772049]: -------------------\n", - "[INFO] [1712690293.772286]: SOMA.ForgettingIncorrectInformation \n", - "[INFO] [1712690293.772521]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712690293.772763]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.ForgettingIncorrectInformation, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.773027]: Subclasses: []\n", - "[INFO] [1712690293.773324]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.773814]: Instances: []\n", - "[INFO] [1712690293.774084]: Direct Instances: []\n", - "[INFO] [1712690293.774338]: Inverse Restrictions: []\n", - "[INFO] [1712690293.774580]: -------------------\n", - "[INFO] [1712690293.774817]: SOMA.InformationDismissal \n", - "[INFO] [1712690293.775069]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge), SOMA.isTaskOfInputRole.some(SOMA.ExcludedObject & SOMA.Knowledge)]\n", - "[INFO] [1712690293.775323]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.775577]: Subclasses: [SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation, SOMA.ForgettingIncorrectInformation, SOMA.ForgettingIrrelevantInformation]\n", - "[INFO] [1712690293.775866]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.comment]\n", - "[INFO] [1712690293.776358]: Instances: []\n", - "[INFO] [1712690293.776629]: Direct Instances: []\n", - "[INFO] [1712690293.776896]: Inverse Restrictions: []\n", - "[INFO] [1712690293.777142]: -------------------\n", - "[INFO] [1712690293.777382]: SOMA.ForgettingIrrelevantInformation \n", - "[INFO] [1712690293.777633]: Super classes: [SOMA.InformationDismissal, SOMA.InformationDismissal]\n", - "[INFO] [1712690293.777892]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.InformationDismissal, DUL.EventType, DUL.Object, owl.Thing, SOMA.ForgettingIrrelevantInformation}\n", - "[INFO] [1712690293.778150]: Subclasses: []\n", - "[INFO] [1712690293.778451]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.778937]: Instances: []\n", - "[INFO] [1712690293.779186]: Direct Instances: []\n", - "[INFO] [1712690293.779429]: Inverse Restrictions: []\n", - "[INFO] [1712690293.779674]: -------------------\n", - "[INFO] [1712690293.779913]: SOMA.Language \n", - "[INFO] [1712690293.780158]: Super classes: [SOMA.System, SOMA.System, SOMA.givesMeaningTo.only(SOMA.Text), SOMA.givesMeaningTo.only(SOMA.Text)]\n", - "[INFO] [1712690293.780401]: Ancestors: {DUL.Entity, SOMA.System, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.780644]: Subclasses: [SOMA.FormalLanguage, SOMA.Natural_Language, SOMA.FormalLanguage, SOMA.Natural_Language]\n", - "[INFO] [1712690293.780954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.781488]: Instances: []\n", - "[INFO] [1712690293.781755]: Direct Instances: []\n", - "[INFO] [1712690293.782078]: Inverse Restrictions: [SOMA.Text, SOMA.Text]\n", - "[INFO] [1712690293.782336]: -------------------\n", - "[INFO] [1712690293.782575]: SOMA.Item \n", - "[INFO] [1712690293.782814]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690293.783062]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.783344]: Subclasses: [SOMA.Message, SOMA.Knowledge, SOMA.Instructions, SOMA.Message, SOMA.Knowledge, SOMA.Instructions]\n", - "[INFO] [1712690293.783653]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.784168]: Instances: []\n", - "[INFO] [1712690293.784441]: Direct Instances: []\n", - "[INFO] [1712690293.784790]: Inverse Restrictions: [SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl, SOMA.PhysicalBlockage, SOMA.PhysicalAccessibility, SOMA.FunctionalControl]\n", - "[INFO] [1712690293.785040]: -------------------\n", - "[INFO] [1712690293.785283]: SOMA.FunctionalDesign \n", - "[INFO] [1712690293.785517]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712690293.785763]: Ancestors: {SOMA.FunctionalDesign, DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690293.786015]: Subclasses: []\n", - "[INFO] [1712690293.786311]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.786798]: Instances: []\n", - "[INFO] [1712690293.787077]: Direct Instances: []\n", - "[INFO] [1712690293.787337]: Inverse Restrictions: []\n", - "[INFO] [1712690293.787594]: -------------------\n", - "[INFO] [1712690293.787836]: SOMA.FunctionalDiagnosis \n", - "[INFO] [1712690293.788070]: Super classes: [DUL.Diagnosis]\n", - "[INFO] [1712690293.788311]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.788554]: Subclasses: [SOMA.MedicalDiagnosis, SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712690293.788857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.789366]: Instances: []\n", - "[INFO] [1712690293.789636]: Direct Instances: []\n", - "[INFO] [1712690293.789896]: Inverse Restrictions: []\n", - "[INFO] [1712690293.790139]: -------------------\n", - "[INFO] [1712690293.790372]: SOMA.LocatumRole \n", - "[INFO] [1712690293.790606]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690293.790862]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.LocatumRole, SOMA.SpatialRelationRole, DUL.Role}\n", - "[INFO] [1712690293.791112]: Subclasses: []\n", - "[INFO] [1712690293.791402]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.791897]: Instances: []\n", - "[INFO] [1712690293.792170]: Direct Instances: []\n", - "[INFO] [1712690293.792487]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712690293.792733]: -------------------\n", - "[INFO] [1712690293.792975]: SOMA.RelatumRole \n", - "[INFO] [1712690293.793218]: Super classes: [SOMA.SpatialRelationRole, SOMA.SpatialRelationRole, DUL.classifies.only(DUL.PhysicalObject), DUL.classifies.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690293.793474]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, SOMA.RelatumRole, owl.Thing, DUL.Object, SOMA.SpatialRelationRole, DUL.Role}\n", - "[INFO] [1712690293.793732]: Subclasses: []\n", - "[INFO] [1712690293.794030]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.794523]: Instances: []\n", - "[INFO] [1712690293.794791]: Direct Instances: []\n", - "[INFO] [1712690293.795111]: Inverse Restrictions: [SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory, SOMA.ProximalTheory, SOMA.FunctionalSpatialSchemaTheory]\n", - "[INFO] [1712690293.795355]: -------------------\n", - "[INFO] [1712690293.795589]: SOMA.GetTaskParameter \n", - "[INFO] [1712690293.795826]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712690293.796069]: Ancestors: {SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.796330]: Subclasses: [SOMA.SelectingItem, SOMA.SelectingItem]\n", - "[INFO] [1712690293.796624]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.797121]: Instances: []\n", - "[INFO] [1712690293.797399]: Direct Instances: []\n", - "[INFO] [1712690293.797659]: Inverse Restrictions: []\n", - "[INFO] [1712690293.797900]: -------------------\n", - "[INFO] [1712690293.798136]: SOMA.Planning \n", - "[INFO] [1712690293.798372]: Super classes: [SOMA.Deciding, SOMA.Deciding, DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan)), DUL.isTaskOf.some(DUL.classifies.some(DUL.Plan))]\n", - "[INFO] [1712690293.798611]: Ancestors: {SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.798875]: Subclasses: [SOMA.GetTaskParameter, SOMA.Replanning, SOMA.GetTaskParameter, SOMA.Replanning]\n", - "[INFO] [1712690293.799173]: Properties: [DUL.isTaskOf, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.799669]: Instances: []\n", - "[INFO] [1712690293.799923]: Direct Instances: []\n", - "[INFO] [1712690293.800168]: Inverse Restrictions: []\n", - "[INFO] [1712690293.800423]: -------------------\n", - "[INFO] [1712690293.800666]: SOMA.GraphDatabase \n", - "[INFO] [1712690293.801008]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712690293.801378]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.Database, DUL.Object, SOMA.GraphDatabase, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.801686]: Subclasses: [SOMA.Triplestore, SOMA.Triplestore]\n", - "[INFO] [1712690293.802392]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.802937]: Instances: []\n", - "[INFO] [1712690293.803222]: Direct Instances: []\n", - "[INFO] [1712690293.803532]: Inverse Restrictions: []\n", - "[INFO] [1712690293.803812]: -------------------\n", - "[INFO] [1712690293.804102]: SOMA.GraphQueryLanguage \n", - "[INFO] [1712690293.804354]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712690293.804616]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.GraphQueryLanguage, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.804884]: Subclasses: []\n", - "[INFO] [1712690293.805194]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.805686]: Instances: []\n", - "[INFO] [1712690293.805961]: Direct Instances: []\n", - "[INFO] [1712690293.806221]: Inverse Restrictions: []\n", - "[INFO] [1712690293.806464]: -------------------\n", - "[INFO] [1712690293.806703]: SOMA.QueryLanguage \n", - "[INFO] [1712690293.806940]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690293.807184]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.807454]: Subclasses: [SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage, SOMA.GraphQueryLanguage, SOMA.RelationalQueryLanguage]\n", - "[INFO] [1712690293.807759]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.808259]: Instances: []\n", - "[INFO] [1712690293.808522]: Direct Instances: []\n", - "[INFO] [1712690293.808775]: Inverse Restrictions: []\n", - "[INFO] [1712690293.809031]: -------------------\n", - "[INFO] [1712690293.809278]: SOMA.GraspTransfer \n", - "[INFO] [1712690293.809514]: Super classes: [SOMA.Grasping, SOMA.Grasping]\n", - "[INFO] [1712690293.809762]: Ancestors: {DUL.Entity, SOMA.GraspTransfer, SOMA.Grasping, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690293.809997]: Subclasses: []\n", - "[INFO] [1712690293.810299]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.810811]: Instances: []\n", - "[INFO] [1712690293.811094]: Direct Instances: []\n", - "[INFO] [1712690293.811345]: Inverse Restrictions: []\n", - "[INFO] [1712690293.811587]: -------------------\n", - "[INFO] [1712690293.811841]: SOMA.Grasping \n", - "[INFO] [1712690293.812087]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690293.812342]: Ancestors: {DUL.Entity, SOMA.Grasping, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690293.812590]: Subclasses: [SOMA.GraspTransfer, SOMA.GraspTransfer]\n", - "[INFO] [1712690293.812894]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.813411]: Instances: []\n", - "[INFO] [1712690293.813690]: Direct Instances: []\n", - "[INFO] [1712690293.813960]: Inverse Restrictions: []\n", - "[INFO] [1712690293.814212]: -------------------\n", - "[INFO] [1712690293.814463]: SOMA.Releasing \n", - "[INFO] [1712690293.814722]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690293.814999]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Releasing, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690293.815251]: Subclasses: []\n", - "[INFO] [1712690293.815545]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.816069]: Instances: []\n", - "[INFO] [1712690293.816362]: Direct Instances: []\n", - "[INFO] [1712690293.816649]: Inverse Restrictions: []\n", - "[INFO] [1712690293.816930]: -------------------\n", - "[INFO] [1712690293.817206]: SOMA.GraspingMotion \n", - "[INFO] [1712690293.817569]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712690293.817889]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690293.818178]: Subclasses: [SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp, SOMA.IntermediateGrasp, SOMA.PowerGrasp, SOMA.PrecisionGrasp]\n", - "[INFO] [1712690293.818503]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.819011]: Instances: []\n", - "[INFO] [1712690293.819294]: Direct Instances: []\n", - "[INFO] [1712690293.819601]: Inverse Restrictions: []\n", - "[INFO] [1712690293.819857]: -------------------\n", - "[INFO] [1712690293.820101]: SOMA.IntermediateGrasp \n", - "[INFO] [1712690293.820339]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712690293.820595]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing, SOMA.IntermediateGrasp}\n", - "[INFO] [1712690293.820859]: Subclasses: []\n", - "[INFO] [1712690293.821174]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.821672]: Instances: []\n", - "[INFO] [1712690293.821938]: Direct Instances: []\n", - "[INFO] [1712690293.822231]: Inverse Restrictions: []\n", - "[INFO] [1712690293.822476]: -------------------\n", - "[INFO] [1712690293.822713]: SOMA.PowerGrasp \n", - "[INFO] [1712690293.822948]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712690293.823197]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, SOMA.PowerGrasp, SOMA.DirectedMotion, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.823454]: Subclasses: []\n", - "[INFO] [1712690293.823762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.824264]: Instances: []\n", - "[INFO] [1712690293.824520]: Direct Instances: []\n", - "[INFO] [1712690293.824804]: Inverse Restrictions: []\n", - "[INFO] [1712690293.825063]: -------------------\n", - "[INFO] [1712690293.825312]: SOMA.PrecisionGrasp \n", - "[INFO] [1712690293.825552]: Super classes: [SOMA.GraspingMotion, SOMA.GraspingMotion]\n", - "[INFO] [1712690293.825801]: Ancestors: {SOMA.GraspingMotion, DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.PrecisionGrasp, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690293.826040]: Subclasses: []\n", - "[INFO] [1712690293.826337]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.826842]: Instances: []\n", - "[INFO] [1712690293.827109]: Direct Instances: []\n", - "[INFO] [1712690293.827404]: Inverse Restrictions: []\n", - "[INFO] [1712690293.827647]: -------------------\n", - "[INFO] [1712690293.827889]: SOMA.PrehensileMotion \n", - "[INFO] [1712690293.828153]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.PrehensileEffector))]\n", - "[INFO] [1712690293.828411]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690293.828665]: Subclasses: [SOMA.GraspingMotion, SOMA.ReleasingMotion, SOMA.GraspingMotion, SOMA.ReleasingMotion]\n", - "[INFO] [1712690293.828972]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.829490]: Instances: []\n", - "[INFO] [1712690293.829759]: Direct Instances: []\n", - "[INFO] [1712690293.830024]: Inverse Restrictions: []\n", - "[INFO] [1712690293.830266]: -------------------\n", - "[INFO] [1712690293.830503]: SOMA.ReleasingMotion \n", - "[INFO] [1712690293.830757]: Super classes: [SOMA.PrehensileMotion, SOMA.PrehensileMotion]\n", - "[INFO] [1712690293.831022]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.PrehensileMotion, DUL.Concept, SOMA.ReleasingMotion, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690293.831275]: Subclasses: []\n", - "[INFO] [1712690293.831569]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.832074]: Instances: []\n", - "[INFO] [1712690293.832358]: Direct Instances: []\n", - "[INFO] [1712690293.832658]: Inverse Restrictions: []\n", - "[INFO] [1712690293.832906]: -------------------\n", - "[INFO] [1712690293.833150]: SOMA.GreenColor \n", - "[INFO] [1712690293.833388]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712690293.833644]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, SOMA.GreenColor, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690293.833888]: Subclasses: []\n", - "[INFO] [1712690293.834176]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.834656]: Instances: []\n", - "[INFO] [1712690293.834923]: Direct Instances: []\n", - "[INFO] [1712690293.835176]: Inverse Restrictions: []\n", - "[INFO] [1712690293.835413]: -------------------\n", - "[INFO] [1712690293.835648]: SOMA.Gripper \n", - "[INFO] [1712690293.835882]: Super classes: [SOMA.PrehensileEffector, SOMA.PrehensileEffector]\n", - "[INFO] [1712690293.836135]: Ancestors: {SOMA.Gripper, DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690293.836387]: Subclasses: []\n", - "[INFO] [1712690293.836680]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.837171]: Instances: []\n", - "[INFO] [1712690293.837426]: Direct Instances: []\n", - "[INFO] [1712690293.837683]: Inverse Restrictions: []\n", - "[INFO] [1712690293.837926]: -------------------\n", - "[INFO] [1712690293.838165]: SOMA.PrehensileEffector \n", - "[INFO] [1712690293.838398]: Super classes: [SOMA.PhysicalEffector, SOMA.PhysicalEffector]\n", - "[INFO] [1712690293.838637]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.PrehensileEffector, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690293.838905]: Subclasses: [SOMA.Hand, SOMA.Gripper, SOMA.Hand, SOMA.Gripper]\n", - "[INFO] [1712690293.839200]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.839699]: Instances: []\n", - "[INFO] [1712690293.839970]: Direct Instances: []\n", - "[INFO] [1712690293.840287]: Inverse Restrictions: []\n", - "[INFO] [1712690293.840542]: -------------------\n", - "[INFO] [1712690293.840809]: SOMA.HardwareDiagnosis \n", - "[INFO] [1712690293.841154]: Super classes: [SOMA.TechnicalDiagnosis]\n", - "[INFO] [1712690293.841451]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.HardwareDiagnosis}\n", - "[INFO] [1712690293.841727]: Subclasses: []\n", - "[INFO] [1712690293.842036]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.842541]: Instances: []\n", - "[INFO] [1712690293.842808]: Direct Instances: []\n", - "[INFO] [1712690293.843086]: Inverse Restrictions: []\n", - "[INFO] [1712690293.843346]: -------------------\n", - "[INFO] [1712690293.843594]: SOMA.HasQualityRegion \n", - "[INFO] [1712690293.843839]: Super classes: [DUL.Relation, DUL.Relation, DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region), DUL.hasQuality.exactly(1, DUL.Quality), DUL.hasRegion.exactly(1, DUL.Region)]\n", - "[INFO] [1712690293.844348]: Ancestors: {DUL.Entity, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, SOMA.HasQualityRegion, DUL.Description}\n", - "[INFO] [1712690293.844842]: Subclasses: []\n", - "[INFO] [1712690293.845385]: Properties: [DUL.hasQuality, DUL.hasRegion, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.846114]: Instances: []\n", - "[INFO] [1712690293.846562]: Direct Instances: []\n", - "[INFO] [1712690293.846997]: Inverse Restrictions: []\n", - "[INFO] [1712690293.847415]: -------------------\n", - "[INFO] [1712690293.847838]: SOMA.Head \n", - "[INFO] [1712690293.848202]: Super classes: [SOMA.FunctionalPart, SOMA.FunctionalPart]\n", - "[INFO] [1712690293.848558]: Ancestors: {DUL.Entity, DUL.PhysicalBody, SOMA.Head, SOMA.FunctionalPart, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690293.848935]: Subclasses: []\n", - "[INFO] [1712690293.849297]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.849811]: Instances: []\n", - "[INFO] [1712690293.850081]: Direct Instances: []\n", - "[INFO] [1712690293.850330]: Inverse Restrictions: []\n", - "[INFO] [1712690293.850570]: -------------------\n", - "[INFO] [1712690293.850820]: SOMA.HeadMovement \n", - "[INFO] [1712690293.851064]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712690293.851315]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.HeadMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.851561]: Subclasses: [SOMA.HeadTurning, SOMA.HeadTurning]\n", - "[INFO] [1712690293.851845]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.852353]: Instances: []\n", - "[INFO] [1712690293.852621]: Direct Instances: []\n", - "[INFO] [1712690293.852883]: Inverse Restrictions: []\n", - "[INFO] [1712690293.853125]: -------------------\n", - "[INFO] [1712690293.853364]: SOMA.HeadTurning \n", - "[INFO] [1712690293.853609]: Super classes: [SOMA.HeadMovement, SOMA.HeadMovement]\n", - "[INFO] [1712690293.853864]: Ancestors: {DUL.Entity, SOMA.ProcessType, SOMA.HeadTurning, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.HeadMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.854108]: Subclasses: []\n", - "[INFO] [1712690293.854398]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.854900]: Instances: []\n", - "[INFO] [1712690293.855161]: Direct Instances: []\n", - "[INFO] [1712690293.855411]: Inverse Restrictions: []\n", - "[INFO] [1712690293.855651]: -------------------\n", - "[INFO] [1712690293.855887]: SOMA.Holding \n", - "[INFO] [1712690293.856133]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690293.856388]: Ancestors: {DUL.Entity, SOMA.Holding, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690293.856633]: Subclasses: []\n", - "[INFO] [1712690293.856924]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.857424]: Instances: []\n", - "[INFO] [1712690293.857696]: Direct Instances: []\n", - "[INFO] [1712690293.857952]: Inverse Restrictions: []\n", - "[INFO] [1712690293.858194]: -------------------\n", - "[INFO] [1712690293.858433]: SOMA.HostRole \n", - "[INFO] [1712690293.858719]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712690293.858988]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.HostRole, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690293.859240]: Subclasses: []\n", - "[INFO] [1712690293.859538]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.860038]: Instances: []\n", - "[INFO] [1712690293.860304]: Direct Instances: []\n", - "[INFO] [1712690293.860613]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712690293.860859]: -------------------\n", - "[INFO] [1712690293.861097]: SOMA.PluginSpecification \n", - "[INFO] [1712690293.861356]: Super classes: [SOMA.API_Specification, SOMA.API_Specification, DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole), DUL.definesRole.some(SOMA.HostRole) & DUL.definesRole.some(SOMA.PluginRole)]\n", - "[INFO] [1712690293.861617]: Ancestors: {DUL.Entity, SOMA.API_Specification, DUL.Description, SOMA.InterfaceSpecification, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.PluginSpecification, DUL.Design}\n", - "[INFO] [1712690293.861866]: Subclasses: []\n", - "[INFO] [1712690293.862161]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesRole, rdf-schema.label]\n", - "[INFO] [1712690293.862647]: Instances: []\n", - "[INFO] [1712690293.862924]: Direct Instances: []\n", - "[INFO] [1712690293.863248]: Inverse Restrictions: [SOMA.PluginRole, SOMA.HostRole, SOMA.PluginRole, SOMA.HostRole]\n", - "[INFO] [1712690293.863497]: -------------------\n", - "[INFO] [1712690293.863734]: SOMA.Human-readable_Programming_Language \n", - "[INFO] [1712690293.863979]: Super classes: [SOMA.Programming_Language, SOMA.Programming_Language, SOMA.givesMeaningTo.only(SOMA.Source_Code), SOMA.givesMeaningTo.only(SOMA.Source_Code)]\n", - "[INFO] [1712690293.864226]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.Human-readable_Programming_Language, SOMA.Programming_Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.864488]: Subclasses: []\n", - "[INFO] [1712690293.864791]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.865285]: Instances: []\n", - "[INFO] [1712690293.865541]: Direct Instances: []\n", - "[INFO] [1712690293.865850]: Inverse Restrictions: [SOMA.Source_Code, SOMA.Source_Code]\n", - "[INFO] [1712690293.866107]: -------------------\n", - "[INFO] [1712690293.866352]: SOMA.Source_Code \n", - "[INFO] [1712690293.866588]: Super classes: [SOMA.Computer_Program, SOMA.Computer_Program]\n", - "[INFO] [1712690293.866829]: Ancestors: {SOMA.Source_Code, owl.Thing, SOMA.Computer_Program}\n", - "[INFO] [1712690293.867069]: Subclasses: []\n", - "[INFO] [1712690293.867372]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.867875]: Instances: []\n", - "[INFO] [1712690293.868136]: Direct Instances: []\n", - "[INFO] [1712690293.868418]: Inverse Restrictions: [SOMA.Human-readable_Programming_Language, SOMA.Human-readable_Programming_Language]\n", - "[INFO] [1712690293.868665]: -------------------\n", - "[INFO] [1712690293.869020]: SOMA.HumanActivityRecording \n", - "[INFO] [1712690293.869364]: Super classes: [SOMA.RecordedEpisode]\n", - "[INFO] [1712690293.869659]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, SOMA.HumanActivityRecording, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712690293.869937]: Subclasses: []\n", - "[INFO] [1712690293.870253]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.870778]: Instances: []\n", - "[INFO] [1712690293.871063]: Direct Instances: []\n", - "[INFO] [1712690293.871334]: Inverse Restrictions: []\n", - "[INFO] [1712690293.871584]: -------------------\n", - "[INFO] [1712690293.871827]: SOMA.Imagining \n", - "[INFO] [1712690293.872066]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712690293.872323]: Ancestors: {SOMA.Imagining, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.872576]: Subclasses: []\n", - "[INFO] [1712690293.872881]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.873373]: Instances: []\n", - "[INFO] [1712690293.873647]: Direct Instances: []\n", - "[INFO] [1712690293.873905]: Inverse Restrictions: []\n", - "[INFO] [1712690293.874146]: -------------------\n", - "[INFO] [1712690293.874382]: SOMA.Impediment \n", - "[INFO] [1712690293.874626]: Super classes: [SOMA.Blockage, SOMA.Blockage, SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject), SOMA.affordsBearer.only(SOMA.Obstacle), SOMA.affordsTrigger.only(SOMA.RestrictedObject)]\n", - "[INFO] [1712690293.874879]: Ancestors: {DUL.Entity, SOMA.Blockage, SOMA.Disposition, SOMA.Impediment, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690293.875139]: Subclasses: []\n", - "[INFO] [1712690293.875433]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.875921]: Instances: []\n", - "[INFO] [1712690293.876173]: Direct Instances: []\n", - "[INFO] [1712690293.876422]: Inverse Restrictions: []\n", - "[INFO] [1712690293.876671]: -------------------\n", - "[INFO] [1712690293.876917]: SOMA.Obstacle \n", - "[INFO] [1712690293.877156]: Super classes: [SOMA.Barrier, SOMA.Barrier]\n", - "[INFO] [1712690293.877403]: Ancestors: {SOMA.Obstacle, DUL.Entity, SOMA.ResourceRole, SOMA.Barrier, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.877645]: Subclasses: []\n", - "[INFO] [1712690293.877947]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.878441]: Instances: []\n", - "[INFO] [1712690293.878697]: Direct Instances: []\n", - "[INFO] [1712690293.878982]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712690293.879239]: -------------------\n", - "[INFO] [1712690293.879486]: SOMA.RestrictedObject \n", - "[INFO] [1712690293.879726]: Super classes: [SOMA.BlockedObject, SOMA.BlockedObject]\n", - "[INFO] [1712690293.880018]: Ancestors: {DUL.Entity, SOMA.RestrictedObject, DUL.Concept, DUL.SocialObject, SOMA.BlockedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.880271]: Subclasses: []\n", - "[INFO] [1712690293.880574]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.881072]: Instances: []\n", - "[INFO] [1712690293.881331]: Direct Instances: []\n", - "[INFO] [1712690293.881618]: Inverse Restrictions: [SOMA.Impediment, SOMA.Impediment]\n", - "[INFO] [1712690293.882167]: -------------------\n", - "[INFO] [1712690293.882552]: SOMA.StateTransition \n", - "[INFO] [1712690293.882845]: Super classes: [DUL.Transition, DUL.Transition, DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory), SOMA.hasInitialScene.some(SOMA.Scene), SOMA.hasTerminalScene.some(SOMA.Scene), DUL.includesEvent.some(DUL.Action), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712690293.883119]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.StateTransition, owl.Thing, DUL.Transition}\n", - "[INFO] [1712690293.883389]: Subclasses: []\n", - "[INFO] [1712690293.883717]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label, DUL.includesEvent, SOMA.hasTerminalScene, DUL.satisfies, SOMA.hasInitialScene]\n", - "[INFO] [1712690293.884233]: Instances: []\n", - "[INFO] [1712690293.884512]: Direct Instances: []\n", - "[INFO] [1712690293.884844]: Inverse Restrictions: [SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause, SOMA.ImperativeClause]\n", - "[INFO] [1712690293.885103]: -------------------\n", - "[INFO] [1712690293.885349]: SOMA.Inability \n", - "[INFO] [1712690293.885600]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712690293.885865]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.Inability, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690293.886116]: Subclasses: []\n", - "[INFO] [1712690293.886408]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.886897]: Instances: []\n", - "[INFO] [1712690293.887181]: Direct Instances: []\n", - "[INFO] [1712690293.887442]: Inverse Restrictions: []\n", - "[INFO] [1712690293.887695]: -------------------\n", - "[INFO] [1712690293.887941]: SOMA.IncompatibleSoftware \n", - "[INFO] [1712690293.888191]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712690293.888448]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, SOMA.IncompatibleSoftware, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.888716]: Subclasses: []\n", - "[INFO] [1712690293.889050]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.889568]: Instances: []\n", - "[INFO] [1712690293.889841]: Direct Instances: []\n", - "[INFO] [1712690293.890108]: Inverse Restrictions: []\n", - "[INFO] [1712690293.890375]: -------------------\n", - "[INFO] [1712690293.890636]: SOMA.InductiveReasoning \n", - "[INFO] [1712690293.890886]: Super classes: [SOMA.Reasoning, SOMA.Reasoning]\n", - "[INFO] [1712690293.891151]: Ancestors: {SOMA.Reasoning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition, SOMA.InductiveReasoning}\n", - "[INFO] [1712690293.891416]: Subclasses: []\n", - "[INFO] [1712690293.891732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.892297]: Instances: []\n", - "[INFO] [1712690293.892598]: Direct Instances: []\n", - "[INFO] [1712690293.892944]: Inverse Restrictions: []\n", - "[INFO] [1712690293.893353]: -------------------\n", - "[INFO] [1712690293.893915]: SOMA.Infeasibility \n", - "[INFO] [1712690293.894440]: Super classes: [SOMA.Unsuccessfulness]\n", - "[INFO] [1712690293.894984]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Infeasibility, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690293.895542]: Subclasses: []\n", - "[INFO] [1712690293.896096]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.896893]: Instances: []\n", - "[INFO] [1712690293.897409]: Direct Instances: []\n", - "[INFO] [1712690293.897844]: Inverse Restrictions: []\n", - "[INFO] [1712690293.898247]: -------------------\n", - "[INFO] [1712690293.898632]: SOMA.InferenceRules \n", - "[INFO] [1712690293.899158]: Super classes: [SOMA.Knowledge, SOMA.Knowledge]\n", - "[INFO] [1712690293.899592]: Ancestors: {DUL.Entity, SOMA.Knowledge, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.InferenceRules, DUL.Role}\n", - "[INFO] [1712690293.899992]: Subclasses: []\n", - "[INFO] [1712690293.900449]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.901126]: Instances: []\n", - "[INFO] [1712690293.901553]: Direct Instances: []\n", - "[INFO] [1712690293.901961]: Inverse Restrictions: []\n", - "[INFO] [1712690293.902339]: -------------------\n", - "[INFO] [1712690293.902713]: SOMA.InformationRetrieval \n", - "[INFO] [1712690293.903090]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition, SOMA.isTaskOfOutputRole.some(SOMA.Knowledge), SOMA.isTaskOfOutputRole.some(SOMA.Knowledge)]\n", - "[INFO] [1712690293.903465]: Ancestors: {SOMA.InformationRetrieval, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.903857]: Subclasses: []\n", - "[INFO] [1712690293.904270]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.904870]: Instances: []\n", - "[INFO] [1712690293.905226]: Direct Instances: []\n", - "[INFO] [1712690293.905604]: Inverse Restrictions: []\n", - "[INFO] [1712690293.905951]: -------------------\n", - "[INFO] [1712690293.906284]: SOMA.InformationStorage \n", - "[INFO] [1712690293.906621]: Super classes: [SOMA.MentalTask, SOMA.MentalTask, SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject), SOMA.isTaskOfInputRole.some(SOMA.Knowledge & SOMA.StoredObject)]\n", - "[INFO] [1712690293.906957]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.907305]: Subclasses: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712690293.907695]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isTaskOfInputRole, rdf-schema.comment]\n", - "[INFO] [1712690293.908274]: Instances: []\n", - "[INFO] [1712690293.908618]: Direct Instances: []\n", - "[INFO] [1712690293.908965]: Inverse Restrictions: []\n", - "[INFO] [1712690293.909307]: -------------------\n", - "[INFO] [1712690293.909651]: SOMA.StoredObject \n", - "[INFO] [1712690293.909980]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712690293.910322]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, DUL.SocialObject, SOMA.StoredObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.910652]: Subclasses: []\n", - "[INFO] [1712690293.911035]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.911623]: Instances: []\n", - "[INFO] [1712690293.911977]: Direct Instances: []\n", - "[INFO] [1712690293.912401]: Inverse Restrictions: [SOMA.Storage, SOMA.Storage]\n", - "[INFO] [1712690293.912732]: -------------------\n", - "[INFO] [1712690293.913073]: SOMA.InsertedObject \n", - "[INFO] [1712690293.913401]: Super classes: [SOMA.EnclosedObject, SOMA.EnclosedObject]\n", - "[INFO] [1712690293.913746]: Ancestors: {DUL.Entity, SOMA.IncludedObject, DUL.Concept, SOMA.InsertedObject, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EnclosedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.914086]: Subclasses: []\n", - "[INFO] [1712690293.914458]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.915051]: Instances: []\n", - "[INFO] [1712690293.915402]: Direct Instances: []\n", - "[INFO] [1712690293.915778]: Inverse Restrictions: [SOMA.Insertion, SOMA.Insertion]\n", - "[INFO] [1712690293.916107]: -------------------\n", - "[INFO] [1712690293.916433]: SOMA.Instructions \n", - "[INFO] [1712690293.916756]: Super classes: [SOMA.Item, SOMA.Item]\n", - "[INFO] [1712690293.917114]: Ancestors: {DUL.Entity, SOMA.Instructions, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.917457]: Subclasses: []\n", - "[INFO] [1712690293.917837]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.918412]: Instances: []\n", - "[INFO] [1712690293.918772]: Direct Instances: []\n", - "[INFO] [1712690293.919113]: Inverse Restrictions: []\n", - "[INFO] [1712690293.919441]: -------------------\n", - "[INFO] [1712690293.919763]: SOMA.Interpreting \n", - "[INFO] [1712690293.920081]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690293.920408]: Ancestors: {SOMA.Interpreting, SOMA.DerivingInformation, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.920755]: Subclasses: [SOMA.Labeling, SOMA.Labeling]\n", - "[INFO] [1712690293.921141]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.921717]: Instances: []\n", - "[INFO] [1712690293.922082]: Direct Instances: []\n", - "[INFO] [1712690293.922430]: Inverse Restrictions: []\n", - "[INFO] [1712690293.922762]: -------------------\n", - "[INFO] [1712690293.923094]: SOMA.InterrogativeClause \n", - "[INFO] [1712690293.923421]: Super classes: [SOMA.ClausalObject, SOMA.ClausalObject]\n", - "[INFO] [1712690293.923766]: Ancestors: {SOMA.Phrase, DUL.Entity, SOMA.LinguisticObject, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object, SOMA.ClausalObject, SOMA.InterrogativeClause}\n", - "[INFO] [1712690293.924109]: Subclasses: []\n", - "[INFO] [1712690293.924489]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.925071]: Instances: []\n", - "[INFO] [1712690293.925431]: Direct Instances: []\n", - "[INFO] [1712690293.925817]: Inverse Restrictions: []\n", - "[INFO] [1712690293.926148]: -------------------\n", - "[INFO] [1712690293.926474]: SOMA.Introspecting \n", - "[INFO] [1712690293.926809]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712690293.927143]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.927478]: Subclasses: [SOMA.MetacognitiveMonitoring, SOMA.MetacognitiveMonitoring]\n", - "[INFO] [1712690293.927852]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.928432]: Instances: []\n", - "[INFO] [1712690293.928792]: Direct Instances: []\n", - "[INFO] [1712690293.929141]: Inverse Restrictions: []\n", - "[INFO] [1712690293.929473]: -------------------\n", - "[INFO] [1712690293.929800]: SOMA.KineticFrictionAttribute \n", - "[INFO] [1712690293.930120]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712690293.930448]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.KineticFrictionAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", - "[INFO] [1712690293.930794]: Subclasses: []\n", - "[INFO] [1712690293.931173]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.931756]: Instances: []\n", - "[INFO] [1712690293.932107]: Direct Instances: []\n", - "[INFO] [1712690293.932446]: Inverse Restrictions: []\n", - "[INFO] [1712690293.932788]: -------------------\n", - "[INFO] [1712690293.933128]: SOMA.KinoDynamicData \n", - "[INFO] [1712690293.933470]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690293.933801]: Ancestors: {DUL.Entity, DUL.InformationObject, SOMA.KinoDynamicData, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.934126]: Subclasses: []\n", - "[INFO] [1712690293.934511]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.935083]: Instances: []\n", - "[INFO] [1712690293.935423]: Direct Instances: []\n", - "[INFO] [1712690293.935751]: Inverse Restrictions: []\n", - "[INFO] [1712690293.936081]: -------------------\n", - "[INFO] [1712690293.936411]: SOMA.Room \n", - "[INFO] [1712690293.936734]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712690293.937090]: Ancestors: {DUL.Entity, SOMA.Room, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690293.937374]: Subclasses: [SOMA.Kitchen]\n", - "[INFO] [1712690293.937686]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.938215]: Instances: []\n", - "[INFO] [1712690293.938501]: Direct Instances: []\n", - "[INFO] [1712690293.938776]: Inverse Restrictions: []\n", - "[INFO] [1712690293.939028]: -------------------\n", - "[INFO] [1712690293.939275]: SOMA.KnowledgeRepresentationLanguage \n", - "[INFO] [1712690293.939523]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690293.939780]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.KnowledgeRepresentationLanguage, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.940034]: Subclasses: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712690293.940325]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.940821]: Instances: []\n", - "[INFO] [1712690293.941113]: Direct Instances: []\n", - "[INFO] [1712690293.941385]: Inverse Restrictions: []\n", - "[INFO] [1712690293.941634]: -------------------\n", - "[INFO] [1712690293.941879]: SOMA.Labeling \n", - "[INFO] [1712690293.942117]: Super classes: [SOMA.Interpreting, SOMA.Interpreting]\n", - "[INFO] [1712690293.942368]: Ancestors: {SOMA.Interpreting, SOMA.Labeling, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690293.942625]: Subclasses: []\n", - "[INFO] [1712690293.942923]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690293.943414]: Instances: []\n", - "[INFO] [1712690293.943670]: Direct Instances: []\n", - "[INFO] [1712690293.943919]: Inverse Restrictions: []\n", - "[INFO] [1712690293.944170]: -------------------\n", - "[INFO] [1712690293.944420]: SOMA.Text \n", - "[INFO] [1712690293.944666]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.945037]: Ancestors: {owl.Thing, SOMA.Text}\n", - "[INFO] [1712690293.945378]: Subclasses: []\n", - "[INFO] [1712690293.945724]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.946237]: Instances: []\n", - "[INFO] [1712690293.946506]: Direct Instances: []\n", - "[INFO] [1712690293.946863]: Inverse Restrictions: [SOMA.Language, SOMA.Language]\n", - "[INFO] [1712690293.947131]: -------------------\n", - "[INFO] [1712690293.947386]: SOMA.Leaning \n", - "[INFO] [1712690293.947634]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712690293.947903]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.Leaning, SOMA.PosturalMoving}\n", - "[INFO] [1712690293.948156]: Subclasses: []\n", - "[INFO] [1712690293.948453]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.948961]: Instances: []\n", - "[INFO] [1712690293.949234]: Direct Instances: []\n", - "[INFO] [1712690293.949489]: Inverse Restrictions: []\n", - "[INFO] [1712690293.949730]: -------------------\n", - "[INFO] [1712690293.949971]: SOMA.PosturalMoving \n", - "[INFO] [1712690293.950262]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712690293.950529]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.PosturalMoving}\n", - "[INFO] [1712690293.950787]: Subclasses: [SOMA.Leaning, SOMA.Standing, SOMA.Turning, SOMA.Leaning, SOMA.Standing, SOMA.Turning]\n", - "[INFO] [1712690293.951075]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.951592]: Instances: []\n", - "[INFO] [1712690293.951862]: Direct Instances: []\n", - "[INFO] [1712690293.952119]: Inverse Restrictions: []\n", - "[INFO] [1712690293.952357]: -------------------\n", - "[INFO] [1712690293.952590]: SOMA.Learning \n", - "[INFO] [1712690293.952840]: Super classes: [SOMA.InformationStorage, SOMA.InformationStorage]\n", - "[INFO] [1712690293.953099]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing, SOMA.Learning}\n", - "[INFO] [1712690293.953350]: Subclasses: [SOMA.Memorizing, SOMA.Memorizing]\n", - "[INFO] [1712690293.953638]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.954144]: Instances: []\n", - "[INFO] [1712690293.954411]: Direct Instances: []\n", - "[INFO] [1712690293.954667]: Inverse Restrictions: []\n", - "[INFO] [1712690293.954907]: -------------------\n", - "[INFO] [1712690293.955147]: SOMA.Leg \n", - "[INFO] [1712690293.955395]: Super classes: [SOMA.Limb, SOMA.Limb]\n", - "[INFO] [1712690293.955651]: Ancestors: {DUL.Entity, SOMA.PhysicalEffector, DUL.PhysicalBody, SOMA.FunctionalPart, DUL.Object, owl.Thing, SOMA.Leg, SOMA.Limb, DUL.PhysicalObject}\n", - "[INFO] [1712690293.955897]: Subclasses: []\n", - "[INFO] [1712690293.956195]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.956708]: Instances: []\n", - "[INFO] [1712690293.957133]: Direct Instances: []\n", - "[INFO] [1712690293.957567]: Inverse Restrictions: []\n", - "[INFO] [1712690293.957931]: -------------------\n", - "[INFO] [1712690293.958296]: SOMA.LimbMotion \n", - "[INFO] [1712690293.958673]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion, SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb)), SOMA.isProcessTypeOf.some(SOMA.MovedObject & DUL.classifies.only(SOMA.Limb))]\n", - "[INFO] [1712690293.959012]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.LimbMotion, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690293.959385]: Subclasses: []\n", - "[INFO] [1712690293.959743]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isProcessTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.960263]: Instances: []\n", - "[INFO] [1712690293.960541]: Direct Instances: []\n", - "[INFO] [1712690293.960800]: Inverse Restrictions: []\n", - "[INFO] [1712690293.961045]: -------------------\n", - "[INFO] [1712690293.961288]: SOMA.LinkedObject \n", - "[INFO] [1712690293.961524]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712690293.961790]: Ancestors: {DUL.Entity, SOMA.LinkedObject, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690293.962046]: Subclasses: []\n", - "[INFO] [1712690293.962342]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.962836]: Instances: []\n", - "[INFO] [1712690293.963104]: Direct Instances: []\n", - "[INFO] [1712690293.963451]: Inverse Restrictions: [SOMA.LinkageState, SOMA.LinkageState, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage, SOMA.Linkage]\n", - "[INFO] [1712690293.963697]: -------------------\n", - "[INFO] [1712690293.963937]: SOMA.LinkageState \n", - "[INFO] [1712690293.964176]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.LinkedObject), SOMA.isStateTypeOf.some(SOMA.LinkedObject)]\n", - "[INFO] [1712690293.964421]: Ancestors: {DUL.Entity, SOMA.LinkageState, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690293.964677]: Subclasses: []\n", - "[INFO] [1712690293.964978]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690293.965470]: Instances: []\n", - "[INFO] [1712690293.965723]: Direct Instances: []\n", - "[INFO] [1712690293.965970]: Inverse Restrictions: []\n", - "[INFO] [1712690293.966219]: -------------------\n", - "[INFO] [1712690293.966460]: SOMA.SpatioTemporalRole \n", - "[INFO] [1712690293.966695]: Super classes: [SOMA.EventAdjacentRole, SOMA.EventAdjacentRole]\n", - "[INFO] [1712690293.966938]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690293.967189]: Subclasses: [SOMA.PathRole, SOMA.Location, SOMA.TimeRole, SOMA.PathRole, SOMA.Location, SOMA.TimeRole]\n", - "[INFO] [1712690293.967489]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.968004]: Instances: []\n", - "[INFO] [1712690293.968262]: Direct Instances: []\n", - "[INFO] [1712690293.968510]: Inverse Restrictions: []\n", - "[INFO] [1712690293.968748]: -------------------\n", - "[INFO] [1712690293.969139]: SOMA.SpatialRelationRole \n", - "[INFO] [1712690293.969449]: Super classes: [SOMA.RelationAdjacentRole, SOMA.RelationAdjacentRole]\n", - "[INFO] [1712690293.969743]: Ancestors: {DUL.Entity, SOMA.RelationAdjacentRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SpatialRelationRole, DUL.Role}\n", - "[INFO] [1712690293.970028]: Subclasses: [SOMA.LocatumRole, SOMA.RelatumRole, SOMA.LocatumRole, SOMA.RelatumRole]\n", - "[INFO] [1712690293.970350]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.970862]: Instances: []\n", - "[INFO] [1712690293.971152]: Direct Instances: []\n", - "[INFO] [1712690293.971427]: Inverse Restrictions: []\n", - "[INFO] [1712690293.971679]: -------------------\n", - "[INFO] [1712690293.971926]: SOMA.LocutionaryAction \n", - "[INFO] [1712690293.972168]: Super classes: [owl.Thing]\n", - "[INFO] [1712690293.972410]: Ancestors: {owl.Thing, SOMA.LocutionaryAction}\n", - "[INFO] [1712690293.972654]: Subclasses: []\n", - "[INFO] [1712690293.972969]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690293.973464]: Instances: []\n", - "[INFO] [1712690293.973726]: Direct Instances: []\n", - "[INFO] [1712690293.973979]: Inverse Restrictions: []\n", - "[INFO] [1712690293.974231]: -------------------\n", - "[INFO] [1712690293.974477]: SOMA.LookingAt \n", - "[INFO] [1712690293.974952]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690293.975425]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.LookingAt}\n", - "[INFO] [1712690293.975866]: Subclasses: []\n", - "[INFO] [1712690293.976403]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.977097]: Instances: []\n", - "[INFO] [1712690293.977529]: Direct Instances: []\n", - "[INFO] [1712690293.977945]: Inverse Restrictions: []\n", - "[INFO] [1712690293.978362]: -------------------\n", - "[INFO] [1712690293.978729]: SOMA.LookingFor \n", - "[INFO] [1712690293.979077]: Super classes: [SOMA.Perceiving, SOMA.Perceiving]\n", - "[INFO] [1712690293.979494]: Ancestors: {owl.Thing, SOMA.LookingFor, SOMA.Perceiving}\n", - "[INFO] [1712690293.979909]: Subclasses: []\n", - "[INFO] [1712690293.980308]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.980927]: Instances: []\n", - "[INFO] [1712690293.981299]: Direct Instances: []\n", - "[INFO] [1712690293.981656]: Inverse Restrictions: []\n", - "[INFO] [1712690293.981997]: -------------------\n", - "[INFO] [1712690293.982330]: SOMA.Lowering \n", - "[INFO] [1712690293.982672]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690293.983017]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Lowering, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690293.983368]: Subclasses: []\n", - "[INFO] [1712690293.983774]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.984368]: Instances: []\n", - "[INFO] [1712690293.984719]: Direct Instances: []\n", - "[INFO] [1712690293.985078]: Inverse Restrictions: []\n", - "[INFO] [1712690293.985350]: -------------------\n", - "[INFO] [1712690293.985601]: SOMA.PhysicalAction \n", - "[INFO] [1712690293.985856]: Super classes: [DUL.Action, DUL.Action]\n", - "[INFO] [1712690293.986104]: Ancestors: {DUL.Entity, DUL.Event, SOMA.PhysicalAction, owl.Thing, DUL.Action}\n", - "[INFO] [1712690293.986351]: Subclasses: []\n", - "[INFO] [1712690293.986641]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.987144]: Instances: []\n", - "[INFO] [1712690293.987411]: Direct Instances: []\n", - "[INFO] [1712690293.987715]: Inverse Restrictions: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690293.987967]: -------------------\n", - "[INFO] [1712690293.988211]: SOMA.Markup_Language \n", - "[INFO] [1712690293.988461]: Super classes: [SOMA.Computer_Language, SOMA.Computer_Language]\n", - "[INFO] [1712690293.988712]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, SOMA.Markup_Language, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690293.988978]: Subclasses: []\n", - "[INFO] [1712690293.989352]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690293.989887]: Instances: []\n", - "[INFO] [1712690293.990166]: Direct Instances: []\n", - "[INFO] [1712690293.990420]: Inverse Restrictions: []\n", - "[INFO] [1712690293.990658]: -------------------\n", - "[INFO] [1712690293.990902]: SOMA.Masterful \n", - "[INFO] [1712690293.991145]: Super classes: [SOMA.DexterityDiagnosis]\n", - "[INFO] [1712690293.991398]: Ancestors: {SOMA.Masterful, DUL.Entity, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690293.991647]: Subclasses: []\n", - "[INFO] [1712690293.991946]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.992434]: Instances: []\n", - "[INFO] [1712690293.992702]: Direct Instances: []\n", - "[INFO] [1712690293.993134]: Inverse Restrictions: []\n", - "[INFO] [1712690293.993441]: -------------------\n", - "[INFO] [1712690293.993702]: SOMA.Material \n", - "[INFO] [1712690293.993949]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690293.994202]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Material, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690293.994451]: Subclasses: []\n", - "[INFO] [1712690293.994745]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690293.995248]: Instances: []\n", - "[INFO] [1712690293.995509]: Direct Instances: []\n", - "[INFO] [1712690293.995763]: Inverse Restrictions: []\n", - "[INFO] [1712690293.996006]: -------------------\n", - "[INFO] [1712690293.996240]: SOMA.MedicalDiagnosis \n", - "[INFO] [1712690293.996489]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.Organism)]\n", - "[INFO] [1712690293.996748]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, DUL.Object, owl.Thing, SOMA.MedicalDiagnosis, DUL.Description}\n", - "[INFO] [1712690293.997004]: Subclasses: []\n", - "[INFO] [1712690293.997310]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712690293.997807]: Instances: []\n", - "[INFO] [1712690293.998089]: Direct Instances: []\n", - "[INFO] [1712690293.998352]: Inverse Restrictions: []\n", - "[INFO] [1712690293.998600]: -------------------\n", - "[INFO] [1712690293.998883]: SOMA.Memorizing \n", - "[INFO] [1712690293.999130]: Super classes: [SOMA.Learning, SOMA.Learning]\n", - "[INFO] [1712690293.999403]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, SOMA.Memorizing, DUL.EventType, SOMA.InformationStorage, DUL.Object, owl.Thing, SOMA.Learning}\n", - "[INFO] [1712690293.999659]: Subclasses: []\n", - "[INFO] [1712690293.999954]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.000440]: Instances: []\n", - "[INFO] [1712690294.000711]: Direct Instances: []\n", - "[INFO] [1712690294.000974]: Inverse Restrictions: []\n", - "[INFO] [1712690294.001216]: -------------------\n", - "[INFO] [1712690294.001455]: SOMA.MentalAction \n", - "[INFO] [1712690294.001701]: Super classes: [DUL.Action, DUL.Action, DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject), DUL.hasParticipant.only(DUL.Agent | DUL.SocialObject)]\n", - "[INFO] [1712690294.001945]: Ancestors: {DUL.Entity, DUL.Event, SOMA.MentalAction, owl.Thing, DUL.Action}\n", - "[INFO] [1712690294.002197]: Subclasses: []\n", - "[INFO] [1712690294.002494]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.002985]: Instances: []\n", - "[INFO] [1712690294.003256]: Direct Instances: []\n", - "[INFO] [1712690294.003552]: Inverse Restrictions: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712690294.004078]: -------------------\n", - "[INFO] [1712690294.004467]: SOMA.MeshShape \n", - "[INFO] [1712690294.004736]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double), SOMA.hasFilePath.exactly(1, ), SOMA.hasShapeScale.max(1, SOMA.array_double)]\n", - "[INFO] [1712690294.005002]: Ancestors: {DUL.Entity, SOMA.MeshShape, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion}\n", - "[INFO] [1712690294.005274]: Subclasses: []\n", - "[INFO] [1712690294.005590]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasFilePath, rdf-schema.comment]\n", - "[INFO] [1712690294.006108]: Instances: []\n", - "[INFO] [1712690294.006383]: Direct Instances: []\n", - "[INFO] [1712690294.006635]: Inverse Restrictions: []\n", - "[INFO] [1712690294.006880]: -------------------\n", - "[INFO] [1712690294.007135]: SOMA.MeshShapeData \n", - "[INFO] [1712690294.007387]: Super classes: [DUL.InformationObject, DUL.InformationObject, DUL.isAbout.only(DUL.PhysicalObject), DUL.isAbout.only(DUL.PhysicalObject)]\n", - "[INFO] [1712690294.007638]: Ancestors: {DUL.Entity, SOMA.MeshShapeData, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690294.007882]: Subclasses: []\n", - "[INFO] [1712690294.008177]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.008677]: Instances: []\n", - "[INFO] [1712690294.008952]: Direct Instances: []\n", - "[INFO] [1712690294.009207]: Inverse Restrictions: []\n", - "[INFO] [1712690294.009442]: -------------------\n", - "[INFO] [1712690294.009673]: SOMA.MetaCognitionEvaluationTopic \n", - "[INFO] [1712690294.009903]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712690294.010161]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.010412]: Subclasses: []\n", - "[INFO] [1712690294.010703]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.011187]: Instances: []\n", - "[INFO] [1712690294.011457]: Direct Instances: []\n", - "[INFO] [1712690294.011707]: Inverse Restrictions: []\n", - "[INFO] [1712690294.011941]: -------------------\n", - "[INFO] [1712690294.012172]: SOMA.MetaCognitionTopic \n", - "[INFO] [1712690294.012403]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690294.012645]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.012923]: Subclasses: [SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic, SOMA.MetaCognitionEvaluationTopic, SOMA.MetaCognitionMemoryTopic, SOMA.MetaCognitionPlanningTopic]\n", - "[INFO] [1712690294.013228]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.013723]: Instances: []\n", - "[INFO] [1712690294.013988]: Direct Instances: []\n", - "[INFO] [1712690294.014246]: Inverse Restrictions: []\n", - "[INFO] [1712690294.014491]: -------------------\n", - "[INFO] [1712690294.014729]: SOMA.MetaCognitionMemoryTopic \n", - "[INFO] [1712690294.014964]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712690294.015213]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, SOMA.MetaCognitionMemoryTopic, DUL.Role}\n", - "[INFO] [1712690294.015469]: Subclasses: []\n", - "[INFO] [1712690294.015766]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.016251]: Instances: []\n", - "[INFO] [1712690294.016511]: Direct Instances: []\n", - "[INFO] [1712690294.016762]: Inverse Restrictions: []\n", - "[INFO] [1712690294.017016]: -------------------\n", - "[INFO] [1712690294.017253]: SOMA.MetaCognitionPlanningTopic \n", - "[INFO] [1712690294.017487]: Super classes: [SOMA.MetaCognitionTopic, SOMA.MetaCognitionTopic]\n", - "[INFO] [1712690294.017737]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.MetaCognitionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.MetaCognitionPlanningTopic, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.017979]: Subclasses: []\n", - "[INFO] [1712690294.018280]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.018776]: Instances: []\n", - "[INFO] [1712690294.019033]: Direct Instances: []\n", - "[INFO] [1712690294.019280]: Inverse Restrictions: []\n", - "[INFO] [1712690294.019510]: -------------------\n", - "[INFO] [1712690294.019750]: SOMA.ThinkAloudTopic \n", - "[INFO] [1712690294.019983]: Super classes: [SOMA.CommunicationTopic, SOMA.CommunicationTopic]\n", - "[INFO] [1712690294.020223]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.020486]: Subclasses: [SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic, SOMA.MetaCognitionTopic, SOMA.ThinkAloudActionTopic, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ThinkAloudOpinionTopic, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudPlanTopic]\n", - "[INFO] [1712690294.020781]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.021307]: Instances: []\n", - "[INFO] [1712690294.021583]: Direct Instances: []\n", - "[INFO] [1712690294.021852]: Inverse Restrictions: []\n", - "[INFO] [1712690294.022087]: -------------------\n", - "[INFO] [1712690294.022321]: SOMA.MetacognitiveControlling \n", - "[INFO] [1712690294.022566]: Super classes: [SOMA.MentalTask, SOMA.MentalTask]\n", - "[INFO] [1712690294.022815]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.MetacognitiveControlling, DUL.Object, owl.Thing}\n", - "[INFO] [1712690294.023070]: Subclasses: [SOMA.SelfReflection, SOMA.SelfReflection]\n", - "[INFO] [1712690294.023359]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.023842]: Instances: []\n", - "[INFO] [1712690294.024120]: Direct Instances: []\n", - "[INFO] [1712690294.024384]: Inverse Restrictions: []\n", - "[INFO] [1712690294.024620]: -------------------\n", - "[INFO] [1712690294.024862]: SOMA.MetacognitiveMonitoring \n", - "[INFO] [1712690294.025094]: Super classes: [SOMA.Introspecting, SOMA.Introspecting]\n", - "[INFO] [1712690294.025329]: Ancestors: {owl.Thing, SOMA.Introspecting, SOMA.InformationAcquisition, SOMA.MetacognitiveMonitoring}\n", - "[INFO] [1712690294.025581]: Subclasses: []\n", - "[INFO] [1712690294.025875]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.026374]: Instances: []\n", - "[INFO] [1712690294.026636]: Direct Instances: []\n", - "[INFO] [1712690294.026882]: Inverse Restrictions: []\n", - "[INFO] [1712690294.027125]: -------------------\n", - "[INFO] [1712690294.027360]: SOMA.Mixing \n", - "[INFO] [1712690294.027591]: Super classes: [SOMA.Constructing, SOMA.Constructing]\n", - "[INFO] [1712690294.027831]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Mixing}\n", - "[INFO] [1712690294.028095]: Subclasses: [SOMA.Stirring, SOMA.Stirring]\n", - "[INFO] [1712690294.028394]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.028895]: Instances: []\n", - "[INFO] [1712690294.029175]: Direct Instances: []\n", - "[INFO] [1712690294.029446]: Inverse Restrictions: []\n", - "[INFO] [1712690294.029683]: -------------------\n", - "[INFO] [1712690294.029915]: SOMA.MixingTheory \n", - "[INFO] [1712690294.030153]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Instrument), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712690294.030394]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.MixingTheory, owl.Thing, DUL.Object, DUL.Description, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690294.030650]: Subclasses: []\n", - "[INFO] [1712690294.030948]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.031430]: Instances: []\n", - "[INFO] [1712690294.031702]: Direct Instances: []\n", - "[INFO] [1712690294.031966]: Inverse Restrictions: []\n", - "[INFO] [1712690294.032214]: -------------------\n", - "[INFO] [1712690294.032451]: SOMA.MonitoringJointState \n", - "[INFO] [1712690294.032684]: Super classes: [SOMA.Proprioceiving, SOMA.Proprioceiving]\n", - "[INFO] [1712690294.033095]: Ancestors: {DUL.Entity, SOMA.MonitoringJointState, DUL.Concept, DUL.SocialObject, SOMA.Proprioceiving, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690294.033557]: Subclasses: []\n", - "[INFO] [1712690294.033912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.034425]: Instances: []\n", - "[INFO] [1712690294.034704]: Direct Instances: []\n", - "[INFO] [1712690294.034959]: Inverse Restrictions: []\n", - "[INFO] [1712690294.035206]: -------------------\n", - "[INFO] [1712690294.035444]: SOMA.Proprioceiving \n", - "[INFO] [1712690294.035679]: Super classes: [SOMA.PhysicalTask, SOMA.PhysicalTask]\n", - "[INFO] [1712690294.035952]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Proprioceiving, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690294.036225]: Subclasses: [SOMA.MonitoringJointState, SOMA.MonitoringJointState]\n", - "[INFO] [1712690294.036524]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.037020]: Instances: []\n", - "[INFO] [1712690294.037366]: Direct Instances: []\n", - "[INFO] [1712690294.037657]: Inverse Restrictions: []\n", - "[INFO] [1712690294.037911]: -------------------\n", - "[INFO] [1712690294.038153]: SOMA.MovingAway \n", - "[INFO] [1712690294.038389]: Super classes: [SOMA.Locomotion, SOMA.Locomotion]\n", - "[INFO] [1712690294.038635]: Ancestors: {DUL.Entity, SOMA.MovingAway, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.DirectedMotion, SOMA.Locomotion}\n", - "[INFO] [1712690294.038875]: Subclasses: []\n", - "[INFO] [1712690294.039165]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.039678]: Instances: []\n", - "[INFO] [1712690294.039954]: Direct Instances: []\n", - "[INFO] [1712690294.040214]: Inverse Restrictions: []\n", - "[INFO] [1712690294.040452]: -------------------\n", - "[INFO] [1712690294.040689]: SOMA.MovingTo \n", - "[INFO] [1712690294.040946]: Super classes: [SOMA.Navigating, SOMA.Navigating]\n", - "[INFO] [1712690294.041199]: Ancestors: {DUL.Entity, SOMA.Navigating, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.MovingTo}\n", - "[INFO] [1712690294.041449]: Subclasses: []\n", - "[INFO] [1712690294.041739]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.042226]: Instances: []\n", - "[INFO] [1712690294.042500]: Direct Instances: []\n", - "[INFO] [1712690294.042762]: Inverse Restrictions: []\n", - "[INFO] [1712690294.043005]: -------------------\n", - "[INFO] [1712690294.043237]: SOMA.Natural_Language \n", - "[INFO] [1712690294.043470]: Super classes: [SOMA.Language, SOMA.Language, SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text), SOMA.givesMeaningTo.only(SOMA.Natural_Language_Text)]\n", - "[INFO] [1712690294.043717]: Ancestors: {SOMA.Natural_Language, DUL.Entity, SOMA.System, DUL.SocialObject, SOMA.Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690294.043965]: Subclasses: []\n", - "[INFO] [1712690294.044260]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.044748]: Instances: []\n", - "[INFO] [1712690294.045071]: Direct Instances: []\n", - "[INFO] [1712690294.045428]: Inverse Restrictions: [SOMA.Natural_Language_Text, SOMA.Natural_Language_Text]\n", - "[INFO] [1712690294.045689]: -------------------\n", - "[INFO] [1712690294.045936]: SOMA.Natural_Language_Text \n", - "[INFO] [1712690294.046173]: Super classes: [owl.Thing]\n", - "[INFO] [1712690294.046412]: Ancestors: {owl.Thing, SOMA.Natural_Language_Text}\n", - "[INFO] [1712690294.046672]: Subclasses: []\n", - "[INFO] [1712690294.046979]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.047478]: Instances: []\n", - "[INFO] [1712690294.047764]: Direct Instances: []\n", - "[INFO] [1712690294.048074]: Inverse Restrictions: [SOMA.Natural_Language, SOMA.Natural_Language]\n", - "[INFO] [1712690294.048328]: -------------------\n", - "[INFO] [1712690294.048568]: SOMA.Ontology \n", - "[INFO] [1712690294.048810]: Super classes: [SOMA.Structured_Text, SOMA.Structured_Text]\n", - "[INFO] [1712690294.049051]: Ancestors: {SOMA.Structured_Text, SOMA.Ontology, owl.Thing}\n", - "[INFO] [1712690294.049306]: Subclasses: []\n", - "[INFO] [1712690294.049615]: Properties: [SOMA.isGivenMeaningBy, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.050106]: Instances: []\n", - "[INFO] [1712690294.050374]: Direct Instances: []\n", - "[INFO] [1712690294.050684]: Inverse Restrictions: [SOMA.Ontology_Language, SOMA.Ontology_Language]\n", - "[INFO] [1712690294.050927]: -------------------\n", - "[INFO] [1712690294.051163]: SOMA.Ontology_Language \n", - "[INFO] [1712690294.051399]: Super classes: [SOMA.KnowledgeRepresentationLanguage, SOMA.KnowledgeRepresentationLanguage, SOMA.givesMeaningTo.only(SOMA.Ontology), SOMA.givesMeaningTo.only(SOMA.Ontology)]\n", - "[INFO] [1712690294.051647]: Ancestors: {SOMA.Computer_Language, DUL.Entity, SOMA.System, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.KnowledgeRepresentationLanguage, SOMA.Ontology_Language, owl.Thing, DUL.Object}\n", - "[INFO] [1712690294.051895]: Subclasses: []\n", - "[INFO] [1712690294.052201]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.052693]: Instances: []\n", - "[INFO] [1712690294.052960]: Direct Instances: []\n", - "[INFO] [1712690294.053272]: Inverse Restrictions: [SOMA.Ontology, SOMA.Ontology]\n", - "[INFO] [1712690294.053531]: -------------------\n", - "[INFO] [1712690294.053772]: SOMA.Option \n", - "[INFO] [1712690294.054008]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712690294.054250]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, SOMA.Option, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690294.054495]: Subclasses: []\n", - "[INFO] [1712690294.054783]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.055287]: Instances: []\n", - "[INFO] [1712690294.055550]: Direct Instances: []\n", - "[INFO] [1712690294.055807]: Inverse Restrictions: []\n", - "[INFO] [1712690294.056041]: -------------------\n", - "[INFO] [1712690294.056271]: SOMA.Singleton \n", - "[INFO] [1712690294.056501]: Super classes: [owl.Thing]\n", - "[INFO] [1712690294.056748]: Ancestors: {owl.Thing, SOMA.Singleton}\n", - "[INFO] [1712690294.057011]: Subclasses: [SOMA.OrderedElement, SOMA.OrderedElement]\n", - "[INFO] [1712690294.057306]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.encapsulates]\n", - "[INFO] [1712690294.057820]: Instances: []\n", - "[INFO] [1712690294.058099]: Direct Instances: []\n", - "[INFO] [1712690294.058370]: Inverse Restrictions: []\n", - "[INFO] [1712690294.058608]: -------------------\n", - "[INFO] [1712690294.058838]: SOMA.Orienting \n", - "[INFO] [1712690294.059063]: Super classes: [SOMA.Positioning, SOMA.Positioning]\n", - "[INFO] [1712690294.059302]: Ancestors: {SOMA.Orienting, DUL.Entity, SOMA.Positioning, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690294.059555]: Subclasses: []\n", - "[INFO] [1712690294.059846]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.060328]: Instances: []\n", - "[INFO] [1712690294.060610]: Direct Instances: []\n", - "[INFO] [1712690294.060880]: Inverse Restrictions: []\n", - "[INFO] [1712690294.061117]: -------------------\n", - "[INFO] [1712690294.061349]: SOMA.Positioning \n", - "[INFO] [1712690294.061576]: Super classes: [SOMA.Actuating, SOMA.Actuating]\n", - "[INFO] [1712690294.061814]: Ancestors: {DUL.Entity, SOMA.Positioning, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690294.062080]: Subclasses: [SOMA.Orienting, SOMA.Orienting]\n", - "[INFO] [1712690294.062371]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.062855]: Instances: []\n", - "[INFO] [1712690294.063123]: Direct Instances: []\n", - "[INFO] [1712690294.063380]: Inverse Restrictions: []\n", - "[INFO] [1712690294.063616]: -------------------\n", - "[INFO] [1712690294.063846]: SOMA.Origin \n", - "[INFO] [1712690294.064072]: Super classes: [SOMA.Location, SOMA.Location]\n", - "[INFO] [1712690294.064308]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Location, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, SOMA.Origin, DUL.Role}\n", - "[INFO] [1712690294.064560]: Subclasses: []\n", - "[INFO] [1712690294.064856]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.065345]: Instances: []\n", - "[INFO] [1712690294.065599]: Direct Instances: []\n", - "[INFO] [1712690294.065908]: Inverse Restrictions: [SOMA.SourcePathGoalTheory, SOMA.SourcePathGoalTheory]\n", - "[INFO] [1712690294.066152]: -------------------\n", - "[INFO] [1712690294.066386]: SOMA.ParkingArms \n", - "[INFO] [1712690294.066616]: Super classes: [SOMA.AssumingArmPose, SOMA.AssumingArmPose]\n", - "[INFO] [1712690294.066855]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.AssumingArmPose, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ParkingArms}\n", - "[INFO] [1712690294.067111]: Subclasses: []\n", - "[INFO] [1712690294.067413]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.067906]: Instances: [SOMA.parking_arms]\n", - "[INFO] [1712690294.068172]: Direct Instances: [SOMA.parking_arms]\n", - "[INFO] [1712690294.068436]: Inverse Restrictions: []\n", - "[INFO] [1712690294.068678]: -------------------\n", - "[INFO] [1712690294.068921]: SOMA.PhaseTransition \n", - "[INFO] [1712690294.069154]: Super classes: [SOMA.Alteration, SOMA.Alteration]\n", - "[INFO] [1712690294.069394]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, DUL.EventType, DUL.Object, owl.Thing, SOMA.Alteration, SOMA.PhaseTransition}\n", - "[INFO] [1712690294.069658]: Subclasses: [SOMA.Vaporizing, SOMA.Vaporizing]\n", - "[INFO] [1712690294.069954]: Properties: [rdf-schema.seeAlso, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.070441]: Instances: []\n", - "[INFO] [1712690294.070714]: Direct Instances: []\n", - "[INFO] [1712690294.070984]: Inverse Restrictions: []\n", - "[INFO] [1712690294.071222]: -------------------\n", - "[INFO] [1712690294.071453]: SOMA.PhysicalAccessibility \n", - "[INFO] [1712690294.071689]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712690294.071930]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.PhysicalAccessibility, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690294.072185]: Subclasses: []\n", - "[INFO] [1712690294.072483]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690294.072975]: Instances: []\n", - "[INFO] [1712690294.073255]: Direct Instances: []\n", - "[INFO] [1712690294.073515]: Inverse Restrictions: []\n", - "[INFO] [1712690294.073751]: -------------------\n", - "[INFO] [1712690294.073983]: SOMA.PhysicalBlockage \n", - "[INFO] [1712690294.074218]: Super classes: [SOMA.StateType, SOMA.StateType, SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor), SOMA.isStateTypeOf.some(SOMA.Item), SOMA.isStateTypeOf.some(SOMA.Restrictor)]\n", - "[INFO] [1712690294.074469]: Ancestors: {DUL.Entity, SOMA.PhysicalBlockage, DUL.SocialObject, DUL.Concept, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690294.074717]: Subclasses: []\n", - "[INFO] [1712690294.075010]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690294.075492]: Instances: []\n", - "[INFO] [1712690294.075768]: Direct Instances: []\n", - "[INFO] [1712690294.076023]: Inverse Restrictions: []\n", - "[INFO] [1712690294.076260]: -------------------\n", - "[INFO] [1712690294.076493]: SOMA.PhysicalExistence \n", - "[INFO] [1712690294.076723]: Super classes: [SOMA.PhysicalState, SOMA.PhysicalState]\n", - "[INFO] [1712690294.076978]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, SOMA.PhysicalExistence, owl.Thing, SOMA.PhysicalState}\n", - "[INFO] [1712690294.077234]: Subclasses: []\n", - "[INFO] [1712690294.077526]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.078010]: Instances: []\n", - "[INFO] [1712690294.078285]: Direct Instances: []\n", - "[INFO] [1712690294.078543]: Inverse Restrictions: []\n", - "[INFO] [1712690294.078780]: -------------------\n", - "[INFO] [1712690294.079012]: SOMA.PhysicalState \n", - "[INFO] [1712690294.079246]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712690294.079486]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing, SOMA.PhysicalState}\n", - "[INFO] [1712690294.079753]: Subclasses: [SOMA.PhysicalExistence, SOMA.PhysicalExistence]\n", - "[INFO] [1712690294.080055]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690294.080544]: Instances: []\n", - "[INFO] [1712690294.080826]: Direct Instances: []\n", - "[INFO] [1712690294.081088]: Inverse Restrictions: []\n", - "[INFO] [1712690294.081324]: -------------------\n", - "[INFO] [1712690294.081562]: SOMA.PhysicsProcess \n", - "[INFO] [1712690294.081796]: Super classes: [DUL.Process, DUL.Process, DUL.hasParticipant.some(DUL.PhysicalObject), DUL.hasParticipant.some(DUL.PhysicalObject)]\n", - "[INFO] [1712690294.082057]: Ancestors: {DUL.Entity, DUL.Event, DUL.Process, SOMA.PhysicsProcess, owl.Thing}\n", - "[INFO] [1712690294.082304]: Subclasses: []\n", - "[INFO] [1712690294.082597]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690294.083145]: Instances: []\n", - "[INFO] [1712690294.083494]: Direct Instances: []\n", - "[INFO] [1712690294.083781]: Inverse Restrictions: []\n", - "[INFO] [1712690294.084041]: -------------------\n", - "[INFO] [1712690294.084300]: SOMA.PlacingTheory \n", - "[INFO] [1712690294.084567]: Super classes: [SOMA.ExecutableSchematicTheory, SOMA.ExecutableSchematicTheory, DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient), DUL.defines.some(SOMA.Destination), DUL.defines.some(SOMA.Patient)]\n", - "[INFO] [1712690294.084851]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description, SOMA.PlacingTheory, SOMA.ExecutableSchematicTheory}\n", - "[INFO] [1712690294.085125]: Subclasses: []\n", - "[INFO] [1712690294.085443]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.085942]: Instances: []\n", - "[INFO] [1712690294.086226]: Direct Instances: []\n", - "[INFO] [1712690294.086492]: Inverse Restrictions: []\n", - "[INFO] [1712690294.086737]: -------------------\n", - "[INFO] [1712690294.086985]: SOMA.PlanarJoint \n", - "[INFO] [1712690294.087231]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint]\n", - "[INFO] [1712690294.087480]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, SOMA.PlanarJoint, DUL.PhysicalObject}\n", - "[INFO] [1712690294.087736]: Subclasses: []\n", - "[INFO] [1712690294.088046]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.088534]: Instances: []\n", - "[INFO] [1712690294.088802]: Direct Instances: []\n", - "[INFO] [1712690294.089229]: Inverse Restrictions: []\n", - "[INFO] [1712690294.089601]: -------------------\n", - "[INFO] [1712690294.089968]: SOMA.PluginRole \n", - "[INFO] [1712690294.090342]: Super classes: [SOMA.InterfaceComponentRole, SOMA.InterfaceComponentRole, DUL.isDefinedIn.some(SOMA.PluginSpecification), DUL.isDefinedIn.some(SOMA.PluginSpecification)]\n", - "[INFO] [1712690294.090719]: Ancestors: {DUL.Entity, SOMA.InterfaceComponentRole, DUL.Concept, DUL.SocialObject, SOMA.PluginRole, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690294.091099]: Subclasses: []\n", - "[INFO] [1712690294.091441]: Properties: [DUL.isDefinedIn, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.091952]: Instances: []\n", - "[INFO] [1712690294.092220]: Direct Instances: []\n", - "[INFO] [1712690294.092543]: Inverse Restrictions: [SOMA.PluginSpecification, SOMA.PluginSpecification]\n", - "[INFO] [1712690294.092816]: -------------------\n", - "[INFO] [1712690294.093071]: SOMA.Pourable \n", - "[INFO] [1712690294.093322]: Super classes: [SOMA.Disposition, SOMA.Disposition, SOMA.affordsBearer.only(SOMA.PouredObject), SOMA.affordsBearer.only(SOMA.PouredObject)]\n", - "[INFO] [1712690294.093573]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Pourable, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690294.093820]: Subclasses: []\n", - "[INFO] [1712690294.094121]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.094633]: Instances: []\n", - "[INFO] [1712690294.094901]: Direct Instances: []\n", - "[INFO] [1712690294.095201]: Inverse Restrictions: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712690294.095445]: -------------------\n", - "[INFO] [1712690294.095681]: SOMA.PouredObject \n", - "[INFO] [1712690294.095913]: Super classes: [SOMA.Patient, SOMA.Patient]\n", - "[INFO] [1712690294.096169]: Ancestors: {SOMA.PouredObject, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690294.096429]: Subclasses: []\n", - "[INFO] [1712690294.096743]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.097244]: Instances: []\n", - "[INFO] [1712690294.097527]: Direct Instances: []\n", - "[INFO] [1712690294.097830]: Inverse Restrictions: [SOMA.Pourable, SOMA.Pourable]\n", - "[INFO] [1712690294.098071]: -------------------\n", - "[INFO] [1712690294.098305]: SOMA.Pouring \n", - "[INFO] [1712690294.098539]: Super classes: [SOMA.Actuating, SOMA.Actuating, SOMA.isTaskAffordedBy.some(SOMA.Pourable), SOMA.isTaskAffordedBy.some(SOMA.Pourable)]\n", - "[INFO] [1712690294.098780]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712690294.099047]: Subclasses: [SOMA.PouringInto, SOMA.PouringOnto, SOMA.PouringInto, SOMA.PouringOnto]\n", - "[INFO] [1712690294.099348]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690294.099854]: Instances: []\n", - "[INFO] [1712690294.100179]: Direct Instances: []\n", - "[INFO] [1712690294.100482]: Inverse Restrictions: []\n", - "[INFO] [1712690294.100747]: -------------------\n", - "[INFO] [1712690294.101016]: SOMA.PouringInto \n", - "[INFO] [1712690294.101265]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712690294.101542]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.PouringInto, SOMA.Pouring}\n", - "[INFO] [1712690294.101826]: Subclasses: []\n", - "[INFO] [1712690294.102132]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.102624]: Instances: []\n", - "[INFO] [1712690294.102901]: Direct Instances: []\n", - "[INFO] [1712690294.103167]: Inverse Restrictions: []\n", - "[INFO] [1712690294.103404]: -------------------\n", - "[INFO] [1712690294.103636]: SOMA.PouringOnto \n", - "[INFO] [1712690294.103863]: Super classes: [SOMA.Pouring, SOMA.Pouring]\n", - "[INFO] [1712690294.104105]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.PouringOnto, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Pouring}\n", - "[INFO] [1712690294.104359]: Subclasses: []\n", - "[INFO] [1712690294.104651]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.105169]: Instances: []\n", - "[INFO] [1712690294.105460]: Direct Instances: []\n", - "[INFO] [1712690294.105711]: Inverse Restrictions: []\n", - "[INFO] [1712690294.105947]: -------------------\n", - "[INFO] [1712690294.106189]: SOMA.Prediction \n", - "[INFO] [1712690294.106423]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712690294.106660]: Ancestors: {SOMA.Prediction, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690294.106897]: Subclasses: []\n", - "[INFO] [1712690294.107185]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.107688]: Instances: []\n", - "[INFO] [1712690294.107960]: Direct Instances: []\n", - "[INFO] [1712690294.108213]: Inverse Restrictions: []\n", - "[INFO] [1712690294.108445]: -------------------\n", - "[INFO] [1712690294.108676]: SOMA.Prospecting \n", - "[INFO] [1712690294.108919]: Super classes: [SOMA.DerivingInformation, SOMA.DerivingInformation]\n", - "[INFO] [1712690294.109159]: Ancestors: {SOMA.DerivingInformation, owl.Thing, SOMA.Prospecting, SOMA.InformationAcquisition}\n", - "[INFO] [1712690294.109413]: Subclasses: [SOMA.Prediction, SOMA.Simulating, SOMA.Prediction, SOMA.Simulating]\n", - "[INFO] [1712690294.109699]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.110198]: Instances: []\n", - "[INFO] [1712690294.110464]: Direct Instances: []\n", - "[INFO] [1712690294.110723]: Inverse Restrictions: []\n", - "[INFO] [1712690294.110954]: -------------------\n", - "[INFO] [1712690294.111181]: SOMA.Predilection \n", - "[INFO] [1712690294.111440]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation)))), DUL.describes.only(SOMA.Preference | (SOMA.Order & SOMA.orders.only(SOMA.encapsulates.only(DUL.Situation))))]\n", - "[INFO] [1712690294.111690]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.Predilection}\n", - "[INFO] [1712690294.111934]: Subclasses: []\n", - "[INFO] [1712690294.112224]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690294.112727]: Instances: []\n", - "[INFO] [1712690294.113065]: Direct Instances: []\n", - "[INFO] [1712690294.113368]: Inverse Restrictions: []\n", - "[INFO] [1712690294.113643]: -------------------\n", - "[INFO] [1712690294.113902]: SOMA.PreferenceOrder \n", - "[INFO] [1712690294.114156]: Super classes: [DUL.SocialRelation, DUL.SocialRelation, SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference), SOMA.orders.some(SOMA.OrderedElement), SOMA.orders.only(SOMA.encapsulates.only(DUL.Description)), DUL.describes.only(SOMA.Preference)]\n", - "[INFO] [1712690294.114407]: Ancestors: {DUL.Entity, DUL.SocialRelation, DUL.SocialObject, DUL.Relation, DUL.Object, owl.Thing, DUL.Description, SOMA.PreferenceOrder}\n", - "[INFO] [1712690294.114653]: Subclasses: []\n", - "[INFO] [1712690294.114960]: Properties: [SOMA.orders, rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690294.115468]: Instances: []\n", - "[INFO] [1712690294.115739]: Direct Instances: []\n", - "[INFO] [1712690294.115988]: Inverse Restrictions: []\n", - "[INFO] [1712690294.116231]: -------------------\n", - "[INFO] [1712690294.116461]: SOMA.PreferenceRegion \n", - "[INFO] [1712690294.116743]: Super classes: [DUL.SocialObjectAttribute, DUL.SocialObjectAttribute, DUL.isRegionFor.some(SOMA.Preference), DUL.isRegionFor.some(SOMA.Preference)]\n", - "[INFO] [1712690294.117020]: Ancestors: {DUL.Entity, SOMA.PreferenceRegion, DUL.Region, DUL.SocialObjectAttribute, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690294.117285]: Subclasses: []\n", - "[INFO] [1712690294.117584]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.isRegionFor, rdf-schema.label]\n", - "[INFO] [1712690294.118076]: Instances: []\n", - "[INFO] [1712690294.118367]: Direct Instances: []\n", - "[INFO] [1712690294.118629]: Inverse Restrictions: []\n", - "[INFO] [1712690294.118872]: -------------------\n", - "[INFO] [1712690294.119106]: SOMA.PrismaticJoint \n", - "[INFO] [1712690294.119343]: Super classes: [SOMA.MovableJoint, SOMA.MovableJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712690294.119598]: Ancestors: {DUL.Entity, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, SOMA.PrismaticJoint, DUL.PhysicalObject}\n", - "[INFO] [1712690294.119847]: Subclasses: []\n", - "[INFO] [1712690294.120140]: Properties: [SOMA.hasJointLimit, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.120629]: Instances: []\n", - "[INFO] [1712690294.120909]: Direct Instances: []\n", - "[INFO] [1712690294.121174]: Inverse Restrictions: []\n", - "[INFO] [1712690294.121415]: -------------------\n", - "[INFO] [1712690294.121644]: SOMA.ProcessFlow \n", - "[INFO] [1712690294.121881]: Super classes: [DUL.Description, DUL.Description, SOMA.definesProcess.some(SOMA.ProcessType), SOMA.definesProcess.some(SOMA.ProcessType)]\n", - "[INFO] [1712690294.122118]: Ancestors: {DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.ProcessFlow, DUL.Description}\n", - "[INFO] [1712690294.122371]: Subclasses: []\n", - "[INFO] [1712690294.122667]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.definesProcess, rdf-schema.comment]\n", - "[INFO] [1712690294.123150]: Instances: []\n", - "[INFO] [1712690294.123403]: Direct Instances: []\n", - "[INFO] [1712690294.123707]: Inverse Restrictions: [SOMA.Progression, SOMA.Progression]\n", - "[INFO] [1712690294.123946]: -------------------\n", - "[INFO] [1712690294.124178]: SOMA.Progression \n", - "[INFO] [1712690294.124406]: Super classes: [DUL.Situation, DUL.Situation]\n", - "[INFO] [1712690294.124640]: Ancestors: {SOMA.Progression, DUL.Entity, owl.Thing, DUL.Situation}\n", - "[INFO] [1712690294.124901]: Subclasses: []\n", - "[INFO] [1712690294.125204]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies]\n", - "[INFO] [1712690294.125696]: Instances: []\n", - "[INFO] [1712690294.125947]: Direct Instances: []\n", - "[INFO] [1712690294.126205]: Inverse Restrictions: []\n", - "[INFO] [1712690294.126441]: -------------------\n", - "[INFO] [1712690294.126671]: SOMA.Protector \n", - "[INFO] [1712690294.126897]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712690294.127143]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, SOMA.Protector, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690294.127392]: Subclasses: []\n", - "[INFO] [1712690294.127679]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.128158]: Instances: []\n", - "[INFO] [1712690294.128429]: Direct Instances: []\n", - "[INFO] [1712690294.128679]: Inverse Restrictions: []\n", - "[INFO] [1712690294.128919]: -------------------\n", - "[INFO] [1712690294.129148]: SOMA.ProximalTheory \n", - "[INFO] [1712690294.129381]: Super classes: [SOMA.ImageSchemaTheory, SOMA.ImageSchemaTheory, DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole), DUL.defines.some(SOMA.LocatumRole), DUL.defines.some(SOMA.RelatumRole)]\n", - "[INFO] [1712690294.129625]: Ancestors: {DUL.Entity, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, SOMA.ProximalTheory, DUL.Theory, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690294.129883]: Subclasses: []\n", - "[INFO] [1712690294.130180]: Properties: [DUL.defines, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.130662]: Instances: []\n", - "[INFO] [1712690294.130934]: Direct Instances: []\n", - "[INFO] [1712690294.131191]: Inverse Restrictions: []\n", - "[INFO] [1712690294.131426]: -------------------\n", - "[INFO] [1712690294.131655]: SOMA.PushingAway \n", - "[INFO] [1712690294.131885]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712690294.132261]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Pushing, DUL.EventType, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.PushingAway}\n", - "[INFO] [1712690294.132551]: Subclasses: []\n", - "[INFO] [1712690294.132882]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.133408]: Instances: []\n", - "[INFO] [1712690294.133722]: Direct Instances: []\n", - "[INFO] [1712690294.134073]: Inverse Restrictions: []\n", - "[INFO] [1712690294.134339]: -------------------\n", - "[INFO] [1712690294.134588]: SOMA.PushingDown \n", - "[INFO] [1712690294.134828]: Super classes: [SOMA.Pushing, SOMA.Pushing]\n", - "[INFO] [1712690294.135077]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Pushing, DUL.EventType, SOMA.PhysicalTask, DUL.Object, owl.Thing, SOMA.PushingDown}\n", - "[INFO] [1712690294.135341]: Subclasses: []\n", - "[INFO] [1712690294.135647]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.136150]: Instances: []\n", - "[INFO] [1712690294.136433]: Direct Instances: []\n", - "[INFO] [1712690294.136700]: Inverse Restrictions: []\n", - "[INFO] [1712690294.136957]: -------------------\n", - "[INFO] [1712690294.137197]: SOMA.PuttingDown \n", - "[INFO] [1712690294.137430]: Super classes: [SOMA.Manipulating, SOMA.Manipulating]\n", - "[INFO] [1712690294.137672]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, SOMA.PuttingDown, SOMA.PhysicalTask, DUL.Object, SOMA.Manipulating, owl.Thing}\n", - "[INFO] [1712690294.137908]: Subclasses: []\n", - "[INFO] [1712690294.138191]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.138686]: Instances: []\n", - "[INFO] [1712690294.138947]: Direct Instances: []\n", - "[INFO] [1712690294.139201]: Inverse Restrictions: []\n", - "[INFO] [1712690294.139433]: -------------------\n", - "[INFO] [1712690294.139672]: SOMA.QualityTransition \n", - "[INFO] [1712690294.139914]: Super classes: [DUL.Transition, DUL.Transition]\n", - "[INFO] [1712690294.140155]: Ancestors: {DUL.Entity, DUL.Situation, SOMA.QualityTransition, owl.Thing, DUL.Transition}\n", - "[INFO] [1712690294.140394]: Subclasses: []\n", - "[INFO] [1712690294.140680]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.141185]: Instances: []\n", - "[INFO] [1712690294.141448]: Direct Instances: []\n", - "[INFO] [1712690294.141695]: Inverse Restrictions: []\n", - "[INFO] [1712690294.141929]: -------------------\n", - "[INFO] [1712690294.142155]: SOMA.Query \n", - "[INFO] [1712690294.142381]: Super classes: [SOMA.Message, SOMA.Message]\n", - "[INFO] [1712690294.142627]: Ancestors: {DUL.Entity, SOMA.Message, SOMA.Query, DUL.Concept, DUL.SocialObject, SOMA.Item, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690294.142884]: Subclasses: []\n", - "[INFO] [1712690294.143173]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.143647]: Instances: []\n", - "[INFO] [1712690294.143911]: Direct Instances: []\n", - "[INFO] [1712690294.144210]: Inverse Restrictions: [SOMA.QueryingTask, SOMA.QueryingTask]\n", - "[INFO] [1712690294.144448]: -------------------\n", - "[INFO] [1712690294.144678]: SOMA.QueryAnsweringTask \n", - "[INFO] [1712690294.144913]: Super classes: [owl.Thing]\n", - "[INFO] [1712690294.145152]: Ancestors: {owl.Thing, SOMA.QueryAnsweringTask}\n", - "[INFO] [1712690294.145394]: Subclasses: []\n", - "[INFO] [1712690294.145684]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.146164]: Instances: []\n", - "[INFO] [1712690294.146451]: Direct Instances: []\n", - "[INFO] [1712690294.146720]: Inverse Restrictions: []\n", - "[INFO] [1712690294.146959]: -------------------\n", - "[INFO] [1712690294.147191]: SOMA.QueryEngine \n", - "[INFO] [1712690294.147418]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690294.147664]: Ancestors: {DUL.Entity, SOMA.QueryEngine, DUL.SocialObject, DUL.Concept, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690294.147916]: Subclasses: []\n", - "[INFO] [1712690294.148211]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.148692]: Instances: []\n", - "[INFO] [1712690294.148963]: Direct Instances: []\n", - "[INFO] [1712690294.149218]: Inverse Restrictions: []\n", - "[INFO] [1712690294.149452]: -------------------\n", - "[INFO] [1712690294.149681]: SOMA.Reaching \n", - "[INFO] [1712690294.149907]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712690294.150166]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.Reaching}\n", - "[INFO] [1712690294.150427]: Subclasses: []\n", - "[INFO] [1712690294.150732]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.151216]: Instances: []\n", - "[INFO] [1712690294.151499]: Direct Instances: []\n", - "[INFO] [1712690294.151766]: Inverse Restrictions: []\n", - "[INFO] [1712690294.152007]: -------------------\n", - "[INFO] [1712690294.152239]: SOMA.Retracting \n", - "[INFO] [1712690294.152488]: Super classes: [SOMA.EndEffectorPositioning, SOMA.EndEffectorPositioning]\n", - "[INFO] [1712690294.152739]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.EndEffectorPositioning, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating, SOMA.Retracting}\n", - "[INFO] [1712690294.152996]: Subclasses: []\n", - "[INFO] [1712690294.153296]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.153862]: Instances: []\n", - "[INFO] [1712690294.154124]: Direct Instances: []\n", - "[INFO] [1712690294.154371]: Inverse Restrictions: []\n", - "[INFO] [1712690294.154605]: -------------------\n", - "[INFO] [1712690294.154853]: SOMA.Reasoner \n", - "[INFO] [1712690294.155088]: Super classes: [SOMA.SoftwareRole, SOMA.SoftwareRole]\n", - "[INFO] [1712690294.155337]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690294.155601]: Subclasses: [SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner, SOMA.StatisticalReasoner, SOMA.Simulation_Reasoner, SOMA.SymbolicReasoner]\n", - "[INFO] [1712690294.155902]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.156401]: Instances: []\n", - "[INFO] [1712690294.156657]: Direct Instances: []\n", - "[INFO] [1712690294.156925]: Inverse Restrictions: []\n", - "[INFO] [1712690294.157169]: -------------------\n", - "[INFO] [1712690294.157409]: SOMA.RecipientRole \n", - "[INFO] [1712690294.157638]: Super classes: [SOMA.BeneficiaryRole, SOMA.BeneficiaryRole]\n", - "[INFO] [1712690294.157880]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.BeneficiaryRole, SOMA.RecipientRole, SOMA.EventAdjacentRole, SOMA.GoalRole, DUL.Role}\n", - "[INFO] [1712690294.158126]: Subclasses: []\n", - "[INFO] [1712690294.158420]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.158908]: Instances: []\n", - "[INFO] [1712690294.159178]: Direct Instances: []\n", - "[INFO] [1712690294.159433]: Inverse Restrictions: []\n", - "[INFO] [1712690294.159680]: -------------------\n", - "[INFO] [1712690294.159918]: SOMA.RecordedEpisode \n", - "[INFO] [1712690294.160153]: Super classes: [SOMA.Episode, SOMA.includesRecord.some(DUL.InformationObject)]\n", - "[INFO] [1712690294.160395]: Ancestors: {DUL.Entity, SOMA.Episode, DUL.Situation, owl.Thing, SOMA.RecordedEpisode}\n", - "[INFO] [1712690294.160653]: Subclasses: [SOMA.HumanActivityRecording]\n", - "[INFO] [1712690294.160950]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.includesRecord]\n", - "[INFO] [1712690294.161442]: Instances: []\n", - "[INFO] [1712690294.161695]: Direct Instances: []\n", - "[INFO] [1712690294.161958]: Inverse Restrictions: []\n", - "[INFO] [1712690294.162205]: -------------------\n", - "[INFO] [1712690294.162440]: SOMA.RedColor \n", - "[INFO] [1712690294.162676]: Super classes: [SOMA.ColorRegion, SOMA.ColorRegion]\n", - "[INFO] [1712690294.162914]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.ColorRegion, SOMA.RedColor, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690294.163154]: Subclasses: []\n", - "[INFO] [1712690294.163450]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.163938]: Instances: []\n", - "[INFO] [1712690294.164190]: Direct Instances: []\n", - "[INFO] [1712690294.164432]: Inverse Restrictions: []\n", - "[INFO] [1712690294.164663]: -------------------\n", - "[INFO] [1712690294.164910]: SOMA.Reification \n", - "[INFO] [1712690294.165153]: Super classes: [DUL.Description, SOMA.isReificationOf.exactly(1, )]\n", - "[INFO] [1712690294.165397]: Ancestors: {DUL.Entity, SOMA.Reification, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690294.165632]: Subclasses: []\n", - "[INFO] [1712690294.165912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isReificationOf]\n", - "[INFO] [1712690294.166415]: Instances: [SOMA.RDFType]\n", - "[INFO] [1712690294.166700]: Direct Instances: [SOMA.RDFType]\n", - "[INFO] [1712690294.166970]: Inverse Restrictions: []\n", - "[INFO] [1712690294.167208]: -------------------\n", - "[INFO] [1712690294.167441]: SOMA.RelationalDatabase \n", - "[INFO] [1712690294.167687]: Super classes: [SOMA.Database, SOMA.Database]\n", - "[INFO] [1712690294.167942]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, SOMA.Database, DUL.Object, SOMA.RelationalDatabase, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690294.168200]: Subclasses: []\n", - "[INFO] [1712690294.168497]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.169000]: Instances: []\n", - "[INFO] [1712690294.169267]: Direct Instances: []\n", - "[INFO] [1712690294.169522]: Inverse Restrictions: []\n", - "[INFO] [1712690294.169755]: -------------------\n", - "[INFO] [1712690294.169990]: SOMA.RelationalQueryLanguage \n", - "[INFO] [1712690294.170223]: Super classes: [SOMA.QueryLanguage, SOMA.QueryLanguage]\n", - "[INFO] [1712690294.170475]: Ancestors: {SOMA.Computer_Language, SOMA.RelationalQueryLanguage, SOMA.System, DUL.Entity, SOMA.FormalLanguage, DUL.SocialObject, SOMA.Language, SOMA.QueryLanguage, DUL.Object, owl.Thing}\n", - "[INFO] [1712690294.170725]: Subclasses: []\n", - "[INFO] [1712690294.171017]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.171500]: Instances: []\n", - "[INFO] [1712690294.171756]: Direct Instances: []\n", - "[INFO] [1712690294.172018]: Inverse Restrictions: []\n", - "[INFO] [1712690294.172261]: -------------------\n", - "[INFO] [1712690294.172495]: SOMA.RelevantPart \n", - "[INFO] [1712690294.172725]: Super classes: [SOMA.Feature, SOMA.Feature]\n", - "[INFO] [1712690294.172964]: Ancestors: {DUL.Entity, SOMA.Feature, owl.Thing, DUL.Object, SOMA.RelevantPart}\n", - "[INFO] [1712690294.173199]: Subclasses: []\n", - "[INFO] [1712690294.173483]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.173972]: Instances: []\n", - "[INFO] [1712690294.174223]: Direct Instances: []\n", - "[INFO] [1712690294.174469]: Inverse Restrictions: []\n", - "[INFO] [1712690294.174706]: -------------------\n", - "[INFO] [1712690294.174952]: SOMA.Remembering \n", - "[INFO] [1712690294.175193]: Super classes: [owl.Thing, SOMA.InformationRetrieval & SOMA.Retrospecting, SOMA.InformationRetrieval & SOMA.Retrospecting]\n", - "[INFO] [1712690294.175428]: Ancestors: {owl.Thing, SOMA.Remembering}\n", - "[INFO] [1712690294.175673]: Subclasses: []\n", - "[INFO] [1712690294.175977]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.176469]: Instances: []\n", - "[INFO] [1712690294.176722]: Direct Instances: []\n", - "[INFO] [1712690294.176983]: Inverse Restrictions: []\n", - "[INFO] [1712690294.177229]: -------------------\n", - "[INFO] [1712690294.177471]: SOMA.Retrospecting \n", - "[INFO] [1712690294.177704]: Super classes: [SOMA.InformationAcquisition, SOMA.InformationAcquisition]\n", - "[INFO] [1712690294.177945]: Ancestors: {SOMA.Retrospecting, owl.Thing, SOMA.InformationAcquisition}\n", - "[INFO] [1712690294.178181]: Subclasses: []\n", - "[INFO] [1712690294.178477]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.178971]: Instances: []\n", - "[INFO] [1712690294.179224]: Direct Instances: []\n", - "[INFO] [1712690294.179513]: Inverse Restrictions: []\n", - "[INFO] [1712690294.179765]: -------------------\n", - "[INFO] [1712690294.180008]: SOMA.RemovedObject \n", - "[INFO] [1712690294.180243]: Super classes: [SOMA.ExcludedObject, SOMA.ExcludedObject]\n", - "[INFO] [1712690294.180485]: Ancestors: {DUL.Entity, SOMA.ExcludedObject, DUL.Concept, DUL.SocialObject, SOMA.RemovedObject, SOMA.Patient, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690294.180723]: Subclasses: []\n", - "[INFO] [1712690294.181026]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.181517]: Instances: []\n", - "[INFO] [1712690294.181772]: Direct Instances: []\n", - "[INFO] [1712690294.182033]: Inverse Restrictions: []\n", - "[INFO] [1712690294.182424]: -------------------\n", - "[INFO] [1712690294.182799]: SOMA.Replanning \n", - "[INFO] [1712690294.183164]: Super classes: [SOMA.Planning, SOMA.Planning]\n", - "[INFO] [1712690294.183549]: Ancestors: {SOMA.Deciding, SOMA.Planning, SOMA.Replanning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690294.183928]: Subclasses: []\n", - "[INFO] [1712690294.184369]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.184915]: Instances: []\n", - "[INFO] [1712690294.185219]: Direct Instances: []\n", - "[INFO] [1712690294.185483]: Inverse Restrictions: []\n", - "[INFO] [1712690294.185732]: -------------------\n", - "[INFO] [1712690294.185997]: SOMA.RevoluteJoint \n", - "[INFO] [1712690294.186249]: Super classes: [SOMA.HingeJoint, SOMA.HingeJoint, SOMA.hasJointLimit.exactly(1, SOMA.JointLimit), SOMA.hasJointLimit.exactly(1, SOMA.JointLimit)]\n", - "[INFO] [1712690294.186514]: Ancestors: {DUL.Entity, SOMA.RevoluteJoint, SOMA.HingeJoint, SOMA.MovableJoint, DUL.PhysicalBody, SOMA.Joint, owl.Thing, DUL.Object, DUL.PhysicalObject}\n", - "[INFO] [1712690294.186774]: Subclasses: []\n", - "[INFO] [1712690294.187079]: Properties: [SOMA.hasJointLimit, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.187574]: Instances: []\n", - "[INFO] [1712690294.187836]: Direct Instances: []\n", - "[INFO] [1712690294.188099]: Inverse Restrictions: []\n", - "[INFO] [1712690294.188340]: -------------------\n", - "[INFO] [1712690294.188575]: SOMA.Surface \n", - "[INFO] [1712690294.188806]: Super classes: [DUL.PhysicalPlace, DUL.PhysicalPlace]\n", - "[INFO] [1712690294.189049]: Ancestors: {DUL.Entity, SOMA.Surface, DUL.PhysicalPlace, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1712690294.189301]: Subclasses: [SOMA.RoomSurface, SOMA.RoomSurface]\n", - "[INFO] [1712690294.189604]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.190106]: Instances: []\n", - "[INFO] [1712690294.190370]: Direct Instances: []\n", - "[INFO] [1712690294.190640]: Inverse Restrictions: []\n", - "[INFO] [1712690294.190880]: -------------------\n", - "[INFO] [1712690294.191113]: SOMA.Rubbing \n", - "[INFO] [1712690294.191343]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712690294.191584]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing, SOMA.Rubbing}\n", - "[INFO] [1712690294.191843]: Subclasses: []\n", - "[INFO] [1712690294.192136]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.192622]: Instances: []\n", - "[INFO] [1712690294.192904]: Direct Instances: []\n", - "[INFO] [1712690294.193174]: Inverse Restrictions: []\n", - "[INFO] [1712690294.193412]: -------------------\n", - "[INFO] [1712690294.193645]: SOMA.Scene \n", - "[INFO] [1712690294.193883]: Super classes: [DUL.Situation, DUL.Situation, DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory), DUL.includesEvent.some(SOMA.State), DUL.satisfies.some(SOMA.ImageSchemaTheory)]\n", - "[INFO] [1712690294.194130]: Ancestors: {DUL.Entity, owl.Thing, DUL.Situation, SOMA.Scene}\n", - "[INFO] [1712690294.194380]: Subclasses: []\n", - "[INFO] [1712690294.194672]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.satisfies, DUL.includesEvent]\n", - "[INFO] [1712690294.195148]: Instances: []\n", - "[INFO] [1712690294.195424]: Direct Instances: []\n", - "[INFO] [1712690294.195721]: Inverse Restrictions: [SOMA.StateTransition, SOMA.StateTransition]\n", - "[INFO] [1712690294.195960]: -------------------\n", - "[INFO] [1712690294.196191]: SOMA.SelectedObject \n", - "[INFO] [1712690294.196425]: Super classes: [DUL.Role, DUL.Role]\n", - "[INFO] [1712690294.196675]: Ancestors: {DUL.Entity, DUL.Concept, SOMA.SelectedObject, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Role}\n", - "[INFO] [1712690294.196925]: Subclasses: []\n", - "[INFO] [1712690294.197215]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.197699]: Instances: []\n", - "[INFO] [1712690294.197973]: Direct Instances: []\n", - "[INFO] [1712690294.198290]: Inverse Restrictions: []\n", - "[INFO] [1712690294.198524]: -------------------\n", - "[INFO] [1712690294.198755]: SOMA.Selecting \n", - "[INFO] [1712690294.198983]: Super classes: [SOMA.Deciding, SOMA.Deciding]\n", - "[INFO] [1712690294.199231]: Ancestors: {SOMA.Deciding, SOMA.Selecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690294.199474]: Subclasses: []\n", - "[INFO] [1712690294.199762]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.200269]: Instances: []\n", - "[INFO] [1712690294.200553]: Direct Instances: []\n", - "[INFO] [1712690294.200821]: Inverse Restrictions: []\n", - "[INFO] [1712690294.201060]: -------------------\n", - "[INFO] [1712690294.201310]: SOMA.SelectingItem \n", - "[INFO] [1712690294.201569]: Super classes: [SOMA.GetTaskParameter, SOMA.GetTaskParameter, SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject)), SOMA.isTaskOfOutputRole.some(SOMA.SelectedObject & DUL.classifies.only(DUL.PhysicalObject))]\n", - "[INFO] [1712690294.201825]: Ancestors: {SOMA.SelectingItem, SOMA.GetTaskParameter, SOMA.Deciding, SOMA.Planning, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690294.202074]: Subclasses: []\n", - "[INFO] [1712690294.202366]: Properties: [SOMA.isTaskOfOutputRole, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.202845]: Instances: []\n", - "[INFO] [1712690294.203128]: Direct Instances: []\n", - "[INFO] [1712690294.203382]: Inverse Restrictions: []\n", - "[INFO] [1712690294.203618]: -------------------\n", - "[INFO] [1712690294.203850]: SOMA.SelfReflection \n", - "[INFO] [1712690294.204083]: Super classes: [SOMA.MetacognitiveControlling, SOMA.MetacognitiveControlling]\n", - "[INFO] [1712690294.204332]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.MentalTask, DUL.Task, DUL.EventType, SOMA.MetacognitiveControlling, DUL.Object, owl.Thing, SOMA.SelfReflection}\n", - "[INFO] [1712690294.204583]: Subclasses: []\n", - "[INFO] [1712690294.204934]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690294.205607]: Instances: []\n", - "[INFO] [1712690294.205924]: Direct Instances: []\n", - "[INFO] [1712690294.206192]: Inverse Restrictions: []\n", - "[INFO] [1712690294.206436]: -------------------\n", - "[INFO] [1712690294.206785]: SOMA.Serving \n", - "[INFO] [1712690294.207071]: Super classes: [SOMA.Delivering, SOMA.Delivering, DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject))), DUL.classifies.only(DUL.Action & (DUL.hasParticipant.some(DUL.PhysicalAgent) | DUL.hasParticipant.some(DUL.PhysicalObject)))]\n", - "[INFO] [1712690294.207352]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, SOMA.Delivering, DUL.EventType, DUL.Object, SOMA.PhysicalTask, SOMA.Serving, owl.Thing}\n", - "[INFO] [1712690294.207614]: Subclasses: []\n", - "[INFO] [1712690294.207915]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.208401]: Instances: []\n", - "[INFO] [1712690294.208676]: Direct Instances: []\n", - "[INFO] [1712690294.209025]: Inverse Restrictions: []\n", - "[INFO] [1712690294.209437]: -------------------\n", - "[INFO] [1712690294.209825]: SOMA.SettingGripper \n", - "[INFO] [1712690294.210202]: Super classes: [SOMA.AssumingPose, SOMA.AssumingPose]\n", - "[INFO] [1712690294.210596]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.AssumingPose, SOMA.SettingGripper, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing}\n", - "[INFO] [1712690294.210992]: Subclasses: []\n", - "[INFO] [1712690294.211331]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.211848]: Instances: []\n", - "[INFO] [1712690294.212126]: Direct Instances: []\n", - "[INFO] [1712690294.212380]: Inverse Restrictions: []\n", - "[INFO] [1712690294.212616]: -------------------\n", - "[INFO] [1712690294.212859]: SOMA.6DPose \n", - "[INFO] [1712690294.213108]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712690294.213354]: Ancestors: {DUL.Entity, SOMA.6DPose, DUL.SpaceRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690294.213629]: Subclasses: []\n", - "[INFO] [1712690294.213932]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", - "[INFO] [1712690294.214417]: Instances: []\n", - "[INFO] [1712690294.214698]: Direct Instances: []\n", - "[INFO] [1712690294.215003]: Inverse Restrictions: [SOMA.ShapeRegion, SOMA.ShapeRegion]\n", - "[INFO] [1712690294.215248]: -------------------\n", - "[INFO] [1712690294.215479]: SOMA.Sharpness \n", - "[INFO] [1712690294.215707]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690294.215941]: Ancestors: {DUL.Entity, SOMA.Sharpness, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690294.216193]: Subclasses: []\n", - "[INFO] [1712690294.216486]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.216976]: Instances: []\n", - "[INFO] [1712690294.217260]: Direct Instances: []\n", - "[INFO] [1712690294.217515]: Inverse Restrictions: []\n", - "[INFO] [1712690294.217757]: -------------------\n", - "[INFO] [1712690294.217988]: SOMA.Simulating \n", - "[INFO] [1712690294.218217]: Super classes: [SOMA.Prospecting, SOMA.Prospecting]\n", - "[INFO] [1712690294.218449]: Ancestors: {SOMA.Simulating, SOMA.Prospecting, owl.Thing, SOMA.DerivingInformation, SOMA.InformationAcquisition}\n", - "[INFO] [1712690294.218697]: Subclasses: []\n", - "[INFO] [1712690294.218986]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.219467]: Instances: []\n", - "[INFO] [1712690294.219734]: Direct Instances: []\n", - "[INFO] [1712690294.219985]: Inverse Restrictions: []\n", - "[INFO] [1712690294.220216]: -------------------\n", - "[INFO] [1712690294.220443]: SOMA.Simulation_Reasoner \n", - "[INFO] [1712690294.220666]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712690294.220905]: Ancestors: {SOMA.Reasoner, DUL.Entity, SOMA.Simulation_Reasoner, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690294.221155]: Subclasses: []\n", - "[INFO] [1712690294.221444]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.221924]: Instances: []\n", - "[INFO] [1712690294.222195]: Direct Instances: []\n", - "[INFO] [1712690294.222450]: Inverse Restrictions: []\n", - "[INFO] [1712690294.222684]: -------------------\n", - "[INFO] [1712690294.222913]: SOMA.Size \n", - "[INFO] [1712690294.223143]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic]\n", - "[INFO] [1712690294.223388]: Ancestors: {DUL.Entity, SOMA.PhysicalQuality, SOMA.Size, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690294.223629]: Subclasses: []\n", - "[INFO] [1712690294.223912]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.224390]: Instances: []\n", - "[INFO] [1712690294.224653]: Direct Instances: []\n", - "[INFO] [1712690294.224906]: Inverse Restrictions: []\n", - "[INFO] [1712690294.225141]: -------------------\n", - "[INFO] [1712690294.225368]: SOMA.Slicing \n", - "[INFO] [1712690294.225592]: Super classes: [SOMA.Cutting, SOMA.Cutting]\n", - "[INFO] [1712690294.225834]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Cutting, SOMA.Slicing}\n", - "[INFO] [1712690294.226079]: Subclasses: []\n", - "[INFO] [1712690294.226365]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.226863]: Instances: []\n", - "[INFO] [1712690294.227147]: Direct Instances: []\n", - "[INFO] [1712690294.227395]: Inverse Restrictions: []\n", - "[INFO] [1712690294.227629]: -------------------\n", - "[INFO] [1712690294.227860]: SOMA.Sluggishness \n", - "[INFO] [1712690294.228100]: Super classes: [SOMA.Amateurish]\n", - "[INFO] [1712690294.228346]: Ancestors: {DUL.Entity, SOMA.Amateurish, SOMA.DexterityDiagnosis, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.Sluggishness}\n", - "[INFO] [1712690294.228585]: Subclasses: []\n", - "[INFO] [1712690294.228873]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.229368]: Instances: []\n", - "[INFO] [1712690294.229639]: Direct Instances: []\n", - "[INFO] [1712690294.229886]: Inverse Restrictions: []\n", - "[INFO] [1712690294.230116]: -------------------\n", - "[INFO] [1712690294.230348]: SOMA.SocialState \n", - "[INFO] [1712690294.230581]: Super classes: [SOMA.State, SOMA.State, DUL.hasParticipant.some(DUL.Agent), DUL.hasParticipant.some(DUL.Agent)]\n", - "[INFO] [1712690294.230829]: Ancestors: {DUL.Entity, DUL.Event, SOMA.State, owl.Thing, SOMA.SocialState}\n", - "[INFO] [1712690294.231072]: Subclasses: []\n", - "[INFO] [1712690294.231361]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasParticipant, rdf-schema.label]\n", - "[INFO] [1712690294.231836]: Instances: []\n", - "[INFO] [1712690294.232111]: Direct Instances: []\n", - "[INFO] [1712690294.232372]: Inverse Restrictions: []\n", - "[INFO] [1712690294.232628]: -------------------\n", - "[INFO] [1712690294.232935]: SOMA.Software_Configuration \n", - "[INFO] [1712690294.233378]: Super classes: [DUL.Configuration, DUL.Configuration, DUL.isDescribedBy.exactly(1, SOMA.Software), DUL.isDescribedBy.exactly(1, SOMA.Software)]\n", - "[INFO] [1712690294.233783]: Ancestors: {DUL.Configuration, DUL.Entity, DUL.Collection, DUL.SocialObject, SOMA.Software_Configuration, owl.Thing, DUL.Object}\n", - "[INFO] [1712690294.234081]: Subclasses: []\n", - "[INFO] [1712690294.234399]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label, DUL.isDescribedBy]\n", - "[INFO] [1712690294.234894]: Instances: []\n", - "[INFO] [1712690294.235157]: Direct Instances: []\n", - "[INFO] [1712690294.235508]: Inverse Restrictions: [SOMA.Software, SOMA.Software, SOMA.Software, SOMA.Software]\n", - "[INFO] [1712690294.235768]: -------------------\n", - "[INFO] [1712690294.236016]: SOMA.SoftwareLibrary \n", - "[INFO] [1712690294.236265]: Super classes: [SOMA.Software, SOMA.Software]\n", - "[INFO] [1712690294.236524]: Ancestors: {SOMA.SoftwareLibrary, DUL.Entity, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.Software, DUL.Description, DUL.Design}\n", - "[INFO] [1712690294.236774]: Subclasses: []\n", - "[INFO] [1712690294.237080]: Properties: [rdf-schema.isDefinedBy, rdf-schema.label]\n", - "[INFO] [1712690294.237580]: Instances: []\n", - "[INFO] [1712690294.237845]: Direct Instances: []\n", - "[INFO] [1712690294.238092]: Inverse Restrictions: []\n", - "[INFO] [1712690294.238322]: -------------------\n", - "[INFO] [1712690294.238550]: SOMA.SourceMaterialRole \n", - "[INFO] [1712690294.238778]: Super classes: [SOMA.ResourceRole, SOMA.ResourceRole]\n", - "[INFO] [1712690294.239029]: Ancestors: {DUL.Entity, SOMA.ResourceRole, DUL.Concept, SOMA.SourceMaterialRole, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690294.239273]: Subclasses: []\n", - "[INFO] [1712690294.239561]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.240056]: Instances: []\n", - "[INFO] [1712690294.240318]: Direct Instances: []\n", - "[INFO] [1712690294.240568]: Inverse Restrictions: []\n", - "[INFO] [1712690294.240813]: -------------------\n", - "[INFO] [1712690294.241060]: SOMA.SphereShape \n", - "[INFO] [1712690294.241303]: Super classes: [SOMA.ShapeRegion, SOMA.ShapeRegion, SOMA.hasRadius.exactly(1, ), SOMA.hasRadius.exactly(1, )]\n", - "[INFO] [1712690294.241544]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.ShapeRegion, SOMA.SphereShape}\n", - "[INFO] [1712690294.241786]: Subclasses: []\n", - "[INFO] [1712690294.242078]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasRadius, rdf-schema.label]\n", - "[INFO] [1712690294.242582]: Instances: []\n", - "[INFO] [1712690294.242852]: Direct Instances: []\n", - "[INFO] [1712690294.243106]: Inverse Restrictions: []\n", - "[INFO] [1712690294.243341]: -------------------\n", - "[INFO] [1712690294.243578]: SOMA.Standing \n", - "[INFO] [1712690294.243815]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712690294.244073]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.Standing, SOMA.PosturalMoving}\n", - "[INFO] [1712690294.244323]: Subclasses: []\n", - "[INFO] [1712690294.244614]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.245120]: Instances: []\n", - "[INFO] [1712690294.245407]: Direct Instances: []\n", - "[INFO] [1712690294.245664]: Inverse Restrictions: []\n", - "[INFO] [1712690294.245899]: -------------------\n", - "[INFO] [1712690294.246131]: SOMA.StaticFrictionAttribute \n", - "[INFO] [1712690294.246363]: Super classes: [SOMA.FrictionAttribute, SOMA.FrictionAttribute]\n", - "[INFO] [1712690294.246614]: Ancestors: {DUL.Entity, DUL.PhysicalAttribute, SOMA.StaticFrictionAttribute, DUL.Region, owl.Thing, DUL.Abstract, SOMA.FrictionAttribute}\n", - "[INFO] [1712690294.246859]: Subclasses: []\n", - "[INFO] [1712690294.247149]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.247664]: Instances: []\n", - "[INFO] [1712690294.247946]: Direct Instances: []\n", - "[INFO] [1712690294.248206]: Inverse Restrictions: []\n", - "[INFO] [1712690294.248444]: -------------------\n", - "[INFO] [1712690294.248677]: SOMA.Status \n", - "[INFO] [1712690294.248916]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712690294.249164]: Ancestors: {DUL.Entity, SOMA.Status, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, DUL.Parameter}\n", - "[INFO] [1712690294.249422]: Subclasses: []\n", - "[INFO] [1712690294.249713]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.250213]: Instances: []\n", - "[INFO] [1712690294.250497]: Direct Instances: []\n", - "[INFO] [1712690294.250789]: Inverse Restrictions: []\n", - "[INFO] [1712690294.251028]: -------------------\n", - "[INFO] [1712690294.251259]: SOMA.StatusFailure \n", - "[INFO] [1712690294.251514]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690294.251765]: Ancestors: {DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract, SOMA.StatusFailure}\n", - "[INFO] [1712690294.252011]: Subclasses: []\n", - "[INFO] [1712690294.252296]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.252820]: Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712690294.253103]: Direct Instances: [SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask, SOMA.FailWFNoContinuation, SOMA.FailWFNondeterministicContinuation, SOMA.FailWFUninterpretableTask]\n", - "[INFO] [1712690294.253367]: Inverse Restrictions: []\n", - "[INFO] [1712690294.253602]: -------------------\n", - "[INFO] [1712690294.253831]: SOMA.StimulusRole \n", - "[INFO] [1712690294.254057]: Super classes: [SOMA.CausativeRole, SOMA.CausativeRole]\n", - "[INFO] [1712690294.254302]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.CausativeRole, SOMA.StimulusRole, DUL.Role}\n", - "[INFO] [1712690294.254551]: Subclasses: []\n", - "[INFO] [1712690294.254840]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.255314]: Instances: []\n", - "[INFO] [1712690294.255572]: Direct Instances: []\n", - "[INFO] [1712690294.255828]: Inverse Restrictions: []\n", - "[INFO] [1712690294.256066]: -------------------\n", - "[INFO] [1712690294.256305]: SOMA.Stirring \n", - "[INFO] [1712690294.256543]: Super classes: [SOMA.Mixing, SOMA.Mixing, SOMA.isTaskAffordedBy.some(SOMA.Composing), SOMA.isTaskAffordedBy.some(SOMA.Composing)]\n", - "[INFO] [1712690294.256787]: Ancestors: {DUL.Entity, SOMA.Constructing, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.Stirring, SOMA.PhysicalTask, SOMA.Mixing, owl.Thing}\n", - "[INFO] [1712690294.257046]: Subclasses: []\n", - "[INFO] [1712690294.257340]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.isTaskAffordedBy]\n", - "[INFO] [1712690294.257815]: Instances: []\n", - "[INFO] [1712690294.258066]: Direct Instances: []\n", - "[INFO] [1712690294.258316]: Inverse Restrictions: []\n", - "[INFO] [1712690294.258548]: -------------------\n", - "[INFO] [1712690294.258780]: SOMA.Storage \n", - "[INFO] [1712690294.259010]: Super classes: [SOMA.Enclosing, SOMA.Enclosing, SOMA.affordsTrigger.only(SOMA.StoredObject), SOMA.affordsTrigger.only(SOMA.StoredObject)]\n", - "[INFO] [1712690294.259248]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Extrinsic, SOMA.Enclosing, SOMA.Containment, SOMA.PhysicalQuality, SOMA.Storage, DUL.Quality, owl.Thing}\n", - "[INFO] [1712690294.259499]: Subclasses: []\n", - "[INFO] [1712690294.259794]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.260278]: Instances: []\n", - "[INFO] [1712690294.260527]: Direct Instances: []\n", - "[INFO] [1712690294.260775]: Inverse Restrictions: []\n", - "[INFO] [1712690294.261025]: -------------------\n", - "[INFO] [1712690294.261267]: SOMA.StructuralDesign \n", - "[INFO] [1712690294.261499]: Super classes: [DUL.Design, DUL.Design]\n", - "[INFO] [1712690294.261735]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.StructuralDesign, owl.Thing, DUL.Object, DUL.Description, DUL.Design}\n", - "[INFO] [1712690294.261990]: Subclasses: []\n", - "[INFO] [1712690294.262286]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.262774]: Instances: []\n", - "[INFO] [1712690294.263058]: Direct Instances: []\n", - "[INFO] [1712690294.263320]: Inverse Restrictions: []\n", - "[INFO] [1712690294.263555]: -------------------\n", - "[INFO] [1712690294.263785]: SOMA.TaskInvocation \n", - "[INFO] [1712690294.264021]: Super classes: [DUL.Workflow, DUL.Workflow, SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task), SOMA.hasBinding.only(SOMA.FactualBinding), DUL.definesTask.exactly(1, DUL.Task)]\n", - "[INFO] [1712690294.264262]: Ancestors: {DUL.Entity, DUL.Workflow, DUL.SocialObject, SOMA.TaskInvocation, DUL.Plan, owl.Thing, DUL.Object, DUL.Description}\n", - "[INFO] [1712690294.264516]: Subclasses: []\n", - "[INFO] [1712690294.264820]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.definesTask, rdf-schema.label]\n", - "[INFO] [1712690294.265314]: Instances: []\n", - "[INFO] [1712690294.265591]: Direct Instances: []\n", - "[INFO] [1712690294.265914]: Inverse Restrictions: [SOMA.Succedence, SOMA.Succedence, SOMA.Succedence, SOMA.Succedence]\n", - "[INFO] [1712690294.266156]: -------------------\n", - "[INFO] [1712690294.266391]: SOMA.SuccessDiagnosis \n", - "[INFO] [1712690294.266623]: Super classes: [SOMA.BehavioralDiagnosis]\n", - "[INFO] [1712690294.266907]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690294.267171]: Subclasses: [SOMA.Successfulness, SOMA.Unsuccessfulness]\n", - "[INFO] [1712690294.267465]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.267958]: Instances: []\n", - "[INFO] [1712690294.268224]: Direct Instances: []\n", - "[INFO] [1712690294.268488]: Inverse Restrictions: []\n", - "[INFO] [1712690294.268724]: -------------------\n", - "[INFO] [1712690294.268969]: SOMA.Successfulness \n", - "[INFO] [1712690294.269204]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712690294.269446]: Ancestors: {DUL.Entity, SOMA.Successfulness, DUL.SocialObject, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690294.269692]: Subclasses: []\n", - "[INFO] [1712690294.269998]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.270482]: Instances: []\n", - "[INFO] [1712690294.270745]: Direct Instances: []\n", - "[INFO] [1712690294.271008]: Inverse Restrictions: []\n", - "[INFO] [1712690294.271251]: -------------------\n", - "[INFO] [1712690294.271484]: SOMA.SupportState \n", - "[INFO] [1712690294.271732]: Super classes: [SOMA.FunctionalControl, SOMA.FunctionalControl, SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition))), SOMA.isStateTypeOf.some(SOMA.Supporter & DUL.classifies.only(SOMA.hasDisposition.some(SOMA.Deposition)))]\n", - "[INFO] [1712690294.271979]: Ancestors: {DUL.Entity, SOMA.FunctionalControl, DUL.Concept, DUL.SocialObject, SOMA.StateType, DUL.EventType, DUL.Object, owl.Thing, SOMA.SupportState}\n", - "[INFO] [1712690294.272231]: Subclasses: []\n", - "[INFO] [1712690294.272526]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.isStateTypeOf, rdf-schema.comment]\n", - "[INFO] [1712690294.273015]: Instances: []\n", - "[INFO] [1712690294.273287]: Direct Instances: []\n", - "[INFO] [1712690294.273545]: Inverse Restrictions: []\n", - "[INFO] [1712690294.273782]: -------------------\n", - "[INFO] [1712690294.274017]: SOMA.Supporter \n", - "[INFO] [1712690294.274246]: Super classes: [SOMA.Restrictor, SOMA.Restrictor]\n", - "[INFO] [1712690294.274493]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, SOMA.Supporter, DUL.SocialObject, SOMA.Restrictor, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690294.274748]: Subclasses: []\n", - "[INFO] [1712690294.275042]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.275525]: Instances: []\n", - "[INFO] [1712690294.275779]: Direct Instances: []\n", - "[INFO] [1712690294.276083]: Inverse Restrictions: []\n", - "[INFO] [1712690294.276332]: -------------------\n", - "[INFO] [1712690294.276571]: SOMA.SupportTheory \n", - "[INFO] [1712690294.276807]: Super classes: [SOMA.ControlTheory, SOMA.ControlTheory]\n", - "[INFO] [1712690294.277054]: Ancestors: {DUL.Entity, DUL.Description, SOMA.ImageSchemaTheory, DUL.SocialObject, SOMA.SchematicTheory, DUL.Theory, SOMA.ControlTheory, DUL.Object, owl.Thing, SOMA.SupportTheory, SOMA.FunctionalSpatialSchemaTheory}\n", - "[INFO] [1712690294.277292]: Subclasses: []\n", - "[INFO] [1712690294.277582]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.278075]: Instances: []\n", - "[INFO] [1712690294.278330]: Direct Instances: []\n", - "[INFO] [1712690294.278571]: Inverse Restrictions: []\n", - "[INFO] [1712690294.278798]: -------------------\n", - "[INFO] [1712690294.279035]: SOMA.SupportedObject \n", - "[INFO] [1712690294.279273]: Super classes: [SOMA.ConnectedObject, SOMA.ConnectedObject]\n", - "[INFO] [1712690294.279519]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Patient, SOMA.SupportedObject, owl.Thing, DUL.Object, SOMA.ConnectedObject, SOMA.EventAdjacentRole, DUL.Role}\n", - "[INFO] [1712690294.279758]: Subclasses: []\n", - "[INFO] [1712690294.280059]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.280565]: Instances: []\n", - "[INFO] [1712690294.280835]: Direct Instances: []\n", - "[INFO] [1712690294.281093]: Inverse Restrictions: []\n", - "[INFO] [1712690294.281343]: -------------------\n", - "[INFO] [1712690294.281581]: SOMA.SymbolicReasoner \n", - "[INFO] [1712690294.281818]: Super classes: [SOMA.Reasoner, SOMA.Reasoner]\n", - "[INFO] [1712690294.282059]: Ancestors: {SOMA.Reasoner, DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.SymbolicReasoner, owl.Thing, DUL.Object, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690294.282321]: Subclasses: []\n", - "[INFO] [1712690294.282617]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.283267]: Instances: []\n", - "[INFO] [1712690294.283675]: Direct Instances: []\n", - "[INFO] [1712690294.284190]: Inverse Restrictions: []\n", - "[INFO] [1712690294.284654]: -------------------\n", - "[INFO] [1712690294.285054]: SOMA.Tapping \n", - "[INFO] [1712690294.285546]: Super classes: [SOMA.DirectedMotion, SOMA.DirectedMotion]\n", - "[INFO] [1712690294.285965]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Tapping, SOMA.Motion, DUL.EventType, DUL.Object, SOMA.DirectedMotion, owl.Thing}\n", - "[INFO] [1712690294.286354]: Subclasses: []\n", - "[INFO] [1712690294.286780]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.287509]: Instances: []\n", - "[INFO] [1712690294.287838]: Direct Instances: []\n", - "[INFO] [1712690294.288120]: Inverse Restrictions: []\n", - "[INFO] [1712690294.288378]: -------------------\n", - "[INFO] [1712690294.288624]: SOMA.Taxis \n", - "[INFO] [1712690294.288870]: Super classes: [SOMA.BodyMovement, SOMA.BodyMovement]\n", - "[INFO] [1712690294.289134]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, SOMA.Taxis, DUL.SocialObject, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing}\n", - "[INFO] [1712690294.289389]: Subclasses: []\n", - "[INFO] [1712690294.289681]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.290169]: Instances: []\n", - "[INFO] [1712690294.290428]: Direct Instances: []\n", - "[INFO] [1712690294.290672]: Inverse Restrictions: []\n", - "[INFO] [1712690294.290925]: -------------------\n", - "[INFO] [1712690294.291168]: SOMA.TechnicalDiagnosis \n", - "[INFO] [1712690294.291409]: Super classes: [SOMA.FunctionalDiagnosis, DUL.hasConstituent.some(DUL.DesignedArtifact)]\n", - "[INFO] [1712690294.291649]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, DUL.SocialObject, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690294.291898]: Subclasses: [SOMA.SoftwareDiagnosis, SOMA.HardwareDiagnosis]\n", - "[INFO] [1712690294.292199]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasConstituent, rdf-schema.label]\n", - "[INFO] [1712690294.292701]: Instances: []\n", - "[INFO] [1712690294.292958]: Direct Instances: []\n", - "[INFO] [1712690294.293202]: Inverse Restrictions: []\n", - "[INFO] [1712690294.293442]: -------------------\n", - "[INFO] [1712690294.293681]: SOMA.Temperature \n", - "[INFO] [1712690294.293926]: Super classes: [SOMA.Intrinsic, SOMA.Intrinsic, DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion), DUL.hasRegion.some(SOMA.TemperatureRegion), DUL.hasRegion.only(SOMA.TemperatureRegion)]\n", - "[INFO] [1712690294.294166]: Ancestors: {DUL.Entity, SOMA.Temperature, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Intrinsic}\n", - "[INFO] [1712690294.294406]: Subclasses: []\n", - "[INFO] [1712690294.294705]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, DUL.hasRegion]\n", - "[INFO] [1712690294.295194]: Instances: []\n", - "[INFO] [1712690294.295451]: Direct Instances: []\n", - "[INFO] [1712690294.295737]: Inverse Restrictions: []\n", - "[INFO] [1712690294.295987]: -------------------\n", - "[INFO] [1712690294.296231]: SOMA.TemperatureRegion \n", - "[INFO] [1712690294.296464]: Super classes: [DUL.Region, DUL.Region]\n", - "[INFO] [1712690294.296707]: Ancestors: {SOMA.TemperatureRegion, DUL.Entity, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690294.296951]: Subclasses: []\n", - "[INFO] [1712690294.297259]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.297774]: Instances: []\n", - "[INFO] [1712690294.298043]: Direct Instances: []\n", - "[INFO] [1712690294.298380]: Inverse Restrictions: [SOMA.Temperature, SOMA.Temperature, SOMA.Temperature, SOMA.Temperature]\n", - "[INFO] [1712690294.298658]: -------------------\n", - "[INFO] [1712690294.298925]: SOMA.Tempering \n", - "[INFO] [1712690294.299204]: Super classes: [SOMA.Variability, SOMA.Variability, SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature)), SOMA.affordsSetpoint.only(DUL.classifies.only(SOMA.Temperature))]\n", - "[INFO] [1712690294.299488]: Ancestors: {DUL.Entity, SOMA.Disposition, SOMA.Variability, SOMA.Extrinsic, SOMA.PhysicalQuality, DUL.Quality, owl.Thing, SOMA.Tempering}\n", - "[INFO] [1712690294.299773]: Subclasses: [SOMA.TemperingByHeating, SOMA.TemperingByCooling]\n", - "[INFO] [1712690294.300124]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.300781]: Instances: []\n", - "[INFO] [1712690294.301109]: Direct Instances: []\n", - "[INFO] [1712690294.301426]: Inverse Restrictions: []\n", - "[INFO] [1712690294.301717]: -------------------\n", - "[INFO] [1712690294.302009]: SOMA.ThinkAloud \n", - "[INFO] [1712690294.302290]: Super classes: [SOMA.CommunicationReport, SOMA.CommunicationReport]\n", - "[INFO] [1712690294.302592]: Ancestors: {DUL.Entity, SOMA.CommunicationReport, SOMA.CommunicationTask, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, owl.Thing, SOMA.ThinkAloud}\n", - "[INFO] [1712690294.302876]: Subclasses: []\n", - "[INFO] [1712690294.303204]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.303742]: Instances: []\n", - "[INFO] [1712690294.304036]: Direct Instances: []\n", - "[INFO] [1712690294.304307]: Inverse Restrictions: []\n", - "[INFO] [1712690294.304560]: -------------------\n", - "[INFO] [1712690294.304809]: SOMA.ThinkAloudActionTopic \n", - "[INFO] [1712690294.305058]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690294.305313]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudActionTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.305567]: Subclasses: []\n", - "[INFO] [1712690294.305857]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.306344]: Instances: []\n", - "[INFO] [1712690294.306599]: Direct Instances: []\n", - "[INFO] [1712690294.306839]: Inverse Restrictions: []\n", - "[INFO] [1712690294.307085]: -------------------\n", - "[INFO] [1712690294.307328]: SOMA.ThinkAloudGeneralKnowledgeTopic \n", - "[INFO] [1712690294.307566]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712690294.307814]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, SOMA.ThinkAloudGeneralKnowledgeTopic, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.308050]: Subclasses: []\n", - "[INFO] [1712690294.308331]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.308855]: Instances: []\n", - "[INFO] [1712690294.309166]: Direct Instances: []\n", - "[INFO] [1712690294.309450]: Inverse Restrictions: []\n", - "[INFO] [1712690294.309713]: -------------------\n", - "[INFO] [1712690294.309967]: SOMA.ThinkAloudKnowledgeTopic \n", - "[INFO] [1712690294.310356]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690294.310684]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.310997]: Subclasses: [SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, SOMA.ThinkAloudGeneralKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic]\n", - "[INFO] [1712690294.311335]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.311850]: Instances: []\n", - "[INFO] [1712690294.312127]: Direct Instances: []\n", - "[INFO] [1712690294.312391]: Inverse Restrictions: []\n", - "[INFO] [1712690294.312639]: -------------------\n", - "[INFO] [1712690294.312903]: SOMA.ThinkAloudObstructionTopic \n", - "[INFO] [1712690294.313247]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690294.313550]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ThinkAloudObstructionTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.313833]: Subclasses: []\n", - "[INFO] [1712690294.314180]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.314761]: Instances: []\n", - "[INFO] [1712690294.315101]: Direct Instances: []\n", - "[INFO] [1712690294.315430]: Inverse Restrictions: []\n", - "[INFO] [1712690294.315742]: -------------------\n", - "[INFO] [1712690294.316064]: SOMA.ThinkAloudOpinionTopic \n", - "[INFO] [1712690294.316380]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690294.316705]: Ancestors: {SOMA.ThinkAloudOpinionTopic, DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.317037]: Subclasses: []\n", - "[INFO] [1712690294.317440]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.318142]: Instances: []\n", - "[INFO] [1712690294.318646]: Direct Instances: []\n", - "[INFO] [1712690294.319036]: Inverse Restrictions: []\n", - "[INFO] [1712690294.319377]: -------------------\n", - "[INFO] [1712690294.319708]: SOMA.ThinkAloudPerceptionTopic \n", - "[INFO] [1712690294.320036]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690294.320377]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudPerceptionTopic, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.320698]: Subclasses: []\n", - "[INFO] [1712690294.321076]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.321674]: Instances: []\n", - "[INFO] [1712690294.322006]: Direct Instances: []\n", - "[INFO] [1712690294.322305]: Inverse Restrictions: []\n", - "[INFO] [1712690294.322578]: -------------------\n", - "[INFO] [1712690294.322854]: SOMA.ThinkAloudPlanTopic \n", - "[INFO] [1712690294.323114]: Super classes: [SOMA.ThinkAloudTopic, SOMA.ThinkAloudTopic]\n", - "[INFO] [1712690294.323383]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudPlanTopic, DUL.Object, owl.Thing, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.323654]: Subclasses: []\n", - "[INFO] [1712690294.323961]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.324459]: Instances: []\n", - "[INFO] [1712690294.324726]: Direct Instances: []\n", - "[INFO] [1712690294.324991]: Inverse Restrictions: []\n", - "[INFO] [1712690294.325234]: -------------------\n", - "[INFO] [1712690294.325470]: SOMA.ThinkAloudSceneKnowledgeTopic \n", - "[INFO] [1712690294.325706]: Super classes: [SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudKnowledgeTopic]\n", - "[INFO] [1712690294.325952]: Ancestors: {DUL.Entity, SOMA.CommunicationTopic, SOMA.ResourceRole, DUL.Concept, DUL.SocialObject, SOMA.ThinkAloudKnowledgeTopic, SOMA.ThinkAloudSceneKnowledgeTopic, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.ThinkAloudTopic, DUL.Role}\n", - "[INFO] [1712690294.326211]: Subclasses: []\n", - "[INFO] [1712690294.326509]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.327004]: Instances: []\n", - "[INFO] [1712690294.327260]: Direct Instances: []\n", - "[INFO] [1712690294.327508]: Inverse Restrictions: []\n", - "[INFO] [1712690294.327757]: -------------------\n", - "[INFO] [1712690294.328000]: SOMA.Threshold \n", - "[INFO] [1712690294.328232]: Super classes: [DUL.Parameter]\n", - "[INFO] [1712690294.328474]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Threshold, DUL.Concept, owl.Thing, DUL.Object, DUL.Parameter}\n", - "[INFO] [1712690294.328710]: Subclasses: []\n", - "[INFO] [1712690294.329003]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.329504]: Instances: []\n", - "[INFO] [1712690294.329761]: Direct Instances: []\n", - "[INFO] [1712690294.330006]: Inverse Restrictions: []\n", - "[INFO] [1712690294.330242]: -------------------\n", - "[INFO] [1712690294.330476]: SOMA.Throwing \n", - "[INFO] [1712690294.330741]: Super classes: [SOMA.Actuating, SOMA.Manipulating, SOMA.Actuating, SOMA.Manipulating]\n", - "[INFO] [1712690294.331000]: Ancestors: {DUL.Entity, SOMA.Throwing, DUL.Concept, DUL.SocialObject, DUL.Task, SOMA.Actuating, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.Manipulating}\n", - "[INFO] [1712690294.331244]: Subclasses: []\n", - "[INFO] [1712690294.331538]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.332039]: Instances: []\n", - "[INFO] [1712690294.332348]: Direct Instances: []\n", - "[INFO] [1712690294.332614]: Inverse Restrictions: []\n", - "[INFO] [1712690294.332950]: -------------------\n", - "[INFO] [1712690294.333241]: SOMA.TimeRole \n", - "[INFO] [1712690294.333518]: Super classes: [SOMA.SpatioTemporalRole, SOMA.SpatioTemporalRole]\n", - "[INFO] [1712690294.333794]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, owl.Thing, DUL.Object, SOMA.TimeRole, SOMA.EventAdjacentRole, SOMA.SpatioTemporalRole, DUL.Role}\n", - "[INFO] [1712690294.334056]: Subclasses: []\n", - "[INFO] [1712690294.334368]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.334877]: Instances: []\n", - "[INFO] [1712690294.335155]: Direct Instances: []\n", - "[INFO] [1712690294.335418]: Inverse Restrictions: []\n", - "[INFO] [1712690294.335664]: -------------------\n", - "[INFO] [1712690294.335909]: SOMA.Transporting \n", - "[INFO] [1712690294.336167]: Super classes: [SOMA.ModifyingPhysicalObject, SOMA.ModifyingPhysicalObject]\n", - "[INFO] [1712690294.336444]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, DUL.Task, DUL.EventType, DUL.Object, SOMA.PhysicalTask, owl.Thing, SOMA.ModifyingPhysicalObject, SOMA.Transporting}\n", - "[INFO] [1712690294.336704]: Subclasses: []\n", - "[INFO] [1712690294.337005]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.337501]: Instances: []\n", - "[INFO] [1712690294.337777]: Direct Instances: []\n", - "[INFO] [1712690294.338037]: Inverse Restrictions: []\n", - "[INFO] [1712690294.338282]: -------------------\n", - "[INFO] [1712690294.338523]: SOMA.Triplestore \n", - "[INFO] [1712690294.338761]: Super classes: [SOMA.GraphDatabase, SOMA.GraphDatabase]\n", - "[INFO] [1712690294.339009]: Ancestors: {DUL.Entity, DUL.Concept, DUL.SocialObject, SOMA.Triplestore, owl.Thing, SOMA.Database, DUL.Object, SOMA.GraphDatabase, SOMA.SoftwareRole, DUL.Role}\n", - "[INFO] [1712690294.339264]: Subclasses: []\n", - "[INFO] [1712690294.339559]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.340066]: Instances: []\n", - "[INFO] [1712690294.340343]: Direct Instances: []\n", - "[INFO] [1712690294.340631]: Inverse Restrictions: []\n", - "[INFO] [1712690294.340915]: -------------------\n", - "[INFO] [1712690294.341184]: SOMA.Turning \n", - "[INFO] [1712690294.341444]: Super classes: [SOMA.PosturalMoving, SOMA.PosturalMoving]\n", - "[INFO] [1712690294.341712]: Ancestors: {DUL.Entity, SOMA.ProcessType, DUL.Concept, DUL.SocialObject, SOMA.Turning, SOMA.BodyMovement, SOMA.Motion, DUL.EventType, DUL.Object, owl.Thing, SOMA.PosturalMoving}\n", - "[INFO] [1712690294.341995]: Subclasses: []\n", - "[INFO] [1712690294.342304]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.342806]: Instances: []\n", - "[INFO] [1712690294.343081]: Direct Instances: []\n", - "[INFO] [1712690294.343337]: Inverse Restrictions: []\n", - "[INFO] [1712690294.343581]: -------------------\n", - "[INFO] [1712690294.343819]: SOMA.UnavailableSoftware \n", - "[INFO] [1712690294.344052]: Super classes: [SOMA.SoftwareDiagnosis, SOMA.SoftwareDiagnosis]\n", - "[INFO] [1712690294.344298]: Ancestors: {SOMA.FunctionalDiagnosis, DUL.Entity, SOMA.UnavailableSoftware, DUL.SocialObject, SOMA.SoftwareDiagnosis, DUL.Diagnosis, SOMA.TechnicalDiagnosis, DUL.Object, owl.Thing, DUL.Description}\n", - "[INFO] [1712690294.344556]: Subclasses: []\n", - "[INFO] [1712690294.344859]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.345352]: Instances: []\n", - "[INFO] [1712690294.345625]: Direct Instances: []\n", - "[INFO] [1712690294.345886]: Inverse Restrictions: []\n", - "[INFO] [1712690294.346127]: -------------------\n", - "[INFO] [1712690294.346362]: SOMA.Unsuccessfulness \n", - "[INFO] [1712690294.346622]: Super classes: [SOMA.SuccessDiagnosis]\n", - "[INFO] [1712690294.346876]: Ancestors: {DUL.Entity, DUL.SocialObject, SOMA.Unsuccessfulness, SOMA.BehavioralDiagnosis, DUL.Diagnosis, DUL.Object, owl.Thing, DUL.Description, SOMA.SuccessDiagnosis}\n", - "[INFO] [1712690294.347150]: Subclasses: [SOMA.FailedAttempt, SOMA.Inability, SOMA.Infeasibility]\n", - "[INFO] [1712690294.347448]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712690294.347939]: Instances: []\n", - "[INFO] [1712690294.348199]: Direct Instances: []\n", - "[INFO] [1712690294.348449]: Inverse Restrictions: []\n", - "[INFO] [1712690294.348702]: -------------------\n", - "[INFO] [1712690294.348958]: SOMA.VideoData \n", - "[INFO] [1712690294.349200]: Super classes: [DUL.InformationObject, DUL.InformationObject]\n", - "[INFO] [1712690294.349443]: Ancestors: {DUL.Entity, SOMA.VideoData, DUL.InformationObject, DUL.SocialObject, DUL.InformationEntity, owl.Thing, DUL.Object}\n", - "[INFO] [1712690294.349686]: Subclasses: []\n", - "[INFO] [1712690294.350001]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712690294.350522]: Instances: []\n", - "[INFO] [1712690294.350780]: Direct Instances: []\n", - "[INFO] [1712690294.351022]: Inverse Restrictions: []\n", - "[INFO] [1712690294.351263]: -------------------\n", - "[INFO] [1712690294.351530]: SOMA.3DPosition \n", - "[INFO] [1712690294.351780]: Super classes: [DUL.SpaceRegion, DUL.SpaceRegion, SOMA.hasPositionData.exactly(1, ), SOMA.hasPositionData.exactly(1, )]\n", - "[INFO] [1712690294.352027]: Ancestors: {DUL.Entity, SOMA.3DPosition, DUL.SpaceRegion, DUL.Region, owl.Thing, DUL.Abstract}\n", - "[INFO] [1712690294.352269]: Subclasses: []\n", - "[INFO] [1712690294.352562]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPositionData, rdf-schema.label]\n", - "[INFO] [1712690294.353063]: Instances: []\n", - "[INFO] [1712690294.353327]: Direct Instances: []\n", - "[INFO] [1712690294.353580]: Inverse Restrictions: []\n", - "[INFO] [1712690294.353818]: -------------------\n", - "[INFO] [1712690294.354066]: SOMA.OntologyPlaceHolderObject \n", - "[INFO] [1712690294.354311]: Super classes: [SOMA.Container, owl.Thing]\n", - "[INFO] [1712690294.354590]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, SOMA.Container, owl.Thing, DUL.Object, SOMA.EventAdjacentRole, SOMA.OntologyPlaceHolderObject, DUL.Role}\n", - "[INFO] [1712690294.354840]: Subclasses: [SOMA.Ontoegg_tray]\n", - "[INFO] [1712690294.355121]: Properties: []\n", - "[INFO] [1712690294.355628]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690294.355887]: Direct Instances: []\n", - "[INFO] [1712690294.356141]: Inverse Restrictions: []\n", - "[INFO] [1712690294.356377]: -------------------\n", - "[INFO] [1712690294.356610]: SOMA.OntologyHandheldObject \n", - "[INFO] [1712690294.356841]: Super classes: [owl.Thing]\n", - "[INFO] [1712690294.357108]: Ancestors: {SOMA.OntologyHandheldObject, owl.Thing}\n", - "[INFO] [1712690294.357365]: Subclasses: [SOMA.Ontoegg]\n", - "[INFO] [1712690294.357649]: Properties: []\n", - "[INFO] [1712690294.358180]: Instances: [SOMA.egg_concept]\n", - "[INFO] [1712690294.358463]: Direct Instances: []\n", - "[INFO] [1712690294.358733]: Inverse Restrictions: []\n", - "[INFO] [1712690294.358981]: -------------------\n", - "[INFO] [1712690294.359222]: SOMA.OntologySubject \n", - "[INFO] [1712690294.359461]: Super classes: [owl.Thing]\n", - "[INFO] [1712690294.359725]: Ancestors: {owl.Thing, SOMA.OntologySubject}\n", - "[INFO] [1712690294.359988]: Subclasses: []\n", - "[INFO] [1712690294.360276]: Properties: []\n", - "[INFO] [1712690294.360802]: Instances: [SOMA.subject]\n", - "[INFO] [1712690294.361071]: Direct Instances: [SOMA.subject]\n", - "[INFO] [1712690294.361334]: Inverse Restrictions: []\n", - "[INFO] [1712690294.361580]: -------------------\n", - "[INFO] [1712690294.361815]: SOMA.OntologyObject \n", - "[INFO] [1712690294.362049]: Super classes: [owl.Thing]\n", - "[INFO] [1712690294.362301]: Ancestors: {SOMA.OntologyObject, owl.Thing}\n", - "[INFO] [1712690294.362539]: Subclasses: []\n", - "[INFO] [1712690294.362817]: Properties: []\n", - "[INFO] [1712690294.363339]: Instances: [SOMA.object]\n", - "[INFO] [1712690294.363604]: Direct Instances: [SOMA.object]\n", - "[INFO] [1712690294.363857]: Inverse Restrictions: []\n", - "[INFO] [1712690294.364108]: -------------------\n", - "[INFO] [1712690294.364350]: SOMA.Ontoegg \n", - "[INFO] [1712690294.364587]: Super classes: [SOMA.OntologyHandheldObject, owl.Thing]\n", - "[INFO] [1712690294.364845]: Ancestors: {SOMA.OntologyHandheldObject, SOMA.Ontoegg, owl.Thing}\n", - "[INFO] [1712690294.365093]: Subclasses: []\n", - "[INFO] [1712690294.365379]: Properties: []\n", - "[INFO] [1712690294.365872]: Instances: [SOMA.egg_concept]\n", - "[INFO] [1712690294.366128]: Direct Instances: [SOMA.egg_concept]\n", - "[INFO] [1712690294.366373]: Inverse Restrictions: []\n", - "[INFO] [1712690294.366600]: -------------------\n", - "[INFO] [1712690294.366856]: SOMA.Ontoegg_tray \n", - "[INFO] [1712690294.367100]: Super classes: [SOMA.OntologyPlaceHolderObject, owl.Thing]\n", - "[INFO] [1712690294.367372]: Ancestors: {DUL.Entity, SOMA.ResourceRole, SOMA.Instrument, DUL.Concept, DUL.SocialObject, SOMA.Restrictor, SOMA.Container, owl.Thing, DUL.Object, SOMA.Ontoegg_tray, SOMA.EventAdjacentRole, SOMA.OntologyPlaceHolderObject, DUL.Role}\n", - "[INFO] [1712690294.367620]: Subclasses: []\n", - "[INFO] [1712690294.367910]: Properties: []\n", - "[INFO] [1712690294.368420]: Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690294.368691]: Direct Instances: [SOMA.egg_tray_concept]\n", - "[INFO] [1712690294.368944]: Inverse Restrictions: []\n", - "[INFO] [1712690294.369193]: -------------------\n", - "[INFO] [1712690294.369433]: SOMA.DynamicOntologyConcept \n", - "[INFO] [1712690294.369670]: Super classes: [owl.Thing]\n", - "[INFO] [1712690294.369922]: Ancestors: {SOMA.DynamicOntologyConcept, owl.Thing}\n", - "[INFO] [1712690294.370174]: Subclasses: []\n", - "[INFO] [1712690294.370461]: Properties: []\n", - "[INFO] [1712690294.371008]: Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", - "[INFO] [1712690294.371292]: Direct Instances: [SOMA.dynamic_ontology_concept2, SOMA.dynamic_ontology_concept1]\n", - "[INFO] [1712690294.371553]: Inverse Restrictions: []\n" + "[INFO] [1712739462.606708]: -------------------\n", + "[INFO] [1712739462.607441]: SOMA.DesignedContainer \n", + "[INFO] [1712739462.607896]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712739462.608299]: Ancestors: {DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object}\n", + "[INFO] [1712739462.608640]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712739462.609059]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712739462.666620]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712739462.667104]: Direct Instances: []\n", + "[INFO] [1712739462.667545]: Inverse Restrictions: []\n", + "DUL.PhysicalObject\n", + "[SOMA.Affordance, SOMA.Disposition]\n" ] - }, - { - "data": { - "text/plain": [ - "[SOMA.Affordance,\n", - " SOMA.Disposition,\n", - " SOMA.Setpoint,\n", - " SOMA.Answer,\n", - " SOMA.Message,\n", - " SOMA.ProcessType,\n", - " SOMA.OrderedElement,\n", - " SOMA.System,\n", - " SOMA.Binding,\n", - " SOMA.Joint,\n", - " SOMA.Color,\n", - " SOMA.ExecutionStateRegion,\n", - " SOMA.Feature,\n", - " SOMA.FrictionAttribute,\n", - " SOMA.SituationTransition,\n", - " SOMA.NonmanifestedSituation,\n", - " SOMA.JointLimit,\n", - " SOMA.JointState,\n", - " SOMA.Localization,\n", - " SOMA.MassAttribute,\n", - " SOMA.NetForce,\n", - " SOMA.Succedence,\n", - " SOMA.Preference,\n", - " SOMA.Shape,\n", - " SOMA.ShapeRegion,\n", - " SOMA.SoftwareInstance,\n", - " SOMA.StateType,\n", - " SOMA.PhysicalEffector,\n", - " SOMA.QueryingTask,\n", - " SOMA.Order,\n", - " SOMA.State,\n", - " SOMA.Transient,\n", - " SOMA.ColorRegion,\n", - " SOMA.ForceAttribute,\n", - " SOMA.API_Specification,\n", - " SOMA.InterfaceSpecification,\n", - " SOMA.AbductiveReasoning,\n", - " SOMA.Reasoning,\n", - " SOMA.Accessor,\n", - " SOMA.Instrument,\n", - " SOMA.Accident,\n", - " SOMA.ActionExecutionPlan,\n", - " SOMA.Actuating,\n", - " SOMA.PhysicalTask,\n", - " SOMA.AestheticDesign,\n", - " SOMA.AffordsBeingSitOn,\n", - " SOMA.CanBeSatOn,\n", - " SOMA.SittingDestination,\n", - " SOMA.CanSit,\n", - " SOMA.AgentRole,\n", - " SOMA.Sitting,\n", - " SOMA.CausativeRole,\n", - " SOMA.Agonist,\n", - " SOMA.Patient,\n", - " SOMA.Algorithm,\n", - " SOMA.Alteration,\n", - " SOMA.AlterativeInteraction,\n", - " SOMA.ForceInteraction,\n", - " SOMA.PreservativeInteraction,\n", - " SOMA.AlteredObject,\n", - " SOMA.Amateurish,\n", - " SOMA.AnsweringTask,\n", - " SOMA.CommandingTask,\n", - " SOMA.IllocutionaryTask,\n", - " SOMA.Antagonist,\n", - " SOMA.Appliance,\n", - " SOMA.Approaching,\n", - " SOMA.Locomotion,\n", - " SOMA.ArchiveFile,\n", - " SOMA.ArchiveText,\n", - " SOMA.Digital_File,\n", - " SOMA.ArchiveFormat,\n", - " SOMA.File_format,\n", - " SOMA.FileConfiguration,\n", - " SOMA.Structured_Text,\n", - " SOMA.AreaSurveying,\n", - " SOMA.Perceiving,\n", - " SOMA.Arm,\n", - " SOMA.Limb,\n", - " SOMA.Armchair,\n", - " SOMA.DesignedChair,\n", - " SOMA.Arranging,\n", - " SOMA.Constructing,\n", - " SOMA.ArtificialAgent,\n", - " SOMA.Assembling,\n", - " SOMA.AssertionTask,\n", - " SOMA.DeclarativeClause,\n", - " SOMA.AssumingArmPose,\n", - " SOMA.AssumingPose,\n", - " SOMA.AttentionShift,\n", - " SOMA.MentalTask,\n", - " SOMA.AvoidedObject,\n", - " SOMA.Avoiding,\n", - " SOMA.Navigating,\n", - " SOMA.BakedGood,\n", - " SOMA.Dish,\n", - " SOMA.Barrier,\n", - " SOMA.Restrictor,\n", - " SOMA.BedsideTable,\n", - " SOMA.Table,\n", - " SOMA.BehavioralDiagnosis,\n", - " SOMA.BeneficiaryRole,\n", - " SOMA.GoalRole,\n", - " SOMA.CounterfactualBinding,\n", - " SOMA.FactualBinding,\n", - " SOMA.RoleFillerBinding,\n", - " SOMA.RoleRoleBinding,\n", - " SOMA.Blade,\n", - " SOMA.DesignedComponent,\n", - " SOMA.Blockage,\n", - " SOMA.BlockedObject,\n", - " SOMA.BodyMovement,\n", - " SOMA.Motion,\n", - " SOMA.Boiling,\n", - " SOMA.Vaporizing,\n", - " SOMA.Bottle,\n", - " SOMA.DesignedContainer,\n", - " SOMA.Bowl,\n", - " SOMA.Crockery,\n", - " SOMA.Box,\n", - " SOMA.BoxShape,\n", - " SOMA.Bread,\n", - " SOMA.BreadKnife,\n", - " SOMA.KitchenKnife,\n", - " SOMA.BreakfastPlate,\n", - " SOMA.Plate,\n", - " SOMA.Building,\n", - " SOMA.Deposition,\n", - " SOMA.CanCut,\n", - " SOMA.Variability,\n", - " SOMA.Cutter,\n", - " SOMA.CutObject,\n", - " SOMA.Capability,\n", - " SOMA.Capacity,\n", - " SOMA.Intrinsic,\n", - " SOMA.Carafe,\n", - " SOMA.Catching,\n", - " SOMA.PickingUp,\n", - " SOMA.CausalEventRole,\n", - " SOMA.EventAdjacentRole,\n", - " SOMA.CausedMotionTheory,\n", - " SOMA.ImageSchemaTheory,\n", - " SOMA.PerformerRole,\n", - " SOMA.SourcePathGoalTheory,\n", - " SOMA.Ceiling,\n", - " SOMA.RoomSurface,\n", - " SOMA.Floor,\n", - " SOMA.Wall,\n", - " SOMA.CeramicCooktop,\n", - " SOMA.ElectricCooktop,\n", - " SOMA.CerealBox,\n", - " SOMA.Channel,\n", - " SOMA.PathRole,\n", - " SOMA.CommunicationTask,\n", - " SOMA.CheckingObjectPresence,\n", - " SOMA.ChemicalProcess,\n", - " SOMA.Choice,\n", - " SOMA.ResultRole,\n", - " SOMA.CircularCylinder,\n", - " SOMA.CylinderShape,\n", - " SOMA.Classifier,\n", - " SOMA.StatisticalReasoner,\n", - " SOMA.ClausalObject,\n", - " SOMA.Phrase,\n", - " SOMA.Clean,\n", - " SOMA.CleanlinessRegion,\n", - " SOMA.Cleaning,\n", - " SOMA.ModifyingPhysicalObject,\n", - " SOMA.Purification,\n", - " SOMA.Cleanliness,\n", - " SOMA.SocialQuality,\n", - " SOMA.Client-Server_Specification,\n", - " SOMA.ClientRole,\n", - " SOMA.ServerRole,\n", - " SOMA.InterfaceComponentRole,\n", - " SOMA.Closing,\n", - " SOMA.Delivering,\n", - " SOMA.Fetching,\n", - " SOMA.Lifting,\n", - " SOMA.Opening,\n", - " SOMA.Pulling,\n", - " SOMA.Pushing,\n", - " SOMA.Squeezing,\n", - " SOMA.ClosingDisposition,\n", - " SOMA.Linkage,\n", - " SOMA.Clumsiness,\n", - " SOMA.CoffeeCarafe,\n", - " SOMA.CoffeeTable,\n", - " SOMA.CognitiveAgent,\n", - " SOMA.SubCognitiveAgent,\n", - " SOMA.CoilCooktop,\n", - " SOMA.Collision,\n", - " SOMA.Extrinsic,\n", - " SOMA.ImperativeClause,\n", - " SOMA.CommitedObject,\n", - " SOMA.ConnectedObject,\n", - " SOMA.CommunicationAction,\n", - " SOMA.LinguisticObject,\n", - " SOMA.CommunicationReport,\n", - " SOMA.Receiver,\n", - " SOMA.Sender,\n", - " SOMA.CommunicationTopic,\n", - " SOMA.ResourceRole,\n", - " SOMA.Compartment,\n", - " SOMA.Composing,\n", - " SOMA.Computer_Language,\n", - " SOMA.FormalLanguage,\n", - " SOMA.Computer_Program,\n", - " SOMA.Programming_Language,\n", - " SOMA.Conclusion,\n", - " SOMA.CreatedObject,\n", - " SOMA.Knowledge,\n", - " SOMA.ConditionalSuccedence,\n", - " SOMA.Configuration,\n", - " SOMA.Connectivity,\n", - " SOMA.ContactState,\n", - " SOMA.Container,\n", - " SOMA.Containment,\n", - " SOMA.IncludedObject,\n", - " SOMA.ContainmentState,\n", - " SOMA.FunctionalControl,\n", - " SOMA.ContainmentTheory,\n", - " SOMA.ControlTheory,\n", - " SOMA.ContinuousJoint,\n", - " SOMA.HingeJoint,\n", - " SOMA.FunctionalSpatialSchemaTheory,\n", - " SOMA.Cooktop,\n", - " SOMA.Countertop,\n", - " SOMA.Cover,\n", - " SOMA.Coverage,\n", - " SOMA.CoveredObject,\n", - " SOMA.CoverageTheory,\n", - " SOMA.CoveringTheory,\n", - " SOMA.ExecutableSchematicTheory,\n", - " SOMA.CrackingTheory,\n", - " SOMA.Creation,\n", - " SOMA.Tableware,\n", - " SOMA.Insertion,\n", - " SOMA.Cup,\n", - " SOMA.DesignedHandle,\n", - " SOMA.Cupboard,\n", - " SOMA.DesignedFurniture,\n", - " SOMA.Rack,\n", - " SOMA.Cutlery,\n", - " SOMA.Cuttability,\n", - " SOMA.Tool,\n", - " SOMA.Cutting,\n", - " SOMA.CuttingTool,\n", - " SOMA.DesignedTool,\n", - " SOMA.Shaping,\n", - " SOMA.Database,\n", - " SOMA.SoftwareRole,\n", - " SOMA.Deciding,\n", - " SOMA.DerivingInformation,\n", - " SOMA.DeductiveReasoning,\n", - " SOMA.Deformation,\n", - " SOMA.ShapedObject,\n", - " SOMA.FluidFlow,\n", - " SOMA.Shifting,\n", - " SOMA.DependentPlace,\n", - " SOMA.Deposit,\n", - " SOMA.DepositedObject,\n", - " SOMA.InformationAcquisition,\n", - " SOMA.Premise,\n", - " SOMA.FunctionalPart,\n", - " SOMA.Graspability,\n", - " SOMA.DesignedSpade,\n", - " SOMA.DessertFork,\n", - " SOMA.Fork,\n", - " SOMA.Destination,\n", - " SOMA.Location,\n", - " SOMA.DestroyedObject,\n", - " SOMA.Destruction,\n", - " SOMA.DetectedObject,\n", - " SOMA.DeviceState,\n", - " SOMA.DeviceStateRange,\n", - " SOMA.DeviceTurnedOff,\n", - " SOMA.DeviceTurnedOn,\n", - " SOMA.DexterityDiagnosis,\n", - " SOMA.Dicing,\n", - " SOMA.DinnerPlate,\n", - " SOMA.DirectedMotion,\n", - " SOMA.UndirectedMotion,\n", - " SOMA.Dirty,\n", - " SOMA.Discourse,\n", - " SOMA.Dishwasher,\n", - " SOMA.DishwasherTab,\n", - " SOMA.Dispenser,\n", - " SOMA.Distancing,\n", - " SOMA.Door,\n", - " SOMA.Drawer,\n", - " SOMA.Dreaming,\n", - " SOMA.Driving,\n", - " SOMA.Flying,\n", - " SOMA.Swimming,\n", - " SOMA.Walking,\n", - " SOMA.Dropping,\n", - " SOMA.Placing,\n", - " SOMA.ESTSchemaTheory,\n", - " SOMA.ExistingObjectRole,\n", - " SOMA.Effort,\n", - " SOMA.EnclosedObject,\n", - " SOMA.Enclosing,\n", - " SOMA.EndEffectorPositioning,\n", - " SOMA.Manipulating,\n", - " SOMA.Episode,\n", - " SOMA.ExcludedObject,\n", - " SOMA.ExecutableFile,\n", - " SOMA.Executable_Code,\n", - " SOMA.ExecutableFormat,\n", - " SOMA.SchematicTheory,\n", - " SOMA.ExecutableSoftware,\n", - " SOMA.Software,\n", - " SOMA.RelationAdjacentRole,\n", - " SOMA.ExperiencerRole,\n", - " SOMA.ExtractedObject,\n", - " SOMA.PhysicalQuality,\n", - " SOMA.FailedAttempt,\n", - " SOMA.FaultySoftware,\n", - " SOMA.SoftwareDiagnosis,\n", - " SOMA.PhysicalAcquiring,\n", - " SOMA.Finger,\n", - " SOMA.Hand,\n", - " SOMA.FixedJoint,\n", - " SOMA.MovableJoint,\n", - " SOMA.Flipping,\n", - " SOMA.FloatingJoint,\n", - " SOMA.Fluid,\n", - " SOMA.MovedObject,\n", - " SOMA.Focusing,\n", - " SOMA.Foolishness,\n", - " SOMA.ForgettingIncorrectInformation,\n", - " SOMA.InformationDismissal,\n", - " SOMA.ForgettingIrrelevantInformation,\n", - " SOMA.Language,\n", - " SOMA.FreezerCompartment,\n", - " SOMA.Item,\n", - " SOMA.FunctionalDesign,\n", - " SOMA.FunctionalDiagnosis,\n", - " SOMA.LocatumRole,\n", - " SOMA.RelatumRole,\n", - " SOMA.GasCooktop,\n", - " SOMA.GetTaskParameter,\n", - " SOMA.Planning,\n", - " SOMA.Glass,\n", - " SOMA.GraphDatabase,\n", - " SOMA.GraphQueryLanguage,\n", - " SOMA.QueryLanguage,\n", - " SOMA.GraspTransfer,\n", - " SOMA.Grasping,\n", - " SOMA.Releasing,\n", - " SOMA.GraspingMotion,\n", - " SOMA.IntermediateGrasp,\n", - " SOMA.PowerGrasp,\n", - " SOMA.PrecisionGrasp,\n", - " SOMA.PrehensileMotion,\n", - " SOMA.ReleasingMotion,\n", - " SOMA.GreenColor,\n", - " SOMA.Gripper,\n", - " SOMA.PrehensileEffector,\n", - " SOMA.HardwareDiagnosis,\n", - " SOMA.HasQualityRegion,\n", - " SOMA.Head,\n", - " SOMA.HeadMovement,\n", - " SOMA.HeadTurning,\n", - " SOMA.Holding,\n", - " SOMA.HostRole,\n", - " SOMA.PluginSpecification,\n", - " SOMA.Hotplate,\n", - " SOMA.Human-readable_Programming_Language,\n", - " SOMA.Source_Code,\n", - " SOMA.HumanActivityRecording,\n", - " SOMA.Imagining,\n", - " SOMA.Impediment,\n", - " SOMA.Obstacle,\n", - " SOMA.RestrictedObject,\n", - " SOMA.StateTransition,\n", - " SOMA.Inability,\n", - " SOMA.IncompatibleSoftware,\n", - " SOMA.InductionCooktop,\n", - " SOMA.InductiveReasoning,\n", - " SOMA.Infeasibility,\n", - " SOMA.InferenceRules,\n", - " SOMA.InformationRetrieval,\n", - " SOMA.InformationStorage,\n", - " SOMA.StoredObject,\n", - " SOMA.InsertedObject,\n", - " SOMA.Instructions,\n", - " SOMA.Interpreting,\n", - " SOMA.InterrogativeClause,\n", - " SOMA.Introspecting,\n", - " SOMA.JamJar,\n", - " SOMA.Jar,\n", - " SOMA.KineticFrictionAttribute,\n", - " SOMA.KinoDynamicData,\n", - " SOMA.Kitchen,\n", - " SOMA.Room,\n", - " SOMA.KitchenCabinet,\n", - " SOMA.Knife,\n", - " SOMA.KitchenUnit,\n", - " SOMA.KnowledgeRepresentationLanguage,\n", - " SOMA.Labeling,\n", - " SOMA.Text,\n", - " SOMA.Leaning,\n", - " SOMA.PosturalMoving,\n", - " SOMA.Learning,\n", - " SOMA.Leg,\n", - " SOMA.Lid,\n", - " SOMA.LimbMotion,\n", - " SOMA.LinkedObject,\n", - " SOMA.LinkageState,\n", - " SOMA.SpatioTemporalRole,\n", - " SOMA.SpatialRelationRole,\n", - " SOMA.LocutionaryAction,\n", - " SOMA.LookingAt,\n", - " SOMA.LookingFor,\n", - " SOMA.Lowering,\n", - " SOMA.PhysicalAction,\n", - " SOMA.Markup_Language,\n", - " SOMA.Masterful,\n", - " SOMA.Material,\n", - " SOMA.MedicalDiagnosis,\n", - " SOMA.Memorizing,\n", - " SOMA.MentalAction,\n", - " SOMA.MeshShape,\n", - " SOMA.MeshShapeData,\n", - " SOMA.MetaCognitionEvaluationTopic,\n", - " SOMA.MetaCognitionTopic,\n", - " SOMA.MetaCognitionMemoryTopic,\n", - " SOMA.MetaCognitionPlanningTopic,\n", - " SOMA.ThinkAloudTopic,\n", - " SOMA.MetacognitiveControlling,\n", - " SOMA.MetacognitiveMonitoring,\n", - " SOMA.MilkBottle,\n", - " SOMA.MilkPack,\n", - " SOMA.Pack,\n", - " SOMA.Mixing,\n", - " SOMA.MixingTheory,\n", - " SOMA.MonitoringJointState,\n", - " SOMA.Proprioceiving,\n", - " SOMA.MovingAway,\n", - " SOMA.MovingTo,\n", - " SOMA.Natural_Language,\n", - " SOMA.Natural_Language_Text,\n", - " SOMA.NutellaJar,\n", - " SOMA.Ontology,\n", - " SOMA.Ontology_Language,\n", - " SOMA.Option,\n", - " SOMA.Singleton,\n", - " SOMA.Orienting,\n", - " SOMA.Positioning,\n", - " SOMA.Origin,\n", - " SOMA.Oven,\n", - " SOMA.TemperingByHeating,\n", - " SOMA.Pan,\n", - " SOMA.Pancake,\n", - " SOMA.PancakeMix,\n", - " SOMA.ParkingArms,\n", - " SOMA.PastaBowl,\n", - " SOMA.PepperShaker,\n", - " SOMA.Shaker,\n", - " SOMA.PhaseTransition,\n", - " SOMA.PhysicalAccessibility,\n", - " SOMA.PhysicalBlockage,\n", - " SOMA.PhysicalExistence,\n", - " SOMA.PhysicalState,\n", - " SOMA.PhysicsProcess,\n", - " SOMA.PlacingTheory,\n", - " SOMA.PlanarJoint,\n", - " SOMA.PluginRole,\n", - " SOMA.Pot,\n", - " SOMA.Pourable,\n", - " SOMA.PouredObject,\n", - " SOMA.Pouring,\n", - " SOMA.PouringInto,\n", - " SOMA.PouringOnto,\n", - " SOMA.Prediction,\n", - " SOMA.Prospecting,\n", - " SOMA.Predilection,\n", - " SOMA.PreferenceOrder,\n", - " SOMA.PreferenceRegion,\n", - " SOMA.PrismaticJoint,\n", - " SOMA.ProcessFlow,\n", - " SOMA.Progression,\n", - " SOMA.Protector,\n", - " SOMA.ProximalTheory,\n", - " SOMA.PushingAway,\n", - " SOMA.PushingDown,\n", - " SOMA.PuttingDown,\n", - " SOMA.QualityTransition,\n", - " SOMA.Query,\n", - " SOMA.QueryAnsweringTask,\n", - " SOMA.QueryEngine,\n", - " SOMA.RaspberryJamJar,\n", - " SOMA.Reaching,\n", - " SOMA.Retracting,\n", - " SOMA.Reasoner,\n", - " SOMA.RecipientRole,\n", - " SOMA.RecordedEpisode,\n", - " SOMA.RedColor,\n", - " SOMA.Refrigerator,\n", - " SOMA.Reification,\n", - " SOMA.RelationalDatabase,\n", - " SOMA.RelationalQueryLanguage,\n", - " SOMA.RelevantPart,\n", - " SOMA.Remembering,\n", - " SOMA.Retrospecting,\n", - " SOMA.RemovedObject,\n", - " SOMA.Replanning,\n", - " SOMA.RevoluteJoint,\n", - " SOMA.Surface,\n", - " SOMA.Rubbing,\n", - " SOMA.SaladBowl,\n", - " SOMA.SaltShaker,\n", - " SOMA.Scene,\n", - " SOMA.SelectedObject,\n", - " SOMA.Selecting,\n", - " SOMA.SelectingItem,\n", - " SOMA.SelfReflection,\n", - " SOMA.Serving,\n", - " SOMA.SettingGripper,\n", - " SOMA.6DPose,\n", - " SOMA.Sharpness,\n", - " SOMA.Simulating,\n", - " SOMA.Simulation_Reasoner,\n", - " SOMA.Sink,\n", - " SOMA.Size,\n", - " SOMA.Slicing,\n", - " SOMA.Sluggishness,\n", - " SOMA.SocialState,\n", - " SOMA.Sofa,\n", - " SOMA.Software_Configuration,\n", - " SOMA.SoftwareLibrary,\n", - " SOMA.SoupPot,\n", - " SOMA.SourceMaterialRole,\n", - " SOMA.Spatula,\n", - " SOMA.SphereShape,\n", - " SOMA.Spoon,\n", - " SOMA.Standing,\n", - " SOMA.StaticFrictionAttribute,\n", - " SOMA.Status,\n", - " SOMA.StatusFailure,\n", - " SOMA.StimulusRole,\n", - " SOMA.Stirring,\n", - " SOMA.Storage,\n", - " SOMA.Stove,\n", - " SOMA.StructuralDesign,\n", - " SOMA.TaskInvocation,\n", - " SOMA.SuccessDiagnosis,\n", - " SOMA.Successfulness,\n", - " SOMA.SugarDispenser,\n", - " SOMA.SupportState,\n", - " SOMA.Supporter,\n", - " SOMA.SupportTheory,\n", - " SOMA.SupportedObject,\n", - " SOMA.SymbolicReasoner,\n", - " SOMA.TableFork,\n", - " SOMA.TableKnife,\n", - " SOMA.TableSpoon,\n", - " SOMA.TeaSpoon,\n", - " SOMA.Tap,\n", - " SOMA.Tapping,\n", - " SOMA.Taxis,\n", - " SOMA.TechnicalDiagnosis,\n", - " SOMA.Temperature,\n", - " SOMA.TemperatureRegion,\n", - " SOMA.Tempering,\n", - " SOMA.TemperingByCooling,\n", - " SOMA.ThinkAloud,\n", - " SOMA.ThinkAloudActionTopic,\n", - " SOMA.ThinkAloudGeneralKnowledgeTopic,\n", - " SOMA.ThinkAloudKnowledgeTopic,\n", - " SOMA.ThinkAloudObstructionTopic,\n", - " SOMA.ThinkAloudOpinionTopic,\n", - " SOMA.ThinkAloudPerceptionTopic,\n", - " SOMA.ThinkAloudPlanTopic,\n", - " SOMA.ThinkAloudSceneKnowledgeTopic,\n", - " SOMA.Threshold,\n", - " SOMA.Throwing,\n", - " SOMA.TimeRole,\n", - " SOMA.Transporting,\n", - " SOMA.TrashContainer,\n", - " SOMA.Triplestore,\n", - " SOMA.Turning,\n", - " SOMA.UnavailableSoftware,\n", - " SOMA.Unsuccessfulness,\n", - " SOMA.VideoData,\n", - " SOMA.Wardrobe,\n", - " SOMA.WaterBottle,\n", - " SOMA.WaterGlass,\n", - " SOMA.WineBottle,\n", - " SOMA.WineGlass,\n", - " SOMA.3DPosition,\n", - " SOMA.Affordance,\n", - " SOMA.Disposition,\n", - " SOMA.Setpoint,\n", - " SOMA.Answer,\n", - " SOMA.Message,\n", - " SOMA.ProcessType,\n", - " SOMA.OrderedElement,\n", - " SOMA.System,\n", - " SOMA.Binding,\n", - " SOMA.Joint,\n", - " SOMA.Color,\n", - " SOMA.ExecutionStateRegion,\n", - " SOMA.Feature,\n", - " SOMA.FrictionAttribute,\n", - " SOMA.SituationTransition,\n", - " SOMA.NonmanifestedSituation,\n", - " SOMA.JointLimit,\n", - " SOMA.JointState,\n", - " SOMA.Localization,\n", - " SOMA.MassAttribute,\n", - " SOMA.NetForce,\n", - " SOMA.Succedence,\n", - " SOMA.Preference,\n", - " SOMA.Shape,\n", - " SOMA.ShapeRegion,\n", - " SOMA.SoftwareInstance,\n", - " SOMA.StateType,\n", - " SOMA.PhysicalEffector,\n", - " SOMA.QueryingTask,\n", - " SOMA.Order,\n", - " SOMA.State,\n", - " SOMA.Transient,\n", - " SOMA.ColorRegion,\n", - " SOMA.ForceAttribute,\n", - " SOMA.API_Specification,\n", - " SOMA.InterfaceSpecification,\n", - " SOMA.AbductiveReasoning,\n", - " SOMA.Reasoning,\n", - " SOMA.Accessor,\n", - " SOMA.Instrument,\n", - " SOMA.Accident,\n", - " SOMA.ActionExecutionPlan,\n", - " SOMA.Actuating,\n", - " SOMA.PhysicalTask,\n", - " SOMA.AestheticDesign,\n", - " SOMA.AgentRole,\n", - " SOMA.CausativeRole,\n", - " SOMA.Agonist,\n", - " SOMA.Patient,\n", - " SOMA.Algorithm,\n", - " SOMA.Alteration,\n", - " SOMA.AlterativeInteraction,\n", - " SOMA.ForceInteraction,\n", - " SOMA.PreservativeInteraction,\n", - " SOMA.AlteredObject,\n", - " SOMA.Amateurish,\n", - " SOMA.AnsweringTask,\n", - " SOMA.CommandingTask,\n", - " SOMA.IllocutionaryTask,\n", - " SOMA.Antagonist,\n", - " SOMA.Appliance,\n", - " SOMA.Approaching,\n", - " SOMA.Locomotion,\n", - " SOMA.ArchiveFile,\n", - " SOMA.ArchiveText,\n", - " SOMA.Digital_File,\n", - " SOMA.ArchiveFormat,\n", - " SOMA.File_format,\n", - " SOMA.FileConfiguration,\n", - " SOMA.Structured_Text,\n", - " SOMA.AreaSurveying,\n", - " SOMA.Perceiving,\n", - " SOMA.Arm,\n", - " SOMA.Limb,\n", - " SOMA.Arranging,\n", - " SOMA.Constructing,\n", - " SOMA.ArtificialAgent,\n", - " SOMA.Assembling,\n", - " SOMA.AssertionTask,\n", - " SOMA.DeclarativeClause,\n", - " SOMA.AssumingArmPose,\n", - " SOMA.AssumingPose,\n", - " SOMA.AttentionShift,\n", - " SOMA.MentalTask,\n", - " SOMA.AvoidedObject,\n", - " SOMA.Avoiding,\n", - " SOMA.Navigating,\n", - " SOMA.Barrier,\n", - " SOMA.Restrictor,\n", - " SOMA.BehavioralDiagnosis,\n", - " SOMA.BeneficiaryRole,\n", - " SOMA.GoalRole,\n", - " SOMA.CounterfactualBinding,\n", - " SOMA.FactualBinding,\n", - " SOMA.RoleFillerBinding,\n", - " SOMA.RoleRoleBinding,\n", - " SOMA.DesignedComponent,\n", - " SOMA.Blockage,\n", - " SOMA.BlockedObject,\n", - " SOMA.BodyMovement,\n", - " SOMA.Motion,\n", - " SOMA.Boiling,\n", - " SOMA.Vaporizing,\n", - " SOMA.DesignedContainer,\n", - " SOMA.BoxShape,\n", - " SOMA.Deposition,\n", - " SOMA.CanCut,\n", - " SOMA.Variability,\n", - " SOMA.Cutter,\n", - " SOMA.CutObject,\n", - " SOMA.Capability,\n", - " SOMA.Capacity,\n", - " SOMA.Intrinsic,\n", - " SOMA.Catching,\n", - " SOMA.PickingUp,\n", - " SOMA.CausalEventRole,\n", - " SOMA.EventAdjacentRole,\n", - " SOMA.CausedMotionTheory,\n", - " SOMA.ImageSchemaTheory,\n", - " SOMA.PerformerRole,\n", - " SOMA.SourcePathGoalTheory,\n", - " SOMA.RoomSurface,\n", - " SOMA.Channel,\n", - " SOMA.PathRole,\n", - " SOMA.CommunicationTask,\n", - " SOMA.CheckingObjectPresence,\n", - " SOMA.ChemicalProcess,\n", - " SOMA.Choice,\n", - " SOMA.ResultRole,\n", - " SOMA.CircularCylinder,\n", - " SOMA.CylinderShape,\n", - " SOMA.Classifier,\n", - " SOMA.StatisticalReasoner,\n", - " SOMA.ClausalObject,\n", - " SOMA.Phrase,\n", - " SOMA.Clean,\n", - " SOMA.CleanlinessRegion,\n", - " SOMA.Cleaning,\n", - " SOMA.ModifyingPhysicalObject,\n", - " SOMA.Purification,\n", - " SOMA.Cleanliness,\n", - " SOMA.SocialQuality,\n", - " SOMA.Client-Server_Specification,\n", - " SOMA.ClientRole,\n", - " SOMA.ServerRole,\n", - " SOMA.InterfaceComponentRole,\n", - " SOMA.Closing,\n", - " SOMA.Delivering,\n", - " SOMA.Fetching,\n", - " SOMA.Lifting,\n", - " SOMA.Opening,\n", - " SOMA.Pulling,\n", - " SOMA.Pushing,\n", - " SOMA.Squeezing,\n", - " SOMA.Linkage,\n", - " SOMA.Clumsiness,\n", - " SOMA.CognitiveAgent,\n", - " SOMA.SubCognitiveAgent,\n", - " SOMA.Collision,\n", - " SOMA.Extrinsic,\n", - " SOMA.ImperativeClause,\n", - " SOMA.CommitedObject,\n", - " SOMA.ConnectedObject,\n", - " SOMA.CommunicationAction,\n", - " SOMA.LinguisticObject,\n", - " SOMA.CommunicationReport,\n", - " SOMA.Receiver,\n", - " SOMA.Sender,\n", - " SOMA.CommunicationTopic,\n", - " SOMA.ResourceRole,\n", - " SOMA.Composing,\n", - " SOMA.Computer_Language,\n", - " SOMA.FormalLanguage,\n", - " SOMA.Computer_Program,\n", - " SOMA.Programming_Language,\n", - " SOMA.Conclusion,\n", - " SOMA.CreatedObject,\n", - " SOMA.Knowledge,\n", - " SOMA.ConditionalSuccedence,\n", - " SOMA.Configuration,\n", - " SOMA.Connectivity,\n", - " SOMA.ContactState,\n", - " SOMA.Container,\n", - " SOMA.Containment,\n", - " SOMA.IncludedObject,\n", - " SOMA.ContainmentState,\n", - " SOMA.FunctionalControl,\n", - " SOMA.ContainmentTheory,\n", - " SOMA.ControlTheory,\n", - " SOMA.ContinuousJoint,\n", - " SOMA.HingeJoint,\n", - " SOMA.FunctionalSpatialSchemaTheory,\n", - " SOMA.Cover,\n", - " SOMA.Coverage,\n", - " SOMA.CoveredObject,\n", - " SOMA.CoverageTheory,\n", - " SOMA.CoveringTheory,\n", - " SOMA.ExecutableSchematicTheory,\n", - " SOMA.CrackingTheory,\n", - " SOMA.Creation,\n", - " SOMA.Insertion,\n", - " SOMA.DesignedFurniture,\n", - " SOMA.Cuttability,\n", - " SOMA.Tool,\n", - " SOMA.Cutting,\n", - " SOMA.DesignedTool,\n", - " SOMA.Shaping,\n", - " SOMA.Database,\n", - " SOMA.SoftwareRole,\n", - " SOMA.Deciding,\n", - " SOMA.DerivingInformation,\n", - " SOMA.DeductiveReasoning,\n", - " SOMA.Deformation,\n", - " SOMA.ShapedObject,\n", - " SOMA.FluidFlow,\n", - " SOMA.Shifting,\n", - " SOMA.DependentPlace,\n", - " SOMA.Deposit,\n", - " SOMA.DepositedObject,\n", - " SOMA.InformationAcquisition,\n", - " SOMA.Premise,\n", - " SOMA.FunctionalPart,\n", - " SOMA.Graspability,\n", - " SOMA.Destination,\n", - " SOMA.Location,\n", - " SOMA.DestroyedObject,\n", - " SOMA.Destruction,\n", - " SOMA.DetectedObject,\n", - " SOMA.DeviceState,\n", - " SOMA.DeviceStateRange,\n", - " SOMA.DeviceTurnedOff,\n", - " SOMA.DeviceTurnedOn,\n", - " SOMA.DexterityDiagnosis,\n", - " SOMA.Dicing,\n", - " SOMA.DirectedMotion,\n", - " SOMA.UndirectedMotion,\n", - " SOMA.Dirty,\n", - " SOMA.Discourse,\n", - " SOMA.Distancing,\n", - " SOMA.Dreaming,\n", - " SOMA.Driving,\n", - " SOMA.Flying,\n", - " SOMA.Swimming,\n", - " SOMA.Walking,\n", - " SOMA.Dropping,\n", - " SOMA.Placing,\n", - " SOMA.ESTSchemaTheory,\n", - " SOMA.ExistingObjectRole,\n", - " SOMA.Effort,\n", - " SOMA.EnclosedObject,\n", - " SOMA.Enclosing,\n", - " SOMA.EndEffectorPositioning,\n", - " SOMA.Manipulating,\n", - " SOMA.Episode,\n", - " SOMA.ExcludedObject,\n", - " SOMA.ExecutableFile,\n", - " SOMA.Executable_Code,\n", - " SOMA.ExecutableFormat,\n", - " SOMA.SchematicTheory,\n", - " SOMA.ExecutableSoftware,\n", - " SOMA.Software,\n", - " SOMA.RelationAdjacentRole,\n", - " SOMA.ExperiencerRole,\n", - " SOMA.ExtractedObject,\n", - " SOMA.PhysicalQuality,\n", - " SOMA.FailedAttempt,\n", - " SOMA.FaultySoftware,\n", - " SOMA.SoftwareDiagnosis,\n", - " SOMA.PhysicalAcquiring,\n", - " SOMA.Finger,\n", - " SOMA.Hand,\n", - " SOMA.FixedJoint,\n", - " SOMA.MovableJoint,\n", - " SOMA.Flipping,\n", - " SOMA.FloatingJoint,\n", - " SOMA.Fluid,\n", - " SOMA.MovedObject,\n", - " SOMA.Focusing,\n", - " SOMA.Foolishness,\n", - " SOMA.ForgettingIncorrectInformation,\n", - " SOMA.InformationDismissal,\n", - " SOMA.ForgettingIrrelevantInformation,\n", - " SOMA.Language,\n", - " SOMA.Item,\n", - " SOMA.FunctionalDesign,\n", - " SOMA.FunctionalDiagnosis,\n", - " SOMA.LocatumRole,\n", - " SOMA.RelatumRole,\n", - " SOMA.GetTaskParameter,\n", - " SOMA.Planning,\n", - " SOMA.GraphDatabase,\n", - " SOMA.GraphQueryLanguage,\n", - " SOMA.QueryLanguage,\n", - " SOMA.GraspTransfer,\n", - " SOMA.Grasping,\n", - " SOMA.Releasing,\n", - " SOMA.GraspingMotion,\n", - " SOMA.IntermediateGrasp,\n", - " SOMA.PowerGrasp,\n", - " SOMA.PrecisionGrasp,\n", - " SOMA.PrehensileMotion,\n", - " SOMA.ReleasingMotion,\n", - " SOMA.GreenColor,\n", - " SOMA.Gripper,\n", - " SOMA.PrehensileEffector,\n", - " SOMA.HardwareDiagnosis,\n", - " SOMA.HasQualityRegion,\n", - " SOMA.Head,\n", - " SOMA.HeadMovement,\n", - " SOMA.HeadTurning,\n", - " SOMA.Holding,\n", - " SOMA.HostRole,\n", - " SOMA.PluginSpecification,\n", - " SOMA.Human-readable_Programming_Language,\n", - " SOMA.Source_Code,\n", - " SOMA.HumanActivityRecording,\n", - " SOMA.Imagining,\n", - " SOMA.Impediment,\n", - " SOMA.Obstacle,\n", - " SOMA.RestrictedObject,\n", - " SOMA.StateTransition,\n", - " SOMA.Inability,\n", - " SOMA.IncompatibleSoftware,\n", - " SOMA.InductiveReasoning,\n", - " SOMA.Infeasibility,\n", - " SOMA.InferenceRules,\n", - " SOMA.InformationRetrieval,\n", - " SOMA.InformationStorage,\n", - " SOMA.StoredObject,\n", - " SOMA.InsertedObject,\n", - " SOMA.Instructions,\n", - " SOMA.Interpreting,\n", - " SOMA.InterrogativeClause,\n", - " SOMA.Introspecting,\n", - " SOMA.KineticFrictionAttribute,\n", - " SOMA.KinoDynamicData,\n", - " SOMA.Room,\n", - " SOMA.KnowledgeRepresentationLanguage,\n", - " SOMA.Labeling,\n", - " SOMA.Text,\n", - " SOMA.Leaning,\n", - " SOMA.PosturalMoving,\n", - " SOMA.Learning,\n", - " SOMA.Leg,\n", - " SOMA.LimbMotion,\n", - " SOMA.LinkedObject,\n", - " SOMA.LinkageState,\n", - " SOMA.SpatioTemporalRole,\n", - " SOMA.SpatialRelationRole,\n", - " SOMA.LocutionaryAction,\n", - " SOMA.LookingAt,\n", - " SOMA.LookingFor,\n", - " SOMA.Lowering,\n", - " SOMA.PhysicalAction,\n", - " SOMA.Markup_Language,\n", - " SOMA.Masterful,\n", - " SOMA.Material,\n", - " SOMA.MedicalDiagnosis,\n", - " SOMA.Memorizing,\n", - " SOMA.MentalAction,\n", - " SOMA.MeshShape,\n", - " SOMA.MeshShapeData,\n", - " SOMA.MetaCognitionEvaluationTopic,\n", - " SOMA.MetaCognitionTopic,\n", - " SOMA.MetaCognitionMemoryTopic,\n", - " SOMA.MetaCognitionPlanningTopic,\n", - " SOMA.ThinkAloudTopic,\n", - " SOMA.MetacognitiveControlling,\n", - " SOMA.MetacognitiveMonitoring,\n", - " SOMA.Mixing,\n", - " SOMA.MixingTheory,\n", - " SOMA.MonitoringJointState,\n", - " SOMA.Proprioceiving,\n", - " SOMA.MovingAway,\n", - " SOMA.MovingTo,\n", - " SOMA.Natural_Language,\n", - " SOMA.Natural_Language_Text,\n", - " SOMA.Ontology,\n", - " SOMA.Ontology_Language,\n", - " SOMA.Option,\n", - " SOMA.Singleton,\n", - " SOMA.Orienting,\n", - " SOMA.Positioning,\n", - " SOMA.Origin,\n", - " SOMA.ParkingArms,\n", - " SOMA.PhaseTransition,\n", - " SOMA.PhysicalAccessibility,\n", - " SOMA.PhysicalBlockage,\n", - " SOMA.PhysicalExistence,\n", - " SOMA.PhysicalState,\n", - " SOMA.PhysicsProcess,\n", - " SOMA.PlacingTheory,\n", - " SOMA.PlanarJoint,\n", - " SOMA.PluginRole,\n", - " SOMA.Pourable,\n", - " SOMA.PouredObject,\n", - " SOMA.Pouring,\n", - " SOMA.PouringInto,\n", - " SOMA.PouringOnto,\n", - " SOMA.Prediction,\n", - " SOMA.Prospecting,\n", - " SOMA.Predilection,\n", - " SOMA.PreferenceOrder,\n", - " SOMA.PreferenceRegion,\n", - " SOMA.PrismaticJoint,\n", - " SOMA.ProcessFlow,\n", - " SOMA.Progression,\n", - " ...]" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" } ], "execution_count": 4 @@ -11098,72 +208,19 @@ }, { "cell_type": "code", - "source": "ontology_manager.get_ontology_descendant_classes(ontology_designed_container_class)", + "source": "ontology_manager.get_ontology_descendant_classes(ontology_designed_container_class)[:5]", "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.390521Z", - "start_time": "2024-04-09T19:18:14.379633Z" + "end_time": "2024-04-10T08:57:42.712925Z", + "start_time": "2024-04-10T08:57:42.671595Z" } }, "outputs": [ { "data": { "text/plain": [ - "[SOMA.Bottle,\n", - " SOMA.DesignedContainer,\n", - " SOMA.Bowl,\n", - " SOMA.Crockery,\n", - " SOMA.Box,\n", - " SOMA.BreakfastPlate,\n", - " SOMA.Plate,\n", - " SOMA.Building,\n", - " SOMA.Carafe,\n", - " SOMA.CerealBox,\n", - " SOMA.CoffeeCarafe,\n", - " SOMA.Cup,\n", - " SOMA.Cupboard,\n", - " SOMA.DinnerPlate,\n", - " SOMA.Dishwasher,\n", - " SOMA.Dispenser,\n", - " SOMA.Drawer,\n", - " SOMA.Glass,\n", - " SOMA.JamJar,\n", - " SOMA.Jar,\n", - " SOMA.KitchenCabinet,\n", - " SOMA.MilkBottle,\n", - " SOMA.MilkPack,\n", - " SOMA.Pack,\n", - " SOMA.NutellaJar,\n", - " SOMA.Oven,\n", - " SOMA.Pan,\n", - " SOMA.PastaBowl,\n", - " SOMA.PepperShaker,\n", - " SOMA.Shaker,\n", - " SOMA.Pot,\n", - " SOMA.RaspberryJamJar,\n", - " SOMA.Refrigerator,\n", - " SOMA.SaladBowl,\n", - " SOMA.SaltShaker,\n", - " SOMA.SoupPot,\n", - " SOMA.SugarDispenser,\n", - " SOMA.TrashContainer,\n", - " SOMA.Wardrobe,\n", - " SOMA.WaterBottle,\n", - " SOMA.WaterGlass,\n", - " SOMA.WineBottle,\n", - " SOMA.WineGlass,\n", - " SOMA-HOME.CustomContainerConcept,\n", - " SOMA-HOME.AnotherCustomContainerConcept,\n", - " SOMA-HOME.OntologyPlaceHolderObject,\n", - " SOMA-HOME.Ontotable,\n", - " SOMA-HOME.Ontostool,\n", - " SOMA-HOME.Ontoshelf,\n", - " SOMA-HOME.Ontoegg_tray,\n", - " SOMA-HOME.OntologyLiquidHolderObject,\n", - " SOMA-HOME.Ontocup,\n", - " SOMA-HOME.Ontobowl,\n", - " SOMA-HOME.Ontopitcher]" + "[SOMA.Bottle, SOMA.DesignedContainer, SOMA.Bowl, SOMA.Crockery, SOMA.Box]" ] }, "execution_count": 5, @@ -11196,8 +253,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.403703Z", - "start_time": "2024-04-09T19:18:14.390954Z" + "end_time": "2024-04-10T08:57:42.719808Z", + "start_time": "2024-04-10T08:57:42.713457Z" } }, "outputs": [], @@ -11223,8 +280,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.417703Z", - "start_time": "2024-04-09T19:18:14.404158Z" + "end_time": "2024-04-10T08:57:42.734129Z", + "start_time": "2024-04-10T08:57:42.720243Z" } }, "outputs": [ @@ -11232,15 +289,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712690294.412744]: -------------------\n", - "[INFO] [1712690294.413391]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712690294.413740]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712690294.414044]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA-HOME.CustomContainerConcept, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712690294.414533]: Subclasses: []\n", - "[INFO] [1712690294.414967]: Properties: []\n", - "[INFO] [1712690294.415613]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712690294.416013]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712690294.416384]: Inverse Restrictions: []\n", + "[INFO] [1712739462.729020]: -------------------\n", + "[INFO] [1712739462.729701]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712739462.730114]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712739462.730508]: Ancestors: {DUL.Entity, SOMA-HOME.CustomContainerConcept, owl.Thing, DUL.PhysicalObject, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object}\n", + "[INFO] [1712739462.730864]: Subclasses: []\n", + "[INFO] [1712739462.731275]: Properties: []\n", + "[INFO] [1712739462.731982]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712739462.732359]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712739462.732684]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -11264,8 +321,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.433630Z", - "start_time": "2024-04-09T19:18:14.418134Z" + "end_time": "2024-04-10T08:57:42.750094Z", + "start_time": "2024-04-10T08:57:42.734735Z" } }, "outputs": [ @@ -11273,15 +330,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712690294.428489]: -------------------\n", - "[INFO] [1712690294.429125]: SOMA.Cup \n", - "[INFO] [1712690294.429589]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712690294.430025]: Ancestors: {DUL.PhysicalArtifact, DUL.Entity, SOMA.DesignedTool, SOMA.Tableware, SOMA.Crockery, owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, SOMA.Cup, DUL.PhysicalObject}\n", - "[INFO] [1712690294.430442]: Subclasses: []\n", - "[INFO] [1712690294.430912]: Properties: [rdf-schema.isDefinedBy, SOMA.hasPhysicalComponent, rdf-schema.comment]\n", - "[INFO] [1712690294.431616]: Instances: []\n", - "[INFO] [1712690294.431995]: Direct Instances: []\n", - "[INFO] [1712690294.432343]: Inverse Restrictions: []\n" + "[INFO] [1712739462.745093]: -------------------\n", + "[INFO] [1712739462.745678]: SOMA.Cup \n", + "[INFO] [1712739462.746118]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712739462.746609]: Ancestors: {DUL.Entity, owl.Thing, SOMA.Crockery, SOMA.Tableware, DUL.PhysicalObject, SOMA.DesignedTool, SOMA.Cup, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object}\n", + "[INFO] [1712739462.747034]: Subclasses: []\n", + "[INFO] [1712739462.747410]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPhysicalComponent]\n", + "[INFO] [1712739462.747963]: Instances: []\n", + "[INFO] [1712739462.748371]: Direct Instances: []\n", + "[INFO] [1712739462.748766]: Inverse Restrictions: []\n" ] } ], @@ -11309,8 +366,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.444913Z", - "start_time": "2024-04-09T19:18:14.434129Z" + "end_time": "2024-04-10T08:57:42.761802Z", + "start_time": "2024-04-10T08:57:42.750557Z" } }, "outputs": [], @@ -11340,8 +397,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.455692Z", - "start_time": "2024-04-09T19:18:14.446037Z" + "end_time": "2024-04-10T08:57:42.776853Z", + "start_time": "2024-04-10T08:57:42.762725Z" } }, "outputs": [ @@ -11384,8 +441,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.469901Z", - "start_time": "2024-04-09T19:18:14.456158Z" + "end_time": "2024-04-10T08:57:42.786965Z", + "start_time": "2024-04-10T08:57:42.777316Z" } }, "outputs": [], @@ -11424,8 +481,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.485135Z", - "start_time": "2024-04-09T19:18:14.470540Z" + "end_time": "2024-04-10T08:57:42.806855Z", + "start_time": "2024-04-10T08:57:42.787427Z" } }, "outputs": [], @@ -11455,8 +512,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.498679Z", - "start_time": "2024-04-09T19:18:14.485612Z" + "end_time": "2024-04-10T08:57:42.816580Z", + "start_time": "2024-04-10T08:57:42.807358Z" } }, "outputs": [], @@ -11500,8 +557,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.508742Z", - "start_time": "2024-04-09T19:18:14.499111Z" + "end_time": "2024-04-10T08:57:42.831445Z", + "start_time": "2024-04-10T08:57:42.817041Z" } }, "outputs": [ @@ -11555,8 +612,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-09T19:18:14.522795Z", - "start_time": "2024-04-09T19:18:14.509169Z" + "end_time": "2024-04-10T08:57:42.841257Z", + "start_time": "2024-04-10T08:57:42.832029Z" } }, "outputs": [ @@ -11596,8 +653,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T19:18:15.178858Z", - "start_time": "2024-04-09T19:18:14.523230Z" + "end_time": "2024-04-10T08:57:43.516804Z", + "start_time": "2024-04-10T08:57:42.841695Z" } }, "cell_type": "code", @@ -11636,8 +693,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T19:18:15.187180Z", - "start_time": "2024-04-09T19:18:15.179648Z" + "end_time": "2024-04-10T08:57:43.597343Z", + "start_time": "2024-04-10T08:57:43.517497Z" } }, "cell_type": "code", @@ -11664,8 +721,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T19:18:15.270787Z", - "start_time": "2024-04-09T19:18:15.187653Z" + "end_time": "2024-04-10T08:57:43.674048Z", + "start_time": "2024-04-10T08:57:43.597836Z" } }, "cell_type": "code", @@ -11693,8 +750,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T19:18:15.298235Z", - "start_time": "2024-04-09T19:18:15.271829Z" + "end_time": "2024-04-10T08:57:43.700668Z", + "start_time": "2024-04-10T08:57:43.674569Z" } }, "cell_type": "code", @@ -11714,8 +771,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T19:18:15.308277Z", - "start_time": "2024-04-09T19:18:15.298747Z" + "end_time": "2024-04-10T08:57:43.711189Z", + "start_time": "2024-04-10T08:57:43.701329Z" } }, "cell_type": "code", @@ -11742,8 +799,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T19:18:15.323064Z", - "start_time": "2024-04-09T19:18:15.308703Z" + "end_time": "2024-04-10T08:57:43.725915Z", + "start_time": "2024-04-10T08:57:43.711798Z" } }, "cell_type": "code", @@ -11770,8 +827,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T19:18:24.042541Z", - "start_time": "2024-04-09T19:18:15.324343Z" + "end_time": "2024-04-10T08:57:52.345465Z", + "start_time": "2024-04-10T08:57:43.726425Z" } }, "cell_type": "code", @@ -11811,8 +868,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712690296\n", - " nsecs: 782019138\n", + " secs: 1712739465\n", + " nsecs: 198551654\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -11823,13 +880,7 @@ " x: -0.0\n", " y: 0.0\n", " z: 0.15234391170286138\n", - " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n", - "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", - "Remove body failed\n", - "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", - "Remove body failed\n", - "b3Warning[examples/SharedMemory/PhysicsDirect.cpp,866]:\n", - "Remove body failed\n" + " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n" ] } ], @@ -11846,8 +897,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-09T19:18:24.097192Z", - "start_time": "2024-04-09T19:18:24.043256Z" + "end_time": "2024-04-10T08:57:52.396743Z", + "start_time": "2024-04-10T08:57:52.347399Z" } }, "cell_type": "code", @@ -11857,7 +908,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712690304.095454]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712739472.395099]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], diff --git a/src/pycram/designators/action_designator.py b/src/pycram/designators/action_designator.py index eeabfb9a6..9ed0b14a8 100644 --- a/src/pycram/designators/action_designator.py +++ b/src/pycram/designators/action_designator.py @@ -19,13 +19,16 @@ CloseActionPerformable, GraspingActionPerformable, ReleaseActionPerformable) from ..datastructures.pose import Pose +from ..ontology.ontology import OntologyConceptHolder + class MoveTorsoAction(ActionDesignatorDescription): """ Action Designator for Moving the torso of the robot up and down """ - def __init__(self, positions: List[float], resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): + def __init__(self, positions: List[float], resolver=None, + ontology_concept_holders: Optional[List[OntologyConceptHolder]] = None): """ Create a designator description to move the torso of the robot up and down. diff --git a/src/pycram/helper.py b/src/pycram/helper.py index e1f363f32..390150f3b 100644 --- a/src/pycram/helper.py +++ b/src/pycram/helper.py @@ -22,7 +22,11 @@ class Singleton(type): """ Metaclass for singletons """ + _instances = {} + """ + Dictionary of singleton child classes inheriting from this metaclass, keyed by child class objects. + """ def __call__(cls, *args, **kwargs): if cls not in cls._instances: diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index 617f54841..1afae7676 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -256,9 +256,7 @@ def get_ontology_classes_by_condition(self, condition: Callable, first_match_onl if first_match_only: return out_classes - if len(out_classes): - for out_class in out_classes: self.print_ontology_class(out_class) - else: + if not out_classes: rospy.loginfo(f"No class with {kwargs} is found in the ontology {self.main_ontology}") return out_classes diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py index 0cc524917..9684bbb00 100644 --- a/src/pycram/ontology/ontology_common.py +++ b/src/pycram/ontology/ontology_common.py @@ -73,17 +73,11 @@ def __eq__(self, other: OntologyConceptHolder) -> bool: return ((self.ontology_concept == other.ontology_concept) or (self.ontology_concept.name == other.ontology_concept.name)) - def get_default_designator(self) -> DesignatorDescription: - """ - :return: The first element of designators if there is, else None - """ - return self.designators[0] if len(self.designators) > 0 else None - @classmethod def get_ontology_concepts_by_class(cls, ontology_concept_class: Type[owlready2.Thing]) -> List[owlready2.Thing]: """ + Get a list of ontology concepts for a given class :ontology_concept_class: An ontology concept class - :return: A list of ontology concepts for a given class """ return list(itertools.chain( *[concept_holder.ontology_concept @@ -91,10 +85,10 @@ def get_ontology_concepts_by_class(cls, ontology_concept_class: Type[owlready2.T if owlready2.issubclass(concept_holder.ontology_concept, ontology_concept_class)])) @classmethod - def get_ontology_concept_by_name(cls, ontology_concept_name: str) -> owlready2.Thing: + def get_ontology_concept_by_name(cls, ontology_concept_name: str) -> owlready2.Thing | None: """ + Get the ontology concept holder for one of a given name if exists, otherwise None :ontology_concept_name: Name of an ontology concept - Return the ontology concept holder for one of a given name if exists, otherwise None """ concept_holder = cls.__all_ontology_concept_holders.get(ontology_concept_name) return concept_holder.ontology_concept if concept_holder else None @@ -103,25 +97,25 @@ def get_ontology_concept_by_name(cls, ontology_concept_name: str) -> owlready2.T def get_ontology_concept_holders_by_class(cls, ontology_concept_class: Type[owlready2.Thing])\ -> List[OntologyConceptHolder]: """ + Get a list of ontology concept holders for the given ontology concept class :ontology_concept_class: An ontology concept class - Return a list of ontology concept holders for the given ontology concept class """ return [concept_holder for concept_holder in cls.__all_ontology_concept_holders.values() if isinstance(concept_holder.ontology_concept, ontology_concept_class)] @classmethod - def get_ontology_concept_holder_by_name(cls, ontology_concept_name: str) -> OntologyConceptHolder: + def get_ontology_concept_holder_by_name(cls, ontology_concept_name: str) -> OntologyConceptHolder | None: """ + Get the ontology concept holder for one of a given name if exists, otherwise None :ontology_concept_name: Name of an ontology concept - Return the ontology concept holder for one of a given name if exists, otherwise None """ return cls.__all_ontology_concept_holders.get(ontology_concept_name) @classmethod def get_ontology_concept_of_designator(cls, designator) -> owlready2.Thing | None: """ + Get the corresponding ontology concept for a given designator :param designator: A designator associated with an ontology concept - :return: The corresponding ontology concept for a given designator """ for ontology_concept_holder in cls.__all_ontology_concept_holders.values(): if designator in ontology_concept_holder.designators: @@ -131,12 +125,18 @@ def get_ontology_concept_of_designator(cls, designator) -> owlready2.Thing | Non @classmethod def get_designators_of_ontology_concept(cls, ontology_concept_name: str) -> List[DesignatorDescription]: """ + Get the corresponding designators associated with the given ontology concept :param ontology_concept_name: An ontology concept name - :return: The corresponding designators associated with the given ontology concept """ return cls.__all_ontology_concept_holders[ontology_concept_name].designators \ if ontology_concept_name in cls.__all_ontology_concept_holders else [] + def get_default_designator(self) -> DesignatorDescription | None: + """ + Get the first element of designators if there is, else None + """ + return self.designators[0] if len(self.designators) > 0 else None + def has_designator(self, designator) -> bool: """ :return: True if a given designator was registered by this ontology concept holder, either by itself or under From 9b526eaf3d703138e12c0f0358160ac9ae3af9d1 Mon Sep 17 00:00:00 2001 From: duc than Date: Wed, 10 Apr 2024 11:33:25 +0200 Subject: [PATCH 15/26] Add OntologyConceptHolderStore as singleton to store all instances of OntologyConceptHolder --- examples/ontology.ipynb | 170 ++++++++++++------------- src/pycram/designator.py | 4 +- src/pycram/ontology/ontology.py | 13 +- src/pycram/ontology/ontology_common.py | 143 +++++++++++---------- test/test_ontology.py | 4 +- 5 files changed, 173 insertions(+), 161 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 9e7986efa..06ddf51b6 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.351645Z", - "start_time": "2024-04-10T08:57:41.771320Z" + "end_time": "2024-04-10T09:29:15.097614Z", + "start_time": "2024-04-10T09:29:14.561810Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.358363Z", - "start_time": "2024-04-10T08:57:42.352340Z" + "end_time": "2024-04-10T09:29:15.111916Z", + "start_time": "2024-04-10T09:29:15.100302Z" } }, "outputs": [], @@ -98,7 +98,7 @@ "cell_type": "code", "source": [ "from pycram.ontology.ontology import OntologyManager, SOMA_HOME_ONTOLOGY_IRI\n", - "from pycram.ontology.ontology_common import OntologyConceptHolder\n", + "from pycram.ontology.ontology_common import OntologyConceptHolderStore, OntologyConceptHolder\n", "\n", "ontology_manager = OntologyManager(SOMA_HOME_ONTOLOGY_IRI)\n", "main_ontology = ontology_manager.main_ontology\n", @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.486850Z", - "start_time": "2024-04-10T08:57:42.358864Z" + "end_time": "2024-04-10T09:29:15.240463Z", + "start_time": "2024-04-10T09:29:15.112585Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712739462.483887]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712739462.484472]: - main namespace: SOMA-HOME\n", - "[INFO] [1712739462.484767]: - loaded ontologies:\n", - "[INFO] [1712739462.485029]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712739462.485276]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712739462.485512]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712741355.236634]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712741355.237358]: - main namespace: SOMA-HOME\n", + "[INFO] [1712741355.237774]: - loaded ontologies:\n", + "[INFO] [1712741355.238242]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712741355.238634]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712741355.239001]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -172,8 +172,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.670908Z", - "start_time": "2024-04-10T08:57:42.487665Z" + "end_time": "2024-04-10T09:29:15.426555Z", + "start_time": "2024-04-10T09:29:15.241198Z" } }, "outputs": [ @@ -181,15 +181,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712739462.606708]: -------------------\n", - "[INFO] [1712739462.607441]: SOMA.DesignedContainer \n", - "[INFO] [1712739462.607896]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712739462.608299]: Ancestors: {DUL.Entity, owl.Thing, DUL.PhysicalObject, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object}\n", - "[INFO] [1712739462.608640]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712739462.609059]: Properties: [rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712739462.666620]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712739462.667104]: Direct Instances: []\n", - "[INFO] [1712739462.667545]: Inverse Restrictions: []\n", + "[INFO] [1712741355.361279]: -------------------\n", + "[INFO] [1712741355.361968]: SOMA.DesignedContainer \n", + "[INFO] [1712741355.362467]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712741355.362964]: Ancestors: {DUL.Entity, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712741355.363419]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712741355.364023]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712741355.421937]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712741355.422666]: Direct Instances: []\n", + "[INFO] [1712741355.423130]: Inverse Restrictions: []\n", "DUL.PhysicalObject\n", "[SOMA.Affordance, SOMA.Disposition]\n" ] @@ -212,8 +212,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.712925Z", - "start_time": "2024-04-10T08:57:42.671595Z" + "end_time": "2024-04-10T09:29:15.468614Z", + "start_time": "2024-04-10T09:29:15.427046Z" } }, "outputs": [ @@ -253,8 +253,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.719808Z", - "start_time": "2024-04-10T08:57:42.713457Z" + "end_time": "2024-04-10T09:29:15.474676Z", + "start_time": "2024-04-10T09:29:15.469071Z" } }, "outputs": [], @@ -280,8 +280,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.734129Z", - "start_time": "2024-04-10T08:57:42.720243Z" + "end_time": "2024-04-10T09:29:15.488308Z", + "start_time": "2024-04-10T09:29:15.475096Z" } }, "outputs": [ @@ -289,15 +289,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712739462.729020]: -------------------\n", - "[INFO] [1712739462.729701]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712739462.730114]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712739462.730508]: Ancestors: {DUL.Entity, SOMA-HOME.CustomContainerConcept, owl.Thing, DUL.PhysicalObject, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object}\n", - "[INFO] [1712739462.730864]: Subclasses: []\n", - "[INFO] [1712739462.731275]: Properties: []\n", - "[INFO] [1712739462.731982]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712739462.732359]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712739462.732684]: Inverse Restrictions: []\n", + "[INFO] [1712741355.483855]: -------------------\n", + "[INFO] [1712741355.484493]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712741355.484834]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712741355.485160]: Ancestors: {DUL.Entity, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, SOMA-HOME.CustomContainerConcept, DUL.PhysicalObject}\n", + "[INFO] [1712741355.485446]: Subclasses: []\n", + "[INFO] [1712741355.485775]: Properties: []\n", + "[INFO] [1712741355.486328]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712741355.486628]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712741355.486907]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -321,8 +321,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.750094Z", - "start_time": "2024-04-10T08:57:42.734735Z" + "end_time": "2024-04-10T09:29:15.504438Z", + "start_time": "2024-04-10T09:29:15.488749Z" } }, "outputs": [ @@ -330,15 +330,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712739462.745093]: -------------------\n", - "[INFO] [1712739462.745678]: SOMA.Cup \n", - "[INFO] [1712739462.746118]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712739462.746609]: Ancestors: {DUL.Entity, owl.Thing, SOMA.Crockery, SOMA.Tableware, DUL.PhysicalObject, SOMA.DesignedTool, SOMA.Cup, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object}\n", - "[INFO] [1712739462.747034]: Subclasses: []\n", - "[INFO] [1712739462.747410]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPhysicalComponent]\n", - "[INFO] [1712739462.747963]: Instances: []\n", - "[INFO] [1712739462.748371]: Direct Instances: []\n", - "[INFO] [1712739462.748766]: Inverse Restrictions: []\n" + "[INFO] [1712741355.499820]: -------------------\n", + "[INFO] [1712741355.500599]: SOMA.Cup \n", + "[INFO] [1712741355.501076]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712741355.501438]: Ancestors: {SOMA.Tableware, DUL.Entity, owl.Thing, SOMA.DesignedTool, SOMA.Cup, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, SOMA.Crockery, DUL.PhysicalObject}\n", + "[INFO] [1712741355.501751]: Subclasses: []\n", + "[INFO] [1712741355.502123]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712741355.502666]: Instances: []\n", + "[INFO] [1712741355.502951]: Direct Instances: []\n", + "[INFO] [1712741355.503224]: Inverse Restrictions: []\n" ] } ], @@ -366,8 +366,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.761802Z", - "start_time": "2024-04-10T08:57:42.750557Z" + "end_time": "2024-04-10T09:29:15.520842Z", + "start_time": "2024-04-10T09:29:15.504936Z" } }, "outputs": [], @@ -391,14 +391,14 @@ " ontology_parent_class=ontology_designed_container_class)\n", "another_custom_container_concept = another_custom_container_designator.ontology_concept_holders[0].ontology_concept \n", "print(f\"Ontology concept: {another_custom_container_concept.name} of class {type(another_custom_container_concept)}\")\n", - "another_custom_container_designator = OntologyConceptHolder.get_ontology_concept_holder_by_name(main_ontology.AnotherCustomContainerConcept.instances()[0].name).get_default_designator()\n", + "another_custom_container_designator = OntologyConceptHolderStore().get_ontology_concept_holder_by_name(main_ontology.AnotherCustomContainerConcept.instances()[0].name).get_default_designator()\n", "print(f\"Designator: {another_custom_container_designator.names[0]} of type {type(another_custom_container_designator)}\")" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.776853Z", - "start_time": "2024-04-10T08:57:42.762725Z" + "end_time": "2024-04-10T09:29:15.531486Z", + "start_time": "2024-04-10T09:29:15.522600Z" } }, "outputs": [ @@ -441,8 +441,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.786965Z", - "start_time": "2024-04-10T08:57:42.777316Z" + "end_time": "2024-04-10T09:29:15.546064Z", + "start_time": "2024-04-10T09:29:15.531973Z" } }, "outputs": [], @@ -481,8 +481,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.806855Z", - "start_time": "2024-04-10T08:57:42.787427Z" + "end_time": "2024-04-10T09:29:15.561019Z", + "start_time": "2024-04-10T09:29:15.546787Z" } }, "outputs": [], @@ -512,8 +512,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.816580Z", - "start_time": "2024-04-10T08:57:42.807358Z" + "end_time": "2024-04-10T09:29:15.574655Z", + "start_time": "2024-04-10T09:29:15.561491Z" } }, "outputs": [], @@ -557,8 +557,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.831445Z", - "start_time": "2024-04-10T08:57:42.817041Z" + "end_time": "2024-04-10T09:29:15.584774Z", + "start_time": "2024-04-10T09:29:15.575097Z" } }, "outputs": [ @@ -607,13 +607,13 @@ "print(f'{generic_edible_class.name} object types:')\n", "for edible_ontology_concept in generic_edible_class.direct_instances():\n", " print(edible_ontology_concept,\n", - " [des.types for des in OntologyConceptHolder.get_ontology_concept_holder_by_name(edible_ontology_concept.name).designators])\n" + " [des.types for des in OntologyConceptHolderStore().get_ontology_concept_holder_by_name(edible_ontology_concept.name).designators])\n" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T08:57:42.841257Z", - "start_time": "2024-04-10T08:57:42.832029Z" + "end_time": "2024-04-10T09:29:15.598796Z", + "start_time": "2024-04-10T09:29:15.585236Z" } }, "outputs": [ @@ -653,8 +653,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T08:57:43.516804Z", - "start_time": "2024-04-10T08:57:42.841695Z" + "end_time": "2024-04-10T09:29:16.298581Z", + "start_time": "2024-04-10T09:29:15.599243Z" } }, "cell_type": "code", @@ -693,8 +693,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T08:57:43.597343Z", - "start_time": "2024-04-10T08:57:43.517497Z" + "end_time": "2024-04-10T09:29:16.382279Z", + "start_time": "2024-04-10T09:29:16.299748Z" } }, "cell_type": "code", @@ -721,8 +721,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T08:57:43.674048Z", - "start_time": "2024-04-10T08:57:43.597836Z" + "end_time": "2024-04-10T09:29:16.479685Z", + "start_time": "2024-04-10T09:29:16.382899Z" } }, "cell_type": "code", @@ -750,8 +750,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T08:57:43.700668Z", - "start_time": "2024-04-10T08:57:43.674569Z" + "end_time": "2024-04-10T09:29:16.498575Z", + "start_time": "2024-04-10T09:29:16.480239Z" } }, "cell_type": "code", @@ -771,8 +771,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T08:57:43.711189Z", - "start_time": "2024-04-10T08:57:43.701329Z" + "end_time": "2024-04-10T09:29:16.508817Z", + "start_time": "2024-04-10T09:29:16.499248Z" } }, "cell_type": "code", @@ -799,8 +799,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T08:57:43.725915Z", - "start_time": "2024-04-10T08:57:43.711798Z" + "end_time": "2024-04-10T09:29:16.523960Z", + "start_time": "2024-04-10T09:29:16.509283Z" } }, "cell_type": "code", @@ -827,8 +827,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T08:57:52.345465Z", - "start_time": "2024-04-10T08:57:43.726425Z" + "end_time": "2024-04-10T09:29:25.260864Z", + "start_time": "2024-04-10T09:29:16.524952Z" } }, "cell_type": "code", @@ -868,8 +868,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712739465\n", - " nsecs: 198551654\n", + " secs: 1712741358\n", + " nsecs: 4107475\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -897,8 +897,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T08:57:52.396743Z", - "start_time": "2024-04-10T08:57:52.347399Z" + "end_time": "2024-04-10T09:29:25.314345Z", + "start_time": "2024-04-10T09:29:25.262838Z" } }, "cell_type": "code", @@ -908,7 +908,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712739472.395099]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712741365.312500]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], diff --git a/src/pycram/designator.py b/src/pycram/designator.py index 04d92ea9b..d1eb31d66 100644 --- a/src/pycram/designator.py +++ b/src/pycram/designator.py @@ -471,11 +471,11 @@ def init_ontology_concepts(self, ontology_concept_classes: Dict[str, Type[owlrea :param ontology_concept_classes: The ontology concept classes that the action is categorized as or associated with :param ontology_concept_name: The name of the ontology concept instance to be created """ - from .ontology.ontology_common import OntologyConceptHolder + from .ontology.ontology_common import OntologyConceptHolderStore, OntologyConceptHolder if not self.ontology_concept_holders: for concept_name, concept_class in ontology_concept_classes.items(): if concept_class: - existing_holders = OntologyConceptHolder.get_ontology_concept_holders_by_class(concept_class) + existing_holders = OntologyConceptHolderStore().get_ontology_concept_holders_by_class(concept_class) self.ontology_concept_holders.extend(existing_holders if existing_holders \ else [OntologyConceptHolder(concept_class(concept_name))]) diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index 1afae7676..a2c89910b 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -18,7 +18,7 @@ from pycram.helper import Singleton from pycram.designator import DesignatorDescription, ObjectDesignatorDescription -from pycram.ontology.ontology_common import OntologyConceptHolder +from pycram.ontology.ontology_common import OntologyConceptHolderStore, OntologyConceptHolder SOMA_HOME_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA-HOME.owl" SOMA_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA.owl" @@ -391,7 +391,8 @@ def create_ontology_linked_designator(self, designator_name: str, designator_cla def create_ontology_linked_designator_by_concept(self, designator_name: str, designator_class: Type[DesignatorDescription], - ontology_concept_class: Type[owlready2.Thing]) -> DesignatorDescription: + ontology_concept_class: Type[owlready2.Thing]) \ + -> DesignatorDescription | None: """ Create a designator that belongs to a given ontology concept class @@ -401,7 +402,7 @@ def create_ontology_linked_designator_by_concept(self, designator_name: str, :return: An object designator associated with the given ontology concept class """ ontology_concept_name = f'{designator_name}_concept' - if len(OntologyConceptHolder.get_designators_of_ontology_concept(ontology_concept_name)) > 0: + if len(OntologyConceptHolderStore().get_designators_of_ontology_concept(ontology_concept_name)) > 0: rospy.logerr(f"A designator named [{designator_name}] is already created for ontology concept [{ontology_concept_name}]") return None @@ -410,7 +411,7 @@ def create_ontology_linked_designator_by_concept(self, designator_name: str, else designator_class() # Link designator with an ontology concept of `ontology_concept_class` - ontology_concept_holder = OntologyConceptHolder.get_ontology_concept_holder_by_name(ontology_concept_name) + ontology_concept_holder = OntologyConceptHolderStore().get_ontology_concept_holder_by_name(ontology_concept_name) if ontology_concept_holder is None: ontology_concept_holder = OntologyConceptHolder(ontology_concept_class(name=ontology_concept_name, namespace=self.main_ontology)) @@ -465,7 +466,7 @@ def get_designators_by_subject_predicate(subject: DesignatorDescription, :return: List of object designators """ return list(itertools.chain( - *[OntologyConceptHolder.get_designators_of_ontology_concept(object_concept.name) + *[OntologyConceptHolderStore().get_designators_of_ontology_concept(object_concept.name) for subject_concept_holder in subject.ontology_concept_holders for object_concept in getattr(subject_concept_holder.ontology_concept, predicate_name) if hasattr(subject_concept_holder.ontology_concept, predicate_name)])) @@ -491,5 +492,5 @@ def destroy_ontology_class(ontology_class, destroy_instances: bool = True): if destroy_instances: for ontology_individual in ontology_class.instances(): destroy_entity(ontology_individual) - OntologyConceptHolder.remove_ontology_concept(ontology_class.name) + OntologyConceptHolderStore().remove_ontology_concept(ontology_class.name) destroy_entity(ontology_class) diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py index 9684bbb00..00a6e94f0 100644 --- a/src/pycram/ontology/ontology_common.py +++ b/src/pycram/ontology/ontology_common.py @@ -1,9 +1,9 @@ from __future__ import annotations -import logging from typing import Callable, Dict, List, Optional, Type, TYPE_CHECKING import rospy +from pycram.helper import Singleton if TYPE_CHECKING: from pycram.designator import DesignatorDescription @@ -15,121 +15,124 @@ rospy.logwarn("Could not import owlready2, OntologyConceptHolder will not be available!") -class OntologyConceptHolder(object): +class OntologyConceptHolderStore(object, metaclass=Singleton): """ - Wrapper of an ontology concept that is either dynamically created or loaded from an ontology. - NOTE: Since an ontology concept class, after being saved into an ontology file, must be reusable in the next time - the ontology is loaded, there must be no other attributes should be created for it aside from ones inherited from `owlready2.Thing`! + Singleton class storing all instances of `OntologyConceptHolder` Attributes ---------- - ontology_concept: owlready2.Thing - An ontology concept, either dynamically created, or loaded from an ontology - designators: List[DesignatorDescription] - List of designators associated with this ontology concept - resolve: Callable - A callable used to resolve the designators to whatever of interest, like designators or their resolving results + __all_ontology_concept_holders: Dict[str, OntologyConceptHolder] + Dictionary of all ontology concept holders, keyed by concept names """ - __all_ontology_concept_holders: Dict[str, OntologyConceptHolder] = {} - """ - Dictionary of all ontology concept holders, keyed by concept names - """ - - def __init__(self, ontology_concept: owlready2.Thing): + def __init__(self): """ - :param ontology_concept: An ontology concept instance + Initialize the OntologyConceptHolderStore """ if owlready2 is None: return + self.__all_ontology_concept_holders: Dict[str, OntologyConceptHolder] = {} - self.ontology_concept: owlready2.Thing = ontology_concept - self.designators: List[DesignatorDescription] = [] - self.resolve: Optional[Callable] = None - if ontology_concept.name in self.__all_ontology_concept_holders: - rospy.logerr(f"OntologyConceptHolder for [{ontology_concept.name}] was already created!") - self.__all_ontology_concept_holders.setdefault(ontology_concept.name, self) + def add_ontology_concept_holder(self, concept_name: str, concept_holder: OntologyConceptHolder): + if concept_name in self.__all_ontology_concept_holders: + rospy.logerr(f"OntologyConceptHolder for `{concept_name}` was already created!") + else: + self.__all_ontology_concept_holders.setdefault(concept_name, concept_holder) - @property - def name(self) -> str: + def remove_ontology_concept(self, ontology_concept_name: str): """ - :return: Ontology concept name - """ - return self.ontology_concept.name if self.ontology_concept else "" - - @classmethod - def remove_ontology_concept(cls, ontology_concept_name: str): - """ - Remove an ontology concept from `__all_ontology_concept_holders` + Remove an ontology concept from the store """ - if ontology_concept_name in cls.__all_ontology_concept_holders: - del cls.__all_ontology_concept_holders[ontology_concept_name] + if ontology_concept_name in self.__all_ontology_concept_holders: + del self.__all_ontology_concept_holders[ontology_concept_name] - def __eq__(self, other: OntologyConceptHolder) -> bool: - """ - Equality check based on name of the ontology concept - :param other: Other ontology concept instance to check against - """ - return ((self.ontology_concept == other.ontology_concept) or - (self.ontology_concept.name == other.ontology_concept.name)) - - @classmethod - def get_ontology_concepts_by_class(cls, ontology_concept_class: Type[owlready2.Thing]) -> List[owlready2.Thing]: + def get_ontology_concepts_by_class(self, ontology_concept_class: Type[owlready2.Thing]) -> List[owlready2.Thing]: """ Get a list of ontology concepts for a given class :ontology_concept_class: An ontology concept class """ return list(itertools.chain( *[concept_holder.ontology_concept - for concept_holder in cls.__all_ontology_concept_holders.values() + for concept_holder in self.__all_ontology_concept_holders.values() if owlready2.issubclass(concept_holder.ontology_concept, ontology_concept_class)])) - @classmethod - def get_ontology_concept_by_name(cls, ontology_concept_name: str) -> owlready2.Thing | None: + def get_ontology_concept_by_name(self, ontology_concept_name: str) -> owlready2.Thing | None: """ Get the ontology concept holder for one of a given name if exists, otherwise None :ontology_concept_name: Name of an ontology concept """ - concept_holder = cls.__all_ontology_concept_holders.get(ontology_concept_name) + concept_holder = self.__all_ontology_concept_holders.get(ontology_concept_name) return concept_holder.ontology_concept if concept_holder else None - @classmethod - def get_ontology_concept_holders_by_class(cls, ontology_concept_class: Type[owlready2.Thing])\ + def get_ontology_concept_holders_by_class(self, ontology_concept_class: Type[owlready2.Thing]) \ -> List[OntologyConceptHolder]: """ Get a list of ontology concept holders for the given ontology concept class :ontology_concept_class: An ontology concept class """ - return [concept_holder for concept_holder in cls.__all_ontology_concept_holders.values() + return [concept_holder for concept_holder in self.__all_ontology_concept_holders.values() if isinstance(concept_holder.ontology_concept, ontology_concept_class)] - @classmethod - def get_ontology_concept_holder_by_name(cls, ontology_concept_name: str) -> OntologyConceptHolder | None: + def get_ontology_concept_holder_by_name(self, ontology_concept_name: str) -> OntologyConceptHolder | None: """ Get the ontology concept holder for one of a given name if exists, otherwise None :ontology_concept_name: Name of an ontology concept """ - return cls.__all_ontology_concept_holders.get(ontology_concept_name) + return self.__all_ontology_concept_holders.get(ontology_concept_name) - @classmethod - def get_ontology_concept_of_designator(cls, designator) -> owlready2.Thing | None: + @staticmethod + def get_ontology_concept_of_designator(designator: DesignatorDescription) -> owlready2.Thing | None: """ Get the corresponding ontology concept for a given designator :param designator: A designator associated with an ontology concept """ - for ontology_concept_holder in cls.__all_ontology_concept_holders.values(): - if designator in ontology_concept_holder.designators: - return ontology_concept_holder.ontology_concept - return None + return designator.ontology_concept_holders[0].ontology_concept - @classmethod - def get_designators_of_ontology_concept(cls, ontology_concept_name: str) -> List[DesignatorDescription]: + def get_designators_of_ontology_concept(self, ontology_concept_name: str) -> List[DesignatorDescription]: """ Get the corresponding designators associated with the given ontology concept :param ontology_concept_name: An ontology concept name """ - return cls.__all_ontology_concept_holders[ontology_concept_name].designators \ - if ontology_concept_name in cls.__all_ontology_concept_holders else [] + return self.__all_ontology_concept_holders[ontology_concept_name].designators \ + if ontology_concept_name in self.__all_ontology_concept_holders else [] + + +class OntologyConceptHolder(object): + """ + Wrapper of an ontology concept that is either dynamically created or loaded from an ontology. + NOTE: Since an ontology concept class, after being saved into an ontology file, must be reusable in the next time + the ontology is loaded, there must be no other attributes should be created for it aside from ones inherited from `owlready2.Thing`! + + Attributes + ---------- + ontology_concept: owlready2.Thing + An ontology concept, either dynamically created, or loaded from an ontology + designators: List[DesignatorDescription] + List of designators associated with this ontology concept + resolve: Callable + A callable used to resolve the designators to whatever of interest, like designators or their resolving results + """ + + def __init__(self, ontology_concept: owlready2.Thing): + """ + :param ontology_concept: An ontology concept instance + """ + if owlready2 is None: + return + + self.ontology_concept: owlready2.Thing = ontology_concept + self.designators: List[DesignatorDescription] = [] + self.resolve: Optional[Callable] = None + + self.concept_holder_store: OntologyConceptHolderStore = OntologyConceptHolderStore() + self.concept_holder_store.add_ontology_concept_holder(ontology_concept.name, self) + + @property + def name(self) -> str: + """ + :return: Ontology concept name + """ + return self.ontology_concept.name if self.ontology_concept else "" def get_default_designator(self) -> DesignatorDescription | None: """ @@ -150,3 +153,11 @@ def has_designator(self, designator) -> bool: if hasattr(our_designator, "name") and (getattr(our_designator, "name") == getattr(designator, "name")): return True return False + + def __eq__(self, other: OntologyConceptHolder) -> bool: + """ + Equality check based on name of the ontology concept + :param other: Other ontology concept instance to check against + """ + return ((self.ontology_concept == other.ontology_concept) or + (self.ontology_concept.name == other.ontology_concept.name)) diff --git a/test/test_ontology.py b/test/test_ontology.py index 97120053d..6d382f9f1 100644 --- a/test/test_ontology.py +++ b/test/test_ontology.py @@ -16,7 +16,7 @@ rospy.logwarn("Could not import owlready2, Ontology unit-tests could not run!") from pycram.ontology.ontology import OntologyManager, SOMA_ONTOLOGY_IRI -from pycram.ontology.ontology_common import OntologyConceptHolder +from pycram.ontology.ontology_common import OntologyConceptHolderStore, OntologyConceptHolder class TestOntologyManager(unittest.TestCase): @@ -150,7 +150,7 @@ def test_ontology_class_destruction(self): self.ontology_manager.destroy_ontology_class(dynamic_ontology_concept_class) self.assertIsNone(self.ontology_manager.get_ontology_class(concept_class_name)) - self.assertFalse(OntologyConceptHolder.get_ontology_concepts_by_class(dynamic_ontology_concept_class)) + self.assertFalse(OntologyConceptHolderStore().get_ontology_concepts_by_class(dynamic_ontology_concept_class)) if __name__ == '__main__': From a028b6fecdf70a71eff4da680ddb865e6d5e7e1b Mon Sep 17 00:00:00 2001 From: duc than Date: Wed, 10 Apr 2024 11:37:47 +0200 Subject: [PATCH 16/26] OntologyConceptHolderStore: get_ontology_concept_of_designator() more robust --- src/pycram/ontology/ontology_common.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py index 00a6e94f0..adf6d8f6a 100644 --- a/src/pycram/ontology/ontology_common.py +++ b/src/pycram/ontology/ontology_common.py @@ -33,11 +33,11 @@ def __init__(self): return self.__all_ontology_concept_holders: Dict[str, OntologyConceptHolder] = {} - def add_ontology_concept_holder(self, concept_name: str, concept_holder: OntologyConceptHolder): - if concept_name in self.__all_ontology_concept_holders: - rospy.logerr(f"OntologyConceptHolder for `{concept_name}` was already created!") + def add_ontology_concept_holder(self, ontology_concept_name: str, ontology_concept_holder: OntologyConceptHolder): + if ontology_concept_name in self.__all_ontology_concept_holders: + rospy.logerr(f"OntologyConceptHolder for `{ontology_concept_name}` was already created!") else: - self.__all_ontology_concept_holders.setdefault(concept_name, concept_holder) + self.__all_ontology_concept_holders.setdefault(ontology_concept_name, ontology_concept_holder) def remove_ontology_concept(self, ontology_concept_name: str): """ @@ -86,7 +86,7 @@ def get_ontology_concept_of_designator(designator: DesignatorDescription) -> owl Get the corresponding ontology concept for a given designator :param designator: A designator associated with an ontology concept """ - return designator.ontology_concept_holders[0].ontology_concept + return designator.ontology_concept_holders[0].ontology_concept if designator.ontology_concept_holders else None def get_designators_of_ontology_concept(self, ontology_concept_name: str) -> List[DesignatorDescription]: """ From 7a3ed97367edad50d99f96a60ffc7da1a8336669 Mon Sep 17 00:00:00 2001 From: duc than Date: Wed, 10 Apr 2024 11:45:56 +0200 Subject: [PATCH 17/26] ontology.ipynb correct text --- examples/ontology.ipynb | 169 ++++++++++++++++++++-------------------- 1 file changed, 85 insertions(+), 84 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 06ddf51b6..71d3ac7bc 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.097614Z", - "start_time": "2024-04-10T09:29:14.561810Z" + "end_time": "2024-04-10T09:47:27.650702Z", + "start_time": "2024-04-10T09:47:27.093810Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.111916Z", - "start_time": "2024-04-10T09:29:15.100302Z" + "end_time": "2024-04-10T09:47:27.671286Z", + "start_time": "2024-04-10T09:47:27.654590Z" } }, "outputs": [], @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.240463Z", - "start_time": "2024-04-10T09:29:15.112585Z" + "end_time": "2024-04-10T09:47:27.799282Z", + "start_time": "2024-04-10T09:47:27.672056Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712741355.236634]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712741355.237358]: - main namespace: SOMA-HOME\n", - "[INFO] [1712741355.237774]: - loaded ontologies:\n", - "[INFO] [1712741355.238242]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712741355.238634]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712741355.239001]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712742447.793950]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712742447.794780]: - main namespace: SOMA-HOME\n", + "[INFO] [1712742447.795398]: - loaded ontologies:\n", + "[INFO] [1712742447.796080]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712742447.796760]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712742447.797448]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -137,11 +137,12 @@ "- `owlready2` API does not have very robust support for client classes to inherit from theirs with added (non-semantic) attributes, particularly in our case, where classes like `DesignatorDescription` have their `metaclass` as `ABCMeta`, while it is `EntityClass` that is the metaclass used for basically all concepts (classes, properties) in `owlready2`. Since those two metaclasses just bear no relationship, for the inheritance to work, the only way is to create a child metaclass with both of those as parents, however without full support by `owlready2`, plus the second reason below will point out it's not worth the effort.\n", "\n", "\n", - "- Essentially, we will have new ontology concept classes created dynamically, if their types inherit from `owlready2.Thing`, all custom-type non-semantic (of types known only by PyCram) attributes, which are defined by their own in child classes, will apparently be not savable into the ontology by `owlready2` api. Then the next time the ontology is loaded, those same dynamic classes will not be created anymore, thus without those attributes either, causing running error.\n", + "- Essentially, we will have new ontology concept classes created dynamically, if their types inherit from `owlready2.Thing`, all custom non-semantic (of types known only by PyCram) attributes, which are defined by their own in child classes, will apparently be not savable into the ontology by `owlready2` api. Then the next time the ontology is loaded, those same dynamic classes will not be created anymore, thus without those attributes either, causing running error.\n", + "\n", "As such, in short, an ontology concept class, either newly created on the fly or loaded from ontologies, has to be `owlready2.Thing` or its pure derived class (without non-semantic attributes), so to make itself reusable upon reloading.\n", "\n", "Notable attributes:\n", - "- `ontology_concept`: An ontology concept of `owlready2.Thing` type, either dynamically created, or loaded from an ontology\n", + "- `ontology_concept`: An ontology concept of `owlready2.Thing` type or its pure child class (without custom non-semantic attributes), either dynamically created, or loaded from an ontology\n", "- `designators`: a list of `DesignatorDescription` instances associated with `ontology_concept`\n", "- `resolve`: a `Callable` typically returning a list of `DesignatorDescription` as specific designators, like `designators` or its subset, inferred from the ontology concept. In fact, it can be resolved to anything else relevant, up to the caller." ], @@ -172,8 +173,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.426555Z", - "start_time": "2024-04-10T09:29:15.241198Z" + "end_time": "2024-04-10T09:47:27.986518Z", + "start_time": "2024-04-10T09:47:27.800064Z" } }, "outputs": [ @@ -181,15 +182,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712741355.361279]: -------------------\n", - "[INFO] [1712741355.361968]: SOMA.DesignedContainer \n", - "[INFO] [1712741355.362467]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712741355.362964]: Ancestors: {DUL.Entity, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712741355.363419]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712741355.364023]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712741355.421937]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712741355.422666]: Direct Instances: []\n", - "[INFO] [1712741355.423130]: Inverse Restrictions: []\n", + "[INFO] [1712742447.919733]: -------------------\n", + "[INFO] [1712742447.920618]: SOMA.DesignedContainer \n", + "[INFO] [1712742447.921315]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712742447.922017]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", + "[INFO] [1712742447.922514]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712742447.923107]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", + "[INFO] [1712742447.981534]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712742447.982279]: Direct Instances: []\n", + "[INFO] [1712742447.982951]: Inverse Restrictions: []\n", "DUL.PhysicalObject\n", "[SOMA.Affordance, SOMA.Disposition]\n" ] @@ -212,8 +213,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.468614Z", - "start_time": "2024-04-10T09:29:15.427046Z" + "end_time": "2024-04-10T09:47:28.028445Z", + "start_time": "2024-04-10T09:47:27.986992Z" } }, "outputs": [ @@ -253,8 +254,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.474676Z", - "start_time": "2024-04-10T09:29:15.469071Z" + "end_time": "2024-04-10T09:47:28.034803Z", + "start_time": "2024-04-10T09:47:28.028922Z" } }, "outputs": [], @@ -280,8 +281,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.488308Z", - "start_time": "2024-04-10T09:29:15.475096Z" + "end_time": "2024-04-10T09:47:28.049197Z", + "start_time": "2024-04-10T09:47:28.035233Z" } }, "outputs": [ @@ -289,15 +290,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712741355.483855]: -------------------\n", - "[INFO] [1712741355.484493]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712741355.484834]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712741355.485160]: Ancestors: {DUL.Entity, owl.Thing, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, SOMA-HOME.CustomContainerConcept, DUL.PhysicalObject}\n", - "[INFO] [1712741355.485446]: Subclasses: []\n", - "[INFO] [1712741355.485775]: Properties: []\n", - "[INFO] [1712741355.486328]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712741355.486628]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712741355.486907]: Inverse Restrictions: []\n", + "[INFO] [1712742448.044010]: -------------------\n", + "[INFO] [1712742448.044707]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712742448.045195]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712742448.045612]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA-HOME.CustomContainerConcept, DUL.Entity}\n", + "[INFO] [1712742448.046012]: Subclasses: []\n", + "[INFO] [1712742448.046483]: Properties: []\n", + "[INFO] [1712742448.047163]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712742448.047491]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712742448.047799]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -321,8 +322,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.504438Z", - "start_time": "2024-04-10T09:29:15.488749Z" + "end_time": "2024-04-10T09:47:28.065290Z", + "start_time": "2024-04-10T09:47:28.049777Z" } }, "outputs": [ @@ -330,15 +331,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712741355.499820]: -------------------\n", - "[INFO] [1712741355.500599]: SOMA.Cup \n", - "[INFO] [1712741355.501076]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712741355.501438]: Ancestors: {SOMA.Tableware, DUL.Entity, owl.Thing, SOMA.DesignedTool, SOMA.Cup, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, SOMA.Crockery, DUL.PhysicalObject}\n", - "[INFO] [1712741355.501751]: Subclasses: []\n", - "[INFO] [1712741355.502123]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712741355.502666]: Instances: []\n", - "[INFO] [1712741355.502951]: Direct Instances: []\n", - "[INFO] [1712741355.503224]: Inverse Restrictions: []\n" + "[INFO] [1712742448.059884]: -------------------\n", + "[INFO] [1712742448.060637]: SOMA.Cup \n", + "[INFO] [1712742448.061118]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712742448.061589]: Ancestors: {SOMA.Cup, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Tableware, DUL.Object, SOMA.Crockery, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712742448.062034]: Subclasses: []\n", + "[INFO] [1712742448.062543]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712742448.063246]: Instances: []\n", + "[INFO] [1712742448.063722]: Direct Instances: []\n", + "[INFO] [1712742448.064067]: Inverse Restrictions: []\n" ] } ], @@ -366,8 +367,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.520842Z", - "start_time": "2024-04-10T09:29:15.504936Z" + "end_time": "2024-04-10T09:47:28.076386Z", + "start_time": "2024-04-10T09:47:28.065749Z" } }, "outputs": [], @@ -397,8 +398,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.531486Z", - "start_time": "2024-04-10T09:29:15.522600Z" + "end_time": "2024-04-10T09:47:28.091044Z", + "start_time": "2024-04-10T09:47:28.077724Z" } }, "outputs": [ @@ -441,8 +442,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.546064Z", - "start_time": "2024-04-10T09:29:15.531973Z" + "end_time": "2024-04-10T09:47:28.101411Z", + "start_time": "2024-04-10T09:47:28.091481Z" } }, "outputs": [], @@ -481,8 +482,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.561019Z", - "start_time": "2024-04-10T09:29:15.546787Z" + "end_time": "2024-04-10T09:47:28.121978Z", + "start_time": "2024-04-10T09:47:28.101875Z" } }, "outputs": [], @@ -512,8 +513,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.574655Z", - "start_time": "2024-04-10T09:29:15.561491Z" + "end_time": "2024-04-10T09:47:28.131575Z", + "start_time": "2024-04-10T09:47:28.122619Z" } }, "outputs": [], @@ -557,8 +558,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.584774Z", - "start_time": "2024-04-10T09:29:15.575097Z" + "end_time": "2024-04-10T09:47:28.146518Z", + "start_time": "2024-04-10T09:47:28.132022Z" } }, "outputs": [ @@ -612,8 +613,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:29:15.598796Z", - "start_time": "2024-04-10T09:29:15.585236Z" + "end_time": "2024-04-10T09:47:28.156561Z", + "start_time": "2024-04-10T09:47:28.146950Z" } }, "outputs": [ @@ -653,8 +654,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:29:16.298581Z", - "start_time": "2024-04-10T09:29:15.599243Z" + "end_time": "2024-04-10T09:47:28.866087Z", + "start_time": "2024-04-10T09:47:28.157036Z" } }, "cell_type": "code", @@ -693,8 +694,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:29:16.382279Z", - "start_time": "2024-04-10T09:29:16.299748Z" + "end_time": "2024-04-10T09:47:28.948764Z", + "start_time": "2024-04-10T09:47:28.867115Z" } }, "cell_type": "code", @@ -721,8 +722,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:29:16.479685Z", - "start_time": "2024-04-10T09:29:16.382899Z" + "end_time": "2024-04-10T09:47:29.032320Z", + "start_time": "2024-04-10T09:47:28.949531Z" } }, "cell_type": "code", @@ -750,8 +751,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:29:16.498575Z", - "start_time": "2024-04-10T09:29:16.480239Z" + "end_time": "2024-04-10T09:47:29.060349Z", + "start_time": "2024-04-10T09:47:29.033013Z" } }, "cell_type": "code", @@ -771,8 +772,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:29:16.508817Z", - "start_time": "2024-04-10T09:29:16.499248Z" + "end_time": "2024-04-10T09:47:29.070823Z", + "start_time": "2024-04-10T09:47:29.060857Z" } }, "cell_type": "code", @@ -799,8 +800,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:29:16.523960Z", - "start_time": "2024-04-10T09:29:16.509283Z" + "end_time": "2024-04-10T09:47:29.085672Z", + "start_time": "2024-04-10T09:47:29.071585Z" } }, "cell_type": "code", @@ -827,8 +828,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:29:25.260864Z", - "start_time": "2024-04-10T09:29:16.524952Z" + "end_time": "2024-04-10T09:47:37.720239Z", + "start_time": "2024-04-10T09:47:29.086553Z" } }, "cell_type": "code", @@ -868,8 +869,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712741358\n", - " nsecs: 4107475\n", + " secs: 1712742450\n", + " nsecs: 563389778\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -897,8 +898,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:29:25.314345Z", - "start_time": "2024-04-10T09:29:25.262838Z" + "end_time": "2024-04-10T09:47:37.764176Z", + "start_time": "2024-04-10T09:47:37.720783Z" } }, "cell_type": "code", @@ -908,7 +909,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712741365.312500]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712742457.761645]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], From f1853df37e5cae88ac7c76ffe3c4ba624d9631d7 Mon Sep 17 00:00:00 2001 From: duc than Date: Wed, 10 Apr 2024 12:03:59 +0200 Subject: [PATCH 18/26] ontology.ipynb Example2: resolve by ontology_concept_holder to be exact --- examples/ontology.ipynb | 185 +++++++++++++------------ src/pycram/designator.py | 4 +- src/pycram/ontology/ontology_common.py | 6 +- 3 files changed, 101 insertions(+), 94 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 71d3ac7bc..044699ca3 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:27.650702Z", - "start_time": "2024-04-10T09:47:27.093810Z" + "end_time": "2024-04-10T10:02:31.438749Z", + "start_time": "2024-04-10T10:02:30.901319Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:27.671286Z", - "start_time": "2024-04-10T09:47:27.654590Z" + "end_time": "2024-04-10T10:02:31.450818Z", + "start_time": "2024-04-10T10:02:31.441447Z" } }, "outputs": [], @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:27.799282Z", - "start_time": "2024-04-10T09:47:27.672056Z" + "end_time": "2024-04-10T10:02:31.573466Z", + "start_time": "2024-04-10T10:02:31.451351Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712742447.793950]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712742447.794780]: - main namespace: SOMA-HOME\n", - "[INFO] [1712742447.795398]: - loaded ontologies:\n", - "[INFO] [1712742447.796080]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712742447.796760]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712742447.797448]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712743351.569257]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712743351.570004]: - main namespace: SOMA-HOME\n", + "[INFO] [1712743351.570413]: - loaded ontologies:\n", + "[INFO] [1712743351.570875]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712743351.571353]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712743351.571772]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -173,8 +173,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:27.986518Z", - "start_time": "2024-04-10T09:47:27.800064Z" + "end_time": "2024-04-10T10:02:31.757377Z", + "start_time": "2024-04-10T10:02:31.574509Z" } }, "outputs": [ @@ -182,15 +182,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712742447.919733]: -------------------\n", - "[INFO] [1712742447.920618]: SOMA.DesignedContainer \n", - "[INFO] [1712742447.921315]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712742447.922017]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, DUL.Entity}\n", - "[INFO] [1712742447.922514]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712742447.923107]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition]\n", - "[INFO] [1712742447.981534]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712742447.982279]: Direct Instances: []\n", - "[INFO] [1712742447.982951]: Inverse Restrictions: []\n", + "[INFO] [1712743351.693836]: -------------------\n", + "[INFO] [1712743351.694486]: SOMA.DesignedContainer \n", + "[INFO] [1712743351.694980]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712743351.695464]: Ancestors: {owl.Thing, SOMA.DesignedContainer, DUL.PhysicalObject, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity}\n", + "[INFO] [1712743351.695923]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712743351.696444]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", + "[INFO] [1712743351.752942]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712743351.753533]: Direct Instances: []\n", + "[INFO] [1712743351.754012]: Inverse Restrictions: []\n", "DUL.PhysicalObject\n", "[SOMA.Affordance, SOMA.Disposition]\n" ] @@ -213,8 +213,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.028445Z", - "start_time": "2024-04-10T09:47:27.986992Z" + "end_time": "2024-04-10T10:02:31.799485Z", + "start_time": "2024-04-10T10:02:31.757903Z" } }, "outputs": [ @@ -254,8 +254,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.034803Z", - "start_time": "2024-04-10T09:47:28.028922Z" + "end_time": "2024-04-10T10:02:31.805502Z", + "start_time": "2024-04-10T10:02:31.799931Z" } }, "outputs": [], @@ -281,8 +281,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.049197Z", - "start_time": "2024-04-10T09:47:28.035233Z" + "end_time": "2024-04-10T10:02:31.823684Z", + "start_time": "2024-04-10T10:02:31.805922Z" } }, "outputs": [ @@ -290,15 +290,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712742448.044010]: -------------------\n", - "[INFO] [1712742448.044707]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712742448.045195]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712742448.045612]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject, SOMA-HOME.CustomContainerConcept, DUL.Entity}\n", - "[INFO] [1712742448.046012]: Subclasses: []\n", - "[INFO] [1712742448.046483]: Properties: []\n", - "[INFO] [1712742448.047163]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712742448.047491]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712742448.047799]: Inverse Restrictions: []\n", + "[INFO] [1712743351.819126]: -------------------\n", + "[INFO] [1712743351.819886]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712743351.820289]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712743351.820617]: Ancestors: {owl.Thing, SOMA.DesignedContainer, DUL.PhysicalObject, DUL.DesignedArtifact, SOMA-HOME.CustomContainerConcept, DUL.PhysicalArtifact, DUL.Object, DUL.Entity}\n", + "[INFO] [1712743351.820916]: Subclasses: []\n", + "[INFO] [1712743351.821270]: Properties: []\n", + "[INFO] [1712743351.821870]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712743351.822187]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712743351.822466]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -322,8 +322,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.065290Z", - "start_time": "2024-04-10T09:47:28.049777Z" + "end_time": "2024-04-10T10:02:31.838906Z", + "start_time": "2024-04-10T10:02:31.824115Z" } }, "outputs": [ @@ -331,15 +331,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712742448.059884]: -------------------\n", - "[INFO] [1712742448.060637]: SOMA.Cup \n", - "[INFO] [1712742448.061118]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712742448.061589]: Ancestors: {SOMA.Cup, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalArtifact, SOMA.Tableware, DUL.Object, SOMA.Crockery, owl.Thing, DUL.PhysicalObject, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712742448.062034]: Subclasses: []\n", - "[INFO] [1712742448.062543]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712742448.063246]: Instances: []\n", - "[INFO] [1712742448.063722]: Direct Instances: []\n", - "[INFO] [1712742448.064067]: Inverse Restrictions: []\n" + "[INFO] [1712743351.834959]: -------------------\n", + "[INFO] [1712743351.835459]: SOMA.Cup \n", + "[INFO] [1712743351.835790]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712743351.836090]: Ancestors: {owl.Thing, SOMA.Cup, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Tableware, DUL.DesignedArtifact, SOMA.Crockery, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedTool}\n", + "[INFO] [1712743351.836375]: Subclasses: []\n", + "[INFO] [1712743351.836708]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPhysicalComponent]\n", + "[INFO] [1712743351.837236]: Instances: []\n", + "[INFO] [1712743351.837514]: Direct Instances: []\n", + "[INFO] [1712743351.837778]: Inverse Restrictions: []\n" ] } ], @@ -367,8 +367,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.076386Z", - "start_time": "2024-04-10T09:47:28.065749Z" + "end_time": "2024-04-10T10:02:31.851341Z", + "start_time": "2024-04-10T10:02:31.839333Z" } }, "outputs": [], @@ -398,8 +398,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.091044Z", - "start_time": "2024-04-10T09:47:28.077724Z" + "end_time": "2024-04-10T10:02:31.867926Z", + "start_time": "2024-04-10T10:02:31.852527Z" } }, "outputs": [ @@ -442,8 +442,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.101411Z", - "start_time": "2024-04-10T09:47:28.091481Z" + "end_time": "2024-04-10T10:02:31.882124Z", + "start_time": "2024-04-10T10:02:31.868394Z" } }, "outputs": [], @@ -482,8 +482,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.121978Z", - "start_time": "2024-04-10T09:47:28.101875Z" + "end_time": "2024-04-10T10:02:31.897395Z", + "start_time": "2024-04-10T10:02:31.882749Z" } }, "outputs": [], @@ -513,8 +513,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.131575Z", - "start_time": "2024-04-10T09:47:28.122619Z" + "end_time": "2024-04-10T10:02:31.911392Z", + "start_time": "2024-04-10T10:02:31.897958Z" } }, "outputs": [], @@ -558,8 +558,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.146518Z", - "start_time": "2024-04-10T09:47:28.132022Z" + "end_time": "2024-04-10T10:02:31.921643Z", + "start_time": "2024-04-10T10:02:31.911996Z" } }, "outputs": [ @@ -613,8 +613,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.156561Z", - "start_time": "2024-04-10T09:47:28.146950Z" + "end_time": "2024-04-10T10:02:31.936181Z", + "start_time": "2024-04-10T10:02:31.922192Z" } }, "outputs": [ @@ -654,8 +654,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.866087Z", - "start_time": "2024-04-10T09:47:28.157036Z" + "end_time": "2024-04-10T10:02:32.597677Z", + "start_time": "2024-04-10T10:02:31.937050Z" } }, "cell_type": "code", @@ -679,7 +679,6 @@ "name": "stderr", "output_type": "stream", "text": [ - "Scalar element defined multiple times: limit\n", "Scalar element defined multiple times: limit\n" ] } @@ -694,8 +693,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:47:28.948764Z", - "start_time": "2024-04-10T09:47:28.867115Z" + "end_time": "2024-04-10T10:02:32.711697Z", + "start_time": "2024-04-10T10:02:32.598432Z" } }, "cell_type": "code", @@ -711,7 +710,15 @@ " ontology_property_parent_class=soma.affordsBearer,\n", " ontology_inverse_property_parent_class=soma.isBearerAffordedBy)" ], - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Scalar element defined multiple times: limit\n" + ] + } + ], "execution_count": 17 }, { @@ -722,8 +729,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:47:29.032320Z", - "start_time": "2024-04-10T09:47:28.949531Z" + "end_time": "2024-04-10T10:02:32.793256Z", + "start_time": "2024-04-10T10:02:32.712354Z" } }, "cell_type": "code", @@ -751,8 +758,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:47:29.060349Z", - "start_time": "2024-04-10T09:47:29.033013Z" + "end_time": "2024-04-10T10:02:32.812423Z", + "start_time": "2024-04-10T10:02:32.794005Z" } }, "cell_type": "code", @@ -772,18 +779,18 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:47:29.070823Z", - "start_time": "2024-04-10T09:47:29.060857Z" + "end_time": "2024-04-10T10:02:32.822156Z", + "start_time": "2024-04-10T10:02:32.813188Z" } }, "cell_type": "code", "source": [ - "milk_box_concept = milk_box_designator.get_default_ontology_concept()\n", + "milk_box_concept_holder = milk_box_designator.ontology_concept_holders[0]\n", "def milk_box_concept_resolve(): \n", " object_designator = ontology_manager.get_designators_by_subject_predicate(subject=milk_box_designator, predicate_name=POURABLE_INTO_PREDICATE_NAME)[0]\n", " return object_designator, object_designator.resolve()\n", "\n", - "milk_box_concept.resolve = milk_box_concept_resolve" + "milk_box_concept_holder.resolve = milk_box_concept_resolve" ], "outputs": [], "execution_count": 20 @@ -792,21 +799,21 @@ "metadata": {}, "cell_type": "markdown", "source": [ - "Here, for demonstration purpose only, we specify the resolving result by __`milk_box_concept`__ as __`cup`__, the first-registered (default) pourable-into target milk holder, utilizing the ontology relation setup above.\n", + "Here, for demonstration purpose only, we specify the resolving result by __`milk_box_concept_holder`__ as __`cup`__, the first-registered (default) pourable-into target milk holder, utilizing the ontology relation setup above.\n", "\n", - "Now, we can query the milk box's target liquid holder by resolving `milk_box_concept`" + "Now, we can query the milk box's target liquid holder by resolving `milk_box_concept_holder`" ] }, { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:47:29.085672Z", - "start_time": "2024-04-10T09:47:29.071585Z" + "end_time": "2024-04-10T10:02:32.836189Z", + "start_time": "2024-04-10T10:02:32.822715Z" } }, "cell_type": "code", "source": [ - "target_milk_holder_designator, target_milk_holder = milk_box_concept.resolve()\n", + "target_milk_holder_designator, target_milk_holder = milk_box_concept_holder.resolve()\n", "print('Pickup target object:', target_milk_holder.name)" ], "outputs": [ @@ -828,8 +835,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:47:37.720239Z", - "start_time": "2024-04-10T09:47:29.086553Z" + "end_time": "2024-04-10T10:02:41.550812Z", + "start_time": "2024-04-10T10:02:32.836752Z" } }, "cell_type": "code", @@ -869,8 +876,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712742450\n", - " nsecs: 563389778\n", + " secs: 1712743354\n", + " nsecs: 354226112\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -898,8 +905,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T09:47:37.764176Z", - "start_time": "2024-04-10T09:47:37.720783Z" + "end_time": "2024-04-10T10:02:41.610082Z", + "start_time": "2024-04-10T10:02:41.552624Z" } }, "cell_type": "code", @@ -909,7 +916,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712742457.761645]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712743361.608181]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] } ], diff --git a/src/pycram/designator.py b/src/pycram/designator.py index d1eb31d66..9348b0cea 100644 --- a/src/pycram/designator.py +++ b/src/pycram/designator.py @@ -369,11 +369,11 @@ def get_slots(self) -> List[str]: def copy(self) -> DesignatorDescription: return self - def get_default_ontology_concept(self) -> owlready2.Thing: + def get_default_ontology_concept(self) -> owlready2.Thing | None: """ Returns the first element of ontology_concept_holders if there is, else None """ - return self.ontology_concept_holders[0] if len(self.ontology_concept_holders) > 0 else None + return self.ontology_concept_holders[0].ontology_concept if self.ontology_concept_holders else None class ActionDesignatorDescription(DesignatorDescription, Language): """ diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py index adf6d8f6a..2f5edda8c 100644 --- a/src/pycram/ontology/ontology_common.py +++ b/src/pycram/ontology/ontology_common.py @@ -81,12 +81,12 @@ def get_ontology_concept_holder_by_name(self, ontology_concept_name: str) -> Ont return self.__all_ontology_concept_holders.get(ontology_concept_name) @staticmethod - def get_ontology_concept_of_designator(designator: DesignatorDescription) -> owlready2.Thing | None: + def get_ontology_concepts_of_designator(designator: DesignatorDescription) -> List[owlready2.Thing]: """ - Get the corresponding ontology concept for a given designator + Get the corresponding ontology concepts for a given designator :param designator: A designator associated with an ontology concept """ - return designator.ontology_concept_holders[0].ontology_concept if designator.ontology_concept_holders else None + return [concept_holder.ontology_concept for concept_holder in designator.ontology_concept_holders] def get_designators_of_ontology_concept(self, ontology_concept_name: str) -> List[DesignatorDescription]: """ From d6714d496ba428199d3b1777a1426051d5571028 Mon Sep 17 00:00:00 2001 From: duc than Date: Thu, 11 Apr 2024 10:26:15 +0200 Subject: [PATCH 19/26] More typehint for None possible return --- examples/ontology.ipynb | 191 ++++++++++++++----------- src/pycram/ontology/ontology.py | 32 +++-- src/pycram/ontology/ontology_common.py | 11 +- 3 files changed, 134 insertions(+), 100 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 044699ca3..8b3f6b3c0 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.438749Z", - "start_time": "2024-04-10T10:02:30.901319Z" + "end_time": "2024-04-11T08:24:39.522124Z", + "start_time": "2024-04-11T08:24:39.016385Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.450818Z", - "start_time": "2024-04-10T10:02:31.441447Z" + "end_time": "2024-04-11T08:24:39.542164Z", + "start_time": "2024-04-11T08:24:39.525495Z" } }, "outputs": [], @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.573466Z", - "start_time": "2024-04-10T10:02:31.451351Z" + "end_time": "2024-04-11T08:24:39.671316Z", + "start_time": "2024-04-11T08:24:39.544849Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712743351.569257]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712743351.570004]: - main namespace: SOMA-HOME\n", - "[INFO] [1712743351.570413]: - loaded ontologies:\n", - "[INFO] [1712743351.570875]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712743351.571353]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712743351.571772]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712823879.667754]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712823879.668523]: - main namespace: SOMA-HOME\n", + "[INFO] [1712823879.669010]: - loaded ontologies:\n", + "[INFO] [1712823879.669414]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712823879.669714]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712823879.669980]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -173,8 +173,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.757377Z", - "start_time": "2024-04-10T10:02:31.574509Z" + "end_time": "2024-04-11T08:24:39.856450Z", + "start_time": "2024-04-11T08:24:39.672026Z" } }, "outputs": [ @@ -182,15 +182,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712743351.693836]: -------------------\n", - "[INFO] [1712743351.694486]: SOMA.DesignedContainer \n", - "[INFO] [1712743351.694980]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712743351.695464]: Ancestors: {owl.Thing, SOMA.DesignedContainer, DUL.PhysicalObject, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.Object, DUL.Entity}\n", - "[INFO] [1712743351.695923]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712743351.696444]: Properties: [rdf-schema.label, rdf-schema.isDefinedBy, SOMA.hasDisposition, rdf-schema.comment]\n", - "[INFO] [1712743351.752942]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712743351.753533]: Direct Instances: []\n", - "[INFO] [1712743351.754012]: Inverse Restrictions: []\n", + "[INFO] [1712823879.791475]: -------------------\n", + "[INFO] [1712823879.792207]: SOMA.DesignedContainer \n", + "[INFO] [1712823879.792708]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712823879.793202]: Ancestors: {DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, DUL.PhysicalObject, owl.Thing, DUL.Entity, SOMA.DesignedContainer}\n", + "[INFO] [1712823879.793640]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712823879.794182]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition, rdf-schema.label]\n", + "[INFO] [1712823879.851861]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712823879.852557]: Direct Instances: []\n", + "[INFO] [1712823879.853057]: Inverse Restrictions: []\n", "DUL.PhysicalObject\n", "[SOMA.Affordance, SOMA.Disposition]\n" ] @@ -213,8 +213,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.799485Z", - "start_time": "2024-04-10T10:02:31.757903Z" + "end_time": "2024-04-11T08:24:39.898757Z", + "start_time": "2024-04-11T08:24:39.857106Z" } }, "outputs": [ @@ -254,8 +254,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.805502Z", - "start_time": "2024-04-10T10:02:31.799931Z" + "end_time": "2024-04-11T08:24:39.904738Z", + "start_time": "2024-04-11T08:24:39.899216Z" } }, "outputs": [], @@ -281,8 +281,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.823684Z", - "start_time": "2024-04-10T10:02:31.805922Z" + "end_time": "2024-04-11T08:24:39.918115Z", + "start_time": "2024-04-11T08:24:39.905180Z" } }, "outputs": [ @@ -290,15 +290,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712743351.819126]: -------------------\n", - "[INFO] [1712743351.819886]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712743351.820289]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712743351.820617]: Ancestors: {owl.Thing, SOMA.DesignedContainer, DUL.PhysicalObject, DUL.DesignedArtifact, SOMA-HOME.CustomContainerConcept, DUL.PhysicalArtifact, DUL.Object, DUL.Entity}\n", - "[INFO] [1712743351.820916]: Subclasses: []\n", - "[INFO] [1712743351.821270]: Properties: []\n", - "[INFO] [1712743351.821870]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712743351.822187]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712743351.822466]: Inverse Restrictions: []\n", + "[INFO] [1712823879.913774]: -------------------\n", + "[INFO] [1712823879.914420]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712823879.914779]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712823879.915078]: Ancestors: {SOMA-HOME.CustomContainerConcept, DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, DUL.PhysicalObject, owl.Thing, DUL.Entity, SOMA.DesignedContainer}\n", + "[INFO] [1712823879.915369]: Subclasses: []\n", + "[INFO] [1712823879.915699]: Properties: []\n", + "[INFO] [1712823879.916272]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712823879.916602]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712823879.916886]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -322,8 +322,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.838906Z", - "start_time": "2024-04-10T10:02:31.824115Z" + "end_time": "2024-04-11T08:24:39.933284Z", + "start_time": "2024-04-11T08:24:39.918559Z" } }, "outputs": [ @@ -331,15 +331,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712743351.834959]: -------------------\n", - "[INFO] [1712743351.835459]: SOMA.Cup \n", - "[INFO] [1712743351.835790]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712743351.836090]: Ancestors: {owl.Thing, SOMA.Cup, SOMA.DesignedContainer, DUL.PhysicalObject, SOMA.Tableware, DUL.DesignedArtifact, SOMA.Crockery, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, SOMA.DesignedTool}\n", - "[INFO] [1712743351.836375]: Subclasses: []\n", - "[INFO] [1712743351.836708]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPhysicalComponent]\n", - "[INFO] [1712743351.837236]: Instances: []\n", - "[INFO] [1712743351.837514]: Direct Instances: []\n", - "[INFO] [1712743351.837778]: Inverse Restrictions: []\n" + "[INFO] [1712823879.929163]: -------------------\n", + "[INFO] [1712823879.929744]: SOMA.Cup \n", + "[INFO] [1712823879.930088]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712823879.930407]: Ancestors: {DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, SOMA.DesignedTool, SOMA.Crockery, SOMA.Cup, DUL.PhysicalObject, SOMA.Tableware, owl.Thing, DUL.Entity, SOMA.DesignedContainer}\n", + "[INFO] [1712823879.930689]: Subclasses: []\n", + "[INFO] [1712823879.931023]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712823879.931547]: Instances: []\n", + "[INFO] [1712823879.931829]: Direct Instances: []\n", + "[INFO] [1712823879.932112]: Inverse Restrictions: []\n" ] } ], @@ -367,8 +367,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.851341Z", - "start_time": "2024-04-10T10:02:31.839333Z" + "end_time": "2024-04-11T08:24:39.945358Z", + "start_time": "2024-04-11T08:24:39.933732Z" } }, "outputs": [], @@ -398,8 +398,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.867926Z", - "start_time": "2024-04-10T10:02:31.852527Z" + "end_time": "2024-04-11T08:24:39.960126Z", + "start_time": "2024-04-11T08:24:39.946319Z" } }, "outputs": [ @@ -442,8 +442,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.882124Z", - "start_time": "2024-04-10T10:02:31.868394Z" + "end_time": "2024-04-11T08:24:39.969802Z", + "start_time": "2024-04-11T08:24:39.960609Z" } }, "outputs": [], @@ -482,8 +482,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.897395Z", - "start_time": "2024-04-10T10:02:31.882749Z" + "end_time": "2024-04-11T08:24:39.989640Z", + "start_time": "2024-04-11T08:24:39.970267Z" } }, "outputs": [], @@ -513,11 +513,22 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.911392Z", - "start_time": "2024-04-10T10:02:31.897958Z" + "end_time": "2024-04-11T08:24:39.999276Z", + "start_time": "2024-04-11T08:24:39.990183Z" } }, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "execution_count": 13 }, { @@ -558,8 +569,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.921643Z", - "start_time": "2024-04-10T10:02:31.911996Z" + "end_time": "2024-04-11T08:24:40.013495Z", + "start_time": "2024-04-11T08:24:39.999724Z" } }, "outputs": [ @@ -613,8 +624,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-10T10:02:31.936181Z", - "start_time": "2024-04-10T10:02:31.922192Z" + "end_time": "2024-04-11T08:24:40.022912Z", + "start_time": "2024-04-11T08:24:40.014050Z" } }, "outputs": [ @@ -654,8 +665,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T10:02:32.597677Z", - "start_time": "2024-04-10T10:02:31.937050Z" + "end_time": "2024-04-11T08:24:40.704662Z", + "start_time": "2024-04-11T08:24:40.023346Z" } }, "cell_type": "code", @@ -693,8 +704,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T10:02:32.711697Z", - "start_time": "2024-04-10T10:02:32.598432Z" + "end_time": "2024-04-11T08:24:40.819253Z", + "start_time": "2024-04-11T08:24:40.705603Z" } }, "cell_type": "code", @@ -729,8 +740,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T10:02:32.793256Z", - "start_time": "2024-04-10T10:02:32.712354Z" + "end_time": "2024-04-11T08:24:40.901794Z", + "start_time": "2024-04-11T08:24:40.819970Z" } }, "cell_type": "code", @@ -758,8 +769,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T10:02:32.812423Z", - "start_time": "2024-04-10T10:02:32.794005Z" + "end_time": "2024-04-11T08:24:40.920383Z", + "start_time": "2024-04-11T08:24:40.902611Z" } }, "cell_type": "code", @@ -779,8 +790,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T10:02:32.822156Z", - "start_time": "2024-04-10T10:02:32.813188Z" + "end_time": "2024-04-11T08:24:40.935576Z", + "start_time": "2024-04-11T08:24:40.921035Z" } }, "cell_type": "code", @@ -807,21 +818,21 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T10:02:32.836189Z", - "start_time": "2024-04-10T10:02:32.822715Z" + "end_time": "2024-04-11T08:24:40.949653Z", + "start_time": "2024-04-11T08:24:40.936047Z" } }, "cell_type": "code", "source": [ "target_milk_holder_designator, target_milk_holder = milk_box_concept_holder.resolve()\n", - "print('Pickup target object:', target_milk_holder.name)" + "print(f\"Pickup target object: {target_milk_holder.name}, a place holder of {milk_box_designator.names}\")" ], "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Pickup target object: cup\n" + "Pickup target object: cup, a place holder of ['milk_box']\n" ] } ], @@ -835,8 +846,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T10:02:41.550812Z", - "start_time": "2024-04-10T10:02:32.836752Z" + "end_time": "2024-04-11T08:24:49.671135Z", + "start_time": "2024-04-11T08:24:40.950095Z" } }, "cell_type": "code", @@ -876,8 +887,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712743354\n", - " nsecs: 354226112\n", + " secs: 1712823882\n", + " nsecs: 409014940\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -905,8 +916,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-10T10:02:41.610082Z", - "start_time": "2024-04-10T10:02:41.552624Z" + "end_time": "2024-04-11T08:24:49.718956Z", + "start_time": "2024-04-11T08:24:49.672748Z" } }, "cell_type": "code", @@ -916,8 +927,18 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712743361.608181]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712823889.716595]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" } ], "execution_count": 23 diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index a2c89910b..82fc9d2f1 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -108,7 +108,7 @@ def print_ontology_class(ontology_class): rospy.loginfo(f"Direct Instances: {list(ontology_class.direct_instances())}") rospy.loginfo(f"Inverse Restrictions: {list(ontology_class.inverse_restrictions())}") - def load_ontology(self, ontology_iri): + def load_ontology(self, ontology_iri) -> tuple[owlready2.Ontology, owlready2.Namespace] | None: """ Load an ontology from an IRI :param ontology_iri: An ontology IRI @@ -130,14 +130,14 @@ def fetch_ontology(ontology__): return ontology, ontology_namespace else: rospy.logerr(f"Ontology [{ontology.base_iri}]\'s name: {ontology.name} failed being loaded") - return None, None + return None def initialized(self) -> bool: return hasattr(self, "main_ontology") and self.main_ontology.loaded @staticmethod def browse_ontologies(ontology: owlready2.Ontology, - condition: Optional[Callable] = None, func: Optional[Callable] = None, **kwargs): + condition: Optional[Callable] = None, func: Optional[Callable] = None, **kwargs) -> None: """ Browse the loaded ontologies (including the main and imported ones), doing operations based on a condition. @@ -170,13 +170,14 @@ def browse_ontologies(ontology: owlready2.Ontology, func(sub_onto, **kwargs) break - def save(self, target_filename: str = "", overwrite: bool = False): + def save(self, target_filename: str = "", overwrite: bool = False) -> bool: """ Save the current ontology to disk :param target_filename: full name path of a file which the ontologies are saved into. - :param overwrite: overwrite an existing file if it exists + :param overwrite: overwrite an existing file if it exists. If empty, they are saved to the same original OWL file from which the main ontology was loaded, or a file at the same folder with ontology search path specified at constructor if it was loaded from a remote IRI. + :return: True if the ontology was successfully saved, False otherwise """ # Commit the whole graph data of the current ontology world, saving it into SQLite3, to be reused the next time @@ -190,6 +191,7 @@ def save(self, target_filename: str = "", overwrite: bool = False): save_to_same_file = is_current_ontology_local and (target_filename == current_ontology_filename) if save_to_same_file and not overwrite: rospy.logerr(f"Ontologies cannot be saved to the originally loaded [{target_filename}] if not by overwriting") + return False else: save_filename = target_filename if target_filename else current_ontology_filename self.main_ontology.save(save_filename) @@ -197,6 +199,7 @@ def save(self, target_filename: str = "", overwrite: bool = False): rospy.logwarn(f"Ontologies have been overwritten to {save_filename}") else: rospy.loginfo(f"Ontologies have been saved to {save_filename}") + return True def create_ontology_concept_class(self, class_name: str, ontology_parent_concept_class: Optional[owlready2.Thing] = None) \ @@ -219,7 +222,7 @@ def create_ontology_concept_class(self, class_name: str, @staticmethod def create_ontology_property_class(class_name: str, ontology_parent_property_class: Optional[Type[owlready2.Property]] = None) \ - -> Type[owlready2.Property]: + -> Type[owlready2.Property] | None: """ Create a new property class in ontology @@ -261,7 +264,7 @@ def get_ontology_classes_by_condition(self, condition: Callable, first_match_onl return out_classes @staticmethod - def get_ontology_class_by_ontology(ontology: owlready2.Ontology, class_name: str) -> Type[owlready2.Thing]: + def get_ontology_class_by_ontology(ontology: owlready2.Ontology, class_name: str) -> Type[owlready2.Thing] | None: """ Get an ontology class if it exists in a given ontology @@ -270,7 +273,7 @@ def get_ontology_class_by_ontology(ontology: owlready2.Ontology, class_name: str """ return getattr(ontology, class_name) if ontology and hasattr(ontology, class_name) else None - def get_ontology_class(self, class_name: str) -> Type[owlready2.Thing]: + def get_ontology_class(self, class_name: str) -> Type[owlready2.Thing] | None: """ Get an ontology class by name @@ -334,7 +337,7 @@ def create_ontology_triple_classes(self, subject_class_name: str, object_class_n ontology_property_parent_class: Optional[Type[ owlready2.Property]] = owlready2.ObjectProperty if owlready2 else None, ontology_inverse_property_parent_class: Optional[Type[ - owlready2.Property]] = owlready2.ObjectProperty if owlready2 else None): + owlready2.Property]] = owlready2.ObjectProperty if owlready2 else None) -> None: """ Dynamically create ontology triple classes under same namespace with the main ontology, as known as {subject, predicate, object}, with the relations among them @@ -375,7 +378,7 @@ def create_ontology_triple_classes(self, subject_class_name: str, object_class_n def create_ontology_linked_designator(self, designator_name: str, designator_class: Type[DesignatorDescription], ontology_concept_name: str, ontology_parent_class: Optional[Type[owlready2.Thing]] = None) \ - -> DesignatorDescription: + -> DesignatorDescription | None: """ Create an object designator linked to a given ontology concept @@ -420,7 +423,7 @@ def create_ontology_linked_designator_by_concept(self, designator_name: str, @staticmethod def set_ontology_concept_designator_connection(designator: DesignatorDescription, - ontology_concept_holder: OntologyConceptHolder): + ontology_concept_holder: OntologyConceptHolder) -> None: """ Set two-way connection between a designator and an ontology concept @@ -436,13 +439,14 @@ def set_ontology_concept_designator_connection(designator: DesignatorDescription @staticmethod def set_ontology_relation(subject_designator: DesignatorDescription, object_designator: DesignatorDescription, - predicate_name: str): + predicate_name: str) -> bool: """ Set ontology relation between subject and object designators :param subject_designator: An object designator as the ontology subject :param object_designator: An object designator as the ontology object :param predicate_name: Name of the predicate + :return: True if the relation is set, False otherwise """ for subject_concept_holder in subject_designator.ontology_concept_holders: subject_concept = subject_concept_holder.ontology_concept @@ -452,8 +456,10 @@ def set_ontology_relation(subject_designator: DesignatorDescription, for holder in object_designator.ontology_concept_holders: if holder.ontology_concept.name not in object_concepts_names: object_concepts_list.append(holder.ontology_concept) + return True else: rospy.logerr(f"Ontology concept [{subject_concept.name}] has no predicate named [{predicate_name}]") + return False @staticmethod def get_designators_by_subject_predicate(subject: DesignatorDescription, @@ -493,4 +499,4 @@ def destroy_ontology_class(ontology_class, destroy_instances: bool = True): for ontology_individual in ontology_class.instances(): destroy_entity(ontology_individual) OntologyConceptHolderStore().remove_ontology_concept(ontology_class.name) - destroy_entity(ontology_class) + destroy_entity(ontology_class) diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py index 2f5edda8c..4750dd2a8 100644 --- a/src/pycram/ontology/ontology_common.py +++ b/src/pycram/ontology/ontology_common.py @@ -33,18 +33,23 @@ def __init__(self): return self.__all_ontology_concept_holders: Dict[str, OntologyConceptHolder] = {} - def add_ontology_concept_holder(self, ontology_concept_name: str, ontology_concept_holder: OntologyConceptHolder): + def add_ontology_concept_holder(self, ontology_concept_name: str, ontology_concept_holder: OntologyConceptHolder)\ + -> bool: if ontology_concept_name in self.__all_ontology_concept_holders: rospy.logerr(f"OntologyConceptHolder for `{ontology_concept_name}` was already created!") + return False else: self.__all_ontology_concept_holders.setdefault(ontology_concept_name, ontology_concept_holder) + return True - def remove_ontology_concept(self, ontology_concept_name: str): + def remove_ontology_concept(self, ontology_concept_name: str) -> bool: """ Remove an ontology concept from the store """ if ontology_concept_name in self.__all_ontology_concept_holders: del self.__all_ontology_concept_holders[ontology_concept_name] + return True + return False def get_ontology_concepts_by_class(self, ontology_concept_class: Type[owlready2.Thing]) -> List[owlready2.Thing]: """ @@ -111,6 +116,8 @@ class OntologyConceptHolder(object): List of designators associated with this ontology concept resolve: Callable A callable used to resolve the designators to whatever of interest, like designators or their resolving results + concept_holder_store: OntologyConceptHolder + The store for all OntologyConceptHolder instances """ def __init__(self, ontology_concept: owlready2.Thing): From fdba8a4a96cb9abd44f766cd6127f1623b228e31 Mon Sep 17 00:00:00 2001 From: duc than Date: Thu, 11 Apr 2024 10:48:42 +0200 Subject: [PATCH 20/26] ontology.ipynb typo --- examples/ontology.ipynb | 177 +++++++++++++++++++--------------------- 1 file changed, 85 insertions(+), 92 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 8b3f6b3c0..d16e11986 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -22,8 +22,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.522124Z", - "start_time": "2024-04-11T08:24:39.016385Z" + "end_time": "2024-04-11T08:48:18.462274Z", + "start_time": "2024-04-11T08:48:17.945468Z" } }, "outputs": [ @@ -70,8 +70,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.542164Z", - "start_time": "2024-04-11T08:24:39.525495Z" + "end_time": "2024-04-11T08:48:18.476528Z", + "start_time": "2024-04-11T08:48:18.465243Z" } }, "outputs": [], @@ -108,8 +108,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.671316Z", - "start_time": "2024-04-11T08:24:39.544849Z" + "end_time": "2024-04-11T08:48:18.621405Z", + "start_time": "2024-04-11T08:48:18.477040Z" } }, "outputs": [ @@ -117,12 +117,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712823879.667754]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712823879.668523]: - main namespace: SOMA-HOME\n", - "[INFO] [1712823879.669010]: - loaded ontologies:\n", - "[INFO] [1712823879.669414]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712823879.669714]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712823879.669980]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712825298.616830]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712825298.617596]: - main namespace: SOMA-HOME\n", + "[INFO] [1712825298.618148]: - loaded ontologies:\n", + "[INFO] [1712825298.618654]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712825298.619127]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712825298.619599]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -173,8 +173,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.856450Z", - "start_time": "2024-04-11T08:24:39.672026Z" + "end_time": "2024-04-11T08:48:18.804523Z", + "start_time": "2024-04-11T08:48:18.621936Z" } }, "outputs": [ @@ -182,15 +182,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712823879.791475]: -------------------\n", - "[INFO] [1712823879.792207]: SOMA.DesignedContainer \n", - "[INFO] [1712823879.792708]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712823879.793202]: Ancestors: {DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, DUL.PhysicalObject, owl.Thing, DUL.Entity, SOMA.DesignedContainer}\n", - "[INFO] [1712823879.793640]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712823879.794182]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition, rdf-schema.label]\n", - "[INFO] [1712823879.851861]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712823879.852557]: Direct Instances: []\n", - "[INFO] [1712823879.853057]: Inverse Restrictions: []\n", + "[INFO] [1712825298.740637]: -------------------\n", + "[INFO] [1712825298.741301]: SOMA.DesignedContainer \n", + "[INFO] [1712825298.741699]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712825298.742080]: Ancestors: {owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, DUL.Entity}\n", + "[INFO] [1712825298.742406]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712825298.742819]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712825298.800223]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712825298.800795]: Direct Instances: []\n", + "[INFO] [1712825298.801166]: Inverse Restrictions: []\n", "DUL.PhysicalObject\n", "[SOMA.Affordance, SOMA.Disposition]\n" ] @@ -213,8 +213,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.898757Z", - "start_time": "2024-04-11T08:24:39.857106Z" + "end_time": "2024-04-11T08:48:18.847192Z", + "start_time": "2024-04-11T08:48:18.805721Z" } }, "outputs": [ @@ -254,8 +254,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.904738Z", - "start_time": "2024-04-11T08:24:39.899216Z" + "end_time": "2024-04-11T08:48:18.853254Z", + "start_time": "2024-04-11T08:48:18.847659Z" } }, "outputs": [], @@ -265,7 +265,7 @@ "cell_type": "markdown", "source": [ "## Access ontology concept classes and individuals\n", - "All ontology classes created on the fly inherit from __`owlready2.Thing`__, and so share the same namespace with the loaded ontology instance `onto`. They can then be accessible through that namespace by __`main_ontology.`__.\n", + "All ontology classes created on the fly purely inherit (without added non-semantic attributes) from __`owlready2.Thing`__, and so share the same namespace with the loaded ontology instance, `main_ontology`. They can then be accessible through that namespace by __`main_ontology.`__.\n", "The same applies for individuals of those classes, accessible by __`main_ontology.`__" ], "metadata": { @@ -281,8 +281,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.918115Z", - "start_time": "2024-04-11T08:24:39.905180Z" + "end_time": "2024-04-11T08:48:18.897494Z", + "start_time": "2024-04-11T08:48:18.853689Z" } }, "outputs": [ @@ -290,15 +290,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712823879.913774]: -------------------\n", - "[INFO] [1712823879.914420]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712823879.914779]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712823879.915078]: Ancestors: {SOMA-HOME.CustomContainerConcept, DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, DUL.PhysicalObject, owl.Thing, DUL.Entity, SOMA.DesignedContainer}\n", - "[INFO] [1712823879.915369]: Subclasses: []\n", - "[INFO] [1712823879.915699]: Properties: []\n", - "[INFO] [1712823879.916272]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712823879.916602]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712823879.916886]: Inverse Restrictions: []\n", + "[INFO] [1712825298.890220]: -------------------\n", + "[INFO] [1712825298.891301]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712825298.892014]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712825298.892582]: Ancestors: {owl.Thing, SOMA-HOME.CustomContainerConcept, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, DUL.Entity}\n", + "[INFO] [1712825298.893037]: Subclasses: []\n", + "[INFO] [1712825298.893832]: Properties: []\n", + "[INFO] [1712825298.894993]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712825298.895463]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712825298.895874]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -322,8 +322,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.933284Z", - "start_time": "2024-04-11T08:24:39.918559Z" + "end_time": "2024-04-11T08:48:18.923086Z", + "start_time": "2024-04-11T08:48:18.898197Z" } }, "outputs": [ @@ -331,15 +331,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712823879.929163]: -------------------\n", - "[INFO] [1712823879.929744]: SOMA.Cup \n", - "[INFO] [1712823879.930088]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712823879.930407]: Ancestors: {DUL.DesignedArtifact, DUL.Object, DUL.PhysicalArtifact, SOMA.DesignedTool, SOMA.Crockery, SOMA.Cup, DUL.PhysicalObject, SOMA.Tableware, owl.Thing, DUL.Entity, SOMA.DesignedContainer}\n", - "[INFO] [1712823879.930689]: Subclasses: []\n", - "[INFO] [1712823879.931023]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712823879.931547]: Instances: []\n", - "[INFO] [1712823879.931829]: Direct Instances: []\n", - "[INFO] [1712823879.932112]: Inverse Restrictions: []\n" + "[INFO] [1712825298.916737]: -------------------\n", + "[INFO] [1712825298.917397]: SOMA.Cup \n", + "[INFO] [1712825298.917950]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712825298.918460]: Ancestors: {owl.Thing, SOMA.Crockery, DUL.Object, SOMA.DesignedContainer, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.Cup, DUL.PhysicalArtifact, DUL.Entity}\n", + "[INFO] [1712825298.919121]: Subclasses: []\n", + "[INFO] [1712825298.919813]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712825298.920730]: Instances: []\n", + "[INFO] [1712825298.921243]: Direct Instances: []\n", + "[INFO] [1712825298.921731]: Inverse Restrictions: []\n" ] } ], @@ -367,8 +367,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.945358Z", - "start_time": "2024-04-11T08:24:39.933732Z" + "end_time": "2024-04-11T08:48:18.942739Z", + "start_time": "2024-04-11T08:48:18.923536Z" } }, "outputs": [], @@ -398,8 +398,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.960126Z", - "start_time": "2024-04-11T08:24:39.946319Z" + "end_time": "2024-04-11T08:48:18.969780Z", + "start_time": "2024-04-11T08:48:18.943710Z" } }, "outputs": [ @@ -442,8 +442,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.969802Z", - "start_time": "2024-04-11T08:24:39.960609Z" + "end_time": "2024-04-11T08:48:18.986251Z", + "start_time": "2024-04-11T08:48:18.970508Z" } }, "outputs": [], @@ -482,8 +482,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.989640Z", - "start_time": "2024-04-11T08:24:39.970267Z" + "end_time": "2024-04-11T08:48:19.026206Z", + "start_time": "2024-04-11T08:48:18.986855Z" } }, "outputs": [], @@ -513,8 +513,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:39.999276Z", - "start_time": "2024-04-11T08:24:39.990183Z" + "end_time": "2024-04-11T08:48:19.048677Z", + "start_time": "2024-04-11T08:48:19.027020Z" } }, "outputs": [ @@ -569,8 +569,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:40.013495Z", - "start_time": "2024-04-11T08:24:39.999724Z" + "end_time": "2024-04-11T08:48:19.074393Z", + "start_time": "2024-04-11T08:48:19.050381Z" } }, "outputs": [ @@ -624,8 +624,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:24:40.022912Z", - "start_time": "2024-04-11T08:24:40.014050Z" + "end_time": "2024-04-11T08:48:19.093652Z", + "start_time": "2024-04-11T08:48:19.075186Z" } }, "outputs": [ @@ -665,8 +665,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:24:40.704662Z", - "start_time": "2024-04-11T08:24:40.023346Z" + "end_time": "2024-04-11T08:48:19.802597Z", + "start_time": "2024-04-11T08:48:19.094335Z" } }, "cell_type": "code", @@ -690,6 +690,7 @@ "name": "stderr", "output_type": "stream", "text": [ + "Scalar element defined multiple times: limit\n", "Scalar element defined multiple times: limit\n" ] } @@ -704,8 +705,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:24:40.819253Z", - "start_time": "2024-04-11T08:24:40.705603Z" + "end_time": "2024-04-11T08:48:19.892298Z", + "start_time": "2024-04-11T08:48:19.803623Z" } }, "cell_type": "code", @@ -721,15 +722,7 @@ " ontology_property_parent_class=soma.affordsBearer,\n", " ontology_inverse_property_parent_class=soma.isBearerAffordedBy)" ], - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Scalar element defined multiple times: limit\n" - ] - } - ], + "outputs": [], "execution_count": 17 }, { @@ -740,8 +733,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:24:40.901794Z", - "start_time": "2024-04-11T08:24:40.819970Z" + "end_time": "2024-04-11T08:48:19.992482Z", + "start_time": "2024-04-11T08:48:19.893578Z" } }, "cell_type": "code", @@ -769,8 +762,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:24:40.920383Z", - "start_time": "2024-04-11T08:24:40.902611Z" + "end_time": "2024-04-11T08:48:20.024384Z", + "start_time": "2024-04-11T08:48:19.993203Z" } }, "cell_type": "code", @@ -790,8 +783,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:24:40.935576Z", - "start_time": "2024-04-11T08:24:40.921035Z" + "end_time": "2024-04-11T08:48:20.036981Z", + "start_time": "2024-04-11T08:48:20.025070Z" } }, "cell_type": "code", @@ -818,8 +811,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:24:40.949653Z", - "start_time": "2024-04-11T08:24:40.936047Z" + "end_time": "2024-04-11T08:48:20.078643Z", + "start_time": "2024-04-11T08:48:20.038365Z" } }, "cell_type": "code", @@ -846,8 +839,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:24:49.671135Z", - "start_time": "2024-04-11T08:24:40.950095Z" + "end_time": "2024-04-11T08:48:28.732245Z", + "start_time": "2024-04-11T08:48:20.079328Z" } }, "cell_type": "code", @@ -887,8 +880,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712823882\n", - " nsecs: 409014940\n", + " secs: 1712825301\n", + " nsecs: 538790225\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -916,8 +909,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:24:49.718956Z", - "start_time": "2024-04-11T08:24:49.672748Z" + "end_time": "2024-04-11T08:48:28.789492Z", + "start_time": "2024-04-11T08:48:28.734664Z" } }, "cell_type": "code", @@ -927,7 +920,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712823889.716595]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712825308.787155]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] }, { From 308bf59b276e3584b8f0099aa19030154d16a722 Mon Sep 17 00:00:00 2001 From: duc than Date: Fri, 12 Apr 2024 13:50:12 +0200 Subject: [PATCH 21/26] ontology.ipynb correct text --- examples/ontology.ipynb | 188 +++++++++++++++++++++------------------- 1 file changed, 100 insertions(+), 88 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index d16e11986..78deb0532 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -11,6 +11,18 @@ "collapsed": false } }, + { + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-12T11:49:11.975346Z", + "start_time": "2024-04-12T11:49:11.974048Z" + } + }, + "cell_type": "code", + "source": "", + "outputs": [], + "execution_count": null + }, { "cell_type": "code", "source": [ @@ -22,8 +34,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.462274Z", - "start_time": "2024-04-11T08:48:17.945468Z" + "end_time": "2024-04-12T11:49:13.317484Z", + "start_time": "2024-04-12T11:49:12.022030Z" } }, "outputs": [ @@ -37,7 +49,7 @@ "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n", "Failed to import Giskard messages\n", "Could not import RoboKudo messages, RoboKudo interface could not be initialized\n", - "pybullet build time: Nov 28 2023 23:51:11\n" + "pybullet build time: Nov 28 2023 23:45:17\n" ] } ], @@ -70,8 +82,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.476528Z", - "start_time": "2024-04-11T08:48:18.465243Z" + "end_time": "2024-04-12T11:49:13.333080Z", + "start_time": "2024-04-12T11:49:13.321031Z" } }, "outputs": [], @@ -108,8 +120,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.621405Z", - "start_time": "2024-04-11T08:48:18.477040Z" + "end_time": "2024-04-12T11:49:13.386628Z", + "start_time": "2024-04-12T11:49:13.333901Z" } }, "outputs": [ @@ -117,12 +129,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712825298.616830]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712825298.617596]: - main namespace: SOMA-HOME\n", - "[INFO] [1712825298.618148]: - loaded ontologies:\n", - "[INFO] [1712825298.618654]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712825298.619127]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712825298.619599]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1712922553.382796]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1712922553.383623]: - main namespace: SOMA-HOME\n", + "[INFO] [1712922553.383951]: - loaded ontologies:\n", + "[INFO] [1712922553.384327]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1712922553.384694]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1712922553.385051]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -173,8 +185,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.804523Z", - "start_time": "2024-04-11T08:48:18.621936Z" + "end_time": "2024-04-12T11:49:13.472991Z", + "start_time": "2024-04-12T11:49:13.387739Z" } }, "outputs": [ @@ -182,15 +194,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712825298.740637]: -------------------\n", - "[INFO] [1712825298.741301]: SOMA.DesignedContainer \n", - "[INFO] [1712825298.741699]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712825298.742080]: Ancestors: {owl.Thing, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, DUL.Entity}\n", - "[INFO] [1712825298.742406]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712825298.742819]: Properties: [rdf-schema.label, SOMA.hasDisposition, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712825298.800223]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712825298.800795]: Direct Instances: []\n", - "[INFO] [1712825298.801166]: Inverse Restrictions: []\n", + "[INFO] [1712922553.411097]: -------------------\n", + "[INFO] [1712922553.411713]: SOMA.DesignedContainer \n", + "[INFO] [1712922553.412087]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1712922553.412494]: Ancestors: {DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712922553.412802]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1712922553.413171]: Properties: [SOMA.hasDisposition, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", + "[INFO] [1712922553.468159]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1712922553.468808]: Direct Instances: []\n", + "[INFO] [1712922553.469357]: Inverse Restrictions: []\n", "DUL.PhysicalObject\n", "[SOMA.Affordance, SOMA.Disposition]\n" ] @@ -213,8 +225,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.847192Z", - "start_time": "2024-04-11T08:48:18.805721Z" + "end_time": "2024-04-12T11:49:13.490775Z", + "start_time": "2024-04-12T11:49:13.473745Z" } }, "outputs": [ @@ -254,8 +266,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.853254Z", - "start_time": "2024-04-11T08:48:18.847659Z" + "end_time": "2024-04-12T11:49:13.496929Z", + "start_time": "2024-04-12T11:49:13.491199Z" } }, "outputs": [], @@ -281,8 +293,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.897494Z", - "start_time": "2024-04-11T08:48:18.853689Z" + "end_time": "2024-04-12T11:49:13.510281Z", + "start_time": "2024-04-12T11:49:13.497378Z" } }, "outputs": [ @@ -290,15 +302,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712825298.890220]: -------------------\n", - "[INFO] [1712825298.891301]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712825298.892014]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712825298.892582]: Ancestors: {owl.Thing, SOMA-HOME.CustomContainerConcept, DUL.Object, SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, DUL.Entity}\n", - "[INFO] [1712825298.893037]: Subclasses: []\n", - "[INFO] [1712825298.893832]: Properties: []\n", - "[INFO] [1712825298.894993]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712825298.895463]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712825298.895874]: Inverse Restrictions: []\n", + "[INFO] [1712922553.506214]: -------------------\n", + "[INFO] [1712922553.506883]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1712922553.507285]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1712922553.507586]: Ancestors: {DUL.Object, SOMA-HOME.CustomContainerConcept, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", + "[INFO] [1712922553.507854]: Subclasses: []\n", + "[INFO] [1712922553.508167]: Properties: []\n", + "[INFO] [1712922553.508455]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712922553.508754]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1712922553.509020]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -322,8 +334,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.923086Z", - "start_time": "2024-04-11T08:48:18.898197Z" + "end_time": "2024-04-12T11:49:13.530908Z", + "start_time": "2024-04-12T11:49:13.510723Z" } }, "outputs": [ @@ -331,15 +343,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712825298.916737]: -------------------\n", - "[INFO] [1712825298.917397]: SOMA.Cup \n", - "[INFO] [1712825298.917950]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712825298.918460]: Ancestors: {owl.Thing, SOMA.Crockery, DUL.Object, SOMA.DesignedContainer, SOMA.Tableware, DUL.DesignedArtifact, SOMA.DesignedTool, DUL.PhysicalObject, SOMA.Cup, DUL.PhysicalArtifact, DUL.Entity}\n", - "[INFO] [1712825298.919121]: Subclasses: []\n", - "[INFO] [1712825298.919813]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712825298.920730]: Instances: []\n", - "[INFO] [1712825298.921243]: Direct Instances: []\n", - "[INFO] [1712825298.921731]: Inverse Restrictions: []\n" + "[INFO] [1712922553.526974]: -------------------\n", + "[INFO] [1712922553.527599]: SOMA.Cup \n", + "[INFO] [1712922553.527934]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1712922553.528244]: Ancestors: {SOMA.Crockery, DUL.Object, SOMA.Tableware, DUL.Entity, owl.Thing, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.DesignedContainer, SOMA.Cup}\n", + "[INFO] [1712922553.528530]: Subclasses: []\n", + "[INFO] [1712922553.528861]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1712922553.529176]: Instances: []\n", + "[INFO] [1712922553.529449]: Direct Instances: []\n", + "[INFO] [1712922553.529719]: Inverse Restrictions: []\n" ] } ], @@ -367,8 +379,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.942739Z", - "start_time": "2024-04-11T08:48:18.923536Z" + "end_time": "2024-04-12T11:49:13.544458Z", + "start_time": "2024-04-12T11:49:13.531362Z" } }, "outputs": [], @@ -398,8 +410,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.969780Z", - "start_time": "2024-04-11T08:48:18.943710Z" + "end_time": "2024-04-12T11:49:13.555369Z", + "start_time": "2024-04-12T11:49:13.545449Z" } }, "outputs": [ @@ -442,8 +454,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:18.986251Z", - "start_time": "2024-04-11T08:48:18.970508Z" + "end_time": "2024-04-12T11:49:13.565635Z", + "start_time": "2024-04-12T11:49:13.555823Z" } }, "outputs": [], @@ -482,8 +494,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:19.026206Z", - "start_time": "2024-04-11T08:48:18.986855Z" + "end_time": "2024-04-12T11:49:13.586549Z", + "start_time": "2024-04-12T11:49:13.566094Z" } }, "outputs": [], @@ -513,8 +525,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:19.048677Z", - "start_time": "2024-04-11T08:48:19.027020Z" + "end_time": "2024-04-12T11:49:13.596771Z", + "start_time": "2024-04-12T11:49:13.587021Z" } }, "outputs": [ @@ -569,8 +581,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:19.074393Z", - "start_time": "2024-04-11T08:48:19.050381Z" + "end_time": "2024-04-12T11:49:13.611368Z", + "start_time": "2024-04-12T11:49:13.597218Z" } }, "outputs": [ @@ -624,8 +636,8 @@ "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-04-11T08:48:19.093652Z", - "start_time": "2024-04-11T08:48:19.075186Z" + "end_time": "2024-04-12T11:49:13.621797Z", + "start_time": "2024-04-12T11:49:13.611864Z" } }, "outputs": [ @@ -665,8 +677,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:48:19.802597Z", - "start_time": "2024-04-11T08:48:19.094335Z" + "end_time": "2024-04-12T11:49:14.414260Z", + "start_time": "2024-04-12T11:49:13.622258Z" } }, "cell_type": "code", @@ -705,8 +717,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:48:19.892298Z", - "start_time": "2024-04-11T08:48:19.803623Z" + "end_time": "2024-04-12T11:49:14.501124Z", + "start_time": "2024-04-12T11:49:14.415241Z" } }, "cell_type": "code", @@ -733,8 +745,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:48:19.992482Z", - "start_time": "2024-04-11T08:48:19.893578Z" + "end_time": "2024-04-12T11:49:14.583818Z", + "start_time": "2024-04-12T11:49:14.501719Z" } }, "cell_type": "code", @@ -762,8 +774,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:48:20.024384Z", - "start_time": "2024-04-11T08:48:19.993203Z" + "end_time": "2024-04-12T11:49:14.602526Z", + "start_time": "2024-04-12T11:49:14.584461Z" } }, "cell_type": "code", @@ -783,8 +795,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:48:20.036981Z", - "start_time": "2024-04-11T08:48:20.025070Z" + "end_time": "2024-04-12T11:49:14.612923Z", + "start_time": "2024-04-12T11:49:14.603173Z" } }, "cell_type": "code", @@ -811,21 +823,21 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:48:20.078643Z", - "start_time": "2024-04-11T08:48:20.038365Z" + "end_time": "2024-04-12T11:49:14.627982Z", + "start_time": "2024-04-12T11:49:14.613382Z" } }, "cell_type": "code", "source": [ "target_milk_holder_designator, target_milk_holder = milk_box_concept_holder.resolve()\n", - "print(f\"Pickup target object: {target_milk_holder.name}, a place holder of {milk_box_designator.names}\")" + "print(f\"Pickup target object: {target_milk_holder.name}, a content holder for {milk_box_designator.names} as in relation `{POURABLE_INTO_PREDICATE_NAME}`\")" ], "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Pickup target object: cup, a place holder of ['milk_box']\n" + "Pickup target object: cup, a content holder for ['milk_box'] as in relation `pourable_into`\n" ] } ], @@ -839,8 +851,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:48:28.732245Z", - "start_time": "2024-04-11T08:48:20.079328Z" + "end_time": "2024-04-12T11:49:23.283909Z", + "start_time": "2024-04-12T11:49:14.628600Z" } }, "cell_type": "code", @@ -880,8 +892,8 @@ "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1712825301\n", - " nsecs: 538790225\n", + " secs: 1712922556\n", + " nsecs: 101702690\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -903,14 +915,14 @@ "cell_type": "markdown", "source": [ "# Save ontologies to an OWL file\n", - "After all the above operations to our ontologies, we now can save them to an OWL file on disk" + "After all the above operations on our ontologies, we now can save them to an OWL file on disk" ] }, { "metadata": { "ExecuteTime": { - "end_time": "2024-04-11T08:48:28.789492Z", - "start_time": "2024-04-11T08:48:28.734664Z" + "end_time": "2024-04-12T11:49:23.337691Z", + "start_time": "2024-04-12T11:49:23.286322Z" } }, "cell_type": "code", @@ -920,7 +932,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712825308.787155]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1712922563.334936]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] }, { @@ -948,9 +960,9 @@ ], "metadata": { "kernelspec": { - "display_name": "pycram", + "display_name": "pycram_isaac", "language": "python", - "name": "pycram" + "name": "pycram_isaac" }, "language_info": { "codemirror_mode": { From b57a166be7a0722325b103b873fe1054ac4c98d2 Mon Sep 17 00:00:00 2001 From: duc Date: Sun, 28 Apr 2024 23:34:37 +0200 Subject: [PATCH 22/26] OntologyManager fetch soma, dul safely --- src/pycram/ontology/ontology.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index 82fc9d2f1..f41fc7ef8 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -88,8 +88,8 @@ def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = f"{P self.main_ontology, self.main_ontology_namespace = self.load_ontology(main_ontology_iri) if self.main_ontology.loaded: - self.soma = self.ontologies[SOMA_ONTOLOGY_NAMESPACE] - self.dul = self.ontologies[DUL_ONTOLOGY_NAMESPACE] + self.soma = self.ontologies.get(SOMA_ONTOLOGY_NAMESPACE) + self.dul = self.ontologies.get(DUL_ONTOLOGY_NAMESPACE) @staticmethod def print_ontology_class(ontology_class): From 4cb98885a2081cf640edd250e529b033cbcd6ce6 Mon Sep 17 00:00:00 2001 From: duc Date: Sun, 28 Apr 2024 23:47:40 +0200 Subject: [PATCH 23/26] load_ontology() always return ontology + namespace, which can never be None --- src/pycram/ontology/ontology.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index f41fc7ef8..8ea4c613e 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -108,7 +108,7 @@ def print_ontology_class(ontology_class): rospy.loginfo(f"Direct Instances: {list(ontology_class.direct_instances())}") rospy.loginfo(f"Inverse Restrictions: {list(ontology_class.inverse_restrictions())}") - def load_ontology(self, ontology_iri) -> tuple[owlready2.Ontology, owlready2.Namespace] | None: + def load_ontology(self, ontology_iri) -> tuple[owlready2.Ontology, owlready2.Namespace]: """ Load an ontology from an IRI :param ontology_iri: An ontology IRI @@ -127,10 +127,9 @@ def fetch_ontology(ontology__): rospy.loginfo(ontology__.base_iri) self.browse_ontologies(ontology, condition=None, func=lambda ontology__: fetch_ontology(ontology__)) - return ontology, ontology_namespace else: rospy.logerr(f"Ontology [{ontology.base_iri}]\'s name: {ontology.name} failed being loaded") - return None + return ontology, ontology_namespace def initialized(self) -> bool: return hasattr(self, "main_ontology") and self.main_ontology.loaded From f3749ffd6c8ffd5db2218eaffc04ab483d9e7450 Mon Sep 17 00:00:00 2001 From: duc than Date: Mon, 27 May 2024 12:50:20 +0200 Subject: [PATCH 24/26] address comment docstrings --- src/pycram/designator.py | 15 ++- src/pycram/designators/action_designator.py | 3 +- src/pycram/ontology/ontology.py | 127 ++++++++++---------- src/pycram/ontology/ontology_common.py | 84 ++++++++----- test/test_ontology.py | 9 +- 5 files changed, 129 insertions(+), 109 deletions(-) diff --git a/src/pycram/designator.py b/src/pycram/designator.py index 9348b0cea..ac20f1e00 100644 --- a/src/pycram/designator.py +++ b/src/pycram/designator.py @@ -5,20 +5,21 @@ from abc import ABC, abstractmethod from inspect import isgenerator, isgeneratorfunction +import rospy try: import owlready2 except ImportError: owlready2 = None + rospy.logwarn("owlready2 is not installed!") from sqlalchemy.orm.session import Session -import rospy from .world import World from .world_concepts.world_object import Object as WorldObject from .helper import GeneratorList, bcolors from threading import Lock from time import time -from typing_extensions import Type, List, Dict, Any, Optional, Union, get_type_hints, Callable, Iterable +from typing_extensions import Type, List, Dict, Any, Optional, Union, get_type_hints, Callable, Iterable, TYPE_CHECKING from .local_transformer import LocalTransformer from .language import Language @@ -34,6 +35,10 @@ from .orm.base import RobotState, ProcessMetaData from .task import with_tree +if TYPE_CHECKING: + from .ontology.ontology_common import OntologyConceptHolder + + class DesignatorError(Exception): """Implementation of designator errors.""" @@ -327,8 +332,7 @@ def __init__(self, resolver: Optional[Callable] = None, ontology_concept_holders """ Create a Designator description. - :param resolver: The grounding method used for the description. The grounding method creates a location instance - that matches the description. + :param resolver: The grounding method used for the description. The grounding method creates a location instance that matches the description. :param ontology_concept_holders: A list of holders of ontology concepts that the designator is categorized as or associated with """ @@ -449,7 +453,7 @@ def insert(self, session: Session, *args, **kwargs) -> ORMAction: return action - def __init__(self, resolver=None, ontology_concept_holders: Optional[List[owlready2.Thing]] = None): + def __init__(self, resolver=None, ontology_concept_holders: Optional[List[OntologyConceptHolder]] = None): """ Base of all action designator descriptions. @@ -468,6 +472,7 @@ def ground(self) -> Action: def init_ontology_concepts(self, ontology_concept_classes: Dict[str, Type[owlready2.Thing]]): """ Initialize the ontology concept holders for this action designator + :param ontology_concept_classes: The ontology concept classes that the action is categorized as or associated with :param ontology_concept_name: The name of the ontology concept instance to be created """ diff --git a/src/pycram/designators/action_designator.py b/src/pycram/designators/action_designator.py index 9ed0b14a8..e5a276101 100644 --- a/src/pycram/designators/action_designator.py +++ b/src/pycram/designators/action_designator.py @@ -2,11 +2,12 @@ from typing_extensions import List, Union, Callable, Optional from typing_extensions import Any, Union +import rospy try: - import owlready2 from owlready2 import * except ImportError: owlready2 = None + rospy.logwarn("owlready2 is not installed!") from .object_designator import ObjectDesignatorDescription, BelieveObject, ObjectPart from ..datastructures.enums import Arms diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index 8ea4c613e..ade182feb 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -14,11 +14,11 @@ owlready2 = None rospy.logwarn("Could not import owlready2, OntologyManager could not be initialized!") -from pycram.datastructures.enums import ObjectType -from pycram.helper import Singleton -from pycram.designator import DesignatorDescription, ObjectDesignatorDescription +from ..datastructures.enums import ObjectType +from ..helper import Singleton +from ..designator import DesignatorDescription, ObjectDesignatorDescription -from pycram.ontology.ontology_common import OntologyConceptHolderStore, OntologyConceptHolder +from ..ontology.ontology_common import OntologyConceptHolderStore, OntologyConceptHolder SOMA_HOME_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA-HOME.owl" SOMA_ONTOLOGY_IRI = "http://www.ease-crc.org/ont/SOMA.owl" @@ -29,43 +29,14 @@ class OntologyManager(object, metaclass=Singleton): """ Singleton class as the adapter accessing data of an OWL ontology, largely based on owlready2. - - Attributes - ---------- - ontologies: Dict[str, owlready2.Ontology] - A dictionary of OWL ontologies, keyed by ontology name (same as its namespace name), eg. 'SOMA' - - main_ontology: owlready2.Ontology - The main ontology instance as the result of an ontology loading operation - - main_ontology_iri: str - Ontology IRI (Internationalized Resource Identifier), either a URL to a remote OWL file or the full name path of a local one - - main_ontology_namespace: owlready2.Namespace - Namespace of the main ontology - - soma: owlready2.Ontology - The SOMA ontology instance, referencing :attr:`ontology` in case of ontology loading from SOMA.owl - Ref: http://www.ease-crc.org/ont/SOMA.owl - - dul: owlready2.Ontology - The DUL ontology instance, referencing :attr:`ontology` in case of ontology loading from DUL.owl - Ref: http://www.ease-crc.org/ont/DUL.owl - - ontology_world: - Ontology world, the placeholder of triples stored by owlready2. - Ref: https://owlready2.readthedocs.io/en/latest/world.html """ def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = f"{Path.home()}/ontologies"): """ Create the singleton object of OntologyManager class - :param main_ontology_iri: Ontology IRI (Internationalized Resource Identifier), either a URL to a remote OWL file - or the full name path of a local one - :param ontology_search_path: directory path from which a possibly existing ontology is searched. This is appended - to `owlready2.onto_path`, a global variable containing a list of directories for searching local copies of - ontologies (similarly to python `sys.path` for modules/packages). + :param main_ontology_iri: Ontology IRI (Internationalized Resource Identifier), either a URL to a remote OWL file or the full name path of a local one + :param ontology_search_path: directory path from which a possibly existing ontology is searched. This is appended to `owlready2.onto_path`, a global variable containing a list of directories for searching local copies of ontologies (similarly to python `sys.path` for modules/packages). """ if owlready2: Path(ontology_search_path).mkdir(parents=True, exist_ok=True) @@ -73,14 +44,26 @@ def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = f"{P else: return + #: A dictionary of OWL ontologies, keyed by ontology name (same as its namespace name), eg. 'SOMA' self.ontologies: Dict[str, owlready2.Ontology] = {} - self.main_ontology: owlready2.Ontology = None - self.soma: owlready2.Ontology = None - self.dul: owlready2.Ontology = None - self.ontology_world: owlready2.World = None + #: The main ontology instance as the result of an ontology loading operation + self.main_ontology: Optional[owlready2.Ontology] = None + + #: The SOMA ontology instance, referencing :attr:`ontology` in case of ontology loading from `SOMA.owl`. Ref: http://www.ease-crc.org/ont/SOMA.owl + self.soma: Optional[owlready2.Ontology] = None + + #: The DUL ontology instance, referencing :attr:`ontology` in case of ontology loading from `DUL.owl`. Ref: http://www.ease-crc.org/ont/DUL.owl + self.dul: Optional[owlready2.Ontology] = None + + #: Ontology world, the placeholder of triples stored by owlready2. Ref: https://owlready2.readthedocs.io/en/latest/world.html + self.ontology_world: Optional[owlready2.World] = None + + #: Ontology IRI (Internationalized Resource Identifier), either a URL to a remote OWL file or the full name path of a local one self.main_ontology_iri: str = main_ontology_iri - self.main_ontology_namespace: owlready2.Namespace = None + + #: Namespace of the main ontology + self.main_ontology_namespace: Optional[owlready2.Namespace] = None # Create an ontology world with parallelized file parsing enabled self.ontology_world = World(filename=f"{ontology_search_path}/{Path(main_ontology_iri).stem}.sqlite3", @@ -92,9 +75,11 @@ def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = f"{P self.dul = self.ontologies.get(DUL_ONTOLOGY_NAMESPACE) @staticmethod - def print_ontology_class(ontology_class): + def print_ontology_class(ontology_class: Type[owlready2.Thing]): """ Print information (ancestors, super classes, subclasses, properties, etc.) of an ontology class + + :param ontology_class: An ontology class """ if ontology_class is None: return @@ -108,9 +93,10 @@ def print_ontology_class(ontology_class): rospy.loginfo(f"Direct Instances: {list(ontology_class.direct_instances())}") rospy.loginfo(f"Inverse Restrictions: {list(ontology_class.inverse_restrictions())}") - def load_ontology(self, ontology_iri) -> tuple[owlready2.Ontology, owlready2.Namespace]: + def load_ontology(self, ontology_iri: str) -> tuple[owlready2.Ontology, owlready2.Namespace]: """ Load an ontology from an IRI + :param ontology_iri: An ontology IRI :return: A tuple including an ontology instance & its namespace """ @@ -132,6 +118,11 @@ def fetch_ontology(ontology__): return ontology, ontology_namespace def initialized(self) -> bool: + """ + Check if the main ontology has been loaded + + :return: True if loaded, otherwise False + """ return hasattr(self, "main_ontology") and self.main_ontology.loaded @staticmethod @@ -141,10 +132,8 @@ def browse_ontologies(ontology: owlready2.Ontology, Browse the loaded ontologies (including the main and imported ones), doing operations based on a condition. :param ontology: An ontology instance as the result of ontology loading - :param condition: a Callable condition that if not None needs to be passed before doing operations, otherwise just - always carry the operations - :param func: a Callable specifying the operations to perform on all the loaded ontologies if condition is None, - otherwise only the first ontology which meets the condition + :param condition: a Callable condition that if not None needs to be passed before doing operations, otherwise just always carry the operations + :param func: a Callable specifying the operations to perform on all the loaded ontologies if condition is None, otherwise only the first ontology which meets the condition """ if ontology is None: rospy.logerr(f"Ontology {ontology=} is None!") @@ -172,10 +161,9 @@ def browse_ontologies(ontology: owlready2.Ontology, def save(self, target_filename: str = "", overwrite: bool = False) -> bool: """ Save the current ontology to disk + :param target_filename: full name path of a file which the ontologies are saved into. - :param overwrite: overwrite an existing file if it exists. - If empty, they are saved to the same original OWL file from which the main ontology was loaded, or - a file at the same folder with ontology search path specified at constructor if it was loaded from a remote IRI. + :param overwrite: overwrite an existing file if it exists. If empty, they are saved to the same original OWL file from which the main ontology was loaded, or a file at the same folder with ontology search path specified at constructor if it was loaded from a remote IRI. :return: True if the ontology was successfully saved, False otherwise """ @@ -221,7 +209,7 @@ def create_ontology_concept_class(self, class_name: str, @staticmethod def create_ontology_property_class(class_name: str, ontology_parent_property_class: Optional[Type[owlready2.Property]] = None) \ - -> Type[owlready2.Property] | None: + -> Optional[Type[owlready2.Property]]: """ Create a new property class in ontology @@ -263,7 +251,7 @@ def get_ontology_classes_by_condition(self, condition: Callable, first_match_onl return out_classes @staticmethod - def get_ontology_class_by_ontology(ontology: owlready2.Ontology, class_name: str) -> Type[owlready2.Thing] | None: + def get_ontology_class_by_ontology(ontology: owlready2.Ontology, class_name: str) -> Optional[Type[owlready2.Thing]]: """ Get an ontology class if it exists in a given ontology @@ -272,7 +260,7 @@ def get_ontology_class_by_ontology(ontology: owlready2.Ontology, class_name: str """ return getattr(ontology, class_name) if ontology and hasattr(ontology, class_name) else None - def get_ontology_class(self, class_name: str) -> Type[owlready2.Thing] | None: + def get_ontology_class(self, class_name: str) -> Optional[Type[owlready2.Thing]]: """ Get an ontology class by name @@ -343,8 +331,7 @@ def create_ontology_triple_classes(self, subject_class_name: str, object_class_n :param subject_class_name: name of the subject class :param object_class_name: name of the object class - :param predicate_name: name of predicate class, also used as a Python attribute of the subject class to - query object instances + :param predicate_name: name of predicate class, also used as a Python attribute of the subject class to query object instances :param inverse_predicate_name: name of inverse predicate :param ontology_subject_parent_class: a parent class of the subject class :param ontology_object_parent_class: a parent class of the object class @@ -377,7 +364,7 @@ def create_ontology_triple_classes(self, subject_class_name: str, object_class_n def create_ontology_linked_designator(self, designator_name: str, designator_class: Type[DesignatorDescription], ontology_concept_name: str, ontology_parent_class: Optional[Type[owlready2.Thing]] = None) \ - -> DesignatorDescription | None: + -> Optional[DesignatorDescription]: """ Create an object designator linked to a given ontology concept @@ -391,26 +378,26 @@ def create_ontology_linked_designator(self, designator_name: str, designator_cla return self.create_ontology_linked_designator_by_concept(designator_name, designator_class, ontology_concept_class) - def create_ontology_linked_designator_by_concept(self, designator_name: str, + def create_ontology_linked_designator_by_concept(self, object_name: str, designator_class: Type[DesignatorDescription], ontology_concept_class: Type[owlready2.Thing]) \ - -> DesignatorDescription | None: + -> Optional[DesignatorDescription]: """ Create a designator that belongs to a given ontology concept class - :param designator_name: Designator name - :param designator_class: Designator class - :param ontology_concept_class: An ontology concept class which the output designator is associated with - :return: An object designator associated with the given ontology concept class + :param object_name: Name of object in case of the designator to be created is an Object Designator + :param designator_class: A given designator class + :param ontology_concept_class: An ontology concept class with which the output designator is associated + :return: An object designator associated with the given ontology concept class if created successfully (not already exists), None otherwise """ - ontology_concept_name = f'{designator_name}_concept' + ontology_concept_name = f'{object_name}_concept' if len(OntologyConceptHolderStore().get_designators_of_ontology_concept(ontology_concept_name)) > 0: - rospy.logerr(f"A designator named [{designator_name}] is already created for ontology concept [{ontology_concept_name}]") + rospy.logerr(f"A designator named [{object_name}] is already created for ontology concept [{ontology_concept_name}]") return None # Create a designator of `designator_class` - designator = designator_class(names=[designator_name]) if issubclass(designator_class, ObjectDesignatorDescription) \ - else designator_class() + designator = designator_class(names=[object_name]) if issubclass(designator_class, ObjectDesignatorDescription) \ + else designator_class() # Link designator with an ontology concept of `ontology_concept_class` ontology_concept_holder = OntologyConceptHolderStore().get_ontology_concept_holder_by_name(ontology_concept_name) @@ -478,7 +465,14 @@ def get_designators_by_subject_predicate(subject: DesignatorDescription, def create_ontology_object_designator_from_type(self, object_type: ObjectType, ontology_concept_class: Type[owlready2.Thing]) \ - -> ObjectDesignatorDescription: + -> Optional[ObjectDesignatorDescription]: + """ + Create an object designator associated with an ontology concept class from a given object type + + :param object_type: An enumerated type of object + :param ontology_concept_class: An ontology concept class + :return: An object designator if created successfully (if not already existing), otherwise None + """ object_type_name = object_type.name.lower() object_designator = \ self.create_ontology_linked_designator_by_concept(object_type_name, @@ -491,6 +485,7 @@ def create_ontology_object_designator_from_type(self, object_type: ObjectType, def destroy_ontology_class(ontology_class, destroy_instances: bool = True): """ Destroy all classes of an ontology + :param ontology_class: The ontology class to be destroyed :param destroy_instances: Whether to destroy instances of those ontology classes """ diff --git a/src/pycram/ontology/ontology_common.py b/src/pycram/ontology/ontology_common.py index 4750dd2a8..ebba6499b 100644 --- a/src/pycram/ontology/ontology_common.py +++ b/src/pycram/ontology/ontology_common.py @@ -3,12 +3,11 @@ from typing import Callable, Dict, List, Optional, Type, TYPE_CHECKING import rospy -from pycram.helper import Singleton +from ..helper import Singleton if TYPE_CHECKING: - from pycram.designator import DesignatorDescription + from ..designator import DesignatorDescription try: - import owlready2 from owlready2 import * except ImportError: owlready2 = None @@ -18,11 +17,6 @@ class OntologyConceptHolderStore(object, metaclass=Singleton): """ Singleton class storing all instances of `OntologyConceptHolder` - - Attributes - ---------- - __all_ontology_concept_holders: Dict[str, OntologyConceptHolder] - Dictionary of all ontology concept holders, keyed by concept names """ def __init__(self): @@ -31,10 +25,17 @@ def __init__(self): """ if owlready2 is None: return + #: Dictionary of all ontology concept holders, keyed by concept names self.__all_ontology_concept_holders: Dict[str, OntologyConceptHolder] = {} def add_ontology_concept_holder(self, ontology_concept_name: str, ontology_concept_holder: OntologyConceptHolder)\ -> bool: + """ + Add an ontology concept to the store + + :param ontology_concept_name: Name of the ontology concept to be removed + :return: True if the ontology concept can be added into the concept store (if not already existing), otherwise False + """ if ontology_concept_name in self.__all_ontology_concept_holders: rospy.logerr(f"OntologyConceptHolder for `{ontology_concept_name}` was already created!") return False @@ -45,6 +46,9 @@ def add_ontology_concept_holder(self, ontology_concept_name: str, ontology_conce def remove_ontology_concept(self, ontology_concept_name: str) -> bool: """ Remove an ontology concept from the store + + :param ontology_concept_name: Name of the ontology concept to be removed + :return: True if the ontology concept can be removed from the concept store (if existing), otherwise False """ if ontology_concept_name in self.__all_ontology_concept_holders: del self.__all_ontology_concept_holders[ontology_concept_name] @@ -54,17 +58,21 @@ def remove_ontology_concept(self, ontology_concept_name: str) -> bool: def get_ontology_concepts_by_class(self, ontology_concept_class: Type[owlready2.Thing]) -> List[owlready2.Thing]: """ Get a list of ontology concepts for a given class - :ontology_concept_class: An ontology concept class + + :param ontology_concept_class: An ontology concept class + :return: A list of ontology concepts of which the type is either the given class or its subclass """ return list(itertools.chain( *[concept_holder.ontology_concept for concept_holder in self.__all_ontology_concept_holders.values() if owlready2.issubclass(concept_holder.ontology_concept, ontology_concept_class)])) - def get_ontology_concept_by_name(self, ontology_concept_name: str) -> owlready2.Thing | None: + def get_ontology_concept_by_name(self, ontology_concept_name: str) -> Optional[owlready2.Thing]: """ - Get the ontology concept holder for one of a given name if exists, otherwise None - :ontology_concept_name: Name of an ontology concept + Get the ontology concept of a given name if exists, otherwise None + + :param ontology_concept_name: Name of an ontology concept + :return: The ontology concept of a given name if exists or None otherwise """ concept_holder = self.__all_ontology_concept_holders.get(ontology_concept_name) return concept_holder.ontology_concept if concept_holder else None @@ -72,16 +80,20 @@ def get_ontology_concept_by_name(self, ontology_concept_name: str) -> owlready2. def get_ontology_concept_holders_by_class(self, ontology_concept_class: Type[owlready2.Thing]) \ -> List[OntologyConceptHolder]: """ - Get a list of ontology concept holders for the given ontology concept class - :ontology_concept_class: An ontology concept class + Get a list of ontology concept holders for a given ontology concept class + + :param ontology_concept_class: An ontology concept class + :return: A list of ontology concept holders as instances of a given ontology concept class """ return [concept_holder for concept_holder in self.__all_ontology_concept_holders.values() if isinstance(concept_holder.ontology_concept, ontology_concept_class)] - def get_ontology_concept_holder_by_name(self, ontology_concept_name: str) -> OntologyConceptHolder | None: + def get_ontology_concept_holder_by_name(self, ontology_concept_name: str) -> Optional[OntologyConceptHolder]: """ Get the ontology concept holder for one of a given name if exists, otherwise None - :ontology_concept_name: Name of an ontology concept + + :param ontology_concept_name: Name of an ontology concept + :return: The ontology concept holder for one of a given name if exists, otherwise None """ return self.__all_ontology_concept_holders.get(ontology_concept_name) @@ -89,14 +101,18 @@ def get_ontology_concept_holder_by_name(self, ontology_concept_name: str) -> Ont def get_ontology_concepts_of_designator(designator: DesignatorDescription) -> List[owlready2.Thing]: """ Get the corresponding ontology concepts for a given designator + :param designator: A designator associated with an ontology concept + :return: A list of ontology concepts corresponding with a given designator """ return [concept_holder.ontology_concept for concept_holder in designator.ontology_concept_holders] def get_designators_of_ontology_concept(self, ontology_concept_name: str) -> List[DesignatorDescription]: """ - Get the corresponding designators associated with the given ontology concept + Get the corresponding designators associated with a given ontology concept + :param ontology_concept_name: An ontology concept name + :return: A list of designators corresponding to a given ontology concept """ return self.__all_ontology_concept_holders[ontology_concept_name].designators \ if ontology_concept_name in self.__all_ontology_concept_holders else [] @@ -106,51 +122,53 @@ class OntologyConceptHolder(object): """ Wrapper of an ontology concept that is either dynamically created or loaded from an ontology. NOTE: Since an ontology concept class, after being saved into an ontology file, must be reusable in the next time - the ontology is loaded, there must be no other attributes should be created for it aside from ones inherited from `owlready2.Thing`! - - Attributes - ---------- - ontology_concept: owlready2.Thing - An ontology concept, either dynamically created, or loaded from an ontology - designators: List[DesignatorDescription] - List of designators associated with this ontology concept - resolve: Callable - A callable used to resolve the designators to whatever of interest, like designators or their resolving results - concept_holder_store: OntologyConceptHolder - The store for all OntologyConceptHolder instances + the ontology is loaded, there must be no other attributes of it that should be created aside from ones inherited from `owlready2.Thing`! + + :ivar ontology_concept: An ontology concept, either dynamically created, or loaded from an ontology """ def __init__(self, ontology_concept: owlready2.Thing): """ + Initialize a holder of a given ontology concept instance + :param ontology_concept: An ontology concept instance """ if owlready2 is None: return + #: An ontology concept, either dynamically created, or loaded from an ontology self.ontology_concept: owlready2.Thing = ontology_concept + #: List of designators associated with this ontology concept self.designators: List[DesignatorDescription] = [] + #: A callable used to resolve the designators to whatever of interest, like designators or their resolving results self.resolve: Optional[Callable] = None + #: The store for all OntologyConceptHolder instances self.concept_holder_store: OntologyConceptHolderStore = OntologyConceptHolderStore() self.concept_holder_store.add_ontology_concept_holder(ontology_concept.name, self) @property def name(self) -> str: """ + Get name of the ontology concept owned by this holder + :return: Ontology concept name """ return self.ontology_concept.name if self.ontology_concept else "" - def get_default_designator(self) -> DesignatorDescription | None: + def get_default_designator(self) -> Optional[DesignatorDescription]: """ Get the first element of designators if there is, else None + + :return: The first designator associated with the ontology concept held by this holder if exists or None """ return self.designators[0] if len(self.designators) > 0 else None def has_designator(self, designator) -> bool: """ - :return: True if a given designator was registered by this ontology concept holder, either by itself or under - another of the same name + Check whether this ontology concept holder has a given designator registered with its ontology concept + + :return: True if a given designator was registered by this ontology concept holder, either by itself or under another of the same name """ if designator in self.designators: return True @@ -164,7 +182,9 @@ def has_designator(self, designator) -> bool: def __eq__(self, other: OntologyConceptHolder) -> bool: """ Equality check based on name of the ontology concept + :param other: Other ontology concept instance to check against + :return: True if the ontology concept of the other holder has the same name with the current one, otherwise False """ return ((self.ontology_concept == other.ontology_concept) or (self.ontology_concept.name == other.ontology_concept.name)) diff --git a/test/test_ontology.py b/test/test_ontology.py index 6d382f9f1..07f6bc5d8 100644 --- a/test/test_ontology.py +++ b/test/test_ontology.py @@ -3,13 +3,12 @@ import unittest import logging from pathlib import Path -from typing import Type +from typing import Type, Optional from pycram.designator import ObjectDesignatorDescription import rospy try: - import owlready2 from owlready2 import * except ImportError: owlready2 = None @@ -21,9 +20,9 @@ class TestOntologyManager(unittest.TestCase): ontology_manager: OntologyManager - main_ontology: owlready2.Ontology | None - soma: owlready2.Ontology | None - dul: owlready2.Ontology | None + main_ontology: Optional[owlready2.Ontology] + soma: Optional[owlready2.Ontology] + dul: Optional[owlready2.Ontology] @classmethod def setUpClass(cls): From ed817eb09bd86257a3dc6678c02cbd21d4999f35 Mon Sep 17 00:00:00 2001 From: duc than Date: Mon, 27 May 2024 17:12:02 +0200 Subject: [PATCH 25/26] create_ontology_linked_designator() designator_name -> object_name Optional as only required if creating Object Designator --- examples/ontology.ipynb | 832 ++++++++++++++++++-------------- src/pycram/ontology/__init__.py | 0 src/pycram/ontology/ontology.py | 42 +- test/test_ontology.py | 2 +- 4 files changed, 505 insertions(+), 371 deletions(-) create mode 100644 src/pycram/ontology/__init__.py diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 78deb0532..228f85180 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -2,40 +2,29 @@ "cells": [ { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "# Ontology interface\n", "\n", "This tutorial demonstrates basic usages of __owlready2__ API for ontology manipulation. Notably, new ontology concept triple classes (subject, predicate, object) will be dynamically created, with optional existing ontology parent classes that are loaded from an OWL ontology. Then through the interconnected relations specified in triples, designators and their corresponding ontology concepts can be double-way queried for input information in certain tasks, eg. making a robot motion plan. " - ], - "metadata": { - "collapsed": false - } - }, - { - "metadata": { - "ExecuteTime": { - "end_time": "2024-04-12T11:49:11.975346Z", - "start_time": "2024-04-12T11:49:11.974048Z" - } - }, - "cell_type": "code", - "source": "", - "outputs": [], - "execution_count": null + ] }, { "cell_type": "code", - "source": [ - "from pathlib import Path\n", - "from typing import Type, TYPE_CHECKING\n", - "import pycram\n", - "from pycram.designator import ObjectDesignatorDescription" - ], + "execution_count": 1, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.317484Z", "start_time": "2024-04-12T11:49:12.022030Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -47,27 +36,47 @@ "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='wide_stereo_optical_frame']\n", "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='narrow_stereo_optical_frame']\n", "Unknown attribute \"type\" in /robot[@name='pr2']/link[@name='laser_tilt_link']\n", - "Failed to import Giskard messages\n", + "Failed to import Giskard messages, the real robot will not be available\n", "Could not import RoboKudo messages, RoboKudo interface could not be initialized\n", - "pybullet build time: Nov 28 2023 23:45:17\n" + "pybullet build time: Nov 28 2023 23:51:11\n" ] } ], - "execution_count": 1 + "source": [ + "from pathlib import Path\n", + "from typing import Type, TYPE_CHECKING\n", + "import pycram\n", + "from pycram.designator import ObjectDesignatorDescription" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "# Owlready2\n", "\n", "[Owlready2](https://owlready2.readthedocs.io/en/latest/intro.html) is a Python package providing a transparent access to OWL ontologies. It supports various manipulation operations, including but not limited to loading, modification, saving ontologies. Built-in supported reasoners include [HermiT](http://www.hermit-reasoner.com) and [Pellet](https://github.com/stardog-union/pellet)." - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", + "execution_count": 2, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-12T11:49:13.333080Z", + "start_time": "2024-04-12T11:49:13.321031Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, + "outputs": [], "source": [ "import logging\n", "try:\n", @@ -78,19 +87,16 @@ " logging.error(\"Could not import owlready2, Ontology Manager could not be initialized!\")\n", "\n", "logging.getLogger().setLevel(logging.INFO)" - ], + ] + }, + { + "cell_type": "markdown", "metadata": { "collapsed": false, - "ExecuteTime": { - "end_time": "2024-04-12T11:49:13.333080Z", - "start_time": "2024-04-12T11:49:13.321031Z" + "jupyter": { + "outputs_hidden": false } }, - "outputs": [], - "execution_count": 2 - }, - { - "cell_type": "markdown", "source": [ "# Ontology Manager\n", "\n", @@ -101,27 +107,19 @@ "Also new and updated concepts with their properties defined in runtime could be stored into an [SQLite3 file database](https://owlready2.readthedocs.io/en/latest/world.html) for reuse.\n", "\n", "Here we will use [SOMA ontology](https://ease-crc.github.io/soma) as the baseline to utilize the generalized concepts provided by it." - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", - "source": [ - "from pycram.ontology.ontology import OntologyManager, SOMA_HOME_ONTOLOGY_IRI\n", - "from pycram.ontology.ontology_common import OntologyConceptHolderStore, OntologyConceptHolder\n", - "\n", - "ontology_manager = OntologyManager(SOMA_HOME_ONTOLOGY_IRI)\n", - "main_ontology = ontology_manager.main_ontology\n", - "soma = ontology_manager.soma\n", - "dul = ontology_manager.dul" - ], + "execution_count": 3, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.386628Z", "start_time": "2024-04-12T11:49:13.333901Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -129,22 +127,36 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712922553.382796]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1712922553.383623]: - main namespace: SOMA-HOME\n", - "[INFO] [1712922553.383951]: - loaded ontologies:\n", - "[INFO] [1712922553.384327]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1712922553.384694]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1712922553.385051]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1716825829.020764]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1716825829.021493]: - main namespace: SOMA-HOME\n", + "[INFO] [1716825829.021986]: - loaded ontologies:\n", + "[INFO] [1716825829.022472]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1716825829.022944]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1716825829.023414]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], - "execution_count": 3 + "source": [ + "from pycram.ontology.ontology import OntologyManager, SOMA_HOME_ONTOLOGY_IRI\n", + "from pycram.ontology.ontology_common import OntologyConceptHolderStore, OntologyConceptHolder\n", + "\n", + "ontology_manager = OntologyManager(SOMA_HOME_ONTOLOGY_IRI)\n", + "main_ontology = ontology_manager.main_ontology\n", + "soma = ontology_manager.soma\n", + "dul = ontology_manager.dul" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "## Ontology Concept Holder\n", - "__`OntologyConceptHolder`__ class, encapsulating an __`owlready2.Thing`__ instance, is used primarily as the binding connection between the `owlready2.Thing` ontology concept to PyCram designators. We make it that way, instead of creating a custom concept class that inherits from `owlready2.Thing` for the reasons below:\n", + "__OntologyConceptHolder__ class, encapsulating an __owlready2.Thing__ instance, is used primarily as the binding connection between the `owlready2.Thing` ontology concept to PyCram designators. We make it that way, instead of creating a custom concept class that inherits from `owlready2.Thing` for the reasons below:\n", "\n", "- `owlready2` API does not have very robust support for client classes to inherit from theirs with added (non-semantic) attributes, particularly in our case, where classes like `DesignatorDescription` have their `metaclass` as `ABCMeta`, while it is `EntityClass` that is the metaclass used for basically all concepts (classes, properties) in `owlready2`. Since those two metaclasses just bear no relationship, for the inheritance to work, the only way is to create a child metaclass with both of those as parents, however without full support by `owlready2`, plus the second reason below will point out it's not worth the effort.\n", "\n", @@ -154,39 +166,40 @@ "As such, in short, an ontology concept class, either newly created on the fly or loaded from ontologies, has to be `owlready2.Thing` or its pure derived class (without non-semantic attributes), so to make itself reusable upon reloading.\n", "\n", "Notable attributes:\n", + "\n", "- `ontology_concept`: An ontology concept of `owlready2.Thing` type or its pure child class (without custom non-semantic attributes), either dynamically created, or loaded from an ontology\n", + "\n", "- `designators`: a list of `DesignatorDescription` instances associated with `ontology_concept`\n", + "\n", "- `resolve`: a `Callable` typically returning a list of `DesignatorDescription` as specific designators, like `designators` or its subset, inferred from the ontology concept. In fact, it can be resolved to anything else relevant, up to the caller." - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "## Query ontology classes and their properties\n", "\n", "Classes in the loaded ontology can be queried based on their exact names, or part of them, or by namespace.\n", "Here, we can see essential info (ancestors, super/sub-classes, properties, direct instances, etc.) of the found ontology class." - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", - "source": [ - "ontology_designed_container_class = ontology_manager.get_ontology_class('DesignedContainer')\n", - "ontology_manager.print_ontology_class(ontology_designed_container_class)\n", - "classes = ontology_manager.get_ontology_classes_by_subname('PhysicalObject'); print(classes[0])\n", - "classes = ontology_manager.get_ontology_classes_by_namespace('SOMA'); print(classes[:2])" - ], + "execution_count": 4, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.472991Z", "start_time": "2024-04-12T11:49:13.387739Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -194,39 +207,50 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712922553.411097]: -------------------\n", - "[INFO] [1712922553.411713]: SOMA.DesignedContainer \n", - "[INFO] [1712922553.412087]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1712922553.412494]: Ancestors: {DUL.Object, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712922553.412802]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1712922553.413171]: Properties: [SOMA.hasDisposition, rdf-schema.isDefinedBy, rdf-schema.comment, rdf-schema.label]\n", - "[INFO] [1712922553.468159]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1712922553.468808]: Direct Instances: []\n", - "[INFO] [1712922553.469357]: Inverse Restrictions: []\n", + "[INFO] [1716825829.147923]: -------------------\n", + "[INFO] [1716825829.148712]: SOMA.DesignedContainer \n", + "[INFO] [1716825829.149332]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1716825829.149857]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Entity, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1716825829.150294]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1716825829.150810]: Properties: [SOMA.hasDisposition, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1716825829.208589]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1716825829.209226]: Direct Instances: []\n", + "[INFO] [1716825829.209784]: Inverse Restrictions: []\n", "DUL.PhysicalObject\n", "[SOMA.Affordance, SOMA.Disposition]\n" ] } ], - "execution_count": 4 + "source": [ + "ontology_designed_container_class = ontology_manager.get_ontology_class('DesignedContainer')\n", + "ontology_manager.print_ontology_class(ontology_designed_container_class)\n", + "classes = ontology_manager.get_ontology_classes_by_subname('PhysicalObject'); print(classes[0])\n", + "classes = ontology_manager.get_ontology_classes_by_namespace('SOMA'); print(classes[:2])" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "__Descendants__ of an ontology class can be also queried by" - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", - "source": "ontology_manager.get_ontology_descendant_classes(ontology_designed_container_class)[:5]", + "execution_count": 5, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.490775Z", "start_time": "2024-04-12T11:49:13.473745Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -241,60 +265,71 @@ "output_type": "execute_result" } ], - "execution_count": 5 + "source": [ + "ontology_manager.get_ontology_descendant_classes(ontology_designed_container_class)[:5]" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "## Create a new ontology concept class and its individual\n", "\n", "A new ontology class can be created dynamically as inheriting from an existing class in the loaded ontology.\n", "Here we create the class and its instance, also known as [__individual__](https://owlready2.readthedocs.io/en/latest/class.html#creating-equivalent-classes) in ontology terms, which is then wrapped inside an `OntologyConceptHolder`." - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", - "source": [ - "ontology_custom_container_class = ontology_manager.create_ontology_concept_class('CustomContainerConcept',\n", - " ontology_designed_container_class)\n", - "custom_container_concept_holder = OntologyConceptHolder(ontology_custom_container_class(name='ontology_custom_container_concept',\n", - " namespace=main_ontology))" - ], + "execution_count": 6, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.496929Z", "start_time": "2024-04-12T11:49:13.491199Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [], - "execution_count": 6 + "source": [ + "ontology_custom_container_class = ontology_manager.create_ontology_concept_class('CustomContainerConcept',\n", + " ontology_designed_container_class)\n", + "custom_container_concept_holder = OntologyConceptHolder(ontology_custom_container_class(name='ontology_custom_container_concept',\n", + " namespace=main_ontology))" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "## Access ontology concept classes and individuals\n", - "All ontology classes created on the fly purely inherit (without added non-semantic attributes) from __`owlready2.Thing`__, and so share the same namespace with the loaded ontology instance, `main_ontology`. They can then be accessible through that namespace by __`main_ontology.`__.\n", - "The same applies for individuals of those classes, accessible by __`main_ontology.`__" - ], - "metadata": { - "collapsed": false - } + "All ontology classes created on the fly purely inherit (without added non-semantic attributes) from `owlready2.Thing`, and so share the same namespace with the loaded ontology instance, `main_ontology`. They can then be accessible through that namespace by __main_ontology.__.\n", + "The same applies for individuals of those classes, accessible by __main_ontology.__" + ] }, { "cell_type": "code", - "source": [ - "ontology_manager.print_ontology_class(main_ontology.CustomContainerConcept)\n", - "print(f\"custom_container_concept is {main_ontology.ontology_custom_container_concept}: {custom_container_concept_holder.ontology_concept is main_ontology.ontology_custom_container_concept}\")" - ], + "execution_count": 7, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.510281Z", "start_time": "2024-04-12T11:49:13.497378Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -302,40 +337,47 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712922553.506214]: -------------------\n", - "[INFO] [1712922553.506883]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1712922553.507285]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1712922553.507586]: Ancestors: {DUL.Object, SOMA-HOME.CustomContainerConcept, DUL.Entity, SOMA.DesignedContainer, owl.Thing, DUL.DesignedArtifact, DUL.PhysicalArtifact, DUL.PhysicalObject}\n", - "[INFO] [1712922553.507854]: Subclasses: []\n", - "[INFO] [1712922553.508167]: Properties: []\n", - "[INFO] [1712922553.508455]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712922553.508754]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1712922553.509020]: Inverse Restrictions: []\n", + "[INFO] [1716825829.277244]: -------------------\n", + "[INFO] [1716825829.278241]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1716825829.278839]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1716825829.279422]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Entity, DUL.PhysicalArtifact, SOMA-HOME.CustomContainerConcept, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", + "[INFO] [1716825829.280004]: Subclasses: []\n", + "[INFO] [1716825829.280732]: Properties: []\n", + "[INFO] [1716825829.282059]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1716825829.282827]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1716825829.283545]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } ], - "execution_count": 7 + "source": [ + "ontology_manager.print_ontology_class(main_ontology.CustomContainerConcept)\n", + "print(f\"custom_container_concept is {main_ontology.ontology_custom_container_concept}: {custom_container_concept_holder.ontology_concept is main_ontology.ontology_custom_container_concept}\")" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "For ones already existing in the ontology, they can only be accessed through their corresponding ontology, eg: `soma` as follows" - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", - "source": [ - "ontology_manager.print_ontology_class(soma.Cup)" - ], + "execution_count": 8, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.530908Z", "start_time": "2024-04-12T11:49:13.510723Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -343,75 +385,82 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712922553.526974]: -------------------\n", - "[INFO] [1712922553.527599]: SOMA.Cup \n", - "[INFO] [1712922553.527934]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1712922553.528244]: Ancestors: {SOMA.Crockery, DUL.Object, SOMA.Tableware, DUL.Entity, owl.Thing, SOMA.DesignedTool, DUL.DesignedArtifact, DUL.PhysicalObject, DUL.PhysicalArtifact, SOMA.DesignedContainer, SOMA.Cup}\n", - "[INFO] [1712922553.528530]: Subclasses: []\n", - "[INFO] [1712922553.528861]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1712922553.529176]: Instances: []\n", - "[INFO] [1712922553.529449]: Direct Instances: []\n", - "[INFO] [1712922553.529719]: Inverse Restrictions: []\n" + "[INFO] [1716825829.297186]: -------------------\n", + "[INFO] [1716825829.298009]: SOMA.Cup \n", + "[INFO] [1716825829.298485]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1716825829.298891]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Entity, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.Crockery, owl.Thing, SOMA.Tableware, DUL.PhysicalObject, SOMA.Cup}\n", + "[INFO] [1716825829.299265]: Subclasses: []\n", + "[INFO] [1716825829.299691]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", + "[INFO] [1716825829.300347]: Instances: []\n", + "[INFO] [1716825829.300837]: Direct Instances: []\n", + "[INFO] [1716825829.301184]: Inverse Restrictions: []\n" ] } ], - "execution_count": 8 + "source": [ + "ontology_manager.print_ontology_class(soma.Cup)" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "## Connect ontology class individuals with designators\n", "After creating `custom_container_concept_holder` (wrapping `custom_container_concept` as an `owlready2.Thing`), we connect it to a designator (say `obj_designator`) by:\n", - "- Append to `obj_designator.ontology_concept_holders` with `custom_container_concept_holder`\n", - "- Append to `custom_container_concept_holder.designators` with `obj_designator`" - ], - "metadata": { - "collapsed": false - } + "\n", + "- Appending to `obj_designator.ontology_concept_holders` with `custom_container_concept_holder`\n", + "\n", + "- Appending to `custom_container_concept_holder.designators` with `obj_designator`" + ] }, { "cell_type": "code", - "source": [ - "custom_container_designator = ObjectDesignatorDescription(names=[\"obj\"])\n", - "custom_container_designator.ontology_concept_holders.append(custom_container_concept_holder)\n", - "custom_container_concept_holder.designators.append(custom_container_designator)" - ], + "execution_count": 9, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.544458Z", "start_time": "2024-04-12T11:49:13.531362Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [], - "execution_count": 9 + "source": [ + "custom_container_designator = ObjectDesignatorDescription(names=[\"obj\"])\n", + "custom_container_designator.ontology_concept_holders.append(custom_container_concept_holder)\n", + "custom_container_concept_holder.designators.append(custom_container_designator)" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "We can also automatize all the above setup with a single function call" - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", - "source": [ - "another_custom_container_designator = ontology_manager.create_ontology_linked_designator(designator_name=\"another_custom_container\",\n", - " designator_class=ObjectDesignatorDescription,\n", - " ontology_concept_name=\"AnotherCustomContainerConcept\",\n", - " ontology_parent_class=ontology_designed_container_class)\n", - "another_custom_container_concept = another_custom_container_designator.ontology_concept_holders[0].ontology_concept \n", - "print(f\"Ontology concept: {another_custom_container_concept.name} of class {type(another_custom_container_concept)}\")\n", - "another_custom_container_designator = OntologyConceptHolderStore().get_ontology_concept_holder_by_name(main_ontology.AnotherCustomContainerConcept.instances()[0].name).get_default_designator()\n", - "print(f\"Designator: {another_custom_container_designator.names[0]} of type {type(another_custom_container_designator)}\")" - ], + "execution_count": 10, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.555369Z", "start_time": "2024-04-12T11:49:13.545449Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -424,21 +473,45 @@ ] } ], - "execution_count": 10 + "source": [ + "another_custom_container_designator = ontology_manager.create_ontology_linked_designator(object_name=\"another_custom_container\",\n", + " designator_class=ObjectDesignatorDescription,\n", + " ontology_concept_name=\"AnotherCustomContainerConcept\",\n", + " ontology_parent_class=ontology_designed_container_class)\n", + "another_custom_container_concept = another_custom_container_designator.ontology_concept_holders[0].ontology_concept \n", + "print(f\"Ontology concept: {another_custom_container_concept.name} of class {type(another_custom_container_concept)}\")\n", + "another_custom_container_designator = OntologyConceptHolderStore().get_ontology_concept_holder_by_name(main_ontology.AnotherCustomContainerConcept.instances()[0].name).get_default_designator()\n", + "print(f\"Designator: {another_custom_container_designator.names[0]} of type {type(another_custom_container_designator)}\")" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "## Create new ontology triple classes\n", "\n", "Concept classes of a triple, aka [__subject, predicate, object__], can be created dynamically. Here we will make an example creating ones for [__handheld objects__] and [__placeholder objects__], with a pair of predicate and inverse predicate signifying their mutual relation." - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", + "execution_count": 11, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-12T11:49:13.565635Z", + "start_time": "2024-04-12T11:49:13.555823Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, + "outputs": [], "source": [ "PLACEABLE_ON_PREDICATE_NAME = \"placeable_on\"\n", "HOLD_OBJ_PREDICATE_NAME = \"hold_obj\"\n", @@ -450,34 +523,40 @@ " inverse_predicate_name=HOLD_OBJ_PREDICATE_NAME,\n", " ontology_property_parent_class=soma.affordsBearer,\n", " ontology_inverse_property_parent_class=soma.isBearerAffordedBy)" - ], + ] + }, + { + "cell_type": "markdown", "metadata": { "collapsed": false, - "ExecuteTime": { - "end_time": "2024-04-12T11:49:13.565635Z", - "start_time": "2024-04-12T11:49:13.555823Z" + "jupyter": { + "outputs_hidden": false } }, - "outputs": [], - "execution_count": 11 - }, - { - "cell_type": "markdown", "source": [ "There, we use `soma.DesignedContainer` & `soma.Shape`, existing concept in SOMA ontology, as the parent classes for the subject & object concepts respectively.\n", "There is also a note that those classes will have the same namespace with `main_ontology`, so later on to be accessible through it.\n", "\n", - "Then now we define some instances of the newly created triple classes, and link them to object designators, again using __`ontology_manager.create_ontology_linked_designator()`__" - ], - "metadata": { - "collapsed": false - } + "Then now we define some instances of the newly created triple classes, and link them to object designators, again using `ontology_manager.create_ontology_linked_designator()`" + ] }, { "cell_type": "code", + "execution_count": 12, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-12T11:49:13.586549Z", + "start_time": "2024-04-12T11:49:13.566094Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, + "outputs": [], "source": [ "def create_ontology_handheld_object_designator(object_name: str, ontology_parent_class: Type[owlready2.Thing]):\n", - " return ontology_manager.create_ontology_linked_designator(designator_name=object_name,\n", + " return ontology_manager.create_ontology_linked_designator(object_name=object_name,\n", " designator_class=ObjectDesignatorDescription,\n", " ontology_concept_name=f\"Onto{object_name}\",\n", " ontology_parent_class=ontology_parent_class)\n", @@ -490,43 +569,33 @@ " for object_name in ['table', 'stool', 'shelf']]\n", "\n", "egg_tray = create_ontology_handheld_object_designator(\"egg_tray\", main_ontology.OntologyPlaceHolderObject)" - ], + ] + }, + { + "cell_type": "markdown", "metadata": { "collapsed": false, - "ExecuteTime": { - "end_time": "2024-04-12T11:49:13.586549Z", - "start_time": "2024-04-12T11:49:13.566094Z" + "jupyter": { + "outputs_hidden": false } }, - "outputs": [], - "execution_count": 12 - }, - { - "cell_type": "markdown", "source": [ "### Create ontology relations\n", "\n", - "Now we will create ontology relations or predicates between __placeholder objects__ and __handheld objects__ with __`ontology_manager.set_ontology_relation()`__" - ], - "metadata": { - "collapsed": false - } + "Now we will create ontology relations or predicates between __placeholder objects__ and __handheld objects__ with `ontology_manager.set_ontology_relation()`" + ] }, { "cell_type": "code", - "source": [ - "for place_holder in placeholders:\n", - " ontology_manager.set_ontology_relation(subject_designator=cookie_box, object_designator=place_holder,\n", - " predicate_name=PLACEABLE_ON_PREDICATE_NAME)\n", - "\n", - "ontology_manager.set_ontology_relation(subject_designator=egg_tray, object_designator=egg,\n", - " predicate_name=HOLD_OBJ_PREDICATE_NAME)" - ], + "execution_count": 13, "metadata": { - "collapsed": false, "ExecuteTime": { "end_time": "2024-04-12T11:49:13.596771Z", "start_time": "2024-04-12T11:49:13.587021Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -541,21 +610,56 @@ "output_type": "execute_result" } ], - "execution_count": 13 + "source": [ + "for place_holder in placeholders:\n", + " ontology_manager.set_ontology_relation(subject_designator=cookie_box, object_designator=place_holder,\n", + " predicate_name=PLACEABLE_ON_PREDICATE_NAME)\n", + "\n", + "ontology_manager.set_ontology_relation(subject_designator=egg_tray, object_designator=egg,\n", + " predicate_name=HOLD_OBJ_PREDICATE_NAME)" + ] }, { "cell_type": "markdown", + "metadata": { + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, "source": [ "## Query designators based on their ontology-concept relations\n", "\n", "Now we can make queries for designators from designators, based on the relation among their corresponding ontology concepts setup above" - ], - "metadata": { - "collapsed": false - } + ] }, { "cell_type": "code", + "execution_count": 14, + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-12T11:49:13.611368Z", + "start_time": "2024-04-12T11:49:13.597218Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['cookie_box']'s placeholder candidates: [['table'], ['stool'], ['shelf']]\n", + "['egg']'s placeholder candidates: [['egg_tray']]\n", + "['table'] can hold: [['cookie_box']]\n", + "['stool'] can hold: [['cookie_box']]\n", + "['shelf'] can hold: [['cookie_box']]\n", + "['egg_tray'] can hold: [['egg']]\n" + ] + } + ], "source": [ "print(f\"{cookie_box.names}'s placeholder candidates:\",\n", " f\"\"\"{[placeholder.names for placeholder in\n", @@ -577,12 +681,34 @@ " f\"\"\"{[placeholder.names for placeholder in\n", " ontology_manager.get_designators_by_subject_predicate(subject=egg_tray,\n", " predicate_name=HOLD_OBJ_PREDICATE_NAME)]}\"\"\")" - ], + ] + }, + { + "cell_type": "markdown", "metadata": { "collapsed": false, + "jupyter": { + "outputs_hidden": false + } + }, + "source": [ + "# Practical examples\n", + "\n", + "## Example 1\n", + "How about creating ontology concept classes encapsulating `pycram.datastructures.enums.ObjectType`? We can do it by:" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { "ExecuteTime": { - "end_time": "2024-04-12T11:49:13.611368Z", - "start_time": "2024-04-12T11:49:13.597218Z" + "end_time": "2024-04-12T11:49:13.621797Z", + "start_time": "2024-04-12T11:49:13.611864Z" + }, + "collapsed": false, + "jupyter": { + "outputs_hidden": false } }, "outputs": [ @@ -590,31 +716,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "['cookie_box']'s placeholder candidates: [['table'], ['stool'], ['shelf']]\n", - "['egg']'s placeholder candidates: [['egg_tray']]\n", - "['table'] can hold: [['cookie_box']]\n", - "['stool'] can hold: [['cookie_box']]\n", - "['shelf'] can hold: [['cookie_box']]\n", - "['egg_tray'] can hold: [['egg']]\n" + "GenericEdible object types:\n", + "SOMA-HOME.milk_concept [['milk']]\n", + "SOMA-HOME.breakfast_cereal_concept [['breakfast_cereal']]\n" ] } ], - "execution_count": 14 - }, - { - "cell_type": "markdown", - "source": [ - "# Practical examples\n", - "\n", - "## Example 1\n", - "How about creating ontology concept classes encapsulating `pycram.enums.ObjectType`? We can do it by:" - ], - "metadata": { - "collapsed": false - } - }, - { - "cell_type": "code", "source": [ "from pycram.datastructures.enums import ObjectType\n", "\n", @@ -632,34 +739,21 @@ "for edible_ontology_concept in generic_edible_class.direct_instances():\n", " print(edible_ontology_concept,\n", " [des.types for des in OntologyConceptHolderStore().get_ontology_concept_holder_by_name(edible_ontology_concept.name).designators])\n" - ], + ] + }, + { + "cell_type": "markdown", "metadata": { "collapsed": false, - "ExecuteTime": { - "end_time": "2024-04-12T11:49:13.621797Z", - "start_time": "2024-04-12T11:49:13.611864Z" + "jupyter": { + "outputs_hidden": false } }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "GenericEdible object types:\n", - "SOMA-HOME.milk_concept [['milk']]\n", - "SOMA-HOME.breakfast_cereal_concept [['breakfast_cereal']]\n" - ] - } - ], - "execution_count": 15 - }, - { - "cell_type": "markdown", "source": [ "## Example 2\n", - "We could also make use of relations between ontology concepts that designators are associated with, to enable more abstract inputs in robot motion plan.\n", + "We could also make use of relations between ontology concepts that designators are associated with, to enable more abstract inputs in robot motion plans.\n", "\n", - "In a similar style to the scenario of __placeholder objects__ and __handheld objects__ above, but with a little bit difference, we will ask the robot to query which content holders (eg. cup, pitcher, bowl) whereby a milk box could be pourable into.\n", + "In a similar style to the scenario of __placeholder objects__ and __handheld objects__ above, but with a bit difference, we will ask the robot to query which content holders (eg. cup, pitcher, bowl) whereby a milk box could be pourable into.\n", "\n", "Basically, we will provide an ontology-based implementation for the query:\n", " \n", @@ -669,19 +763,27 @@ "These designators are then used to again resolve for the target objects of interest, which become the inputs to a robot motion plan.\n", "\n", "### Setup simulated environment" - ], - "metadata": { - "collapsed": false - } + ] }, { + "cell_type": "code", + "execution_count": 16, "metadata": { "ExecuteTime": { "end_time": "2024-04-12T11:49:14.414260Z", "start_time": "2024-04-12T11:49:13.622258Z" } }, - "cell_type": "code", + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Scalar element defined multiple times: limit\n", + "Scalar element defined multiple times: limit\n" + ] + } + ], "source": [ "from pycram.worlds.bullet_world import BulletWorld, Object\n", "from pycram.datastructures.pose import Pose\n", @@ -696,32 +798,25 @@ "pr2 = Object(\"pr2\", ObjectType.ROBOT, \"pr2.urdf\")\n", "kitchen_designator = ObjectDesignatorDescription(names=[\"kitchen\"])\n", "robot_designator = ObjectDesignatorDescription(names=[\"pr2\"]).resolve()" - ], - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Scalar element defined multiple times: limit\n", - "Scalar element defined multiple times: limit\n" - ] - } - ], - "execution_count": 16 + ] }, { - "metadata": {}, "cell_type": "markdown", - "source": "### Create PourableObject-LiquidHolder triple ontology classes" + "metadata": {}, + "source": [ + "### Create PourableObject-LiquidHolder triple ontology classes" + ] }, { + "cell_type": "code", + "execution_count": 17, "metadata": { "ExecuteTime": { "end_time": "2024-04-12T11:49:14.501124Z", "start_time": "2024-04-12T11:49:14.415241Z" } }, - "cell_type": "code", + "outputs": [], "source": [ "POURABLE_INTO_PREDICATE_NAME = \"pourable_into\"\n", "HOLD_LIQUID_PREDICATE_NAME = \"hold_liquid\"\n", @@ -733,23 +828,38 @@ " inverse_predicate_name=HOLD_LIQUID_PREDICATE_NAME,\n", " ontology_property_parent_class=soma.affordsBearer,\n", " ontology_inverse_property_parent_class=soma.isBearerAffordedBy)" - ], - "outputs": [], - "execution_count": 17 + ] }, { - "metadata": {}, "cell_type": "markdown", - "source": "### Spawn a pourable object & liquid holders into the world and Create their designators" + "metadata": {}, + "source": [ + "### Spawn a pourable object & liquid holders into the world and Create their designators" + ] }, { + "cell_type": "code", + "execution_count": 18, "metadata": { "ExecuteTime": { "end_time": "2024-04-12T11:49:14.583818Z", "start_time": "2024-04-12T11:49:14.501719Z" } }, - "cell_type": "code", + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Unknown tag \"rgba_color\" in /robot[@name='milk_object']/link[@name='milk_main']/visual[1]/material[@name='white']\n", + "Unknown tag \"rgba_color\" in /robot[@name='cup_object']/link[@name='cup_main']/visual[1]/material[@name='white']\n", + "Unknown tag \"rgba_color\" in /robot[@name='milk_object']/link[@name='milk_main']/visual[1]/material[@name='white']\n", + "Unknown tag \"rgba_color\" in /robot[@name='bowl_object']/link[@name='bowl_main']/visual[1]/material[@name='white']\n", + "Unknown tag \"rgba_color\" in /robot[@name='cup_object']/link[@name='cup_main']/visual[1]/material[@name='white']\n", + "Unknown tag \"rgba_color\" in /robot[@name='pitcher_object']/link[@name='pitcher_main']/visual[1]/material[@name='white']\n" + ] + } + ], "source": [ "# Holdable obj\n", "milk_box = Object(\"milk_box\", ObjectType.MILK, \"milk.stl\")\n", @@ -762,44 +872,57 @@ "milk_holders = [cup, bowl, pitcher]\n", "milk_holder_designators = [create_ontology_handheld_object_designator(obj.name, main_ontology.OntologyLiquidHolderObject)\n", " for obj in milk_holders]" - ], - "outputs": [], - "execution_count": 18 + ] }, { - "metadata": {}, "cell_type": "markdown", - "source": "### Create an ontology relation between the designators of the pourable object & its liquid holders" + "metadata": {}, + "source": [ + "### Create an ontology relation between the designators of the pourable object & its liquid holders" + ] }, { + "cell_type": "code", + "execution_count": 19, "metadata": { "ExecuteTime": { "end_time": "2024-04-12T11:49:14.602526Z", "start_time": "2024-04-12T11:49:14.584461Z" } }, - "cell_type": "code", + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Unknown tag \"rgba_color\" in /robot[@name='bowl_object']/link[@name='bowl_main']/visual[1]/material[@name='white']\n", + "Unknown tag \"rgba_color\" in /robot[@name='pitcher_object']/link[@name='pitcher_main']/visual[1]/material[@name='white']\n" + ] + } + ], "source": [ "for milk_holder_desig in milk_holder_designators:\n", " ontology_manager.set_ontology_relation(subject_designator=milk_box_designator, object_designator=milk_holder_desig,\n", " predicate_name=POURABLE_INTO_PREDICATE_NAME)" - ], - "outputs": [], - "execution_count": 19 + ] }, { - "metadata": {}, "cell_type": "markdown", - "source": "### Set up `resolve` for the ontology concept of the pourable object" + "metadata": {}, + "source": [ + "### Set up `resolve` for the ontology concept of the pourable object" + ] }, { + "cell_type": "code", + "execution_count": 20, "metadata": { "ExecuteTime": { "end_time": "2024-04-12T11:49:14.612923Z", "start_time": "2024-04-12T11:49:14.603173Z" } }, - "cell_type": "code", + "outputs": [], "source": [ "milk_box_concept_holder = milk_box_designator.ontology_concept_holders[0]\n", "def milk_box_concept_resolve(): \n", @@ -807,31 +930,26 @@ " return object_designator, object_designator.resolve()\n", "\n", "milk_box_concept_holder.resolve = milk_box_concept_resolve" - ], - "outputs": [], - "execution_count": 20 + ] }, { - "metadata": {}, "cell_type": "markdown", + "metadata": {}, "source": [ - "Here, for demonstration purpose only, we specify the resolving result by __`milk_box_concept_holder`__ as __`cup`__, the first-registered (default) pourable-into target milk holder, utilizing the ontology relation setup above.\n", + "Here, for demonstration purpose only, we specify the resolving result by `milk_box_concept_holder` as `cup`, the first-registered (default) pourable-into target milk holder, utilizing the ontology relation setup above.\n", "\n", "Now, we can query the milk box's target liquid holder by resolving `milk_box_concept_holder`" ] }, { + "cell_type": "code", + "execution_count": 21, "metadata": { "ExecuteTime": { "end_time": "2024-04-12T11:49:14.627982Z", "start_time": "2024-04-12T11:49:14.613382Z" } }, - "cell_type": "code", - "source": [ - "target_milk_holder_designator, target_milk_holder = milk_box_concept_holder.resolve()\n", - "print(f\"Pickup target object: {target_milk_holder.name}, a content holder for {milk_box_designator.names} as in relation `{POURABLE_INTO_PREDICATE_NAME}`\")" - ], "outputs": [ { "name": "stdout", @@ -841,21 +959,52 @@ ] } ], - "execution_count": 21 + "source": [ + "target_milk_holder_designator, target_milk_holder = milk_box_concept_holder.resolve()\n", + "print(f\"Pickup target object: {target_milk_holder.name}, a content holder for {milk_box_designator.names} as in relation `{POURABLE_INTO_PREDICATE_NAME}`\")" + ] }, { - "metadata": {}, "cell_type": "markdown", - "source": "### Robot picks up the target liquid holder" + "metadata": {}, + "source": [ + "### Robot picks up the target liquid holder" + ] }, { + "cell_type": "code", + "execution_count": 22, "metadata": { "ExecuteTime": { "end_time": "2024-04-12T11:49:23.283909Z", "start_time": "2024-04-12T11:49:14.628600Z" } }, - "cell_type": "code", + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[INFO] [1716825831.876724]: Waiting for IK service: /pr2_left_arm_kinematics/get_ik\n", + "CostmapLocation.Location(pose=header: \n", + " seq: 0\n", + " stamp: \n", + " secs: 1716825831\n", + " nsecs: 857461929\n", + " frame_id: \"map\"\n", + "pose: \n", + " position: \n", + " x: 0.6399999999999999\n", + " y: 1.24\n", + " z: 0.0\n", + " orientation: \n", + " x: -0.0\n", + " y: 0.0\n", + " z: 0.15234391170286138\n", + " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n" + ] + } + ], "source": [ "with simulated_robot:\n", " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", @@ -883,56 +1032,31 @@ "\n", " ParkArmsAction([Arms.BOTH]).resolve().perform()\n", "world.exit()" - ], - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "CostmapLocation.Location(pose=header: \n", - " seq: 0\n", - " stamp: \n", - " secs: 1712922556\n", - " nsecs: 101702690\n", - " frame_id: \"map\"\n", - "pose: \n", - " position: \n", - " x: 0.6399999999999999\n", - " y: 1.24\n", - " z: 0.0\n", - " orientation: \n", - " x: -0.0\n", - " y: 0.0\n", - " z: 0.15234391170286138\n", - " w: -0.988327543159185, reachable_arms=['left', 'right']) left\n" - ] - } - ], - "execution_count": 22 + ] }, { - "metadata": {}, "cell_type": "markdown", + "metadata": {}, "source": [ "# Save ontologies to an OWL file\n", "After all the above operations on our ontologies, we now can save them to an OWL file on disk" ] }, { + "cell_type": "code", + "execution_count": 23, "metadata": { "ExecuteTime": { "end_time": "2024-04-12T11:49:23.337691Z", "start_time": "2024-04-12T11:49:23.286322Z" } }, - "cell_type": "code", - "source": "ontology_manager.save(f\"{Path.home()}/ontologies/New{main_ontology.name}.owl\")", "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1712922563.334936]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1716825839.151754]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] }, { @@ -946,23 +1070,25 @@ "output_type": "execute_result" } ], - "execution_count": 23 + "source": [ + "ontology_manager.save(f\"{Path.home()}/ontologies/New{main_ontology.name}.owl\")" + ] }, { - "metadata": {}, "cell_type": "markdown", + "metadata": {}, "source": [ "# Optimize ontology loading with SQLite3\n", - "Upon the initial ontology loading from OWL, an SQLite3 file is automatically created, acting as the quadstore cache for the loaded ontologies. This allows them to be __selectively__ reusable the next time that being loaded.\n", + "Upon the initial ontology loading from OWL, an SQLite3 file is automatically created, acting as the quadstore cache for the loaded ontologies. This allows them to be __selectively__ reusable the next time being loaded.\n", "More info can be referenced [here](https://owlready2.readthedocs.io/en/latest/world.html). " ] } ], "metadata": { "kernelspec": { - "display_name": "pycram_isaac", + "display_name": "pycram", "language": "python", - "name": "pycram_isaac" + "name": "pycram" }, "language_info": { "codemirror_mode": { diff --git a/src/pycram/ontology/__init__.py b/src/pycram/ontology/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index ade182feb..9744ed8fa 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -8,7 +8,6 @@ import rospy try: - import owlready2 from owlready2 import * except ImportError: owlready2 = None @@ -361,33 +360,35 @@ def create_ontology_triple_classes(self, subject_class_name: str, object_class_n ontology_inverse_predicate.inverse_property = ontology_predicate_class ontology_inverse_predicate.python_name = inverse_predicate_name - def create_ontology_linked_designator(self, designator_name: str, designator_class: Type[DesignatorDescription], + def create_ontology_linked_designator(self, designator_class: Type[DesignatorDescription], ontology_concept_name: str, + object_name: Optional[str] = "", ontology_parent_class: Optional[Type[owlready2.Thing]] = None) \ -> Optional[DesignatorDescription]: """ - Create an object designator linked to a given ontology concept + Create a designator linked to a given ontology concept - :param designator_name: Designator name - :param designator_class: Designator class + :param designator_class: A given designator class :param ontology_concept_name: Ontology concept name + :param object_name: Name of object in case of the designator to be created is an Object Designator :param ontology_parent_class: Parent ontology class from which the class of designator inherits - :return: An object designator associated with an ontology concept + :return: A designator associated with an ontology concept """ ontology_concept_class = self.create_ontology_concept_class(ontology_concept_name, ontology_parent_class) - return self.create_ontology_linked_designator_by_concept(designator_name, designator_class, - ontology_concept_class) + return self.create_ontology_linked_designator_by_concept(designator_class=designator_class, + ontology_concept_class=ontology_concept_class, + object_name=object_name) - def create_ontology_linked_designator_by_concept(self, object_name: str, - designator_class: Type[DesignatorDescription], - ontology_concept_class: Type[owlready2.Thing]) \ + def create_ontology_linked_designator_by_concept(self, designator_class: Type[DesignatorDescription], + ontology_concept_class: Type[owlready2.Thing], + object_name: Optional[str] = "") \ -> Optional[DesignatorDescription]: """ Create a designator that belongs to a given ontology concept class - :param object_name: Name of object in case of the designator to be created is an Object Designator :param designator_class: A given designator class :param ontology_concept_class: An ontology concept class with which the output designator is associated + :param object_name: Name of object in case of the designator to be created is an Object Designator :return: An object designator associated with the given ontology concept class if created successfully (not already exists), None otherwise """ ontology_concept_name = f'{object_name}_concept' @@ -396,8 +397,15 @@ def create_ontology_linked_designator_by_concept(self, object_name: str, return None # Create a designator of `designator_class` - designator = designator_class(names=[object_name]) if issubclass(designator_class, ObjectDesignatorDescription) \ - else designator_class() + is_object_designator = issubclass(designator_class, ObjectDesignatorDescription) + if is_object_designator: + if not object_name: + rospy.logerr( + f"An empty object name was given as creating its Object designator for ontology concept class [{ontology_concept_class.name}]") + return None + designator = designator_class(names=[object_name]) + else: + designator = designator_class() # Link designator with an ontology concept of `ontology_concept_class` ontology_concept_holder = OntologyConceptHolderStore().get_ontology_concept_holder_by_name(ontology_concept_name) @@ -475,9 +483,9 @@ def create_ontology_object_designator_from_type(self, object_type: ObjectType, """ object_type_name = object_type.name.lower() object_designator = \ - self.create_ontology_linked_designator_by_concept(object_type_name, - ObjectDesignatorDescription, - ontology_concept_class) + self.create_ontology_linked_designator_by_concept(designator_class=ObjectDesignatorDescription, + ontology_concept_class=ontology_concept_class, + object_name=object_type_name) object_designator.types = [object_type_name] return object_designator diff --git a/test/test_ontology.py b/test/test_ontology.py index 07f6bc5d8..130b67568 100644 --- a/test/test_ontology.py +++ b/test/test_ontology.py @@ -109,7 +109,7 @@ def test_ontology_triple_classes_dynamic_creation(self): ontology_inverse_property_parent_class=self.soma.isBearerAffordedBy) def create_ontology_handheld_object_designator(object_name: str, ontology_parent_class: Type[owlready2.Thing]): - return self.ontology_manager.create_ontology_linked_designator(designator_name=object_name, + return self.ontology_manager.create_ontology_linked_designator(object_name=object_name, designator_class=ObjectDesignatorDescription, ontology_concept_name=f"Onto{object_name}", ontology_parent_class=ontology_parent_class) From ff5d61f70e759a13eb1d0735509d5e8f794a62a6 Mon Sep 17 00:00:00 2001 From: duc than Date: Tue, 28 May 2024 18:00:29 +0200 Subject: [PATCH 26/26] fix after merge with devel: rem spawning plane object due to existing floor --- examples/ontology.ipynb | 79 ++++++++++++++++----------------- src/pycram/ontology/ontology.py | 6 ++- 2 files changed, 43 insertions(+), 42 deletions(-) diff --git a/examples/ontology.ipynb b/examples/ontology.ipynb index 228f85180..0bb9ff549 100644 --- a/examples/ontology.ipynb +++ b/examples/ontology.ipynb @@ -127,12 +127,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1716825829.020764]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", - "[INFO] [1716825829.021493]: - main namespace: SOMA-HOME\n", - "[INFO] [1716825829.021986]: - loaded ontologies:\n", - "[INFO] [1716825829.022472]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", - "[INFO] [1716825829.022944]: http://www.ease-crc.org/ont/DUL.owl#\n", - "[INFO] [1716825829.023414]: http://www.ease-crc.org/ont/SOMA.owl#\n" + "[INFO] [1716911825.215667]: Ontology [http://www.ease-crc.org/ont/SOMA-HOME.owl#]'s name: SOMA-HOME has been loaded\n", + "[INFO] [1716911825.216314]: - main namespace: SOMA-HOME\n", + "[INFO] [1716911825.216700]: - loaded ontologies:\n", + "[INFO] [1716911825.216988]: http://www.ease-crc.org/ont/SOMA-HOME.owl#\n", + "[INFO] [1716911825.217239]: http://www.ease-crc.org/ont/DUL.owl#\n", + "[INFO] [1716911825.217476]: http://www.ease-crc.org/ont/SOMA.owl#\n" ] } ], @@ -207,15 +207,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1716825829.147923]: -------------------\n", - "[INFO] [1716825829.148712]: SOMA.DesignedContainer \n", - "[INFO] [1716825829.149332]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", - "[INFO] [1716825829.149857]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Entity, DUL.PhysicalArtifact, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1716825829.150294]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", - "[INFO] [1716825829.150810]: Properties: [SOMA.hasDisposition, rdf-schema.label, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1716825829.208589]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", - "[INFO] [1716825829.209226]: Direct Instances: []\n", - "[INFO] [1716825829.209784]: Inverse Restrictions: []\n", + "[INFO] [1716911825.339363]: -------------------\n", + "[INFO] [1716911825.340001]: SOMA.DesignedContainer \n", + "[INFO] [1716911825.340401]: Super classes: [DUL.DesignedArtifact, DUL.DesignedArtifact, SOMA.hasDisposition.some(SOMA.Containment), SOMA.hasDisposition.some(SOMA.Containment)]\n", + "[INFO] [1716911825.340892]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, owl.Thing, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, DUL.PhysicalObject}\n", + "[INFO] [1716911825.341236]: Subclasses: [SOMA.Bottle, SOMA.Crockery, SOMA.Box, SOMA.Building, SOMA.Carafe, SOMA.Cupboard, SOMA.Dishwasher, SOMA.Dispenser, SOMA.Drawer, SOMA.Jar, SOMA.Pack, SOMA.Oven, SOMA.Shaker, SOMA.Refrigerator, SOMA.TrashContainer, SOMA-HOME.CustomContainerConcept, SOMA-HOME.AnotherCustomContainerConcept, SOMA-HOME.OntologyPlaceHolderObject, SOMA-HOME.OntologyLiquidHolderObject]\n", + "[INFO] [1716911825.341683]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasDisposition, rdf-schema.label]\n", + "[INFO] [1716911825.400233]: Instances: [SOMA-HOME.ontology_custom_container_concept, SOMA-HOME.another_custom_container_concept, SOMA-HOME.table_concept, SOMA-HOME.stool_concept, SOMA-HOME.shelf_concept, SOMA-HOME.egg_tray_concept, SOMA-HOME.cup_concept, SOMA-HOME.bowl_concept, SOMA-HOME.pitcher_concept]\n", + "[INFO] [1716911825.401077]: Direct Instances: []\n", + "[INFO] [1716911825.401662]: Inverse Restrictions: []\n", "DUL.PhysicalObject\n", "[SOMA.Affordance, SOMA.Disposition]\n" ] @@ -337,15 +337,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1716825829.277244]: -------------------\n", - "[INFO] [1716825829.278241]: SOMA-HOME.CustomContainerConcept \n", - "[INFO] [1716825829.278839]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", - "[INFO] [1716825829.279422]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Entity, DUL.PhysicalArtifact, SOMA-HOME.CustomContainerConcept, DUL.Object, owl.Thing, DUL.PhysicalObject}\n", - "[INFO] [1716825829.280004]: Subclasses: []\n", - "[INFO] [1716825829.280732]: Properties: []\n", - "[INFO] [1716825829.282059]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1716825829.282827]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", - "[INFO] [1716825829.283545]: Inverse Restrictions: []\n", + "[INFO] [1716911825.469569]: -------------------\n", + "[INFO] [1716911825.470353]: SOMA-HOME.CustomContainerConcept \n", + "[INFO] [1716911825.470808]: Super classes: [SOMA.DesignedContainer, owl.Thing]\n", + "[INFO] [1716911825.471233]: Ancestors: {SOMA-HOME.CustomContainerConcept, SOMA.DesignedContainer, DUL.DesignedArtifact, owl.Thing, DUL.PhysicalArtifact, DUL.Object, DUL.Entity, DUL.PhysicalObject}\n", + "[INFO] [1716911825.471560]: Subclasses: []\n", + "[INFO] [1716911825.471912]: Properties: []\n", + "[INFO] [1716911825.472469]: Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1716911825.472774]: Direct Instances: [SOMA-HOME.ontology_custom_container_concept]\n", + "[INFO] [1716911825.473048]: Inverse Restrictions: []\n", "custom_container_concept is SOMA-HOME.ontology_custom_container_concept: True\n" ] } @@ -385,15 +385,15 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1716825829.297186]: -------------------\n", - "[INFO] [1716825829.298009]: SOMA.Cup \n", - "[INFO] [1716825829.298485]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", - "[INFO] [1716825829.298891]: Ancestors: {SOMA.DesignedContainer, DUL.DesignedArtifact, DUL.Entity, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, SOMA.Crockery, owl.Thing, SOMA.Tableware, DUL.PhysicalObject, SOMA.Cup}\n", - "[INFO] [1716825829.299265]: Subclasses: []\n", - "[INFO] [1716825829.299691]: Properties: [SOMA.hasPhysicalComponent, rdf-schema.isDefinedBy, rdf-schema.comment]\n", - "[INFO] [1716825829.300347]: Instances: []\n", - "[INFO] [1716825829.300837]: Direct Instances: []\n", - "[INFO] [1716825829.301184]: Inverse Restrictions: []\n" + "[INFO] [1716911825.485656]: -------------------\n", + "[INFO] [1716911825.486269]: SOMA.Cup \n", + "[INFO] [1716911825.486616]: Super classes: [SOMA.Crockery, SOMA.hasPhysicalComponent.some(SOMA.DesignedHandle)]\n", + "[INFO] [1716911825.486935]: Ancestors: {SOMA.Crockery, SOMA.DesignedContainer, SOMA.Tableware, DUL.DesignedArtifact, SOMA.Cup, owl.Thing, DUL.PhysicalArtifact, SOMA.DesignedTool, DUL.Object, DUL.Entity, DUL.PhysicalObject}\n", + "[INFO] [1716911825.487221]: Subclasses: []\n", + "[INFO] [1716911825.487572]: Properties: [rdf-schema.isDefinedBy, rdf-schema.comment, SOMA.hasPhysicalComponent]\n", + "[INFO] [1716911825.488186]: Instances: []\n", + "[INFO] [1716911825.488503]: Direct Instances: []\n", + "[INFO] [1716911825.488776]: Inverse Restrictions: []\n" ] } ], @@ -793,7 +793,6 @@ "from pycram.designators.location_designator import *\n", "\n", "world = BulletWorld()\n", - "plane = Object(\"floor\", ObjectType.ENVIRONMENT, \"plane.urdf\")\n", "kitchen = Object(\"kitchen\", ObjectType.ENVIRONMENT, \"kitchen.urdf\")\n", "pr2 = Object(\"pr2\", ObjectType.ROBOT, \"pr2.urdf\")\n", "kitchen_designator = ObjectDesignatorDescription(names=[\"kitchen\"])\n", @@ -852,10 +851,11 @@ "output_type": "stream", "text": [ "Unknown tag \"rgba_color\" in /robot[@name='milk_object']/link[@name='milk_main']/visual[1]/material[@name='white']\n", - "Unknown tag \"rgba_color\" in /robot[@name='cup_object']/link[@name='cup_main']/visual[1]/material[@name='white']\n", "Unknown tag \"rgba_color\" in /robot[@name='milk_object']/link[@name='milk_main']/visual[1]/material[@name='white']\n", + "Unknown tag \"rgba_color\" in /robot[@name='cup_object']/link[@name='cup_main']/visual[1]/material[@name='white']\n", "Unknown tag \"rgba_color\" in /robot[@name='bowl_object']/link[@name='bowl_main']/visual[1]/material[@name='white']\n", "Unknown tag \"rgba_color\" in /robot[@name='cup_object']/link[@name='cup_main']/visual[1]/material[@name='white']\n", + "Unknown tag \"rgba_color\" in /robot[@name='bowl_object']/link[@name='bowl_main']/visual[1]/material[@name='white']\n", "Unknown tag \"rgba_color\" in /robot[@name='pitcher_object']/link[@name='pitcher_main']/visual[1]/material[@name='white']\n" ] } @@ -895,7 +895,6 @@ "name": "stderr", "output_type": "stream", "text": [ - "Unknown tag \"rgba_color\" in /robot[@name='bowl_object']/link[@name='bowl_main']/visual[1]/material[@name='white']\n", "Unknown tag \"rgba_color\" in /robot[@name='pitcher_object']/link[@name='pitcher_main']/visual[1]/material[@name='white']\n" ] } @@ -985,12 +984,12 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1716825831.876724]: Waiting for IK service: /pr2_left_arm_kinematics/get_ik\n", + "[INFO] [1716911828.077699]: Waiting for IK service: /pr2_left_arm_kinematics/get_ik\n", "CostmapLocation.Location(pose=header: \n", " seq: 0\n", " stamp: \n", - " secs: 1716825831\n", - " nsecs: 857461929\n", + " secs: 1716911828\n", + " nsecs: 58246850\n", " frame_id: \"map\"\n", "pose: \n", " position: \n", @@ -1056,7 +1055,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "[INFO] [1716825839.151754]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" + "[INFO] [1716911835.388276]: Ontologies have been saved to /home/ducthan/ontologies/NewSOMA-HOME.owl\n" ] }, { diff --git a/src/pycram/ontology/ontology.py b/src/pycram/ontology/ontology.py index 9744ed8fa..2fe6d8c4a 100644 --- a/src/pycram/ontology/ontology.py +++ b/src/pycram/ontology/ontology.py @@ -30,14 +30,16 @@ class OntologyManager(object, metaclass=Singleton): Singleton class as the adapter accessing data of an OWL ontology, largely based on owlready2. """ - def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = f"{Path.home()}/ontologies"): + def __init__(self, main_ontology_iri: str = "", ontology_search_path: str = ""): """ Create the singleton object of OntologyManager class :param main_ontology_iri: Ontology IRI (Internationalized Resource Identifier), either a URL to a remote OWL file or the full name path of a local one - :param ontology_search_path: directory path from which a possibly existing ontology is searched. This is appended to `owlready2.onto_path`, a global variable containing a list of directories for searching local copies of ontologies (similarly to python `sys.path` for modules/packages). + :param ontology_search_path: directory path from which a possibly existing ontology is searched. This is appended to `owlready2.onto_path`, a global variable containing a list of directories for searching local copies of ontologies (similarly to python `sys.path` for modules/packages). If not specified, the path is "$HOME/ontologies" """ if owlready2: + if not ontology_search_path: + ontology_search_path = f"{Path.home()}/ontologies" Path(ontology_search_path).mkdir(parents=True, exist_ok=True) owlready2.onto_path.append(ontology_search_path) else: